ch-api-client-typescript2 2.7.3 → 2.7.6

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/src/api.ts CHANGED
@@ -936,6 +936,12 @@ export interface BookingItemModel {
936
936
  * @memberof BookingItemModel
937
937
  */
938
938
  'hospitalSlug'?: string | null;
939
+ /**
940
+ *
941
+ * @type {string}
942
+ * @memberof BookingItemModel
943
+ */
944
+ 'hospitalTimeZone'?: string | null;
939
945
  /**
940
946
  *
941
947
  * @type {string}
@@ -1135,6 +1141,12 @@ export interface BookingModel {
1135
1141
  * @memberof BookingModel
1136
1142
  */
1137
1143
  'hospitalSlug'?: string | null;
1144
+ /**
1145
+ *
1146
+ * @type {string}
1147
+ * @memberof BookingModel
1148
+ */
1149
+ 'hospitalTimeZone'?: string | null;
1138
1150
  /**
1139
1151
  *
1140
1152
  * @type {string}
@@ -1574,6 +1586,12 @@ export interface ConsultationItemModel {
1574
1586
  * @memberof ConsultationItemModel
1575
1587
  */
1576
1588
  'hospitalSlug'?: string | null;
1589
+ /**
1590
+ *
1591
+ * @type {string}
1592
+ * @memberof ConsultationItemModel
1593
+ */
1594
+ 'hospitalTimeZone'?: string | null;
1577
1595
  /**
1578
1596
  *
1579
1597
  * @type {string}
@@ -1833,6 +1851,12 @@ export interface ConsultationModel {
1833
1851
  * @memberof ConsultationModel
1834
1852
  */
1835
1853
  'hospitalSlug'?: string | null;
1854
+ /**
1855
+ *
1856
+ * @type {string}
1857
+ * @memberof ConsultationModel
1858
+ */
1859
+ 'hospitalTimeZone'?: string | null;
1836
1860
  /**
1837
1861
  *
1838
1862
  * @type {string}
@@ -2888,7 +2912,7 @@ export interface CreateServiceReviewCommand {
2888
2912
  * @type {string}
2889
2913
  * @memberof CreateServiceReviewCommand
2890
2914
  */
2891
- 'patientId'?: string;
2915
+ 'patientId'?: string | null;
2892
2916
  /**
2893
2917
  *
2894
2918
  * @type {string}
@@ -5901,6 +5925,36 @@ export interface HospitalSpecialtyItemModel {
5901
5925
  * @memberof HospitalSpecialtyItemModel
5902
5926
  */
5903
5927
  'order'?: number;
5928
+ /**
5929
+ *
5930
+ * @type {string}
5931
+ * @memberof HospitalSpecialtyItemModel
5932
+ */
5933
+ 'title'?: string | null;
5934
+ /**
5935
+ *
5936
+ * @type {string}
5937
+ * @memberof HospitalSpecialtyItemModel
5938
+ */
5939
+ 'description'?: string | null;
5940
+ /**
5941
+ *
5942
+ * @type {string}
5943
+ * @memberof HospitalSpecialtyItemModel
5944
+ */
5945
+ 'body'?: string | null;
5946
+ /**
5947
+ *
5948
+ * @type {string}
5949
+ * @memberof HospitalSpecialtyItemModel
5950
+ */
5951
+ 'photo'?: string | null;
5952
+ /**
5953
+ *
5954
+ * @type {string}
5955
+ * @memberof HospitalSpecialtyItemModel
5956
+ */
5957
+ 'photoThumbnail'?: string | null;
5904
5958
  }
5905
5959
  /**
5906
5960
  *
@@ -5962,6 +6016,36 @@ export interface HospitalSpecialtyModel {
5962
6016
  * @memberof HospitalSpecialtyModel
5963
6017
  */
5964
6018
  'order'?: number;
