@integry/sdk 3.8.2 → 3.9.1-beta.0

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.
@@ -6,6 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
8
 
9
+ ## [3.9.1] - 2023-10-24
10
+
11
+ ## Fixed
12
+
13
+ - Fixed the search not working properly for flows listing.
14
+
15
+ ## [3.9.0] - 2023-10-24
16
+
17
+ ## Changed
18
+
19
+ - Changed the sequence of flow setup form to show all connect screens first.
20
+
9
21
  ## [3.7.18] - 2023-10-04
10
22
 
11
23
  ## Added
@@ -315,7 +315,12 @@ interface TemplateField {
315
315
  regex_msg: string | null;
316
316
  is_visible: boolean;
317
317
  app_user_data?: {
318
- app_user: number;
318
+ app_user:
319
+ /**
320
+ * Render the template form we ship
321
+ * @param data
322
+ */
323
+ number;
319
324
  id: number;
320
325
  value: string | number;
321
326
  is_changed: boolean;
@@ -323,6 +328,10 @@ interface TemplateField {
323
328
  }[];
324
329
  added_in_mapping?: boolean;
325
330
  field_mapping_source?: string;
331
+ is_mappable: boolean;
332
+ is_editable: boolean;
333
+ allow_tags_in_text: boolean;
334
+ is_default_value_auto_mapped?: boolean;
326
335
  }
327
336
  interface TemplateStep {
328
337
  id: number;
@@ -359,6 +368,7 @@ interface InitConfig {
359
368
  skipOnDemand?: boolean;
360
369
  skipAccountConnectionOnLoad?: boolean;
361
370
  deploymentIdFromConfig?: number;
371
+ testMultipurpose?: boolean;
362
372
  }
363
373
  interface MarketplaceConfig {
364
374
  containerId: string;