@wildix/wda-stream-client 1.1.18 → 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.
@@ -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
@@ -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
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.18",
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
+ }