@cool-digital-solutions/interferir-models 1.2.29 → 1.2.31
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.
|
@@ -2,11 +2,13 @@ import { BaseModel, BaseSchema } from '../config';
|
|
|
2
2
|
export declare enum SubConfigType {
|
|
3
3
|
ALERT_EMAIL = "alert_email",
|
|
4
4
|
DAILY_LIMIT = "daily_limit",
|
|
5
|
-
REACHED_DAILY_LIMIT_EMAIL = "reached_daily_limit_email"
|
|
5
|
+
REACHED_DAILY_LIMIT_EMAIL = "reached_daily_limit_email",
|
|
6
|
+
EM_ERROR_MESSAGE = "em_error_message"
|
|
6
7
|
}
|
|
7
8
|
export declare enum SubConfigKey {
|
|
8
9
|
SENDED = "sended",
|
|
9
|
-
SENDED_EMAIL_COUNT = "sended_email_count"
|
|
10
|
+
SENDED_EMAIL_COUNT = "sended_email_count",
|
|
11
|
+
BASE_LIMIT = "base_limit"
|
|
10
12
|
}
|
|
11
13
|
export interface IGeneralConfigSub extends BaseSchema {
|
|
12
14
|
type: SubConfigType;
|
|
@@ -6,9 +6,11 @@ var SubConfigType;
|
|
|
6
6
|
SubConfigType["ALERT_EMAIL"] = "alert_email";
|
|
7
7
|
SubConfigType["DAILY_LIMIT"] = "daily_limit";
|
|
8
8
|
SubConfigType["REACHED_DAILY_LIMIT_EMAIL"] = "reached_daily_limit_email";
|
|
9
|
+
SubConfigType["EM_ERROR_MESSAGE"] = "em_error_message";
|
|
9
10
|
})(SubConfigType || (exports.SubConfigType = SubConfigType = {}));
|
|
10
11
|
var SubConfigKey;
|
|
11
12
|
(function (SubConfigKey) {
|
|
12
13
|
SubConfigKey["SENDED"] = "sended";
|
|
13
14
|
SubConfigKey["SENDED_EMAIL_COUNT"] = "sended_email_count";
|
|
15
|
+
SubConfigKey["BASE_LIMIT"] = "base_limit";
|
|
14
16
|
})(SubConfigKey || (exports.SubConfigKey = SubConfigKey = {}));
|
|
@@ -29,7 +29,8 @@ export declare enum Type {
|
|
|
29
29
|
SEND_GRID = "send_grid",
|
|
30
30
|
ENTRAMIND = "entramind",
|
|
31
31
|
WHITE_LIST = "white_list",
|
|
32
|
-
MIN_SYNC_TIME = "min_sync_time"
|
|
32
|
+
MIN_SYNC_TIME = "min_sync_time",
|
|
33
|
+
GENERAL_CONFIG = "general_config"
|
|
33
34
|
}
|
|
34
35
|
export declare enum Context {
|
|
35
36
|
EMAIL = "email",
|
|
@@ -44,12 +45,10 @@ export declare enum Context {
|
|
|
44
45
|
}
|
|
45
46
|
export declare enum Key {
|
|
46
47
|
DAILY_LIMIT = "daily_limit",
|
|
47
|
-
DAILY_LIMIT_BASE = "daily_limit_base",// gün sonu bu değere düşer
|
|
48
48
|
ALERT_EMAIL = "alert_email",
|
|
49
49
|
BETA = "beta",
|
|
50
50
|
PROD = "prod",
|
|
51
51
|
EM_ERROR_MESSAGE = "em_error_message",
|
|
52
|
-
EM_ERROR_MESSAGE_BASE = "em_error_message_base",// gün sonu bu değere düşer
|
|
53
52
|
NOT_WORKING_SPARK = "not_working_spark",
|
|
54
53
|
SUGGEST_UPDATE_PROD = "suggest_update_prod",
|
|
55
54
|
EMAIL = "email",
|
|
@@ -7,6 +7,7 @@ var Type;
|
|
|
7
7
|
Type["ENTRAMIND"] = "entramind";
|
|
8
8
|
Type["WHITE_LIST"] = "white_list";
|
|
9
9
|
Type["MIN_SYNC_TIME"] = "min_sync_time";
|
|
10
|
+
Type["GENERAL_CONFIG"] = "general_config";
|
|
10
11
|
})(Type || (exports.Type = Type = {}));
|
|
11
12
|
var Context;
|
|
12
13
|
(function (Context) {
|
|
@@ -23,12 +24,10 @@ var Context;
|
|
|
23
24
|
var Key;
|
|
24
25
|
(function (Key) {
|
|
25
26
|
Key["DAILY_LIMIT"] = "daily_limit";
|
|
26
|
-
Key["DAILY_LIMIT_BASE"] = "daily_limit_base";
|
|
27
27
|
Key["ALERT_EMAIL"] = "alert_email";
|
|
28
28
|
Key["BETA"] = "beta";
|
|
29
29
|
Key["PROD"] = "prod";
|
|
30
30
|
Key["EM_ERROR_MESSAGE"] = "em_error_message";
|
|
31
|
-
Key["EM_ERROR_MESSAGE_BASE"] = "em_error_message_base";
|
|
32
31
|
Key["NOT_WORKING_SPARK"] = "not_working_spark";
|
|
33
32
|
Key["SUGGEST_UPDATE_PROD"] = "suggest_update_prod";
|
|
34
33
|
Key["EMAIL"] = "email";
|