@wildix/wda-stream-client 1.1.16 → 1.1.19

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.
@@ -558,7 +558,7 @@ declare const ConsumeEventCommand_base: {
558
558
  * template: { // MessageTemplateConfig
559
559
  * whatsapp: { // TemplateWithParameters
560
560
  * name: "STRING_VALUE", // required
561
- * parameters: [ // ListTemplateParameter // required
561
+ * parameters: [ // ListTemplateParameter
562
562
  * { // TemplateParameter
563
563
  * name: "STRING_VALUE", // required
564
564
  * value: "STRING_VALUE", // required
@@ -801,6 +801,7 @@ declare const ConsumeEventCommand_base: {
801
801
  * media: [
802
802
  * "STRING_VALUE",
803
803
  * ],
804
+ * quoteMessageId: "STRING_VALUE",
804
805
  * },
805
806
  * },
806
807
  * whatsappStatus: { // WhatsAppStatusConsumeEvent
@@ -79,6 +79,7 @@ declare const DescribeEventCommand_base: {
79
79
  * media: [
80
80
  * "STRING_VALUE",
81
81
  * ],
82
+ * quoteMessageId: "STRING_VALUE",
82
83
  * },
83
84
  * },
84
85
  * WhatsAppStatusEvent: { // WhatsAppStatusEvent
@@ -714,7 +715,7 @@ declare const DescribeEventCommand_base: {
714
715
  * // template: { // MessageTemplateConfig
715
716
  * // whatsapp: { // TemplateWithParameters
716
717
  * // name: "STRING_VALUE", // required
717
- * // parameters: [ // ListTemplateParameter // required
718
+ * // parameters: [ // ListTemplateParameter
718
719
  * // { // TemplateParameter
719
720
  * // name: "STRING_VALUE", // required
720
721
  * // value: "STRING_VALUE", // required
@@ -982,7 +983,7 @@ declare const DescribeEventCommand_base: {
982
983
  * // template: {
983
984
  * // whatsapp: {
984
985
  * // name: "STRING_VALUE", // required
985
- * // parameters: [ // required
986
+ * // parameters: [
986
987
  * // {
987
988
  * // name: "STRING_VALUE", // required
988
989
  * // 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
@@ -88,6 +88,7 @@ export interface WhatsAppInboundEventData {
88
88
  id: string;
89
89
  message: string;
90
90
  media?: (string)[] | undefined;
91
+ quoteMessageId?: string | undefined;
91
92
  }
92
93
  /**
93
94
  * @public
@@ -335,7 +336,7 @@ export interface CallParticipant {
335
336
  */
336
337
  sipCallId?: string | undefined;
337
338
  /**
338
- * Represents a network endpoint consisting of a public IP address and a port number. Example: '10.20.30.40:59317'
339
+ * Represents a network endpoint consisting of a public IP address and a port number. Example: '123.45.67.89:59317'
339
340
  * @public
340
341
  */
341
342
  publicAddress?: string | undefined;
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.16",
4
+ "version": "1.1.19",
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",
@@ -80,4 +80,4 @@
80
80
  "react-native": {
81
81
  "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
82
82
  }
83
- }
83
+ }