@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.
@@ -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
- // "url": "file:////Users/yasir/Downloads/Integry SDK sample code (19).html",
16
+ // "url": "file:////Users/yasir/Downloads/Flows - Integry SDK sample (41).html",
17
+ "url": "file:////Users/yasir/Downloads/Thryv-function-as-source.html",
18
18
  "webRoot": "${workspaceFolder}/src"
19
19
  }
20
20
  ]
@@ -350,6 +350,19 @@ type AuthorizationType = {
350
350
  name: string;
351
351
  };
352
352
  };
353
+ interface UiFieldDataSource {
354
+ body: Record<string, unknown>;
355
+ headers: Record<string, string>;
356
+ method: string;
357
+ url: string;
358
+ }
359
+ interface UiField {
360
+ is_multiselect: boolean;
361
+ option_key_path: string;
362
+ type: string;
363
+ value_key_path: string;
364
+ data_source: UiFieldDataSource;
365
+ }
353
366
  interface TemplateField {
354
367
  id: number;
355
368
  is_required: boolean;
@@ -412,6 +425,7 @@ interface TemplateField {
412
425
  source_flow_integration_invocation_url?: string;
413
426
  is_multiselect?: boolean;
414
427
  template_fields?: any[];
428
+ ui_field?: UiField;
415
429
  }
416
430
  interface TemplateStep {
417
431
  id: number;