YARA-947, YARA-1038

This commit is contained in:
SepehrYahyaee
2026-07-11 15:34:01 +03:30
parent 1559a40213
commit 0dcb2cf2ca
6 changed files with 428 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ export const EXTERNAL_INQUIRY_TYPES = [
"sheba",
"drivingLicense",
"carOwnership",
"vinChassis",
] as const;
export type ExternalInquiryType = (typeof EXTERNAL_INQUIRY_TYPES)[number];
@@ -21,6 +22,7 @@ export const DEFAULT_EXTERNAL_INQUIRY_FLAGS: Record<
sheba: false,
drivingLicense: false,
carOwnership: false,
vinChassis: false,
};
export type ExternalInquiryFlags = Record<ExternalInquiryType, boolean>;