@integry/sdk 4.4.33 → 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;
|
|
@@ -577,6 +580,7 @@ declare class IntegryJS {
|
|
|
577
580
|
// allow customers to use template tagging
|
|
578
581
|
static html: (strings: TemplateStringsArray, ...values: any[]) => import("preact").VNode<{}>;
|
|
579
582
|
static RenderModes: typeof RenderModes;
|
|
583
|
+
static TemplateFormRenderModes: typeof TemplateFormRenderModes;
|
|
580
584
|
static Layouts: typeof Layouts;
|
|
581
585
|
static ViewStyles: typeof ViewStyles;
|
|
582
586
|
static MarketplaceRenderModes: typeof MarketplaceRenderModes;
|
|
@@ -691,6 +695,7 @@ declare class IntegryJS {
|
|
|
691
695
|
* Destroy SDK instance and cleanup store
|
|
692
696
|
*/
|
|
693
697
|
destroy: () => void;
|
|
698
|
+
static setFieldValue: (fieldId: string, value: string) => void;
|
|
694
699
|
private getMethod;
|
|
695
700
|
private getBaseAPIUrl;
|
|
696
701
|
private getHeaders;
|