@wildix/wda-history-client 1.2.7 → 1.2.8
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.
|
@@ -112,6 +112,7 @@ declare const GetChatCommand_base: {
|
|
|
112
112
|
* // pbxExtension: "STRING_VALUE",
|
|
113
113
|
* // pbxSerial: "STRING_VALUE",
|
|
114
114
|
* // pbxUserId: "STRING_VALUE",
|
|
115
|
+
* // pbxGroupId: "STRING_VALUE",
|
|
115
116
|
* // createdAt: "STRING_VALUE",
|
|
116
117
|
* // updatedAt: "STRING_VALUE",
|
|
117
118
|
* // },
|
|
@@ -150,6 +151,7 @@ declare const GetChatCommand_base: {
|
|
|
150
151
|
* // pbxExtension: "STRING_VALUE",
|
|
151
152
|
* // pbxSerial: "STRING_VALUE",
|
|
152
153
|
* // pbxUserId: "STRING_VALUE",
|
|
154
|
+
* // pbxGroupId: "STRING_VALUE",
|
|
153
155
|
* // createdAt: "STRING_VALUE",
|
|
154
156
|
* // updatedAt: "STRING_VALUE",
|
|
155
157
|
* // type: "REMOTE" || "LOCAL", // required
|
|
@@ -115,6 +115,7 @@ declare const GetChatTranscriptionCommand_base: {
|
|
|
115
115
|
* // pbxExtension: "STRING_VALUE",
|
|
116
116
|
* // pbxSerial: "STRING_VALUE",
|
|
117
117
|
* // pbxUserId: "STRING_VALUE",
|
|
118
|
+
* // pbxGroupId: "STRING_VALUE",
|
|
118
119
|
* // createdAt: "STRING_VALUE",
|
|
119
120
|
* // updatedAt: "STRING_VALUE",
|
|
120
121
|
* // },
|
|
@@ -155,6 +156,7 @@ declare const GetChatTranscriptionCommand_base: {
|
|
|
155
156
|
* // pbxExtension: "STRING_VALUE",
|
|
156
157
|
* // pbxSerial: "STRING_VALUE",
|
|
157
158
|
* // pbxUserId: "STRING_VALUE",
|
|
159
|
+
* // pbxGroupId: "STRING_VALUE",
|
|
158
160
|
* // createdAt: "STRING_VALUE",
|
|
159
161
|
* // updatedAt: "STRING_VALUE",
|
|
160
162
|
* // },
|
|
@@ -111,6 +111,7 @@ declare const GetChatTranscriptionTextCommand_base: {
|
|
|
111
111
|
* // pbxExtension: "STRING_VALUE",
|
|
112
112
|
* // pbxSerial: "STRING_VALUE",
|
|
113
113
|
* // pbxUserId: "STRING_VALUE",
|
|
114
|
+
* // pbxGroupId: "STRING_VALUE",
|
|
114
115
|
* // createdAt: "STRING_VALUE",
|
|
115
116
|
* // updatedAt: "STRING_VALUE",
|
|
116
117
|
* // },
|
|
@@ -151,6 +152,7 @@ declare const GetChatTranscriptionTextCommand_base: {
|
|
|
151
152
|
* // pbxExtension: "STRING_VALUE",
|
|
152
153
|
* // pbxSerial: "STRING_VALUE",
|
|
153
154
|
* // pbxUserId: "STRING_VALUE",
|
|
155
|
+
* // pbxGroupId: "STRING_VALUE",
|
|
154
156
|
* // createdAt: "STRING_VALUE",
|
|
155
157
|
* // updatedAt: "STRING_VALUE",
|
|
156
158
|
* // },
|
|
@@ -606,6 +606,7 @@ export interface User {
|
|
|
606
606
|
pbxExtension?: string | undefined;
|
|
607
607
|
pbxSerial?: string | undefined;
|
|
608
608
|
pbxUserId?: string | undefined;
|
|
609
|
+
pbxGroupId?: string | undefined;
|
|
609
610
|
createdAt?: string | undefined;
|
|
610
611
|
updatedAt?: string | undefined;
|
|
611
612
|
}
|
|
@@ -795,6 +796,7 @@ export interface ChatParticipantInfo {
|
|
|
795
796
|
pbxExtension?: string | undefined;
|
|
796
797
|
pbxSerial?: string | undefined;
|
|
797
798
|
pbxUserId?: string | undefined;
|
|
799
|
+
pbxGroupId?: string | undefined;
|
|
798
800
|
createdAt?: string | undefined;
|
|
799
801
|
updatedAt?: string | undefined;
|
|
800
802
|
type: ChatParticipantType;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/wda-history-client",
|
|
3
3
|
"description": "@wildix/wda-history-client client",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.8",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|