@integry/sdk 3.3.1-beta.14 → 3.3.1-beta.15

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.
@@ -176,6 +176,7 @@ interface ConfigWithObject extends SDKConfig {
176
176
  marketplaceId?: string;
177
177
  appId?: number;
178
178
  showApps?: boolean;
179
+ showTemplates?: boolean;
179
180
  }
180
181
  interface ConfigWithUrlParams extends SDKConfig {
181
182
  useUrlParams?: boolean;
@@ -267,7 +268,13 @@ interface TemplateField {
267
268
  app_user_data?: {
268
269
  app_user: number;
269
270
  id: number;
270
- value: string | number;
271
+ value /**
272
+ * Render the template form we ship
273
+ * @param data
274
+ */: /**
275
+ * Render the template form we ship
276
+ * @param data
277
+ */ string | number;
271
278
  is_changed: boolean;
272
279
  changed_dynamic_fields: string;
273
280
  }[];
@@ -301,6 +308,7 @@ interface InitConfig {
301
308
  renderMode: TemplateFormRenderModes;
302
309
  appId?: number;
303
310
  showApps?: boolean;
311
+ showTemplates?: boolean;
304
312
  }
305
313
  interface MarketplaceConfig {
306
314
  containerId: string;