@in.pulse-crm/sdk 2.9.6 → 2.9.7

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.
@@ -40,6 +40,7 @@ export interface WppMessage {
40
40
  fileSize?: string | null;
41
41
  }
42
42
  export interface ForwardMessagesData {
43
+ sourceType: 'whatsapp' | 'internal';
43
44
  messageIds: number[];
44
45
  whatsappTargets?: Array<{
45
46
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@in.pulse-crm/sdk",
3
- "version": "2.9.6",
3
+ "version": "2.9.7",
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",
@@ -43,6 +43,7 @@ export interface WppMessage {
43
43
  fileSize?: string | null;
44
44
  }
45
45
  export interface ForwardMessagesData {
46
+ sourceType: 'whatsapp' | 'internal';
46
47
  messageIds: number[];
47
48
  whatsappTargets?: Array<{ id: string; isGroup: boolean }>;
48
49
  internalTargets?: Array<{ id: number }>;