@or-sdk/flows 0.25.1 → 0.25.3-405.0
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/CHANGELOG.md +9 -0
- package/package.json +6 -7
- package/src/Flows.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
### [0.25.2](https://gitlab.com/onereach/platform/or-sdk-next/compare/@or-sdk/flows@0.25.1...@or-sdk/flows@0.25.2) (2022-06-10)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Fix lock-files ([b81beed](https://gitlab.com/onereach/platform/or-sdk-next/commit/b81beed9d83b37aff2b08f8b372b70c4e71b611b))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
### [0.25.1](https://gitlab.com/onereach/platform/or-sdk-next/compare/@or-sdk/flows@0.25.0...@or-sdk/flows@0.25.1) (2022-06-03)
|
|
7
16
|
|
|
8
17
|
**Note:** Version bump only for package @or-sdk/flows
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.25.
|
|
2
|
+
"version": "0.25.3-405.0",
|
|
3
3
|
"name": "@or-sdk/flows",
|
|
4
4
|
"main": "dist/cjs/index.js",
|
|
5
5
|
"module": "dist/esm/index.js",
|
|
@@ -23,10 +23,9 @@
|
|
|
23
23
|
"access": "public"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@or-sdk/base": "^0.24.
|
|
27
|
-
"@or-sdk/data-hub": "^0.23.
|
|
28
|
-
"@or-sdk/deployer": "^0.24.
|
|
29
|
-
"@or-sdk/tags": "^0.23.
|
|
30
|
-
}
|
|
31
|
-
"gitHead": "816010da8896a046faa73b672c6d8f6ed4d30fe7"
|
|
26
|
+
"@or-sdk/base": "^0.24.1",
|
|
27
|
+
"@or-sdk/data-hub": "^0.23.7",
|
|
28
|
+
"@or-sdk/deployer": "^0.24.4",
|
|
29
|
+
"@or-sdk/tags": "^0.23.8-405.0"
|
|
30
|
+
}
|
|
32
31
|
}
|
package/src/Flows.ts
CHANGED
|
@@ -137,7 +137,7 @@ export class Flows implements Taggable<Flow> {
|
|
|
137
137
|
/**
|
|
138
138
|
* Save flow
|
|
139
139
|
*
|
|
140
|
-
* If source contains existing id - existing flow be updated
|
|
140
|
+
* If source contains existing id - existing flow will be updated
|
|
141
141
|
* ```typescript
|
|
142
142
|
* const savedFlow = await flows.saveFlow(flowSource);
|
|
143
143
|
* ```
|