plac-micro-common 1.3.84 → 1.3.85

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.
@@ -3,6 +3,7 @@ export * from "./cover-note-form.type";
3
3
  export * from "./official-receipt-form.type";
4
4
  export * from "./quotation-form.type";
5
5
  export * from "./sio-form.type";
6
+ export * from "./uw-letter-form.type";
6
7
  export declare enum FormDocumentType {
7
8
  ApplicationForm = "application_form",
8
9
  CoverNote = "cover_note",
@@ -20,6 +20,7 @@ __exportStar(require("./cover-note-form.type"), exports);
20
20
  __exportStar(require("./official-receipt-form.type"), exports);
21
21
  __exportStar(require("./quotation-form.type"), exports);
22
22
  __exportStar(require("./sio-form.type"), exports);
23
+ __exportStar(require("./uw-letter-form.type"), exports);
23
24
  var FormDocumentType;
24
25
  (function (FormDocumentType) {
25
26
  FormDocumentType["ApplicationForm"] = "application_form";
@@ -0,0 +1,32 @@
1
+ export interface IUWLetterBaseFormData {
2
+ letter_issued_date: string;
3
+ policy_no: string;
4
+ ph_full_name: string;
5
+ la_full_name: string;
6
+ full_address: string;
7
+ }
8
+ export interface IUWCTOFFormData extends IUWLetterBaseFormData {
9
+ basic_premium: string;
10
+ additional_premium: string;
11
+ total_premium: string;
12
+ premium_to_pay: string;
13
+ }
14
+ export interface IUWDeclinedFormData extends IUWLetterBaseFormData {
15
+ is_declined_adb_and_tpd: boolean;
16
+ is_declined_adb: boolean;
17
+ is_declined_tpd: boolean;
18
+ is_declined_ci: boolean;
19
+ basic_premium: string;
20
+ additional_premium: string;
21
+ total_premium: string;
22
+ premium_to_pay: string;
23
+ witness_full_name: string;
24
+ }
25
+ export interface IUWRejectedFormData extends IUWLetterBaseFormData {
26
+ paid_premium: string;
27
+ deducted_premium: string;
28
+ refund_premium: string;
29
+ witness_full_name: string;
30
+ }
31
+ export interface IUWNTUFormData extends IUWLetterBaseFormData {
32
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "plac-micro-common",
3
- "version": "1.3.84",
3
+ "version": "1.3.85",
4
4
  "types": "dist/index.d.ts",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {