@wildix/wda-stream-client 1.0.62 → 1.0.63

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.
@@ -293,6 +293,9 @@ declare const DescribeEventCommand_base: {
293
293
  * // statusChangeDate: "STRING_VALUE", // required
294
294
  * // },
295
295
  * // ],
296
+ * // participantsGroupIds: [ // ConversationParticipantsGroupList
297
+ * // "STRING_VALUE",
298
+ * // ],
296
299
  * // },
297
300
  * // CallAnalyticsLiveCompleteEvent: { // CallAnalyticsLiveCompleteEvent
298
301
  * // id: "STRING_VALUE", // required
@@ -749,6 +752,9 @@ declare const DescribeEventCommand_base: {
749
752
  * // ],
750
753
  * // transcriptionStatus: "AVAILABLE" || "UNAVAILABLE",
751
754
  * // transcriptionLanguage: "STRING_VALUE",
755
+ * // participantsGroupIds: [
756
+ * // "STRING_VALUE",
757
+ * // ],
752
758
  * // },
753
759
  * // ConferenceAnalyticsLiveCompleteEvent: { // ConferenceAnalyticsLiveCompleteEvent
754
760
  * // id: "STRING_VALUE", // required
@@ -1203,6 +1209,9 @@ declare const DescribeEventCommand_base: {
1203
1209
  * // statusChangeDate: "STRING_VALUE", // required
1204
1210
  * // },
1205
1211
  * // ],
1212
+ * // participantsGroupIds: [
1213
+ * // "STRING_VALUE",
1214
+ * // ],
1206
1215
  * // },
1207
1216
  * // },
1208
1217
  * // WebhookCallLiveCompletedEvent: { // WebhookCallLiveCompletedEvent
@@ -1621,6 +1630,9 @@ declare const DescribeEventCommand_base: {
1621
1630
  * // ],
1622
1631
  * // transcriptionStatus: "AVAILABLE" || "UNAVAILABLE",
1623
1632
  * // transcriptionLanguage: "STRING_VALUE",
1633
+ * // participantsGroupIds: [
1634
+ * // "STRING_VALUE",
1635
+ * // ],
1624
1636
  * // },
1625
1637
  * // },
1626
1638
  * // WebhookConferenceLiveCompletedEvent: { // WebhookConferenceLiveCompletedEvent
@@ -224,6 +224,9 @@ declare const QueryConversationsCommand_base: {
224
224
  * // statusChangeDate: "STRING_VALUE", // required
225
225
  * // },
226
226
  * // ],
227
+ * // participantsGroupIds: [ // ConversationParticipantsGroupList
228
+ * // "STRING_VALUE",
229
+ * // ],
227
230
  * // },
228
231
  * // ],
229
232
  * // conferences: [ // QueryConversationsConferencesList // required
@@ -253,6 +256,9 @@ declare const QueryConversationsCommand_base: {
253
256
  * // ],
254
257
  * // transcriptionStatus: "AVAILABLE" || "UNAVAILABLE",
255
258
  * // transcriptionLanguage: "STRING_VALUE",
259
+ * // participantsGroupIds: [
260
+ * // "STRING_VALUE",
261
+ * // ],
256
262
  * // },
257
263
  * // ],
258
264
  * // chats: [ // QueryConversationsChatsList // required
@@ -1008,6 +1008,11 @@ export interface CallAnalyticsLiveProgressEvent {
1008
1008
  eventTrigger: CallAnalyticsLiveProgressEventTrigger;
1009
1009
  start: string;
1010
1010
  flows: (CallAnalyticsLiveProgressEventFlow)[];
1011
+ /**
1012
+ * List of unique group IDs from all participants involved in the conversation
1013
+ * @public
1014
+ */
1015
+ participantsGroupIds?: (string)[] | undefined;
1011
1016
  }
1012
1017
  /**
1013
1018
  * @public
@@ -1783,6 +1788,11 @@ export interface ConferenceAnalyticsLiveProgressEvent {
1783
1788
  participants: (ConferenceParticipant)[];
1784
1789
  transcriptionStatus?: ConferenceTranscriptionStatus | undefined;
1785
1790
  transcriptionLanguage?: string | undefined;
1791
+ /**
1792
+ * List of unique group IDs from all participants involved in the conversation
1793
+ * @public
1794
+ */
1795
+ participantsGroupIds?: (string)[] | undefined;
1786
1796
  }
1787
1797
  /**
1788
1798
  * @public
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/wda-stream-client",
3
3
  "description": "@wildix/wda-stream-client client",
4
- "version": "1.0.62",
4
+ "version": "1.0.63",
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",