@integry/sdk 4.4.28 → 4.4.30
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 +2 -2
- package/dist/esm/index.csm.d.ts +14 -0
- package/dist/esm/index.csm.js +1 -1
- package/dist/umd/index.umd.d.ts +14 -0
- package/dist/umd/index.umd.js +1 -1
- package/package.json +1 -1
package/dist/umd/index.umd.d.ts
CHANGED
|
@@ -349,6 +349,19 @@ type AuthorizationType = {
|
|
|
349
349
|
name: string;
|
|
350
350
|
};
|
|
351
351
|
};
|
|
352
|
+
interface UiFieldDataSource {
|
|
353
|
+
body: Record<string, unknown>;
|
|
354
|
+
headers: Record<string, string>;
|
|
355
|
+
method: string;
|
|
356
|
+
url: string;
|
|
357
|
+
}
|
|
358
|
+
interface UiField {
|
|
359
|
+
is_multiselect: boolean;
|
|
360
|
+
option_key_path: string;
|
|
361
|
+
type: string;
|
|
362
|
+
value_key_path: string;
|
|
363
|
+
data_source: UiFieldDataSource;
|
|
364
|
+
}
|
|
352
365
|
interface TemplateField {
|
|
353
366
|
id: number;
|
|
354
367
|
is_required: boolean;
|
|
@@ -411,6 +424,7 @@ interface TemplateField {
|
|
|
411
424
|
source_flow_integration_invocation_url?: string;
|
|
412
425
|
is_multiselect?: boolean;
|
|
413
426
|
template_fields?: any[];
|
|
427
|
+
ui_field?: UiField;
|
|
414
428
|
}
|
|
415
429
|
interface TemplateStep {
|
|
416
430
|
id: number;
|