@alfe.ai/integration-manifest 0.3.2 → 0.3.4
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 +1 -1
- package/dist/index.js +3 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ import { z } from "zod";
|
|
|
15
15
|
* caught at runtime when the integrations service tries to resolve the
|
|
16
16
|
* provider and gets nothing back.
|
|
17
17
|
*/
|
|
18
|
-
declare const KNOWN_CONNECT_PROVIDER_IDS: readonly ["atlassian", "ctrader", "custom", "discord", "github", "google", "microsoft", "mobile", "myob", "notion", "salesforce", "slack", "xero"];
|
|
18
|
+
declare const KNOWN_CONNECT_PROVIDER_IDS: readonly ["atlassian", "bluesky", "ctrader", "custom", "discord", "github", "google", "microsoft", "mobile", "myob", "notion", "salesforce", "shopify", "slack", "x", "xero"];
|
|
19
19
|
type KnownConnectProviderId = (typeof KNOWN_CONNECT_PROVIDER_IDS)[number];
|
|
20
20
|
/**
|
|
21
21
|
* `custom` is a special provider id: it doesn't correspond to a fixed
|
package/dist/index.js
CHANGED
|
@@ -24,6 +24,7 @@ import { parse } from "yaml";
|
|
|
24
24
|
*/
|
|
25
25
|
const KNOWN_CONNECT_PROVIDER_IDS = [
|
|
26
26
|
"atlassian",
|
|
27
|
+
"bluesky",
|
|
27
28
|
"ctrader",
|
|
28
29
|
"custom",
|
|
29
30
|
"discord",
|
|
@@ -34,7 +35,9 @@ const KNOWN_CONNECT_PROVIDER_IDS = [
|
|
|
34
35
|
"myob",
|
|
35
36
|
"notion",
|
|
36
37
|
"salesforce",
|
|
38
|
+
"shopify",
|
|
37
39
|
"slack",
|
|
40
|
+
"x",
|
|
38
41
|
"xero"
|
|
39
42
|
];
|
|
40
43
|
/**
|