gotrip-fx-transaction-form 1.0.237-dev → 1.0.238-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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gotrip-fx-transaction-form",
3
- "version": "1.0.237-dev",
3
+ "version": "1.0.238-dev",
4
4
  "description": "FX Transaction Form ES6 module",
5
5
  "main": "index.js",
6
6
  "types": "types/index.d.ts",
@@ -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;
@@ -32,6 +32,7 @@ export interface MotorInsuranceTransactionListItem {
32
32
  error?: string;
33
33
  createdAt?: string;
34
34
  vehicleType?: string;
35
+ tenantName?: string;
35
36
  ownerName?: string;
36
37
  licensePlate?: string;
37
38
  provider: string;
@@ -0,0 +1 @@
1
+ export declare const AdminMotorInsuranceTransactionDetailPage: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,5 @@
1
+ type Props = {
2
+ defaultLimit?: number;
3
+ };
4
+ export declare const AdminMotorInsuranceTransactionListPage: (props: Props) => import("react/jsx-runtime").JSX.Element;
5
+ export {};