ch-api-client-typescript2 2.8.1 → 2.8.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 +24 -8
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +42 -14
- package/package.json +1 -1
- package/src/api.ts +46 -14
package/lib/api.d.ts
CHANGED
|
@@ -16091,6 +16091,8 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16091
16091
|
* @param {string} [languageCode]
|
|
16092
16092
|
* @param {boolean} [returnDefaultValue]
|
|
16093
16093
|
* @param {Array<string>} [ids]
|
|
16094
|
+
* @param {string} [specialtyId]
|
|
16095
|
+
* @param {boolean} [consultationEnabled]
|
|
16094
16096
|
* @param {string} [id]
|
|
16095
16097
|
* @param {string} [fullname]
|
|
16096
16098
|
* @param {string} [email]
|
|
@@ -16104,7 +16106,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16104
16106
|
* @param {*} [options] Override http request option.
|
|
16105
16107
|
* @throws {RequiredError}
|
|
16106
16108
|
*/
|
|
16107
|
-
apiV2DoctorsGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16109
|
+
apiV2DoctorsGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16108
16110
|
/**
|
|
16109
16111
|
*
|
|
16110
16112
|
* @summary Get all Doctors.
|
|
@@ -16112,6 +16114,8 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16112
16114
|
* @param {string} [languageCode]
|
|
16113
16115
|
* @param {boolean} [returnDefaultValue]
|
|
16114
16116
|
* @param {Array<string>} [ids]
|
|
16117
|
+
* @param {string} [specialtyId]
|
|
16118
|
+
* @param {boolean} [consultationEnabled]
|
|
16115
16119
|
* @param {string} [id]
|
|
16116
16120
|
* @param {string} [fullname]
|
|
16117
16121
|
* @param {string} [email]
|
|
@@ -16125,7 +16129,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16125
16129
|
* @param {*} [options] Override http request option.
|
|
16126
16130
|
* @throws {RequiredError}
|
|
16127
16131
|
*/
|
|
16128
|
-
apiV2DoctorsSimpleGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16132
|
+
apiV2DoctorsSimpleGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16129
16133
|
/**
|
|
16130
16134
|
*
|
|
16131
16135
|
* @param {string} slug
|
|
@@ -16296,6 +16300,8 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16296
16300
|
* @param {string} [languageCode]
|
|
16297
16301
|
* @param {boolean} [returnDefaultValue]
|
|
16298
16302
|
* @param {Array<string>} [ids]
|
|
16303
|
+
* @param {string} [specialtyId]
|
|
16304
|
+
* @param {boolean} [consultationEnabled]
|
|
16299
16305
|
* @param {string} [id]
|
|
16300
16306
|
* @param {string} [fullname]
|
|
16301
16307
|
* @param {string} [email]
|
|
@@ -16309,7 +16315,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16309
16315
|
* @param {*} [options] Override http request option.
|
|
16310
16316
|
* @throws {RequiredError}
|
|
16311
16317
|
*/
|
|
16312
|
-
apiV2DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
|
|
16318
|
+
apiV2DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
|
|
16313
16319
|
/**
|
|
16314
16320
|
*
|
|
16315
16321
|
* @summary Get all Doctors.
|
|
@@ -16317,6 +16323,8 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16317
16323
|
* @param {string} [languageCode]
|
|
16318
16324
|
* @param {boolean} [returnDefaultValue]
|
|
16319
16325
|
* @param {Array<string>} [ids]
|
|
16326
|
+
* @param {string} [specialtyId]
|
|
16327
|
+
* @param {boolean} [consultationEnabled]
|
|
16320
16328
|
* @param {string} [id]
|
|
16321
16329
|
* @param {string} [fullname]
|
|
16322
16330
|
* @param {string} [email]
|
|
@@ -16330,7 +16338,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16330
16338
|
* @param {*} [options] Override http request option.
|
|
16331
16339
|
* @throws {RequiredError}
|
|
16332
16340
|
*/
|
|
16333
|
-
apiV2DoctorsSimpleGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsSimpleModel>>;
|
|
16341
|
+
apiV2DoctorsSimpleGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsSimpleModel>>;
|
|
16334
16342
|
/**
|
|
16335
16343
|
*
|
|
16336
16344
|
* @param {string} slug
|
|
@@ -16501,6 +16509,8 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16501
16509
|
* @param {string} [languageCode]
|
|
16502
16510
|
* @param {boolean} [returnDefaultValue]
|
|
16503
16511
|
* @param {Array<string>} [ids]
|
|
16512
|
+
* @param {string} [specialtyId]
|
|
16513
|
+
* @param {boolean} [consultationEnabled]
|
|
16504
16514
|
* @param {string} [id]
|
|
16505
16515
|
* @param {string} [fullname]
|
|
16506
16516
|
* @param {string} [email]
|
|
@@ -16514,7 +16524,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16514
16524
|
* @param {*} [options] Override http request option.
|
|
16515
16525
|
* @throws {RequiredError}
|
|
16516
16526
|
*/
|
|
16517
|
-
apiV2DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
|
|
16527
|
+
apiV2DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
|
|
16518
16528
|
/**
|
|
16519
16529
|
*
|
|
16520
16530
|
* @summary Get all Doctors.
|
|
@@ -16522,6 +16532,8 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16522
16532
|
* @param {string} [languageCode]
|
|
16523
16533
|
* @param {boolean} [returnDefaultValue]
|
|
16524
16534
|
* @param {Array<string>} [ids]
|
|
16535
|
+
* @param {string} [specialtyId]
|
|
16536
|
+
* @param {boolean} [consultationEnabled]
|
|
16525
16537
|
* @param {string} [id]
|
|
16526
16538
|
* @param {string} [fullname]
|
|
16527
16539
|
* @param {string} [email]
|
|
@@ -16535,7 +16547,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16535
16547
|
* @param {*} [options] Override http request option.
|
|
16536
16548
|
* @throws {RequiredError}
|
|
16537
16549
|
*/
|
|
16538
|
-
apiV2DoctorsSimpleGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsSimpleModel>;
|
|
16550
|
+
apiV2DoctorsSimpleGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsSimpleModel>;
|
|
16539
16551
|
/**
|
|
16540
16552
|
*
|
|
16541
16553
|
* @param {string} slug
|
|
@@ -16721,6 +16733,8 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16721
16733
|
* @param {string} [languageCode]
|
|
16722
16734
|
* @param {boolean} [returnDefaultValue]
|
|
16723
16735
|
* @param {Array<string>} [ids]
|
|
16736
|
+
* @param {string} [specialtyId]
|
|
16737
|
+
* @param {boolean} [consultationEnabled]
|
|
16724
16738
|
* @param {string} [id]
|
|
16725
16739
|
* @param {string} [fullname]
|
|
16726
16740
|
* @param {string} [email]
|
|
@@ -16735,7 +16749,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16735
16749
|
* @throws {RequiredError}
|
|
16736
16750
|
* @memberof DoctorsApi
|
|
16737
16751
|
*/
|
|
16738
|
-
apiV2DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
|
|
16752
|
+
apiV2DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
|
|
16739
16753
|
/**
|
|
16740
16754
|
*
|
|
16741
16755
|
* @summary Get all Doctors.
|
|
@@ -16743,6 +16757,8 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16743
16757
|
* @param {string} [languageCode]
|
|
16744
16758
|
* @param {boolean} [returnDefaultValue]
|
|
16745
16759
|
* @param {Array<string>} [ids]
|
|
16760
|
+
* @param {string} [specialtyId]
|
|
16761
|
+
* @param {boolean} [consultationEnabled]
|
|
16746
16762
|
* @param {string} [id]
|
|
16747
16763
|
* @param {string} [fullname]
|
|
16748
16764
|
* @param {string} [email]
|
|
@@ -16757,7 +16773,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16757
16773
|
* @throws {RequiredError}
|
|
16758
16774
|
* @memberof DoctorsApi
|
|
16759
16775
|
*/
|
|
16760
|
-
apiV2DoctorsSimpleGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsSimpleModel>>;
|
|
16776
|
+
apiV2DoctorsSimpleGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsSimpleModel>>;
|
|
16761
16777
|
/**
|
|
16762
16778
|
*
|
|
16763
16779
|
* @param {string} slug
|