expensify-common 2.0.104 → 2.0.105
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.
- package/dist/CONST.d.ts +4 -0
- package/dist/CONST.js +4 -0
- package/package.json +1 -1
package/dist/CONST.d.ts
CHANGED
|
@@ -485,6 +485,10 @@ declare const CONST: {
|
|
|
485
485
|
};
|
|
486
486
|
readonly PASSWORD_COMPLEXITY_REGEX_STRING: "^(?=.*[A-Z])(?=.*[0-9])(?=.*[a-z]).{8,}$";
|
|
487
487
|
readonly INTEGRATIONS: {
|
|
488
|
+
readonly ACCOUNTING_METHOD: {
|
|
489
|
+
readonly CASH: "CASH";
|
|
490
|
+
readonly ACCRUAL: "ACCRUAL";
|
|
491
|
+
};
|
|
488
492
|
/**
|
|
489
493
|
* Constants that specify how to map (import) Integrations data to Expensify
|
|
490
494
|
* Parallel to IntegrationEntityMappingTypeEnum in the IS
|
package/dist/CONST.js
CHANGED
|
@@ -524,6 +524,10 @@ const CONST = {
|
|
|
524
524
|
},
|
|
525
525
|
PASSWORD_COMPLEXITY_REGEX_STRING: '^(?=.*[A-Z])(?=.*[0-9])(?=.*[a-z]).{8,}$',
|
|
526
526
|
INTEGRATIONS: {
|
|
527
|
+
ACCOUNTING_METHOD: {
|
|
528
|
+
CASH: 'CASH',
|
|
529
|
+
ACCRUAL: 'ACCRUAL',
|
|
530
|
+
},
|
|
527
531
|
/**
|
|
528
532
|
* Constants that specify how to map (import) Integrations data to Expensify
|
|
529
533
|
* Parallel to IntegrationEntityMappingTypeEnum in the IS
|