@cool-digital-solutions/interferir-models 1.3.57 → 1.3.58
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.
|
@@ -27,6 +27,8 @@ import { IGeneralConfigSub } from './';
|
|
|
27
27
|
import { BaseModel, BaseSchema } from '../config';
|
|
28
28
|
export declare enum Type {
|
|
29
29
|
SEND_GRID = "send_grid",
|
|
30
|
+
SMS = "sms",
|
|
31
|
+
WHATS_APP = "whats_app",
|
|
30
32
|
ENTRAMIND = "entramind",
|
|
31
33
|
WHITE_LIST = "white_list",
|
|
32
34
|
BLACK_LIST = "black_list",
|
|
@@ -37,6 +39,8 @@ export declare enum Type {
|
|
|
37
39
|
}
|
|
38
40
|
export declare enum Context {
|
|
39
41
|
EMAIL = "email",
|
|
42
|
+
SMS = "sms",
|
|
43
|
+
WHATS_APP = "whats_app",
|
|
40
44
|
TO_EMAIL = "to_email",
|
|
41
45
|
SENDER_EMAIL = "sender_email",
|
|
42
46
|
SENDER_EMAIL_STARTUP_WELCOME = "sender_email_startup_welcome",
|
|
@@ -4,6 +4,8 @@ exports.Key = exports.Context = exports.Type = void 0;
|
|
|
4
4
|
var Type;
|
|
5
5
|
(function (Type) {
|
|
6
6
|
Type["SEND_GRID"] = "send_grid";
|
|
7
|
+
Type["SMS"] = "sms";
|
|
8
|
+
Type["WHATS_APP"] = "whats_app";
|
|
7
9
|
Type["ENTRAMIND"] = "entramind";
|
|
8
10
|
Type["WHITE_LIST"] = "white_list";
|
|
9
11
|
Type["BLACK_LIST"] = "black_list";
|
|
@@ -15,6 +17,8 @@ var Type;
|
|
|
15
17
|
var Context;
|
|
16
18
|
(function (Context) {
|
|
17
19
|
Context["EMAIL"] = "email";
|
|
20
|
+
Context["SMS"] = "sms";
|
|
21
|
+
Context["WHATS_APP"] = "whats_app";
|
|
18
22
|
Context["TO_EMAIL"] = "to_email";
|
|
19
23
|
Context["SENDER_EMAIL"] = "sender_email";
|
|
20
24
|
Context["SENDER_EMAIL_STARTUP_WELCOME"] = "sender_email_startup_welcome";
|