@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 +2 -1
- package/dist/index.js +1 -0
- package/package.json +1 -1
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