@trii/types 2.10.441 → 2.10.443

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.
@@ -199,6 +199,8 @@ export interface MessageEmail {
199
199
  isSpam?: boolean;
200
200
  /**Puntuación de spam (opcional) */
201
201
  spamScore?: number;
202
+ bodyJson?: string;
203
+ projectData?: string;
202
204
  }
203
205
  export interface EmailDocument {
204
206
  id: string;
@@ -15,6 +15,7 @@ export interface ICampaign {
15
15
  contactsSegmentsId?: string[];
16
16
  contactsTempListId?: string;
17
17
  contactsFileUrl?: string;
18
+ contactsFileName?: string;
18
19
  contactsFileColumns?: string[];
19
20
  contactsFileDestinationColumn?: string;
20
21
  countersContacts: number;
@@ -49,6 +50,7 @@ export declare enum CampaignType {
49
50
  NULL = 0,
50
51
  SMS = 1,
51
52
  EMAIL = 2,
53
+ RCS = 3,
52
54
  CALL = 3,
53
55
  WHATSAPP = 4
54
56
  }
@@ -14,6 +14,7 @@ var CampaignType;
14
14
  CampaignType[CampaignType["NULL"] = 0] = "NULL";
15
15
  CampaignType[CampaignType["SMS"] = 1] = "SMS";
16
16
  CampaignType[CampaignType["EMAIL"] = 2] = "EMAIL";
17
+ CampaignType[CampaignType["RCS"] = 3] = "RCS";
17
18
  CampaignType[CampaignType["CALL"] = 3] = "CALL";
18
19
  CampaignType[CampaignType["WHATSAPP"] = 4] = "WHATSAPP";
19
20
  })(CampaignType || (exports.CampaignType = CampaignType = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.441",
3
+ "version": "2.10.443",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",