@integry/sdk 4.7.15 → 4.7.16
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/.eslintignore +1 -0
- package/.vscode/launch.json +2 -2
- package/dist/esm/index.csm.d.ts +2 -1
- package/dist/esm/index.csm.js +1 -1
- package/dist/umd/index.umd.d.ts +2 -1
- package/dist/umd/index.umd.js +1 -1
- package/package.json +1 -1
- package/src/components/form/ObjectField/index.ts.test.tsx +213 -0
- package/src/features/common/FunctionForm/index.ts +2 -0
- package/src/index.ts +11 -1
- package/src/modules/api/index.ts +8 -3
- package/src/types/index.ts +1 -0
- package/src/components/Button/index.test.ts +0 -0
- package/src/renderFlowStep.test.ts +0 -0
package/.eslintignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
**/*.test.ts
|
package/.vscode/launch.json
CHANGED
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
"type": "chrome",
|
|
9
9
|
"request": "launch",
|
|
10
10
|
"name": "Open Integry SDK sample code (44).html",
|
|
11
|
-
|
|
11
|
+
"file": "/Users/yasir/Downloads/Flows - Integry SDK sample (41).html"
|
|
12
12
|
// "file": "/Users/yasir/Downloads/CF User - MUST DELETE.html"
|
|
13
|
-
"file": "/Users/yasir/Downloads/Flows of an app - Integry SDK sample (Thryv 7) For All (2).html"
|
|
13
|
+
// "file": "/Users/yasir/Downloads/Flows of an app - Integry SDK sample (Thryv 7) For All (2).html"
|
|
14
14
|
}
|
|
15
15
|
]
|
|
16
16
|
}
|
package/dist/esm/index.csm.d.ts
CHANGED
|
@@ -251,6 +251,7 @@ type ShowFunctionOptions = {
|
|
|
251
251
|
payload?: Record<string, any>;
|
|
252
252
|
connectedAccountId?: string;
|
|
253
253
|
autoMapPayload?: boolean;
|
|
254
|
+
version?: string | null;
|
|
254
255
|
};
|
|
255
256
|
type TemplateType = Template;
|
|
256
257
|
type FlowCardProps = {
|
|
@@ -686,7 +687,7 @@ declare class IntegryJS {
|
|
|
686
687
|
[key: string]: any;
|
|
687
688
|
}, vars: {
|
|
688
689
|
[key: string]: any;
|
|
689
|
-
} | undefined, connectedAccountId: string) => Promise<Record<any, any>>;
|
|
690
|
+
} | undefined, connectedAccountId: string, version?: string | null) => Promise<Record<any, any>>;
|
|
690
691
|
connectApp: (appName: string) => Promise<string>;
|
|
691
692
|
disconnectApp: (appName: string, connectedAccountId?: string | undefined) => Promise<any>;
|
|
692
693
|
isAppConnected: (appName: string) => Promise<any>;
|