@integry/sdk 4.0.0-beta.6 → 4.0.0-beta.60

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.
@@ -0,0 +1,15 @@
1
+ {
2
+ // Use IntelliSense to learn about possible attributes.
3
+ // Hover to view descriptions of existing attributes.
4
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version": "0.2.0",
6
+ "configurations": [
7
+ {
8
+ "type": "chrome",
9
+ "request": "launch",
10
+ "name": "Launch Chrome against localhost",
11
+ "url": "file:////Users/yasir/Downloads/Flows - Integry SDK sample-13.html",
12
+ "webRoot": "${workspaceFolder}/src"
13
+ }
14
+ ]
15
+ }
package/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2021 Osama Aamer <osama@integry.io>
1
+ Copyright 2021 Integry <hello@integry.io>
2
2
 
3
3
  Licensed under the Apache License, Version 2.0 (the "License");
4
4
  you may not use this file except in compliance with the License.
@@ -322,10 +322,12 @@ interface TemplateField {
322
322
  app_user_data?: {
323
323
  app_user: number;
324
324
  id: number;
325
- value: string /**
325
+ value: string
326
+ /**
326
327
  * Render the template form we ship
327
328
  * @param data
328
- */ | /**
329
+ */
330
+ | /**
329
331
  * Render the template form we ship
330
332
  * @param data
331
333
  */ number;
@@ -343,6 +345,7 @@ interface TemplateStep {
343
345
  id: number;
344
346
  weight: number;
345
347
  title: string;
348
+ description?: string;
346
349
  is_visible: boolean;
347
350
  activity: Activity;
348
351
  authorization_type: AuthorizationType;