ch-admin-api-client-typescript 2.5.9 → 2.6.3
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/lib/api.d.ts +28 -56
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +14 -51
- package/package.json +1 -1
- package/src/api.ts +34 -58
package/src/api.ts
CHANGED
|
@@ -3319,10 +3319,10 @@ export interface CreateCountryCommand {
|
|
|
3319
3319
|
'content'?: string | null;
|
|
3320
3320
|
/**
|
|
3321
3321
|
*
|
|
3322
|
-
* @type {
|
|
3322
|
+
* @type {string}
|
|
3323
3323
|
* @memberof CreateCountryCommand
|
|
3324
3324
|
*/
|
|
3325
|
-
'
|
|
3325
|
+
'logo'?: string | null;
|
|
3326
3326
|
}
|
|
3327
3327
|
/**
|
|
3328
3328
|
*
|
|
@@ -9032,6 +9032,12 @@ export interface ServiceCategoryModel {
|
|
|
9032
9032
|
* @memberof ServiceCategoryModel
|
|
9033
9033
|
*/
|
|
9034
9034
|
'services'?: Array<HospitalServiceItemModel> | null;
|
|
9035
|
+
/**
|
|
9036
|
+
*
|
|
9037
|
+
* @type {string}
|
|
9038
|
+
* @memberof ServiceCategoryModel
|
|
9039
|
+
*/
|
|
9040
|
+
'languageCode'?: string | null;
|
|
9035
9041
|
}
|
|
9036
9042
|
/**
|
|
9037
9043
|
*
|
|
@@ -10176,6 +10182,12 @@ export interface UpdateCountryCommand {
|
|
|
10176
10182
|
* @memberof UpdateCountryCommand
|
|
10177
10183
|
*/
|
|
10178
10184
|
'slug'?: string | null;
|
|
10185
|
+
/**
|
|
10186
|
+
*
|
|
10187
|
+
* @type {string}
|
|
10188
|
+
* @memberof UpdateCountryCommand
|
|
10189
|
+
*/
|
|
10190
|
+
'logo'?: string | null;
|
|
10179
10191
|
/**
|
|
10180
10192
|
*
|
|
10181
10193
|
* @type {string}
|
|
@@ -10812,19 +10824,19 @@ export interface UpdateHospitalServiceCommand {
|
|
|
10812
10824
|
* @type {number}
|
|
10813
10825
|
* @memberof UpdateHospitalServiceCommand
|
|
10814
10826
|
*/
|
|
10815
|
-
'minPrice'?: number;
|
|
10827
|
+
'minPrice'?: number | null;
|
|
10816
10828
|
/**
|
|
10817
10829
|
*
|
|
10818
10830
|
* @type {number}
|
|
10819
10831
|
* @memberof UpdateHospitalServiceCommand
|
|
10820
10832
|
*/
|
|
10821
|
-
'maxPrice'?: number;
|
|
10833
|
+
'maxPrice'?: number | null;
|
|
10822
10834
|
/**
|
|
10823
10835
|
*
|
|
10824
10836
|
* @type {boolean}
|
|
10825
10837
|
* @memberof UpdateHospitalServiceCommand
|
|
10826
10838
|
*/
|
|
10827
|
-
'priceReuqest'?: boolean;
|
|
10839
|
+
'priceReuqest'?: boolean | null;
|
|
10828
10840
|
/**
|
|
10829
10841
|
*
|
|
10830
10842
|
* @type {Procedure}
|
|
@@ -18644,7 +18656,6 @@ export const CountriesApiAxiosParamCreator = function (configuration?: Configura
|
|
|
18644
18656
|
},
|
|
18645
18657
|
/**
|
|
18646
18658
|
*
|
|
18647
|
-
* @summary Get country by slug.
|
|
18648
18659
|
* @param {string} slug
|
|
18649
18660
|
* @param {string} [languageCode]
|
|
18650
18661
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18845,7 +18856,6 @@ export const CountriesApiFp = function(configuration?: Configuration) {
|
|
|
18845
18856
|
},
|
|
18846
18857
|
/**
|
|
18847
18858
|
*
|
|
18848
|
-
* @summary Get country by slug.
|
|
18849
18859
|
* @param {string} slug
|
|
18850
18860
|
* @param {string} [languageCode]
|
|
18851
18861
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -19000,7 +19010,6 @@ export const CountriesApiFactory = function (configuration?: Configuration, base
|
|
|
19000
19010
|
},
|
|
19001
19011
|
/**
|
|
19002
19012
|
*
|
|
19003
|
-
* @summary Get country by slug.
|
|
19004
19013
|
* @param {string} slug
|
|
19005
19014
|
* @param {string} [languageCode]
|
|
19006
19015
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -19176,7 +19185,6 @@ export class CountriesApi extends BaseAPI {
|
|
|
19176
19185
|
|
|
19177
19186
|
/**
|
|
19178
19187
|
*
|
|
19179
|
-
* @summary Get country by slug.
|
|
19180
19188
|
* @param {string} slug
|
|
19181
19189
|
* @param {string} [languageCode]
|
|
19182
19190
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -21445,7 +21453,6 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
21445
21453
|
},
|
|
21446
21454
|
/**
|
|
21447
21455
|
*
|
|
21448
|
-
* @summary Get Doctor.
|
|
21449
21456
|
* @param {string} doctorId
|
|
21450
21457
|
* @param {string} [languageCode]
|
|
21451
21458
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22399,7 +22406,6 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
22399
22406
|
},
|
|
22400
22407
|
/**
|
|
22401
22408
|
*
|
|
22402
|
-
* @summary Get Doctor by slug.
|
|
22403
22409
|
* @param {string} slug
|
|
22404
22410
|
* @param {string} [languageCode]
|
|
22405
22411
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22501,7 +22507,7 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
22501
22507
|
* @param {*} [options] Override http request option.
|
|
22502
22508
|
* @throws {RequiredError}
|
|
22503
22509
|
*/
|
|
22504
|
-
async apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
22510
|
+
async apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationModel>> {
|
|
22505
22511
|
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsDoctorIdAffiliationsPost(doctorId, createDoctorAffiliationCommand, options);
|
|
22506
22512
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
22507
22513
|
},
|
|
@@ -22654,7 +22660,6 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
22654
22660
|
},
|
|
22655
22661
|
/**
|
|
22656
22662
|
*
|
|
22657
|
-
* @summary Get Doctor.
|
|
22658
22663
|
* @param {string} doctorId
|
|
22659
22664
|
* @param {string} [languageCode]
|
|
22660
22665
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22910,7 +22915,6 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
22910
22915
|
},
|
|
22911
22916
|
/**
|
|
22912
22917
|
*
|
|
22913
|
-
* @summary Get Doctor by slug.
|
|
22914
22918
|
* @param {string} slug
|
|
22915
22919
|
* @param {string} [languageCode]
|
|
22916
22920
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22974,7 +22978,7 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
22974
22978
|
* @param {*} [options] Override http request option.
|
|
22975
22979
|
* @throws {RequiredError}
|
|
22976
22980
|
*/
|
|
22977
|
-
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: any): AxiosPromise<
|
|
22981
|
+
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: any): AxiosPromise<DoctorAffiliationModel> {
|
|
22978
22982
|
return localVarFp.apiV1DoctorsDoctorIdAffiliationsPost(doctorId, createDoctorAffiliationCommand, options).then((request) => request(axios, basePath));
|
|
22979
22983
|
},
|
|
22980
22984
|
/**
|
|
@@ -23115,7 +23119,6 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
23115
23119
|
},
|
|
23116
23120
|
/**
|
|
23117
23121
|
*
|
|
23118
|
-
* @summary Get Doctor.
|
|
23119
23122
|
* @param {string} doctorId
|
|
23120
23123
|
* @param {string} [languageCode]
|
|
23121
23124
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23352,7 +23355,6 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
23352
23355
|
},
|
|
23353
23356
|
/**
|
|
23354
23357
|
*
|
|
23355
|
-
* @summary Get Doctor by slug.
|
|
23356
23358
|
* @param {string} slug
|
|
23357
23359
|
* @param {string} [languageCode]
|
|
23358
23360
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23586,7 +23588,6 @@ export class DoctorsApi extends BaseAPI {
|
|
|
23586
23588
|
|
|
23587
23589
|
/**
|
|
23588
23590
|
*
|
|
23589
|
-
* @summary Get Doctor.
|
|
23590
23591
|
* @param {string} doctorId
|
|
23591
23592
|
* @param {string} [languageCode]
|
|
23592
23593
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23861,7 +23862,6 @@ export class DoctorsApi extends BaseAPI {
|
|
|
23861
23862
|
|
|
23862
23863
|
/**
|
|
23863
23864
|
*
|
|
23864
|
-
* @summary Get Doctor by slug.
|
|
23865
23865
|
* @param {string} slug
|
|
23866
23866
|
* @param {string} [languageCode]
|
|
23867
23867
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -27852,7 +27852,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
27852
27852
|
},
|
|
27853
27853
|
/**
|
|
27854
27854
|
*
|
|
27855
|
-
* @summary Delete HospitalService
|
|
27856
27855
|
* @param {string} hospitalId
|
|
27857
27856
|
* @param {string} specialtyId
|
|
27858
27857
|
* @param {string} serviceId
|
|
@@ -27898,7 +27897,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
27898
27897
|
},
|
|
27899
27898
|
/**
|
|
27900
27899
|
*
|
|
27901
|
-
* @summary Get HospitalService.
|
|
27902
27900
|
* @param {string} hospitalId
|
|
27903
27901
|
* @param {string} specialtyId
|
|
27904
27902
|
* @param {string} serviceId
|
|
@@ -28442,7 +28440,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
28442
28440
|
},
|
|
28443
28441
|
/**
|
|
28444
28442
|
*
|
|
28445
|
-
* @summary Get Hospital by slug.
|
|
28446
28443
|
* @param {string} slug
|
|
28447
28444
|
* @param {string} [languageCode]
|
|
28448
28445
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -28985,7 +28982,6 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
28985
28982
|
},
|
|
28986
28983
|
/**
|
|
28987
28984
|
*
|
|
28988
|
-
* @summary Delete HospitalService
|
|
28989
28985
|
* @param {string} hospitalId
|
|
28990
28986
|
* @param {string} specialtyId
|
|
28991
28987
|
* @param {string} serviceId
|
|
@@ -28998,7 +28994,6 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
28998
28994
|
},
|
|
28999
28995
|
/**
|
|
29000
28996
|
*
|
|
29001
|
-
* @summary Get HospitalService.
|
|
29002
28997
|
* @param {string} hospitalId
|
|
29003
28998
|
* @param {string} specialtyId
|
|
29004
28999
|
* @param {string} serviceId
|
|
@@ -29140,7 +29135,6 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
29140
29135
|
},
|
|
29141
29136
|
/**
|
|
29142
29137
|
*
|
|
29143
|
-
* @summary Get Hospital by slug.
|
|
29144
29138
|
* @param {string} slug
|
|
29145
29139
|
* @param {string} [languageCode]
|
|
29146
29140
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -29614,7 +29608,6 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
29614
29608
|
},
|
|
29615
29609
|
/**
|
|
29616
29610
|
*
|
|
29617
|
-
* @summary Delete HospitalService
|
|
29618
29611
|
* @param {string} hospitalId
|
|
29619
29612
|
* @param {string} specialtyId
|
|
29620
29613
|
* @param {string} serviceId
|
|
@@ -29626,7 +29619,6 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
29626
29619
|
},
|
|
29627
29620
|
/**
|
|
29628
29621
|
*
|
|
29629
|
-
* @summary Get HospitalService.
|
|
29630
29622
|
* @param {string} hospitalId
|
|
29631
29623
|
* @param {string} specialtyId
|
|
29632
29624
|
* @param {string} serviceId
|
|
@@ -29759,7 +29751,6 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
29759
29751
|
},
|
|
29760
29752
|
/**
|
|
29761
29753
|
*
|
|
29762
|
-
* @summary Get Hospital by slug.
|
|
29763
29754
|
* @param {string} slug
|
|
29764
29755
|
* @param {string} [languageCode]
|
|
29765
29756
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -30300,7 +30291,6 @@ export class HospitalsApi extends BaseAPI {
|
|
|
30300
30291
|
|
|
30301
30292
|
/**
|
|
30302
30293
|
*
|
|
30303
|
-
* @summary Delete HospitalService
|
|
30304
30294
|
* @param {string} hospitalId
|
|
30305
30295
|
* @param {string} specialtyId
|
|
30306
30296
|
* @param {string} serviceId
|
|
@@ -30314,7 +30304,6 @@ export class HospitalsApi extends BaseAPI {
|
|
|
30314
30304
|
|
|
30315
30305
|
/**
|
|
30316
30306
|
*
|
|
30317
|
-
* @summary Get HospitalService.
|
|
30318
30307
|
* @param {string} hospitalId
|
|
30319
30308
|
* @param {string} specialtyId
|
|
30320
30309
|
* @param {string} serviceId
|
|
@@ -30465,7 +30454,6 @@ export class HospitalsApi extends BaseAPI {
|
|
|
30465
30454
|
|
|
30466
30455
|
/**
|
|
30467
30456
|
*
|
|
30468
|
-
* @summary Get Hospital by slug.
|
|
30469
30457
|
* @param {string} slug
|
|
30470
30458
|
* @param {string} [languageCode]
|
|
30471
30459
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -34140,7 +34128,6 @@ export const ServicesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
34140
34128
|
},
|
|
34141
34129
|
/**
|
|
34142
34130
|
*
|
|
34143
|
-
* @summary Get HospitalService.
|
|
34144
34131
|
* @param {string} serviceId
|
|
34145
34132
|
* @param {string} [languageCode]
|
|
34146
34133
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -34188,7 +34175,6 @@ export const ServicesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
34188
34175
|
},
|
|
34189
34176
|
/**
|
|
34190
34177
|
*
|
|
34191
|
-
* @summary Get HospitalService by slug.
|
|
34192
34178
|
* @param {string} slug
|
|
34193
34179
|
* @param {string} [languageCode]
|
|
34194
34180
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -34275,7 +34261,6 @@ export const ServicesApiFp = function(configuration?: Configuration) {
|
|
|
34275
34261
|
},
|
|
34276
34262
|
/**
|
|
34277
34263
|
*
|
|
34278
|
-
* @summary Get HospitalService.
|
|
34279
34264
|
* @param {string} serviceId
|
|
34280
34265
|
* @param {string} [languageCode]
|
|
34281
34266
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -34288,7 +34273,6 @@ export const ServicesApiFp = function(configuration?: Configuration) {
|
|
|
34288
34273
|
},
|
|
34289
34274
|
/**
|
|
34290
34275
|
*
|
|
34291
|
-
* @summary Get HospitalService by slug.
|
|
34292
34276
|
* @param {string} slug
|
|
34293
34277
|
* @param {string} [languageCode]
|
|
34294
34278
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -34339,7 +34323,6 @@ export const ServicesApiFactory = function (configuration?: Configuration, baseP
|
|
|
34339
34323
|
},
|
|
34340
34324
|
/**
|
|
34341
34325
|
*
|
|
34342
|
-
* @summary Get HospitalService.
|
|
34343
34326
|
* @param {string} serviceId
|
|
34344
34327
|
* @param {string} [languageCode]
|
|
34345
34328
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -34351,7 +34334,6 @@ export const ServicesApiFactory = function (configuration?: Configuration, baseP
|
|
|
34351
34334
|
},
|
|
34352
34335
|
/**
|
|
34353
34336
|
*
|
|
34354
|
-
* @summary Get HospitalService by slug.
|
|
34355
34337
|
* @param {string} slug
|
|
34356
34338
|
* @param {string} [languageCode]
|
|
34357
34339
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -34403,7 +34385,6 @@ export class ServicesApi extends BaseAPI {
|
|
|
34403
34385
|
|
|
34404
34386
|
/**
|
|
34405
34387
|
*
|
|
34406
|
-
* @summary Get HospitalService.
|
|
34407
34388
|
* @param {string} serviceId
|
|
34408
34389
|
* @param {string} [languageCode]
|
|
34409
34390
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -34417,7 +34398,6 @@ export class ServicesApi extends BaseAPI {
|
|
|
34417
34398
|
|
|
34418
34399
|
/**
|
|
34419
34400
|
*
|
|
34420
|
-
* @summary Get HospitalService by slug.
|
|
34421
34401
|
* @param {string} slug
|
|
34422
34402
|
* @param {string} [languageCode]
|
|
34423
34403
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -34444,13 +34424,14 @@ export const ServicesCategoriesApiAxiosParamCreator = function (configuration?:
|
|
|
34444
34424
|
* @param {string} [name]
|
|
34445
34425
|
* @param {string} [description]
|
|
34446
34426
|
* @param {string} [languageCode]
|
|
34427
|
+
* @param {boolean} [returnDefaultValue]
|
|
34447
34428
|
* @param {number} [page]
|
|
34448
34429
|
* @param {number} [limit]
|
|
34449
34430
|
* @param {Date} [lastRetrieved]
|
|
34450
34431
|
* @param {*} [options] Override http request option.
|
|
34451
34432
|
* @throws {RequiredError}
|
|
34452
34433
|
*/
|
|
34453
|
-
apiV1ServicescategoriesGet: async (id?: string, name?: string, description?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
34434
|
+
apiV1ServicescategoriesGet: async (id?: string, name?: string, description?: string, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
34454
34435
|
const localVarPath = `/api/v1/servicescategories`;
|
|
34455
34436
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
34456
34437
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -34483,6 +34464,10 @@ export const ServicesCategoriesApiAxiosParamCreator = function (configuration?:
|
|
|
34483
34464
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
34484
34465
|
}
|
|
34485
34466
|
|
|
34467
|
+
if (returnDefaultValue !== undefined) {
|
|
34468
|
+
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
34469
|
+
}
|
|
34470
|
+
|
|
34486
34471
|
if (page !== undefined) {
|
|
34487
34472
|
localVarQueryParameter['page'] = page;
|
|
34488
34473
|
}
|
|
@@ -34685,14 +34670,15 @@ export const ServicesCategoriesApiFp = function(configuration?: Configuration) {
|
|
|
34685
34670
|
* @param {string} [name]
|
|
34686
34671
|
* @param {string} [description]
|
|
34687
34672
|
* @param {string} [languageCode]
|
|
34673
|
+
* @param {boolean} [returnDefaultValue]
|
|
34688
34674
|
* @param {number} [page]
|
|
34689
34675
|
* @param {number} [limit]
|
|
34690
34676
|
* @param {Date} [lastRetrieved]
|
|
34691
34677
|
* @param {*} [options] Override http request option.
|
|
34692
34678
|
* @throws {RequiredError}
|
|
34693
34679
|
*/
|
|
34694
|
-
async apiV1ServicescategoriesGet(id?: string, name?: string, description?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceCategoriesModel>> {
|
|
34695
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ServicescategoriesGet(id, name, description, languageCode, page, limit, lastRetrieved, options);
|
|
34680
|
+
async apiV1ServicescategoriesGet(id?: string, name?: string, description?: string, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceCategoriesModel>> {
|
|
34681
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ServicescategoriesGet(id, name, description, languageCode, returnDefaultValue, page, limit, lastRetrieved, options);
|
|
34696
34682
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
34697
34683
|
},
|
|
34698
34684
|
/**
|
|
@@ -34757,14 +34743,15 @@ export const ServicesCategoriesApiFactory = function (configuration?: Configurat
|
|
|
34757
34743
|
* @param {string} [name]
|
|
34758
34744
|
* @param {string} [description]
|
|
34759
34745
|
* @param {string} [languageCode]
|
|
34746
|
+
* @param {boolean} [returnDefaultValue]
|
|
34760
34747
|
* @param {number} [page]
|
|
34761
34748
|
* @param {number} [limit]
|
|
34762
34749
|
* @param {Date} [lastRetrieved]
|
|
34763
34750
|
* @param {*} [options] Override http request option.
|
|
34764
34751
|
* @throws {RequiredError}
|
|
34765
34752
|
*/
|
|
34766
|
-
apiV1ServicescategoriesGet(id?: string, name?: string, description?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ServiceCategoriesModel> {
|
|
34767
|
-
return localVarFp.apiV1ServicescategoriesGet(id, name, description, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
34753
|
+
apiV1ServicescategoriesGet(id?: string, name?: string, description?: string, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ServiceCategoriesModel> {
|
|
34754
|
+
return localVarFp.apiV1ServicescategoriesGet(id, name, description, languageCode, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
34768
34755
|
},
|
|
34769
34756
|
/**
|
|
34770
34757
|
*
|
|
@@ -34824,6 +34811,7 @@ export class ServicesCategoriesApi extends BaseAPI {
|
|
|
34824
34811
|
* @param {string} [name]
|
|
34825
34812
|
* @param {string} [description]
|
|
34826
34813
|
* @param {string} [languageCode]
|
|
34814
|
+
* @param {boolean} [returnDefaultValue]
|
|
34827
34815
|
* @param {number} [page]
|
|
34828
34816
|
* @param {number} [limit]
|
|
34829
34817
|
* @param {Date} [lastRetrieved]
|
|
@@ -34831,8 +34819,8 @@ export class ServicesCategoriesApi extends BaseAPI {
|
|
|
34831
34819
|
* @throws {RequiredError}
|
|
34832
34820
|
* @memberof ServicesCategoriesApi
|
|
34833
34821
|
*/
|
|
34834
|
-
public apiV1ServicescategoriesGet(id?: string, name?: string, description?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
34835
|
-
return ServicesCategoriesApiFp(this.configuration).apiV1ServicescategoriesGet(id, name, description, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
34822
|
+
public apiV1ServicescategoriesGet(id?: string, name?: string, description?: string, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
34823
|
+
return ServicesCategoriesApiFp(this.configuration).apiV1ServicescategoriesGet(id, name, description, languageCode, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
34836
34824
|
}
|
|
34837
34825
|
|
|
34838
34826
|
/**
|
|
@@ -35030,7 +35018,6 @@ export const SpecialtiesApiAxiosParamCreator = function (configuration?: Configu
|
|
|
35030
35018
|
},
|
|
35031
35019
|
/**
|
|
35032
35020
|
*
|
|
35033
|
-
* @summary Get Specialty by slug.
|
|
35034
35021
|
* @param {string} slug
|
|
35035
35022
|
* @param {string} [languageCode]
|
|
35036
35023
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -35486,7 +35473,6 @@ export const SpecialtiesApiFp = function(configuration?: Configuration) {
|
|
|
35486
35473
|
},
|
|
35487
35474
|
/**
|
|
35488
35475
|
*
|
|
35489
|
-
* @summary Get Specialty by slug.
|
|
35490
35476
|
* @param {string} slug
|
|
35491
35477
|
* @param {string} [languageCode]
|
|
35492
35478
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -35641,7 +35627,6 @@ export const SpecialtiesApiFactory = function (configuration?: Configuration, ba
|
|
|
35641
35627
|
},
|
|
35642
35628
|
/**
|
|
35643
35629
|
*
|
|
35644
|
-
* @summary Get Specialty by slug.
|
|
35645
35630
|
* @param {string} slug
|
|
35646
35631
|
* @param {string} [languageCode]
|
|
35647
35632
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -35791,7 +35776,6 @@ export class SpecialtiesApi extends BaseAPI {
|
|
|
35791
35776
|
|
|
35792
35777
|
/**
|
|
35793
35778
|
*
|
|
35794
|
-
* @summary Get Specialty by slug.
|
|
35795
35779
|
* @param {string} slug
|
|
35796
35780
|
* @param {string} [languageCode]
|
|
35797
35781
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -36166,7 +36150,6 @@ export const SpecialtyTypesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
36166
36150
|
},
|
|
36167
36151
|
/**
|
|
36168
36152
|
*
|
|
36169
|
-
* @summary Get Department by slug.
|
|
36170
36153
|
* @param {string} slug
|
|
36171
36154
|
* @param {string} [languageCode]
|
|
36172
36155
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -36252,7 +36235,6 @@ export const SpecialtyTypesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
36252
36235
|
},
|
|
36253
36236
|
/**
|
|
36254
36237
|
*
|
|
36255
|
-
* @summary Get Department.
|
|
36256
36238
|
* @param {string} specialtyTypeId
|
|
36257
36239
|
* @param {string} [languageCode]
|
|
36258
36240
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -36646,7 +36628,6 @@ export const SpecialtyTypesApiFp = function(configuration?: Configuration) {
|
|
|
36646
36628
|
},
|
|
36647
36629
|
/**
|
|
36648
36630
|
*
|
|
36649
|
-
* @summary Get Department by slug.
|
|
36650
36631
|
* @param {string} slug
|
|
36651
36632
|
* @param {string} [languageCode]
|
|
36652
36633
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -36670,7 +36651,6 @@ export const SpecialtyTypesApiFp = function(configuration?: Configuration) {
|
|
|
36670
36651
|
},
|
|
36671
36652
|
/**
|
|
36672
36653
|
*
|
|
36673
|
-
* @summary Get Department.
|
|
36674
36654
|
* @param {string} specialtyTypeId
|
|
36675
36655
|
* @param {string} [languageCode]
|
|
36676
36656
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -36824,7 +36804,6 @@ export const SpecialtyTypesApiFactory = function (configuration?: Configuration,
|
|
|
36824
36804
|
},
|
|
36825
36805
|
/**
|
|
36826
36806
|
*
|
|
36827
|
-
* @summary Get Department by slug.
|
|
36828
36807
|
* @param {string} slug
|
|
36829
36808
|
* @param {string} [languageCode]
|
|
36830
36809
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -36846,7 +36825,6 @@ export const SpecialtyTypesApiFactory = function (configuration?: Configuration,
|
|
|
36846
36825
|
},
|
|
36847
36826
|
/**
|
|
36848
36827
|
*
|
|
36849
|
-
* @summary Get Department.
|
|
36850
36828
|
* @param {string} specialtyTypeId
|
|
36851
36829
|
* @param {string} [languageCode]
|
|
36852
36830
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -36999,7 +36977,6 @@ export class SpecialtyTypesApi extends BaseAPI {
|
|
|
36999
36977
|
|
|
37000
36978
|
/**
|
|
37001
36979
|
*
|
|
37002
|
-
* @summary Get Department by slug.
|
|
37003
36980
|
* @param {string} slug
|
|
37004
36981
|
* @param {string} [languageCode]
|
|
37005
36982
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -37025,7 +37002,6 @@ export class SpecialtyTypesApi extends BaseAPI {
|
|
|
37025
37002
|
|
|
37026
37003
|
/**
|
|
37027
37004
|
*
|
|
37028
|
-
* @summary Get Department.
|
|
37029
37005
|
* @param {string} specialtyTypeId
|
|
37030
37006
|
* @param {string} [languageCode]
|
|
37031
37007
|
* @param {boolean} [returnDefaultValue]
|