@alfe.ai/integration-manifest 0.4.0 → 0.4.1
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 +5 -1
- package/dist/index.js +3 -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", "telegram", "x", "xero"];
|
|
19
|
+
declare const KNOWN_CONNECT_PROVIDER_IDS: readonly ["atlassian", "bluesky", "connectwise-automate", "connectwise-psa", "connectwise-screenconnect", "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
|
|
@@ -593,6 +593,10 @@ interface IntegrationStateEntry {
|
|
|
593
593
|
* Absent for registry/channel/connection-driven integrations.
|
|
594
594
|
*/
|
|
595
595
|
customConnectionId?: string;
|
|
596
|
+
/** Last account-authority snapshot applied to this integration's MCP processes. */
|
|
597
|
+
connectionAuthorityVersion?: string;
|
|
598
|
+
/** Unfinished authority application, retained across failures and daemon restarts. */
|
|
599
|
+
connectionAuthorityPendingVersion?: string;
|
|
596
600
|
}
|
|
597
601
|
interface IntegrationsStateFile {
|
|
598
602
|
version: number;
|
package/dist/index.js
CHANGED