@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
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
|
-
* EMIL
|
|
6
|
-
* The EMIL
|
|
5
|
+
* EMIL AccountingService
|
|
6
|
+
* The EMIL AccountingService API description
|
|
7
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
9
|
* Contact: kontakt@emil.de
|
|
@@ -78,7 +78,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
78
78
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
79
79
|
};
|
|
80
80
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
81
|
-
exports.
|
|
81
|
+
exports.BookingEntriesApi = exports.BookingEntriesApiFactory = exports.BookingEntriesApiFp = exports.BookingEntriesApiAxiosParamCreator = void 0;
|
|
82
82
|
var axios_1 = __importDefault(require("axios"));
|
|
83
83
|
// Some imports not used depending on template conditions
|
|
84
84
|
// @ts-ignore
|
|
@@ -86,37 +86,36 @@ var common_1 = require("../common");
|
|
|
86
86
|
// @ts-ignore
|
|
87
87
|
var base_1 = require("../base");
|
|
88
88
|
/**
|
|
89
|
-
*
|
|
89
|
+
* BookingEntriesApi - axios parameter creator
|
|
90
90
|
* @export
|
|
91
91
|
*/
|
|
92
|
-
var
|
|
92
|
+
var BookingEntriesApiAxiosParamCreator = function (configuration) {
|
|
93
93
|
var _this = this;
|
|
94
94
|
return {
|
|
95
95
|
/**
|
|
96
|
-
*
|
|
97
|
-
* @summary
|
|
98
|
-
* @param {
|
|
99
|
-
* @param {string} [authorization] Bearer Token
|
|
96
|
+
* This endpoint creates a new booking entry. **Required Permissions** \"accounting-management.accounts.create\"
|
|
97
|
+
* @summary Create the booking entry
|
|
98
|
+
* @param {CreateBookingEntryRequestDto} createBookingEntryRequestDto
|
|
99
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
100
100
|
* @param {*} [options] Override http request option.
|
|
101
101
|
* @throws {RequiredError}
|
|
102
102
|
*/
|
|
103
|
-
|
|
103
|
+
createBookingEntry: function (createBookingEntryRequestDto, authorization, options) {
|
|
104
104
|
if (options === void 0) { options = {}; }
|
|
105
105
|
return __awaiter(_this, void 0, void 0, function () {
|
|
106
106
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
107
107
|
return __generator(this, function (_a) {
|
|
108
108
|
switch (_a.label) {
|
|
109
109
|
case 0:
|
|
110
|
-
// verify required parameter '
|
|
111
|
-
(0, common_1.assertParamExists)('
|
|
112
|
-
localVarPath = "/
|
|
113
|
-
.replace("{".concat("code", "}"), encodeURIComponent(String(code)));
|
|
110
|
+
// verify required parameter 'createBookingEntryRequestDto' is not null or undefined
|
|
111
|
+
(0, common_1.assertParamExists)('createBookingEntry', 'createBookingEntryRequestDto', createBookingEntryRequestDto);
|
|
112
|
+
localVarPath = "/accountingservice/v1/booking-entries";
|
|
114
113
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
115
114
|
if (configuration) {
|
|
116
115
|
baseOptions = configuration.baseOptions;
|
|
117
116
|
baseAccessToken = configuration.accessToken;
|
|
118
117
|
}
|
|
119
|
-
localVarRequestOptions = __assign(__assign({ method: '
|
|
118
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
120
119
|
localVarHeaderParameter = {};
|
|
121
120
|
localVarQueryParameter = {};
|
|
122
121
|
// authentication bearer required
|
|
@@ -129,9 +128,11 @@ var ZipCodesApiAxiosParamCreator = function (configuration) {
|
|
|
129
128
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
130
129
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
131
130
|
}
|
|
131
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
132
132
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
133
133
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
134
134
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
135
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createBookingEntryRequestDto, localVarRequestOptions, configuration);
|
|
135
136
|
return [2 /*return*/, {
|
|
136
137
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
137
138
|
options: localVarRequestOptions,
|
|
@@ -141,27 +142,27 @@ var ZipCodesApiAxiosParamCreator = function (configuration) {
|
|
|
141
142
|
});
|
|
142
143
|
},
|
|
143
144
|
/**
|
|
144
|
-
*
|
|
145
|
-
* @summary
|
|
146
|
-
* @param {string}
|
|
147
|
-
* @param {
|
|
148
|
-
* @param {string} [
|
|
149
|
-
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
150
|
-
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
151
|
-
* @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
152
|
-
* @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
153
|
-
* @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.
|
|
145
|
+
* This endpoint gets a booking entry. **Required Permissions** \"accounting-management.accounts.view\"
|
|
146
|
+
* @summary Retrieve the booking entry
|
|
147
|
+
* @param {string} code
|
|
148
|
+
* @param {string} expand
|
|
149
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
154
150
|
* @param {*} [options] Override http request option.
|
|
155
151
|
* @throws {RequiredError}
|
|
156
152
|
*/
|
|
157
|
-
|
|
153
|
+
getBookingEntry: function (code, expand, authorization, options) {
|
|
158
154
|
if (options === void 0) { options = {}; }
|
|
159
155
|
return __awaiter(_this, void 0, void 0, function () {
|
|
160
156
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
161
157
|
return __generator(this, function (_a) {
|
|
162
158
|
switch (_a.label) {
|
|
163
159
|
case 0:
|
|
164
|
-
|
|
160
|
+
// verify required parameter 'code' is not null or undefined
|
|
161
|
+
(0, common_1.assertParamExists)('getBookingEntry', 'code', code);
|
|
162
|
+
// verify required parameter 'expand' is not null or undefined
|
|
163
|
+
(0, common_1.assertParamExists)('getBookingEntry', 'expand', expand);
|
|
164
|
+
localVarPath = "/accountingservice/v1/booking-entries/{code}"
|
|
165
|
+
.replace("{".concat("code", "}"), encodeURIComponent(String(code)));
|
|
165
166
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
166
167
|
if (configuration) {
|
|
167
168
|
baseOptions = configuration.baseOptions;
|
|
@@ -177,27 +178,9 @@ var ZipCodesApiAxiosParamCreator = function (configuration) {
|
|
|
177
178
|
// authentication bearer required
|
|
178
179
|
// http bearer authentication required
|
|
179
180
|
_a.sent();
|
|
180
|
-
if (pageSize !== undefined) {
|
|
181
|
-
localVarQueryParameter['pageSize'] = pageSize;
|
|
182
|
-
}
|
|
183
|
-
if (pageToken !== undefined) {
|
|
184
|
-
localVarQueryParameter['pageToken'] = pageToken;
|
|
185
|
-
}
|
|
186
|
-
if (filter !== undefined) {
|
|
187
|
-
localVarQueryParameter['filter'] = filter;
|
|
188
|
-
}
|
|
189
|
-
if (search !== undefined) {
|
|
190
|
-
localVarQueryParameter['search'] = search;
|
|
191
|
-
}
|
|
192
|
-
if (order !== undefined) {
|
|
193
|
-
localVarQueryParameter['order'] = order;
|
|
194
|
-
}
|
|
195
181
|
if (expand !== undefined) {
|
|
196
182
|
localVarQueryParameter['expand'] = expand;
|
|
197
183
|
}
|
|
198
|
-
if (filters !== undefined) {
|
|
199
|
-
localVarQueryParameter['filters'] = filters;
|
|
200
|
-
}
|
|
201
184
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
202
185
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
203
186
|
}
|
|
@@ -213,26 +196,33 @@ var ZipCodesApiAxiosParamCreator = function (configuration) {
|
|
|
213
196
|
});
|
|
214
197
|
},
|
|
215
198
|
/**
|
|
216
|
-
*
|
|
217
|
-
* @summary
|
|
218
|
-
* @param {string} [authorization] Bearer Token
|
|
199
|
+
* This endpoint gets booking entries. **Required Permissions** \"accounting-management.accounts.view\"
|
|
200
|
+
* @summary List booking entries
|
|
201
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
202
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
203
|
+
* @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.
|
|
204
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
205
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
206
|
+
* @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
207
|
+
* @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
208
|
+
* @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.
|
|
219
209
|
* @param {*} [options] Override http request option.
|
|
220
210
|
* @throws {RequiredError}
|
|
221
211
|
*/
|
|
222
|
-
|
|
212
|
+
listBookingEntries: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
223
213
|
if (options === void 0) { options = {}; }
|
|
224
214
|
return __awaiter(_this, void 0, void 0, function () {
|
|
225
215
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
226
216
|
return __generator(this, function (_a) {
|
|
227
217
|
switch (_a.label) {
|
|
228
218
|
case 0:
|
|
229
|
-
localVarPath = "/
|
|
219
|
+
localVarPath = "/accountingservice/v1/booking-entries";
|
|
230
220
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
231
221
|
if (configuration) {
|
|
232
222
|
baseOptions = configuration.baseOptions;
|
|
233
223
|
baseAccessToken = configuration.accessToken;
|
|
234
224
|
}
|
|
235
|
-
localVarRequestOptions = __assign(__assign({ method: '
|
|
225
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
236
226
|
localVarHeaderParameter = {};
|
|
237
227
|
localVarQueryParameter = {};
|
|
238
228
|
// authentication bearer required
|
|
@@ -242,6 +232,27 @@ var ZipCodesApiAxiosParamCreator = function (configuration) {
|
|
|
242
232
|
// authentication bearer required
|
|
243
233
|
// http bearer authentication required
|
|
244
234
|
_a.sent();
|
|
235
|
+
if (pageSize !== undefined) {
|
|
236
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
237
|
+
}
|
|
238
|
+
if (pageToken !== undefined) {
|
|
239
|
+
localVarQueryParameter['pageToken'] = pageToken;
|
|
240
|
+
}
|
|
241
|
+
if (filter !== undefined) {
|
|
242
|
+
localVarQueryParameter['filter'] = filter;
|
|
243
|
+
}
|
|
244
|
+
if (search !== undefined) {
|
|
245
|
+
localVarQueryParameter['search'] = search;
|
|
246
|
+
}
|
|
247
|
+
if (order !== undefined) {
|
|
248
|
+
localVarQueryParameter['order'] = order;
|
|
249
|
+
}
|
|
250
|
+
if (expand !== undefined) {
|
|
251
|
+
localVarQueryParameter['expand'] = expand;
|
|
252
|
+
}
|
|
253
|
+
if (filters !== undefined) {
|
|
254
|
+
localVarQueryParameter['filters'] = filters;
|
|
255
|
+
}
|
|
245
256
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
246
257
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
247
258
|
}
|
|
@@ -258,28 +269,28 @@ var ZipCodesApiAxiosParamCreator = function (configuration) {
|
|
|
258
269
|
},
|
|
259
270
|
};
|
|
260
271
|
};
|
|
261
|
-
exports.
|
|
272
|
+
exports.BookingEntriesApiAxiosParamCreator = BookingEntriesApiAxiosParamCreator;
|
|
262
273
|
/**
|
|
263
|
-
*
|
|
274
|
+
* BookingEntriesApi - functional programming interface
|
|
264
275
|
* @export
|
|
265
276
|
*/
|
|
266
|
-
var
|
|
267
|
-
var localVarAxiosParamCreator = (0, exports.
|
|
277
|
+
var BookingEntriesApiFp = function (configuration) {
|
|
278
|
+
var localVarAxiosParamCreator = (0, exports.BookingEntriesApiAxiosParamCreator)(configuration);
|
|
268
279
|
return {
|
|
269
280
|
/**
|
|
270
|
-
*
|
|
271
|
-
* @summary
|
|
272
|
-
* @param {
|
|
273
|
-
* @param {string} [authorization] Bearer Token
|
|
281
|
+
* This endpoint creates a new booking entry. **Required Permissions** \"accounting-management.accounts.create\"
|
|
282
|
+
* @summary Create the booking entry
|
|
283
|
+
* @param {CreateBookingEntryRequestDto} createBookingEntryRequestDto
|
|
284
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
274
285
|
* @param {*} [options] Override http request option.
|
|
275
286
|
* @throws {RequiredError}
|
|
276
287
|
*/
|
|
277
|
-
|
|
288
|
+
createBookingEntry: function (createBookingEntryRequestDto, authorization, options) {
|
|
278
289
|
return __awaiter(this, void 0, void 0, function () {
|
|
279
290
|
var localVarAxiosArgs;
|
|
280
291
|
return __generator(this, function (_a) {
|
|
281
292
|
switch (_a.label) {
|
|
282
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.
|
|
293
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.createBookingEntry(createBookingEntryRequestDto, authorization, options)];
|
|
283
294
|
case 1:
|
|
284
295
|
localVarAxiosArgs = _a.sent();
|
|
285
296
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -288,25 +299,20 @@ var ZipCodesApiFp = function (configuration) {
|
|
|
288
299
|
});
|
|
289
300
|
},
|
|
290
301
|
/**
|
|
291
|
-
*
|
|
292
|
-
* @summary
|
|
293
|
-
* @param {string}
|
|
294
|
-
* @param {
|
|
295
|
-
* @param {string} [
|
|
296
|
-
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
297
|
-
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
298
|
-
* @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
299
|
-
* @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
300
|
-
* @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.
|
|
302
|
+
* This endpoint gets a booking entry. **Required Permissions** \"accounting-management.accounts.view\"
|
|
303
|
+
* @summary Retrieve the booking entry
|
|
304
|
+
* @param {string} code
|
|
305
|
+
* @param {string} expand
|
|
306
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
301
307
|
* @param {*} [options] Override http request option.
|
|
302
308
|
* @throws {RequiredError}
|
|
303
309
|
*/
|
|
304
|
-
|
|
310
|
+
getBookingEntry: function (code, expand, authorization, options) {
|
|
305
311
|
return __awaiter(this, void 0, void 0, function () {
|
|
306
312
|
var localVarAxiosArgs;
|
|
307
313
|
return __generator(this, function (_a) {
|
|
308
314
|
switch (_a.label) {
|
|
309
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.
|
|
315
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.getBookingEntry(code, expand, authorization, options)];
|
|
310
316
|
case 1:
|
|
311
317
|
localVarAxiosArgs = _a.sent();
|
|
312
318
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -315,18 +321,25 @@ var ZipCodesApiFp = function (configuration) {
|
|
|
315
321
|
});
|
|
316
322
|
},
|
|
317
323
|
/**
|
|
318
|
-
*
|
|
319
|
-
* @summary
|
|
320
|
-
* @param {string} [authorization] Bearer Token
|
|
324
|
+
* This endpoint gets booking entries. **Required Permissions** \"accounting-management.accounts.view\"
|
|
325
|
+
* @summary List booking entries
|
|
326
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
327
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
328
|
+
* @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.
|
|
329
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
330
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
331
|
+
* @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
332
|
+
* @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
333
|
+
* @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.
|
|
321
334
|
* @param {*} [options] Override http request option.
|
|
322
335
|
* @throws {RequiredError}
|
|
323
336
|
*/
|
|
324
|
-
|
|
337
|
+
listBookingEntries: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
325
338
|
return __awaiter(this, void 0, void 0, function () {
|
|
326
339
|
var localVarAxiosArgs;
|
|
327
340
|
return __generator(this, function (_a) {
|
|
328
341
|
switch (_a.label) {
|
|
329
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.
|
|
342
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listBookingEntries(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
|
|
330
343
|
case 1:
|
|
331
344
|
localVarAxiosArgs = _a.sent();
|
|
332
345
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -336,29 +349,41 @@ var ZipCodesApiFp = function (configuration) {
|
|
|
336
349
|
},
|
|
337
350
|
};
|
|
338
351
|
};
|
|
339
|
-
exports.
|
|
352
|
+
exports.BookingEntriesApiFp = BookingEntriesApiFp;
|
|
340
353
|
/**
|
|
341
|
-
*
|
|
354
|
+
* BookingEntriesApi - factory interface
|
|
342
355
|
* @export
|
|
343
356
|
*/
|
|
344
|
-
var
|
|
345
|
-
var localVarFp = (0, exports.
|
|
357
|
+
var BookingEntriesApiFactory = function (configuration, basePath, axios) {
|
|
358
|
+
var localVarFp = (0, exports.BookingEntriesApiFp)(configuration);
|
|
346
359
|
return {
|
|
347
360
|
/**
|
|
348
|
-
*
|
|
349
|
-
* @summary
|
|
350
|
-
* @param {
|
|
351
|
-
* @param {string} [authorization] Bearer Token
|
|
361
|
+
* This endpoint creates a new booking entry. **Required Permissions** \"accounting-management.accounts.create\"
|
|
362
|
+
* @summary Create the booking entry
|
|
363
|
+
* @param {CreateBookingEntryRequestDto} createBookingEntryRequestDto
|
|
364
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
352
365
|
* @param {*} [options] Override http request option.
|
|
353
366
|
* @throws {RequiredError}
|
|
354
367
|
*/
|
|
355
|
-
|
|
356
|
-
return localVarFp.
|
|
368
|
+
createBookingEntry: function (createBookingEntryRequestDto, authorization, options) {
|
|
369
|
+
return localVarFp.createBookingEntry(createBookingEntryRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
357
370
|
},
|
|
358
371
|
/**
|
|
359
|
-
*
|
|
360
|
-
* @summary
|
|
361
|
-
* @param {string}
|
|
372
|
+
* This endpoint gets a booking entry. **Required Permissions** \"accounting-management.accounts.view\"
|
|
373
|
+
* @summary Retrieve the booking entry
|
|
374
|
+
* @param {string} code
|
|
375
|
+
* @param {string} expand
|
|
376
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
377
|
+
* @param {*} [options] Override http request option.
|
|
378
|
+
* @throws {RequiredError}
|
|
379
|
+
*/
|
|
380
|
+
getBookingEntry: function (code, expand, authorization, options) {
|
|
381
|
+
return localVarFp.getBookingEntry(code, expand, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
382
|
+
},
|
|
383
|
+
/**
|
|
384
|
+
* This endpoint gets booking entries. **Required Permissions** \"accounting-management.accounts.view\"
|
|
385
|
+
* @summary List booking entries
|
|
386
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
362
387
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
363
388
|
* @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.
|
|
364
389
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
@@ -369,71 +394,60 @@ var ZipCodesApiFactory = function (configuration, basePath, axios) {
|
|
|
369
394
|
* @param {*} [options] Override http request option.
|
|
370
395
|
* @throws {RequiredError}
|
|
371
396
|
*/
|
|
372
|
-
|
|
373
|
-
return localVarFp.
|
|
374
|
-
},
|
|
375
|
-
/**
|
|
376
|
-
* Store zip codes from file. **Required Permissions** none
|
|
377
|
-
* @summary Create the zip codes
|
|
378
|
-
* @param {string} [authorization] Bearer Token
|
|
379
|
-
* @param {*} [options] Override http request option.
|
|
380
|
-
* @throws {RequiredError}
|
|
381
|
-
*/
|
|
382
|
-
storeZipCodes: function (authorization, options) {
|
|
383
|
-
return localVarFp.storeZipCodes(authorization, options).then(function (request) { return request(axios, basePath); });
|
|
397
|
+
listBookingEntries: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
398
|
+
return localVarFp.listBookingEntries(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
384
399
|
},
|
|
385
400
|
};
|
|
386
401
|
};
|
|
387
|
-
exports.
|
|
402
|
+
exports.BookingEntriesApiFactory = BookingEntriesApiFactory;
|
|
388
403
|
/**
|
|
389
|
-
*
|
|
404
|
+
* BookingEntriesApi - object-oriented interface
|
|
390
405
|
* @export
|
|
391
|
-
* @class
|
|
406
|
+
* @class BookingEntriesApi
|
|
392
407
|
* @extends {BaseAPI}
|
|
393
408
|
*/
|
|
394
|
-
var
|
|
395
|
-
__extends(
|
|
396
|
-
function
|
|
409
|
+
var BookingEntriesApi = /** @class */ (function (_super) {
|
|
410
|
+
__extends(BookingEntriesApi, _super);
|
|
411
|
+
function BookingEntriesApi() {
|
|
397
412
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
398
413
|
}
|
|
399
414
|
/**
|
|
400
|
-
*
|
|
401
|
-
* @summary
|
|
402
|
-
* @param {
|
|
415
|
+
* This endpoint creates a new booking entry. **Required Permissions** \"accounting-management.accounts.create\"
|
|
416
|
+
* @summary Create the booking entry
|
|
417
|
+
* @param {BookingEntriesApiCreateBookingEntryRequest} requestParameters Request parameters.
|
|
403
418
|
* @param {*} [options] Override http request option.
|
|
404
419
|
* @throws {RequiredError}
|
|
405
|
-
* @memberof
|
|
420
|
+
* @memberof BookingEntriesApi
|
|
406
421
|
*/
|
|
407
|
-
|
|
422
|
+
BookingEntriesApi.prototype.createBookingEntry = function (requestParameters, options) {
|
|
408
423
|
var _this = this;
|
|
409
|
-
return (0, exports.
|
|
424
|
+
return (0, exports.BookingEntriesApiFp)(this.configuration).createBookingEntry(requestParameters.createBookingEntryRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
410
425
|
};
|
|
411
426
|
/**
|
|
412
|
-
*
|
|
413
|
-
* @summary
|
|
414
|
-
* @param {
|
|
427
|
+
* This endpoint gets a booking entry. **Required Permissions** \"accounting-management.accounts.view\"
|
|
428
|
+
* @summary Retrieve the booking entry
|
|
429
|
+
* @param {BookingEntriesApiGetBookingEntryRequest} requestParameters Request parameters.
|
|
415
430
|
* @param {*} [options] Override http request option.
|
|
416
431
|
* @throws {RequiredError}
|
|
417
|
-
* @memberof
|
|
432
|
+
* @memberof BookingEntriesApi
|
|
418
433
|
*/
|
|
419
|
-
|
|
434
|
+
BookingEntriesApi.prototype.getBookingEntry = function (requestParameters, options) {
|
|
420
435
|
var _this = this;
|
|
421
|
-
|
|
422
|
-
return (0, exports.ZipCodesApiFp)(this.configuration).listZipCodes(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
436
|
+
return (0, exports.BookingEntriesApiFp)(this.configuration).getBookingEntry(requestParameters.code, requestParameters.expand, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
423
437
|
};
|
|
424
438
|
/**
|
|
425
|
-
*
|
|
426
|
-
* @summary
|
|
427
|
-
* @param {
|
|
439
|
+
* This endpoint gets booking entries. **Required Permissions** \"accounting-management.accounts.view\"
|
|
440
|
+
* @summary List booking entries
|
|
441
|
+
* @param {BookingEntriesApiListBookingEntriesRequest} requestParameters Request parameters.
|
|
428
442
|
* @param {*} [options] Override http request option.
|
|
429
443
|
* @throws {RequiredError}
|
|
430
|
-
* @memberof
|
|
444
|
+
* @memberof BookingEntriesApi
|
|
431
445
|
*/
|
|
432
|
-
|
|
446
|
+
BookingEntriesApi.prototype.listBookingEntries = function (requestParameters, options) {
|
|
433
447
|
var _this = this;
|
|
434
448
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
435
|
-
return (0, exports.
|
|
449
|
+
return (0, exports.BookingEntriesApiFp)(this.configuration).listBookingEntries(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
436
450
|
};
|
|
437
|
-
return
|
|
451
|
+
return BookingEntriesApi;
|
|
438
452
|
}(base_1.BaseAPI));
|
|
439
|
-
exports.
|
|
453
|
+
exports.BookingEntriesApi = BookingEntriesApi;
|