@integry/sdk 4.0.0-beta.6 → 4.0.0-beta.61
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.
- package/.vscode/launch.json +15 -0
- package/LICENSE +1 -1
- package/dist/esm/index.csm.d.ts +5 -2
- package/dist/esm/index.csm.js +2 -2
- package/dist/umd/index.umd.d.ts +1 -0
- package/dist/umd/index.umd.js +2 -2
- package/package.json +3 -3
|
@@ -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-14.html",
|
|
12
|
+
"webRoot": "${workspaceFolder}/src"
|
|
13
|
+
}
|
|
14
|
+
]
|
|
15
|
+
}
|
package/LICENSE
CHANGED
package/dist/esm/index.csm.d.ts
CHANGED
|
@@ -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;
|