ch-admin-api-client-typescript 5.91.12 → 5.91.14

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.
@@ -1477,6 +1477,37 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
1477
1477
  * @throws {RequiredError}
1478
1478
  */
1479
1479
  apiV1HospitalsHospitalIdSecurefilesReadGet: (hospitalId: string, uri?: string, minutesAvailableUntil?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1480
+ /**
1481
+ *
1482
+ * @summary Get all services of a hospital, regardless of specialty. (Auth policies: RequireDefaultAdminAppRole)
1483
+ * @param {string} hospitalId
1484
+ * @param {string} [id]
1485
+ * @param {string} [name]
1486
+ * @param {string} [slug]
1487
+ * @param {string} [serviceCategoryId]
1488
+ * @param {MarketingType} [marketingType]
1489
+ * @param {Procedure} [procedure]
1490
+ * @param {Date} [created]
1491
+ * @param {boolean} [showHidden]
1492
+ * @param {string} [languageCode]
1493
+ * @param {number} [page]
1494
+ * @param {number} [limit]
1495
+ * @param {Date} [lastRetrieved]
1496
+ * @param {*} [options] Override http request option.
1497
+ * @throws {RequiredError}
1498
+ */
1499
+ apiV1HospitalsHospitalIdServicesGet: (hospitalId: string, id?: string, name?: string, slug?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, showHidden?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1500
+ /**
1501
+ *
1502
+ * @summary Get a service of a hospital, regardless of specialty. (Auth policies: RequireDefaultAdminAppRole)
1503
+ * @param {string} hospitalId
1504
+ * @param {string} serviceId
1505
+ * @param {string} [languageCode] Language code. Accepts either &#x60;en&#x60; (ISO 639-1 two-letter) or &#x60;en-US&#x60; (locale) format.
1506
+ * @param {boolean} [returnDefaultValue]
1507
+ * @param {*} [options] Override http request option.
1508
+ * @throws {RequiredError}
1509
+ */
1510
+ apiV1HospitalsHospitalIdServicesServiceIdGet: (hospitalId: string, serviceId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1480
1511
  /**
1481
1512
  *
1482
1513
  * @summary Get all Hospitals. (Auth policies: RequireDefaultAdminAppRole)
@@ -3528,6 +3559,37 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
3528
3559
  * @throws {RequiredError}
3529
3560
  */
3530
3561
  apiV1HospitalsHospitalIdSecurefilesReadGet(hospitalId: string, uri?: string, minutesAvailableUntil?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
3562
+ /**
3563
+ *
3564
+ * @summary Get all services of a hospital, regardless of specialty. (Auth policies: RequireDefaultAdminAppRole)
3565
+ * @param {string} hospitalId
3566
+ * @param {string} [id]
3567
+ * @param {string} [name]
3568
+ * @param {string} [slug]
3569
+ * @param {string} [serviceCategoryId]
3570
+ * @param {MarketingType} [marketingType]
3571
+ * @param {Procedure} [procedure]
3572
+ * @param {Date} [created]
3573
+ * @param {boolean} [showHidden]
3574
+ * @param {string} [languageCode]
3575
+ * @param {number} [page]
3576
+ * @param {number} [limit]
3577
+ * @param {Date} [lastRetrieved]
3578
+ * @param {*} [options] Override http request option.
3579
+ * @throws {RequiredError}
3580
+ */
3581
+ apiV1HospitalsHospitalIdServicesGet(hospitalId: string, id?: string, name?: string, slug?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, showHidden?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalServicesModel>>;
3582
+ /**
3583
+ *
3584
+ * @summary Get a service of a hospital, regardless of specialty. (Auth policies: RequireDefaultAdminAppRole)
3585
+ * @param {string} hospitalId
3586
+ * @param {string} serviceId
3587
+ * @param {string} [languageCode] Language code. Accepts either &#x60;en&#x60; (ISO 639-1 two-letter) or &#x60;en-US&#x60; (locale) format.
3588
+ * @param {boolean} [returnDefaultValue]
3589
+ * @param {*} [options] Override http request option.
3590
+ * @throws {RequiredError}
3591
+ */
3592
+ apiV1HospitalsHospitalIdServicesServiceIdGet(hospitalId: string, serviceId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalServiceModel>>;
3531
3593
  /**
3532
3594
  *
3533
3595
  * @summary Get all Hospitals. (Auth policies: RequireDefaultAdminAppRole)
@@ -5579,6 +5641,37 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
5579
5641
  * @throws {RequiredError}
5580
5642
  */
5581
5643
  apiV1HospitalsHospitalIdSecurefilesReadGet(hospitalId: string, uri?: string, minutesAvailableUntil?: number, options?: any): AxiosPromise<string>;
5644
+ /**
5645
+ *
5646
+ * @summary Get all services of a hospital, regardless of specialty. (Auth policies: RequireDefaultAdminAppRole)
5647
+ * @param {string} hospitalId
5648
+ * @param {string} [id]
5649
+ * @param {string} [name]
5650
+ * @param {string} [slug]
5651
+ * @param {string} [serviceCategoryId]
5652
+ * @param {MarketingType} [marketingType]
5653
+ * @param {Procedure} [procedure]
5654
+ * @param {Date} [created]
5655
+ * @param {boolean} [showHidden]
5656
+ * @param {string} [languageCode]
5657
+ * @param {number} [page]
5658
+ * @param {number} [limit]
5659
+ * @param {Date} [lastRetrieved]
5660
+ * @param {*} [options] Override http request option.
5661
+ * @throws {RequiredError}
5662
+ */
5663
+ apiV1HospitalsHospitalIdServicesGet(hospitalId: string, id?: string, name?: string, slug?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, showHidden?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalServicesModel>;
5664
+ /**
5665
+ *
5666
+ * @summary Get a service of a hospital, regardless of specialty. (Auth policies: RequireDefaultAdminAppRole)
5667
+ * @param {string} hospitalId
5668
+ * @param {string} serviceId
5669
+ * @param {string} [languageCode] Language code. Accepts either &#x60;en&#x60; (ISO 639-1 two-letter) or &#x60;en-US&#x60; (locale) format.
5670
+ * @param {boolean} [returnDefaultValue]
5671
+ * @param {*} [options] Override http request option.
5672
+ * @throws {RequiredError}
5673
+ */
5674
+ apiV1HospitalsHospitalIdServicesServiceIdGet(hospitalId: string, serviceId: string, languageCode?: string, returnDefaultValue?: boolean, options?: any): AxiosPromise<HospitalServiceModel>;
5582
5675
  /**
5583
5676
  *
5584
5677
  * @summary Get all Hospitals. (Auth policies: RequireDefaultAdminAppRole)
@@ -9805,6 +9898,122 @@ export interface HospitalsApiApiV1HospitalsHospitalIdSecurefilesReadGetRequest {
9805
9898
  */
9806
9899
  readonly minutesAvailableUntil?: number;
9807
9900
  }
9901
+ /**
9902
+ * Request parameters for apiV1HospitalsHospitalIdServicesGet operation in HospitalsApi.
9903
+ * @export
9904
+ * @interface HospitalsApiApiV1HospitalsHospitalIdServicesGetRequest
9905
+ */
9906
+ export interface HospitalsApiApiV1HospitalsHospitalIdServicesGetRequest {
9907
+ /**
9908
+ *
9909
+ * @type {string}
9910
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdServicesGet
9911
+ */
9912
+ readonly hospitalId: string;
9913
+ /**
9914
+ *
9915
+ * @type {string}
9916
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdServicesGet
9917
+ */
9918
+ readonly id?: string;
9919
+ /**
9920
+ *
9921
+ * @type {string}
9922
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdServicesGet
9923
+ */
9924
+ readonly name?: string;
9925
+ /**
9926
+ *
9927
+ * @type {string}
9928
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdServicesGet
9929
+ */
9930
+ readonly slug?: string;
9931
+ /**
9932
+ *
9933
+ * @type {string}
9934
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdServicesGet
9935
+ */
9936
+ readonly serviceCategoryId?: string;
9937
+ /**
9938
+ *
9939
+ * @type {MarketingType}
9940
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdServicesGet
9941
+ */
9942
+ readonly marketingType?: MarketingType;
9943
+ /**
9944
+ *
9945
+ * @type {Procedure}
9946
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdServicesGet
9947
+ */
9948
+ readonly procedure?: Procedure;
9949
+ /**
9950
+ *
9951
+ * @type {Date}
9952
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdServicesGet
9953
+ */
9954
+ readonly created?: Date;
9955
+ /**
9956
+ *
9957
+ * @type {boolean}
9958
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdServicesGet
9959
+ */
9960
+ readonly showHidden?: boolean;
9961
+ /**
9962
+ *
9963
+ * @type {string}
9964
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdServicesGet
9965
+ */
9966
+ readonly languageCode?: string;
9967
+ /**
9968
+ *
9969
+ * @type {number}
9970
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdServicesGet
9971
+ */
9972
+ readonly page?: number;
9973
+ /**
9974
+ *
9975
+ * @type {number}
9976
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdServicesGet
9977
+ */
9978
+ readonly limit?: number;
9979
+ /**
9980
+ *
9981
+ * @type {Date}
9982
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdServicesGet
9983
+ */
9984
+ readonly lastRetrieved?: Date;
9985
+ }
9986
+ /**
9987
+ * Request parameters for apiV1HospitalsHospitalIdServicesServiceIdGet operation in HospitalsApi.
9988
+ * @export
9989
+ * @interface HospitalsApiApiV1HospitalsHospitalIdServicesServiceIdGetRequest
9990
+ */
9991
+ export interface HospitalsApiApiV1HospitalsHospitalIdServicesServiceIdGetRequest {
9992
+ /**
9993
+ *
9994
+ * @type {string}
9995
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdServicesServiceIdGet
9996
+ */
9997
+ readonly hospitalId: string;
9998
+ /**
9999
+ *
10000
+ * @type {string}
10001
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdServicesServiceIdGet
10002
+ */
10003
+ readonly serviceId: string;
10004
+ /**
10005
+ * Language code. Accepts either &#x60;en&#x60; (ISO 639-1 two-letter) or &#x60;en-US&#x60; (locale) format.
10006
+ * @type {string}
10007
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdServicesServiceIdGet
10008
+ */
10009
+ readonly languageCode?: string;
10010
+ /**
10011
+ *
10012
+ * @type {boolean}
10013
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdServicesServiceIdGet
10014
+ */
10015
+ readonly returnDefaultValue?: boolean;
10016
+ }
9808
10017
  /**
9809
10018
  * Request parameters for apiV1HospitalsHospitalIdSimpleGet operation in HospitalsApi.
9810
10019
  * @export
@@ -13105,6 +13314,24 @@ export declare class HospitalsApi extends BaseAPI {
13105
13314
  * @memberof HospitalsApi
13106
13315
  */
13107
13316
  apiV1HospitalsHospitalIdSecurefilesReadGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurefilesReadGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
13317
+ /**
13318
+ *
13319
+ * @summary Get all services of a hospital, regardless of specialty. (Auth policies: RequireDefaultAdminAppRole)
13320
+ * @param {HospitalsApiApiV1HospitalsHospitalIdServicesGetRequest} requestParameters Request parameters.
13321
+ * @param {*} [options] Override http request option.
13322
+ * @throws {RequiredError}
13323
+ * @memberof HospitalsApi
13324
+ */
13325
+ apiV1HospitalsHospitalIdServicesGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdServicesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel, any>>;
13326
+ /**
13327
+ *
13328
+ * @summary Get a service of a hospital, regardless of specialty. (Auth policies: RequireDefaultAdminAppRole)
13329
+ * @param {HospitalsApiApiV1HospitalsHospitalIdServicesServiceIdGetRequest} requestParameters Request parameters.
13330
+ * @param {*} [options] Override http request option.
13331
+ * @throws {RequiredError}
13332
+ * @memberof HospitalsApi
13333
+ */
13334
+ apiV1HospitalsHospitalIdServicesServiceIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdServicesServiceIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel, any>>;
13108
13335
  /**
13109
13336
  *
13110
13337
  * @summary Get all Hospitals. (Auth policies: RequireDefaultAdminAppRole)