ch-api-client-typescript2 2.8.12 → 2.8.17

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 CHANGED
@@ -5480,6 +5480,18 @@ export interface HospitalItemModel {
5480
5480
  * @memberof HospitalItemModel
5481
5481
  */
5482
5482
  'overview'?: string | null;
5483
+ /**
5484
+ *
5485
+ * @type {string}
5486
+ * @memberof HospitalItemModel
5487
+ */
5488
+ 'content'?: string | null;
5489
+ /**
5490
+ *
5491
+ * @type {string}
5492
+ * @memberof HospitalItemModel
5493
+ */
5494
+ 'customStyle'?: string | null;
5483
5495
  /**
5484
5496
  *
5485
5497
  * @type {number}
@@ -5703,6 +5715,18 @@ export interface HospitalModel {
5703
5715
  * @memberof HospitalModel
5704
5716
  */
5705
5717
  'overview'?: string | null;
5718
+ /**
5719
+ *
5720
+ * @type {string}
5721
+ * @memberof HospitalModel
5722
+ */
5723
+ 'content'?: string | null;
5724
+ /**
5725
+ *
5726
+ * @type {string}
5727
+ * @memberof HospitalModel
5728
+ */
5729
+ 'customStyle'?: string | null;
5706
5730
  /**
5707
5731
  *
5708
5732
  * @type {number}
@@ -5926,6 +5950,12 @@ export interface HospitalServiceItemModel {
5926
5950
  * @memberof HospitalServiceItemModel
5927
5951
  */
5928
5952
  'content'?: string | null;
5953
+ /**
5954
+ *
5955
+ * @type {string}
5956
+ * @memberof HospitalServiceItemModel
5957
+ */
5958
+ 'customStyle'?: string | null;
5929
5959
  /**
5930
5960
  *
5931
5961
  * @type {string}
@@ -6089,6 +6119,12 @@ export interface HospitalServiceModel {
6089
6119
  * @memberof HospitalServiceModel
6090
6120
  */
6091
6121
  'content'?: string | null;
6122
+ /**
6123
+ *
6124
+ * @type {string}
6125
+ * @memberof HospitalServiceModel
6126
+ */
6127
+ 'customStyle'?: string | null;
6092
6128
  /**
6093
6129
  *
6094
6130
  * @type {string}
@@ -6388,6 +6424,12 @@ export interface HospitalSpecialtyItemModel {
6388
6424
  * @memberof HospitalSpecialtyItemModel
6389
6425
  */
6390
6426
  'content'?: string | null;
6427
+ /**
6428
+ *
6429
+ * @type {string}
6430
+ * @memberof HospitalSpecialtyItemModel
6431
+ */
6432
+ 'customStyle'?: string | null;
6391
6433
  /**
6392
6434
  *
6393
6435
  * @type {number}
@@ -6533,6 +6575,12 @@ export interface HospitalSpecialtyModel {
6533
6575
  * @memberof HospitalSpecialtyModel
6534
6576
  */
6535
6577
  'content'?: string | null;
6578
+ /**
6579
+ *
6580
+ * @type {string}
6581
+ * @memberof HospitalSpecialtyModel
6582
+ */
6583
+ 'customStyle'?: string | null;
6536
6584
  /**
6537
6585
  *
6538
6586
  * @type {number}
@@ -11101,10 +11149,11 @@ export declare const ContributorsApiAxiosParamCreator: (configuration?: Configur
11101
11149
  * @summary Get Contributor.
11102
11150
  * @param {string} contributorId
11103
11151
  * @param {string} [languageCode]
11152
+ * @param {boolean} [returnDefaultValue]
11104
11153
  * @param {*} [options] Override http request option.
11105
11154
  * @throws {RequiredError}
11106
11155
  */
11107
- apiV2ContributorsContributorIdGet: (contributorId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11156
+ apiV2ContributorsContributorIdGet: (contributorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11108
11157
  /**
11109
11158
  *
11110
11159
  * @summary Get all ContributorHandles.
@@ -11139,24 +11188,26 @@ export declare const ContributorsApiAxiosParamCreator: (configuration?: Configur
11139
11188
  * @param {string} [website]
11140
11189
  * @param {string} [hospitalId]
11141
11190
  * @param {boolean} [interviewerOnly]
11142
- * @param {string} [languageCode]
11143
11191
  * @param {boolean} [showHidden]
11192
+ * @param {string} [languageCode]
11193
+ * @param {boolean} [returnDefaultValue]
11144
11194
  * @param {number} [page]
11145
11195
  * @param {number} [limit]
11146
11196
  * @param {Date} [lastRetrieved]
11147
11197
  * @param {*} [options] Override http request option.
11148
11198
  * @throws {RequiredError}
11149
11199
  */
11150
- apiV2ContributorsGet: (id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11200
+ apiV2ContributorsGet: (id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11151
11201
  /**
11152
11202
  *
11153
11203
  * @summary Get Contributor by slug.
11154
11204
  * @param {string} slug
11155
11205
  * @param {string} [languageCode]
11206
+ * @param {boolean} [returnDefaultValue]
11156
11207
  * @param {*} [options] Override http request option.
11157
11208
  * @throws {RequiredError}
11158
11209
  */
11159
- apiV2ContributorsSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11210
+ apiV2ContributorsSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11160
11211
  };
11161
11212
  /**
11162
11213
  * ContributorsApi - functional programming interface
@@ -11168,10 +11219,11 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
11168
11219
  * @summary Get Contributor.
11169
11220
  * @param {string} contributorId
11170
11221
  * @param {string} [languageCode]
11222
+ * @param {boolean} [returnDefaultValue]
11171
11223
  * @param {*} [options] Override http request option.
11172
11224
  * @throws {RequiredError}
11173
11225
  */
11174
- apiV2ContributorsContributorIdGet(contributorId: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ContributorModel>>;
11226
+ apiV2ContributorsContributorIdGet(contributorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ContributorModel>>;
11175
11227
  /**
11176
11228
  *
11177
11229
  * @summary Get all ContributorHandles.
@@ -11206,24 +11258,26 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
11206
11258
  * @param {string} [website]
11207
11259
  * @param {string} [hospitalId]
11208
11260
  * @param {boolean} [interviewerOnly]
11209
- * @param {string} [languageCode]
11210
11261
  * @param {boolean} [showHidden]
11262
+ * @param {string} [languageCode]
11263
+ * @param {boolean} [returnDefaultValue]
11211
11264
  * @param {number} [page]
11212
11265
  * @param {number} [limit]
11213
11266
  * @param {Date} [lastRetrieved]
11214
11267
  * @param {*} [options] Override http request option.
11215
11268
  * @throws {RequiredError}
11216
11269
  */
11217
- apiV2ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ContributorsModel>>;
11270
+ apiV2ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, showHidden?: boolean | undefined, languageCode?: 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<ContributorsModel>>;
11218
11271
  /**
11219
11272
  *
11220
11273
  * @summary Get Contributor by slug.
11221
11274
  * @param {string} slug
11222
11275
  * @param {string} [languageCode]
11276
+ * @param {boolean} [returnDefaultValue]
11223
11277
  * @param {*} [options] Override http request option.
11224
11278
  * @throws {RequiredError}
11225
11279
  */
11226
- apiV2ContributorsSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ContributorModel>>;
11280
+ apiV2ContributorsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ContributorModel>>;
11227
11281
  };
11228
11282
  /**
11229
11283
  * ContributorsApi - factory interface
@@ -11235,10 +11289,11 @@ export declare const ContributorsApiFactory: (configuration?: Configuration | un
11235
11289
  * @summary Get Contributor.
11236
11290
  * @param {string} contributorId
11237
11291
  * @param {string} [languageCode]
11292
+ * @param {boolean} [returnDefaultValue]
11238
11293
  * @param {*} [options] Override http request option.
11239
11294
  * @throws {RequiredError}
11240
11295
  */
11241
- apiV2ContributorsContributorIdGet(contributorId: string, languageCode?: string | undefined, options?: any): AxiosPromise<ContributorModel>;
11296
+ apiV2ContributorsContributorIdGet(contributorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<ContributorModel>;
11242
11297
  /**
11243
11298
  *
11244
11299
  * @summary Get all ContributorHandles.
@@ -11273,24 +11328,26 @@ export declare const ContributorsApiFactory: (configuration?: Configuration | un
11273
11328
  * @param {string} [website]
11274
11329
  * @param {string} [hospitalId]
11275
11330
  * @param {boolean} [interviewerOnly]
11276
- * @param {string} [languageCode]
11277
11331
  * @param {boolean} [showHidden]
11332
+ * @param {string} [languageCode]
11333
+ * @param {boolean} [returnDefaultValue]
11278
11334
  * @param {number} [page]
11279
11335
  * @param {number} [limit]
11280
11336
  * @param {Date} [lastRetrieved]
11281
11337
  * @param {*} [options] Override http request option.
11282
11338
  * @throws {RequiredError}
11283
11339
  */
11284
- apiV2ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ContributorsModel>;
11340
+ apiV2ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ContributorsModel>;
11285
11341
  /**
11286
11342
  *
11287
11343
  * @summary Get Contributor by slug.
11288
11344
  * @param {string} slug
11289
11345
  * @param {string} [languageCode]
11346
+ * @param {boolean} [returnDefaultValue]
11290
11347
  * @param {*} [options] Override http request option.
11291
11348
  * @throws {RequiredError}
11292
11349
  */
11293
- apiV2ContributorsSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<ContributorModel>;
11350
+ apiV2ContributorsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<ContributorModel>;
11294
11351
  };
11295
11352
  /**
11296
11353
  * ContributorsApi - object-oriented interface
@@ -11304,11 +11361,12 @@ export declare class ContributorsApi extends BaseAPI {
11304
11361
  * @summary Get Contributor.
11305
11362
  * @param {string} contributorId
11306
11363
  * @param {string} [languageCode]
11364
+ * @param {boolean} [returnDefaultValue]
11307
11365
  * @param {*} [options] Override http request option.
11308
11366
  * @throws {RequiredError}
11309
11367
  * @memberof ContributorsApi
11310
11368
  */
11311
- apiV2ContributorsContributorIdGet(contributorId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorModel, any>>;
11369
+ apiV2ContributorsContributorIdGet(contributorId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorModel, any>>;
11312
11370
  /**
11313
11371
  *
11314
11372
  * @summary Get all ContributorHandles.
@@ -11345,8 +11403,9 @@ export declare class ContributorsApi extends BaseAPI {
11345
11403
  * @param {string} [website]
11346
11404
  * @param {string} [hospitalId]
11347
11405
  * @param {boolean} [interviewerOnly]
11348
- * @param {string} [languageCode]
11349
11406
  * @param {boolean} [showHidden]
11407
+ * @param {string} [languageCode]
11408
+ * @param {boolean} [returnDefaultValue]
11350
11409
  * @param {number} [page]
11351
11410
  * @param {number} [limit]
11352
11411
  * @param {Date} [lastRetrieved]
@@ -11354,17 +11413,18 @@ export declare class ContributorsApi extends BaseAPI {
11354
11413
  * @throws {RequiredError}
11355
11414
  * @memberof ContributorsApi
11356
11415
  */
11357
- apiV2ContributorsGet(id?: string, name?: string, email?: string, description?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorsModel, any>>;
11416
+ apiV2ContributorsGet(id?: string, name?: string, email?: string, description?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, showHidden?: boolean, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorsModel, any>>;
11358
11417
  /**
11359
11418
  *
11360
11419
  * @summary Get Contributor by slug.
11361
11420
  * @param {string} slug
11362
11421
  * @param {string} [languageCode]
11422
+ * @param {boolean} [returnDefaultValue]
11363
11423
  * @param {*} [options] Override http request option.
11364
11424
  * @throws {RequiredError}
11365
11425
  * @memberof ContributorsApi
11366
11426
  */
11367
- apiV2ContributorsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorModel, any>>;
11427
+ apiV2ContributorsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorModel, any>>;
11368
11428
  }
11369
11429
  /**
11370
11430
  * CountriesApi - axios parameter creator