@provis/provis-common-be-module 2.3.26 → 2.3.27
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/dist/class/main.repository.d.ts +27 -0
- package/dist/class/main.repository.js +303 -0
- package/dist/constants/brokerage.d.ts +25 -0
- package/dist/constants/brokerage.js +30 -0
- package/dist/constants/claim/document-container.d.ts +14 -0
- package/dist/constants/claim/document-container.js +65 -0
- package/dist/constants/claim/generalInsurance.d.ts +535 -0
- package/dist/constants/claim/generalInsurance.js +18 -0
- package/dist/constants/claim/kalog.d.ts +28 -0
- package/dist/constants/claim/kalog.js +186 -0
- package/dist/constants/claim/loket.d.ts +36 -0
- package/dist/constants/claim/loket.js +290 -0
- package/dist/constants/claim/motorVehicle.d.ts +158 -0
- package/dist/constants/claim/motorVehicle.js +139 -0
- package/dist/constants/claim/status.d.ts +137 -0
- package/dist/constants/claim/status.js +160 -0
- package/dist/constants/claim/travel.d.ts +358 -0
- package/dist/constants/claim/travel.js +268 -0
- package/dist/constants/config.d.ts +2 -0
- package/dist/constants/config.js +23 -0
- package/dist/constants/currency.d.ts +2 -0
- package/dist/constants/currency.js +7 -0
- package/dist/constants/index.d.ts +5 -0
- package/dist/constants/index.js +11 -0
- package/dist/constants/join.d.ts +5 -0
- package/dist/constants/join.js +2 -0
- package/dist/constants/loket.d.ts +17 -0
- package/dist/constants/loket.js +19 -0
- package/dist/constants/martialStatus.d.ts +2 -0
- package/dist/constants/martialStatus.js +32 -0
- package/dist/constants/operator.d.ts +2 -0
- package/dist/constants/operator.js +12 -0
- package/dist/constants/product/cargo.d.ts +39 -0
- package/dist/constants/product/cargo.js +41 -0
- package/dist/constants/product/mv/clause.d.ts +52 -0
- package/dist/constants/product/mv/clause.js +214 -0
- package/dist/constants/product/mv/merk.d.ts +7 -0
- package/dist/constants/product/mv/merk.js +111 -0
- package/dist/constants/product/mv/mv.d.ts +48 -0
- package/dist/constants/product/mv/mv.js +215 -0
- package/dist/constants/product/mv/plat.d.ts +7 -0
- package/dist/constants/product/mv/plat.js +334 -0
- package/dist/constants/product/mv.d.ts +30 -0
- package/dist/constants/product/mv.js +158 -0
- package/dist/constants/product/occupation.d.ts +5 -0
- package/dist/constants/product/occupation.js +25 -0
- package/dist/constants/product/policy.d.ts +31 -0
- package/dist/constants/product/policy.js +33 -0
- package/dist/constants/product.d.ts +72 -0
- package/dist/constants/product.js +394 -0
- package/dist/constants/quotation.d.ts +32 -0
- package/dist/constants/quotation.js +38 -0
- package/dist/constants/report.d.ts +46 -0
- package/dist/constants/report.js +60 -0
- package/dist/constants/vesselList.d.ts +5 -0
- package/dist/constants/vesselList.js +116 -0
- package/dist/helpers/addDateTime.d.ts +6 -0
- package/dist/helpers/addDateTime.js +30 -0
- package/dist/helpers/amountDescription.d.ts +1 -0
- package/dist/helpers/amountDescription.js +44 -0
- package/dist/helpers/axiosGet.d.ts +8 -0
- package/dist/helpers/axiosGet.js +47 -0
- package/dist/helpers/axiosPost.d.ts +8 -0
- package/dist/helpers/axiosPost.js +46 -0
- package/dist/helpers/axiosPut.d.ts +8 -0
- package/dist/helpers/axiosPut.js +46 -0
- package/dist/helpers/calculateByType.d.ts +5 -0
- package/dist/helpers/calculateByType.js +19 -0
- package/dist/helpers/calculateForNullable.d.ts +5 -0
- package/dist/helpers/calculateForNullable.js +47 -0
- package/dist/helpers/combineObj.d.ts +2 -0
- package/dist/helpers/combineObj.js +17 -0
- package/dist/helpers/compareDiffObj.d.ts +2 -0
- package/dist/helpers/compareDiffObj.js +14 -0
- package/dist/helpers/convertCurrencySymbol.d.ts +2 -0
- package/dist/helpers/convertCurrencySymbol.js +20 -0
- package/dist/helpers/convertDateTimeFormat.d.ts +6 -0
- package/dist/helpers/convertDateTimeFormat.js +113 -0
- package/dist/helpers/convertObjToNumber.d.ts +2 -0
- package/dist/helpers/convertObjToNumber.js +14 -0
- package/dist/helpers/convertToCurrency.d.ts +2 -0
- package/dist/helpers/convertToCurrency.js +21 -0
- package/dist/helpers/excelDateToJsDate.d.ts +4 -0
- package/dist/helpers/excelDateToJsDate.js +30 -0
- package/dist/helpers/filterObj.d.ts +2 -0
- package/dist/helpers/filterObj.js +9 -0
- package/dist/helpers/generateHashString.d.ts +2 -0
- package/dist/helpers/generateHashString.js +15 -0
- package/dist/helpers/generateRelationId.d.ts +2 -0
- package/dist/helpers/generateRelationId.js +15 -0
- package/dist/helpers/getCargoType.d.ts +2 -0
- package/dist/helpers/getCargoType.js +9 -0
- package/dist/helpers/getCurrentDate.d.ts +2 -0
- package/dist/helpers/getCurrentDate.js +11 -0
- package/dist/helpers/getDiffValue.d.ts +2 -0
- package/dist/helpers/getDiffValue.js +24 -0
- package/dist/helpers/getObjByKeys.d.ts +2 -0
- package/dist/helpers/getObjByKeys.js +19 -0
- package/dist/helpers/index.d.ts +25 -0
- package/dist/helpers/index.js +51 -0
- package/dist/helpers/loop.d.ts +2 -0
- package/dist/helpers/loop.js +21 -0
- package/dist/helpers/loopBackward.d.ts +2 -0
- package/dist/helpers/loopBackward.js +21 -0
- package/dist/helpers/mergeObj.d.ts +2 -0
- package/dist/helpers/mergeObj.js +16 -0
- package/dist/helpers/readExcel.d.ts +5 -0
- package/dist/helpers/readExcel.js +115 -0
- package/dist/helpers/searchValue.d.ts +4 -0
- package/dist/helpers/searchValue.js +63 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +7 -0
- package/dist/interface/axios.interface.d.ts +5 -0
- package/dist/interface/axios.interface.js +2 -0
- package/dist/interface/find.all.count.interface.d.ts +10 -0
- package/dist/interface/find.all.count.interface.js +2 -0
- package/dist/interface/multi.join.interface.d.ts +9 -0
- package/dist/interface/multi.join.interface.js +2 -0
- package/dist/interface/read.excel.interface.d.ts +12 -0
- package/dist/interface/read.excel.interface.js +2 -0
- package/dist/interface/search.conditions.interface.d.ts +8 -0
- package/dist/interface/search.conditions.interface.js +2 -0
- package/dist/interface/search.initial.interface.d.ts +8 -0
- package/dist/interface/search.initial.interface.js +2 -0
- package/dist/interface/search.query.interface.d.ts +5 -0
- package/dist/interface/search.query.interface.js +3 -0
- package/dist/interface/search.summary.interface.d.ts +9 -0
- package/dist/interface/search.summary.interface.js +2 -0
- package/dist/interface/search.value.interface.d.ts +6 -0
- package/dist/interface/search.value.interface.js +3 -0
- package/dist/interface/summary.field.interface.d.ts +4 -0
- package/dist/interface/summary.field.interface.js +3 -0
- package/dist/interface/user.interface.d.ts +4 -0
- package/dist/interface/user.interface.js +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.additionalCoverage = exports.vehicleTypeCode = exports.regionCode = exports.insuranceType = void 0;
|
|
4
|
+
const insuranceType = [
|
|
5
|
+
{
|
|
6
|
+
code: "all-risk",
|
|
7
|
+
desc: {
|
|
8
|
+
id: "Komprehensif",
|
|
9
|
+
en: "Comprehensive",
|
|
10
|
+
},
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
code: "total-loss",
|
|
14
|
+
desc: {
|
|
15
|
+
id: "Kerugian Total",
|
|
16
|
+
en: "Total Loss",
|
|
17
|
+
},
|
|
18
|
+
},
|
|
19
|
+
];
|
|
20
|
+
exports.insuranceType = insuranceType;
|
|
21
|
+
const regionCode = [
|
|
22
|
+
{
|
|
23
|
+
code: "RC001",
|
|
24
|
+
desc: {
|
|
25
|
+
id: "Wilayah 1",
|
|
26
|
+
en: "Region 1",
|
|
27
|
+
},
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
code: "RC002",
|
|
31
|
+
desc: {
|
|
32
|
+
id: "Wilayah 2",
|
|
33
|
+
en: "Region 2",
|
|
34
|
+
},
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
code: "RC003",
|
|
38
|
+
desc: {
|
|
39
|
+
id: "Wilayah 3",
|
|
40
|
+
en: "Region 3",
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
];
|
|
44
|
+
exports.regionCode = regionCode;
|
|
45
|
+
const vehicleTypeCode = [
|
|
46
|
+
{
|
|
47
|
+
code: "VT001",
|
|
48
|
+
desc: {
|
|
49
|
+
id: "Jenis Kendaraan Non Bus dan Non Truk",
|
|
50
|
+
en: "Types of Non-Bus and Non-Truck Vehicles",
|
|
51
|
+
},
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
code: "VT002",
|
|
55
|
+
desc: {
|
|
56
|
+
id: "Jenis Kendaraan Truk dan Pickup",
|
|
57
|
+
en: "Vehicle Types Truck and Pickup",
|
|
58
|
+
},
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
code: "VT003",
|
|
62
|
+
desc: {
|
|
63
|
+
id: "Jenis Kendaraan Bus",
|
|
64
|
+
en: "Vehicle Types Bus",
|
|
65
|
+
},
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
code: "VT004",
|
|
69
|
+
desc: {
|
|
70
|
+
id: "Jenis Kendaraan Roda 2 (dua)",
|
|
71
|
+
en: "Type of 2 (two) Wheeled Vehicle",
|
|
72
|
+
},
|
|
73
|
+
},
|
|
74
|
+
];
|
|
75
|
+
exports.vehicleTypeCode = vehicleTypeCode;
|
|
76
|
+
const additionalCoverage = [
|
|
77
|
+
{
|
|
78
|
+
code: "TSFWD",
|
|
79
|
+
desc: {
|
|
80
|
+
id: "Topan, Badai, Banjir, Kerusakan Akibat Air",
|
|
81
|
+
en: "Typhoon, Storm, Flood, Water Damage",
|
|
82
|
+
},
|
|
83
|
+
isVisible: true,
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
code: "EQVET",
|
|
87
|
+
desc: {
|
|
88
|
+
id: "Gempa Bumi, Letusan Gunung Berapi dan Tsunami",
|
|
89
|
+
en: "Earthquake, Volcanic Eruption and Tsunami",
|
|
90
|
+
},
|
|
91
|
+
isVisible: true,
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
code: "SRCC",
|
|
95
|
+
desc: {
|
|
96
|
+
id: "Mogok Kerja, Kerusuhan dan Kerusuhan Sipil",
|
|
97
|
+
en: "Strike, Riot & Civil Commotion",
|
|
98
|
+
},
|
|
99
|
+
isVisible: true,
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
code: "PSATSI",
|
|
103
|
+
desc: {
|
|
104
|
+
id: "Terorisme dan Sabotase",
|
|
105
|
+
en: "Terrorism and Sabotage",
|
|
106
|
+
},
|
|
107
|
+
isVisible: true,
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
code: "TPL",
|
|
111
|
+
desc: {
|
|
112
|
+
id: "Tanggung Jawab Hukum Pihak Ketiga",
|
|
113
|
+
en: "Third Party Liability",
|
|
114
|
+
},
|
|
115
|
+
isVisible: true,
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
code: "PAD",
|
|
119
|
+
desc: {
|
|
120
|
+
id: "Kecelakaan Pengemudi",
|
|
121
|
+
en: "Personal Accident Driver",
|
|
122
|
+
},
|
|
123
|
+
isVisible: true,
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
code: "PAP",
|
|
127
|
+
desc: {
|
|
128
|
+
id: " Kcelakaan Penumpang",
|
|
129
|
+
en: "Personal Accident Passenger",
|
|
130
|
+
},
|
|
131
|
+
isVisible: true,
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
code: "TBOD",
|
|
135
|
+
desc: {
|
|
136
|
+
id: "Biaya Medis, Izin Bengkel, Tunjangan Ambulans, Ban dan Velg",
|
|
137
|
+
en: "TBOD, Authorize Workshop, Ambulance Allowance, Tire and Wheel",
|
|
138
|
+
},
|
|
139
|
+
isVisible: true,
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
code: "CASCO",
|
|
143
|
+
desc: {
|
|
144
|
+
id: "",
|
|
145
|
+
en: "",
|
|
146
|
+
},
|
|
147
|
+
isVisible: false,
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
code: "TLO",
|
|
151
|
+
desc: {
|
|
152
|
+
id: "",
|
|
153
|
+
en: "",
|
|
154
|
+
},
|
|
155
|
+
isVisible: false,
|
|
156
|
+
},
|
|
157
|
+
];
|
|
158
|
+
exports.additionalCoverage = additionalCoverage;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const occupation = [
|
|
4
|
+
{
|
|
5
|
+
value: "DH",
|
|
6
|
+
name: "Dwelling House",
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
value: "HT",
|
|
10
|
+
name: "Hotels",
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
value: "PW",
|
|
14
|
+
name: "Private Warehouse",
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
value: "SH",
|
|
18
|
+
name: "Shops",
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
value: "PD",
|
|
22
|
+
name: "Petrol / Diesel Fuel Stations",
|
|
23
|
+
}
|
|
24
|
+
];
|
|
25
|
+
exports.default = occupation;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
declare const policy: {
|
|
2
|
+
DRAFT: {
|
|
3
|
+
code: string;
|
|
4
|
+
desc: {
|
|
5
|
+
id: string;
|
|
6
|
+
en: string;
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
SUBMITED: {
|
|
10
|
+
code: string;
|
|
11
|
+
desc: {
|
|
12
|
+
id: string;
|
|
13
|
+
en: string;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
ENDORSEMENT: {
|
|
17
|
+
code: string;
|
|
18
|
+
desc: {
|
|
19
|
+
id: string;
|
|
20
|
+
en: string;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
CANCEL: {
|
|
24
|
+
code: string;
|
|
25
|
+
desc: {
|
|
26
|
+
id: string;
|
|
27
|
+
en: string;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
export default policy;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const policy = {
|
|
4
|
+
DRAFT: {
|
|
5
|
+
code: '0',
|
|
6
|
+
desc: {
|
|
7
|
+
id: 'Draft',
|
|
8
|
+
en: 'Draft',
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
SUBMITED: {
|
|
12
|
+
code: '100',
|
|
13
|
+
desc: {
|
|
14
|
+
id: 'Submit',
|
|
15
|
+
en: 'Submit',
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
ENDORSEMENT: {
|
|
19
|
+
code: '200',
|
|
20
|
+
desc: {
|
|
21
|
+
id: 'Endorsement',
|
|
22
|
+
en: 'Endorsement',
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
CANCEL: {
|
|
26
|
+
code: '300',
|
|
27
|
+
desc: {
|
|
28
|
+
id: 'Dibatalkan',
|
|
29
|
+
en: 'Cancel',
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
};
|
|
33
|
+
exports.default = policy;
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
declare const product: {
|
|
2
|
+
LIST: {};
|
|
3
|
+
MANUAL_LIST: any[];
|
|
4
|
+
CARGO_BY_SYSTEM_LIST: any[];
|
|
5
|
+
PRODUCT_CODE_PROPERTY_ALL_RISK: string;
|
|
6
|
+
PRODUCT_CODE_EARTHQUAKE: string;
|
|
7
|
+
PRODUCT_CODE_VEHICLE: string;
|
|
8
|
+
PRODUCT_CODE_PUBLIC_LIABILITY: string;
|
|
9
|
+
PRODUCT_CODE_MACHINERYR_BREAKDOWN: string;
|
|
10
|
+
PRODUCT_CODE_TERRORISM_SABOTAGE: string;
|
|
11
|
+
PRODUCT_CODE_COMPREHENSIVE_LIABILITY: string;
|
|
12
|
+
PRODUCT_CODE_CONTAINER: string;
|
|
13
|
+
PRODUCT_CODE_GROUP_HEALTH: string;
|
|
14
|
+
PRODUCT_CODE_TRAVEL: string;
|
|
15
|
+
PRODUCT_CODE_HOSPITAL_CASH_PLAN: string;
|
|
16
|
+
PRODUCT_CODE_TERM_LIFE: string;
|
|
17
|
+
PRODUCT_CODE_PERSONAL_ACCIDENT: string;
|
|
18
|
+
PRODUCT_CODE_TAILOR_MADE: string;
|
|
19
|
+
PRODUCT_CODE_CRITICAL_ILLNESS: string;
|
|
20
|
+
PRODUCT_CODE_FREIGHT_FORWARDER_LIABILITY: string;
|
|
21
|
+
PRODUCT_CODE_MARINE_HULL: string;
|
|
22
|
+
PRODUCT_CODE_MARINE_OPEN_POLICY: string;
|
|
23
|
+
PRODUCT_CODE_CREDIT_LIFE: string;
|
|
24
|
+
PRODUCT_CODE_TRADITIONAL_WHOLE_LIFE: string;
|
|
25
|
+
PRODUCT_CODE_CARPAKR_LIABILITY: string;
|
|
26
|
+
PRODUCT_CODE_DIRECTOR_OFFICER_LIABILITY: string;
|
|
27
|
+
PRODUCT_CODE_PROFESIONAL_INDEMNITY: string;
|
|
28
|
+
PRODUCT_CODE_GENERAL_LIABILITY: string;
|
|
29
|
+
PRODUCT_CODE_WEDDING: string;
|
|
30
|
+
PRODUCT_CODE_PENSIUN_FUND: string;
|
|
31
|
+
PRODUCT_CODE_PENSION_FUND: string;
|
|
32
|
+
PRODUCT_CODE_ENVIRONMENTAL_LIABILITY: string;
|
|
33
|
+
PRODUCT_CODE_PROTECTION_INDEMNITY: string;
|
|
34
|
+
PRODUCT_CODE_STUDENT_PROTECTION: string;
|
|
35
|
+
PRODUCT_CODE_GADGET: string;
|
|
36
|
+
PRODUCT_CODE_ELECTRONIC_EQUIPMENT: string;
|
|
37
|
+
PRODUCT_CODE_CPM: string;
|
|
38
|
+
PRODUCT_CODE_CONSTRUCTION_ALLRISK: string;
|
|
39
|
+
PRODUCT_CODE_HCI_MOTOR: string;
|
|
40
|
+
PRODUCT_CODE_HCP5_DISEASE: string;
|
|
41
|
+
PRODUCT_CODE_MOVEABLE_ALL_RISK: string;
|
|
42
|
+
PRODUCT_CODE_SURETY_BOND: string;
|
|
43
|
+
PRODUCT_CODE_ERECTION_ALL_RISK: string;
|
|
44
|
+
PRODUCT_CODE_PA_SOGO_ELI_DAYIN: string;
|
|
45
|
+
PRODUCT_POLISMALL_CARGO_MERATUS: string;
|
|
46
|
+
PRODUCT_POLISMALL_CARGO: string;
|
|
47
|
+
PRODUCT_CODE_EXIM: string;
|
|
48
|
+
PRODUCT_CODE_CARGO_BUNDLE: string;
|
|
49
|
+
PRODUCT_CODE_MERIMEN_CARGO: string;
|
|
50
|
+
PRODUCT_CODE_CARGO_TEMAS: string;
|
|
51
|
+
PRODUCT_CODE_CARGO_SINGLE_SHIPMENT: string;
|
|
52
|
+
PRODUCT_CODE_OTTO_CI: string;
|
|
53
|
+
PRODUCT_CODE_OTTO_FLEXAS: string;
|
|
54
|
+
PRODUCT_CODE_OTTO_CRACK_SCREEN: string;
|
|
55
|
+
PRODUCT_CODE_OTTO_AUM_GP: string;
|
|
56
|
+
PRODUCT_CODE_OTTO_AUM_PLN: string;
|
|
57
|
+
PRODUCT_CODE_OTTO_AUM_PDAM: string;
|
|
58
|
+
PRODUCT_CODE_OTTO_AUM_SB: string;
|
|
59
|
+
PRODUCT_CODE_OTTO_AUM_FB: string;
|
|
60
|
+
PRODUCT_CODE_OTTO_AUM_FBK: string;
|
|
61
|
+
PRODUCT_CODE_BDKI_MOTOR: string;
|
|
62
|
+
PRODUCT_CODE_BDKI_RUMAH: string;
|
|
63
|
+
PRODUCT_CODE_BNI_MOBIL: string;
|
|
64
|
+
PRODUCT_CODE_BNI_MOTOR: string;
|
|
65
|
+
PRODUCT_CODE_BNI_RUMAH: string;
|
|
66
|
+
PRODUCT_CODE_RETAIL_LOKET_PA: string;
|
|
67
|
+
PRODUCT_CODE_RETAIL_KALOG_CARGO: string;
|
|
68
|
+
PRODUCT_CODE_RETAIL_POS_CARGO: string;
|
|
69
|
+
PRODUCT_CODE_WRPL: string;
|
|
70
|
+
PRODUCT_CODE_CREDIT_DEFAULT: string;
|
|
71
|
+
};
|
|
72
|
+
export default product;
|