ch-api-client-typescript2 2.8.5 → 2.8.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/lib/api.d.ts +217 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +175 -0
- package/package.json +1 -1
- package/src/api.ts +309 -0
package/lib/api.d.ts
CHANGED
|
@@ -5930,6 +5930,18 @@ export interface HospitalServiceItemModel {
|
|
|
5930
5930
|
* @memberof HospitalServiceItemModel
|
|
5931
5931
|
*/
|
|
5932
5932
|
'confirmed'?: boolean;
|
|
5933
|
+
/**
|
|
5934
|
+
*
|
|
5935
|
+
* @type {string}
|
|
5936
|
+
* @memberof HospitalServiceItemModel
|
|
5937
|
+
*/
|
|
5938
|
+
'photo'?: string | null;
|
|
5939
|
+
/**
|
|
5940
|
+
*
|
|
5941
|
+
* @type {string}
|
|
5942
|
+
* @memberof HospitalServiceItemModel
|
|
5943
|
+
*/
|
|
5944
|
+
'photoThumbnail'?: string | null;
|
|
5933
5945
|
/**
|
|
5934
5946
|
*
|
|
5935
5947
|
* @type {AuditableEntity}
|
|
@@ -6069,6 +6081,18 @@ export interface HospitalServiceModel {
|
|
|
6069
6081
|
* @memberof HospitalServiceModel
|
|
6070
6082
|
*/
|
|
6071
6083
|
'confirmed'?: boolean;
|
|
6084
|
+
/**
|
|
6085
|
+
*
|
|
6086
|
+
* @type {string}
|
|
6087
|
+
* @memberof HospitalServiceModel
|
|
6088
|
+
*/
|
|
6089
|
+
'photo'?: string | null;
|
|
6090
|
+
/**
|
|
6091
|
+
*
|
|
6092
|
+
* @type {string}
|
|
6093
|
+
* @memberof HospitalServiceModel
|
|
6094
|
+
*/
|
|
6095
|
+
'photoThumbnail'?: string | null;
|
|
6072
6096
|
/**
|
|
6073
6097
|
*
|
|
6074
6098
|
* @type {AuditableEntity}
|
|
@@ -6145,6 +6169,25 @@ export interface HospitalSpecialtiesModel {
|
|
|
6145
6169
|
*/
|
|
6146
6170
|
'metaData'?: PagedListMetaData;
|
|
6147
6171
|
}
|
|
6172
|
+
/**
|
|
6173
|
+
*
|
|
6174
|
+
* @export
|
|
6175
|
+
* @interface HospitalSpecialtiesSimpleModel
|
|
6176
|
+
*/
|
|
6177
|
+
export interface HospitalSpecialtiesSimpleModel {
|
|
6178
|
+
/**
|
|
6179
|
+
*
|
|
6180
|
+
* @type {Array<HospitalSpecialtySimpleItemModel>}
|
|
6181
|
+
* @memberof HospitalSpecialtiesSimpleModel
|
|
6182
|
+
*/
|
|
6183
|
+
'items'?: Array<HospitalSpecialtySimpleItemModel> | null;
|
|
6184
|
+
/**
|
|
6185
|
+
*
|
|
6186
|
+
* @type {PagedListMetaData}
|
|
6187
|
+
* @memberof HospitalSpecialtiesSimpleModel
|
|
6188
|
+
*/
|
|
6189
|
+
'metaData'?: PagedListMetaData;
|
|
6190
|
+
}
|
|
6148
6191
|
/**
|
|
6149
6192
|
*
|
|
6150
6193
|
* @export
|
|
@@ -6253,6 +6296,30 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6253
6296
|
* @memberof HospitalSpecialtyItemModel
|
|
6254
6297
|
*/
|
|
6255
6298
|
'confirmed'?: boolean;
|
|
6299
|
+
/**
|
|
6300
|
+
*
|
|
6301
|
+
* @type {string}
|
|
6302
|
+
* @memberof HospitalSpecialtyItemModel
|
|
6303
|
+
*/
|
|
6304
|
+
'photo'?: string | null;
|
|
6305
|
+
/**
|
|
6306
|
+
*
|
|
6307
|
+
* @type {string}
|
|
6308
|
+
* @memberof HospitalSpecialtyItemModel
|
|
6309
|
+
*/
|
|
6310
|
+
'photoThumbnail'?: string | null;
|
|
6311
|
+
/**
|
|
6312
|
+
*
|
|
6313
|
+
* @type {string}
|
|
6314
|
+
* @memberof HospitalSpecialtyItemModel
|
|
6315
|
+
*/
|
|
6316
|
+
'background'?: string | null;
|
|
6317
|
+
/**
|
|
6318
|
+
*
|
|
6319
|
+
* @type {string}
|
|
6320
|
+
* @memberof HospitalSpecialtyItemModel
|
|
6321
|
+
*/
|
|
6322
|
+
'backgroundThumbnail'?: string | null;
|
|
6256
6323
|
/**
|
|
6257
6324
|
*
|
|
6258
6325
|
* @type {Array<MediaModel>}
|
|
@@ -6374,6 +6441,30 @@ export interface HospitalSpecialtyModel {
|
|
|
6374
6441
|
* @memberof HospitalSpecialtyModel
|
|
6375
6442
|
*/
|
|
6376
6443
|
'confirmed'?: boolean;
|
|
6444
|
+
/**
|
|
6445
|
+
*
|
|
6446
|
+
* @type {string}
|
|
6447
|
+
* @memberof HospitalSpecialtyModel
|
|
6448
|
+
*/
|
|
6449
|
+
'photo'?: string | null;
|
|
6450
|
+
/**
|
|
6451
|
+
*
|
|
6452
|
+
* @type {string}
|
|
6453
|
+
* @memberof HospitalSpecialtyModel
|
|
6454
|
+
*/
|
|
6455
|
+
'photoThumbnail'?: string | null;
|
|
6456
|
+
/**
|
|
6457
|
+
*
|
|
6458
|
+
* @type {string}
|
|
6459
|
+
* @memberof HospitalSpecialtyModel
|
|
6460
|
+
*/
|
|
6461
|
+
'background'?: string | null;
|
|
6462
|
+
/**
|
|
6463
|
+
*
|
|
6464
|
+
* @type {string}
|
|
6465
|
+
* @memberof HospitalSpecialtyModel
|
|
6466
|
+
*/
|
|
6467
|
+
'backgroundThumbnail'?: string | null;
|
|
6377
6468
|
/**
|
|
6378
6469
|
*
|
|
6379
6470
|
* @type {Array<MediaModel>}
|
|
@@ -6393,6 +6484,43 @@ export interface HospitalSpecialtyModel {
|
|
|
6393
6484
|
*/
|
|
6394
6485
|
'languageCode'?: string | null;
|
|
6395
6486
|
}
|
|
6487
|
+
/**
|
|
6488
|
+
*
|
|
6489
|
+
* @export
|
|
6490
|
+
* @interface HospitalSpecialtySimpleItemModel
|
|
6491
|
+
*/
|
|
6492
|
+
export interface HospitalSpecialtySimpleItemModel {
|
|
6493
|
+
/**
|
|
6494
|
+
*
|
|
6495
|
+
* @type {string}
|
|
6496
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
6497
|
+
*/
|
|
6498
|
+
'id'?: string;
|
|
6499
|
+
/**
|
|
6500
|
+
*
|
|
6501
|
+
* @type {string}
|
|
6502
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
6503
|
+
*/
|
|
6504
|
+
'specialtyName'?: string | null;
|
|
6505
|
+
/**
|
|
6506
|
+
*
|
|
6507
|
+
* @type {string}
|
|
6508
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
6509
|
+
*/
|
|
6510
|
+
'hospitalSpecialtySlug'?: string | null;
|
|
6511
|
+
/**
|
|
6512
|
+
*
|
|
6513
|
+
* @type {string}
|
|
6514
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
6515
|
+
*/
|
|
6516
|
+
'description'?: string | null;
|
|
6517
|
+
/**
|
|
6518
|
+
*
|
|
6519
|
+
* @type {boolean}
|
|
6520
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
6521
|
+
*/
|
|
6522
|
+
'confirmed'?: boolean;
|
|
6523
|
+
}
|
|
6396
6524
|
/**
|
|
6397
6525
|
*
|
|
6398
6526
|
* @export
|
|
@@ -13252,6 +13380,28 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
13252
13380
|
* @throws {RequiredError}
|
|
13253
13381
|
*/
|
|
13254
13382
|
apiV2HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13383
|
+
/**
|
|
13384
|
+
*
|
|
13385
|
+
* @summary Get all HospitalSpecialties.
|
|
13386
|
+
* @param {string} hospitalId
|
|
13387
|
+
* @param {string} [hospitalName]
|
|
13388
|
+
* @param {string} [hospitalSlug]
|
|
13389
|
+
* @param {string} [specialtyId]
|
|
13390
|
+
* @param {string} [specialtyName]
|
|
13391
|
+
* @param {string} [specialtyTypeId]
|
|
13392
|
+
* @param {string} [title]
|
|
13393
|
+
* @param {MarketingType} [marketingType]
|
|
13394
|
+
* @param {string} [languageCode]
|
|
13395
|
+
* @param {boolean} [showHidden]
|
|
13396
|
+
* @param {boolean} [returnDefaultValue]
|
|
13397
|
+
* @param {boolean} [includeServices]
|
|
13398
|
+
* @param {number} [page]
|
|
13399
|
+
* @param {number} [limit]
|
|
13400
|
+
* @param {Date} [lastRetrieved]
|
|
13401
|
+
* @param {*} [options] Override http request option.
|
|
13402
|
+
* @throws {RequiredError}
|
|
13403
|
+
*/
|
|
13404
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13255
13405
|
/**
|
|
13256
13406
|
*
|
|
13257
13407
|
* @summary Get HospitalSpecialty.
|
|
@@ -13550,6 +13700,28 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
13550
13700
|
* @throws {RequiredError}
|
|
13551
13701
|
*/
|
|
13552
13702
|
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
|
|
13703
|
+
/**
|
|
13704
|
+
*
|
|
13705
|
+
* @summary Get all HospitalSpecialties.
|
|
13706
|
+
* @param {string} hospitalId
|
|
13707
|
+
* @param {string} [hospitalName]
|
|
13708
|
+
* @param {string} [hospitalSlug]
|
|
13709
|
+
* @param {string} [specialtyId]
|
|
13710
|
+
* @param {string} [specialtyName]
|
|
13711
|
+
* @param {string} [specialtyTypeId]
|
|
13712
|
+
* @param {string} [title]
|
|
13713
|
+
* @param {MarketingType} [marketingType]
|
|
13714
|
+
* @param {string} [languageCode]
|
|
13715
|
+
* @param {boolean} [showHidden]
|
|
13716
|
+
* @param {boolean} [returnDefaultValue]
|
|
13717
|
+
* @param {boolean} [includeServices]
|
|
13718
|
+
* @param {number} [page]
|
|
13719
|
+
* @param {number} [limit]
|
|
13720
|
+
* @param {Date} [lastRetrieved]
|
|
13721
|
+
* @param {*} [options] Override http request option.
|
|
13722
|
+
* @throws {RequiredError}
|
|
13723
|
+
*/
|
|
13724
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesSimpleModel>>;
|
|
13553
13725
|
/**
|
|
13554
13726
|
*
|
|
13555
13727
|
* @summary Get HospitalSpecialty.
|
|
@@ -13848,6 +14020,28 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
13848
14020
|
* @throws {RequiredError}
|
|
13849
14021
|
*/
|
|
13850
14022
|
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
|
|
14023
|
+
/**
|
|
14024
|
+
*
|
|
14025
|
+
* @summary Get all HospitalSpecialties.
|
|
14026
|
+
* @param {string} hospitalId
|
|
14027
|
+
* @param {string} [hospitalName]
|
|
14028
|
+
* @param {string} [hospitalSlug]
|
|
14029
|
+
* @param {string} [specialtyId]
|
|
14030
|
+
* @param {string} [specialtyName]
|
|
14031
|
+
* @param {string} [specialtyTypeId]
|
|
14032
|
+
* @param {string} [title]
|
|
14033
|
+
* @param {MarketingType} [marketingType]
|
|
14034
|
+
* @param {string} [languageCode]
|
|
14035
|
+
* @param {boolean} [showHidden]
|
|
14036
|
+
* @param {boolean} [returnDefaultValue]
|
|
14037
|
+
* @param {boolean} [includeServices]
|
|
14038
|
+
* @param {number} [page]
|
|
14039
|
+
* @param {number} [limit]
|
|
14040
|
+
* @param {Date} [lastRetrieved]
|
|
14041
|
+
* @param {*} [options] Override http request option.
|
|
14042
|
+
* @throws {RequiredError}
|
|
14043
|
+
*/
|
|
14044
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesSimpleModel>;
|
|
13851
14045
|
/**
|
|
13852
14046
|
*
|
|
13853
14047
|
* @summary Get HospitalSpecialty.
|
|
@@ -14161,6 +14355,29 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
14161
14355
|
* @memberof HospitalsApi
|
|
14162
14356
|
*/
|
|
14163
14357
|
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel, any>>;
|
|
14358
|
+
/**
|
|
14359
|
+
*
|
|
14360
|
+
* @summary Get all HospitalSpecialties.
|
|
14361
|
+
* @param {string} hospitalId
|
|
14362
|
+
* @param {string} [hospitalName]
|
|
14363
|
+
* @param {string} [hospitalSlug]
|
|
14364
|
+
* @param {string} [specialtyId]
|
|
14365
|
+
* @param {string} [specialtyName]
|
|
14366
|
+
* @param {string} [specialtyTypeId]
|
|
14367
|
+
* @param {string} [title]
|
|
14368
|
+
* @param {MarketingType} [marketingType]
|
|
14369
|
+
* @param {string} [languageCode]
|
|
14370
|
+
* @param {boolean} [showHidden]
|
|
14371
|
+
* @param {boolean} [returnDefaultValue]
|
|
14372
|
+
* @param {boolean} [includeServices]
|
|
14373
|
+
* @param {number} [page]
|
|
14374
|
+
* @param {number} [limit]
|
|
14375
|
+
* @param {Date} [lastRetrieved]
|
|
14376
|
+
* @param {*} [options] Override http request option.
|
|
14377
|
+
* @throws {RequiredError}
|
|
14378
|
+
* @memberof HospitalsApi
|
|
14379
|
+
*/
|
|
14380
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesSimpleModel, any>>;
|
|
14164
14381
|
/**
|
|
14165
14382
|
*
|
|
14166
14383
|
* @summary Get HospitalSpecialty.
|