ch-admin-api-client-typescript 4.5.1 → 4.5.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 +66 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +98 -0
- package/package.json +1 -1
- package/src/api.ts +110 -0
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
|
*
|
|
@@ -8490,6 +8496,12 @@ export interface HospitalLanguageItemModel {
|
|
|
8490
8496
|
* @memberof HospitalLanguageItemModel
|
|
8491
8497
|
*/
|
|
8492
8498
|
'name'?: string | null;
|
|
8499
|
+
/**
|
|
8500
|
+
*
|
|
8501
|
+
* @type {boolean}
|
|
8502
|
+
* @memberof HospitalLanguageItemModel
|
|
8503
|
+
*/
|
|
8504
|
+
'published'?: boolean;
|
|
8493
8505
|
}
|
|
8494
8506
|
/**
|
|
8495
8507
|
*
|
|
@@ -14399,6 +14411,19 @@ export interface UpdateHospitalEquipmentCommand {
|
|
|
14399
14411
|
*/
|
|
14400
14412
|
'auditableEntity'?: AuditableEntity;
|
|
14401
14413
|
}
|
|
14414
|
+
/**
|
|
14415
|
+
*
|
|
14416
|
+
* @export
|
|
14417
|
+
* @interface UpdateHospitalLanguageCommand
|
|
14418
|
+
*/
|
|
14419
|
+
export interface UpdateHospitalLanguageCommand {
|
|
14420
|
+
/**
|
|
14421
|
+
*
|
|
14422
|
+
* @type {number}
|
|
14423
|
+
* @memberof UpdateHospitalLanguageCommand
|
|
14424
|
+
*/
|
|
14425
|
+
'order'?: number;
|
|
14426
|
+
}
|
|
14402
14427
|
/**
|
|
14403
14428
|
*
|
|
14404
14429
|
* @export
|
|
@@ -24845,6 +24870,16 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
24845
24870
|
* @throws {RequiredError}
|
|
24846
24871
|
*/
|
|
24847
24872
|
apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete: (hospitalId: string, languageCode: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
24873
|
+
/**
|
|
24874
|
+
*
|
|
24875
|
+
* @summary Update HospitalLanguage
|
|
24876
|
+
* @param {string} hospitalId
|
|
24877
|
+
* @param {string} languageCode
|
|
24878
|
+
* @param {UpdateHospitalLanguageCommand} [updateHospitalLanguageCommand]
|
|
24879
|
+
* @param {*} [options] Override http request option.
|
|
24880
|
+
* @throws {RequiredError}
|
|
24881
|
+
*/
|
|
24882
|
+
apiV1HospitalsHospitalIdLanguagesLanguageCodePut: (hospitalId: string, languageCode: string, updateHospitalLanguageCommand?: UpdateHospitalLanguageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
24848
24883
|
/**
|
|
24849
24884
|
*
|
|
24850
24885
|
* @summary Create HospitalLanguages.
|
|
@@ -25690,6 +25725,16 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
25690
25725
|
* @throws {RequiredError}
|
|
25691
25726
|
*/
|
|
25692
25727
|
apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete(hospitalId: string, languageCode: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
25728
|
+
/**
|
|
25729
|
+
*
|
|
25730
|
+
* @summary Update HospitalLanguage
|
|
25731
|
+
* @param {string} hospitalId
|
|
25732
|
+
* @param {string} languageCode
|
|
25733
|
+
* @param {UpdateHospitalLanguageCommand} [updateHospitalLanguageCommand]
|
|
25734
|
+
* @param {*} [options] Override http request option.
|
|
25735
|
+
* @throws {RequiredError}
|
|
25736
|
+
*/
|
|
25737
|
+
apiV1HospitalsHospitalIdLanguagesLanguageCodePut(hospitalId: string, languageCode: string, updateHospitalLanguageCommand?: UpdateHospitalLanguageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
25693
25738
|
/**
|
|
25694
25739
|
*
|
|
25695
25740
|
* @summary Create HospitalLanguages.
|
|
@@ -26535,6 +26580,16 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
26535
26580
|
* @throws {RequiredError}
|
|
26536
26581
|
*/
|
|
26537
26582
|
apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete(hospitalId: string, languageCode: string, options?: any): AxiosPromise<boolean>;
|
|
26583
|
+
/**
|
|
26584
|
+
*
|
|
26585
|
+
* @summary Update HospitalLanguage
|
|
26586
|
+
* @param {string} hospitalId
|
|
26587
|
+
* @param {string} languageCode
|
|
26588
|
+
* @param {UpdateHospitalLanguageCommand} [updateHospitalLanguageCommand]
|
|
26589
|
+
* @param {*} [options] Override http request option.
|
|
26590
|
+
* @throws {RequiredError}
|
|
26591
|
+
*/
|
|
26592
|
+
apiV1HospitalsHospitalIdLanguagesLanguageCodePut(hospitalId: string, languageCode: string, updateHospitalLanguageCommand?: UpdateHospitalLanguageCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
26538
26593
|
/**
|
|
26539
26594
|
*
|
|
26540
26595
|
* @summary Create HospitalLanguages.
|
|
@@ -27417,6 +27472,17 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
27417
27472
|
* @memberof HospitalsApi
|
|
27418
27473
|
*/
|
|
27419
27474
|
apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete(hospitalId: string, languageCode: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
27475
|
+
/**
|
|
27476
|
+
*
|
|
27477
|
+
* @summary Update HospitalLanguage
|
|
27478
|
+
* @param {string} hospitalId
|
|
27479
|
+
* @param {string} languageCode
|
|
27480
|
+
* @param {UpdateHospitalLanguageCommand} [updateHospitalLanguageCommand]
|
|
27481
|
+
* @param {*} [options] Override http request option.
|
|
27482
|
+
* @throws {RequiredError}
|
|
27483
|
+
* @memberof HospitalsApi
|
|
27484
|
+
*/
|
|
27485
|
+
apiV1HospitalsHospitalIdLanguagesLanguageCodePut(hospitalId: string, languageCode: string, updateHospitalLanguageCommand?: UpdateHospitalLanguageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
27420
27486
|
/**
|
|
27421
27487
|
*
|
|
27422
27488
|
* @summary Create HospitalLanguages.
|