gotrip-fx-transaction-form 1.0.215-dev → 1.0.216-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
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
isOpen: boolean;
|
|
3
|
+
onClose: () => void;
|
|
4
|
+
onSubmit: (payload: any) => Promise<boolean>;
|
|
5
|
+
editingGroup: any | null;
|
|
6
|
+
loading: boolean;
|
|
7
|
+
tenants: any[];
|
|
8
|
+
}
|
|
9
|
+
export declare const InsurancePolicyGroupFormDialog: ({ isOpen, onClose, onSubmit, editingGroup, loading, tenants, }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export {};
|
|
@@ -32,3 +32,13 @@ export declare enum EPolicyType {
|
|
|
32
32
|
DISCOUNT = "discount",
|
|
33
33
|
BONUS = "bonus"
|
|
34
34
|
}
|
|
35
|
+
export declare enum EPolicyCalculatorType {
|
|
36
|
+
LEVEL = "level",
|
|
37
|
+
INDEPENDENT = "independent"
|
|
38
|
+
}
|
|
39
|
+
/** Insurance product type for policy rules. Travel = du lịch; MLI = Xe máy dân sự bắt buộc; ALI = Xe hơi dân sự bắt buộc. */
|
|
40
|
+
export declare enum EInsuranceProductType {
|
|
41
|
+
TRAVEL = "travel",
|
|
42
|
+
MLI = "mli",
|
|
43
|
+
ALI = "ali"
|
|
44
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const InsurancePolicyManagement: () => import("react/jsx-runtime").JSX.Element;
|