6019
+ /**
6020
+ *
6021
+ * @type {string}
6022
+ * @memberof HospitalSpecialtyModel
6023
+ */
6024
+ 'title'?: string | null;
6025
+ /**
6026
+ *
6027
+ * @type {string}
6028
+ * @memberof HospitalSpecialtyModel
6029
+ */
6030
+ 'description'?: string | null;
6031
+ /**
6032
+ *
6033
+ * @type {string}
6034
+ * @memberof HospitalSpecialtyModel
6035
+ */
6036
+ 'body'?: string | null;
6037
+ /**
6038
+ *
6039
+ * @type {string}
6040
+ * @memberof HospitalSpecialtyModel
6041
+ */
6042
+ 'photo'?: string | null;
6043
+ /**
6044
+ *
6045
+ * @type {string}
6046
+ * @memberof HospitalSpecialtyModel
6047
+ */
6048
+ 'photoThumbnail'?: string | null;
5965
6049
  }
5966
6050
  /**
5967
6051
  *
@@ -16563,7 +16647,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
16563
16647
  * @summary Get all Hospitals.
16564
16648
  * @param {string} [hospitalId]
16565
16649
  * @param {string} [name]
16566
- * @param {string} [description]
16567
16650
  * @param {string} [countryId]
16568
16651
  * @param {Date} [created]
16569
16652
  * @param {MarketingType} [marketingType]
@@ -16581,7 +16664,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
16581
16664
  * @param {*} [options] Override http request option.
16582
16665
  * @throws {RequiredError}
16583
16666
  */
