@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/dist/umd/index.umd.d.ts
CHANGED
|
@@ -214,6 +214,7 @@ type Authorization = {
|
|
|
214
214
|
disable_link?: string;
|
|
215
215
|
integration_count?: number;
|
|
216
216
|
user_identity: string;
|
|
217
|
+
access_token?: string;
|
|
217
218
|
};
|
|
218
219
|
type TemplateType = Template;
|
|
219
220
|
type FlowCardProps = {
|
|
@@ -425,6 +426,8 @@ interface TemplateField {
|
|
|
425
426
|
is_multiselect?: boolean;
|
|
426
427
|
template_fields?: any[];
|
|
427
428
|
ui_field?: UiField;
|
|
429
|
+
is_button_enabled?: boolean;
|
|
430
|
+
on_button_click_script?: string;
|
|
428
431
|
}
|
|
429
432
|
interface TemplateStep {
|
|
430
433
|
id: number;
|
|
@@ -692,6 +695,7 @@ declare class IntegryJS {
|
|
|
692
695
|
* Destroy SDK instance and cleanup store
|
|
693
696
|
*/
|
|
694
697
|
destroy: () => void;
|
|
698
|
+
static setFieldValue: (fieldId: string, value: string) => void;
|
|
695
699
|
private getMethod;
|
|
696
700
|
private getBaseAPIUrl;
|
|
697
701
|
private getHeaders;
|