ch-api-client-typescript2 4.5.6 → 4.5.9

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
@@ -2330,6 +2330,12 @@ export interface ConsultationTimetableModel {
2330
2330
  * @memberof ConsultationTimetableModel
2331
2331
  */
2332
2332
  'hospitalTimeZone'?: string | null;
2333
+ /**
2334
+ *
2335
+ * @type {string}
2336
+ * @memberof ConsultationTimetableModel
2337
+ */
2338
+ 'timeZone'?: string | null;
2333
2339
  /**
2334
2340
  *
2335
2341
  * @type {Date}
@@ -2376,6 +2382,18 @@ export interface ConsultationTimetableTimeSlotModel {
2376
2382
  * @memberof ConsultationTimetableTimeSlotModel
2377
2383
  */
2378
2384
  'status'?: ConsultationTimetableStatus;
2385
+ /**
2386
+ *
2387
+ * @type {boolean}
2388
+ * @memberof ConsultationTimetableTimeSlotModel
2389
+ */
2390
+ 'isOverrided'?: boolean;
2391
+ /**
2392
+ *
2393
+ * @type {boolean}
2394
+ * @memberof ConsultationTimetableTimeSlotModel
2395
+ */
2396
+ 'isBooked'?: boolean;
2379
2397
  /**
2380
2398
  *
2381
2399
  * @type {boolean}
@@ -6188,6 +6206,43 @@ export interface HospitalLanguageItemModel {
6188
6206
  * @memberof HospitalLanguageItemModel
6189
6207
  */
6190
6208
  'name'?: string | null;
6209
+ /**
6210
+ *
6211
+ * @type {string}
6212
+ * @memberof HospitalLanguageItemModel
6213
+ */
6214
+ 'localizedName'?: string | null;
6215
+ /**
6216
+ *
6217
+ * @type {boolean}
6218
+ * @memberof HospitalLanguageItemModel
6219
+ */
6220
+ 'published'?: boolean;
6221
+ /**
6222
+ *
6223
+ * @type {number}
6224
+ * @memberof HospitalLanguageItemModel
6225
+ */
6226
+ 'order'?: number;
6227
+ }
6228
+ /**
6229
+ *
6230
+ * @export
6231
+ * @interface HospitalLanguagesModel
6232
+ */
6233
+ export interface HospitalLanguagesModel {
6234
+ /**
6235
+ *
6236
+ * @type {Array<HospitalLanguageItemModel>}
6237
+ * @memberof HospitalLanguagesModel
6238
+ */
6239
+ 'items'?: Array<HospitalLanguageItemModel> | null;
6240
+ /**
6241
+ *
6242
+ * @type {PagedListMetaData}
6243
+ * @memberof HospitalLanguagesModel
6244
+ */
6245
+ 'metaData'?: PagedListMetaData;
6191
6246
  }
6192
6247
  /**
6193
6248
  *
@@ -7369,19 +7424,19 @@ export interface LanguageItemModel {
7369
7424
  * @type {string}
7370
7425
  * @memberof LanguageItemModel
7371
7426
  */
7372
- 'id'?: string;
7427
+ 'code'?: string | null;
7373
7428
  /**
7374
7429
  *
7375
7430
  * @type {string}
7376
7431
  * @memberof LanguageItemModel
7377
7432
  */
7378
- 'code'?: string | null;
7433
+ 'name'?: string | null;
7379
7434
  /**
7380
7435
  *
7381
7436
  * @type {string}
7382
7437
  * @memberof LanguageItemModel
7383
7438
  */
7384
- 'name'?: string | null;
7439
+ 'localizedName'?: string | null;
7385
7440
  /**
7386
7441
  *
7387
7442
  * @type {string}
@@ -7412,19 +7467,19 @@ export interface LanguageModel {
7412
7467
  * @type {string}
7413
7468
  * @memberof LanguageModel
7414
7469
  */
7415
- 'id'?: string;
7470
+ 'code'?: string | null;
7416
7471
  /**
7417
7472
  *
7418
7473
  * @type {string}
7419
7474
  * @memberof LanguageModel
7420
7475
  */
7421
- 'code'?: string | null;
7476
+ 'name'?: string | null;
7422
7477
  /**
7423
7478
  *
7424
7479
  * @type {string}
7425
7480
  * @memberof LanguageModel
7426
7481
  */
7427
- 'name'?: string | null;
7482
+ 'localizedName'?: string | null;
7428
7483
  /**
7429
7484
  *
7430
7485
  * @type {string}
@@ -15644,6 +15699,77 @@ export declare class HeaderNavigationsApi extends BaseAPI {
15644
15699
  */
15645
15700
  apiV2HeadernavigationsLanguageCodeGet(languageCode: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HeaderNavigationItemModel[], any>>;
15646
15701
  }
