@nextclaw/runtime 0.2.16 → 0.2.18

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
@@ -1,7 +1,7 @@
1
1
  import { ProviderSpec, ProviderRegistry, ProviderCatalogPlugin } from '@nextclaw/core';
2
2
  export { ProviderCatalogPlugin, ProviderSpec } from '@nextclaw/core';
3
3
 
4
- declare const BUILTIN_CHANNEL_PLUGIN_IDS: readonly ["telegram", "whatsapp", "discord", "feishu", "mochat", "dingtalk", "wecom", "email", "slack", "qq"];
4
+ declare const BUILTIN_CHANNEL_PLUGIN_IDS: readonly ["telegram", "whatsapp", "discord", "feishu", "mochat", "dingtalk", "wecom", "email", "slack", "qq", "weixin"];
5
5
  type BuiltinChannelPluginId = (typeof BUILTIN_CHANNEL_PLUGIN_IDS)[number];
6
6
  declare function isBuiltinChannelPluginId(value: string): value is BuiltinChannelPluginId;
7
7
 
package/dist/index.js CHANGED
@@ -472,7 +472,8 @@ var BUILTIN_CHANNEL_PLUGIN_IDS = [
472
472
  "wecom",
473
473
  "email",
474
474
  "slack",
475
- "qq"
475
+ "qq",
476
+ "weixin"
476
477
  ];
477
478
  function isBuiltinChannelPluginId(value) {
478
479
  return BUILTIN_CHANNEL_PLUGIN_IDS.includes(value);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextclaw/runtime",
3
- "version": "0.2.16",
3
+ "version": "0.2.18",
4
4
  "private": false,
5
5
  "description": "NextClaw runtime assembly for builtin providers and channels.",
6
6
  "type": "module",
@@ -15,7 +15,7 @@
15
15
  "dist"
16
16
  ],
17
17
  "dependencies": {
18
- "@nextclaw/core": "0.11.2"
18
+ "@nextclaw/core": "0.11.4"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@types/node": "^20.17.6",