hvp-shared 6.40.0 → 6.41.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.
|
@@ -14,8 +14,9 @@ export type ReconciliationWarningSeverity = 'info' | 'warning' | 'error';
|
|
|
14
14
|
* - STALE_CLOSING: QVET closing is older than 30 minutes
|
|
15
15
|
* - MISSING_CARD_VERIFICATION: QVET has card payments but no terminal total entered
|
|
16
16
|
* - MIGRATED_NO_QVET: historical record migrated without a matching QVET closing
|
|
17
|
+
* - EXPIRED_UNRECONCILED: QVET closing was not reconciled within 24h and was auto-closed by the system
|
|
17
18
|
*/
|
|
18
|
-
export type ReconciliationWarningCode = 'CASH_MISMATCH' | 'STAFF_MISMATCH' | 'STALE_CLOSING' | 'MISSING_CARD_VERIFICATION' | 'MIGRATED_NO_QVET';
|
|
19
|
+
export type ReconciliationWarningCode = 'CASH_MISMATCH' | 'STAFF_MISMATCH' | 'STALE_CLOSING' | 'MISSING_CARD_VERIFICATION' | 'MIGRATED_NO_QVET' | 'EXPIRED_UNRECONCILED';
|
|
19
20
|
export interface CashReconciliationWarning {
|
|
20
21
|
code: string;
|
|
21
22
|
severity: ReconciliationWarningSeverity;
|