plac-micro-common 1.3.19 → 1.3.20

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.
@@ -24,6 +24,7 @@ export declare enum AddressType {
24
24
  export declare enum IdentifierType {
25
25
  NationalId = "nid",
26
26
  Passport = "passport",
27
+ BirthCertificate = "birth",
27
28
  TaxId = "tax_id",
28
29
  CompanyRegistration = "comp_reg",
29
30
  Other = "other"
@@ -32,6 +32,7 @@ var IdentifierType;
32
32
  (function (IdentifierType) {
33
33
  IdentifierType["NationalId"] = "nid";
34
34
  IdentifierType["Passport"] = "passport";
35
+ IdentifierType["BirthCertificate"] = "birth";
35
36
  IdentifierType["TaxId"] = "tax_id";
36
37
  IdentifierType["CompanyRegistration"] = "comp_reg";
37
38
  IdentifierType["Other"] = "other";
@@ -12,4 +12,5 @@ export * from "./product.type";
12
12
  export * from "./promotion.type";
13
13
  export * from "./staff.type";
14
14
  export * from "./quotation.type";
15
+ export * from "./underwriting.type";
15
16
  export * from "./pdf-form";
@@ -28,4 +28,5 @@ __exportStar(require("./product.type"), exports);
28
28
  __exportStar(require("./promotion.type"), exports);
29
29
  __exportStar(require("./staff.type"), exports);
30
30
  __exportStar(require("./quotation.type"), exports);
31
+ __exportStar(require("./underwriting.type"), exports);
31
32
  __exportStar(require("./pdf-form"), exports);
@@ -4,6 +4,5 @@ export * from "./sio-form.type";
4
4
  export declare enum FormDocumentType {
5
5
  ApplicationForm = "application_form",
6
6
  CoverNote = "cover_note",
7
- OfficialReceipt = "official_receipt",
8
- SioForm = "sio_form"
7
+ OfficialReceipt = "official_receipt"
9
8
  }
@@ -23,5 +23,4 @@ var FormDocumentType;
23
23
  FormDocumentType["ApplicationForm"] = "application_form";
24
24
  FormDocumentType["CoverNote"] = "cover_note";
25
25
  FormDocumentType["OfficialReceipt"] = "official_receipt";
26
- FormDocumentType["SioForm"] = "sio_form";
27
26
  })(FormDocumentType || (exports.FormDocumentType = FormDocumentType = {}));
@@ -0,0 +1,6 @@
1
+ export declare enum UnderwritingSIOQuestionCode {
2
+ Q_Smoke = "Q-SIO-SMOKE",
3
+ Q_Drink = "Q-SIO-DRINK",
4
+ Q_Hospitalized = "Q-SIO-HOSPITALIZED",
5
+ Q_Diagnosis = "Q-SIO-DIAGNOSIS"
6
+ }
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UnderwritingSIOQuestionCode = void 0;
4
+ var UnderwritingSIOQuestionCode;
5
+ (function (UnderwritingSIOQuestionCode) {
6
+ UnderwritingSIOQuestionCode["Q_Smoke"] = "Q-SIO-SMOKE";
7
+ UnderwritingSIOQuestionCode["Q_Drink"] = "Q-SIO-DRINK";
8
+ UnderwritingSIOQuestionCode["Q_Hospitalized"] = "Q-SIO-HOSPITALIZED";
9
+ UnderwritingSIOQuestionCode["Q_Diagnosis"] = "Q-SIO-DIAGNOSIS";
10
+ })(UnderwritingSIOQuestionCode || (exports.UnderwritingSIOQuestionCode = UnderwritingSIOQuestionCode = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "plac-micro-common",
3
- "version": "1.3.19",
3
+ "version": "1.3.20",
4
4
  "types": "dist/index.d.ts",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {