@integry/sdk 4.5.8 → 4.5.10
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 +12 -5
- package/dist/esm/index.csm.js +66 -65
- package/dist/umd/index.umd.d.ts +8 -1
- package/dist/umd/index.umd.js +66 -65
- package/package.json +1 -1
- package/src/components/MultipurposeField/TagMenu/index.ts +5 -1
- package/src/components/MultipurposeField/index.tsx +2 -0
- package/src/components/TestComponent/index.ts +21 -0
- package/src/components/TestComponent/styles.module.scss +152 -0
- package/src/features/common/ActionForm/index.ts +106 -16
- package/src/features/common/DynamicField/index.ts +8 -2
- package/src/index.ts +16 -11
- package/src/types/index.ts +7 -2
package/dist/umd/index.umd.d.ts
CHANGED
|
@@ -223,6 +223,13 @@ 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
|
+
};
|
|
226
233
|
type TemplateType = Template;
|
|
227
234
|
type FlowCardProps = {
|
|
228
235
|
id: number | string;
|
|
@@ -697,7 +704,7 @@ declare class IntegryJS {
|
|
|
697
704
|
containerId: string;
|
|
698
705
|
multipurposeFieldProps: MultipurposeFieldType;
|
|
699
706
|
}) => void;
|
|
700
|
-
renderFlowStep: (
|
|
707
|
+
renderFlowStep: (options?: RenderFlowStepOptions) => void;
|
|
701
708
|
verifyAuthConfig: () => Promise<{
|
|
702
709
|
config_verified: boolean;
|
|
703
710
|
meta: any;
|