gotrip-fx-transaction-form 1.0.237-dev → 1.0.239-dev
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/package.json +1 -1
- package/types/components/MotorInsurance/motor-insurance.types.d.ts +3 -0
- package/types/hooks/useMotorInsuranceTransaction.d.ts +1 -0
- package/types/pages/admin/motor-insurance-transaction-detail/MotorInsuranceTransactionDetailPage.d.ts +1 -0
- package/types/pages/admin/motor-insurance-transaction-list/MotorInsuranceTransactionListPage.d.ts +5 -0
package/package.json
CHANGED
|
@@ -302,6 +302,9 @@ export declare const getBikeVehicleTypeCodeLabel: (code?: string | null) => stri
|
|
|
302
302
|
export declare const CAR_VEHICLE_TYPE_CODE_LABELS: Record<string, string>;
|
|
303
303
|
export declare const getVehicleTypeLabel: (vehicleType?: string) => string;
|
|
304
304
|
export declare const getPassengerAccidentLevelLabel: (value?: number | null) => string;
|
|
305
|
+
/** Purpose type (mục đích sử dụng kinh doanh/không kinh doanh) labels. */
|
|
306
|
+
export declare const PURPOSE_TYPE_LABELS: Record<EPurposeTypeCode, string>;
|
|
307
|
+
export declare const getCarPurposeTypeLabel: (code?: string | null) => string;
|
|
305
308
|
/** Usage purpose (mục đích sử dụng) labels for display. */
|
|
306
309
|
export declare const USAGE_PURPOSE_LABELS: Record<EVehicleUsageType, string>;
|
|
307
310
|
export declare const getCarUsagePurposeLabel: (code?: string | null) => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const AdminMotorInsuranceTransactionDetailPage: () => import("react/jsx-runtime").JSX.Element;
|