@or-sdk/bots 0.23.7 → 0.24.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 +3 -3
- package/src/Bots.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.24.0](https://gitlab.com/onereach/platform/or-sdk-next/compare/@or-sdk/bots@0.23.7...@or-sdk/bots@0.24.0) (2022-06-14)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **deployments:** Deployments sdk ([41219bd](https://gitlab.com/onereach/platform/or-sdk-next/commit/41219bdf58956fc07aea1d0d5093e8cfddabc00d))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
### [0.23.7](https://gitlab.com/onereach/platform/or-sdk-next/compare/@or-sdk/bots@0.23.6...@or-sdk/bots@0.23.7) (2022-06-10)
|
|
7
16
|
|
|
8
17
|
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
2
|
+
"version": "0.24.0",
|
|
3
3
|
"name": "@or-sdk/bots",
|
|
4
4
|
"main": "dist/cjs/index.js",
|
|
5
5
|
"module": "dist/esm/index.js",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@or-sdk/base": "^0.24.1",
|
|
27
27
|
"@or-sdk/data-hub": "^0.23.7",
|
|
28
|
-
"@or-sdk/tags": "^0.
|
|
28
|
+
"@or-sdk/tags": "^0.24.0"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "cb96ea9aaf7a72dd4bde29b1d58ef47b40d3052c"
|
|
31
31
|
}
|
package/src/Bots.ts
CHANGED
|
@@ -107,7 +107,7 @@ export class Bots implements Taggable<Bot> {
|
|
|
107
107
|
/**
|
|
108
108
|
* Save bot
|
|
109
109
|
*
|
|
110
|
-
* If source contains existing id - existing bot be updated
|
|
110
|
+
* If source contains existing id - existing bot will be updated
|
|
111
111
|
* ```typescript
|
|
112
112
|
* const savedBot = await bots.saveBot(botSource);
|
|
113
113
|
* ```
|