@livechat/platform-workflows 0.0.26 → 0.0.28
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/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +6 -6
package/dist/index.js
CHANGED
|
@@ -9247,7 +9247,7 @@ var workflowBuilderUtils = {
|
|
|
9247
9247
|
stringify(json, space = 4) {
|
|
9248
9248
|
return JSON.stringify(json, null, space);
|
|
9249
9249
|
},
|
|
9250
|
-
escapeTag(value) {
|
|
9250
|
+
escapeTag(value = "") {
|
|
9251
9251
|
const valueWithoutQuotes = value.replaceAll('"', "");
|
|
9252
9252
|
return valueWithoutQuotes.substring(2, valueWithoutQuotes.length - 1);
|
|
9253
9253
|
},
|
package/dist/index.mjs
CHANGED
|
@@ -9290,7 +9290,7 @@ var workflowBuilderUtils = {
|
|
|
9290
9290
|
stringify(json, space = 4) {
|
|
9291
9291
|
return JSON.stringify(json, null, space);
|
|
9292
9292
|
},
|
|
9293
|
-
escapeTag(value) {
|
|
9293
|
+
escapeTag(value = "") {
|
|
9294
9294
|
const valueWithoutQuotes = value.replaceAll('"', "");
|
|
9295
9295
|
return valueWithoutQuotes.substring(2, valueWithoutQuotes.length - 1);
|
|
9296
9296
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@livechat/platform-workflows",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.28",
|
|
4
4
|
"description": "Text Platform | Workflows",
|
|
5
5
|
"author": "Wojciech Dudek",
|
|
6
6
|
"license": "MIT",
|
|
@@ -80,7 +80,10 @@
|
|
|
80
80
|
"reactflow": "^11.11.4",
|
|
81
81
|
"uuid": "^9.0.1",
|
|
82
82
|
"validator": "^13.12.0",
|
|
83
|
-
"web-worker": "^1.3.0"
|
|
83
|
+
"web-worker": "^1.3.0",
|
|
84
|
+
"@livechat/developer-studio-api": "3.3.8",
|
|
85
|
+
"@livechat/developer-studio-ui-react": "0.0.62",
|
|
86
|
+
"@livechat/platform-integrations": "0.0.6"
|
|
84
87
|
},
|
|
85
88
|
"peerDependencies": {
|
|
86
89
|
"@tanstack/react-query": "4.36.1",
|
|
@@ -90,10 +93,7 @@
|
|
|
90
93
|
"@livechat/design-system-react-components": "^1.34.1",
|
|
91
94
|
"react": "^18.2.0",
|
|
92
95
|
"react-dom": "^18.2.0",
|
|
93
|
-
"react-router-dom": "^6.17.0"
|
|
94
|
-
"@livechat/developer-studio-api": "3.3.8",
|
|
95
|
-
"@livechat/developer-studio-ui-react": "0.0.62",
|
|
96
|
-
"@livechat/platform-integrations": "0.0.5"
|
|
96
|
+
"react-router-dom": "^6.17.0"
|
|
97
97
|
},
|
|
98
98
|
"scripts": {
|
|
99
99
|
"build": "tsup",
|