@emilgroup/insurance-sdk 1.72.1-beta.8 → 1.73.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 +0 -1
- package/README.md +2 -2
- package/dist/api/booking-funnel-versions-api.js +8 -25
- package/dist/api/booking-funnels-api.js +20 -53
- package/dist/api/commission-agreement-items-api.js +17 -46
- package/dist/api/commission-agreement-products-api.js +17 -46
- package/dist/api/commission-agreement-versions-api.js +14 -39
- package/dist/api/commission-agreements-api.js +17 -46
- package/dist/api/commission-recipients-api.js +17 -46
- package/dist/api/emil-functions-api.js +35 -88
- package/dist/api/health-check-api.js +5 -18
- package/dist/api/insured-object-types-api.js +5 -18
- package/dist/api/insured-objects-api.js +14 -39
- package/dist/api/lead-statuses-api.js +17 -46
- package/dist/api/lead-versions-api.js +8 -25
- package/dist/api/leads-api.js +32 -81
- package/dist/api/named-ranges-api.js +20 -53
- package/dist/api/partner-links-api.js +20 -53
- package/dist/api/partner-roles-api.js +17 -46
- package/dist/api/policies-api.js +50 -123
- package/dist/api/premium-formulas-api.js +20 -53
- package/dist/api/product-factors-api.js +23 -60
- package/dist/api/product-fields-api.js +23 -60
- package/dist/api/product-versions-api.js +8 -25
- package/dist/api/products-api.js +20 -53
- package/dist/api/status-transition-rules-api.js +20 -53
- package/dist/base.js +5 -5
- package/dist/common.d.ts +1 -1
- package/dist/common.js +2 -2
- package/dist/models/create-product-field-request-dto.d.ts +0 -22
- package/dist/models/create-product-field-request-dto.js +1 -9
- package/dist/models/index.d.ts +0 -1
- package/dist/models/index.js +0 -1
- package/dist/models/product-field-class.d.ts +0 -34
- package/dist/models/product-field-class.js +0 -9
- package/dist/models/shared-product-field-class.d.ts +0 -34
- package/dist/models/shared-product-field-class.js +0 -9
- package/dist/models/update-product-field-request-dto.d.ts +0 -22
- package/dist/models/update-product-field-request-dto.js +1 -9
- package/models/create-product-field-request-dto.ts +0 -24
- package/models/index.ts +0 -1
- package/models/product-field-class.ts +0 -38
- package/models/shared-product-field-class.ts +0 -38
- package/models/update-product-field-request-dto.ts +0 -24
- package/package.json +3 -3
- package/dist/models/create-product-version-request-dto.d.ts +0 -30
- package/dist/models/create-product-version-request-dto.js +0 -15
- package/models/create-product-version-request-dto.ts +0 -36
package/.openapi-generator/FILES
CHANGED
|
@@ -87,7 +87,6 @@ models/create-product-field-request-dto.ts
|
|
|
87
87
|
models/create-product-field-response-class.ts
|
|
88
88
|
models/create-product-request-dto.ts
|
|
89
89
|
models/create-product-response-class.ts
|
|
90
|
-
models/create-product-version-request-dto.ts
|
|
91
90
|
models/create-status-transition-rule-request-dto.ts
|
|
92
91
|
models/create-status-transition-rule-response-class.ts
|
|
93
92
|
models/csv-product-factor-dto.ts
|
package/README.md
CHANGED
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/insurance-sdk@1.
|
|
20
|
+
npm install @emilgroup/insurance-sdk@1.73.0 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/insurance-sdk@1.
|
|
24
|
+
yarn add @emilgroup/insurance-sdk@1.73.0
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PoliciesApi`.
|
|
@@ -48,8 +48,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
48
48
|
});
|
|
49
49
|
};
|
|
50
50
|
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
51
|
-
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g
|
|
52
|
-
return g
|
|
51
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
52
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
53
53
|
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
54
54
|
function step(op) {
|
|
55
55
|
if (f) throw new TypeError("Generator is already executing.");
|
|
@@ -74,15 +74,6 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
74
74
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
75
75
|
}
|
|
76
76
|
};
|
|
77
|
-
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
78
|
-
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
79
|
-
if (ar || !(i in from)) {
|
|
80
|
-
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
81
|
-
ar[i] = from[i];
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
return to.concat(ar || Array.prototype.slice.call(from));
|
|
85
|
-
};
|
|
86
77
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
87
78
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
88
79
|
};
|
|
@@ -110,14 +101,10 @@ var BookingFunnelVersionsApiAxiosParamCreator = function (configuration) {
|
|
|
110
101
|
* @param {*} [options] Override http request option.
|
|
111
102
|
* @throws {RequiredError}
|
|
112
103
|
*/
|
|
113
|
-
getBookingFunnelVersion: function (
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
args_1[_i - 3] = arguments[_i];
|
|
117
|
-
}
|
|
118
|
-
return __awaiter(_this, __spreadArray([code_1, version_1, authorization_1], args_1, true), void 0, function (code, version, authorization, options) {
|
|
104
|
+
getBookingFunnelVersion: function (code, version, authorization, options) {
|
|
105
|
+
if (options === void 0) { options = {}; }
|
|
106
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
119
107
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
120
|
-
if (options === void 0) { options = {}; }
|
|
121
108
|
return __generator(this, function (_a) {
|
|
122
109
|
switch (_a.label) {
|
|
123
110
|
case 0:
|
|
@@ -172,14 +159,10 @@ var BookingFunnelVersionsApiAxiosParamCreator = function (configuration) {
|
|
|
172
159
|
* @param {*} [options] Override http request option.
|
|
173
160
|
* @throws {RequiredError}
|
|
174
161
|
*/
|
|
175
|
-
listBookingFunnelVersions: function (
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
args_1[_i - 9] = arguments[_i];
|
|
179
|
-
}
|
|
180
|
-
return __awaiter(_this, __spreadArray([code_1, authorization_1, pageSize_1, pageToken_1, filter_1, search_1, order_1, expand_1, filters_1], args_1, true), void 0, function (code, authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
162
|
+
listBookingFunnelVersions: function (code, authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
163
|
+
if (options === void 0) { options = {}; }
|
|
164
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
181
165
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
182
|
-
if (options === void 0) { options = {}; }
|
|
183
166
|
return __generator(this, function (_a) {
|
|
184
167
|
switch (_a.label) {
|
|
185
168
|
case 0:
|
|
@@ -48,8 +48,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
48
48
|
});
|
|
49
49
|
};
|
|
50
50
|
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
51
|
-
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g
|
|
52
|
-
return g
|
|
51
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
52
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
53
53
|
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
54
54
|
function step(op) {
|
|
55
55
|
if (f) throw new TypeError("Generator is already executing.");
|
|
@@ -74,15 +74,6 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
74
74
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
75
75
|
}
|
|
76
76
|
};
|
|
77
|
-
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
78
|
-
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
79
|
-
if (ar || !(i in from)) {
|
|
80
|
-
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
81
|
-
ar[i] = from[i];
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
return to.concat(ar || Array.prototype.slice.call(from));
|
|
85
|
-
};
|
|
86
77
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
87
78
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
88
79
|
};
|
|
@@ -109,14 +100,10 @@ var BookingFunnelsApiAxiosParamCreator = function (configuration) {
|
|
|
109
100
|
* @param {*} [options] Override http request option.
|
|
110
101
|
* @throws {RequiredError}
|
|
111
102
|
*/
|
|
112
|
-
createBookingFunnel: function (
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
args_1[_i - 2] = arguments[_i];
|
|
116
|
-
}
|
|
117
|
-
return __awaiter(_this, __spreadArray([createBookingFunnelRequestDto_1, authorization_1], args_1, true), void 0, function (createBookingFunnelRequestDto, authorization, options) {
|
|
103
|
+
createBookingFunnel: function (createBookingFunnelRequestDto, authorization, options) {
|
|
104
|
+
if (options === void 0) { options = {}; }
|
|
105
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
118
106
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
119
|
-
if (options === void 0) { options = {}; }
|
|
120
107
|
return __generator(this, function (_a) {
|
|
121
108
|
switch (_a.label) {
|
|
122
109
|
case 0:
|
|
@@ -162,14 +149,10 @@ var BookingFunnelsApiAxiosParamCreator = function (configuration) {
|
|
|
162
149
|
* @param {*} [options] Override http request option.
|
|
163
150
|
* @throws {RequiredError}
|
|
164
151
|
*/
|
|
165
|
-
deleteBookingFunnel: function (
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
args_1[_i - 2] = arguments[_i];
|
|
169
|
-
}
|
|
170
|
-
return __awaiter(_this, __spreadArray([code_1, authorization_1], args_1, true), void 0, function (code, authorization, options) {
|
|
152
|
+
deleteBookingFunnel: function (code, authorization, options) {
|
|
153
|
+
if (options === void 0) { options = {}; }
|
|
154
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
171
155
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
172
|
-
if (options === void 0) { options = {}; }
|
|
173
156
|
return __generator(this, function (_a) {
|
|
174
157
|
switch (_a.label) {
|
|
175
158
|
case 0:
|
|
@@ -214,14 +197,10 @@ var BookingFunnelsApiAxiosParamCreator = function (configuration) {
|
|
|
214
197
|
* @param {*} [options] Override http request option.
|
|
215
198
|
* @throws {RequiredError}
|
|
216
199
|
*/
|
|
217
|
-
getBookingFunnel: function (
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
args_1[_i - 2] = arguments[_i];
|
|
221
|
-
}
|
|
222
|
-
return __awaiter(_this, __spreadArray([code_1, authorization_1], args_1, true), void 0, function (code, authorization, options) {
|
|
200
|
+
getBookingFunnel: function (code, authorization, options) {
|
|
201
|
+
if (options === void 0) { options = {}; }
|
|
202
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
223
203
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
224
|
-
if (options === void 0) { options = {}; }
|
|
225
204
|
return __generator(this, function (_a) {
|
|
226
205
|
switch (_a.label) {
|
|
227
206
|
case 0:
|
|
@@ -272,14 +251,10 @@ var BookingFunnelsApiAxiosParamCreator = function (configuration) {
|
|
|
272
251
|
* @param {*} [options] Override http request option.
|
|
273
252
|
* @throws {RequiredError}
|
|
274
253
|
*/
|
|
275
|
-
listBookingFunnels: function (
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
args_1[_i - 8] = arguments[_i];
|
|
279
|
-
}
|
|
280
|
-
return __awaiter(_this, __spreadArray([authorization_1, pageSize_1, pageToken_1, filter_1, search_1, order_1, expand_1, filters_1], args_1, true), void 0, function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
254
|
+
listBookingFunnels: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
255
|
+
if (options === void 0) { options = {}; }
|
|
256
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
281
257
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
282
|
-
if (options === void 0) { options = {}; }
|
|
283
258
|
return __generator(this, function (_a) {
|
|
284
259
|
switch (_a.label) {
|
|
285
260
|
case 0:
|
|
@@ -342,14 +317,10 @@ var BookingFunnelsApiAxiosParamCreator = function (configuration) {
|
|
|
342
317
|
* @param {*} [options] Override http request option.
|
|
343
318
|
* @throws {RequiredError}
|
|
344
319
|
*/
|
|
345
|
-
patchBookingFunnel: function (
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
args_1[_i - 3] = arguments[_i];
|
|
349
|
-
}
|
|
350
|
-
return __awaiter(_this, __spreadArray([code_1, patchBookingFunnelRequestDto_1, authorization_1], args_1, true), void 0, function (code, patchBookingFunnelRequestDto, authorization, options) {
|
|
320
|
+
patchBookingFunnel: function (code, patchBookingFunnelRequestDto, authorization, options) {
|
|
321
|
+
if (options === void 0) { options = {}; }
|
|
322
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
351
323
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
352
|
-
if (options === void 0) { options = {}; }
|
|
353
324
|
return __generator(this, function (_a) {
|
|
354
325
|
switch (_a.label) {
|
|
355
326
|
case 0:
|
|
@@ -399,14 +370,10 @@ var BookingFunnelsApiAxiosParamCreator = function (configuration) {
|
|
|
399
370
|
* @param {*} [options] Override http request option.
|
|
400
371
|
* @throws {RequiredError}
|
|
401
372
|
*/
|
|
402
|
-
updateBookingFunnel: function (
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
args_1[_i - 3] = arguments[_i];
|
|
406
|
-
}
|
|
407
|
-
return __awaiter(_this, __spreadArray([code_1, updateBookingFunnelRequestDto_1, authorization_1], args_1, true), void 0, function (code, updateBookingFunnelRequestDto, authorization, options) {
|
|
373
|
+
updateBookingFunnel: function (code, updateBookingFunnelRequestDto, authorization, options) {
|
|
374
|
+
if (options === void 0) { options = {}; }
|
|
375
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
408
376
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
409
|
-
if (options === void 0) { options = {}; }
|
|
410
377
|
return __generator(this, function (_a) {
|
|
411
378
|
switch (_a.label) {
|
|
412
379
|
case 0:
|
|
@@ -48,8 +48,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
48
48
|
});
|
|
49
49
|
};
|
|
50
50
|
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
51
|
-
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g
|
|
52
|
-
return g
|
|
51
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
52
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
53
53
|
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
54
54
|
function step(op) {
|
|
55
55
|
if (f) throw new TypeError("Generator is already executing.");
|
|
@@ -74,15 +74,6 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
74
74
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
75
75
|
}
|
|
76
76
|
};
|
|
77
|
-
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
78
|
-
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
79
|
-
if (ar || !(i in from)) {
|
|
80
|
-
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
81
|
-
ar[i] = from[i];
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
return to.concat(ar || Array.prototype.slice.call(from));
|
|
85
|
-
};
|
|
86
77
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
87
78
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
88
79
|
};
|
|
@@ -110,14 +101,10 @@ var CommissionAgreementItemsApiAxiosParamCreator = function (configuration) {
|
|
|
110
101
|
* @param {*} [options] Override http request option.
|
|
111
102
|
* @throws {RequiredError}
|
|
112
103
|
*/
|
|
113
|
-
createCommissionAgreementItem: function (
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
args_1[_i - 3] = arguments[_i];
|
|
117
|
-
}
|
|
118
|
-
return __awaiter(_this, __spreadArray([code_1, createCommissionAgreementItemRequestDto_1, authorization_1], args_1, true), void 0, function (code, createCommissionAgreementItemRequestDto, authorization, options) {
|
|
104
|
+
createCommissionAgreementItem: function (code, createCommissionAgreementItemRequestDto, authorization, options) {
|
|
105
|
+
if (options === void 0) { options = {}; }
|
|
106
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
119
107
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
120
|
-
if (options === void 0) { options = {}; }
|
|
121
108
|
return __generator(this, function (_a) {
|
|
122
109
|
switch (_a.label) {
|
|
123
110
|
case 0:
|
|
@@ -166,14 +153,10 @@ var CommissionAgreementItemsApiAxiosParamCreator = function (configuration) {
|
|
|
166
153
|
* @param {*} [options] Override http request option.
|
|
167
154
|
* @throws {RequiredError}
|
|
168
155
|
*/
|
|
169
|
-
deleteCommissionAgreementItem: function (
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
args_1[_i - 2] = arguments[_i];
|
|
173
|
-
}
|
|
174
|
-
return __awaiter(_this, __spreadArray([code_1, authorization_1], args_1, true), void 0, function (code, authorization, options) {
|
|
156
|
+
deleteCommissionAgreementItem: function (code, authorization, options) {
|
|
157
|
+
if (options === void 0) { options = {}; }
|
|
158
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
175
159
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
176
|
-
if (options === void 0) { options = {}; }
|
|
177
160
|
return __generator(this, function (_a) {
|
|
178
161
|
switch (_a.label) {
|
|
179
162
|
case 0:
|
|
@@ -219,14 +202,10 @@ var CommissionAgreementItemsApiAxiosParamCreator = function (configuration) {
|
|
|
219
202
|
* @param {*} [options] Override http request option.
|
|
220
203
|
* @throws {RequiredError}
|
|
221
204
|
*/
|
|
222
|
-
getCommissionAgreementItem: function (
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
args_1[_i - 3] = arguments[_i];
|
|
226
|
-
}
|
|
227
|
-
return __awaiter(_this, __spreadArray([code_1, expand_1, authorization_1], args_1, true), void 0, function (code, expand, authorization, options) {
|
|
205
|
+
getCommissionAgreementItem: function (code, expand, authorization, options) {
|
|
206
|
+
if (options === void 0) { options = {}; }
|
|
207
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
228
208
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
229
|
-
if (options === void 0) { options = {}; }
|
|
230
209
|
return __generator(this, function (_a) {
|
|
231
210
|
switch (_a.label) {
|
|
232
211
|
case 0:
|
|
@@ -282,14 +261,10 @@ var CommissionAgreementItemsApiAxiosParamCreator = function (configuration) {
|
|
|
282
261
|
* @param {*} [options] Override http request option.
|
|
283
262
|
* @throws {RequiredError}
|
|
284
263
|
*/
|
|
285
|
-
listCommissionAgreementItems: function (
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
args_1[_i - 8] = arguments[_i];
|
|
289
|
-
}
|
|
290
|
-
return __awaiter(_this, __spreadArray([authorization_1, pageSize_1, pageToken_1, filter_1, search_1, order_1, expand_1, filters_1], args_1, true), void 0, function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
264
|
+
listCommissionAgreementItems: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
265
|
+
if (options === void 0) { options = {}; }
|
|
266
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
291
267
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
292
|
-
if (options === void 0) { options = {}; }
|
|
293
268
|
return __generator(this, function (_a) {
|
|
294
269
|
switch (_a.label) {
|
|
295
270
|
case 0:
|
|
@@ -353,14 +328,10 @@ var CommissionAgreementItemsApiAxiosParamCreator = function (configuration) {
|
|
|
353
328
|
* @param {*} [options] Override http request option.
|
|
354
329
|
* @throws {RequiredError}
|
|
355
330
|
*/
|
|
356
|
-
updateCommissionAgreementItem: function (
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
args_1[_i - 3] = arguments[_i];
|
|
360
|
-
}
|
|
361
|
-
return __awaiter(_this, __spreadArray([code_1, updateCommissionAgreementItemRequestDto_1, authorization_1], args_1, true), void 0, function (code, updateCommissionAgreementItemRequestDto, authorization, options) {
|
|
331
|
+
updateCommissionAgreementItem: function (code, updateCommissionAgreementItemRequestDto, authorization, options) {
|
|
332
|
+
if (options === void 0) { options = {}; }
|
|
333
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
362
334
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
363
|
-
if (options === void 0) { options = {}; }
|
|
364
335
|
return __generator(this, function (_a) {
|
|
365
336
|
switch (_a.label) {
|
|
366
337
|
case 0:
|
|
@@ -48,8 +48,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
48
48
|
});
|
|
49
49
|
};
|
|
50
50
|
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
51
|
-
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g
|
|
52
|
-
return g
|
|
51
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
52
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
53
53
|
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
54
54
|
function step(op) {
|
|
55
55
|
if (f) throw new TypeError("Generator is already executing.");
|
|
@@ -74,15 +74,6 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
74
74
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
75
75
|
}
|
|
76
76
|
};
|
|
77
|
-
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
78
|
-
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
79
|
-
if (ar || !(i in from)) {
|
|
80
|
-
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
81
|
-
ar[i] = from[i];
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
return to.concat(ar || Array.prototype.slice.call(from));
|
|
85
|
-
};
|
|
86
77
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
87
78
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
88
79
|
};
|
|
@@ -110,14 +101,10 @@ var CommissionAgreementProductsApiAxiosParamCreator = function (configuration) {
|
|
|
110
101
|
* @param {*} [options] Override http request option.
|
|
111
102
|
* @throws {RequiredError}
|
|
112
103
|
*/
|
|
113
|
-
createCommissionAgreementProduct: function (
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
args_1[_i - 3] = arguments[_i];
|
|
117
|
-
}
|
|
118
|
-
return __awaiter(_this, __spreadArray([code_1, createCommissionAgreementProductRequestDto_1, authorization_1], args_1, true), void 0, function (code, createCommissionAgreementProductRequestDto, authorization, options) {
|
|
104
|
+
createCommissionAgreementProduct: function (code, createCommissionAgreementProductRequestDto, authorization, options) {
|
|
105
|
+
if (options === void 0) { options = {}; }
|
|
106
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
119
107
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
120
|
-
if (options === void 0) { options = {}; }
|
|
121
108
|
return __generator(this, function (_a) {
|
|
122
109
|
switch (_a.label) {
|
|
123
110
|
case 0:
|
|
@@ -166,14 +153,10 @@ var CommissionAgreementProductsApiAxiosParamCreator = function (configuration) {
|
|
|
166
153
|
* @param {*} [options] Override http request option.
|
|
167
154
|
* @throws {RequiredError}
|
|
168
155
|
*/
|
|
169
|
-
deleteCommissionAgreementProduct: function (
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
args_1[_i - 2] = arguments[_i];
|
|
173
|
-
}
|
|
174
|
-
return __awaiter(_this, __spreadArray([code_1, authorization_1], args_1, true), void 0, function (code, authorization, options) {
|
|
156
|
+
deleteCommissionAgreementProduct: function (code, authorization, options) {
|
|
157
|
+
if (options === void 0) { options = {}; }
|
|
158
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
175
159
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
176
|
-
if (options === void 0) { options = {}; }
|
|
177
160
|
return __generator(this, function (_a) {
|
|
178
161
|
switch (_a.label) {
|
|
179
162
|
case 0:
|
|
@@ -219,14 +202,10 @@ var CommissionAgreementProductsApiAxiosParamCreator = function (configuration) {
|
|
|
219
202
|
* @param {*} [options] Override http request option.
|
|
220
203
|
* @throws {RequiredError}
|
|
221
204
|
*/
|
|
222
|
-
getCommissionAgreementProduct: function (
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
args_1[_i - 3] = arguments[_i];
|
|
226
|
-
}
|
|
227
|
-
return __awaiter(_this, __spreadArray([code_1, authorization_1, expand_1], args_1, true), void 0, function (code, authorization, expand, options) {
|
|
205
|
+
getCommissionAgreementProduct: function (code, authorization, expand, options) {
|
|
206
|
+
if (options === void 0) { options = {}; }
|
|
207
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
228
208
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
229
|
-
if (options === void 0) { options = {}; }
|
|
230
209
|
return __generator(this, function (_a) {
|
|
231
210
|
switch (_a.label) {
|
|
232
211
|
case 0:
|
|
@@ -280,14 +259,10 @@ var CommissionAgreementProductsApiAxiosParamCreator = function (configuration) {
|
|
|
280
259
|
* @param {*} [options] Override http request option.
|
|
281
260
|
* @throws {RequiredError}
|
|
282
261
|
*/
|
|
283
|
-
listCommissionAgreementProducts: function (
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
args_1[_i - 8] = arguments[_i];
|
|
287
|
-
}
|
|
288
|
-
return __awaiter(_this, __spreadArray([authorization_1, pageSize_1, pageToken_1, filter_1, search_1, order_1, expand_1, filters_1], args_1, true), void 0, function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
262
|
+
listCommissionAgreementProducts: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
263
|
+
if (options === void 0) { options = {}; }
|
|
264
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
289
265
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
290
|
-
if (options === void 0) { options = {}; }
|
|
291
266
|
return __generator(this, function (_a) {
|
|
292
267
|
switch (_a.label) {
|
|
293
268
|
case 0:
|
|
@@ -351,14 +326,10 @@ var CommissionAgreementProductsApiAxiosParamCreator = function (configuration) {
|
|
|
351
326
|
* @param {*} [options] Override http request option.
|
|
352
327
|
* @throws {RequiredError}
|
|
353
328
|
*/
|
|
354
|
-
updateCommissionAgreementProduct: function (
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
args_1[_i - 3] = arguments[_i];
|
|
358
|
-
}
|
|
359
|
-
return __awaiter(_this, __spreadArray([code_1, updateCommissionAgreementProductRequestDto_1, authorization_1], args_1, true), void 0, function (code, updateCommissionAgreementProductRequestDto, authorization, options) {
|
|
329
|
+
updateCommissionAgreementProduct: function (code, updateCommissionAgreementProductRequestDto, authorization, options) {
|
|
330
|
+
if (options === void 0) { options = {}; }
|
|
331
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
360
332
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
361
|
-
if (options === void 0) { options = {}; }
|
|
362
333
|
return __generator(this, function (_a) {
|
|
363
334
|
switch (_a.label) {
|
|
364
335
|
case 0:
|
|
@@ -48,8 +48,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
48
48
|
});
|
|
49
49
|
};
|
|
50
50
|
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
51
|
-
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g
|
|
52
|
-
return g
|
|
51
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
52
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
53
53
|
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
54
54
|
function step(op) {
|
|
55
55
|
if (f) throw new TypeError("Generator is already executing.");
|
|
@@ -74,15 +74,6 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
74
74
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
75
75
|
}
|
|
76
76
|
};
|
|
77
|
-
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
78
|
-
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
79
|
-
if (ar || !(i in from)) {
|
|
80
|
-
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
81
|
-
ar[i] = from[i];
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
return to.concat(ar || Array.prototype.slice.call(from));
|
|
85
|
-
};
|
|
86
77
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
87
78
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
88
79
|
};
|
|
@@ -110,14 +101,10 @@ var CommissionAgreementVersionsApiAxiosParamCreator = function (configuration) {
|
|
|
110
101
|
* @param {*} [options] Override http request option.
|
|
111
102
|
* @throws {RequiredError}
|
|
112
103
|
*/
|
|
113
|
-
createCommissionAgreementVersion: function (
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
args_1[_i - 3] = arguments[_i];
|
|
117
|
-
}
|
|
118
|
-
return __awaiter(_this, __spreadArray([code_1, createCommissionAgreementVersionRequestDto_1, authorization_1], args_1, true), void 0, function (code, createCommissionAgreementVersionRequestDto, authorization, options) {
|
|
104
|
+
createCommissionAgreementVersion: function (code, createCommissionAgreementVersionRequestDto, authorization, options) {
|
|
105
|
+
if (options === void 0) { options = {}; }
|
|
106
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
119
107
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
120
|
-
if (options === void 0) { options = {}; }
|
|
121
108
|
return __generator(this, function (_a) {
|
|
122
109
|
switch (_a.label) {
|
|
123
110
|
case 0:
|
|
@@ -166,14 +153,10 @@ var CommissionAgreementVersionsApiAxiosParamCreator = function (configuration) {
|
|
|
166
153
|
* @param {*} [options] Override http request option.
|
|
167
154
|
* @throws {RequiredError}
|
|
168
155
|
*/
|
|
169
|
-
deleteCommissionAgreementVersion: function (
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
args_1[_i - 2] = arguments[_i];
|
|
173
|
-
}
|
|
174
|
-
return __awaiter(_this, __spreadArray([code_1, authorization_1], args_1, true), void 0, function (code, authorization, options) {
|
|
156
|
+
deleteCommissionAgreementVersion: function (code, authorization, options) {
|
|
157
|
+
if (options === void 0) { options = {}; }
|
|
158
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
175
159
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
176
|
-
if (options === void 0) { options = {}; }
|
|
177
160
|
return __generator(this, function (_a) {
|
|
178
161
|
switch (_a.label) {
|
|
179
162
|
case 0:
|
|
@@ -219,14 +202,10 @@ var CommissionAgreementVersionsApiAxiosParamCreator = function (configuration) {
|
|
|
219
202
|
* @param {*} [options] Override http request option.
|
|
220
203
|
* @throws {RequiredError}
|
|
221
204
|
*/
|
|
222
|
-
getCommissionAgreementVersion: function (
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
args_1[_i - 3] = arguments[_i];
|
|
226
|
-
}
|
|
227
|
-
return __awaiter(_this, __spreadArray([code_1, expand_1, authorization_1], args_1, true), void 0, function (code, expand, authorization, options) {
|
|
205
|
+
getCommissionAgreementVersion: function (code, expand, authorization, options) {
|
|
206
|
+
if (options === void 0) { options = {}; }
|
|
207
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
228
208
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
229
|
-
if (options === void 0) { options = {}; }
|
|
230
209
|
return __generator(this, function (_a) {
|
|
231
210
|
switch (_a.label) {
|
|
232
211
|
case 0:
|
|
@@ -282,14 +261,10 @@ var CommissionAgreementVersionsApiAxiosParamCreator = function (configuration) {
|
|
|
282
261
|
* @param {*} [options] Override http request option.
|
|
283
262
|
* @throws {RequiredError}
|
|
284
263
|
*/
|
|
285
|
-
listCommissionAgreementVersions: function (
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
args_1[_i - 8] = arguments[_i];
|
|
289
|
-
}
|
|
290
|
-
return __awaiter(_this, __spreadArray([authorization_1, pageSize_1, pageToken_1, filter_1, search_1, order_1, expand_1, filters_1], args_1, true), void 0, function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
264
|
+
listCommissionAgreementVersions: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
265
|
+
if (options === void 0) { options = {}; }
|
|
266
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
291
267
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
292
|
-
if (options === void 0) { options = {}; }
|
|
293
268
|
return __generator(this, function (_a) {
|
|
294
269
|
switch (_a.label) {
|
|
295
270
|
case 0:
|