@alfe.ai/integration-manifest 0.3.5 → 0.3.6

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
@@ -39,10 +39,11 @@ type KnownConnectProviderId = (typeof KNOWN_CONNECT_PROVIDER_IDS)[number];
39
39
  * The enum is locked — channel adapters and the dashboard's compatibility
40
40
  * matrix both depend on this exact list.
41
41
  */
42
- declare const LOCKED_CHANNEL_TYPES: readonly ["whatsapp", "sms", "voice", "google_chat", "slack", "discord", "teams"];
42
+ declare const LOCKED_CHANNEL_TYPES: readonly ["whatsapp", "mobile", "sms", "voice", "google_chat", "slack", "discord", "teams"];
43
43
  type ChannelType = (typeof LOCKED_CHANNEL_TYPES)[number];
44
44
  declare const ChannelTypeSchema: z.ZodEnum<{
45
45
  discord: "discord";
46
+ mobile: "mobile";
46
47
  slack: "slack";
47
48
  whatsapp: "whatsapp";
48
49
  sms: "sms";
package/dist/index.js CHANGED
@@ -107,6 +107,7 @@ const KNOWN_CONNECT_PROVIDER_IDS = [
107
107
  */
108
108
  const LOCKED_CHANNEL_TYPES = [
109
109
  "whatsapp",
110
+ "mobile",
110
111
  "sms",
111
112
  "voice",
112
113
  "google_chat",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alfe.ai/integration-manifest",
3
- "version": "0.3.5",
3
+ "version": "0.3.6",
4
4
  "description": "Integration manifest schema, types, and parser for Alfe integration platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",