@provis/provis-common-be-module 2.5.38 → 2.5.40

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.
@@ -41,6 +41,13 @@ declare const quotation: {
41
41
  id: string;
42
42
  };
43
43
  };
44
+ TYPE_QUOTATION_ATTACHMENT_DRAFT_CUSTOMER_GENERATED_QUOTATION: {
45
+ code: string;
46
+ desc: {
47
+ en: string;
48
+ id: string;
49
+ };
50
+ };
44
51
  LIST: any[];
45
52
  };
46
53
  export default quotation;
@@ -43,6 +43,13 @@ const quotation = {
43
43
  id: "Kutipan Pertanggungan untuk Nasabah yang Dihasilkan Secara Otomatis"
44
44
  },
45
45
  },
46
+ TYPE_QUOTATION_ATTACHMENT_DRAFT_CUSTOMER_GENERATED_QUOTATION: {
47
+ code: 'DRAFT_CUSTOMER_GENERATED_QUOTATION',
48
+ desc: {
49
+ en: "Draft Customer Quotation Auto Generated",
50
+ id: "Draf Kutipan Pertanggungan untuk Nasabah yang Dihasilkan Secara Otomatis"
51
+ },
52
+ },
46
53
  LIST: [],
47
54
  };
48
55
  quotation.LIST.push(quotation.TYPE_QUOTATION_ATTACHMENT_PREMIUM_NOTE);
@@ -51,4 +58,5 @@ quotation.LIST.push(quotation.TYPE_QUOTATION_ATTACHMENT_DOC_OTHER);
51
58
  quotation.LIST.push(quotation.TYPE_QUOTATION_ATTACHMENT_POLICY);
52
59
  quotation.LIST.push(quotation.TYPE_QUOTATION_ATTACHMENT_INSURER_GENERATED_QUOTATION);
53
60
  quotation.LIST.push(quotation.TYPE_QUOTATION_ATTACHMENT_CUSTOMER_GENERATED_QUOTATION);
61
+ quotation.LIST.push(quotation.TYPE_QUOTATION_ATTACHMENT_DRAFT_CUSTOMER_GENERATED_QUOTATION);
54
62
  exports.default = quotation;
@@ -0,0 +1,19 @@
1
+ declare const user: {
2
+ USER_TYPE: {
3
+ COMPANY: {
4
+ code: string;
5
+ desc: {
6
+ en: string;
7
+ id: string;
8
+ };
9
+ };
10
+ PERSONAL: {
11
+ code: string;
12
+ desc: {
13
+ en: string;
14
+ id: string;
15
+ };
16
+ };
17
+ };
18
+ };
19
+ export default user;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const user = {
4
+ USER_TYPE: {
5
+ COMPANY: {
6
+ code: 'company',
7
+ desc: {
8
+ en: 'Company',
9
+ id: 'Perusahaan',
10
+ },
11
+ },
12
+ PERSONAL: {
13
+ code: 'personal',
14
+ desc: {
15
+ en: 'Personal',
16
+ id: 'Pribadi',
17
+ },
18
+ },
19
+ },
20
+ };
21
+ exports.default = user;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provis/provis-common-be-module",
3
- "version": "2.5.38",
3
+ "version": "2.5.40",
4
4
  "description": "This common module for Provis internal backend use lib",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {