@alfe.ai/integration-manifest 0.3.5 → 0.4.0
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 +3 -2
- package/dist/index.js +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ import { z } from "zod";
|
|
|
16
16
|
* caught at runtime when the integrations service tries to resolve the
|
|
17
17
|
* provider and gets nothing back.
|
|
18
18
|
*/
|
|
19
|
-
declare const KNOWN_CONNECT_PROVIDER_IDS: readonly ["atlassian", "bluesky", "ctrader", "custom", "discord", "github", "google", "microsoft", "mobile", "myob", "notion", "salesforce", "shopify", "slack", "x", "xero"];
|
|
19
|
+
declare const KNOWN_CONNECT_PROVIDER_IDS: readonly ["atlassian", "bluesky", "ctrader", "custom", "discord", "github", "google", "microsoft", "mobile", "myob", "notion", "salesforce", "shopify", "slack", "telegram", "x", "xero"];
|
|
20
20
|
type KnownConnectProviderId = (typeof KNOWN_CONNECT_PROVIDER_IDS)[number];
|
|
21
21
|
/**
|
|
22
22
|
* `custom` is a special provider id: it doesn't correspond to a fixed
|
|
@@ -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
|
@@ -81,6 +81,7 @@ const KNOWN_CONNECT_PROVIDER_IDS = [
|
|
|
81
81
|
"salesforce",
|
|
82
82
|
"shopify",
|
|
83
83
|
"slack",
|
|
84
|
+
"telegram",
|
|
84
85
|
"x",
|
|
85
86
|
"xero"
|
|
86
87
|
];
|
|
@@ -107,6 +108,7 @@ const KNOWN_CONNECT_PROVIDER_IDS = [
|
|
|
107
108
|
*/
|
|
108
109
|
const LOCKED_CHANNEL_TYPES = [
|
|
109
110
|
"whatsapp",
|
|
111
|
+
"mobile",
|
|
110
112
|
"sms",
|
|
111
113
|
"voice",
|
|
112
114
|
"google_chat",
|