ch-api-client-typescript2 5.79.15 → 5.79.16

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.
@@ -104,6 +104,7 @@ var ServicesApiAxiosParamCreator = function (configuration) {
104
104
  /**
105
105
  *
106
106
  * @summary Get all HospitalServices.
107
+ * @param {string} [xCloudhospitalPlatform] Platform identifier from request header
107
108
  * @param {string} [id]
108
109
  * @param {string} [name]
109
110
  * @param {string} [slug]
@@ -127,12 +128,12 @@ var ServicesApiAxiosParamCreator = function (configuration) {
127
128
  * @param {*} [options] Override http request option.
128
129
  * @throws {RequiredError}
129
130
  */
130
- apiV2ServicesGet: function (id_1, name_1, slug_1, hospitalId_1, hospitalName_1, hospitalSlug_1, specialtyId_1, specialtyName_1, specialtyTypeId_1, specialtyTypeName_1, serviceCategoryId_1, appointmentEnabled_1, marketingType_1, procedure_1, created_1, languageCode_1, returnDefaultValue_1, page_1, limit_1, lastRetrieved_1) {
131
+ apiV2ServicesGet: function (xCloudhospitalPlatform_1, id_1, name_1, slug_1, hospitalId_1, hospitalName_1, hospitalSlug_1, specialtyId_1, specialtyName_1, specialtyTypeId_1, specialtyTypeName_1, serviceCategoryId_1, appointmentEnabled_1, marketingType_1, procedure_1, created_1, languageCode_1, returnDefaultValue_1, page_1, limit_1, lastRetrieved_1) {
131
132
  var args_1 = [];
132
- for (var _i = 20; _i < arguments.length; _i++) {
133
- args_1[_i - 20] = arguments[_i];
133
+ for (var _i = 21; _i < arguments.length; _i++) {
134
+ args_1[_i - 21] = arguments[_i];
134
135
  }
135
- return __awaiter(_this, __spreadArray([id_1, name_1, slug_1, hospitalId_1, hospitalName_1, hospitalSlug_1, specialtyId_1, specialtyName_1, specialtyTypeId_1, specialtyTypeName_1, serviceCategoryId_1, appointmentEnabled_1, marketingType_1, procedure_1, created_1, languageCode_1, returnDefaultValue_1, page_1, limit_1, lastRetrieved_1], args_1, true), void 0, function (id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, appointmentEnabled, marketingType, procedure, created, languageCode, returnDefaultValue, page, limit, lastRetrieved, options) {
136
+ return __awaiter(_this, __spreadArray([xCloudhospitalPlatform_1, id_1, name_1, slug_1, hospitalId_1, hospitalName_1, hospitalSlug_1, specialtyId_1, specialtyName_1, specialtyTypeId_1, specialtyTypeName_1, serviceCategoryId_1, appointmentEnabled_1, marketingType_1, procedure_1, created_1, languageCode_1, returnDefaultValue_1, page_1, limit_1, lastRetrieved_1], args_1, true), void 0, function (xCloudhospitalPlatform, id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, appointmentEnabled, marketingType, procedure, created, languageCode, returnDefaultValue, page, limit, lastRetrieved, options) {
136
137
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
137
138
  if (options === void 0) { options = {}; }
138
139
  return __generator(this, function (_a) {
@@ -208,6 +209,9 @@ var ServicesApiAxiosParamCreator = function (configuration) {
208
209
  lastRetrieved.toISOString() :
209
210
  lastRetrieved;
210
211
  }
212
+ if (xCloudhospitalPlatform != null) {
213
+ localVarHeaderParameter['x-cloudhospital-platform'] = String(xCloudhospitalPlatform);
214
+ }
211
215
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
212
216
  headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
213
217
  localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -222,17 +226,18 @@ var ServicesApiAxiosParamCreator = function (configuration) {
222
226
  *
223
227
  * @summary Get Hospital service by id
224
228
  * @param {string} serviceId
229
+ * @param {string} [xCloudhospitalPlatform] Platform identifier from request header
225
230
  * @param {string} [languageCode]
226
231
  * @param {boolean} [returnDefaultValue]
227
232
  * @param {*} [options] Override http request option.
228
233
  * @throws {RequiredError}
229
234
  */
230
- apiV2ServicesServiceIdGet: function (serviceId_1, languageCode_1, returnDefaultValue_1) {
235
+ apiV2ServicesServiceIdGet: function (serviceId_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1) {
231
236
  var args_1 = [];
232
- for (var _i = 3; _i < arguments.length; _i++) {
233
- args_1[_i - 3] = arguments[_i];
237
+ for (var _i = 4; _i < arguments.length; _i++) {
238
+ args_1[_i - 4] = arguments[_i];
234
239
  }
235
- return __awaiter(_this, __spreadArray([serviceId_1, languageCode_1, returnDefaultValue_1], args_1, true), void 0, function (serviceId, languageCode, returnDefaultValue, options) {
240
+ return __awaiter(_this, __spreadArray([serviceId_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1], args_1, true), void 0, function (serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options) {
236
241
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
237
242
  if (options === void 0) { options = {}; }
238
243
  return __generator(this, function (_a) {
@@ -253,6 +258,9 @@ var ServicesApiAxiosParamCreator = function (configuration) {
253
258
  if (returnDefaultValue !== undefined) {
254
259
  localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
255
260
  }
261
+ if (xCloudhospitalPlatform != null) {
262
+ localVarHeaderParameter['x-cloudhospital-platform'] = String(xCloudhospitalPlatform);
263
+ }
256
264
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
257
265
  headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
258
266
  localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -267,6 +275,7 @@ var ServicesApiAxiosParamCreator = function (configuration) {
267
275
  *
268
276
  * @summary Get Hospital service by slug
269
277
  * @param {string} slug
278
+ * @param {string} [xCloudhospitalPlatform] Platform identifier from request header
270
279
  * @param {string} [hospitalId]
271
280
  * @param {string} [languageCode]
272
281
  * @param {boolean} [returnDefaultValue]
@@ -274,12 +283,12 @@ var ServicesApiAxiosParamCreator = function (configuration) {
274
283
  * @param {*} [options] Override http request option.
275
284
  * @throws {RequiredError}
276
285
  */
277
- apiV2ServicesSlugGet: function (slug_1, hospitalId_1, languageCode_1, returnDefaultValue_1, previewSecret_1) {
286
+ apiV2ServicesSlugGet: function (slug_1, xCloudhospitalPlatform_1, hospitalId_1, languageCode_1, returnDefaultValue_1, previewSecret_1) {
278
287
  var args_1 = [];
279
- for (var _i = 5; _i < arguments.length; _i++) {
280
- args_1[_i - 5] = arguments[_i];
288
+ for (var _i = 6; _i < arguments.length; _i++) {
289
+ args_1[_i - 6] = arguments[_i];
281
290
  }
282
- return __awaiter(_this, __spreadArray([slug_1, hospitalId_1, languageCode_1, returnDefaultValue_1, previewSecret_1], args_1, true), void 0, function (slug, hospitalId, languageCode, returnDefaultValue, previewSecret, options) {
291
+ return __awaiter(_this, __spreadArray([slug_1, xCloudhospitalPlatform_1, hospitalId_1, languageCode_1, returnDefaultValue_1, previewSecret_1], args_1, true), void 0, function (slug, xCloudhospitalPlatform, hospitalId, languageCode, returnDefaultValue, previewSecret, options) {
283
292
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
284
293
  if (options === void 0) { options = {}; }
285
294
  return __generator(this, function (_a) {
@@ -306,6 +315,9 @@ var ServicesApiAxiosParamCreator = function (configuration) {
306
315
  if (previewSecret !== undefined) {
307
316
  localVarQueryParameter['previewSecret'] = previewSecret;
308
317
  }
318
+ if (xCloudhospitalPlatform != null) {
319
+ localVarHeaderParameter['x-cloudhospital-platform'] = String(xCloudhospitalPlatform);
320
+ }
309
321
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
310
322
  headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
311
323
  localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -329,6 +341,7 @@ var ServicesApiFp = function (configuration) {
329
341
  /**
330
342
  *
331
343
  * @summary Get all HospitalServices.
344
+ * @param {string} [xCloudhospitalPlatform] Platform identifier from request header
332
345
  * @param {string} [id]
333
346
  * @param {string} [name]
334
347
  * @param {string} [slug]
@@ -352,12 +365,12 @@ var ServicesApiFp = function (configuration) {
352
365
  * @param {*} [options] Override http request option.
353
366
  * @throws {RequiredError}
354
367
  */
355
- apiV2ServicesGet: function (id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, appointmentEnabled, marketingType, procedure, created, languageCode, returnDefaultValue, page, limit, lastRetrieved, options) {
368
+ apiV2ServicesGet: function (xCloudhospitalPlatform, id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, appointmentEnabled, marketingType, procedure, created, languageCode, returnDefaultValue, page, limit, lastRetrieved, options) {
356
369
  return __awaiter(this, void 0, void 0, function () {
357
370
  var localVarAxiosArgs;
358
371
  return __generator(this, function (_a) {
359
372
  switch (_a.label) {
360
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2ServicesGet(id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, appointmentEnabled, marketingType, procedure, created, languageCode, returnDefaultValue, page, limit, lastRetrieved, options)];
373
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2ServicesGet(xCloudhospitalPlatform, id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, appointmentEnabled, marketingType, procedure, created, languageCode, returnDefaultValue, page, limit, lastRetrieved, options)];
361
374
  case 1:
362
375
  localVarAxiosArgs = _a.sent();
363
376
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -369,17 +382,18 @@ var ServicesApiFp = function (configuration) {
369
382
  *
370
383
  * @summary Get Hospital service by id
371
384
  * @param {string} serviceId
385
+ * @param {string} [xCloudhospitalPlatform] Platform identifier from request header
372
386
  * @param {string} [languageCode]
373
387
  * @param {boolean} [returnDefaultValue]
374
388
  * @param {*} [options] Override http request option.
375
389
  * @throws {RequiredError}
376
390
  */
377
- apiV2ServicesServiceIdGet: function (serviceId, languageCode, returnDefaultValue, options) {
391
+ apiV2ServicesServiceIdGet: function (serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options) {
378
392
  return __awaiter(this, void 0, void 0, function () {
379
393
  var localVarAxiosArgs;
380
394
  return __generator(this, function (_a) {
381
395
  switch (_a.label) {
382
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2ServicesServiceIdGet(serviceId, languageCode, returnDefaultValue, options)];
396
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2ServicesServiceIdGet(serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options)];
383
397
  case 1:
384
398
  localVarAxiosArgs = _a.sent();
385
399
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -391,6 +405,7 @@ var ServicesApiFp = function (configuration) {
391
405
  *
392
406
  * @summary Get Hospital service by slug
393
407
  * @param {string} slug
408
+ * @param {string} [xCloudhospitalPlatform] Platform identifier from request header
394
409
  * @param {string} [hospitalId]
395
410
  * @param {string} [languageCode]
396
411
  * @param {boolean} [returnDefaultValue]
@@ -398,12 +413,12 @@ var ServicesApiFp = function (configuration) {
398
413
  * @param {*} [options] Override http request option.
399
414
  * @throws {RequiredError}
400
415
  */
401
- apiV2ServicesSlugGet: function (slug, hospitalId, languageCode, returnDefaultValue, previewSecret, options) {
416
+ apiV2ServicesSlugGet: function (slug, xCloudhospitalPlatform, hospitalId, languageCode, returnDefaultValue, previewSecret, options) {
402
417
  return __awaiter(this, void 0, void 0, function () {
403
418
  var localVarAxiosArgs;
404
419
  return __generator(this, function (_a) {
405
420
  switch (_a.label) {
406
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2ServicesSlugGet(slug, hospitalId, languageCode, returnDefaultValue, previewSecret, options)];
421
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2ServicesSlugGet(slug, xCloudhospitalPlatform, hospitalId, languageCode, returnDefaultValue, previewSecret, options)];
407
422
  case 1:
408
423
  localVarAxiosArgs = _a.sent();
409
424
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -424,6 +439,7 @@ var ServicesApiFactory = function (configuration, basePath, axios) {
424
439
  /**
425
440
  *
426
441
  * @summary Get all HospitalServices.
442
+ * @param {string} [xCloudhospitalPlatform] Platform identifier from request header
427
443
  * @param {string} [id]
428
444
  * @param {string} [name]
429
445
  * @param {string} [slug]
@@ -447,25 +463,27 @@ var ServicesApiFactory = function (configuration, basePath, axios) {
447
463
  * @param {*} [options] Override http request option.
448
464
  * @throws {RequiredError}
449
465
  */
450
- apiV2ServicesGet: function (id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, appointmentEnabled, marketingType, procedure, created, languageCode, returnDefaultValue, page, limit, lastRetrieved, options) {
451
- return localVarFp.apiV2ServicesGet(id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, appointmentEnabled, marketingType, procedure, created, languageCode, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
466
+ apiV2ServicesGet: function (xCloudhospitalPlatform, id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, appointmentEnabled, marketingType, procedure, created, languageCode, returnDefaultValue, page, limit, lastRetrieved, options) {
467
+ return localVarFp.apiV2ServicesGet(xCloudhospitalPlatform, id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, appointmentEnabled, marketingType, procedure, created, languageCode, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
452
468
  },
453
469
  /**
454
470
  *
455
471
  * @summary Get Hospital service by id
456
472
  * @param {string} serviceId
473
+ * @param {string} [xCloudhospitalPlatform] Platform identifier from request header
457
474
  * @param {string} [languageCode]
458
475
  * @param {boolean} [returnDefaultValue]
459
476
  * @param {*} [options] Override http request option.
460
477
  * @throws {RequiredError}
461
478
  */
462
- apiV2ServicesServiceIdGet: function (serviceId, languageCode, returnDefaultValue, options) {
463
- return localVarFp.apiV2ServicesServiceIdGet(serviceId, languageCode, returnDefaultValue, options).then(function (request) { return request(axios, basePath); });
479
+ apiV2ServicesServiceIdGet: function (serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options) {
480
+ return localVarFp.apiV2ServicesServiceIdGet(serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options).then(function (request) { return request(axios, basePath); });
464
481
  },
465
482
  /**
466
483
  *
467
484
  * @summary Get Hospital service by slug
468
485
  * @param {string} slug
486
+ * @param {string} [xCloudhospitalPlatform] Platform identifier from request header
469
487
  * @param {string} [hospitalId]
470
488
  * @param {string} [languageCode]
471
489
  * @param {boolean} [returnDefaultValue]
@@ -473,8 +491,8 @@ var ServicesApiFactory = function (configuration, basePath, axios) {
473
491
  * @param {*} [options] Override http request option.
474
492
  * @throws {RequiredError}
475
493
  */
476
- apiV2ServicesSlugGet: function (slug, hospitalId, languageCode, returnDefaultValue, previewSecret, options) {
477
- return localVarFp.apiV2ServicesSlugGet(slug, hospitalId, languageCode, returnDefaultValue, previewSecret, options).then(function (request) { return request(axios, basePath); });
494
+ apiV2ServicesSlugGet: function (slug, xCloudhospitalPlatform, hospitalId, languageCode, returnDefaultValue, previewSecret, options) {
495
+ return localVarFp.apiV2ServicesSlugGet(slug, xCloudhospitalPlatform, hospitalId, languageCode, returnDefaultValue, previewSecret, options).then(function (request) { return request(axios, basePath); });
478
496
  },
479
497
  };
480
498
  };
@@ -501,7 +519,7 @@ var ServicesApi = /** @class */ (function (_super) {
501
519
  ServicesApi.prototype.apiV2ServicesGet = function (requestParameters, options) {
502
520
  var _this = this;
503
521
  if (requestParameters === void 0) { requestParameters = {}; }
504
- return (0, exports.ServicesApiFp)(this.configuration).apiV2ServicesGet(requestParameters.id, requestParameters.name, requestParameters.slug, requestParameters.hospitalId, requestParameters.hospitalName, requestParameters.hospitalSlug, requestParameters.specialtyId, requestParameters.specialtyName, requestParameters.specialtyTypeId, requestParameters.specialtyTypeName, requestParameters.serviceCategoryId, requestParameters.appointmentEnabled, requestParameters.marketingType, requestParameters.procedure, requestParameters.created, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
522
+ return (0, exports.ServicesApiFp)(this.configuration).apiV2ServicesGet(requestParameters.xCloudhospitalPlatform, requestParameters.id, requestParameters.name, requestParameters.slug, requestParameters.hospitalId, requestParameters.hospitalName, requestParameters.hospitalSlug, requestParameters.specialtyId, requestParameters.specialtyName, requestParameters.specialtyTypeId, requestParameters.specialtyTypeName, requestParameters.serviceCategoryId, requestParameters.appointmentEnabled, requestParameters.marketingType, requestParameters.procedure, requestParameters.created, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
505
523
  };
506
524
  /**
507
525
  *
@@ -513,7 +531,7 @@ var ServicesApi = /** @class */ (function (_super) {
513
531
  */
514
532
  ServicesApi.prototype.apiV2ServicesServiceIdGet = function (requestParameters, options) {
515
533
  var _this = this;
516
- return (0, exports.ServicesApiFp)(this.configuration).apiV2ServicesServiceIdGet(requestParameters.serviceId, requestParameters.languageCode, requestParameters.returnDefaultValue, options).then(function (request) { return request(_this.axios, _this.basePath); });
534
+ return (0, exports.ServicesApiFp)(this.configuration).apiV2ServicesServiceIdGet(requestParameters.serviceId, requestParameters.xCloudhospitalPlatform, requestParameters.languageCode, requestParameters.returnDefaultValue, options).then(function (request) { return request(_this.axios, _this.basePath); });
517
535
  };
518
536
  /**
519
537
  *
@@ -525,7 +543,7 @@ var ServicesApi = /** @class */ (function (_super) {
525
543
  */
526
544
  ServicesApi.prototype.apiV2ServicesSlugGet = function (requestParameters, options) {
527
545
  var _this = this;
528
- return (0, exports.ServicesApiFp)(this.configuration).apiV2ServicesSlugGet(requestParameters.slug, requestParameters.hospitalId, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.previewSecret, options).then(function (request) { return request(_this.axios, _this.basePath); });
546
+ return (0, exports.ServicesApiFp)(this.configuration).apiV2ServicesSlugGet(requestParameters.slug, requestParameters.xCloudhospitalPlatform, requestParameters.hospitalId, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.previewSecret, options).then(function (request) { return request(_this.axios, _this.basePath); });
529
547
  };
530
548
  return ServicesApi;
531
549
  }(base_1.BaseAPI));
@@ -27,6 +27,7 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
27
27
  /**
28
28
  *
29
29
  * @summary Get all Specialties.
30
+ * @param {string} [xCloudhospitalPlatform] Platform identifier from request header
30
31
  * @param {string} [id]
31
32
  * @param {string} [name]
32
33
  * @param {string} [description]
@@ -43,10 +44,11 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
43
44
  * @param {*} [options] Override http request option.
44
45
  * @throws {RequiredError}
45
46
  */
46
- apiV2SpecialtiesGet: (id?: string, name?: string, description?: string, specialtyTypeId?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
47
+ apiV2SpecialtiesGet: (xCloudhospitalPlatform?: string, id?: string, name?: string, description?: string, specialtyTypeId?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
47
48
  /**
48
49
  *
49
50
  * @summary Get all Specialties Simple.
51
+ * @param {string} [xCloudhospitalPlatform] Platform identifier from request header
50
52
  * @param {string} [id]
51
53
  * @param {string} [name]
52
54
  * @param {string} [description]
@@ -63,7 +65,7 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
63
65
  * @param {*} [options] Override http request option.
64
66
  * @throws {RequiredError}
65
67
  */
66
- apiV2SpecialtiesSimpleGet: (id?: string, name?: string, description?: string, specialtyTypeId?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
68
+ apiV2SpecialtiesSimpleGet: (xCloudhospitalPlatform?: string, id?: string, name?: string, description?: string, specialtyTypeId?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
67
69
  /**
68
70
  *
69
71
  * @summary Get specialty by slug
@@ -116,6 +118,7 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration) => {
116
118
  /**
117
119
  *
118
120
  * @summary Get all Specialties.
121
+ * @param {string} [xCloudhospitalPlatform] Platform identifier from request header
119
122
  * @param {string} [id]
120
123
  * @param {string} [name]
121
124
  * @param {string} [description]
@@ -132,10 +135,11 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration) => {
132
135
  * @param {*} [options] Override http request option.
133
136
  * @throws {RequiredError}
134
137
  */
135
- apiV2SpecialtiesGet(id?: string, name?: string, description?: string, specialtyTypeId?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpecialtiesModel>>;
138
+ apiV2SpecialtiesGet(xCloudhospitalPlatform?: string, id?: string, name?: string, description?: string, specialtyTypeId?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpecialtiesModel>>;
136
139
  /**
137
140
  *
138
141
  * @summary Get all Specialties Simple.
142
+ * @param {string} [xCloudhospitalPlatform] Platform identifier from request header
139
143
  * @param {string} [id]
140
144
  * @param {string} [name]
141
145
  * @param {string} [description]
@@ -152,7 +156,7 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration) => {
152
156
  * @param {*} [options] Override http request option.
153
157
  * @throws {RequiredError}
154
158
  */
155
- apiV2SpecialtiesSimpleGet(id?: string, name?: string, description?: string, specialtyTypeId?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpecialtiesSimpleModel>>;
159
+ apiV2SpecialtiesSimpleGet(xCloudhospitalPlatform?: string, id?: string, name?: string, description?: string, specialtyTypeId?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpecialtiesSimpleModel>>;
156
160
  /**
157
161
  *
158
162
  * @summary Get specialty by slug
@@ -205,6 +209,7 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration, base
205
209
  /**
206
210
  *
207
211
  * @summary Get all Specialties.
212
+ * @param {string} [xCloudhospitalPlatform] Platform identifier from request header
208
213
  * @param {string} [id]
209
214
  * @param {string} [name]
210
215
  * @param {string} [description]
@@ -221,10 +226,11 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration, base
221
226
  * @param {*} [options] Override http request option.
222
227
  * @throws {RequiredError}
223
228
  */
224
- apiV2SpecialtiesGet(id?: string, name?: string, description?: string, specialtyTypeId?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<SpecialtiesModel>;
229
+ apiV2SpecialtiesGet(xCloudhospitalPlatform?: string, id?: string, name?: string, description?: string, specialtyTypeId?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<SpecialtiesModel>;
225
230
  /**
226
231
  *
227
232
  * @summary Get all Specialties Simple.
233
+ * @param {string} [xCloudhospitalPlatform] Platform identifier from request header
228
234
  * @param {string} [id]
229
235
  * @param {string} [name]
230
236
  * @param {string} [description]
@@ -241,7 +247,7 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration, base
241
247
  * @param {*} [options] Override http request option.
242
248
  * @throws {RequiredError}
243
249
  */
244
- apiV2SpecialtiesSimpleGet(id?: string, name?: string, description?: string, specialtyTypeId?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<SpecialtiesSimpleModel>;
250
+ apiV2SpecialtiesSimpleGet(xCloudhospitalPlatform?: string, id?: string, name?: string, description?: string, specialtyTypeId?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<SpecialtiesSimpleModel>;
245
251
  /**
246
252
  *
247
253
  * @summary Get specialty by slug
@@ -292,6 +298,12 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration, base
292
298
  * @interface SpecialtiesApiApiV2SpecialtiesGetRequest
293
299
  */
294
300
  export interface SpecialtiesApiApiV2SpecialtiesGetRequest {
301
+ /**
302
+ * Platform identifier from request header
303
+ * @type {string}
304
+ * @memberof SpecialtiesApiApiV2SpecialtiesGet
305
+ */
306
+ readonly xCloudhospitalPlatform?: string;
295
307
  /**
296
308
  *
297
309
  * @type {string}
@@ -377,6 +389,12 @@ export interface SpecialtiesApiApiV2SpecialtiesGetRequest {
377
389
  * @interface SpecialtiesApiApiV2SpecialtiesSimpleGetRequest
378
390
  */
379
391
  export interface SpecialtiesApiApiV2SpecialtiesSimpleGetRequest {
392
+ /**
393
+ * Platform identifier from request header
394
+ * @type {string}
395
+ * @memberof SpecialtiesApiApiV2SpecialtiesSimpleGet
396
+ */
397
+ readonly xCloudhospitalPlatform?: string;
380
398
  /**
381
399
  *
382
400
  * @type {string}
@@ -1 +1 @@
1
- {"version":3,"file":"specialties-api.d.ts","sourceRoot":"","sources":["../../src/api/specialties-api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAoB,EAAE,YAAY,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,OAAO,CAAC;AACrF,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAKjD,OAAO,EAAiC,WAAW,EAAE,OAAO,EAAiB,MAAM,SAAS,CAAC;AAE7F,OAAO,EAAE,aAAa,EAAE,MAAM,WAAW,CAAC;AAE1C,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AAEvC,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AAEtC,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAExC,OAAO,EAAE,gBAAgB,EAAE,MAAM,WAAW,CAAC;AAE7C,OAAO,EAAE,sBAAsB,EAAE,MAAM,WAAW,CAAC;AAEnD,OAAO,EAAE,cAAc,EAAE,MAAM,WAAW,CAAC;AAC3C;;;GAGG;AACH,eAAO,MAAM,+BAA+B,mBAA6B,aAAa;IAE9E;;;;;;;;;;;;;;;;;;OAkBG;+BAC8B,MAAM,SAAS,MAAM,gBAAgB,MAAM,oBAAoB,MAAM,kBAAkB,aAAa,eAAe,MAAM,YAAY,IAAI,iBAAiB,MAAM,QAAQ,KAAK,CAAC,MAAM,CAAC,uBAAuB,OAAO,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAgFlW;;;;;;;;;;;;;;;;;;OAkBG;qCACoC,MAAM,SAAS,MAAM,gBAAgB,MAAM,oBAAoB,MAAM,kBAAkB,aAAa,eAAe,MAAM,YAAY,IAAI,iBAAiB,MAAM,QAAQ,KAAK,CAAC,MAAM,CAAC,uBAAuB,OAAO,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAgFxW;;;;;;;;;OASG;oCACmC,MAAM,iBAAiB,MAAM,uBAAuB,OAAO,kBAAkB,MAAM,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAuClL;;;;;;;;OAQG;kDACiD,MAAM,iBAAiB,MAAM,uBAAuB,OAAO,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAmCxK;;;;;;;;;;;OAWG;wDACuD,MAAM,OAAO,MAAM,cAAc,SAAS,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAiDlN;;;;;;;OAOG;+DAC8D,MAAM,WAAW,MAAM,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;CA+BxJ,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,gBAAgB,mBAA4B,aAAa;IAG9D;;;;;;;;;;;;;;;;;;OAkBG;6BAC4B,MAAM,SAAS,MAAM,gBAAgB,MAAM,oBAAoB,MAAM,kBAAkB,aAAa,eAAe,MAAM,YAAY,IAAI,iBAAiB,MAAM,QAAQ,KAAK,CAAC,MAAM,CAAC,uBAAuB,OAAO,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,kBAAkB,GAAG,OAAO,CAAC,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,QAAQ,CAAC,EAAE,MAAM,KAAK,YAAY,CAAC,gBAAgB,CAAC,CAAC;IAI7Z;;;;;;;;;;;;;;;;;;OAkBG;mCACkC,MAAM,SAAS,MAAM,gBAAgB,MAAM,oBAAoB,MAAM,kBAAkB,aAAa,eAAe,MAAM,YAAY,IAAI,iBAAiB,MAAM,QAAQ,KAAK,CAAC,MAAM,CAAC,uBAAuB,OAAO,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,kBAAkB,GAAG,OAAO,CAAC,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,QAAQ,CAAC,EAAE,MAAM,KAAK,YAAY,CAAC,sBAAsB,CAAC,CAAC;IAIza;;;;;;;;;OASG;kCACiC,MAAM,iBAAiB,MAAM,uBAAuB,OAAO,kBAAkB,MAAM,YAAY,kBAAkB,GAAG,OAAO,CAAC,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,QAAQ,CAAC,EAAE,MAAM,KAAK,YAAY,CAAC,cAAc,CAAC,CAAC;IAI3O;;;;;;;;OAQG;gDAC+C,MAAM,iBAAiB,MAAM,uBAAuB,OAAO,YAAY,kBAAkB,GAAG,OAAO,CAAC,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,QAAQ,CAAC,EAAE,MAAM,KAAK,YAAY,CAAC,cAAc,CAAC,CAAC;IAIjO;;;;;;;;;;;OAWG;sDACqD,MAAM,OAAO,MAAM,cAAc,SAAS,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,kBAAkB,GAAG,OAAO,CAAC,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,QAAQ,CAAC,EAAE,MAAM,KAAK,YAAY,CAAC,WAAW,CAAC,CAAC;IAIxQ;;;;;;;OAOG;6DAC4D,MAAM,WAAW,MAAM,YAAY,kBAAkB,GAAG,OAAO,CAAC,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,QAAQ,CAAC,EAAE,MAAM,KAAK,YAAY,CAAC,UAAU,CAAC,CAAC;CAK7M,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,qBAAqB,mBAA6B,aAAa,aAAa,MAAM,UAAU,aAAa;IAG9G;;;;;;;;;;;;;;;;;;OAkBG;6BACsB,MAAM,SAAS,MAAM,gBAAgB,MAAM,oBAAoB,MAAM,kBAAkB,aAAa,eAAe,MAAM,YAAY,IAAI,iBAAiB,MAAM,QAAQ,KAAK,CAAC,MAAM,CAAC,uBAAuB,OAAO,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,GAAG,GAAG,YAAY,CAAC,gBAAgB,CAAC;IAGjV;;;;;;;;;;;;;;;;;;OAkBG;mCAC4B,MAAM,SAAS,MAAM,gBAAgB,MAAM,oBAAoB,MAAM,kBAAkB,aAAa,eAAe,MAAM,YAAY,IAAI,iBAAiB,MAAM,QAAQ,KAAK,CAAC,MAAM,CAAC,uBAAuB,OAAO,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,GAAG,GAAG,YAAY,CAAC,sBAAsB,CAAC;IAG7V;;;;;;;;;OASG;kCAC2B,MAAM,iBAAiB,MAAM,uBAAuB,OAAO,kBAAkB,MAAM,YAAY,GAAG,GAAG,YAAY,CAAC,cAAc,CAAC;IAG/J;;;;;;;;OAQG;gDACyC,MAAM,iBAAiB,MAAM,uBAAuB,OAAO,YAAY,GAAG,GAAG,YAAY,CAAC,cAAc,CAAC;IAGrJ;;;;;;;;;;;OAWG;sDAC+C,MAAM,OAAO,MAAM,cAAc,SAAS,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,GAAG,GAAG,YAAY,CAAC,WAAW,CAAC;IAG5L;;;;;;;OAOG;6DACsD,MAAM,WAAW,MAAM,YAAY,GAAG,GAAG,YAAY,CAAC,UAAU,CAAC;CAIjI,CAAC;AAEF;;;;GAIG;AACH,MAAM,WAAW,wCAAwC;IACrD;;;;OAIG;IACH,QAAQ,CAAC,EAAE,CAAC,EAAE,MAAM,CAAA;IAEpB;;;;OAIG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAA;IAEtB;;;;OAIG;IACH,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,CAAA;IAE7B;;;;OAIG;IACH,QAAQ,CAAC,eAAe,CAAC,EAAE,MAAM,CAAA;IAEjC;;;;OAIG;IACH,QAAQ,CAAC,aAAa,CAAC,EAAE,aAAa,CAAA;IAEtC;;;;OAIG;IACH,QAAQ,CAAC,UAAU,CAAC,EAAE,MAAM,CAAA;IAE5B;;;;OAIG;IACH,QAAQ,CAAC,OAAO,CAAC,EAAE,IAAI,CAAA;IAEvB;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;IAE9B;;;;OAIG;IACH,QAAQ,CAAC,GAAG,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAA;IAE5B;;;;OAIG;IACH,QAAQ,CAAC,kBAAkB,CAAC,EAAE,OAAO,CAAA;IAErC;;;;OAIG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAA;IAEtB;;;;OAIG;IACH,QAAQ,CAAC,KAAK,CAAC,EAAE,MAAM,CAAA;IAEvB;;;;OAIG;IACH,QAAQ,CAAC,aAAa,CAAC,EAAE,IAAI,CAAA;CAChC;AAED;;;;GAIG;AACH,MAAM,WAAW,8CAA8C;IAC3D;;;;OAIG;IACH,QAAQ,CAAC,EAAE,CAAC,EAAE,MAAM,CAAA;IAEpB;;;;OAIG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAA;IAEtB;;;;OAIG;IACH,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,CAAA;IAE7B;;;;OAIG;IACH,QAAQ,CAAC,eAAe,CAAC,EAAE,MAAM,CAAA;IAEjC;;;;OAIG;IACH,QAAQ,CAAC,aAAa,CAAC,EAAE,aAAa,CAAA;IAEtC;;;;OAIG;IACH,QAAQ,CAAC,UAAU,CAAC,EAAE,MAAM,CAAA;IAE5B;;;;OAIG;IACH,QAAQ,CAAC,OAAO,CAAC,EAAE,IAAI,CAAA;IAEvB;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;IAE9B;;;;OAIG;IACH,QAAQ,CAAC,GAAG,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAA;IAE5B;;;;OAIG;IACH,QAAQ,CAAC,kBAAkB,CAAC,EAAE,OAAO,CAAA;IAErC;;;;OAIG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAA;IAEtB;;;;OAIG;IACH,QAAQ,CAAC,KAAK,CAAC,EAAE,MAAM,CAAA;IAEvB;;;;OAIG;IACH,QAAQ,CAAC,aAAa,CAAC,EAAE,IAAI,CAAA;CAChC;AAED;;;;GAIG;AACH,MAAM,WAAW,4CAA4C;IACzD;;;;OAIG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAA;IAErB;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;IAE9B;;;;OAIG;IACH,QAAQ,CAAC,kBAAkB,CAAC,EAAE,OAAO,CAAA;IAErC;;;;OAIG;IACH,QAAQ,CAAC,aAAa,CAAC,EAAE,MAAM,CAAA;CAClC;AAED;;;;GAIG;AACH,MAAM,WAAW,mDAAmD;IAChE;;;;OAIG;IACH,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAA;IAE5B;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;IAE9B;;;;OAIG;IACH,QAAQ,CAAC,kBAAkB,CAAC,EAAE,OAAO,CAAA;CACxC;AAED;;;;GAIG;AACH,MAAM,WAAW,yDAAyD;IACtE;;;;OAIG;IACH,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAA;IAE5B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,CAAC,EAAE,MAAM,CAAA;IAEpB;;;;OAIG;IACH,QAAQ,CAAC,SAAS,CAAC,EAAE,SAAS,CAAA;IAE9B;;;;OAIG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAA;IAEtB;;;;OAIG;IACH,QAAQ,CAAC,KAAK,CAAC,EAAE,MAAM,CAAA;IAEvB;;;;OAIG;IACH,QAAQ,CAAC,aAAa,CAAC,EAAE,IAAI,CAAA;CAChC;AAED;;;;GAIG;AACH,MAAM,WAAW,gEAAgE;IAC7E;;;;OAIG;IACH,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAA;IAE5B;;;;OAIG;IACH,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAA;CAC3B;AAED;;;;;GAKG;AACH,qBAAa,cAAe,SAAQ,OAAO;IACvC;;;;;;;OAOG;IACI,mBAAmB,CAAC,iBAAiB,GAAE,wCAA6C,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAIzH;;;;;;;OAOG;IACI,yBAAyB,CAAC,iBAAiB,GAAE,8CAAmD,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAIrI;;;;;;;OAOG;IACI,uBAAuB,CAAC,iBAAiB,EAAE,4CAA4C,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAI5H;;;;;;;OAOG;IACI,8BAA8B,CAAC,iBAAiB,EAAE,mDAAmD,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAI1I;;;;;;;OAOG;IACI,oCAAoC,CAAC,iBAAiB,EAAE,yDAAyD,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAItJ;;;;;;;OAOG;IACI,2CAA2C,CAAC,iBAAiB,EAAE,gEAAgE,EAAE,OAAO,CAAC,EAAE,kBAAkB;CAGvK"}
1
+ {"version":3,"file":"specialties-api.d.ts","sourceRoot":"","sources":["../../src/api/specialties-api.ts"],"names":[],"mappings":"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"}
@@ -104,6 +104,7 @@ var SpecialtiesApiAxiosParamCreator = function (configuration) {
104
104
  /**
105
105
  *
106
106
  * @summary Get all Specialties.
107
+ * @param {string} [xCloudhospitalPlatform] Platform identifier from request header
107
108
  * @param {string} [id]
108
109
  * @param {string} [name]
109
110
  * @param {string} [description]
@@ -120,12 +121,12 @@ var SpecialtiesApiAxiosParamCreator = function (configuration) {
120
121
  * @param {*} [options] Override http request option.
121
122
  * @throws {RequiredError}
122
123
  */
123
- apiV2SpecialtiesGet: function (id_1, name_1, description_1, specialtyTypeId_1, marketingType_1, hospitalId_1, created_1, languageCode_1, ids_1, returnDefaultValue_1, page_1, limit_1, lastRetrieved_1) {
124
+ apiV2SpecialtiesGet: function (xCloudhospitalPlatform_1, id_1, name_1, description_1, specialtyTypeId_1, marketingType_1, hospitalId_1, created_1, languageCode_1, ids_1, returnDefaultValue_1, page_1, limit_1, lastRetrieved_1) {
124
125
  var args_1 = [];
125
- for (var _i = 13; _i < arguments.length; _i++) {
126
- args_1[_i - 13] = arguments[_i];
126
+ for (var _i = 14; _i < arguments.length; _i++) {
127
+ args_1[_i - 14] = arguments[_i];
127
128
  }
128
- return __awaiter(_this, __spreadArray([id_1, name_1, description_1, specialtyTypeId_1, marketingType_1, hospitalId_1, created_1, languageCode_1, ids_1, returnDefaultValue_1, page_1, limit_1, lastRetrieved_1], args_1, true), void 0, function (id, name, description, specialtyTypeId, marketingType, hospitalId, created, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
129
+ return __awaiter(_this, __spreadArray([xCloudhospitalPlatform_1, id_1, name_1, description_1, specialtyTypeId_1, marketingType_1, hospitalId_1, created_1, languageCode_1, ids_1, returnDefaultValue_1, page_1, limit_1, lastRetrieved_1], args_1, true), void 0, function (xCloudhospitalPlatform, id, name, description, specialtyTypeId, marketingType, hospitalId, created, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
129
130
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
130
131
  if (options === void 0) { options = {}; }
131
132
  return __generator(this, function (_a) {
@@ -180,6 +181,9 @@ var SpecialtiesApiAxiosParamCreator = function (configuration) {
180
181
  lastRetrieved.toISOString() :
181
182
  lastRetrieved;
182
183
  }
184
+ if (xCloudhospitalPlatform != null) {
185
+ localVarHeaderParameter['x-cloudhospital-platform'] = String(xCloudhospitalPlatform);
186
+ }
183
187
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
184
188
  headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
185
189
  localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -193,6 +197,7 @@ var SpecialtiesApiAxiosParamCreator = function (configuration) {
193
197
  /**
194
198
  *
195
199
  * @summary Get all Specialties Simple.
200
+ * @param {string} [xCloudhospitalPlatform] Platform identifier from request header
196
201
  * @param {string} [id]
197
202
  * @param {string} [name]
198
203
  * @param {string} [description]
@@ -209,12 +214,12 @@ var SpecialtiesApiAxiosParamCreator = function (configuration) {
209
214
  * @param {*} [options] Override http request option.
210
215
  * @throws {RequiredError}
211
216
  */
212
- apiV2SpecialtiesSimpleGet: function (id_1, name_1, description_1, specialtyTypeId_1, marketingType_1, hospitalId_1, created_1, languageCode_1, ids_1, returnDefaultValue_1, page_1, limit_1, lastRetrieved_1) {
217
+ apiV2SpecialtiesSimpleGet: function (xCloudhospitalPlatform_1, id_1, name_1, description_1, specialtyTypeId_1, marketingType_1, hospitalId_1, created_1, languageCode_1, ids_1, returnDefaultValue_1, page_1, limit_1, lastRetrieved_1) {
213
218
  var args_1 = [];
214
- for (var _i = 13; _i < arguments.length; _i++) {
215
- args_1[_i - 13] = arguments[_i];
219
+ for (var _i = 14; _i < arguments.length; _i++) {
220
+ args_1[_i - 14] = arguments[_i];
216
221
  }
217
- return __awaiter(_this, __spreadArray([id_1, name_1, description_1, specialtyTypeId_1, marketingType_1, hospitalId_1, created_1, languageCode_1, ids_1, returnDefaultValue_1, page_1, limit_1, lastRetrieved_1], args_1, true), void 0, function (id, name, description, specialtyTypeId, marketingType, hospitalId, created, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
222
+ return __awaiter(_this, __spreadArray([xCloudhospitalPlatform_1, id_1, name_1, description_1, specialtyTypeId_1, marketingType_1, hospitalId_1, created_1, languageCode_1, ids_1, returnDefaultValue_1, page_1, limit_1, lastRetrieved_1], args_1, true), void 0, function (xCloudhospitalPlatform, id, name, description, specialtyTypeId, marketingType, hospitalId, created, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
218
223
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
219
224
  if (options === void 0) { options = {}; }
220
225
  return __generator(this, function (_a) {
@@ -269,6 +274,9 @@ var SpecialtiesApiAxiosParamCreator = function (configuration) {
269
274
  lastRetrieved.toISOString() :
270
275
  lastRetrieved;
271
276
  }
277
+ if (xCloudhospitalPlatform != null) {
278
+ localVarHeaderParameter['x-cloudhospital-platform'] = String(xCloudhospitalPlatform);
279
+ }
272
280
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
273
281
  headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
274
282
  localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -486,6 +494,7 @@ var SpecialtiesApiFp = function (configuration) {
486
494
  /**
487
495
  *
488
496
  * @summary Get all Specialties.
497
+ * @param {string} [xCloudhospitalPlatform] Platform identifier from request header
489
498
  * @param {string} [id]
490
499
  * @param {string} [name]
491
500
  * @param {string} [description]
@@ -502,12 +511,12 @@ var SpecialtiesApiFp = function (configuration) {
502
511
  * @param {*} [options] Override http request option.
503
512
  * @throws {RequiredError}
504
513
  */
505
- apiV2SpecialtiesGet: function (id, name, description, specialtyTypeId, marketingType, hospitalId, created, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
514
+ apiV2SpecialtiesGet: function (xCloudhospitalPlatform, id, name, description, specialtyTypeId, marketingType, hospitalId, created, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
506
515
  return __awaiter(this, void 0, void 0, function () {
507
516
  var localVarAxiosArgs;
508
517
  return __generator(this, function (_a) {
509
518
  switch (_a.label) {
510
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2SpecialtiesGet(id, name, description, specialtyTypeId, marketingType, hospitalId, created, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options)];
519
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2SpecialtiesGet(xCloudhospitalPlatform, id, name, description, specialtyTypeId, marketingType, hospitalId, created, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options)];
511
520
  case 1:
512
521
  localVarAxiosArgs = _a.sent();
513
522
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -518,6 +527,7 @@ var SpecialtiesApiFp = function (configuration) {
518
527
  /**
519
528
  *
520
529
  * @summary Get all Specialties Simple.
530
+ * @param {string} [xCloudhospitalPlatform] Platform identifier from request header
521
531
  * @param {string} [id]
522
532
  * @param {string} [name]
523
533
  * @param {string} [description]
@@ -534,12 +544,12 @@ var SpecialtiesApiFp = function (configuration) {
534
544
  * @param {*} [options] Override http request option.
535
545
  * @throws {RequiredError}
536
546
  */
537
- apiV2SpecialtiesSimpleGet: function (id, name, description, specialtyTypeId, marketingType, hospitalId, created, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
547
+ apiV2SpecialtiesSimpleGet: function (xCloudhospitalPlatform, id, name, description, specialtyTypeId, marketingType, hospitalId, created, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
538
548
  return __awaiter(this, void 0, void 0, function () {
539
549
  var localVarAxiosArgs;
540
550
  return __generator(this, function (_a) {
541
551
  switch (_a.label) {
542
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2SpecialtiesSimpleGet(id, name, description, specialtyTypeId, marketingType, hospitalId, created, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options)];
552
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2SpecialtiesSimpleGet(xCloudhospitalPlatform, id, name, description, specialtyTypeId, marketingType, hospitalId, created, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options)];
543
553
  case 1:
544
554
  localVarAxiosArgs = _a.sent();
545
555
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -651,6 +661,7 @@ var SpecialtiesApiFactory = function (configuration, basePath, axios) {
651
661
  /**
652
662
  *
653
663
  * @summary Get all Specialties.
664
+ * @param {string} [xCloudhospitalPlatform] Platform identifier from request header
654
665
  * @param {string} [id]
655
666
  * @param {string} [name]
656
667
  * @param {string} [description]
@@ -667,12 +678,13 @@ var SpecialtiesApiFactory = function (configuration, basePath, axios) {
667
678
  * @param {*} [options] Override http request option.
668
679
  * @throws {RequiredError}
669
680
  */
670
- apiV2SpecialtiesGet: function (id, name, description, specialtyTypeId, marketingType, hospitalId, created, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
671
- return localVarFp.apiV2SpecialtiesGet(id, name, description, specialtyTypeId, marketingType, hospitalId, created, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
681
+ apiV2SpecialtiesGet: function (xCloudhospitalPlatform, id, name, description, specialtyTypeId, marketingType, hospitalId, created, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
682
+ return localVarFp.apiV2SpecialtiesGet(xCloudhospitalPlatform, id, name, description, specialtyTypeId, marketingType, hospitalId, created, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
672
683
  },
673
684
  /**
674
685
  *
675
686
  * @summary Get all Specialties Simple.
687
+ * @param {string} [xCloudhospitalPlatform] Platform identifier from request header
676
688
  * @param {string} [id]
677
689
  * @param {string} [name]
678
690
  * @param {string} [description]
@@ -689,8 +701,8 @@ var SpecialtiesApiFactory = function (configuration, basePath, axios) {
689
701
  * @param {*} [options] Override http request option.
690
702
  * @throws {RequiredError}
691
703
  */
692
- apiV2SpecialtiesSimpleGet: function (id, name, description, specialtyTypeId, marketingType, hospitalId, created, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
693
- return localVarFp.apiV2SpecialtiesSimpleGet(id, name, description, specialtyTypeId, marketingType, hospitalId, created, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
704
+ apiV2SpecialtiesSimpleGet: function (xCloudhospitalPlatform, id, name, description, specialtyTypeId, marketingType, hospitalId, created, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
705
+ return localVarFp.apiV2SpecialtiesSimpleGet(xCloudhospitalPlatform, id, name, description, specialtyTypeId, marketingType, hospitalId, created, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
694
706
  },
695
707
  /**
696
708
  *
@@ -768,7 +780,7 @@ var SpecialtiesApi = /** @class */ (function (_super) {
768
780
  SpecialtiesApi.prototype.apiV2SpecialtiesGet = function (requestParameters, options) {
769
781
  var _this = this;
770
782
  if (requestParameters === void 0) { requestParameters = {}; }
771
- return (0, exports.SpecialtiesApiFp)(this.configuration).apiV2SpecialtiesGet(requestParameters.id, requestParameters.name, requestParameters.description, requestParameters.specialtyTypeId, requestParameters.marketingType, requestParameters.hospitalId, requestParameters.created, requestParameters.languageCode, requestParameters.ids, requestParameters.returnDefaultValue, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
783
+ return (0, exports.SpecialtiesApiFp)(this.configuration).apiV2SpecialtiesGet(requestParameters.xCloudhospitalPlatform, requestParameters.id, requestParameters.name, requestParameters.description, requestParameters.specialtyTypeId, requestParameters.marketingType, requestParameters.hospitalId, requestParameters.created, requestParameters.languageCode, requestParameters.ids, requestParameters.returnDefaultValue, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
772
784
  };
773
785
  /**
774
786
  *
@@ -781,7 +793,7 @@ var SpecialtiesApi = /** @class */ (function (_super) {
781
793
  SpecialtiesApi.prototype.apiV2SpecialtiesSimpleGet = function (requestParameters, options) {
782
794
  var _this = this;
783
795
  if (requestParameters === void 0) { requestParameters = {}; }
784
- return (0, exports.SpecialtiesApiFp)(this.configuration).apiV2SpecialtiesSimpleGet(requestParameters.id, requestParameters.name, requestParameters.description, requestParameters.specialtyTypeId, requestParameters.marketingType, requestParameters.hospitalId, requestParameters.created, requestParameters.languageCode, requestParameters.ids, requestParameters.returnDefaultValue, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
796
+ return (0, exports.SpecialtiesApiFp)(this.configuration).apiV2SpecialtiesSimpleGet(requestParameters.xCloudhospitalPlatform, requestParameters.id, requestParameters.name, requestParameters.description, requestParameters.specialtyTypeId, requestParameters.marketingType, requestParameters.hospitalId, requestParameters.created, requestParameters.languageCode, requestParameters.ids, requestParameters.returnDefaultValue, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
785
797
  };
786
798
  /**
787
799
  *