ch-admin-api-client-typescript 4.6.2 → 4.6.4
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 +38 -4
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +14 -7
- package/package.json +1 -1
- package/src/api.ts +45 -7
package/lib/api.d.ts
CHANGED
|
@@ -4222,6 +4222,18 @@ export interface CreateDoctorCommand {
|
|
|
4222
4222
|
* @memberof CreateDoctorCommand
|
|
4223
4223
|
*/
|
|
4224
4224
|
'hospitalId'?: string | null;
|
|
4225
|
+
/**
|
|
4226
|
+
*
|
|
4227
|
+
* @type {string}
|
|
4228
|
+
* @memberof CreateDoctorCommand
|
|
4229
|
+
*/
|
|
4230
|
+
'languageCode'?: string | null;
|
|
4231
|
+
/**
|
|
4232
|
+
*
|
|
4233
|
+
* @type {string}
|
|
4234
|
+
* @memberof CreateDoctorCommand
|
|
4235
|
+
*/
|
|
4236
|
+
'localizedName'?: string | null;
|
|
4225
4237
|
}
|
|
4226
4238
|
/**
|
|
4227
4239
|
*
|
|
@@ -4691,6 +4703,12 @@ export interface CreateHospitalLanguageCommand {
|
|
|
4691
4703
|
* @memberof CreateHospitalLanguageCommand
|
|
4692
4704
|
*/
|
|
4693
4705
|
'order'?: number | null;
|
|
4706
|
+
/**
|
|
4707
|
+
*
|
|
4708
|
+
* @type {boolean}
|
|
4709
|
+
* @memberof CreateHospitalLanguageCommand
|
|
4710
|
+
*/
|
|
4711
|
+
'isPrimary'?: boolean | null;
|
|
4694
4712
|
}
|
|
4695
4713
|
/**
|
|
4696
4714
|
*
|
|
@@ -8568,6 +8586,12 @@ export interface HospitalLanguageItemModel {
|
|
|
8568
8586
|
* @memberof HospitalLanguageItemModel
|
|
8569
8587
|
*/
|
|
8570
8588
|
'order'?: number;
|
|
8589
|
+
/**
|
|
8590
|
+
*
|
|
8591
|
+
* @type {boolean}
|
|
8592
|
+
* @memberof HospitalLanguageItemModel
|
|
8593
|
+
*/
|
|
8594
|
+
'isPrimary'?: boolean;
|
|
8571
8595
|
}
|
|
8572
8596
|
/**
|
|
8573
8597
|
*
|
|
@@ -14465,6 +14489,12 @@ export interface UpdateHospitalLanguageCommand {
|
|
|
14465
14489
|
* @memberof UpdateHospitalLanguageCommand
|
|
14466
14490
|
*/
|
|
14467
14491
|
'order'?: number;
|
|
14492
|
+
/**
|
|
14493
|
+
*
|
|
14494
|
+
* @type {boolean}
|
|
14495
|
+
* @memberof UpdateHospitalLanguageCommand
|
|
14496
|
+
*/
|
|
14497
|
+
'isPrimary'?: boolean | null;
|
|
14468
14498
|
}
|
|
14469
14499
|
/**
|
|
14470
14500
|
*
|
|
@@ -24902,13 +24932,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
24902
24932
|
* @summary Get all GetAllLanguages.
|
|
24903
24933
|
* @param {string} hospitalId
|
|
24904
24934
|
* @param {string} [name]
|
|
24935
|
+
* @param {boolean} [showHidden]
|
|
24905
24936
|
* @param {number} [page]
|
|
24906
24937
|
* @param {number} [limit]
|
|
24907
24938
|
* @param {Date} [lastRetrieved]
|
|
24908
24939
|
* @param {*} [options] Override http request option.
|
|
24909
24940
|
* @throws {RequiredError}
|
|
24910
24941
|
*/
|
|
24911
|
-
apiV1HospitalsHospitalIdLanguagesGet: (hospitalId: string, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
24942
|
+
apiV1HospitalsHospitalIdLanguagesGet: (hospitalId: string, name?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
24912
24943
|
/**
|
|
24913
24944
|
*
|
|
24914
24945
|
* @summary Delete GetAllLanguage.
|
|
@@ -25757,13 +25788,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
25757
25788
|
* @summary Get all GetAllLanguages.
|
|
25758
25789
|
* @param {string} hospitalId
|
|
25759
25790
|
* @param {string} [name]
|
|
25791
|
+
* @param {boolean} [showHidden]
|
|
25760
25792
|
* @param {number} [page]
|
|
25761
25793
|
* @param {number} [limit]
|
|
25762
25794
|
* @param {Date} [lastRetrieved]
|
|
25763
25795
|
* @param {*} [options] Override http request option.
|
|
25764
25796
|
* @throws {RequiredError}
|
|
25765
25797
|
*/
|
|
25766
|
-
apiV1HospitalsHospitalIdLanguagesGet(hospitalId: string, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalLanguagesModel>>;
|
|
25798
|
+
apiV1HospitalsHospitalIdLanguagesGet(hospitalId: string, name?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalLanguagesModel>>;
|
|
25767
25799
|
/**
|
|
25768
25800
|
*
|
|
25769
25801
|
* @summary Delete GetAllLanguage.
|
|
@@ -26612,13 +26644,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
26612
26644
|
* @summary Get all GetAllLanguages.
|
|
26613
26645
|
* @param {string} hospitalId
|
|
26614
26646
|
* @param {string} [name]
|
|
26647
|
+
* @param {boolean} [showHidden]
|
|
26615
26648
|
* @param {number} [page]
|
|
26616
26649
|
* @param {number} [limit]
|
|
26617
26650
|
* @param {Date} [lastRetrieved]
|
|
26618
26651
|
* @param {*} [options] Override http request option.
|
|
26619
26652
|
* @throws {RequiredError}
|
|
26620
26653
|
*/
|
|
26621
|
-
apiV1HospitalsHospitalIdLanguagesGet(hospitalId: string, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalLanguagesModel>;
|
|
26654
|
+
apiV1HospitalsHospitalIdLanguagesGet(hospitalId: string, name?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalLanguagesModel>;
|
|
26622
26655
|
/**
|
|
26623
26656
|
*
|
|
26624
26657
|
* @summary Delete GetAllLanguage.
|
|
@@ -27502,6 +27535,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
27502
27535
|
* @summary Get all GetAllLanguages.
|
|
27503
27536
|
* @param {string} hospitalId
|
|
27504
27537
|
* @param {string} [name]
|
|
27538
|
+
* @param {boolean} [showHidden]
|
|
27505
27539
|
* @param {number} [page]
|
|
27506
27540
|
* @param {number} [limit]
|
|
27507
27541
|
* @param {Date} [lastRetrieved]
|
|
@@ -27509,7 +27543,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
27509
27543
|
* @throws {RequiredError}
|
|
27510
27544
|
* @memberof HospitalsApi
|
|
27511
27545
|
*/
|
|
27512
|
-
apiV1HospitalsHospitalIdLanguagesGet(hospitalId: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalLanguagesModel>>;
|
|
27546
|
+
apiV1HospitalsHospitalIdLanguagesGet(hospitalId: string, name?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalLanguagesModel>>;
|
|
27513
27547
|
/**
|
|
27514
27548
|
*
|
|
27515
27549
|
* @summary Delete GetAllLanguage.
|