ch-api-client-typescript2 4.1.9 → 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 +66 -8
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +28 -14
- package/package.json +1 -1
- package/src/api.ts +81 -14
package/lib/api.d.ts
CHANGED
|
@@ -7829,6 +7829,44 @@ export declare enum Platform {
|
|
|
7829
7829
|
IOs = "iOS",
|
|
7830
7830
|
Android = "Android"
|
|
7831
7831
|
}
|
|
7832
|
+
/**
|
|
7833
|
+
*
|
|
7834
|
+
* @export
|
|
7835
|
+
* @interface ProblemDetails
|
|
7836
|
+
*/
|
|
7837
|
+
export interface ProblemDetails {
|
|
7838
|
+
[key: string]: any | any;
|
|
7839
|
+
/**
|
|
7840
|
+
*
|
|
7841
|
+
* @type {string}
|
|
7842
|
+
* @memberof ProblemDetails
|
|
7843
|
+
*/
|
|
7844
|
+
'type'?: string | null;
|
|
7845
|
+
/**
|
|
7846
|
+
*
|
|
7847
|
+
* @type {string}
|
|
7848
|
+
* @memberof ProblemDetails
|
|
7849
|
+
*/
|
|
7850
|
+
'title'?: string | null;
|
|
7851
|
+
/**
|
|
7852
|
+
*
|
|
7853
|
+
* @type {number}
|
|
7854
|
+
* @memberof ProblemDetails
|
|
7855
|
+
*/
|
|
7856
|
+
'status'?: number | null;
|
|
7857
|
+
/**
|
|
7858
|
+
*
|
|
7859
|
+
* @type {string}
|
|
7860
|
+
* @memberof ProblemDetails
|
|
7861
|
+
*/
|
|
7862
|
+
'detail'?: string | null;
|
|
7863
|
+
/**
|
|
7864
|
+
*
|
|
7865
|
+
* @type {string}
|
|
7866
|
+
* @memberof ProblemDetails
|
|
7867
|
+
*/
|
|
7868
|
+
'instance'?: string | null;
|
|
7869
|
+
}
|
|
7832
7870
|
/**
|
|
7833
7871
|
*
|
|
7834
7872
|
* @export
|
|
@@ -8678,6 +8716,12 @@ export interface SpecialtyItemModel {
|
|
|
8678
8716
|
* @memberof SpecialtyItemModel
|
|
8679
8717
|
*/
|
|
8680
8718
|
'specialtyTypeName'?: string | null;
|
|
8719
|
+
/**
|
|
8720
|
+
*
|
|
8721
|
+
* @type {MarketingType}
|
|
8722
|
+
* @memberof SpecialtyItemModel
|
|
8723
|
+
*/
|
|
8724
|
+
'marketingType'?: MarketingType;
|
|
8681
8725
|
/**
|
|
8682
8726
|
*
|
|
8683
8727
|
* @type {Array<MediaModel>}
|
|
@@ -8782,6 +8826,12 @@ export interface SpecialtyModel {
|
|
|
8782
8826
|
* @memberof SpecialtyModel
|
|
8783
8827
|
*/
|
|
8784
8828
|
'specialtyTypeName'?: string | null;
|
|
8829
|
+
/**
|
|
8830
|
+
*
|
|
8831
|
+
* @type {MarketingType}
|
|
8832
|
+
* @memberof SpecialtyModel
|
|
8833
|
+
*/
|
|
8834
|
+
'marketingType'?: MarketingType;
|
|
8785
8835
|
/**
|
|
8786
8836
|
*
|
|
8787
8837
|
* @type {Array<MediaModel>}
|
|
@@ -18158,6 +18208,7 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
18158
18208
|
* @param {string} [name]
|
|
18159
18209
|
* @param {string} [description]
|
|
18160
18210
|
* @param {string} [specialtyTypeId]
|
|
18211
|
+
* @param {MarketingType} [marketingType]
|
|
18161
18212
|
* @param {string} [hospitalId]
|
|
18162
18213
|
* @param {Date} [created]
|
|
18163
18214
|
* @param {string} [languageCode]
|
|
@@ -18169,7 +18220,7 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
18169
18220
|
* @param {*} [options] Override http request option.
|
|
18170
18221
|
* @throws {RequiredError}
|
|
18171
18222
|
*/
|
|
18172
|
-
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>;
|
|
18173
18224
|
/**
|
|
18174
18225
|
*
|
|
18175
18226
|
* @summary Get all Specialties Simple.
|
|
@@ -18177,6 +18228,7 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
18177
18228
|
* @param {string} [name]
|
|
18178
18229
|
* @param {string} [description]
|
|
18179
18230
|
* @param {string} [specialtyTypeId]
|
|
18231
|
+
* @param {MarketingType} [marketingType]
|
|
18180
18232
|
* @param {string} [hospitalId]
|
|
18181
18233
|
* @param {Date} [created]
|
|
18182
18234
|
* @param {string} [languageCode]
|
|
@@ -18188,7 +18240,7 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
18188
18240
|
* @param {*} [options] Override http request option.
|
|
18189
18241
|
* @throws {RequiredError}
|
|
18190
18242
|
*/
|
|
18191
|
-
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>;
|
|
18192
18244
|
/**
|
|
18193
18245
|
*
|
|
18194
18246
|
* @param {string} slug
|
|
@@ -18242,6 +18294,7 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
18242
18294
|
* @param {string} [name]
|
|
18243
18295
|
* @param {string} [description]
|
|
18244
18296
|
* @param {string} [specialtyTypeId]
|
|
18297
|
+
* @param {MarketingType} [marketingType]
|
|
18245
18298
|
* @param {string} [hospitalId]
|
|
18246
18299
|
* @param {Date} [created]
|
|
18247
18300
|
* @param {string} [languageCode]
|
|
@@ -18253,7 +18306,7 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
18253
18306
|
* @param {*} [options] Override http request option.
|
|
18254
18307
|
* @throws {RequiredError}
|
|
18255
18308
|
*/
|
|
18256
|
-
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>>;
|
|
18257
18310
|
/**
|
|
18258
18311
|
*
|
|
18259
18312
|
* @summary Get all Specialties Simple.
|
|
@@ -18261,6 +18314,7 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
18261
18314
|
* @param {string} [name]
|
|
18262
18315
|
* @param {string} [description]
|
|
18263
18316
|
* @param {string} [specialtyTypeId]
|
|
18317
|
+
* @param {MarketingType} [marketingType]
|
|
18264
18318
|
* @param {string} [hospitalId]
|
|
18265
18319
|
* @param {Date} [created]
|
|
18266
18320
|
* @param {string} [languageCode]
|
|
@@ -18272,7 +18326,7 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
18272
18326
|
* @param {*} [options] Override http request option.
|
|
18273
18327
|
* @throws {RequiredError}
|
|
18274
18328
|
*/
|
|
18275
|
-
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>>;
|
|
18276
18330
|
/**
|
|
18277
18331
|
*
|
|
18278
18332
|
* @param {string} slug
|
|
@@ -18326,6 +18380,7 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
18326
18380
|
* @param {string} [name]
|
|
18327
18381
|
* @param {string} [description]
|
|
18328
18382
|
* @param {string} [specialtyTypeId]
|
|
18383
|
+
* @param {MarketingType} [marketingType]
|
|
18329
18384
|
* @param {string} [hospitalId]
|
|
18330
18385
|
* @param {Date} [created]
|
|
18331
18386
|
* @param {string} [languageCode]
|
|
@@ -18337,7 +18392,7 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
18337
18392
|
* @param {*} [options] Override http request option.
|
|
18338
18393
|
* @throws {RequiredError}
|
|
18339
18394
|
*/
|
|
18340
|
-
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>;
|
|
18341
18396
|
/**
|
|
18342
18397
|
*
|
|
18343
18398
|
* @summary Get all Specialties Simple.
|
|
@@ -18345,6 +18400,7 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
18345
18400
|
* @param {string} [name]
|
|
18346
18401
|
* @param {string} [description]
|
|
18347
18402
|
* @param {string} [specialtyTypeId]
|
|
18403
|
+
* @param {MarketingType} [marketingType]
|
|
18348
18404
|
* @param {string} [hospitalId]
|
|
18349
18405
|
* @param {Date} [created]
|
|
18350
18406
|
* @param {string} [languageCode]
|
|
@@ -18356,7 +18412,7 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
18356
18412
|
* @param {*} [options] Override http request option.
|
|
18357
18413
|
* @throws {RequiredError}
|
|
18358
18414
|
*/
|
|
18359
|
-
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>;
|
|
18360
18416
|
/**
|
|
18361
18417
|
*
|
|
18362
18418
|
* @param {string} slug
|
|
@@ -18412,6 +18468,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
18412
18468
|
* @param {string} [name]
|
|
18413
18469
|
* @param {string} [description]
|
|
18414
18470
|
* @param {string} [specialtyTypeId]
|
|
18471
|
+
* @param {MarketingType} [marketingType]
|
|
18415
18472
|
* @param {string} [hospitalId]
|
|
18416
18473
|
* @param {Date} [created]
|
|
18417
18474
|
* @param {string} [languageCode]
|
|
@@ -18424,7 +18481,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
18424
18481
|
* @throws {RequiredError}
|
|
18425
18482
|
* @memberof SpecialtiesApi
|
|
18426
18483
|
*/
|
|
18427
|
-
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>>;
|
|
18428
18485
|
/**
|
|
18429
18486
|
*
|
|
18430
18487
|
* @summary Get all Specialties Simple.
|
|
@@ -18432,6 +18489,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
18432
18489
|
* @param {string} [name]
|
|
18433
18490
|
* @param {string} [description]
|
|
18434
18491
|
* @param {string} [specialtyTypeId]
|
|
18492
|
+
* @param {MarketingType} [marketingType]
|
|
18435
18493
|
* @param {string} [hospitalId]
|
|
18436
18494
|
* @param {Date} [created]
|
|
18437
18495
|
* @param {string} [languageCode]
|
|
@@ -18444,7 +18502,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
18444
18502
|
* @throws {RequiredError}
|
|
18445
18503
|
* @memberof SpecialtiesApi
|
|
18446
18504
|
*/
|
|
18447
|
-
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>>;
|
|
18448
18506
|
/**
|
|
18449
18507
|
*
|
|
18450
18508
|
* @param {string} slug
|