@in.pulse-crm/sdk 2.14.3 → 2.14.4

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.
@@ -67,4 +67,5 @@ export interface File {
67
67
  * Data e hora em que o arquivo foi criado.
68
68
  */
69
69
  created_at: Date;
70
+ public_id: string;
70
71
  }
@@ -149,7 +149,6 @@ export interface SendMessageData {
149
149
  }
150
150
  export interface SendFileMessageData extends SendMessageData {
151
151
  fileId: number;
152
- publicFileId: string;
153
152
  sendAsDocument?: boolean;
154
153
  sendAsAudio?: boolean;
155
154
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@in.pulse-crm/sdk",
3
- "version": "2.14.3",
3
+ "version": "2.14.4",
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",
@@ -80,4 +80,6 @@ export interface File {
80
80
  * Data e hora em que o arquivo foi criado.
81
81
  */
82
82
  created_at: Date;
83
+
84
+ public_id: string;
83
85
  }
@@ -163,7 +163,6 @@ export interface SendMessageData {
163
163
 
164
164
  export interface SendFileMessageData extends SendMessageData {
165
165
  fileId: number;
166
- publicFileId: string;
167
166
  sendAsDocument?: boolean;
168
167
  sendAsAudio?: boolean;
169
168
  }