expensify-common 2.0.181 → 2.0.182
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 +3 -0
- package/dist/CONST.js +3 -0
- package/package.json +1 -1
package/dist/CONST.d.ts
CHANGED
|
@@ -804,6 +804,9 @@ declare const CONST: {
|
|
|
804
804
|
readonly SUSPICIOUS_PAN_ENTRY: 8;
|
|
805
805
|
readonly SUSPICIOUS_PAN_ENTRY_CLEARED: 9;
|
|
806
806
|
readonly SUSPICIOUS_PAN_ENTRY_CONFIRMED: 10;
|
|
807
|
+
readonly SUSPICIOUS_TRANSACTIONS_DETECTED: 11;
|
|
808
|
+
readonly SUSPICIOUS_TRANSACTIONS_DETECTED_CLEARED: 12;
|
|
809
|
+
readonly SUSPICIOUS_TRANSACTIONS_DETECTED_CONFIRMED: 13;
|
|
807
810
|
};
|
|
808
811
|
};
|
|
809
812
|
readonly TRAVEL_BOOKING: {
|
package/dist/CONST.js
CHANGED
|
@@ -848,6 +848,9 @@ const CONST = {
|
|
|
848
848
|
SUSPICIOUS_PAN_ENTRY: 8,
|
|
849
849
|
SUSPICIOUS_PAN_ENTRY_CLEARED: 9,
|
|
850
850
|
SUSPICIOUS_PAN_ENTRY_CONFIRMED: 10,
|
|
851
|
+
SUSPICIOUS_TRANSACTIONS_DETECTED: 11,
|
|
852
|
+
SUSPICIOUS_TRANSACTIONS_DETECTED_CLEARED: 12,
|
|
853
|
+
SUSPICIOUS_TRANSACTIONS_DETECTED_CONFIRMED: 13,
|
|
851
854
|
},
|
|
852
855
|
},
|
|
853
856
|
TRAVEL_BOOKING: {
|