@integry/sdk 4.0.3-dev.3 → 4.0.3-dev.6

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.
@@ -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
- deploymentId: number;
5
+ isReady: boolean;
6
6
  };
7
7
  "should-load-flow": {
8
8
  templateId: number;
@@ -179,6 +179,7 @@ interface UserConfig {
179
179
  buttonLabelToSaveIntegration?: string;
180
180
  objects?: NestedObject;
181
181
  tags?: string[];
182
+ hideExistingIntegrations?: boolean;
182
183
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
183
184
  [other: string]: any;
184
185
  }
@@ -204,7 +205,7 @@ interface ConfigWithObject extends SDKConfig {
204
205
  appKey: string;
205
206
  hash: string;
206
207
  userId: string;
207
- deploymentId: string;
208
+ deploymentId?: string;
208
209
  marketplaceId?: string;
209
210
  appId?: number;
210
211
  showApps?: boolean;