@wildix/wda-history-client 1.0.31 → 1.0.32

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.
@@ -68,6 +68,7 @@ declare const GetCallCommand_base: {
68
68
  * // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN",
69
69
  * // role: "CLIENT" || "AGENT", // required
70
70
  * // license: "STRING_VALUE",
71
+ * // sipCallId: "STRING_VALUE",
71
72
  * // },
72
73
  * // callee: {
73
74
  * // type: "REMOTE" || "LOCAL", // required
@@ -84,6 +85,7 @@ declare const GetCallCommand_base: {
84
85
  * // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN",
85
86
  * // role: "CLIENT" || "AGENT", // required
86
87
  * // license: "STRING_VALUE",
88
+ * // sipCallId: "STRING_VALUE",
87
89
  * // },
88
90
  * // service: "STRING_VALUE",
89
91
  * // serviceNumber: "STRING_VALUE",
@@ -77,6 +77,7 @@ declare const QueryConversationsCommand_base: {
77
77
  * // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN",
78
78
  * // role: "CLIENT" || "AGENT", // required
79
79
  * // license: "STRING_VALUE",
80
+ * // sipCallId: "STRING_VALUE",
80
81
  * // },
81
82
  * // callee: {
82
83
  * // type: "REMOTE" || "LOCAL", // required
@@ -93,6 +94,7 @@ declare const QueryConversationsCommand_base: {
93
94
  * // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN",
94
95
  * // role: "CLIENT" || "AGENT", // required
95
96
  * // license: "STRING_VALUE",
97
+ * // sipCallId: "STRING_VALUE",
96
98
  * // },
97
99
  * // service: "STRING_VALUE",
98
100
  * // serviceNumber: "STRING_VALUE",
@@ -77,6 +77,7 @@ declare const QueryUserCallsCommand_base: {
77
77
  * // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN",
78
78
  * // role: "CLIENT" || "AGENT", // required
79
79
  * // license: "STRING_VALUE",
80
+ * // sipCallId: "STRING_VALUE",
80
81
  * // },
81
82
  * // callee: {
82
83
  * // type: "REMOTE" || "LOCAL", // required
@@ -93,6 +94,7 @@ declare const QueryUserCallsCommand_base: {
93
94
  * // userDevice: "COLLABORATION_WEB" || "COLLABORATION_IOS" || "COLLABORATION_ANDROID" || "XBEES_WEB" || "XBEES_IOS" || "XBEES_ANDROID" || "WILDIX_PHONE" || "WILDIX_DEVICE" || "VOICEBOT" || "UNKNOWN",
94
95
  * // role: "CLIENT" || "AGENT", // required
95
96
  * // license: "STRING_VALUE",
97
+ * // sipCallId: "STRING_VALUE",
96
98
  * // },
97
99
  * // service: "STRING_VALUE",
98
100
  * // serviceNumber: "STRING_VALUE",
@@ -271,6 +271,11 @@ export interface CallParticipant {
271
271
  userDevice?: CallDevice | undefined;
272
272
  role: CallParticipantRole;
273
273
  license?: string | undefined;
274
+ /**
275
+ * A unique identifier for the SIP call session used to control the call e.g., answer, hold, transfer, hang up.
276
+ * @public
277
+ */
278
+ sipCallId?: string | undefined;
274
279
  }
275
280
  /**
276
281
  * @public
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.0.31",
4
+ "version": "1.0.32",
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",