16584
- apiV2HospitalsGet: async (hospitalId?: string, name?: string, description?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
16667
+ apiV2HospitalsGet: async (hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
16585
16668
  const localVarPath = `/api/v2/hospitals`;
16586
16669
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
16587
16670
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -16602,10 +16685,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
16602
16685
  localVarQueryParameter['Name'] = name;
16603
16686
  }
16604
16687
 
16605
- if (description !== undefined) {
16606
- localVarQueryParameter['Description'] = description;
16607
- }
16608
-
16609
16688
  if (countryId !== undefined) {
16610
16689
  localVarQueryParameter['CountryId'] = countryId;
16611
16690
  }
@@ -17264,6 +17343,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
17264
17343
  * @param {string} [specialtyId]
17265
17344
  * @param {string} [specialtyName]
17266
17345
  * @param {string} [specialtyTypeId]
17346
+ * @param {string} [title]
17267
17347
  * @param {MarketingType} [marketingType]
17268
17348
  * @param {Date} [created]
17269
17349
  * @param {number} [page]
@@ -17272,7 +17352,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
17272
17352
  * @param {*} [options] Override http request option.
17273
17353
  * @throws {RequiredError}
17274
17354
  */
17275
- apiV2HospitalsHospitalIdSpecialtiesGet: async (hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, marketingType?: MarketingType, created?: Date, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
17355
+ apiV2HospitalsHospitalIdSpecialtiesGet: async (hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, created?: Date, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
17276
17356
  // verify required parameter 'hospitalId' is not null or undefined
17277
17357
  assertParamExists('apiV2HospitalsHospitalIdSpecialtiesGet', 'hospitalId', hospitalId)
17278
17358
  const localVarPath = `/api/v2/hospitals/{hospitalId}/specialties`
@@ -17308,6 +17388,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
17308
17388
  localVarQueryParameter['SpecialtyTypeId'] = specialtyTypeId;
17309
17389
  }
17310
17390
 
17391
+ if (title !== undefined) {
17392
+ localVarQueryParameter['Title'] = title;
17393
+ }
17394
+
17311
17395
  if (marketingType !== undefined) {
17312
17396
  localVarQueryParameter['MarketingType'] = marketingType;
17313
17397
  }
@@ -17680,7 +17764,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
17680
17764
  * @summary Get all Hospitals.
17681
17765
  * @param {string} [hospitalId]
17682
17766
  * @param {string} [name]
17683
- * @param {string} [description]
17684
17767
  * @param {string} [countryId]
17685
17768
  * @param {Date} [created]
17686
17769
  * @param {MarketingType} [marketingType]
@@ -17698,7 +17781,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
17698
17781
  * @param {*} [options] Override http request option.
17699
17782
  * @throws {RequiredError}
17700
17783
  */
17701
- apiV2HospitalsSimpleGet: async (hospitalId?: string, name?: string, description?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
17784
+ apiV2HospitalsSimpleGet: async (hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
17702
17785
  const localVarPath = `/api/v2/hospitals/simple`;
17703
17786
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
17704
17787
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -17719,10 +17802,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
17719
17802
  localVarQueryParameter['Name'] = name;
17720
17803
  }
17721
17804
 
17722
- if (description !== undefined) {
17723
- localVarQueryParameter['Description'] = description;
17724
- }
17725
-
17726
17805
  if (countryId !== undefined) {
17727
17806
  localVarQueryParameter['CountryId'] = countryId;
17728
17807
  }
@@ -17852,7 +17931,6 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
17852
17931
  * @summary Get all Hospitals.
17853
17932
  * @param {string} [hospitalId]
17854
17933
  * @param {string} [name]
17855
- * @param {string} [description]
17856
17934
  * @param {string} [countryId]
17857
17935
  * @param {Date} [created]
17858
17936
  * @param {MarketingType} [marketingType]
@@ -17870,8 +17948,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
17870
17948
  * @param {*} [options] Override http request option.
17871
17949
  * @throws {RequiredError}
17872
17950
  */
17873
- async apiV2HospitalsGet(hospitalId?: string, name?: string, description?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalsModel>> {
17874
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsGet(hospitalId, name, description, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options);
17951
+ async apiV2HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalsModel>> {
17952
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options);
17875
17953
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
17876
17954
  },
17877
17955
  /**
@@ -18043,6 +18121,7 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
18043
18121
  * @param {string} [specialtyId]
18044
18122
  * @param {string} [specialtyName]
18045
18123
  * @param {string} [specialtyTypeId]
18124
+ * @param {string} [title]
18046
18125
  * @param {MarketingType} [marketingType]
18047
18126
  * @param {Date} [created]
18048
18127
  * @param {number} [page]
@@ -18051,8 +18130,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
18051
18130
  * @param {*} [options] Override http request option.
18052
18131
  * @throws {RequiredError}
18053
18132
  */
18054
- async apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, marketingType?: MarketingType, created?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtiesModel>> {
18055
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, marketingType, created, page, limit, lastRetrieved, options);
18133
+ async apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, created?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtiesModel>> {
18134
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, created, page, limit, lastRetrieved, options);
18056
18135
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
18057
18136
  },
18058
18137
  /**
@@ -18148,7 +18227,6 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
18148
18227
  * @summary Get all Hospitals.
18149
18228
  * @param {string} [hospitalId]
18150
18229
  * @param {string} [name]
18151
- * @param {string} [description]
18152
18230
  * @param {string} [countryId]
18153
18231
  * @param {Date} [created]
18154
18232
  * @param {MarketingType} [marketingType]
@@ -18166,8 +18244,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
18166
18244
  * @param {*} [options] Override http request option.
18167
18245
  * @throws {RequiredError}
18168
18246
  */
18169
- async apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, description?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalsSimpleModel>> {
18170
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsSimpleGet(hospitalId, name, description, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options);
18247
+ async apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalsSimpleModel>> {
18248
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options);
18171
18249
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
18172
18250
  },
18173
18251
  /**
@@ -18197,7 +18275,6 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
18197
18275
  * @summary Get all Hospitals.
18198
18276
  * @param {string} [hospitalId]
18199
18277
  * @param {string} [name]
18200
- * @param {string} [description]
18201
18278
  * @param {string} [countryId]
18202
18279
  * @param {Date} [created]
18203
18280
  * @param {MarketingType} [marketingType]
@@ -18215,8 +18292,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
18215
18292
  * @param {*} [options] Override http request option.
18216
18293
  * @throws {RequiredError}
18217
18294
  */
18218
- apiV2HospitalsGet(hospitalId?: string, name?: string, description?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalsModel> {
18219
- return localVarFp.apiV2HospitalsGet(hospitalId, name, description, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
18295
+ apiV2HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalsModel> {
18296
+ return localVarFp.apiV2HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
18220
18297
  },
18221
18298
  /**
18222
18299
  *
@@ -18376,6 +18453,7 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
18376
18453
  * @param {string} [specialtyId]
18377
18454
  * @param {string} [specialtyName]
18378
18455
  * @param {string} [specialtyTypeId]
18456
+ * @param {string} [title]
18379
18457
  * @param {MarketingType} [marketingType]
18380
18458
  * @param {Date} [created]
18381
18459
  * @param {number} [page]
@@ -18384,8 +18462,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
18384
18462
  * @param {*} [options] Override http request option.
18385
18463
  * @throws {RequiredError}
18386
18464
  */
18387
- apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, marketingType?: MarketingType, created?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalSpecialtiesModel> {
18388
- return localVarFp.apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, marketingType, created, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
18465
+ apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, created?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalSpecialtiesModel> {
18466
+ return localVarFp.apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, created, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
18389
18467
  },
18390
18468
  /**
18391
18469
  *
@@ -18475,7 +18553,6 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
18475
18553
  * @summary Get all Hospitals.
18476
18554
  * @param {string} [hospitalId]
18477
18555
  * @param {string} [name]
18478
- * @param {string} [description]
18479
18556
  * @param {string} [countryId]
18480
18557
  * @param {Date} [created]
18481
18558
  * @param {MarketingType} [marketingType]
@@ -18493,8 +18570,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
18493
18570
  * @param {*} [options] Override http request option.
18494
18571
  * @throws {RequiredError}
18495
18572
  */
18496
- apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, description?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalsSimpleModel> {
18497
- return localVarFp.apiV2HospitalsSimpleGet(hospitalId, name, description, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
18573
+ apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalsSimpleModel> {
18574
+ return localVarFp.apiV2HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
18498
18575
  },
18499
18576
  /**
18500
18577
  *
@@ -18522,7 +18599,6 @@ export class HospitalsApi extends BaseAPI {
18522
18599
  * @summary Get all Hospitals.
18523
18600
  * @param {string} [hospitalId]
18524
18601
  * @param {string} [name]
18525
- * @param {string} [description]
18526
18602
  * @param {string} [countryId]
18527
18603
  * @param {Date} [created]
18528
18604
  * @param {MarketingType} [marketingType]
@@ -18541,8 +18617,8 @@ export class HospitalsApi extends BaseAPI {
18541
18617
  * @throws {RequiredError}
18542
18618
  * @memberof HospitalsApi
18543
18619
  */
18544
- public apiV2HospitalsGet(hospitalId?: string, name?: string, description?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
18545
- return HospitalsApiFp(this.configuration).apiV2HospitalsGet(hospitalId, name, description, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
18620
+ public apiV2HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
18621
+ return HospitalsApiFp(this.configuration).apiV2HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
18546
18622
  }
18547
18623
 
18548
18624
  /**
@@ -18725,6 +18801,7 @@ export class HospitalsApi extends BaseAPI {
18725
18801
  * @param {string} [specialtyId]
18726
18802
  * @param {string} [specialtyName]
18727
18803
  * @param {string} [specialtyTypeId]
18804
+ * @param {string} [title]
18728
18805
  * @param {MarketingType} [marketingType]
18729
18806
  * @param {Date} [created]
18730
18807
  * @param {number} [page]
@@ -18734,8 +18811,8 @@ export class HospitalsApi extends BaseAPI {
18734
18811
  * @throws {RequiredError}
18735
18812
  * @memberof HospitalsApi
18736
18813
  */
18737
- public apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, marketingType?: MarketingType, created?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
18738
- return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, marketingType, created, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
18814
+ public apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, created?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
18815
+ return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, created, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
18739
18816
  }
18740
18817
 
18741
18818
  /**
@@ -18836,7 +18913,6 @@ export class HospitalsApi extends BaseAPI {
18836
18913
  * @summary Get all Hospitals.
18837
18914
  * @param {string} [hospitalId]
18838
18915
  * @param {string} [name]
18839
- * @param {string} [description]
18840
18916
  * @param {string} [countryId]
18841
18917
  * @param {Date} [created]
18842
18918
  * @param {MarketingType} [marketingType]
@@ -18855,8 +18931,8 @@ export class HospitalsApi extends BaseAPI {
18855
18931
  * @throws {RequiredError}
18856
18932
  * @memberof HospitalsApi
18857
18933
  */
18858
- public apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, description?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
18859
- return HospitalsApiFp(this.configuration).apiV2HospitalsSimpleGet(hospitalId, name, description, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
18934
+ public apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
18935
+ return HospitalsApiFp(this.configuration).apiV2HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
18860
18936
  }
18861
18937
 
18862
18938
  /**
@@ -23171,14 +23247,13 @@ export const ServicesCategoriesApiAxiosParamCreator = function (configuration?:
23171
23247
  * @summary Get all ServiceCategories.
23172
23248
  * @param {string} [id]
23173
23249
  * @param {string} [name]
23174
- * @param {string} [description]
23175
23250
  * @param {number} [page]
23176
23251
  * @param {number} [limit]
23177
23252
  * @param {Date} [lastRetrieved]
23178
23253
  * @param {*} [options] Override http request option.
23179
23254
  * @throws {RequiredError}
23180
23255
  */
23181
- apiV2ServicescategoriesGet: async (id?: string, name?: string, description?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
23256
+ apiV2ServicescategoriesGet: async (id?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
23182
23257
  const localVarPath = `/api/v2/servicescategories`;
23183
23258
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
23184
23259
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -23199,10 +23274,6 @@ export const ServicesCategoriesApiAxiosParamCreator = function (configuration?:
23199
23274
  localVarQueryParameter['Name'] = name;
23200
23275
  }
23201
23276
 
23202
- if (description !== undefined) {
23203
- localVarQueryParameter['Description'] = description;
23204
- }
23205
-
23206
23277
  if (page !== undefined) {
23207
23278
  localVarQueryParameter['page'] = page;
23208
23279
  }
@@ -23277,15 +23348,14 @@ export const ServicesCategoriesApiFp = function(configuration?: Configuration) {
23277
23348
  * @summary Get all ServiceCategories.
23278
23349
  * @param {string} [id]
23279
23350
  * @param {string} [name]
23280
- * @param {string} [description]
23281
23351
  * @param {number} [page]
23282
23352
  * @param {number} [limit]
23283
23353
  * @param {Date} [lastRetrieved]
23284
23354
  * @param {*} [options] Override http request option.
23285
23355
  * @throws {RequiredError}
23286
23356
  */
23287
- async apiV2ServicescategoriesGet(id?: string, name?: string, description?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceCategoriesModel>> {
23288
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2ServicescategoriesGet(id, name, description, page, limit, lastRetrieved, options);
23357
+ async apiV2ServicescategoriesGet(id?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceCategoriesModel>> {
23358
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2ServicescategoriesGet(id, name, page, limit, lastRetrieved, options);
23289
23359
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
23290
23360
  },
23291
23361
  /**
@@ -23314,15 +23384,14 @@ export const ServicesCategoriesApiFactory = function (configuration?: Configurat
23314
23384
  * @summary Get all ServiceCategories.
23315
23385
  * @param {string} [id]
23316
23386
  * @param {string} [name]
23317
- * @param {string} [description]
23318
23387
  * @param {number} [page]
23319
23388
  * @param {number} [limit]
23320
23389
  * @param {Date} [lastRetrieved]
23321
23390
  * @param {*} [options] Override http request option.
23322
23391
  * @throws {RequiredError}
23323
23392
  */
23324
- apiV2ServicescategoriesGet(id?: string, name?: string, description?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ServiceCategoriesModel> {
23325
- return localVarFp.apiV2ServicescategoriesGet(id, name, description, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
23393
+ apiV2ServicescategoriesGet(id?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ServiceCategoriesModel> {
23394
+ return localVarFp.apiV2ServicescategoriesGet(id, name, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
23326
23395
  },
23327
23396
  /**
23328
23397
  *
@@ -23349,7 +23418,6 @@ export class ServicesCategoriesApi extends BaseAPI {
23349
23418
  * @summary Get all ServiceCategories.
23350
23419
  * @param {string} [id]
23351
23420
  * @param {string} [name]
23352
- * @param {string} [description]
23353
23421
  * @param {number} [page]
23354
23422
  * @param {number} [limit]
23355
23423
  * @param {Date} [lastRetrieved]
@@ -23357,8 +23425,8 @@ export class ServicesCategoriesApi extends BaseAPI {
23357
23425
  * @throws {RequiredError}
23358
23426
  * @memberof ServicesCategoriesApi
23359
23427
  */
23360
- public apiV2ServicescategoriesGet(id?: string, name?: string, description?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
23361
- return ServicesCategoriesApiFp(this.configuration).apiV2ServicescategoriesGet(id, name, description, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
23428
+ public apiV2ServicescategoriesGet(id?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
23429
+ return ServicesCategoriesApiFp(this.configuration).apiV2ServicescategoriesGet(id, name, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
23362
23430
  }
23363
23431
 
23364
23432
  /**