drapcode-constant 1.5.9 → 1.6.0
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.
@@ -61,4 +61,4 @@ export declare const PERMISSION_TYPES: ({
|
|
61
61
|
category?: undefined;
|
62
62
|
})[];
|
63
63
|
export declare const truthyValues: (string | number | boolean)[];
|
64
|
-
export declare const falsyValues: (string | number | boolean)[];
|
64
|
+
export declare const falsyValues: (string | number | boolean | null | undefined)[];
|
@@ -244,5 +244,5 @@ exports.truthyValues = [
|
|
244
244
|
];
|
245
245
|
exports.falsyValues = [
|
246
246
|
0, '0', false, 'false', 'False', 'FALSE', 'no', 'No', 'NO', 'n', 'N', 'f', 'F',
|
247
|
-
'off', 'Off', 'OFF', 'disable', 'Disable', 'DISABLE', 'disabled', 'Disabled', 'DISABLED'
|
247
|
+
'off', 'Off', 'OFF', 'disable', 'Disable', 'DISABLE', 'disabled', 'Disabled', 'DISABLED', '', null, undefined, NaN
|
248
248
|
];
|
@@ -57,6 +57,7 @@ var TWITTER_LOGIN = "TWITTER_LOGIN";
|
|
57
57
|
var TWO_FACTOR_AUTHENTICATION = "TWO_FACTOR_AUTHENTICATION";
|
58
58
|
var USER_ACTIVITY_TRACKER = "USER_ACTIVITY_TRACKER";
|
59
59
|
var WEBHOOK = "WEBHOOK";
|
60
|
+
var TEXT_ANONYMIZATION_ACTIVITY_TRACKER = "TEXT_ANONYMIZATION_ACTIVITY_TRACKER";
|
60
61
|
exports.permissionTypes = {
|
61
62
|
CUSTOM_COMPONENT: CUSTOM_COMPONENT,
|
62
63
|
DATA_SOURCE: DATA_SOURCE,
|
@@ -113,4 +114,5 @@ exports.permissionTypes = {
|
|
113
114
|
DOCUSIGN: DOCUSIGN,
|
114
115
|
STRIPE_PAYMENT_METHODS: STRIPE_PAYMENT_METHODS,
|
115
116
|
EMAIL_OTP_AUTHENTICATOR: EMAIL_OTP_AUTHENTICATOR,
|
117
|
+
TEXT_ANONYMIZATION_ACTIVITY_TRACKER: TEXT_ANONYMIZATION_ACTIVITY_TRACKER,
|
116
118
|
};
|
@@ -61,6 +61,7 @@ export declare const pluginCode: {
|
|
61
61
|
SMS_OTP_AUTHENTICATOR: string;
|
62
62
|
EMAIL_OTP_CONSENT_VALIDATOR: string;
|
63
63
|
SMS_OTP_CONSENT_VALIDATOR: string;
|
64
|
+
TEXT_ANONYMIZATION_ACTIVITY_TRACKER: string;
|
64
65
|
};
|
65
66
|
export declare const loginPluginCode: string[];
|
66
67
|
export declare const chatGptModels: {
|
@@ -64,6 +64,7 @@ exports.pluginCode = {
|
|
64
64
|
SMS_OTP_AUTHENTICATOR: "SMS_OTP_AUTHENTICATOR",
|
65
65
|
EMAIL_OTP_CONSENT_VALIDATOR: "EMAIL_OTP_CONSENT_VALIDATOR",
|
66
66
|
SMS_OTP_CONSENT_VALIDATOR: "SMS_OTP_CONSENT_VALIDATOR",
|
67
|
+
TEXT_ANONYMIZATION_ACTIVITY_TRACKER: "TEXT_ANONYMIZATION_ACTIVITY_TRACKER",
|
67
68
|
};
|
68
69
|
exports.loginPluginCode = [
|
69
70
|
exports.pluginCode.LOGIN,
|