@wildix/wda-insights-client 1.1.3 → 1.1.4
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-cjs/protocols/Aws_restJson1.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +1 -0
- package/dist-types/commands/ListConversationsCommand.d.ts +5 -0
- package/dist-types/commands/ListConversationsInsightsAggregationsCommand.d.ts +5 -0
- package/dist-types/commands/ListConversationsInsightsCommand.d.ts +5 -0
- package/dist-types/commands/QueryConversationsCountCommand.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +9 -0
- package/package.json +1 -1
|
@@ -1088,6 +1088,7 @@ const se_ListConversationsFilter = (input, context) => {
|
|
|
1088
1088
|
'date': smithy_client_1._json,
|
|
1089
1089
|
'direction': smithy_client_1._json,
|
|
1090
1090
|
'duration': smithy_client_1._json,
|
|
1091
|
+
'entity': smithy_client_1._json,
|
|
1091
1092
|
'group': smithy_client_1._json,
|
|
1092
1093
|
'insights': smithy_client_1._json,
|
|
1093
1094
|
'interaction': _ => se_ListConversationsFilterInteraction(_, context),
|
|
@@ -1024,6 +1024,7 @@ const se_ListConversationsFilter = (input, context) => {
|
|
|
1024
1024
|
'date': _json,
|
|
1025
1025
|
'direction': _json,
|
|
1026
1026
|
'duration': _json,
|
|
1027
|
+
'entity': _json,
|
|
1027
1028
|
'group': _json,
|
|
1028
1029
|
'insights': _json,
|
|
1029
1030
|
'interaction': _ => se_ListConversationsFilterInteraction(_, context),
|
|
@@ -37,6 +37,11 @@ declare const ListConversationsCommand_base: {
|
|
|
37
37
|
* const input = { // ListConversationsInput
|
|
38
38
|
* company: "STRING_VALUE",
|
|
39
39
|
* filter: { // ListConversationsFilter
|
|
40
|
+
* entity: { // ListConversationsFilterEntity
|
|
41
|
+
* call: true || false,
|
|
42
|
+
* conference: true || false,
|
|
43
|
+
* chat: true || false,
|
|
44
|
+
* },
|
|
40
45
|
* participants: [ // ListConversationsFilterParticipantList
|
|
41
46
|
* { // ListConversationsFilterParticipant Union: only one key present
|
|
42
47
|
* email: "STRING_VALUE",
|
|
@@ -68,6 +68,11 @@ declare const ListConversationsInsightsAggregationsCommand_base: {
|
|
|
68
68
|
* },
|
|
69
69
|
* ],
|
|
70
70
|
* filter: { // ListConversationsFilter
|
|
71
|
+
* entity: { // ListConversationsFilterEntity
|
|
72
|
+
* call: true || false,
|
|
73
|
+
* conference: true || false,
|
|
74
|
+
* chat: true || false,
|
|
75
|
+
* },
|
|
71
76
|
* participants: [ // ListConversationsFilterParticipantList
|
|
72
77
|
* { // ListConversationsFilterParticipant Union: only one key present
|
|
73
78
|
* email: "STRING_VALUE",
|
|
@@ -60,6 +60,11 @@ declare const ListConversationsInsightsCommand_base: {
|
|
|
60
60
|
* },
|
|
61
61
|
* ],
|
|
62
62
|
* filter: { // ListConversationsFilter
|
|
63
|
+
* entity: { // ListConversationsFilterEntity
|
|
64
|
+
* call: true || false,
|
|
65
|
+
* conference: true || false,
|
|
66
|
+
* chat: true || false,
|
|
67
|
+
* },
|
|
63
68
|
* participants: [ // ListConversationsFilterParticipantList
|
|
64
69
|
* { // ListConversationsFilterParticipant Union: only one key present
|
|
65
70
|
* email: "STRING_VALUE",
|
|
@@ -37,6 +37,11 @@ declare const QueryConversationsCountCommand_base: {
|
|
|
37
37
|
* const input = { // QueryConversationsCountInput
|
|
38
38
|
* company: "STRING_VALUE",
|
|
39
39
|
* filter: { // ListConversationsFilter
|
|
40
|
+
* entity: { // ListConversationsFilterEntity
|
|
41
|
+
* call: true || false,
|
|
42
|
+
* conference: true || false,
|
|
43
|
+
* chat: true || false,
|
|
44
|
+
* },
|
|
40
45
|
* participants: [ // ListConversationsFilterParticipantList
|
|
41
46
|
* { // ListConversationsFilterParticipant Union: only one key present
|
|
42
47
|
* email: "STRING_VALUE",
|
|
@@ -2223,6 +2223,14 @@ export interface ListConversationsFilterNumber {
|
|
|
2223
2223
|
from?: number | undefined;
|
|
2224
2224
|
to?: number | undefined;
|
|
2225
2225
|
}
|
|
2226
|
+
/**
|
|
2227
|
+
* @public
|
|
2228
|
+
*/
|
|
2229
|
+
export interface ListConversationsFilterEntity {
|
|
2230
|
+
call?: boolean | undefined;
|
|
2231
|
+
conference?: boolean | undefined;
|
|
2232
|
+
chat?: boolean | undefined;
|
|
2233
|
+
}
|
|
2226
2234
|
/**
|
|
2227
2235
|
* @public
|
|
2228
2236
|
*/
|
|
@@ -2297,6 +2305,7 @@ export declare namespace ListConversationsFilterParticipant {
|
|
|
2297
2305
|
* @public
|
|
2298
2306
|
*/
|
|
2299
2307
|
export interface ListConversationsFilter {
|
|
2308
|
+
entity?: ListConversationsFilterEntity | undefined;
|
|
2300
2309
|
participants?: (ListConversationsFilterParticipant)[] | undefined;
|
|
2301
2310
|
participantsToInclude?: (ListConversationsFilterParticipant)[] | undefined;
|
|
2302
2311
|
participantsToExclude?: (ListConversationsFilterParticipant)[] | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/wda-insights-client",
|
|
3
3
|
"description": "@wildix/wda-insights-client client",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.4",
|
|
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",
|