ch-api-client-typescript2 3.1.4 → 3.1.5
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 +133 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +156 -0
- package/package.json +1 -1
- package/src/api.ts +216 -0
package/lib/api.d.ts
CHANGED
|
@@ -8920,6 +8920,25 @@ export interface SpecialtiesModel {
|
|
|
8920
8920
|
*/
|
|
8921
8921
|
'metaData'?: PagedListMetaData;
|
|
8922
8922
|
}
|
|
8923
|
+
/**
|
|
8924
|
+
*
|
|
8925
|
+
* @export
|
|
8926
|
+
* @interface SpecialtiesSimpleModel
|
|
8927
|
+
*/
|
|
8928
|
+
export interface SpecialtiesSimpleModel {
|
|
8929
|
+
/**
|
|
8930
|
+
*
|
|
8931
|
+
* @type {Array<SpecialtyItemSimpleModel>}
|
|
8932
|
+
* @memberof SpecialtiesSimpleModel
|
|
8933
|
+
*/
|
|
8934
|
+
'items'?: Array<SpecialtyItemSimpleModel> | null;
|
|
8935
|
+
/**
|
|
8936
|
+
*
|
|
8937
|
+
* @type {PagedListMetaData}
|
|
8938
|
+
* @memberof SpecialtiesSimpleModel
|
|
8939
|
+
*/
|
|
8940
|
+
'metaData'?: PagedListMetaData;
|
|
8941
|
+
}
|
|
8923
8942
|
/**
|
|
8924
8943
|
*
|
|
8925
8944
|
* @export
|
|
@@ -9011,6 +9030,43 @@ export interface SpecialtyItemModel {
|
|
|
9011
9030
|
*/
|
|
9012
9031
|
'medias'?: Array<MediaModel> | null;
|
|
9013
9032
|
}
|
|
9033
|
+
/**
|
|
9034
|
+
*
|
|
9035
|
+
* @export
|
|
9036
|
+
* @interface SpecialtyItemSimpleModel
|
|
9037
|
+
*/
|
|
9038
|
+
export interface SpecialtyItemSimpleModel {
|
|
9039
|
+
/**
|
|
9040
|
+
*
|
|
9041
|
+
* @type {string}
|
|
9042
|
+
* @memberof SpecialtyItemSimpleModel
|
|
9043
|
+
*/
|
|
9044
|
+
'id'?: string;
|
|
9045
|
+
/**
|
|
9046
|
+
*
|
|
9047
|
+
* @type {string}
|
|
9048
|
+
* @memberof SpecialtyItemSimpleModel
|
|
9049
|
+
*/
|
|
9050
|
+
'name'?: string | null;
|
|
9051
|
+
/**
|
|
9052
|
+
*
|
|
9053
|
+
* @type {string}
|
|
9054
|
+
* @memberof SpecialtyItemSimpleModel
|
|
9055
|
+
*/
|
|
9056
|
+
'slug'?: string | null;
|
|
9057
|
+
/**
|
|
9058
|
+
*
|
|
9059
|
+
* @type {string}
|
|
9060
|
+
* @memberof SpecialtyItemSimpleModel
|
|
9061
|
+
*/
|
|
9062
|
+
'specialtyTypeId'?: string;
|
|
9063
|
+
/**
|
|
9064
|
+
*
|
|
9065
|
+
* @type {boolean}
|
|
9066
|
+
* @memberof SpecialtyItemSimpleModel
|
|
9067
|
+
*/
|
|
9068
|
+
'confirmed'?: boolean;
|
|
9069
|
+
}
|
|
9014
9070
|
/**
|
|
9015
9071
|
*
|
|
9016
9072
|
* @export
|
|
@@ -18255,6 +18311,25 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
18255
18311
|
* @throws {RequiredError}
|
|
18256
18312
|
*/
|
|
18257
18313
|
apiV2SpecialtiesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18314
|
+
/**
|
|
18315
|
+
*
|
|
18316
|
+
* @summary Get all Specialties Simple.
|
|
18317
|
+
* @param {string} [id]
|
|
18318
|
+
* @param {string} [name]
|
|
18319
|
+
* @param {string} [description]
|
|
18320
|
+
* @param {string} [specialtyTypeId]
|
|
18321
|
+
* @param {string} [hospitalId]
|
|
18322
|
+
* @param {Date} [created]
|
|
18323
|
+
* @param {string} [languageCode]
|
|
18324
|
+
* @param {Array<string>} [ids]
|
|
18325
|
+
* @param {boolean} [returnDefaultValue]
|
|
18326
|
+
* @param {number} [page]
|
|
18327
|
+
* @param {number} [limit]
|
|
18328
|
+
* @param {Date} [lastRetrieved]
|
|
18329
|
+
* @param {*} [options] Override http request option.
|
|
18330
|
+
* @throws {RequiredError}
|
|
18331
|
+
*/
|
|
18332
|
+
apiV2SpecialtiesSimpleGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18258
18333
|
/**
|
|
18259
18334
|
*
|
|
18260
18335
|
* @param {string} slug
|
|
@@ -18320,6 +18395,25 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
18320
18395
|
* @throws {RequiredError}
|
|
18321
18396
|
*/
|
|
18322
18397
|
apiV2SpecialtiesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtiesModel>>;
|
|
18398
|
+
/**
|
|
18399
|
+
*
|
|
18400
|
+
* @summary Get all Specialties Simple.
|
|
18401
|
+
* @param {string} [id]
|
|
18402
|
+
* @param {string} [name]
|
|
18403
|
+
* @param {string} [description]
|
|
18404
|
+
* @param {string} [specialtyTypeId]
|
|
18405
|
+
* @param {string} [hospitalId]
|
|
18406
|
+
* @param {Date} [created]
|
|
18407
|
+
* @param {string} [languageCode]
|
|
18408
|
+
* @param {Array<string>} [ids]
|
|
18409
|
+
* @param {boolean} [returnDefaultValue]
|
|
18410
|
+
* @param {number} [page]
|
|
18411
|
+
* @param {number} [limit]
|
|
18412
|
+
* @param {Date} [lastRetrieved]
|
|
18413
|
+
* @param {*} [options] Override http request option.
|
|
18414
|
+
* @throws {RequiredError}
|
|
18415
|
+
*/
|
|
18416
|
+
apiV2SpecialtiesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtiesSimpleModel>>;
|
|
18323
18417
|
/**
|
|
18324
18418
|
*
|
|
18325
18419
|
* @param {string} slug
|
|
@@ -18385,6 +18479,25 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
18385
18479
|
* @throws {RequiredError}
|
|
18386
18480
|
*/
|
|
18387
18481
|
apiV2SpecialtiesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtiesModel>;
|
|
18482
|
+
/**
|
|
18483
|
+
*
|
|
18484
|
+
* @summary Get all Specialties Simple.
|
|
18485
|
+
* @param {string} [id]
|
|
18486
|
+
* @param {string} [name]
|
|
18487
|
+
* @param {string} [description]
|
|
18488
|
+
* @param {string} [specialtyTypeId]
|
|
18489
|
+
* @param {string} [hospitalId]
|
|
18490
|
+
* @param {Date} [created]
|
|
18491
|
+
* @param {string} [languageCode]
|
|
18492
|
+
* @param {Array<string>} [ids]
|
|
18493
|
+
* @param {boolean} [returnDefaultValue]
|
|
18494
|
+
* @param {number} [page]
|
|
18495
|
+
* @param {number} [limit]
|
|
18496
|
+
* @param {Date} [lastRetrieved]
|
|
18497
|
+
* @param {*} [options] Override http request option.
|
|
18498
|
+
* @throws {RequiredError}
|
|
18499
|
+
*/
|
|
18500
|
+
apiV2SpecialtiesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtiesSimpleModel>;
|
|
18388
18501
|
/**
|
|
18389
18502
|
*
|
|
18390
18503
|
* @param {string} slug
|
|
@@ -18453,6 +18566,26 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
18453
18566
|
* @memberof SpecialtiesApi
|
|
18454
18567
|
*/
|
|
18455
18568
|
apiV2SpecialtiesGet(id?: string, name?: string, description?: string, specialtyTypeId?: string, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtiesModel, any>>;
|
|
18569
|
+
/**
|
|
18570
|
+
*
|
|
18571
|
+
* @summary Get all Specialties Simple.
|
|
18572
|
+
* @param {string} [id]
|
|
18573
|
+
* @param {string} [name]
|
|
18574
|
+
* @param {string} [description]
|
|
18575
|
+
* @param {string} [specialtyTypeId]
|
|
18576
|
+
* @param {string} [hospitalId]
|
|
18577
|
+
* @param {Date} [created]
|
|
18578
|
+
* @param {string} [languageCode]
|
|
18579
|
+
* @param {Array<string>} [ids]
|
|
18580
|
+
* @param {boolean} [returnDefaultValue]
|
|
18581
|
+
* @param {number} [page]
|
|
18582
|
+
* @param {number} [limit]
|
|
18583
|
+
* @param {Date} [lastRetrieved]
|
|
18584
|
+
* @param {*} [options] Override http request option.
|
|
18585
|
+
* @throws {RequiredError}
|
|
18586
|
+
* @memberof SpecialtiesApi
|
|
18587
|
+
*/
|
|
18588
|
+
apiV2SpecialtiesSimpleGet(id?: string, name?: string, description?: string, specialtyTypeId?: string, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtiesSimpleModel, any>>;
|
|
18456
18589
|
/**
|
|
18457
18590
|
*
|
|
18458
18591
|
* @param {string} slug
|