@integry/sdk 4.7.24 → 4.7.26
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 +8 -1
- package/dist/esm/index.csm.js +1 -1
- package/dist/umd/index.umd.d.ts +8 -1
- package/dist/umd/index.umd.js +1 -1
- package/package.json +1 -1
- package/src/components/MultipurposeField/index.tsx +1 -1
- package/src/components/form/ObjectField/index.ts +11 -3
- package/src/features/common/ActionForm/index.ts +8 -0
- package/src/index.ts +66 -10
- package/src/interfaces/index.ts +7 -0
package/dist/esm/index.csm.d.ts
CHANGED
|
@@ -594,6 +594,12 @@ interface MultipurposeFieldType {
|
|
|
594
594
|
fieldId?: string;
|
|
595
595
|
enableTagify?: boolean;
|
|
596
596
|
}
|
|
597
|
+
interface FunctionFieldType {
|
|
598
|
+
onChange?: (val: any) => void;
|
|
599
|
+
isReadOnly?: boolean;
|
|
600
|
+
field: TemplateField;
|
|
601
|
+
tagsTree?: any;
|
|
602
|
+
}
|
|
597
603
|
/**
|
|
598
604
|
*
|
|
599
605
|
* @param key Key to sign hash
|
|
@@ -688,7 +694,7 @@ declare class IntegryJS {
|
|
|
688
694
|
[key: string]: any;
|
|
689
695
|
}, vars: {
|
|
690
696
|
[key: string]: any;
|
|
691
|
-
} | undefined, connectedAccountId: string, version?: string | null) => Promise<Record<any, any>>;
|
|
697
|
+
} | undefined, connectedAccountId: string, version?: string | null, allow_workspace_connected_accounts?: boolean) => Promise<Record<any, any>>;
|
|
692
698
|
connectApp: (appName: string) => Promise<string>;
|
|
693
699
|
disconnectApp: (appName: string, connectedAccountId?: string | undefined) => Promise<any>;
|
|
694
700
|
isAppConnected: (appName: string) => Promise<any>;
|
|
@@ -736,6 +742,7 @@ declare class IntegryJS {
|
|
|
736
742
|
containerId: string;
|
|
737
743
|
multipurposeFieldProps: MultipurposeFieldType;
|
|
738
744
|
}) => void;
|
|
745
|
+
renderFunctionField: (containerId: string, functionFieldProps: FunctionFieldType) => void;
|
|
739
746
|
renderFlowStep: (options?: RenderFlowStepOptions) => void;
|
|
740
747
|
renderMappingMenu: (options?: RenderMappingMenuOptions) => void;
|
|
741
748
|
verifyAuthConfig: () => Promise<{
|