@provis/provis-common-be-module 2.5.41 → 2.6.0
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/constants/product/cargo/status.d.ts +45 -0
- package/dist/constants/product/cargo/status.js +47 -0
- package/dist/constants/product/occupation.d.ts +3 -3
- package/dist/constants/product/occupation.js +1712 -12
- package/dist/constants/product/property/clause.d.ts +17 -0
- package/dist/constants/product/property/clause.js +30 -0
- package/dist/constants/product/property/compulsory.d.ts +17 -0
- package/dist/constants/product/property/compulsory.js +30 -0
- package/dist/constants/product/property/occupation-simple.d.ts +9 -0
- package/dist/constants/product/property/occupation-simple.js +354 -0
- package/dist/constants/product/property/property.d.ts +72 -0
- package/dist/constants/product/property/property.js +239 -0
- package/dist/constants/product.js +3 -3
- package/package.json +1 -1
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
declare const status: {
|
|
2
|
+
STATUS_INITIAL: {
|
|
3
|
+
code: string;
|
|
4
|
+
desc: {
|
|
5
|
+
id: string;
|
|
6
|
+
en: string;
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
STATUS_PAID: {
|
|
10
|
+
code: string;
|
|
11
|
+
desc: {
|
|
12
|
+
id: string;
|
|
13
|
+
en: string;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
STATUS_WAITING_FOR_PAYMENT: {
|
|
17
|
+
code: string;
|
|
18
|
+
desc: {
|
|
19
|
+
id: string;
|
|
20
|
+
en: string;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
STATUS_SUBMITTED: {
|
|
24
|
+
code: string;
|
|
25
|
+
desc: {
|
|
26
|
+
id: string;
|
|
27
|
+
en: string;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
STATUS_REVISION: {
|
|
31
|
+
code: string;
|
|
32
|
+
desc: {
|
|
33
|
+
id: string;
|
|
34
|
+
en: string;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
STATUS_FAILED: {
|
|
38
|
+
code: string;
|
|
39
|
+
desc: {
|
|
40
|
+
id: string;
|
|
41
|
+
en: string;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
export default status;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const status = {
|
|
4
|
+
STATUS_INITIAL: {
|
|
5
|
+
code: '0',
|
|
6
|
+
desc: {
|
|
7
|
+
id: 'Initial',
|
|
8
|
+
en: 'Initial status',
|
|
9
|
+
},
|
|
10
|
+
},
|
|
11
|
+
STATUS_PAID: {
|
|
12
|
+
code: '100',
|
|
13
|
+
desc: {
|
|
14
|
+
id: 'Sudah dibayar',
|
|
15
|
+
en: 'Paid',
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
STATUS_WAITING_FOR_PAYMENT: {
|
|
19
|
+
code: '150',
|
|
20
|
+
desc: {
|
|
21
|
+
id: 'Menunggu pembayaran',
|
|
22
|
+
en: 'Waiting for payment',
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
STATUS_SUBMITTED: {
|
|
26
|
+
code: '200',
|
|
27
|
+
desc: {
|
|
28
|
+
id: 'Sudah diajukan',
|
|
29
|
+
en: 'Submitted',
|
|
30
|
+
},
|
|
31
|
+
},
|
|
32
|
+
STATUS_REVISION: {
|
|
33
|
+
code: '250',
|
|
34
|
+
desc: {
|
|
35
|
+
id: 'Perlu revisi',
|
|
36
|
+
en: 'Revision required',
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
STATUS_FAILED: {
|
|
40
|
+
code: '300',
|
|
41
|
+
desc: {
|
|
42
|
+
id: 'Gagal',
|
|
43
|
+
en: 'Failed',
|
|
44
|
+
},
|
|
45
|
+
},
|
|
46
|
+
};
|
|
47
|
+
exports.default = status;
|