@emilgroup/accounting-sdk 1.19.0 → 1.20.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 +573 -0
- package/api/financial-transactions-api.ts +365 -0
- package/api/health-api.ts +7 -7
- package/api/number-ranges-api.ts +573 -0
- package/api/personal-accounts-api.ts +573 -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/financial-accounts-api.js +545 -0
- package/dist/api/financial-transactions-api.d.ts +215 -0
- package/dist/api/financial-transactions-api.js +360 -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 -251
- package/api/messages-api.ts +0 -1096
- package/api/users-api.ts +0 -492
- package/api/vbas-api.ts +0 -588
- package/api/vbus-api.ts +0 -697
- package/dist/api/mailbox-api.d.ts +0 -142
- package/dist/api/mailbox-api.js +0 -311
- package/dist/api/messages-api.d.ts +0 -632
- package/dist/api/messages-api.js +0 -912
- package/dist/api/users-api.d.ts +0 -275
- package/dist/api/users-api.js +0 -508
- 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
package/dist/api/vbus-api.d.ts
DELETED
|
@@ -1,395 +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 { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
|
-
import { Configuration } from '../configuration';
|
|
14
|
-
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
-
import { CreateVbuRequestDto } from '../models';
|
|
16
|
-
import { CreateVbuResponseClass } from '../models';
|
|
17
|
-
import { CreateVbuvRequestDto } from '../models';
|
|
18
|
-
import { CreateVbuvResponseClass } from '../models';
|
|
19
|
-
import { GetVbuResponseClass } from '../models';
|
|
20
|
-
import { ListVbusResponseClass } from '../models';
|
|
21
|
-
import { UpdateVbuRequestDto } from '../models';
|
|
22
|
-
import { UpdateVbuResponseClass } from '../models';
|
|
23
|
-
/**
|
|
24
|
-
* VbusApi - axios parameter creator
|
|
25
|
-
* @export
|
|
26
|
-
*/
|
|
27
|
-
export declare const VbusApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
28
|
-
/**
|
|
29
|
-
* This endpoint will create a vbu message. The call is asynchronous and will return a code to retrieve the vbu when it is ready. **Required Permissions** \"gdv-management.operations.create\"
|
|
30
|
-
* @summary Create the vbu
|
|
31
|
-
* @param {CreateVbuRequestDto} createVbuRequestDto
|
|
32
|
-
* @param {string} [authorization] Bearer Token
|
|
33
|
-
* @param {*} [options] Override http request option.
|
|
34
|
-
* @throws {RequiredError}
|
|
35
|
-
*/
|
|
36
|
-
createVbu: (createVbuRequestDto: CreateVbuRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
37
|
-
/**
|
|
38
|
-
* This endpoint will create a vbuv message. The call is asynchronous and will return a code to retrieve the vbu when it is ready. **Required Permissions** \"gdv-management.operations.create\"
|
|
39
|
-
* @summary Create the vbu
|
|
40
|
-
* @param {CreateVbuvRequestDto} createVbuvRequestDto
|
|
41
|
-
* @param {string} [authorization] Bearer Token
|
|
42
|
-
* @param {*} [options] Override http request option.
|
|
43
|
-
* @throws {RequiredError}
|
|
44
|
-
*/
|
|
45
|
-
createVbuv: (createVbuvRequestDto: CreateVbuvRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
46
|
-
/**
|
|
47
|
-
* Retrieves the details of the vbu that was previously created. Supply the unique vbu code that was returned when you created it and Emil Api will return the corresponding vbu information. **Required Permissions** \"gdv-management.operations.view\"
|
|
48
|
-
* @summary Retrieve the vbu
|
|
49
|
-
* @param {string} code Unique identifier for the object.
|
|
50
|
-
* @param {string} [authorization] Bearer Token
|
|
51
|
-
* @param {'responses'} [expand] You can expand policy in this endpoint. By default, versions will be an empty array.
|
|
52
|
-
* @param {*} [options] Override http request option.
|
|
53
|
-
* @throws {RequiredError}
|
|
54
|
-
*/
|
|
55
|
-
getVbu: (code: string, authorization?: string, expand?: 'responses', options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
56
|
-
/**
|
|
57
|
-
* Returns a list of vbus you have previously created. The vbus are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"gdv-management.operations.view\"
|
|
58
|
-
* @summary List vbus
|
|
59
|
-
* @param {string} [authorization] Bearer Token
|
|
60
|
-
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
61
|
-
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
62
|
-
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, leadCode, policyCode, customerName, status, transmissionStart, createdAt</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
63
|
-
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
64
|
-
* @param {string} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, transmissionStart, createdAt, updatedAt, status</i>
|
|
65
|
-
* @param {string} [expand] No expanding supported
|
|
66
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
67
|
-
* @param {*} [options] Override http request option.
|
|
68
|
-
* @throws {RequiredError}
|
|
69
|
-
*/
|
|
70
|
-
listVbus: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
71
|
-
/**
|
|
72
|
-
* Updates the specified vbu by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"gdv-management.operations.update\"
|
|
73
|
-
* @summary Update the vbu
|
|
74
|
-
* @param {string} code Unique identifier for the object.
|
|
75
|
-
* @param {UpdateVbuRequestDto} updateVbuRequestDto
|
|
76
|
-
* @param {string} [authorization] Bearer Token
|
|
77
|
-
* @param {*} [options] Override http request option.
|
|
78
|
-
* @throws {RequiredError}
|
|
79
|
-
*/
|
|
80
|
-
updateVbu: (code: string, updateVbuRequestDto: UpdateVbuRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
81
|
-
};
|
|
82
|
-
/**
|
|
83
|
-
* VbusApi - functional programming interface
|
|
84
|
-
* @export
|
|
85
|
-
*/
|
|
86
|
-
export declare const VbusApiFp: (configuration?: Configuration) => {
|
|
87
|
-
/**
|
|
88
|
-
* This endpoint will create a vbu message. The call is asynchronous and will return a code to retrieve the vbu when it is ready. **Required Permissions** \"gdv-management.operations.create\"
|
|
89
|
-
* @summary Create the vbu
|
|
90
|
-
* @param {CreateVbuRequestDto} createVbuRequestDto
|
|
91
|
-
* @param {string} [authorization] Bearer Token
|
|
92
|
-
* @param {*} [options] Override http request option.
|
|
93
|
-
* @throws {RequiredError}
|
|
94
|
-
*/
|
|
95
|
-
createVbu(createVbuRequestDto: CreateVbuRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateVbuResponseClass>>;
|
|
96
|
-
/**
|
|
97
|
-
* This endpoint will create a vbuv message. The call is asynchronous and will return a code to retrieve the vbu when it is ready. **Required Permissions** \"gdv-management.operations.create\"
|
|
98
|
-
* @summary Create the vbu
|
|
99
|
-
* @param {CreateVbuvRequestDto} createVbuvRequestDto
|
|
100
|
-
* @param {string} [authorization] Bearer Token
|
|
101
|
-
* @param {*} [options] Override http request option.
|
|
102
|
-
* @throws {RequiredError}
|
|
103
|
-
*/
|
|
104
|
-
createVbuv(createVbuvRequestDto: CreateVbuvRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateVbuvResponseClass>>;
|
|
105
|
-
/**
|
|
106
|
-
* Retrieves the details of the vbu that was previously created. Supply the unique vbu code that was returned when you created it and Emil Api will return the corresponding vbu information. **Required Permissions** \"gdv-management.operations.view\"
|
|
107
|
-
* @summary Retrieve the vbu
|
|
108
|
-
* @param {string} code Unique identifier for the object.
|
|
109
|
-
* @param {string} [authorization] Bearer Token
|
|
110
|
-
* @param {'responses'} [expand] You can expand policy in this endpoint. By default, versions will be an empty array.
|
|
111
|
-
* @param {*} [options] Override http request option.
|
|
112
|
-
* @throws {RequiredError}
|
|
113
|
-
*/
|
|
114
|
-
getVbu(code: string, authorization?: string, expand?: 'responses', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetVbuResponseClass>>;
|
|
115
|
-
/**
|
|
116
|
-
* Returns a list of vbus you have previously created. The vbus are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"gdv-management.operations.view\"
|
|
117
|
-
* @summary List vbus
|
|
118
|
-
* @param {string} [authorization] Bearer Token
|
|
119
|
-
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
120
|
-
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
121
|
-
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, leadCode, policyCode, customerName, status, transmissionStart, createdAt</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
122
|
-
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
123
|
-
* @param {string} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, transmissionStart, createdAt, updatedAt, status</i>
|
|
124
|
-
* @param {string} [expand] No expanding supported
|
|
125
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
126
|
-
* @param {*} [options] Override http request option.
|
|
127
|
-
* @throws {RequiredError}
|
|
128
|
-
*/
|
|
129
|
-
listVbus(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListVbusResponseClass>>;
|
|
130
|
-
/**
|
|
131
|
-
* Updates the specified vbu by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"gdv-management.operations.update\"
|
|
132
|
-
* @summary Update the vbu
|
|
133
|
-
* @param {string} code Unique identifier for the object.
|
|
134
|
-
* @param {UpdateVbuRequestDto} updateVbuRequestDto
|
|
135
|
-
* @param {string} [authorization] Bearer Token
|
|
136
|
-
* @param {*} [options] Override http request option.
|
|
137
|
-
* @throws {RequiredError}
|
|
138
|
-
*/
|
|
139
|
-
updateVbu(code: string, updateVbuRequestDto: UpdateVbuRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateVbuResponseClass>>;
|
|
140
|
-
};
|
|
141
|
-
/**
|
|
142
|
-
* VbusApi - factory interface
|
|
143
|
-
* @export
|
|
144
|
-
*/
|
|
145
|
-
export declare const VbusApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
146
|
-
/**
|
|
147
|
-
* This endpoint will create a vbu message. The call is asynchronous and will return a code to retrieve the vbu when it is ready. **Required Permissions** \"gdv-management.operations.create\"
|
|
148
|
-
* @summary Create the vbu
|
|
149
|
-
* @param {CreateVbuRequestDto} createVbuRequestDto
|
|
150
|
-
* @param {string} [authorization] Bearer Token
|
|
151
|
-
* @param {*} [options] Override http request option.
|
|
152
|
-
* @throws {RequiredError}
|
|
153
|
-
*/
|
|
154
|
-
createVbu(createVbuRequestDto: CreateVbuRequestDto, authorization?: string, options?: any): AxiosPromise<CreateVbuResponseClass>;
|
|
155
|
-
/**
|
|
156
|
-
* This endpoint will create a vbuv message. The call is asynchronous and will return a code to retrieve the vbu when it is ready. **Required Permissions** \"gdv-management.operations.create\"
|
|
157
|
-
* @summary Create the vbu
|
|
158
|
-
* @param {CreateVbuvRequestDto} createVbuvRequestDto
|
|
159
|
-
* @param {string} [authorization] Bearer Token
|
|
160
|
-
* @param {*} [options] Override http request option.
|
|
161
|
-
* @throws {RequiredError}
|
|
162
|
-
*/
|
|
163
|
-
createVbuv(createVbuvRequestDto: CreateVbuvRequestDto, authorization?: string, options?: any): AxiosPromise<CreateVbuvResponseClass>;
|
|
164
|
-
/**
|
|
165
|
-
* Retrieves the details of the vbu that was previously created. Supply the unique vbu code that was returned when you created it and Emil Api will return the corresponding vbu information. **Required Permissions** \"gdv-management.operations.view\"
|
|
166
|
-
* @summary Retrieve the vbu
|
|
167
|
-
* @param {string} code Unique identifier for the object.
|
|
168
|
-
* @param {string} [authorization] Bearer Token
|
|
169
|
-
* @param {'responses'} [expand] You can expand policy in this endpoint. By default, versions will be an empty array.
|
|
170
|
-
* @param {*} [options] Override http request option.
|
|
171
|
-
* @throws {RequiredError}
|
|
172
|
-
*/
|
|
173
|
-
getVbu(code: string, authorization?: string, expand?: 'responses', options?: any): AxiosPromise<GetVbuResponseClass>;
|
|
174
|
-
/**
|
|
175
|
-
* Returns a list of vbus you have previously created. The vbus are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"gdv-management.operations.view\"
|
|
176
|
-
* @summary List vbus
|
|
177
|
-
* @param {string} [authorization] Bearer Token
|
|
178
|
-
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
179
|
-
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
180
|
-
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, leadCode, policyCode, customerName, status, transmissionStart, createdAt</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
181
|
-
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
182
|
-
* @param {string} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, transmissionStart, createdAt, updatedAt, status</i>
|
|
183
|
-
* @param {string} [expand] No expanding supported
|
|
184
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
185
|
-
* @param {*} [options] Override http request option.
|
|
186
|
-
* @throws {RequiredError}
|
|
187
|
-
*/
|
|
188
|
-
listVbus(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListVbusResponseClass>;
|
|
189
|
-
/**
|
|
190
|
-
* Updates the specified vbu by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"gdv-management.operations.update\"
|
|
191
|
-
* @summary Update the vbu
|
|
192
|
-
* @param {string} code Unique identifier for the object.
|
|
193
|
-
* @param {UpdateVbuRequestDto} updateVbuRequestDto
|
|
194
|
-
* @param {string} [authorization] Bearer Token
|
|
195
|
-
* @param {*} [options] Override http request option.
|
|
196
|
-
* @throws {RequiredError}
|
|
197
|
-
*/
|
|
198
|
-
updateVbu(code: string, updateVbuRequestDto: UpdateVbuRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateVbuResponseClass>;
|
|
199
|
-
};
|
|
200
|
-
/**
|
|
201
|
-
* Request parameters for createVbu operation in VbusApi.
|
|
202
|
-
* @export
|
|
203
|
-
* @interface VbusApiCreateVbuRequest
|
|
204
|
-
*/
|
|
205
|
-
export interface VbusApiCreateVbuRequest {
|
|
206
|
-
/**
|
|
207
|
-
*
|
|
208
|
-
* @type {CreateVbuRequestDto}
|
|
209
|
-
* @memberof VbusApiCreateVbu
|
|
210
|
-
*/
|
|
211
|
-
readonly createVbuRequestDto: CreateVbuRequestDto;
|
|
212
|
-
/**
|
|
213
|
-
* Bearer Token
|
|
214
|
-
* @type {string}
|
|
215
|
-
* @memberof VbusApiCreateVbu
|
|
216
|
-
*/
|
|
217
|
-
readonly authorization?: string;
|
|
218
|
-
}
|
|
219
|
-
/**
|
|
220
|
-
* Request parameters for createVbuv operation in VbusApi.
|
|
221
|
-
* @export
|
|
222
|
-
* @interface VbusApiCreateVbuvRequest
|
|
223
|
-
*/
|
|
224
|
-
export interface VbusApiCreateVbuvRequest {
|
|
225
|
-
/**
|
|
226
|
-
*
|
|
227
|
-
* @type {CreateVbuvRequestDto}
|
|
228
|
-
* @memberof VbusApiCreateVbuv
|
|
229
|
-
*/
|
|
230
|
-
readonly createVbuvRequestDto: CreateVbuvRequestDto;
|
|
231
|
-
/**
|
|
232
|
-
* Bearer Token
|
|
233
|
-
* @type {string}
|
|
234
|
-
* @memberof VbusApiCreateVbuv
|
|
235
|
-
*/
|
|
236
|
-
readonly authorization?: string;
|
|
237
|
-
}
|
|
238
|
-
/**
|
|
239
|
-
* Request parameters for getVbu operation in VbusApi.
|
|
240
|
-
* @export
|
|
241
|
-
* @interface VbusApiGetVbuRequest
|
|
242
|
-
*/
|
|
243
|
-
export interface VbusApiGetVbuRequest {
|
|
244
|
-
/**
|
|
245
|
-
* Unique identifier for the object.
|
|
246
|
-
* @type {string}
|
|
247
|
-
* @memberof VbusApiGetVbu
|
|
248
|
-
*/
|
|
249
|
-
readonly code: string;
|
|
250
|
-
/**
|
|
251
|
-
* Bearer Token
|
|
252
|
-
* @type {string}
|
|
253
|
-
* @memberof VbusApiGetVbu
|
|
254
|
-
*/
|
|
255
|
-
readonly authorization?: string;
|
|
256
|
-
/**
|
|
257
|
-
* You can expand policy in this endpoint. By default, versions will be an empty array.
|
|
258
|
-
* @type {'responses'}
|
|
259
|
-
* @memberof VbusApiGetVbu
|
|
260
|
-
*/
|
|
261
|
-
readonly expand?: 'responses';
|
|
262
|
-
}
|
|
263
|
-
/**
|
|
264
|
-
* Request parameters for listVbus operation in VbusApi.
|
|
265
|
-
* @export
|
|
266
|
-
* @interface VbusApiListVbusRequest
|
|
267
|
-
*/
|
|
268
|
-
export interface VbusApiListVbusRequest {
|
|
269
|
-
/**
|
|
270
|
-
* Bearer Token
|
|
271
|
-
* @type {string}
|
|
272
|
-
* @memberof VbusApiListVbus
|
|
273
|
-
*/
|
|
274
|
-
readonly authorization?: string;
|
|
275
|
-
/**
|
|
276
|
-
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
277
|
-
* @type {number}
|
|
278
|
-
* @memberof VbusApiListVbus
|
|
279
|
-
*/
|
|
280
|
-
readonly pageSize?: number;
|
|
281
|
-
/**
|
|
282
|
-
* A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
283
|
-
* @type {string}
|
|
284
|
-
* @memberof VbusApiListVbus
|
|
285
|
-
*/
|
|
286
|
-
readonly pageToken?: string;
|
|
287
|
-
/**
|
|
288
|
-
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, leadCode, policyCode, customerName, status, transmissionStart, createdAt</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
289
|
-
* @type {string}
|
|
290
|
-
* @memberof VbusApiListVbus
|
|
291
|
-
*/
|
|
292
|
-
readonly filter?: string;
|
|
293
|
-
/**
|
|
294
|
-
* To search the list by any field, pass search=xxx to fetch the result.
|
|
295
|
-
* @type {string}
|
|
296
|
-
* @memberof VbusApiListVbus
|
|
297
|
-
*/
|
|
298
|
-
readonly search?: string;
|
|
299
|
-
/**
|
|
300
|
-
* Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, transmissionStart, createdAt, updatedAt, status</i>
|
|
301
|
-
* @type {string}
|
|
302
|
-
* @memberof VbusApiListVbus
|
|
303
|
-
*/
|
|
304
|
-
readonly order?: string;
|
|
305
|
-
/**
|
|
306
|
-
* No expanding supported
|
|
307
|
-
* @type {string}
|
|
308
|
-
* @memberof VbusApiListVbus
|
|
309
|
-
*/
|
|
310
|
-
readonly expand?: string;
|
|
311
|
-
/**
|
|
312
|
-
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
313
|
-
* @type {string}
|
|
314
|
-
* @memberof VbusApiListVbus
|
|
315
|
-
*/
|
|
316
|
-
readonly filters?: string;
|
|
317
|
-
}
|
|
318
|
-
/**
|
|
319
|
-
* Request parameters for updateVbu operation in VbusApi.
|
|
320
|
-
* @export
|
|
321
|
-
* @interface VbusApiUpdateVbuRequest
|
|
322
|
-
*/
|
|
323
|
-
export interface VbusApiUpdateVbuRequest {
|
|
324
|
-
/**
|
|
325
|
-
* Unique identifier for the object.
|
|
326
|
-
* @type {string}
|
|
327
|
-
* @memberof VbusApiUpdateVbu
|
|
328
|
-
*/
|
|
329
|
-
readonly code: string;
|
|
330
|
-
/**
|
|
331
|
-
*
|
|
332
|
-
* @type {UpdateVbuRequestDto}
|
|
333
|
-
* @memberof VbusApiUpdateVbu
|
|
334
|
-
*/
|
|
335
|
-
readonly updateVbuRequestDto: UpdateVbuRequestDto;
|
|
336
|
-
/**
|
|
337
|
-
* Bearer Token
|
|
338
|
-
* @type {string}
|
|
339
|
-
* @memberof VbusApiUpdateVbu
|
|
340
|
-
*/
|
|
341
|
-
readonly authorization?: string;
|
|
342
|
-
}
|
|
343
|
-
/**
|
|
344
|
-
* VbusApi - object-oriented interface
|
|
345
|
-
* @export
|
|
346
|
-
* @class VbusApi
|
|
347
|
-
* @extends {BaseAPI}
|
|
348
|
-
*/
|
|
349
|
-
export declare class VbusApi extends BaseAPI {
|
|
350
|
-
/**
|
|
351
|
-
* This endpoint will create a vbu message. The call is asynchronous and will return a code to retrieve the vbu when it is ready. **Required Permissions** \"gdv-management.operations.create\"
|
|
352
|
-
* @summary Create the vbu
|
|
353
|
-
* @param {VbusApiCreateVbuRequest} requestParameters Request parameters.
|
|
354
|
-
* @param {*} [options] Override http request option.
|
|
355
|
-
* @throws {RequiredError}
|
|
356
|
-
* @memberof VbusApi
|
|
357
|
-
*/
|
|
358
|
-
createVbu(requestParameters: VbusApiCreateVbuRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateVbuResponseClass, any>>;
|
|
359
|
-
/**
|
|
360
|
-
* This endpoint will create a vbuv message. The call is asynchronous and will return a code to retrieve the vbu when it is ready. **Required Permissions** \"gdv-management.operations.create\"
|
|
361
|
-
* @summary Create the vbu
|
|
362
|
-
* @param {VbusApiCreateVbuvRequest} requestParameters Request parameters.
|
|
363
|
-
* @param {*} [options] Override http request option.
|
|
364
|
-
* @throws {RequiredError}
|
|
365
|
-
* @memberof VbusApi
|
|
366
|
-
*/
|
|
367
|
-
createVbuv(requestParameters: VbusApiCreateVbuvRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateVbuvResponseClass, any>>;
|
|
368
|
-
/**
|
|
369
|
-
* Retrieves the details of the vbu that was previously created. Supply the unique vbu code that was returned when you created it and Emil Api will return the corresponding vbu information. **Required Permissions** \"gdv-management.operations.view\"
|
|
370
|
-
* @summary Retrieve the vbu
|
|
371
|
-
* @param {VbusApiGetVbuRequest} requestParameters Request parameters.
|
|
372
|
-
* @param {*} [options] Override http request option.
|
|
373
|
-
* @throws {RequiredError}
|
|
374
|
-
* @memberof VbusApi
|
|
375
|
-
*/
|
|
376
|
-
getVbu(requestParameters: VbusApiGetVbuRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetVbuResponseClass, any>>;
|
|
377
|
-
/**
|
|
378
|
-
* Returns a list of vbus you have previously created. The vbus are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"gdv-management.operations.view\"
|
|
379
|
-
* @summary List vbus
|
|
380
|
-
* @param {VbusApiListVbusRequest} requestParameters Request parameters.
|
|
381
|
-
* @param {*} [options] Override http request option.
|
|
382
|
-
* @throws {RequiredError}
|
|
383
|
-
* @memberof VbusApi
|
|
384
|
-
*/
|
|
385
|
-
listVbus(requestParameters?: VbusApiListVbusRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListVbusResponseClass, any>>;
|
|
386
|
-
/**
|
|
387
|
-
* Updates the specified vbu by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"gdv-management.operations.update\"
|
|
388
|
-
* @summary Update the vbu
|
|
389
|
-
* @param {VbusApiUpdateVbuRequest} requestParameters Request parameters.
|
|
390
|
-
* @param {*} [options] Override http request option.
|
|
391
|
-
* @throws {RequiredError}
|
|
392
|
-
* @memberof VbusApi
|
|
393
|
-
*/
|
|
394
|
-
updateVbu(requestParameters: VbusApiUpdateVbuRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateVbuResponseClass, any>>;
|
|
395
|
-
}
|
|
@@ -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 AddressClass
|
|
16
|
-
*/
|
|
17
|
-
export interface AddressClass {
|
|
18
|
-
/**
|
|
19
|
-
* Zip code.
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof AddressClass
|
|
22
|
-
*/
|
|
23
|
-
'zipCode': string;
|
|
24
|
-
/**
|
|
25
|
-
* Name of the city.
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof AddressClass
|
|
28
|
-
*/
|
|
29
|
-
'city': string;
|
|
30
|
-
/**
|
|
31
|
-
* Name of the street.
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof AddressClass
|
|
34
|
-
*/
|
|
35
|
-
'street': string;
|
|
36
|
-
/**
|
|
37
|
-
* House number.
|
|
38
|
-
* @type {string}
|
|
39
|
-
* @memberof AddressClass
|
|
40
|
-
*/
|
|
41
|
-
'houseNumber': string;
|
|
42
|
-
/**
|
|
43
|
-
* Additional address.
|
|
44
|
-
* @type {string}
|
|
45
|
-
* @memberof AddressClass
|
|
46
|
-
*/
|
|
47
|
-
'additionalAddress'?: string;
|
|
48
|
-
}
|
|
@@ -1,36 +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 CreateMailboxRequestDto
|
|
16
|
-
*/
|
|
17
|
-
export interface CreateMailboxRequestDto {
|
|
18
|
-
/**
|
|
19
|
-
* Provider mailbox id.
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof CreateMailboxRequestDto
|
|
22
|
-
*/
|
|
23
|
-
'providerId': string;
|
|
24
|
-
/**
|
|
25
|
-
* Mailbox name.
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof CreateMailboxRequestDto
|
|
28
|
-
*/
|
|
29
|
-
'name': string;
|
|
30
|
-
/**
|
|
31
|
-
* Field to indicates whether the mailbox is set as the default.
|
|
32
|
-
* @type {boolean}
|
|
33
|
-
* @memberof CreateMailboxRequestDto
|
|
34
|
-
*/
|
|
35
|
-
'isDefault': boolean;
|
|
36
|
-
}
|
|
@@ -1,76 +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 CreateUserRequestDto
|
|
16
|
-
*/
|
|
17
|
-
export interface CreateUserRequestDto {
|
|
18
|
-
/**
|
|
19
|
-
* User type
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof CreateUserRequestDto
|
|
22
|
-
*/
|
|
23
|
-
'type': CreateUserRequestDtoTypeEnum;
|
|
24
|
-
/**
|
|
25
|
-
* User insurer id
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof CreateUserRequestDto
|
|
28
|
-
*/
|
|
29
|
-
'insurerId': string;
|
|
30
|
-
/**
|
|
31
|
-
* User branch id
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof CreateUserRequestDto
|
|
34
|
-
*/
|
|
35
|
-
'branchId': string;
|
|
36
|
-
/**
|
|
37
|
-
* User agency number
|
|
38
|
-
* @type {string}
|
|
39
|
-
* @memberof CreateUserRequestDto
|
|
40
|
-
*/
|
|
41
|
-
'agencyNumber'?: string;
|
|
42
|
-
/**
|
|
43
|
-
* User internal agent number
|
|
44
|
-
* @type {string}
|
|
45
|
-
* @memberof CreateUserRequestDto
|
|
46
|
-
*/
|
|
47
|
-
'internalAgentNumber'?: string;
|
|
48
|
-
/**
|
|
49
|
-
* User communication partner id
|
|
50
|
-
* @type {string}
|
|
51
|
-
* @memberof CreateUserRequestDto
|
|
52
|
-
*/
|
|
53
|
-
'communicationPartnerId': string;
|
|
54
|
-
/**
|
|
55
|
-
* User company type
|
|
56
|
-
* @type {string}
|
|
57
|
-
* @memberof CreateUserRequestDto
|
|
58
|
-
*/
|
|
59
|
-
'companyType': string;
|
|
60
|
-
/**
|
|
61
|
-
* User mode: TEST/PRODUCTION. Use TU for test and PP for production.
|
|
62
|
-
* @type {string}
|
|
63
|
-
* @memberof CreateUserRequestDto
|
|
64
|
-
*/
|
|
65
|
-
'mode': CreateUserRequestDtoModeEnum;
|
|
66
|
-
}
|
|
67
|
-
export declare const CreateUserRequestDtoTypeEnum: {
|
|
68
|
-
readonly Vu: "VU";
|
|
69
|
-
readonly Vm: "VM";
|
|
70
|
-
};
|
|
71
|
-
export type CreateUserRequestDtoTypeEnum = typeof CreateUserRequestDtoTypeEnum[keyof typeof CreateUserRequestDtoTypeEnum];
|
|
72
|
-
export declare const CreateUserRequestDtoModeEnum: {
|
|
73
|
-
readonly Tu: "TU";
|
|
74
|
-
readonly Pp: "PP";
|
|
75
|
-
};
|
|
76
|
-
export type CreateUserRequestDtoModeEnum = typeof CreateUserRequestDtoModeEnum[keyof typeof CreateUserRequestDtoModeEnum];
|
|
@@ -1,25 +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 { UserClass } from './user-class';
|
|
13
|
-
/**
|
|
14
|
-
*
|
|
15
|
-
* @export
|
|
16
|
-
* @interface CreateUserResponseClass
|
|
17
|
-
*/
|
|
18
|
-
export interface CreateUserResponseClass {
|
|
19
|
-
/**
|
|
20
|
-
* user
|
|
21
|
-
* @type {UserClass}
|
|
22
|
-
* @memberof CreateUserResponseClass
|
|
23
|
-
*/
|
|
24
|
-
'user': UserClass;
|
|
25
|
-
}
|
|
@@ -1,41 +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 CreateVbaRequestDto
|
|
16
|
-
*/
|
|
17
|
-
export interface CreateVbaRequestDto {
|
|
18
|
-
/**
|
|
19
|
-
* Entity type.
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof CreateVbaRequestDto
|
|
22
|
-
*/
|
|
23
|
-
'entityType': CreateVbaRequestDtoEntityTypeEnum;
|
|
24
|
-
/**
|
|
25
|
-
* Optional field to assign a VBA to a lead.
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof CreateVbaRequestDto
|
|
28
|
-
*/
|
|
29
|
-
'leadCode'?: string;
|
|
30
|
-
/**
|
|
31
|
-
* Optional field to assign a VBA to a policy.
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof CreateVbaRequestDto
|
|
34
|
-
*/
|
|
35
|
-
'policyCode'?: string;
|
|
36
|
-
}
|
|
37
|
-
export declare const CreateVbaRequestDtoEntityTypeEnum: {
|
|
38
|
-
readonly Lead: "lead";
|
|
39
|
-
readonly Policy: "policy";
|
|
40
|
-
};
|
|
41
|
-
export type CreateVbaRequestDtoEntityTypeEnum = typeof CreateVbaRequestDtoEntityTypeEnum[keyof typeof CreateVbaRequestDtoEntityTypeEnum];
|
|
@@ -1,24 +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 CreateVbaResponseClass
|
|
16
|
-
*/
|
|
17
|
-
export interface CreateVbaResponseClass {
|
|
18
|
-
/**
|
|
19
|
-
* Unique identifier for the object.
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof CreateVbaResponseClass
|
|
22
|
-
*/
|
|
23
|
-
'code': string;
|
|
24
|
-
}
|