ch-admin-api-client-typescript 4.5.1 → 4.5.2

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 CHANGED
@@ -4655,6 +4655,12 @@ export interface CreateHospitalLanguageCommand {
4655
4655
  * @memberof CreateHospitalLanguageCommand
4656
4656
  */
4657
4657
  'langaugeCode'?: string | null;
4658
+ /**
4659
+ *
4660
+ * @type {number}
4661
+ * @memberof CreateHospitalLanguageCommand
4662
+ */
4663
+ 'order'?: number | null;
4658
4664
  }
4659
4665
  /**
4660
4666
  *
@@ -14399,6 +14405,19 @@ export interface UpdateHospitalEquipmentCommand {
14399
14405
  */
14400
14406
  'auditableEntity'?: AuditableEntity;
14401
14407
  }
14408
+ /**
14409
+ *
14410
+ * @export
14411
+ * @interface UpdateHospitalLanguageCommand
14412
+ */
14413
+ export interface UpdateHospitalLanguageCommand {
14414
+ /**
14415
+ *
14416
+ * @type {number}
14417
+ * @memberof UpdateHospitalLanguageCommand
14418
+ */
14419
+ 'order'?: number;
14420
+ }
14402
14421
  /**
14403
14422
  *
14404
14423
  * @export
@@ -24845,6 +24864,16 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
24845
24864
  * @throws {RequiredError}
24846
24865
  */
24847
24866
  apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete: (hospitalId: string, languageCode: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
24867
+ /**
24868
+ *
24869
+ * @summary Update HospitalLanguage
24870
+ * @param {string} hospitalId
24871
+ * @param {string} languageCode
24872
+ * @param {UpdateHospitalLanguageCommand} [updateHospitalLanguageCommand]
24873
+ * @param {*} [options] Override http request option.
24874
+ * @throws {RequiredError}
24875
+ */
24876
+ apiV1HospitalsHospitalIdLanguagesLanguageCodePut: (hospitalId: string, languageCode: string, updateHospitalLanguageCommand?: UpdateHospitalLanguageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
24848
24877
  /**
24849
24878
  *
24850
24879
  * @summary Create HospitalLanguages.
@@ -25690,6 +25719,16 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
25690
25719
  * @throws {RequiredError}
25691
25720
  */
25692
25721
  apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete(hospitalId: string, languageCode: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
25722
+ /**
25723
+ *
25724
+ * @summary Update HospitalLanguage
25725
+ * @param {string} hospitalId
25726
+ * @param {string} languageCode
25727
+ * @param {UpdateHospitalLanguageCommand} [updateHospitalLanguageCommand]
25728
+ * @param {*} [options] Override http request option.
25729
+ * @throws {RequiredError}
25730
+ */
25731
+ apiV1HospitalsHospitalIdLanguagesLanguageCodePut(hospitalId: string, languageCode: string, updateHospitalLanguageCommand?: UpdateHospitalLanguageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
25693
25732
  /**
25694
25733
  *
25695
25734
  * @summary Create HospitalLanguages.
@@ -26535,6 +26574,16 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
26535
26574
  * @throws {RequiredError}
26536
26575
  */
26537
26576
  apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete(hospitalId: string, languageCode: string, options?: any): AxiosPromise<boolean>;
26577
+ /**
26578
+ *
26579
+ * @summary Update HospitalLanguage
26580
+ * @param {string} hospitalId
26581
+ * @param {string} languageCode
26582
+ * @param {UpdateHospitalLanguageCommand} [updateHospitalLanguageCommand]
26583
+ * @param {*} [options] Override http request option.
26584
+ * @throws {RequiredError}
26585
+ */
26586
+ apiV1HospitalsHospitalIdLanguagesLanguageCodePut(hospitalId: string, languageCode: string, updateHospitalLanguageCommand?: UpdateHospitalLanguageCommand | undefined, options?: any): AxiosPromise<boolean>;
26538
26587
  /**
26539
26588
  *
26540
26589
  * @summary Create HospitalLanguages.
@@ -27417,6 +27466,17 @@ export declare class HospitalsApi extends BaseAPI {
27417
27466
  * @memberof HospitalsApi
27418
27467
  */
27419
27468
  apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete(hospitalId: string, languageCode: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
27469
+ /**
27470
+ *
27471
+ * @summary Update HospitalLanguage
27472
+ * @param {string} hospitalId
27473
+ * @param {string} languageCode
27474
+ * @param {UpdateHospitalLanguageCommand} [updateHospitalLanguageCommand]
27475
+ * @param {*} [options] Override http request option.
27476
+ * @throws {RequiredError}
27477
+ * @memberof HospitalsApi
27478
+ */
27479
+ apiV1HospitalsHospitalIdLanguagesLanguageCodePut(hospitalId: string, languageCode: string, updateHospitalLanguageCommand?: UpdateHospitalLanguageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
27420
27480
  /**
27421
27481
  *
27422
27482
  * @summary Create HospitalLanguages.