@integry/sdk 3.2.6 → 3.2.7

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.
@@ -195,6 +195,11 @@ type AuthorizationType = {
195
195
  provider: string;
196
196
  is_sandbox_enabled: boolean;
197
197
  authorization_url_sandbox: string;
198
+ app: {
199
+ icon_url: string;
200
+ id: number;
201
+ name: string;
202
+ };
198
203
  };
199
204
  interface TemplateField {
200
205
  id: number;
@@ -244,7 +249,17 @@ interface TemplateField {
244
249
  app_user_data?: {
245
250
  app_user: number;
246
251
  id: number;
247
- value: string | number;
252
+ value: string
253
+ /**
254
+ * Render the template form we ship
255
+ * @param data
256
+ */
257
+ |
258
+ /**
259
+ * Render the template form we ship
260
+ * @param data
261
+ */
262
+ number;
248
263
  is_changed: boolean;
249
264
  changed_dynamic_fields: string;
250
265
  }[];