@wildix/wda-stream-client 1.1.15 → 1.1.18

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.
@@ -56,6 +56,9 @@ declare const ConsumeEventCommand_base: {
56
56
  * groupName: "STRING_VALUE",
57
57
  * device: "STRING_VALUE",
58
58
  * sipCallId: "STRING_VALUE",
59
+ * publicAddress: "STRING_VALUE",
60
+ * privateAddress: "STRING_VALUE",
61
+ * location: "STRING_VALUE",
59
62
  * },
60
63
  * callee: {
61
64
  * phone: "STRING_VALUE",
@@ -70,6 +73,9 @@ declare const ConsumeEventCommand_base: {
70
73
  * groupName: "STRING_VALUE",
71
74
  * device: "STRING_VALUE",
72
75
  * sipCallId: "STRING_VALUE",
76
+ * publicAddress: "STRING_VALUE",
77
+ * privateAddress: "STRING_VALUE",
78
+ * location: "STRING_VALUE",
73
79
  * },
74
80
  * status: "connecting" || "talking" || "hold",
75
81
  * destination: "STRING_VALUE",
@@ -115,6 +121,9 @@ declare const ConsumeEventCommand_base: {
115
121
  * groupName: "STRING_VALUE",
116
122
  * device: "STRING_VALUE",
117
123
  * sipCallId: "STRING_VALUE",
124
+ * publicAddress: "STRING_VALUE",
125
+ * privateAddress: "STRING_VALUE",
126
+ * location: "STRING_VALUE",
118
127
  * },
119
128
  * callee: {
120
129
  * phone: "STRING_VALUE",
@@ -129,6 +138,9 @@ declare const ConsumeEventCommand_base: {
129
138
  * groupName: "STRING_VALUE",
130
139
  * device: "STRING_VALUE",
131
140
  * sipCallId: "STRING_VALUE",
141
+ * publicAddress: "STRING_VALUE",
142
+ * privateAddress: "STRING_VALUE",
143
+ * location: "STRING_VALUE",
132
144
  * },
133
145
  * status: "connecting" || "talking" || "hold",
134
146
  * destination: "STRING_VALUE",
@@ -175,6 +187,9 @@ declare const ConsumeEventCommand_base: {
175
187
  * groupName: "STRING_VALUE",
176
188
  * device: "STRING_VALUE",
177
189
  * sipCallId: "STRING_VALUE",
190
+ * publicAddress: "STRING_VALUE",
191
+ * privateAddress: "STRING_VALUE",
192
+ * location: "STRING_VALUE",
178
193
  * },
179
194
  * callee: "<CallFlowConsumeParticipant>",
180
195
  * status: "connecting" || "talking" || "hold",
@@ -543,7 +558,7 @@ declare const ConsumeEventCommand_base: {
543
558
  * template: { // MessageTemplateConfig
544
559
  * whatsapp: { // TemplateWithParameters
545
560
  * name: "STRING_VALUE", // required
546
- * parameters: [ // ListTemplateParameter // required
561
+ * parameters: [ // ListTemplateParameter
547
562
  * { // TemplateParameter
548
563
  * name: "STRING_VALUE", // required
549
564
  * value: "STRING_VALUE", // required
@@ -714,7 +714,7 @@ declare const DescribeEventCommand_base: {
714
714
  * // template: { // MessageTemplateConfig
715
715
  * // whatsapp: { // TemplateWithParameters
716
716
  * // name: "STRING_VALUE", // required
717
- * // parameters: [ // ListTemplateParameter // required
717
+ * // parameters: [ // ListTemplateParameter
718
718
  * // { // TemplateParameter
719
719
  * // name: "STRING_VALUE", // required
720
720
  * // value: "STRING_VALUE", // required
@@ -982,7 +982,7 @@ declare const DescribeEventCommand_base: {
982
982
  * // template: {
983
983
  * // whatsapp: {
984
984
  * // name: "STRING_VALUE", // required
985
- * // parameters: [ // required
985
+ * // parameters: [
986
986
  * // {
987
987
  * // name: "STRING_VALUE", // required
988
988
  * // value: "STRING_VALUE", // required
@@ -61,7 +61,7 @@ export interface TemplateParameter {
61
61
  */
62
62
  export interface TemplateWithParameters {
63
63
  name: string;
64
- parameters: (TemplateParameter)[];
64
+ parameters?: (TemplateParameter)[] | undefined;
65
65
  }
66
66
  /**
67
67
  * @public
@@ -335,7 +335,7 @@ export interface CallParticipant {
335
335
  */
336
336
  sipCallId?: string | undefined;
337
337
  /**
338
- * Represents a network endpoint consisting of a public IP address and a port number. Example: '10.20.30.40:59317'
338
+ * Represents a network endpoint consisting of a public IP address and a port number. Example: '123.45.67.89:59317'
339
339
  * @public
340
340
  */
341
341
  publicAddress?: string | undefined;
@@ -1317,6 +1317,9 @@ export interface CallFlowConsumeParticipant {
1317
1317
  groupName?: string | undefined;
1318
1318
  device?: string | undefined;
1319
1319
  sipCallId?: string | undefined;
1320
+ publicAddress?: string | undefined;
1321
+ privateAddress?: string | undefined;
1322
+ location?: string | undefined;
1320
1323
  }
1321
1324
  /**
1322
1325
  * @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.1.15",
4
+ "version": "1.1.18",
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",