@alfe.ai/integration-manifest 0.2.0 → 0.2.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +8 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -590,6 +590,14 @@ interface IntegrationStateEntry {
590
590
  error?: string;
591
591
  /** Number of consecutive auto-reinstall attempts. Reset on success or explicit reinstall. */
592
592
  reinstallAttempts?: number;
593
+ /**
594
+ * For Custom Connection-driven installs: the backing custom
595
+ * Connection's id. Persisted at install time so `activate()` can
596
+ * scope credential resolution to that specific Connection
597
+ * (`{{credentials.custom.*}}` resolves against this connectionId).
598
+ * Absent for registry/channel/connection-driven integrations.
599
+ */
600
+ customConnectionId?: string;
593
601
  }
594
602
  interface IntegrationsStateFile {
595
603
  version: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alfe.ai/integration-manifest",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Integration manifest schema, types, and parser for Alfe integration platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",