@integry/sdk 3.1.5-beta.15 → 3.1.5-beta.18

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.
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectModuleManager">
4
+ <modules>
5
+ <module fileurl="file://$PROJECT_DIR$/.idea/sdk-v3.iml" filepath="$PROJECT_DIR$/.idea/sdk-v3.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="JAVA_MODULE" version="4">
3
+ <component name="NewModuleRootManager" inherit-compiler-output="true">
4
+ <exclude-output />
5
+ <content url="file://$MODULE_DIR$" />
6
+ <orderEntry type="inheritedJdk" />
7
+ <orderEntry type="sourceFolder" forTests="false" />
8
+ </component>
9
+ <component name="TemplatesService">
10
+ <option name="TEMPLATE_FOLDERS">
11
+ <list>
12
+ <option value="$MODULE_DIR$/sdk-docs/node_modules/gifwrap/templates" />
13
+ </list>
14
+ </option>
15
+ </component>
16
+ </module>
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ChangeListManager">
4
+ <list default="true" id="3bd43f6a-3ee9-4a60-a6c8-e208d65c4f31" name="Changes" comment="" />
5
+ <option name="SHOW_DIALOG" value="false" />
6
+ <option name="HIGHLIGHT_CONFLICTS" value="true" />
7
+ <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
8
+ <option name="LAST_RESOLUTION" value="IGNORE" />
9
+ </component>
10
+ <component name="ProjectId" id="2CcB3EpfT8wNT4caH7y6daY2cEr" />
11
+ <component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
12
+ <component name="VgoProject">
13
+ <settings-migrated>true</settings-migrated>
14
+ </component>
15
+ </project>
@@ -26,6 +26,10 @@ type IntegrySDKEvents = {
26
26
  flowId: number;
27
27
  integrationId: number;
28
28
  }) => void;
29
+ "did-delete-integration": (data: {
30
+ flowId: number;
31
+ integrationId: number;
32
+ }) => void;
29
33
  "did-save-integration": (data: {
30
34
  integrationId: number;
31
35
  name: string;
@@ -40,9 +44,6 @@ type IntegrySDKEvents = {
40
44
  isBrandingAppAuth: boolean;
41
45
  }[];
42
46
  steps: {
43
- /**
44
- * Integry JS SDK
45
- */
46
47
  id: number;
47
48
  authorization: number | null;
48
49
  template_step: number;
@@ -376,10 +377,6 @@ declare class IntegryJS {
376
377
  */
377
378
  init: (initConfig: InitConfig) => void;
378
379
  verifyAuthConfig: () => Promise<{
379
- /**
380
- * Render the template form we ship
381
- * @param params
382
- */
383
380
  config_verified: boolean;
384
381
  } | null>;
385
382
  /**