@emilgroup/billing-sdk-node 1.0.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/.openapi-generator/FILES +35 -0
- package/.openapi-generator/VERSION +1 -0
- package/.openapi-generator-ignore +23 -0
- package/README.md +68 -0
- package/api/correction-invoices-api.ts +165 -0
- package/api/estimated-invoices-api.ts +268 -0
- package/api/initial-invoices-api.ts +165 -0
- package/api/invoices-api.ts +232 -0
- package/api/recurring-invoices-api.ts +165 -0
- package/api.ts +44 -0
- package/base.ts +293 -0
- package/common.ts +138 -0
- package/configuration.ts +109 -0
- package/dist/api/correction-invoices-api.d.ts +93 -0
- package/dist/api/correction-invoices-api.js +224 -0
- package/dist/api/estimated-invoices-api.d.ts +146 -0
- package/dist/api/estimated-invoices-api.js +313 -0
- package/dist/api/initial-invoices-api.d.ts +93 -0
- package/dist/api/initial-invoices-api.js +224 -0
- package/dist/api/invoices-api.d.ts +137 -0
- package/dist/api/invoices-api.js +254 -0
- package/dist/api/recurring-invoices-api.d.ts +93 -0
- package/dist/api/recurring-invoices-api.js +224 -0
- package/dist/api.d.ts +20 -0
- package/dist/api.js +40 -0
- package/dist/base.d.ts +77 -0
- package/dist/base.js +394 -0
- package/dist/common.d.ts +66 -0
- package/dist/common.js +244 -0
- package/dist/configuration.d.ts +90 -0
- package/dist/configuration.js +44 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +35 -0
- package/dist/models/create-correction-invoices-response-class.d.ts +24 -0
- package/dist/models/create-correction-invoices-response-class.js +15 -0
- package/dist/models/create-custom-estimated-invoice-request-dto.d.ts +35 -0
- package/dist/models/create-custom-estimated-invoice-request-dto.js +20 -0
- package/dist/models/create-custom-estimated-invoice-response-class.d.ts +24 -0
- package/dist/models/create-custom-estimated-invoice-response-class.js +15 -0
- package/dist/models/create-estimated-invoice-request-dto.d.ts +31 -0
- package/dist/models/create-estimated-invoice-request-dto.js +15 -0
- package/dist/models/create-estimated-invoice-response-class.d.ts +31 -0
- package/dist/models/create-estimated-invoice-response-class.js +15 -0
- package/dist/models/create-invoice-request-dto.d.ts +75 -0
- package/dist/models/create-invoice-request-dto.js +24 -0
- package/dist/models/create-invoice-response-class.d.ts +25 -0
- package/dist/models/create-invoice-response-class.js +15 -0
- package/dist/models/index.d.ts +17 -0
- package/dist/models/index.js +33 -0
- package/dist/models/invoice-class.d.ts +120 -0
- package/dist/models/invoice-class.js +15 -0
- package/dist/models/list-invoices-response-class.d.ts +30 -0
- package/dist/models/list-invoices-response-class.js +15 -0
- package/dist/models/list-request-dto.d.ts +54 -0
- package/dist/models/list-request-dto.js +15 -0
- package/dist/models/policy-dto.d.ts +85 -0
- package/dist/models/policy-dto.js +15 -0
- package/dist/models/policy-object-dto.d.ts +42 -0
- package/dist/models/policy-object-dto.js +15 -0
- package/dist/models/policy-premium-dto.d.ts +43 -0
- package/dist/models/policy-premium-dto.js +15 -0
- package/dist/models/policy-premium-item-dto.d.ts +49 -0
- package/dist/models/policy-premium-item-dto.js +15 -0
- package/dist/models/policy-version-dto.d.ts +55 -0
- package/dist/models/policy-version-dto.js +15 -0
- package/dist/models/premium-formula-dto.d.ts +72 -0
- package/dist/models/premium-formula-dto.js +15 -0
- package/dist/models/timeslice-dto.d.ts +62 -0
- package/dist/models/timeslice-dto.js +15 -0
- package/git_push.sh +57 -0
- package/index.ts +19 -0
- package/models/create-correction-invoices-response-class.ts +30 -0
- package/models/create-custom-estimated-invoice-request-dto.ts +44 -0
- package/models/create-custom-estimated-invoice-response-class.ts +30 -0
- package/models/create-estimated-invoice-request-dto.ts +37 -0
- package/models/create-estimated-invoice-response-class.ts +37 -0
- package/models/create-invoice-request-dto.ts +84 -0
- package/models/create-invoice-response-class.ts +31 -0
- package/models/index.ts +17 -0
- package/models/invoice-class.ts +126 -0
- package/models/list-invoices-response-class.ts +36 -0
- package/models/list-request-dto.ts +60 -0
- package/models/policy-dto.ts +91 -0
- package/models/policy-object-dto.ts +48 -0
- package/models/policy-premium-dto.ts +49 -0
- package/models/policy-premium-item-dto.ts +55 -0
- package/models/policy-version-dto.ts +61 -0
- package/models/premium-formula-dto.ts +78 -0
- package/models/timeslice-dto.ts +68 -0
- package/package.json +30 -0
- package/tsconfig.json +22 -0
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL BillingService
|
|
3
|
+
* The EMIL BillingService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface CreateInvoiceRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateInvoiceRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Invoice number
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateInvoiceRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'invoiceNumber'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* account number
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateInvoiceRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'accountNumber': string;
|
|
30
|
+
/**
|
|
31
|
+
* Policy code
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CreateInvoiceRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'policyCode': string;
|
|
36
|
+
/**
|
|
37
|
+
* metadata
|
|
38
|
+
* @type {object}
|
|
39
|
+
* @memberof CreateInvoiceRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'metadata'?: object;
|
|
42
|
+
/**
|
|
43
|
+
* Interval from date
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CreateInvoiceRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'billingIntervalFrom': string;
|
|
48
|
+
/**
|
|
49
|
+
* Interval to date
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof CreateInvoiceRequestDto
|
|
52
|
+
*/
|
|
53
|
+
'billingIntervalTo': string;
|
|
54
|
+
/**
|
|
55
|
+
* Invoice due date
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof CreateInvoiceRequestDto
|
|
58
|
+
*/
|
|
59
|
+
'dueDate'?: string;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof CreateInvoiceRequestDto
|
|
64
|
+
*/
|
|
65
|
+
'type': CreateInvoiceRequestDtoTypeEnum;
|
|
66
|
+
}
|
|
67
|
+
export declare const CreateInvoiceRequestDtoTypeEnum: {
|
|
68
|
+
readonly Initial: "initial";
|
|
69
|
+
readonly Recurring: "recurring";
|
|
70
|
+
readonly Correction: "correction";
|
|
71
|
+
readonly Estimated: "estimated";
|
|
72
|
+
readonly Penalty: "penalty";
|
|
73
|
+
readonly Other: "other";
|
|
74
|
+
};
|
|
75
|
+
export declare type CreateInvoiceRequestDtoTypeEnum = typeof CreateInvoiceRequestDtoTypeEnum[keyof typeof CreateInvoiceRequestDtoTypeEnum];
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL BillingService
|
|
6
|
+
* The EMIL BillingService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.CreateInvoiceRequestDtoTypeEnum = void 0;
|
|
17
|
+
exports.CreateInvoiceRequestDtoTypeEnum = {
|
|
18
|
+
Initial: 'initial',
|
|
19
|
+
Recurring: 'recurring',
|
|
20
|
+
Correction: 'correction',
|
|
21
|
+
Estimated: 'estimated',
|
|
22
|
+
Penalty: 'penalty',
|
|
23
|
+
Other: 'other'
|
|
24
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL BillingService
|
|
3
|
+
* The EMIL BillingService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { InvoiceClass } from './invoice-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateInvoiceResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateInvoiceResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Recurring invoice response
|
|
21
|
+
* @type {InvoiceClass}
|
|
22
|
+
* @memberof CreateInvoiceResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'invoice': InvoiceClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL BillingService
|
|
6
|
+
* The EMIL BillingService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export * from './create-correction-invoices-response-class';
|
|
2
|
+
export * from './create-custom-estimated-invoice-request-dto';
|
|
3
|
+
export * from './create-custom-estimated-invoice-response-class';
|
|
4
|
+
export * from './create-estimated-invoice-request-dto';
|
|
5
|
+
export * from './create-estimated-invoice-response-class';
|
|
6
|
+
export * from './create-invoice-request-dto';
|
|
7
|
+
export * from './create-invoice-response-class';
|
|
8
|
+
export * from './invoice-class';
|
|
9
|
+
export * from './list-invoices-response-class';
|
|
10
|
+
export * from './list-request-dto';
|
|
11
|
+
export * from './policy-dto';
|
|
12
|
+
export * from './policy-object-dto';
|
|
13
|
+
export * from './policy-premium-dto';
|
|
14
|
+
export * from './policy-premium-item-dto';
|
|
15
|
+
export * from './policy-version-dto';
|
|
16
|
+
export * from './premium-formula-dto';
|
|
17
|
+
export * from './timeslice-dto';
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./create-correction-invoices-response-class"), exports);
|
|
18
|
+
__exportStar(require("./create-custom-estimated-invoice-request-dto"), exports);
|
|
19
|
+
__exportStar(require("./create-custom-estimated-invoice-response-class"), exports);
|
|
20
|
+
__exportStar(require("./create-estimated-invoice-request-dto"), exports);
|
|
21
|
+
__exportStar(require("./create-estimated-invoice-response-class"), exports);
|
|
22
|
+
__exportStar(require("./create-invoice-request-dto"), exports);
|
|
23
|
+
__exportStar(require("./create-invoice-response-class"), exports);
|
|
24
|
+
__exportStar(require("./invoice-class"), exports);
|
|
25
|
+
__exportStar(require("./list-invoices-response-class"), exports);
|
|
26
|
+
__exportStar(require("./list-request-dto"), exports);
|
|
27
|
+
__exportStar(require("./policy-dto"), exports);
|
|
28
|
+
__exportStar(require("./policy-object-dto"), exports);
|
|
29
|
+
__exportStar(require("./policy-premium-dto"), exports);
|
|
30
|
+
__exportStar(require("./policy-premium-item-dto"), exports);
|
|
31
|
+
__exportStar(require("./policy-version-dto"), exports);
|
|
32
|
+
__exportStar(require("./premium-formula-dto"), exports);
|
|
33
|
+
__exportStar(require("./timeslice-dto"), exports);
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL BillingService
|
|
3
|
+
* The EMIL BillingService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface InvoiceClass
|
|
16
|
+
*/
|
|
17
|
+
export interface InvoiceClass {
|
|
18
|
+
/**
|
|
19
|
+
* Invoice id
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof InvoiceClass
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* policy code
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof InvoiceClass
|
|
28
|
+
*/
|
|
29
|
+
'policyCode': string;
|
|
30
|
+
/**
|
|
31
|
+
* Account number
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof InvoiceClass
|
|
34
|
+
*/
|
|
35
|
+
'accountNumber': string;
|
|
36
|
+
/**
|
|
37
|
+
* Invoice code
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof InvoiceClass
|
|
40
|
+
*/
|
|
41
|
+
'code': string;
|
|
42
|
+
/**
|
|
43
|
+
* Invoice type
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof InvoiceClass
|
|
46
|
+
*/
|
|
47
|
+
'type': string;
|
|
48
|
+
/**
|
|
49
|
+
* Invoice number
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof InvoiceClass
|
|
52
|
+
*/
|
|
53
|
+
'invoiceNumber': string;
|
|
54
|
+
/**
|
|
55
|
+
* Net amount
|
|
56
|
+
* @type {number}
|
|
57
|
+
* @memberof InvoiceClass
|
|
58
|
+
*/
|
|
59
|
+
'netAmount': number;
|
|
60
|
+
/**
|
|
61
|
+
* Tax amount
|
|
62
|
+
* @type {number}
|
|
63
|
+
* @memberof InvoiceClass
|
|
64
|
+
*/
|
|
65
|
+
'taxAmount': number;
|
|
66
|
+
/**
|
|
67
|
+
* Credit amount
|
|
68
|
+
* @type {number}
|
|
69
|
+
* @memberof InvoiceClass
|
|
70
|
+
*/
|
|
71
|
+
'creditAmount': number;
|
|
72
|
+
/**
|
|
73
|
+
* Gross amount
|
|
74
|
+
* @type {number}
|
|
75
|
+
* @memberof InvoiceClass
|
|
76
|
+
*/
|
|
77
|
+
'grossAmount': number;
|
|
78
|
+
/**
|
|
79
|
+
* Invoice status
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof InvoiceClass
|
|
82
|
+
*/
|
|
83
|
+
'status': string;
|
|
84
|
+
/**
|
|
85
|
+
* Invoice due date
|
|
86
|
+
* @type {string}
|
|
87
|
+
* @memberof InvoiceClass
|
|
88
|
+
*/
|
|
89
|
+
'dueDate': string;
|
|
90
|
+
/**
|
|
91
|
+
* Invoice metadata
|
|
92
|
+
* @type {object}
|
|
93
|
+
* @memberof InvoiceClass
|
|
94
|
+
*/
|
|
95
|
+
'metadata': object;
|
|
96
|
+
/**
|
|
97
|
+
* Invoice billing interval from
|
|
98
|
+
* @type {string}
|
|
99
|
+
* @memberof InvoiceClass
|
|
100
|
+
*/
|
|
101
|
+
'billingIntervalFrom': string;
|
|
102
|
+
/**
|
|
103
|
+
* Invoice billing interval to
|
|
104
|
+
* @type {string}
|
|
105
|
+
* @memberof InvoiceClass
|
|
106
|
+
*/
|
|
107
|
+
'billingIntervalTo': string;
|
|
108
|
+
/**
|
|
109
|
+
* Invoice created at
|
|
110
|
+
* @type {string}
|
|
111
|
+
* @memberof InvoiceClass
|
|
112
|
+
*/
|
|
113
|
+
'createdAt': string;
|
|
114
|
+
/**
|
|
115
|
+
* Invoice items
|
|
116
|
+
* @type {Array<string>}
|
|
117
|
+
* @memberof InvoiceClass
|
|
118
|
+
*/
|
|
119
|
+
'invoiceItems': Array<string>;
|
|
120
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL BillingService
|
|
6
|
+
* The EMIL BillingService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL BillingService
|
|
3
|
+
* The EMIL BillingService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ListInvoicesResponseClass
|
|
16
|
+
*/
|
|
17
|
+
export interface ListInvoicesResponseClass {
|
|
18
|
+
/**
|
|
19
|
+
* Invoices list items
|
|
20
|
+
* @type {Array<string>}
|
|
21
|
+
* @memberof ListInvoicesResponseClass
|
|
22
|
+
*/
|
|
23
|
+
'items': Array<string>;
|
|
24
|
+
/**
|
|
25
|
+
* Next page token
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ListInvoicesResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'nextPageToken': string;
|
|
30
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL BillingService
|
|
6
|
+
* The EMIL BillingService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL BillingService
|
|
3
|
+
* The EMIL BillingService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ListRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface ListRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Page size
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof ListRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'pageSize'?: number;
|
|
24
|
+
/**
|
|
25
|
+
* Page token
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ListRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'pageToken'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* List filter
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'filter'?: string;
|
|
36
|
+
/**
|
|
37
|
+
* Search query
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof ListRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'search'?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Ordering criteria
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof ListRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'order'?: string;
|
|
48
|
+
/**
|
|
49
|
+
* Extra fields to fetch
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof ListRequestDto
|
|
52
|
+
*/
|
|
53
|
+
'expand'?: string;
|
|
54
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL BillingService
|
|
6
|
+
* The EMIL BillingService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL BillingService
|
|
3
|
+
* The EMIL BillingService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { PolicyVersionDto } from './policy-version-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface PolicyDto
|
|
17
|
+
*/
|
|
18
|
+
export interface PolicyDto {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof PolicyDto
|
|
23
|
+
*/
|
|
24
|
+
'policyStartDate': string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof PolicyDto
|
|
29
|
+
*/
|
|
30
|
+
'createdAt': string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof PolicyDto
|
|
35
|
+
*/
|
|
36
|
+
'updatedAt': string;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {Array<PolicyVersionDto>}
|
|
40
|
+
* @memberof PolicyDto
|
|
41
|
+
*/
|
|
42
|
+
'versions': Array<PolicyVersionDto>;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {number}
|
|
46
|
+
* @memberof PolicyDto
|
|
47
|
+
*/
|
|
48
|
+
'id': number;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof PolicyDto
|
|
53
|
+
*/
|
|
54
|
+
'code': string;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof PolicyDto
|
|
59
|
+
*/
|
|
60
|
+
'policyNumber': string;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {number}
|
|
64
|
+
* @memberof PolicyDto
|
|
65
|
+
*/
|
|
66
|
+
'productVersionId': number;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {number}
|
|
70
|
+
* @memberof PolicyDto
|
|
71
|
+
*/
|
|
72
|
+
'productId': number;
|
|
73
|
+
/**
|
|
74
|
+
*
|
|
75
|
+
* @type {string}
|
|
76
|
+
* @memberof PolicyDto
|
|
77
|
+
*/
|
|
78
|
+
'accountCode': string;
|
|
79
|
+
/**
|
|
80
|
+
*
|
|
81
|
+
* @type {number}
|
|
82
|
+
* @memberof PolicyDto
|
|
83
|
+
*/
|
|
84
|
+
'statusId': number;
|
|
85
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL BillingService
|
|
6
|
+
* The EMIL BillingService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL BillingService
|
|
3
|
+
* The EMIL BillingService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface PolicyObjectDto
|
|
16
|
+
*/
|
|
17
|
+
export interface PolicyObjectDto {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {object}
|
|
21
|
+
* @memberof PolicyObjectDto
|
|
22
|
+
*/
|
|
23
|
+
'data': object;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof PolicyObjectDto
|
|
28
|
+
*/
|
|
29
|
+
'insuredObjectId': number;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof PolicyObjectDto
|
|
34
|
+
*/
|
|
35
|
+
'insuredObjectName': string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof PolicyObjectDto
|
|
40
|
+
*/
|
|
41
|
+
'summary': string;
|
|
42
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL BillingService
|
|
6
|
+
* The EMIL BillingService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL BillingService
|
|
3
|
+
* The EMIL BillingService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { PolicyPremiumItemDto } from './policy-premium-item-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface PolicyPremiumDto
|
|
17
|
+
*/
|
|
18
|
+
export interface PolicyPremiumDto {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof PolicyPremiumDto
|
|
23
|
+
*/
|
|
24
|
+
'createdAt': string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof PolicyPremiumDto
|
|
29
|
+
*/
|
|
30
|
+
'updatedAt': string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {Array<PolicyPremiumItemDto>}
|
|
34
|
+
* @memberof PolicyPremiumDto
|
|
35
|
+
*/
|
|
36
|
+
'premiumItems': Array<PolicyPremiumItemDto>;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof PolicyPremiumDto
|
|
41
|
+
*/
|
|
42
|
+
'grandTotal': number;
|
|
43
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL BillingService
|
|
6
|
+
* The EMIL BillingService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|