diff --git a/manifest.json b/manifest.json index 505b111..58f0ad0 100644 --- a/manifest.json +++ b/manifest.json @@ -1,5 +1,5 @@ { - "name": "ubq-testing/telegram--bot", + "name": "ubiquity-os-marketplace/ubiquity-os-kernel-telegram", "description": "Part kernel plugin, part Telegram kernel. This bot is designed to be a bridge between UbiquityOS and Telegram.", "ubiquity:listeners": [ "issues.assigned", diff --git a/package.json b/package.json index 602f954..2de380f 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "@ubiquity-os/kernel-telegram", + "name": "@ubiquity-os/ubiquity-os-kernel-telegram", "version": "0.1.0", "description": "Part kernel plugin, part Telegram kernel. This bot is designed to be a bridge between UbiquityOS and Telegram.", "author": "Ubiquity DAO", diff --git a/src/types/plugin-inputs.ts b/src/types/plugin-inputs.ts index e365e17..8d99f65 100644 --- a/src/types/plugin-inputs.ts +++ b/src/types/plugin-inputs.ts @@ -19,7 +19,7 @@ export const pluginSettingsSchema = T.Object({ .Decode((value) => Number(value)) .Encode((value) => value.toString()), shouldUseGithubStorage: T.Boolean({ default: false }), - storageOwner: T.String({ default: "ubq-testing" }), + storageOwner: T.String({ default: "ubiquity-os-marketplace" }), }); export const pluginSettingsValidator = new StandardValidator(pluginSettingsSchema);