drapcode-constant 1.5.9 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
  ];
@@ -54,4 +54,5 @@ export declare const permissionTypes: {
54
54
  DOCUSIGN: string;
55
55
  STRIPE_PAYMENT_METHODS: string;
56
56
  EMAIL_OTP_AUTHENTICATOR: string;
57
+ TEXT_ANONYMIZATION_ACTIVITY_TRACKER: string;
57
58
  };
@@ -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,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "drapcode-constant",
3
- "version": "1.5.9",
3
+ "version": "1.6.0",
4
4
  "description": "Drapcode Constants",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",