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