@integry/sdk 4.0.4-beta.1 → 4.0.4-beta.11
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/.vscode/launch.json +18 -18
- package/dist/esm/index.csm.d.ts +4 -3
- package/dist/esm/index.csm.js +1 -1
- package/dist/umd/index.umd.d.ts +4 -3
- package/dist/umd/index.umd.js +1 -1
- package/package.json +1 -1
package/dist/umd/index.umd.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { VNode } from "preact";
|
|
|
2
2
|
type IntegrySDKEventType = "authorizations" | "did-add-authorization" | "did-begin-remove-authorization" | "did-change-step" | "did-fail-authorization-verification" | "did-load-flow" | "did-load-flows" | "did-load-integration" | "did-load-integrations" | "did-load-preview" | "did-remove-authorization" | "did-save-integration" | "did-delete-integration" | "did-select-authorization" | "ready" | "should-load-flow" | "did-click-close-button" | "did-app-load";
|
|
3
3
|
type IntegrySDKEventPayloads = {
|
|
4
4
|
ready: {
|
|
5
|
-
|
|
5
|
+
isReady: boolean;
|
|
6
6
|
};
|
|
7
7
|
"should-load-flow": {
|
|
8
8
|
templateId: number;
|
|
@@ -179,7 +179,7 @@ interface UserConfig {
|
|
|
179
179
|
buttonLabelToSaveIntegration?: string;
|
|
180
180
|
objects?: NestedObject;
|
|
181
181
|
tags?: string[];
|
|
182
|
-
|
|
182
|
+
hideExistingIntegrations?: boolean;
|
|
183
183
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
184
184
|
[other: string]: any;
|
|
185
185
|
}
|
|
@@ -205,7 +205,7 @@ interface ConfigWithObject extends SDKConfig {
|
|
|
205
205
|
appKey: string;
|
|
206
206
|
hash: string;
|
|
207
207
|
userId: string;
|
|
208
|
-
deploymentId
|
|
208
|
+
deploymentId?: string;
|
|
209
209
|
marketplaceId?: string;
|
|
210
210
|
appId?: number;
|
|
211
211
|
showApps?: boolean;
|
|
@@ -413,6 +413,7 @@ interface Instance {
|
|
|
413
413
|
error_code: number;
|
|
414
414
|
first_error_received_at: string;
|
|
415
415
|
usage_limit_reached_at: string;
|
|
416
|
+
is_test_integration: boolean;
|
|
416
417
|
}
|
|
417
418
|
interface MultipurposeFieldType {
|
|
418
419
|
activityOutputData: NestedObject;
|