@or-sdk/hitl 0.37.3-beta.4162.0 → 0.38.1-beta.4169.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 +2 -2
- package/src/api/DraftMessages.ts +2 -2
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.38.0](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/hitl@0.37.2...@or-sdk/hitl@0.38.0) (2026-06-03)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **hitl:** rename scheduled messages API to draft messages ([efa9cdc](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/commit/efa9cdcc23e2fd1558098b719a80d9c7d3d2351b))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
## [0.37.2](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/hitl@0.37.1...@or-sdk/hitl@0.37.2) (2026-05-23)
|
|
7
16
|
|
|
8
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@or-sdk/hitl",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.38.1-beta.4169.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"dev": "pnpm build:watch:esm"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@onereach/types-hitl-api": "1.0.
|
|
21
|
+
"@onereach/types-hitl-api": "1.0.7-rc.3",
|
|
22
22
|
"@or-sdk/base": "^0.44.2",
|
|
23
23
|
"urijs": "^1.19.8"
|
|
24
24
|
},
|
package/src/api/DraftMessages.ts
CHANGED
|
@@ -101,7 +101,7 @@ export class DraftMessages extends HITLBase {
|
|
|
101
101
|
*
|
|
102
102
|
* Optional parameters:
|
|
103
103
|
* - `sessionId` - (string) Session ID to associate with
|
|
104
|
-
* - `
|
|
104
|
+
* - `meta` - (object) Meta information for message
|
|
105
105
|
* - `timeout` - (number) Request timeout in milliseconds
|
|
106
106
|
* - `version` - (string | number) API version to use
|
|
107
107
|
*
|
|
@@ -159,7 +159,7 @@ export class DraftMessages extends HITLBase {
|
|
|
159
159
|
* - `type` - (string) Updated type of the draft message
|
|
160
160
|
* - `contactIds` - (string[]) Updated array of contact IDs
|
|
161
161
|
* - `sessionId` - (string) Updated session ID
|
|
162
|
-
* - `
|
|
162
|
+
* - `meta` - (object) Updated meta information for message
|
|
163
163
|
* - `timestamp` - (Date) Updated send time
|
|
164
164
|
* - `timeout` - (number) Request timeout in milliseconds
|
|
165
165
|
* - `version` - (string | number) API version to use
|