@integry/sdk 4.5.53 → 4.6.1
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/.vscode/launch.json +3 -3
- package/THIRD_PARTY_LICENSES +3 -2
- package/dist/esm/index.csm.d.ts +7 -5
- package/dist/esm/index.csm.js +1 -1
- package/dist/umd/index.umd.d.ts +7 -5
- package/dist/umd/index.umd.js +1 -1
- package/package.json +2 -1
- package/src/components/Input/BaseInput/styles.module.scss +2 -1
- package/src/components/MultipurposeField/Dropdown/index.tsx +10 -4
- package/src/components/MultipurposeField/TagMenu/index.ts +7 -3
- package/src/components/form/ObjectField/index.ts +1 -1
- package/src/index.ts +17 -15
- package/src/types/index.ts +6 -0
package/.vscode/launch.json
CHANGED
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
// "url": "file:////Users/yasir/Downloads/Flows%20-%20Integry%20SDK%20sample-23.html",
|
|
14
14
|
// "url": "file:////Users/yasir/Downloads/Flows%20-%20Integry%20SDK%20sample%20(33).html",
|
|
15
15
|
// "url": "file:////Users/yasir/Downloads/Integry SDK sample code (17).html",
|
|
16
|
-
"url": "file:////Users/yasir/Downloads/Flows - Integry SDK sample (41).html",
|
|
17
|
-
|
|
18
|
-
// "url": "file:////Users/yasir/Downloads/Integry SDK sample code (
|
|
16
|
+
// "url": "file:////Users/yasir/Downloads/Flows - Integry SDK sample (41).html",
|
|
17
|
+
"url": "file:////Users/yasir/Downloads/function-sdk (3).html",
|
|
18
|
+
// "url": "file:////Users/yasir/Downloads/Integry SDK sample code (12)bitbucket.html",
|
|
19
19
|
"webRoot": "${workspaceFolder}/src"
|
|
20
20
|
}
|
|
21
21
|
]
|
package/THIRD_PARTY_LICENSES
CHANGED
|
@@ -493,7 +493,7 @@ SOFTWARE.
|
|
|
493
493
|
---
|
|
494
494
|
|
|
495
495
|
Name: @yaireo/tagify
|
|
496
|
-
Version: 4.
|
|
496
|
+
Version: 4.33.2
|
|
497
497
|
License: MIT
|
|
498
498
|
Private: false
|
|
499
499
|
Description: lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]
|
|
@@ -521,4 +521,5 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
521
521
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
522
522
|
THE SOFTWARE.
|
|
523
523
|
|
|
524
|
-
|
|
524
|
+
This Software may not be rebranded and sold as a library under any other name
|
|
525
|
+
other than "Tagify" (by owner) or as part of another library.
|
package/dist/esm/index.csm.d.ts
CHANGED
|
@@ -233,6 +233,12 @@ type RenderFlowStepOptions = {
|
|
|
233
233
|
onFieldChangeCallback: (fieldId: string, value: any) => void;
|
|
234
234
|
tagsTree: any;
|
|
235
235
|
};
|
|
236
|
+
type ShowFunctionOptions = {
|
|
237
|
+
params?: Record<string, any>;
|
|
238
|
+
payload?: Record<string, any>;
|
|
239
|
+
connectedAccountId?: string;
|
|
240
|
+
autoMapPayload?: boolean;
|
|
241
|
+
};
|
|
236
242
|
type TemplateType = Template;
|
|
237
243
|
type FlowCardProps = {
|
|
238
244
|
id: number | string;
|
|
@@ -655,11 +661,7 @@ declare class IntegryJS {
|
|
|
655
661
|
showFunctionUI: (functionName: string, functionArguments?: {
|
|
656
662
|
[key: string]: any;
|
|
657
663
|
}, connectedAccountId?: string | undefined) => Promise<Record<any, any>>;
|
|
658
|
-
showFunction: (functionName: string,
|
|
659
|
-
[key: string]: any;
|
|
660
|
-
}, vars?: {
|
|
661
|
-
[key: string]: any;
|
|
662
|
-
}, autoMapVars?: boolean, connectedAccountId?: string | undefined) => Promise<Record<any, any>>;
|
|
664
|
+
showFunction: (functionName: string, options?: ShowFunctionOptions) => Promise<Record<any, any>>;
|
|
663
665
|
invokeFunction: (functionName: string, params: {
|
|
664
666
|
[key: string]: any;
|
|
665
667
|
}, connectedAccountId: string) => Promise<Record<any, any>>;
|