@tinyclaw/types 2.0.0-dev.1bfd8b4 → 2.0.0-dev.20d489f

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -445,7 +445,7 @@ export interface ChannelPlugin extends PluginMeta {
445
445
  export interface ProviderPlugin extends PluginMeta {
446
446
  readonly type: 'provider';
447
447
  /** Create and return an initialized Provider instance. */
448
- createProvider(secrets: SecretsManagerInterface): Promise<Provider>;
448
+ createProvider(secrets: SecretsManagerInterface, configManager: ConfigManagerInterface): Promise<Provider>;
449
449
  /** Optional pairing tools for conversational setup (API key, model config). */
450
450
  getPairingTools?(secrets: SecretsManagerInterface, configManager: ConfigManagerInterface): Tool[];
451
451
  }
package/dist/index.js CHANGED
@@ -46,6 +46,9 @@ export const OWNER_ONLY_TOOLS = new Set([
46
46
  // Discord channel management
47
47
  'discord_pair',
48
48
  'discord_unpair',
49
+ // Telegram channel management
50
+ 'telegram_pair',
51
+ 'telegram_unpair',
49
52
  ]);
50
53
  /**
51
54
  * Check whether a userId has owner authority.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tinyclaw/types",
3
- "version": "2.0.0-dev.1bfd8b4",
3
+ "version": "2.0.0-dev.20d489f",
4
4
  "description": "Shared TypeScript type definitions for Tiny Claw",
5
5
  "license": "GPL-3.0",
6
6
  "author": "Waren Gonzaga",