ch-api-client-typescript2 4.2.3 → 4.2.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 +28 -8
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +28 -14
- package/package.json +1 -1
- package/src/api.ts +42 -14
package/lib/api.d.ts
CHANGED
|
@@ -8716,6 +8716,12 @@ export interface SpecialtyItemModel {
|
|
|
8716
8716
|
* @memberof SpecialtyItemModel
|
|
8717
8717
|
*/
|
|
8718
8718
|
'specialtyTypeName'?: string | null;
|
|
8719
|
+
/**
|
|
8720
|
+
*
|
|
8721
|
+
* @type {MarketingType}
|
|
8722
|
+
* @memberof SpecialtyItemModel
|
|
8723
|
+
*/
|
|
8724
|
+
'marketingType'?: MarketingType;
|
|
8719
8725
|
/**
|
|
8720
8726
|
*
|
|
8721
8727
|
* @type {Array<MediaModel>}
|
|
@@ -8820,6 +8826,12 @@ export interface SpecialtyModel {
|
|
|
8820
8826
|
* @memberof SpecialtyModel
|
|
8821
8827
|
*/
|
|
8822
8828
|
'specialtyTypeName'?: string | null;
|
|
8829
|
+
/**
|
|
8830
|
+
*
|
|
8831
|
+
* @type {MarketingType}
|
|
8832
|
+
* @memberof SpecialtyModel
|
|
8833
|
+
*/
|
|
8834
|
+
'marketingType'?: MarketingType;
|
|
8823
8835
|
/**
|
|
8824
8836
|
*
|
|
8825
8837
|
* @type {Array<MediaModel>}
|
|
@@ -18196,6 +18208,7 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
18196
18208
|
* @param {string} [name]
|
|
18197
18209
|
* @param {string} [description]
|
|
18198
18210
|
* @param {string} [specialtyTypeId]
|
|
18211
|
+
* @param {MarketingType} [marketingType]
|
|
18199
18212
|
* @param {string} [hospitalId]
|
|
18200
18213
|
* @param {Date} [created]
|
|
18201
18214
|
* @param {string} [languageCode]
|
|
@@ -18207,7 +18220,7 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
18207
18220
|
* @param {*} [options] Override http request option.
|
|
18208
18221
|
* @throws {RequiredError}
|
|
18209
18222
|
*/
|
|
18210
|
-
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>;
|
|
18223
|
+
apiV2SpecialtiesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | 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>;
|
|
18211
18224
|
/**
|
|
18212
18225
|
*
|
|
18213
18226
|
* @summary Get all Specialties Simple.
|
|
@@ -18215,6 +18228,7 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
18215
18228
|
* @param {string} [name]
|
|
18216
18229
|
* @param {string} [description]
|
|
18217
18230
|
* @param {string} [specialtyTypeId]
|
|
18231
|
+
* @param {MarketingType} [marketingType]
|
|
18218
18232
|
* @param {string} [hospitalId]
|
|
18219
18233
|
* @param {Date} [created]
|
|
18220
18234
|
* @param {string} [languageCode]
|
|
@@ -18226,7 +18240,7 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
18226
18240
|
* @param {*} [options] Override http request option.
|
|
18227
18241
|
* @throws {RequiredError}
|
|
18228
18242
|
*/
|
|
18229
|
-
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>;
|
|
18243
|
+
apiV2SpecialtiesSimpleGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | 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>;
|
|
18230
18244
|
/**
|
|
18231
18245
|
*
|
|
18232
18246
|
* @param {string} slug
|
|
@@ -18280,6 +18294,7 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
18280
18294
|
* @param {string} [name]
|
|
18281
18295
|
* @param {string} [description]
|
|
18282
18296
|
* @param {string} [specialtyTypeId]
|
|
18297
|
+
* @param {MarketingType} [marketingType]
|
|
18283
18298
|
* @param {string} [hospitalId]
|
|
18284
18299
|
* @param {Date} [created]
|
|
18285
18300
|
* @param {string} [languageCode]
|
|
@@ -18291,7 +18306,7 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
18291
18306
|
* @param {*} [options] Override http request option.
|
|
18292
18307
|
* @throws {RequiredError}
|
|
18293
18308
|
*/
|
|
18294
|
-
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>>;
|
|
18309
|
+
apiV2SpecialtiesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | 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>>;
|
|
18295
18310
|
/**
|
|
18296
18311
|
*
|
|
18297
18312
|
* @summary Get all Specialties Simple.
|
|
@@ -18299,6 +18314,7 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
18299
18314
|
* @param {string} [name]
|
|
18300
18315
|
* @param {string} [description]
|
|
18301
18316
|
* @param {string} [specialtyTypeId]
|
|
18317
|
+
* @param {MarketingType} [marketingType]
|
|
18302
18318
|
* @param {string} [hospitalId]
|
|
18303
18319
|
* @param {Date} [created]
|
|
18304
18320
|
* @param {string} [languageCode]
|
|
@@ -18310,7 +18326,7 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
18310
18326
|
* @param {*} [options] Override http request option.
|
|
18311
18327
|
* @throws {RequiredError}
|
|
18312
18328
|
*/
|
|
18313
|
-
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>>;
|
|
18329
|
+
apiV2SpecialtiesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | 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>>;
|
|
18314
18330
|
/**
|
|
18315
18331
|
*
|
|
18316
18332
|
* @param {string} slug
|
|
@@ -18364,6 +18380,7 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
18364
18380
|
* @param {string} [name]
|
|
18365
18381
|
* @param {string} [description]
|
|
18366
18382
|
* @param {string} [specialtyTypeId]
|
|
18383
|
+
* @param {MarketingType} [marketingType]
|
|
18367
18384
|
* @param {string} [hospitalId]
|
|
18368
18385
|
* @param {Date} [created]
|
|
18369
18386
|
* @param {string} [languageCode]
|
|
@@ -18375,7 +18392,7 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
18375
18392
|
* @param {*} [options] Override http request option.
|
|
18376
18393
|
* @throws {RequiredError}
|
|
18377
18394
|
*/
|
|
18378
|
-
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>;
|
|
18395
|
+
apiV2SpecialtiesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | 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>;
|
|
18379
18396
|
/**
|
|
18380
18397
|
*
|
|
18381
18398
|
* @summary Get all Specialties Simple.
|
|
@@ -18383,6 +18400,7 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
18383
18400
|
* @param {string} [name]
|
|
18384
18401
|
* @param {string} [description]
|
|
18385
18402
|
* @param {string} [specialtyTypeId]
|
|
18403
|
+
* @param {MarketingType} [marketingType]
|
|
18386
18404
|
* @param {string} [hospitalId]
|
|
18387
18405
|
* @param {Date} [created]
|
|
18388
18406
|
* @param {string} [languageCode]
|
|
@@ -18394,7 +18412,7 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
18394
18412
|
* @param {*} [options] Override http request option.
|
|
18395
18413
|
* @throws {RequiredError}
|
|
18396
18414
|
*/
|
|
18397
|
-
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>;
|
|
18415
|
+
apiV2SpecialtiesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | 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>;
|
|
18398
18416
|
/**
|
|
18399
18417
|
*
|
|
18400
18418
|
* @param {string} slug
|
|
@@ -18450,6 +18468,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
18450
18468
|
* @param {string} [name]
|
|
18451
18469
|
* @param {string} [description]
|
|
18452
18470
|
* @param {string} [specialtyTypeId]
|
|
18471
|
+
* @param {MarketingType} [marketingType]
|
|
18453
18472
|
* @param {string} [hospitalId]
|
|
18454
18473
|
* @param {Date} [created]
|
|
18455
18474
|
* @param {string} [languageCode]
|
|
@@ -18462,7 +18481,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
18462
18481
|
* @throws {RequiredError}
|
|
18463
18482
|
* @memberof SpecialtiesApi
|
|
18464
18483
|
*/
|
|
18465
|
-
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>>;
|
|
18484
|
+
apiV2SpecialtiesGet(id?: string, name?: string, description?: string, specialtyTypeId?: string, marketingType?: MarketingType, 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>>;
|
|
18466
18485
|
/**
|
|
18467
18486
|
*
|
|
18468
18487
|
* @summary Get all Specialties Simple.
|
|
@@ -18470,6 +18489,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
18470
18489
|
* @param {string} [name]
|
|
18471
18490
|
* @param {string} [description]
|
|
18472
18491
|
* @param {string} [specialtyTypeId]
|
|
18492
|
+
* @param {MarketingType} [marketingType]
|
|
18473
18493
|
* @param {string} [hospitalId]
|
|
18474
18494
|
* @param {Date} [created]
|
|
18475
18495
|
* @param {string} [languageCode]
|
|
@@ -18482,7 +18502,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
18482
18502
|
* @throws {RequiredError}
|
|
18483
18503
|
* @memberof SpecialtiesApi
|
|
18484
18504
|
*/
|
|
18485
|
-
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>>;
|
|
18505
|
+
apiV2SpecialtiesSimpleGet(id?: string, name?: string, description?: string, specialtyTypeId?: string, marketingType?: MarketingType, 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>>;
|
|
18486
18506
|
/**
|
|
18487
18507
|
*
|
|
18488
18508
|
* @param {string} slug
|