@integry/sdk 4.4.34 → 4.4.35
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
CHANGED
|
@@ -13,8 +13,8 @@
|
|
|
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
|
-
|
|
16
|
+
// "url": "file:////Users/yasir/Downloads/Flows - Integry SDK sample (41).html",
|
|
17
|
+
"url": "file:////Users/yasir/Downloads/Integry SDK sample code (21).html",
|
|
18
18
|
"webRoot": "${workspaceFolder}/src"
|
|
19
19
|
}
|
|
20
20
|
]
|
package/dist/esm/index.csm.d.ts
CHANGED
|
@@ -215,6 +215,7 @@ type Authorization = {
|
|
|
215
215
|
disable_link?: string;
|
|
216
216
|
integration_count?: number;
|
|
217
217
|
user_identity: string;
|
|
218
|
+
access_token?: string;
|
|
218
219
|
};
|
|
219
220
|
type TemplateType = Template;
|
|
220
221
|
type FlowCardProps = {
|
|
@@ -426,6 +427,8 @@ interface TemplateField {
|
|
|
426
427
|
is_multiselect?: boolean;
|
|
427
428
|
template_fields?: any[];
|
|
428
429
|
ui_field?: UiField;
|
|
430
|
+
is_button_enabled?: boolean;
|
|
431
|
+
on_button_click_script?: string;
|
|
429
432
|
}
|
|
430
433
|
interface TemplateStep {
|
|
431
434
|
id: number;
|
|
@@ -701,6 +704,7 @@ declare class IntegryJS {
|
|
|
701
704
|
* Destroy SDK instance and cleanup store
|
|
702
705
|
*/
|
|
703
706
|
destroy: () => void;
|
|
707
|
+
static setFieldValue: (fieldId: string, value: string) => void;
|
|
704
708
|
private getMethod;
|
|
705
709
|
private getBaseAPIUrl;
|
|
706
710
|
private getHeaders;
|