@in.pulse-crm/sdk 2.9.4 → 2.9.6

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.
@@ -8,6 +8,7 @@ export interface InternalMessage {
8
8
  internalChatId: number;
9
9
  body: string;
10
10
  timestamp: string;
11
+ isForwarded?: boolean;
11
12
  status: WppMessageStatus;
12
13
  fileId: number | null;
13
14
  fileName: string | null;
@@ -33,6 +33,7 @@ export interface WppMessage {
33
33
  body: string;
34
34
  timestamp: string;
35
35
  status: WppMessageStatus;
36
+ isForwarded?: boolean;
36
37
  fileId?: number | null;
37
38
  fileName?: string | null;
38
39
  fileType?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@in.pulse-crm/sdk",
3
- "version": "2.9.4",
3
+ "version": "2.9.6",
4
4
  "description": "SDKs for abstraction of api consumption of in.pulse-crm application",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -9,6 +9,7 @@ export interface InternalMessage {
9
9
  internalChatId: number;
10
10
  body: string;
11
11
  timestamp: string;
12
+ isForwarded?: boolean;
12
13
  status: WppMessageStatus;
13
14
  fileId: number | null;
14
15
  fileName: string | null;
@@ -36,6 +36,7 @@ export interface WppMessage {
36
36
  body: string;
37
37
  timestamp: string;
38
38
  status: WppMessageStatus;
39
+ isForwarded?: boolean;
39
40
  fileId?: number | null;
40
41
  fileName?: string | null;
41
42
  fileType?: string | null;