@integry/sdk 3.2.17 → 3.2.19
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 +2 -11
- package/dist/esm/index.csm.js +1 -1
- package/dist/umd/index.umd.d.ts +1 -0
- package/dist/umd/index.umd.js +1 -1
- package/package.json +1 -1
package/dist/esm/index.csm.d.ts
CHANGED
|
@@ -143,6 +143,7 @@ interface UserConfig {
|
|
|
143
143
|
autoRedirectToMyFlows?: boolean;
|
|
144
144
|
isReadOnly?: boolean;
|
|
145
145
|
marketplaceModalTitle?: string;
|
|
146
|
+
buttonLabelToSaveIntegration?: string;
|
|
146
147
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
147
148
|
[other: string]: any;
|
|
148
149
|
}
|
|
@@ -258,17 +259,7 @@ interface TemplateField {
|
|
|
258
259
|
app_user_data?: {
|
|
259
260
|
app_user: number;
|
|
260
261
|
id: number;
|
|
261
|
-
value: string
|
|
262
|
-
/**
|
|
263
|
-
* Render the template form we ship
|
|
264
|
-
* @param data
|
|
265
|
-
*/
|
|
266
|
-
|
|
|
267
|
-
/**
|
|
268
|
-
* Render the template form we ship
|
|
269
|
-
* @param data
|
|
270
|
-
*/
|
|
271
|
-
number;
|
|
262
|
+
value: string | number;
|
|
272
263
|
is_changed: boolean;
|
|
273
264
|
changed_dynamic_fields: string;
|
|
274
265
|
}[];
|