@wildix/wda-insights-client 1.1.42 → 1.1.44

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.
@@ -279,6 +279,7 @@ declare const ListConversationsCommand_base: {
279
279
  * // trunkDirection: "STRING_VALUE",
280
280
  * // queueName: "STRING_VALUE",
281
281
  * // queueId: "STRING_VALUE",
282
+ * // queuePosition: Number("int"),
282
283
  * // tags: [ // CallFlowTags
283
284
  * // "STRING_VALUE",
284
285
  * // ],
@@ -105,6 +105,7 @@ declare const ListPlaylistItemsCommand_base: {
105
105
  * // trunkDirection: "STRING_VALUE",
106
106
  * // queueName: "STRING_VALUE",
107
107
  * // queueId: "STRING_VALUE",
108
+ * // queuePosition: Number("int"),
108
109
  * // tags: [ // CallFlowTags
109
110
  * // "STRING_VALUE",
110
111
  * // ],
@@ -103,6 +103,7 @@ declare const ListWatchHistoryCommand_base: {
103
103
  * // trunkDirection: "STRING_VALUE",
104
104
  * // queueName: "STRING_VALUE",
105
105
  * // queueId: "STRING_VALUE",
106
+ * // queuePosition: Number("int"),
106
107
  * // tags: [ // CallFlowTags
107
108
  * // "STRING_VALUE",
108
109
  * // ],
@@ -388,6 +388,11 @@ export interface CallRecord {
388
388
  trunkDirection?: string | undefined;
389
389
  queueName?: string | undefined;
390
390
  queueId?: string | undefined;
391
+ /**
392
+ * Position of the call in the queue (1-based). Updated from consume events and emitted on live progress and record flows.
393
+ * @public
394
+ */
395
+ queuePosition?: number | undefined;
391
396
  tags?: (string)[] | undefined;
392
397
  flags?: (string)[] | undefined;
393
398
  callerMos?: string | 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.42",
4
+ "version": "1.1.44",
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",