@emilgroup/accounting-sdk-node 1.21.0 → 1.22.1-beta.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 +29 -52
- package/README.md +2 -2
- package/api/{zip-codes-api.ts → booking-entries-api.ts} +195 -162
- package/api/financial-accounts-api.ts +577 -0
- package/api/financial-transactions-api.ts +369 -0
- package/api/health-api.ts +7 -7
- package/api/number-ranges-api.ts +577 -0
- package/api/personal-accounts-api.ts +577 -0
- package/api.ts +12 -14
- package/base.ts +2 -2
- package/common.ts +4 -4
- package/configuration.ts +2 -2
- package/dist/api/{zip-codes-api.d.ts → booking-entries-api.d.ts} +130 -111
- package/dist/api/{zip-codes-api.js → booking-entries-api.js} +144 -130
- package/dist/api/financial-accounts-api.d.ts +327 -0
- package/dist/api/{users-api.js → financial-accounts-api.js} +171 -134
- package/dist/api/financial-transactions-api.d.ts +215 -0
- package/dist/api/financial-transactions-api.js +364 -0
- package/dist/api/health-api.d.ts +6 -6
- package/dist/api/health-api.js +7 -7
- package/dist/api/number-ranges-api.d.ts +327 -0
- package/dist/api/{vbas-api.js → number-ranges-api.js} +156 -161
- package/dist/api/personal-accounts-api.d.ts +327 -0
- package/dist/api/{vbus-api.js → personal-accounts-api.js} +136 -234
- package/dist/api.d.ts +7 -8
- package/dist/api.js +7 -8
- package/dist/base.d.ts +2 -2
- package/dist/base.js +2 -2
- package/dist/common.d.ts +4 -4
- package/dist/common.js +2 -2
- package/dist/configuration.d.ts +2 -2
- package/dist/configuration.js +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/models/booking-entry-class.d.ts +123 -0
- package/dist/models/{create-vbuv-request-dto.js → booking-entry-class.js} +15 -6
- package/dist/models/create-booking-entry-request-dto.d.ts +61 -0
- package/dist/models/{address-class.js → create-booking-entry-request-dto.js} +2 -2
- package/dist/models/create-booking-entry-response-class.d.ts +25 -0
- package/dist/models/{create-user-response-class.js → create-booking-entry-response-class.js} +2 -2
- package/dist/models/create-financial-account-request-dto.d.ts +75 -0
- package/dist/models/create-financial-account-request-dto.js +24 -0
- package/dist/models/create-financial-account-response-class.d.ts +25 -0
- package/dist/models/{create-mailbox-request-dto.js → create-financial-account-response-class.js} +2 -2
- package/dist/models/create-number-range-request-dto.d.ts +53 -0
- package/dist/models/create-number-range-request-dto.js +26 -0
- package/dist/models/create-number-range-response-class.d.ts +25 -0
- package/dist/models/{create-vba-response-class.js → create-number-range-response-class.js} +2 -2
- package/dist/models/create-personal-account-request-dto.d.ts +60 -0
- package/dist/models/{create-vba-request-dto.js → create-personal-account-request-dto.js} +7 -6
- package/dist/models/create-personal-account-response-class.d.ts +25 -0
- package/dist/models/create-personal-account-response-class.js +15 -0
- package/dist/models/financial-account-class.d.ts +111 -0
- package/dist/models/{create-vbu-request-dto.js → financial-account-class.js} +10 -6
- package/dist/models/financial-transaction-class.d.ts +114 -0
- package/dist/models/financial-transaction-class.js +15 -0
- package/dist/models/financial-transaction-data-dto.d.ts +71 -0
- package/dist/models/financial-transaction-data-dto.js +25 -0
- package/dist/models/get-booking-entry-response-class.d.ts +25 -0
- package/dist/models/get-booking-entry-response-class.js +15 -0
- package/dist/models/get-financial-account-response-class.d.ts +25 -0
- package/dist/models/get-financial-account-response-class.js +15 -0
- package/dist/models/get-financial-transaction-response-class.d.ts +25 -0
- package/dist/models/get-financial-transaction-response-class.js +15 -0
- package/dist/models/get-number-range-response-class.d.ts +25 -0
- package/dist/models/get-number-range-response-class.js +15 -0
- package/dist/models/get-personal-account-response-class.d.ts +25 -0
- package/dist/models/get-personal-account-response-class.js +15 -0
- package/dist/models/index.d.ts +24 -46
- package/dist/models/index.js +24 -46
- package/dist/models/inline-response200.d.ts +2 -2
- package/dist/models/inline-response200.js +2 -2
- package/dist/models/inline-response503.d.ts +2 -2
- package/dist/models/inline-response503.js +2 -2
- package/dist/models/list-booking-entries-response-class.d.ts +31 -0
- package/dist/models/list-booking-entries-response-class.js +15 -0
- package/dist/models/list-financial-accounts-response-class.d.ts +31 -0
- package/dist/models/list-financial-accounts-response-class.js +15 -0
- package/dist/models/list-financial-transactions-response-class.d.ts +31 -0
- package/dist/models/list-financial-transactions-response-class.js +15 -0
- package/dist/models/list-number-range-response-class.d.ts +31 -0
- package/dist/models/list-number-range-response-class.js +15 -0
- package/dist/models/list-personal-accounts-response-class.d.ts +31 -0
- package/dist/models/list-personal-accounts-response-class.js +15 -0
- package/dist/models/number-range-class.d.ts +84 -0
- package/dist/models/number-range-class.js +15 -0
- package/dist/models/personal-account-class.d.ts +105 -0
- package/dist/models/{create-user-request-dto.js → personal-account-class.js} +10 -10
- package/index.ts +2 -2
- package/models/booking-entry-class.ts +132 -0
- package/models/create-booking-entry-request-dto.ts +67 -0
- package/models/create-booking-entry-response-class.ts +31 -0
- package/models/create-financial-account-request-dto.ts +84 -0
- package/models/create-financial-account-response-class.ts +31 -0
- package/models/create-number-range-request-dto.ts +62 -0
- package/models/create-number-range-response-class.ts +31 -0
- package/models/create-personal-account-request-dto.ts +69 -0
- package/models/create-personal-account-response-class.ts +31 -0
- package/models/financial-account-class.ts +120 -0
- package/models/financial-transaction-class.ts +120 -0
- package/models/financial-transaction-data-dto.ts +81 -0
- package/models/get-booking-entry-response-class.ts +31 -0
- package/models/get-financial-account-response-class.ts +31 -0
- package/models/get-financial-transaction-response-class.ts +31 -0
- package/models/get-number-range-response-class.ts +31 -0
- package/models/get-personal-account-response-class.ts +31 -0
- package/models/index.ts +24 -46
- package/models/inline-response200.ts +2 -2
- package/models/inline-response503.ts +2 -2
- package/models/list-booking-entries-response-class.ts +37 -0
- package/models/list-financial-accounts-response-class.ts +37 -0
- package/models/list-financial-transactions-response-class.ts +37 -0
- package/models/list-number-range-response-class.ts +37 -0
- package/models/list-personal-accounts-response-class.ts +37 -0
- package/models/number-range-class.ts +90 -0
- package/models/personal-account-class.ts +114 -0
- package/package.json +1 -1
- package/api/mailbox-api.ts +0 -255
- package/api/messages-api.ts +0 -1100
- package/api/users-api.ts +0 -496
- package/api/vbas-api.ts +0 -592
- package/api/vbus-api.ts +0 -701
- package/dist/api/mailbox-api.d.ts +0 -142
- package/dist/api/mailbox-api.js +0 -315
- package/dist/api/messages-api.d.ts +0 -632
- package/dist/api/messages-api.js +0 -916
- package/dist/api/users-api.d.ts +0 -275
- package/dist/api/vbas-api.d.ts +0 -337
- package/dist/api/vbus-api.d.ts +0 -395
- package/dist/models/address-class.d.ts +0 -48
- package/dist/models/create-mailbox-request-dto.d.ts +0 -36
- package/dist/models/create-user-request-dto.d.ts +0 -76
- package/dist/models/create-user-response-class.d.ts +0 -25
- package/dist/models/create-vba-request-dto.d.ts +0 -41
- package/dist/models/create-vba-response-class.d.ts +0 -24
- package/dist/models/create-vbu-request-dto.d.ts +0 -41
- package/dist/models/create-vbu-response-class.d.ts +0 -24
- package/dist/models/create-vbu-response-class.js +0 -15
- package/dist/models/create-vbuv-request-dto.d.ts +0 -41
- package/dist/models/create-vbuv-response-class.d.ts +0 -24
- package/dist/models/create-vbuv-response-class.js +0 -15
- package/dist/models/get-request-message-response-class.d.ts +0 -25
- package/dist/models/get-request-message-response-class.js +0 -15
- package/dist/models/get-response-message-response-class.d.ts +0 -25
- package/dist/models/get-response-message-response-class.js +0 -15
- package/dist/models/get-user-response-class.d.ts +0 -25
- package/dist/models/get-user-response-class.js +0 -15
- package/dist/models/get-vba-response-class.d.ts +0 -25
- package/dist/models/get-vba-response-class.js +0 -15
- package/dist/models/get-vbu-response-class.d.ts +0 -25
- package/dist/models/get-vbu-response-class.js +0 -15
- package/dist/models/get-zip-code-response-class.d.ts +0 -25
- package/dist/models/get-zip-code-response-class.js +0 -15
- package/dist/models/list-all-messages-response-class.d.ts +0 -31
- package/dist/models/list-all-messages-response-class.js +0 -15
- package/dist/models/list-requests-messages-response-class.d.ts +0 -31
- package/dist/models/list-requests-messages-response-class.js +0 -15
- package/dist/models/list-responses-messages-response-class.d.ts +0 -31
- package/dist/models/list-responses-messages-response-class.js +0 -15
- package/dist/models/list-users-response-class.d.ts +0 -31
- package/dist/models/list-users-response-class.js +0 -15
- package/dist/models/list-vbas-response-class.d.ts +0 -31
- package/dist/models/list-vbas-response-class.js +0 -15
- package/dist/models/list-vbus-response-class.d.ts +0 -31
- package/dist/models/list-vbus-response-class.js +0 -15
- package/dist/models/list-zip-codes-response-class.d.ts +0 -31
- package/dist/models/list-zip-codes-response-class.js +0 -15
- package/dist/models/message-class.d.ts +0 -90
- package/dist/models/message-class.js +0 -15
- package/dist/models/request-details-class.d.ts +0 -48
- package/dist/models/request-details-class.js +0 -15
- package/dist/models/request-message-class.d.ts +0 -127
- package/dist/models/request-message-class.js +0 -15
- package/dist/models/response-details-class.d.ts +0 -42
- package/dist/models/response-details-class.js +0 -15
- package/dist/models/response-message-class.d.ts +0 -139
- package/dist/models/response-message-class.js +0 -15
- package/dist/models/store-zip-codes-request-dto.d.ts +0 -25
- package/dist/models/store-zip-codes-request-dto.js +0 -15
- package/dist/models/store-zip-codes-response-class.d.ts +0 -25
- package/dist/models/store-zip-codes-response-class.js +0 -15
- package/dist/models/update-request-message-request-dto.d.ts +0 -36
- package/dist/models/update-request-message-request-dto.js +0 -15
- package/dist/models/update-request-message-response-class.d.ts +0 -25
- package/dist/models/update-request-message-response-class.js +0 -15
- package/dist/models/update-response-message-request-dto.d.ts +0 -36
- package/dist/models/update-response-message-request-dto.js +0 -15
- package/dist/models/update-response-message-response-class.d.ts +0 -25
- package/dist/models/update-response-message-response-class.js +0 -15
- package/dist/models/update-user-request-dto.d.ts +0 -82
- package/dist/models/update-user-request-dto.js +0 -24
- package/dist/models/update-user-response-class.d.ts +0 -25
- package/dist/models/update-user-response-class.js +0 -15
- package/dist/models/update-vba-request-dto.d.ts +0 -30
- package/dist/models/update-vba-request-dto.js +0 -15
- package/dist/models/update-vbu-request-dto.d.ts +0 -30
- package/dist/models/update-vbu-request-dto.js +0 -15
- package/dist/models/update-vbu-response-class.d.ts +0 -25
- package/dist/models/update-vbu-response-class.js +0 -15
- package/dist/models/user-class.d.ts +0 -107
- package/dist/models/user-class.js +0 -20
- package/dist/models/vba-class.d.ts +0 -116
- package/dist/models/vba-class.js +0 -15
- package/dist/models/vba-response-class.d.ts +0 -48
- package/dist/models/vba-response-class.js +0 -15
- package/dist/models/vbu-class.d.ts +0 -115
- package/dist/models/vbu-class.js +0 -15
- package/dist/models/vbu-response-class.d.ts +0 -48
- package/dist/models/vbu-response-class.js +0 -15
- package/dist/models/xlsx-zip-code-dto.d.ts +0 -30
- package/dist/models/xlsx-zip-code-dto.js +0 -15
- package/dist/models/zip-code-class.d.ts +0 -60
- package/dist/models/zip-code-class.js +0 -15
- package/models/address-class.ts +0 -54
- package/models/create-mailbox-request-dto.ts +0 -42
- package/models/create-user-request-dto.ts +0 -86
- package/models/create-user-response-class.ts +0 -31
- package/models/create-vba-request-dto.ts +0 -50
- package/models/create-vba-response-class.ts +0 -30
- package/models/create-vbu-request-dto.ts +0 -50
- package/models/create-vbu-response-class.ts +0 -30
- package/models/create-vbuv-request-dto.ts +0 -50
- package/models/create-vbuv-response-class.ts +0 -30
- package/models/get-request-message-response-class.ts +0 -31
- package/models/get-response-message-response-class.ts +0 -31
- package/models/get-user-response-class.ts +0 -31
- package/models/get-vba-response-class.ts +0 -31
- package/models/get-vbu-response-class.ts +0 -31
- package/models/get-zip-code-response-class.ts +0 -31
- package/models/list-all-messages-response-class.ts +0 -37
- package/models/list-requests-messages-response-class.ts +0 -37
- package/models/list-responses-messages-response-class.ts +0 -37
- package/models/list-users-response-class.ts +0 -37
- package/models/list-vbas-response-class.ts +0 -37
- package/models/list-vbus-response-class.ts +0 -37
- package/models/list-zip-codes-response-class.ts +0 -37
- package/models/message-class.ts +0 -96
- package/models/request-details-class.ts +0 -54
- package/models/request-message-class.ts +0 -133
- package/models/response-details-class.ts +0 -48
- package/models/response-message-class.ts +0 -145
- package/models/store-zip-codes-request-dto.ts +0 -31
- package/models/store-zip-codes-response-class.ts +0 -31
- package/models/update-request-message-request-dto.ts +0 -42
- package/models/update-request-message-response-class.ts +0 -31
- package/models/update-response-message-request-dto.ts +0 -42
- package/models/update-response-message-response-class.ts +0 -31
- package/models/update-user-request-dto.ts +0 -92
- package/models/update-user-response-class.ts +0 -31
- package/models/update-vba-request-dto.ts +0 -36
- package/models/update-vbu-request-dto.ts +0 -36
- package/models/update-vbu-response-class.ts +0 -31
- package/models/user-class.ts +0 -116
- package/models/vba-class.ts +0 -122
- package/models/vba-response-class.ts +0 -54
- package/models/vbu-class.ts +0 -121
- package/models/vbu-response-class.ts +0 -54
- package/models/xlsx-zip-code-dto.ts +0 -36
- package/models/zip-code-class.ts +0 -66
|
@@ -1,116 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* EMIL GdvService
|
|
3
|
-
* The EMIL GdvService API description
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0
|
|
6
|
-
* Contact: kontakt@emil.de
|
|
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 { AddressClass } from './address-class';
|
|
13
|
-
import { VbaResponseClass } from './vba-response-class';
|
|
14
|
-
/**
|
|
15
|
-
*
|
|
16
|
-
* @export
|
|
17
|
-
* @interface VbaClass
|
|
18
|
-
*/
|
|
19
|
-
export interface VbaClass {
|
|
20
|
-
/**
|
|
21
|
-
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
22
|
-
* @type {number}
|
|
23
|
-
* @memberof VbaClass
|
|
24
|
-
*/
|
|
25
|
-
'id': number;
|
|
26
|
-
/**
|
|
27
|
-
* Unique identifier for the object.
|
|
28
|
-
* @type {string}
|
|
29
|
-
* @memberof VbaClass
|
|
30
|
-
*/
|
|
31
|
-
'code': string;
|
|
32
|
-
/**
|
|
33
|
-
* The lead which the vba belong to
|
|
34
|
-
* @type {string}
|
|
35
|
-
* @memberof VbaClass
|
|
36
|
-
*/
|
|
37
|
-
'leadNumber': string;
|
|
38
|
-
/**
|
|
39
|
-
* The policy which the vba belong to
|
|
40
|
-
* @type {string}
|
|
41
|
-
* @memberof VbaClass
|
|
42
|
-
*/
|
|
43
|
-
'policyNumber': string;
|
|
44
|
-
/**
|
|
45
|
-
* The lead which the vba belong to
|
|
46
|
-
* @type {string}
|
|
47
|
-
* @memberof VbaClass
|
|
48
|
-
*/
|
|
49
|
-
'leadCode': string;
|
|
50
|
-
/**
|
|
51
|
-
* The policy which the vba belong to
|
|
52
|
-
* @type {string}
|
|
53
|
-
* @memberof VbaClass
|
|
54
|
-
*/
|
|
55
|
-
'policyCode': string;
|
|
56
|
-
/**
|
|
57
|
-
* Vba number.
|
|
58
|
-
* @type {string}
|
|
59
|
-
* @memberof VbaClass
|
|
60
|
-
*/
|
|
61
|
-
'vbNumber': string;
|
|
62
|
-
/**
|
|
63
|
-
* Vba status, it contains ERROR or OK.
|
|
64
|
-
* @type {string}
|
|
65
|
-
* @memberof VbaClass
|
|
66
|
-
*/
|
|
67
|
-
'status': string;
|
|
68
|
-
/**
|
|
69
|
-
* Vba valid till date.
|
|
70
|
-
* @type {string}
|
|
71
|
-
* @memberof VbaClass
|
|
72
|
-
*/
|
|
73
|
-
'expiryDate': string;
|
|
74
|
-
/**
|
|
75
|
-
* Customer name.
|
|
76
|
-
* @type {string}
|
|
77
|
-
* @memberof VbaClass
|
|
78
|
-
*/
|
|
79
|
-
'customerName': string;
|
|
80
|
-
/**
|
|
81
|
-
* Customer address
|
|
82
|
-
* @type {Array<AddressClass>}
|
|
83
|
-
* @memberof VbaClass
|
|
84
|
-
*/
|
|
85
|
-
'address': Array<AddressClass>;
|
|
86
|
-
/**
|
|
87
|
-
* Time at which the object was created.
|
|
88
|
-
* @type {string}
|
|
89
|
-
* @memberof VbaClass
|
|
90
|
-
*/
|
|
91
|
-
'createdAt': string;
|
|
92
|
-
/**
|
|
93
|
-
* Time at which the object was updated.
|
|
94
|
-
* @type {string}
|
|
95
|
-
* @memberof VbaClass
|
|
96
|
-
*/
|
|
97
|
-
'updatedAt': string;
|
|
98
|
-
/**
|
|
99
|
-
* Vba Responses.
|
|
100
|
-
* @type {Array<VbaResponseClass>}
|
|
101
|
-
* @memberof VbaClass
|
|
102
|
-
*/
|
|
103
|
-
'responses': Array<VbaResponseClass>;
|
|
104
|
-
/**
|
|
105
|
-
* Identifier of the user who created the record.
|
|
106
|
-
* @type {string}
|
|
107
|
-
* @memberof VbaClass
|
|
108
|
-
*/
|
|
109
|
-
'createdBy': string;
|
|
110
|
-
/**
|
|
111
|
-
* Identifier of the user who last updated the record.
|
|
112
|
-
* @type {string}
|
|
113
|
-
* @memberof VbaClass
|
|
114
|
-
*/
|
|
115
|
-
'updatedBy': string;
|
|
116
|
-
}
|
package/dist/models/vba-class.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* EMIL GdvService
|
|
6
|
-
* The EMIL GdvService API description
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0
|
|
9
|
-
* Contact: kontakt@emil.de
|
|
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 });
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* EMIL GdvService
|
|
3
|
-
* The EMIL GdvService API description
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0
|
|
6
|
-
* Contact: kontakt@emil.de
|
|
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 VbaResponseClass
|
|
16
|
-
*/
|
|
17
|
-
export interface VbaResponseClass {
|
|
18
|
-
/**
|
|
19
|
-
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
20
|
-
* @type {number}
|
|
21
|
-
* @memberof VbaResponseClass
|
|
22
|
-
*/
|
|
23
|
-
'id': number;
|
|
24
|
-
/**
|
|
25
|
-
* Response details
|
|
26
|
-
* @type {object}
|
|
27
|
-
* @memberof VbaResponseClass
|
|
28
|
-
*/
|
|
29
|
-
'response': object;
|
|
30
|
-
/**
|
|
31
|
-
* Time at which the object was created.
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof VbaResponseClass
|
|
34
|
-
*/
|
|
35
|
-
'createdAt': string;
|
|
36
|
-
/**
|
|
37
|
-
* Identifier of the user who created the record.
|
|
38
|
-
* @type {string}
|
|
39
|
-
* @memberof VbaResponseClass
|
|
40
|
-
*/
|
|
41
|
-
'createdBy': string;
|
|
42
|
-
/**
|
|
43
|
-
* Identifier of the user who last updated the record.
|
|
44
|
-
* @type {string}
|
|
45
|
-
* @memberof VbaResponseClass
|
|
46
|
-
*/
|
|
47
|
-
'updatedBy': string;
|
|
48
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* EMIL GdvService
|
|
6
|
-
* The EMIL GdvService API description
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0
|
|
9
|
-
* Contact: kontakt@emil.de
|
|
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 });
|
|
@@ -1,115 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* EMIL GdvService
|
|
3
|
-
* The EMIL GdvService API description
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0
|
|
6
|
-
* Contact: kontakt@emil.de
|
|
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 { VbuResponseClass } from './vbu-response-class';
|
|
13
|
-
/**
|
|
14
|
-
*
|
|
15
|
-
* @export
|
|
16
|
-
* @interface VbuClass
|
|
17
|
-
*/
|
|
18
|
-
export interface VbuClass {
|
|
19
|
-
/**
|
|
20
|
-
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
21
|
-
* @type {number}
|
|
22
|
-
* @memberof VbuClass
|
|
23
|
-
*/
|
|
24
|
-
'id': number;
|
|
25
|
-
/**
|
|
26
|
-
* Unique identifier for the object.
|
|
27
|
-
* @type {string}
|
|
28
|
-
* @memberof VbuClass
|
|
29
|
-
*/
|
|
30
|
-
'code': string;
|
|
31
|
-
/**
|
|
32
|
-
* The lead which the vbu belong to
|
|
33
|
-
* @type {string}
|
|
34
|
-
* @memberof VbuClass
|
|
35
|
-
*/
|
|
36
|
-
'leadNumber': string;
|
|
37
|
-
/**
|
|
38
|
-
* The policy which the vbu belong to
|
|
39
|
-
* @type {string}
|
|
40
|
-
* @memberof VbuClass
|
|
41
|
-
*/
|
|
42
|
-
'policyNumber': string;
|
|
43
|
-
/**
|
|
44
|
-
* The lead which the vbu belong to
|
|
45
|
-
* @type {string}
|
|
46
|
-
* @memberof VbuClass
|
|
47
|
-
*/
|
|
48
|
-
'leadCode': string;
|
|
49
|
-
/**
|
|
50
|
-
* The policy which the vbu belong to
|
|
51
|
-
* @type {string}
|
|
52
|
-
* @memberof VbuClass
|
|
53
|
-
*/
|
|
54
|
-
'policyCode': string;
|
|
55
|
-
/**
|
|
56
|
-
* Vbu status, it contains ERROR or OK.
|
|
57
|
-
* @type {string}
|
|
58
|
-
* @memberof VbuClass
|
|
59
|
-
*/
|
|
60
|
-
'status': string;
|
|
61
|
-
/**
|
|
62
|
-
* Vbu transition start.
|
|
63
|
-
* @type {string}
|
|
64
|
-
* @memberof VbuClass
|
|
65
|
-
*/
|
|
66
|
-
'transmissionStart': string;
|
|
67
|
-
/**
|
|
68
|
-
* Customer name.
|
|
69
|
-
* @type {string}
|
|
70
|
-
* @memberof VbuClass
|
|
71
|
-
*/
|
|
72
|
-
'customerName': string;
|
|
73
|
-
/**
|
|
74
|
-
* Car license plate
|
|
75
|
-
* @type {string}
|
|
76
|
-
* @memberof VbuClass
|
|
77
|
-
*/
|
|
78
|
-
'licensePlate': string;
|
|
79
|
-
/**
|
|
80
|
-
* The receipt (Quitting) received when we create a VBU request.
|
|
81
|
-
* @type {object}
|
|
82
|
-
* @memberof VbuClass
|
|
83
|
-
*/
|
|
84
|
-
'receiptJson': object;
|
|
85
|
-
/**
|
|
86
|
-
* Time at which the object was created.
|
|
87
|
-
* @type {string}
|
|
88
|
-
* @memberof VbuClass
|
|
89
|
-
*/
|
|
90
|
-
'createdAt': string;
|
|
91
|
-
/**
|
|
92
|
-
* Time at which the object was updated.
|
|
93
|
-
* @type {string}
|
|
94
|
-
* @memberof VbuClass
|
|
95
|
-
*/
|
|
96
|
-
'updatedAt': string;
|
|
97
|
-
/**
|
|
98
|
-
* Vba Responses.
|
|
99
|
-
* @type {Array<VbuResponseClass>}
|
|
100
|
-
* @memberof VbuClass
|
|
101
|
-
*/
|
|
102
|
-
'responses': Array<VbuResponseClass>;
|
|
103
|
-
/**
|
|
104
|
-
* Identifier of the user who created the record.
|
|
105
|
-
* @type {string}
|
|
106
|
-
* @memberof VbuClass
|
|
107
|
-
*/
|
|
108
|
-
'createdBy': string;
|
|
109
|
-
/**
|
|
110
|
-
* Identifier of the user who last updated the record.
|
|
111
|
-
* @type {string}
|
|
112
|
-
* @memberof VbuClass
|
|
113
|
-
*/
|
|
114
|
-
'updatedBy': string;
|
|
115
|
-
}
|
package/dist/models/vbu-class.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* EMIL GdvService
|
|
6
|
-
* The EMIL GdvService API description
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0
|
|
9
|
-
* Contact: kontakt@emil.de
|
|
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 });
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* EMIL GdvService
|
|
3
|
-
* The EMIL GdvService API description
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0
|
|
6
|
-
* Contact: kontakt@emil.de
|
|
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 VbuResponseClass
|
|
16
|
-
*/
|
|
17
|
-
export interface VbuResponseClass {
|
|
18
|
-
/**
|
|
19
|
-
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
20
|
-
* @type {number}
|
|
21
|
-
* @memberof VbuResponseClass
|
|
22
|
-
*/
|
|
23
|
-
'id': number;
|
|
24
|
-
/**
|
|
25
|
-
* Response details
|
|
26
|
-
* @type {object}
|
|
27
|
-
* @memberof VbuResponseClass
|
|
28
|
-
*/
|
|
29
|
-
'response': object;
|
|
30
|
-
/**
|
|
31
|
-
* Time at which the object was created.
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof VbuResponseClass
|
|
34
|
-
*/
|
|
35
|
-
'createdAt': string;
|
|
36
|
-
/**
|
|
37
|
-
* Identifier of the user who created the record.
|
|
38
|
-
* @type {string}
|
|
39
|
-
* @memberof VbuResponseClass
|
|
40
|
-
*/
|
|
41
|
-
'createdBy': string;
|
|
42
|
-
/**
|
|
43
|
-
* Identifier of the user who last updated the record.
|
|
44
|
-
* @type {string}
|
|
45
|
-
* @memberof VbuResponseClass
|
|
46
|
-
*/
|
|
47
|
-
'updatedBy': string;
|
|
48
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* EMIL GdvService
|
|
6
|
-
* The EMIL GdvService API description
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0
|
|
9
|
-
* Contact: kontakt@emil.de
|
|
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 });
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* EMIL GdvService
|
|
3
|
-
* The EMIL GdvService API description
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0
|
|
6
|
-
* Contact: kontakt@emil.de
|
|
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 XlsxZipCodeDto
|
|
16
|
-
*/
|
|
17
|
-
export interface XlsxZipCodeDto {
|
|
18
|
-
/**
|
|
19
|
-
* Zip Code
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof XlsxZipCodeDto
|
|
22
|
-
*/
|
|
23
|
-
'zipCode': string;
|
|
24
|
-
/**
|
|
25
|
-
* KGS Number
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof XlsxZipCodeDto
|
|
28
|
-
*/
|
|
29
|
-
'kgs': string;
|
|
30
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* EMIL GdvService
|
|
6
|
-
* The EMIL GdvService API description
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0
|
|
9
|
-
* Contact: kontakt@emil.de
|
|
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 });
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* EMIL GdvService
|
|
3
|
-
* The EMIL GdvService API description
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0
|
|
6
|
-
* Contact: kontakt@emil.de
|
|
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 ZipCodeClass
|
|
16
|
-
*/
|
|
17
|
-
export interface ZipCodeClass {
|
|
18
|
-
/**
|
|
19
|
-
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
20
|
-
* @type {number}
|
|
21
|
-
* @memberof ZipCodeClass
|
|
22
|
-
*/
|
|
23
|
-
'id': number;
|
|
24
|
-
/**
|
|
25
|
-
* Zip Code
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof ZipCodeClass
|
|
28
|
-
*/
|
|
29
|
-
'zipCode': string;
|
|
30
|
-
/**
|
|
31
|
-
* KGS number
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof ZipCodeClass
|
|
34
|
-
*/
|
|
35
|
-
'kgs': string;
|
|
36
|
-
/**
|
|
37
|
-
* Time at which the object was created.
|
|
38
|
-
* @type {string}
|
|
39
|
-
* @memberof ZipCodeClass
|
|
40
|
-
*/
|
|
41
|
-
'createdAt': string;
|
|
42
|
-
/**
|
|
43
|
-
* Time at which the object was updated.
|
|
44
|
-
* @type {string}
|
|
45
|
-
* @memberof ZipCodeClass
|
|
46
|
-
*/
|
|
47
|
-
'updatedAt': string;
|
|
48
|
-
/**
|
|
49
|
-
* Identifier of the user who created the record.
|
|
50
|
-
* @type {string}
|
|
51
|
-
* @memberof ZipCodeClass
|
|
52
|
-
*/
|
|
53
|
-
'createdBy': string;
|
|
54
|
-
/**
|
|
55
|
-
* Identifier of the user who last updated the record.
|
|
56
|
-
* @type {string}
|
|
57
|
-
* @memberof ZipCodeClass
|
|
58
|
-
*/
|
|
59
|
-
'updatedBy': string;
|
|
60
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* EMIL GdvService
|
|
6
|
-
* The EMIL GdvService API description
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0
|
|
9
|
-
* Contact: kontakt@emil.de
|
|
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 });
|
package/models/address-class.ts
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* EMIL GdvService
|
|
5
|
-
* The EMIL GdvService API description
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0
|
|
8
|
-
* Contact: kontakt@emil.de
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
*
|
|
19
|
-
* @export
|
|
20
|
-
* @interface AddressClass
|
|
21
|
-
*/
|
|
22
|
-
export interface AddressClass {
|
|
23
|
-
/**
|
|
24
|
-
* Zip code.
|
|
25
|
-
* @type {string}
|
|
26
|
-
* @memberof AddressClass
|
|
27
|
-
*/
|
|
28
|
-
'zipCode': string;
|
|
29
|
-
/**
|
|
30
|
-
* Name of the city.
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof AddressClass
|
|
33
|
-
*/
|
|
34
|
-
'city': string;
|
|
35
|
-
/**
|
|
36
|
-
* Name of the street.
|
|
37
|
-
* @type {string}
|
|
38
|
-
* @memberof AddressClass
|
|
39
|
-
*/
|
|
40
|
-
'street': string;
|
|
41
|
-
/**
|
|
42
|
-
* House number.
|
|
43
|
-
* @type {string}
|
|
44
|
-
* @memberof AddressClass
|
|
45
|
-
*/
|
|
46
|
-
'houseNumber': string;
|
|
47
|
-
/**
|
|
48
|
-
* Additional address.
|
|
49
|
-
* @type {string}
|
|
50
|
-
* @memberof AddressClass
|
|
51
|
-
*/
|
|
52
|
-
'additionalAddress'?: string;
|
|
53
|
-
}
|
|
54
|
-
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* EMIL GdvService
|
|
5
|
-
* The EMIL GdvService API description
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0
|
|
8
|
-
* Contact: kontakt@emil.de
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
*
|
|
19
|
-
* @export
|
|
20
|
-
* @interface CreateMailboxRequestDto
|
|
21
|
-
*/
|
|
22
|
-
export interface CreateMailboxRequestDto {
|
|
23
|
-
/**
|
|
24
|
-
* Provider mailbox id.
|
|
25
|
-
* @type {string}
|
|
26
|
-
* @memberof CreateMailboxRequestDto
|
|
27
|
-
*/
|
|
28
|
-
'providerId': string;
|
|
29
|
-
/**
|
|
30
|
-
* Mailbox name.
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof CreateMailboxRequestDto
|
|
33
|
-
*/
|
|
34
|
-
'name': string;
|
|
35
|
-
/**
|
|
36
|
-
* Field to indicates whether the mailbox is set as the default.
|
|
37
|
-
* @type {boolean}
|
|
38
|
-
* @memberof CreateMailboxRequestDto
|
|
39
|
-
*/
|
|
40
|
-
'isDefault': boolean;
|
|
41
|
-
}
|
|
42
|
-
|
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* EMIL GdvService
|
|
5
|
-
* The EMIL GdvService API description
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0
|
|
8
|
-
* Contact: kontakt@emil.de
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
*
|
|
19
|
-
* @export
|
|
20
|
-
* @interface CreateUserRequestDto
|
|
21
|
-
*/
|
|
22
|
-
export interface CreateUserRequestDto {
|
|
23
|
-
/**
|
|
24
|
-
* User type
|
|
25
|
-
* @type {string}
|
|
26
|
-
* @memberof CreateUserRequestDto
|
|
27
|
-
*/
|
|
28
|
-
'type': CreateUserRequestDtoTypeEnum;
|
|
29
|
-
/**
|
|
30
|
-
* User insurer id
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof CreateUserRequestDto
|
|
33
|
-
*/
|
|
34
|
-
'insurerId': string;
|
|
35
|
-
/**
|
|
36
|
-
* User branch id
|
|
37
|
-
* @type {string}
|
|
38
|
-
* @memberof CreateUserRequestDto
|
|
39
|
-
*/
|
|
40
|
-
'branchId': string;
|
|
41
|
-
/**
|
|
42
|
-
* User agency number
|
|
43
|
-
* @type {string}
|
|
44
|
-
* @memberof CreateUserRequestDto
|
|
45
|
-
*/
|
|
46
|
-
'agencyNumber'?: string;
|
|
47
|
-
/**
|
|
48
|
-
* User internal agent number
|
|
49
|
-
* @type {string}
|
|
50
|
-
* @memberof CreateUserRequestDto
|
|
51
|
-
*/
|
|
52
|
-
'internalAgentNumber'?: string;
|
|
53
|
-
/**
|
|
54
|
-
* User communication partner id
|
|
55
|
-
* @type {string}
|
|
56
|
-
* @memberof CreateUserRequestDto
|
|
57
|
-
*/
|
|
58
|
-
'communicationPartnerId': string;
|
|
59
|
-
/**
|
|
60
|
-
* User company type
|
|
61
|
-
* @type {string}
|
|
62
|
-
* @memberof CreateUserRequestDto
|
|
63
|
-
*/
|
|
64
|
-
'companyType': string;
|
|
65
|
-
/**
|
|
66
|
-
* User mode: TEST/PRODUCTION. Use TU for test and PP for production.
|
|
67
|
-
* @type {string}
|
|
68
|
-
* @memberof CreateUserRequestDto
|
|
69
|
-
*/
|
|
70
|
-
'mode': CreateUserRequestDtoModeEnum;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
export const CreateUserRequestDtoTypeEnum = {
|
|
74
|
-
Vu: 'VU',
|
|
75
|
-
Vm: 'VM'
|
|
76
|
-
} as const;
|
|
77
|
-
|
|
78
|
-
export type CreateUserRequestDtoTypeEnum = typeof CreateUserRequestDtoTypeEnum[keyof typeof CreateUserRequestDtoTypeEnum];
|
|
79
|
-
export const CreateUserRequestDtoModeEnum = {
|
|
80
|
-
Tu: 'TU',
|
|
81
|
-
Pp: 'PP'
|
|
82
|
-
} as const;
|
|
83
|
-
|
|
84
|
-
export type CreateUserRequestDtoModeEnum = typeof CreateUserRequestDtoModeEnum[keyof typeof CreateUserRequestDtoModeEnum];
|
|
85
|
-
|
|
86
|
-
|