@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.
- package/dist/index.d.ts +8 -0
- 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;
|