@integry/sdk 4.5.9 → 4.5.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/dist/esm/index.csm.d.ts +10 -6
- package/dist/esm/index.csm.js +111 -106
- package/dist/umd/index.umd.d.ts +9 -1
- package/dist/umd/index.umd.js +111 -106
- package/package.json +1 -1
- package/src/components/MultipurposeField/TagMenu/index.ts +58 -48
- package/src/components/MultipurposeField/index.tsx +4 -0
- package/src/components/TestComponent/index.ts +71 -0
- package/src/components/TestComponent/styles.module.scss +152 -0
- package/src/features/common/ActionForm/index.ts +18 -10
- package/src/features/common/DynamicField/index.ts +2 -0
- package/src/index.ts +19 -11
- package/src/types/index.ts +8 -2
package/dist/umd/index.umd.d.ts
CHANGED
|
@@ -223,6 +223,14 @@ type SetupIntegrationOptions = {
|
|
|
223
223
|
integrationId?: number;
|
|
224
224
|
params?: Record<string, string>;
|
|
225
225
|
};
|
|
226
|
+
type RenderFlowStepOptions = {
|
|
227
|
+
containerId: string;
|
|
228
|
+
step: any;
|
|
229
|
+
connectedAccountId: string;
|
|
230
|
+
tagsComponent?: any;
|
|
231
|
+
onFieldChangeCallback: (fieldId: string, value: any) => void;
|
|
232
|
+
tagsTree: any;
|
|
233
|
+
};
|
|
226
234
|
type TemplateType = Template;
|
|
227
235
|
type FlowCardProps = {
|
|
228
236
|
id: number | string;
|
|
@@ -697,7 +705,7 @@ declare class IntegryJS {
|
|
|
697
705
|
containerId: string;
|
|
698
706
|
multipurposeFieldProps: MultipurposeFieldType;
|
|
699
707
|
}) => void;
|
|
700
|
-
renderFlowStep: (
|
|
708
|
+
renderFlowStep: (options?: RenderFlowStepOptions) => void;
|
|
701
709
|
verifyAuthConfig: () => Promise<{
|
|
702
710
|
config_verified: boolean;
|
|
703
711
|
meta: any;
|