15702
+ /**
15703
+ * HospitalLanguagesApi - axios parameter creator
15704
+ * @export
15705
+ */
15706
+ export declare const HospitalLanguagesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
15707
+ /**
15708
+ *
15709
+ * @summary Get hospitalLanguages
15710
+ * @param {string} hospitalId
15711
+ * @param {number} [page]
15712
+ * @param {number} [limit]
15713
+ * @param {Date} [lastRetrieved]
15714
+ * @param {*} [options] Override http request option.
15715
+ * @throws {RequiredError}
15716
+ */
15717
+ apiV2HospitalsHospitalIdLanguagesGet: (hospitalId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15718
+ };
15719
+ /**
15720
+ * HospitalLanguagesApi - functional programming interface
15721
+ * @export
15722
+ */
15723
+ export declare const HospitalLanguagesApiFp: (configuration?: Configuration | undefined) => {
15724
+ /**
15725
+ *
15726
+ * @summary Get hospitalLanguages
15727
+ * @param {string} hospitalId
15728
+ * @param {number} [page]
15729
+ * @param {number} [limit]
15730
+ * @param {Date} [lastRetrieved]
15731
+ * @param {*} [options] Override http request option.
15732
+ * @throws {RequiredError}
15733
+ */
15734
+ apiV2HospitalsHospitalIdLanguagesGet(hospitalId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalLanguagesModel>>;
15735
+ };
15736
+ /**
15737
+ * HospitalLanguagesApi - factory interface
15738
+ * @export
15739
+ */
15740
+ export declare const HospitalLanguagesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
15741
+ /**
15742
+ *
15743
+ * @summary Get hospitalLanguages
15744
+ * @param {string} hospitalId
15745
+ * @param {number} [page]
15746
+ * @param {number} [limit]
15747
+ * @param {Date} [lastRetrieved]
15748
+ * @param {*} [options] Override http request option.
15749
+ * @throws {RequiredError}
15750
+ */
15751
+ apiV2HospitalsHospitalIdLanguagesGet(hospitalId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalLanguagesModel>;
15752
+ };
15753
+ /**
15754
+ * HospitalLanguagesApi - object-oriented interface
15755
+ * @export
15756
+ * @class HospitalLanguagesApi
15757
+ * @extends {BaseAPI}
15758
+ */
15759
+ export declare class HospitalLanguagesApi extends BaseAPI {
15760
+ /**
15761
+ *
15762
+ * @summary Get hospitalLanguages
15763
+ * @param {string} hospitalId
15764
+ * @param {number} [page]
15765
+ * @param {number} [limit]
15766
+ * @param {Date} [lastRetrieved]
15767
+ * @param {*} [options] Override http request option.
15768
+ * @throws {RequiredError}
15769
+ * @memberof HospitalLanguagesApi
15770
+ */
15771
+ apiV2HospitalsHospitalIdLanguagesGet(hospitalId: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalLanguagesModel, any>>;
15772
+ }
15647
15773
  /**
15648
15774
  * HospitalsApi - axios parameter creator
15649
15775
  * @export
@@ -17340,10 +17466,11 @@ export declare const HospitalsConsultationTimetablesApiAxiosParamCreator: (confi
17340
17466
  * @param {string} hospitalId
17341
17467
  * @param {number} [year]
17342
17468
  * @param {number} [month]
17469
+ * @param {string} [timeZone]
17343
17470
  * @param {*} [options] Override http request option.
17344
17471
  * @throws {RequiredError}
17345
17472
  */
17346
- apiV2HospitalsHospitalIdConsultationtimetablesGet: (hospitalId: string, year?: number | undefined, month?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17473
+ apiV2HospitalsHospitalIdConsultationtimetablesGet: (hospitalId: string, year?: number | undefined, month?: number | undefined, timeZone?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17347
17474
  };
17348
17475
  /**
17349
17476
  * HospitalsConsultationTimetablesApi - functional programming interface
@@ -17356,10 +17483,11 @@ export declare const HospitalsConsultationTimetablesApiFp: (configuration?: Conf
17356
17483
  * @param {string} hospitalId
17357
17484
  * @param {number} [year]
17358
17485
  * @param {number} [month]
17486
+ * @param {string} [timeZone]
17359
17487
  * @param {*} [options] Override http request option.
17360
17488
  * @throws {RequiredError}
17361
17489
  */
17362
- apiV2HospitalsHospitalIdConsultationtimetablesGet(hospitalId: string, year?: number | undefined, month?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationTimetableModel>>;
17490
+ apiV2HospitalsHospitalIdConsultationtimetablesGet(hospitalId: string, year?: number | undefined, month?: number | undefined, timeZone?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationTimetableModel>>;
17363
17491
  };
17364
17492
  /**
17365
17493
  * HospitalsConsultationTimetablesApi - factory interface
@@ -17372,10 +17500,11 @@ export declare const HospitalsConsultationTimetablesApiFactory: (configuration?:
17372
17500
  * @param {string} hospitalId
17373
17501
  * @param {number} [year]
17374
17502
  * @param {number} [month]
17503
+ * @param {string} [timeZone]
17375
17504
  * @param {*} [options] Override http request option.
17376
17505
  * @throws {RequiredError}
17377
17506
  */
17378
- apiV2HospitalsHospitalIdConsultationtimetablesGet(hospitalId: string, year?: number | undefined, month?: number | undefined, options?: any): AxiosPromise<ConsultationTimetableModel>;
17507
+ apiV2HospitalsHospitalIdConsultationtimetablesGet(hospitalId: string, year?: number | undefined, month?: number | undefined, timeZone?: string | undefined, options?: any): AxiosPromise<ConsultationTimetableModel>;
17379
17508
  };
17380
17509
  /**
17381
17510
  * HospitalsConsultationTimetablesApi - object-oriented interface
@@ -17390,11 +17519,12 @@ export declare class HospitalsConsultationTimetablesApi extends BaseAPI {
17390
17519
  * @param {string} hospitalId
17391
17520
  * @param {number} [year]
17392
17521
  * @param {number} [month]
17522
+ * @param {string} [timeZone]
17393
17523
  * @param {*} [options] Override http request option.
17394
17524
  * @throws {RequiredError}
17395
17525
  * @memberof HospitalsConsultationTimetablesApi
17396
17526
  */
17397
- apiV2HospitalsHospitalIdConsultationtimetablesGet(hospitalId: string, year?: number, month?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationTimetableModel, any>>;
17527
+ apiV2HospitalsHospitalIdConsultationtimetablesGet(hospitalId: string, year?: number, month?: number, timeZone?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationTimetableModel, any>>;
17398
17528
  }
17399
17529
  /**
17400
17530
  * ImagesApi - axios parameter creator