ch-api-client-typescript2 3.5.6 → 4.0.0
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 +54 -104
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +0 -82
- package/package.json +1 -1
- package/src/api.ts +54 -142
package/lib/api.d.ts
CHANGED
|
@@ -4334,6 +4334,12 @@ export interface DoctorModel {
|
|
|
4334
4334
|
* @memberof DoctorModel
|
|
4335
4335
|
*/
|
|
4336
4336
|
'photoThumbnail'?: string | null;
|
|
4337
|
+
/**
|
|
4338
|
+
*
|
|
4339
|
+
* @type {string}
|
|
4340
|
+
* @memberof DoctorModel
|
|
4341
|
+
*/
|
|
4342
|
+
'timeZone'?: string | null;
|
|
4337
4343
|
/**
|
|
4338
4344
|
*
|
|
4339
4345
|
* @type {AuditableEntity}
|
|
@@ -4364,12 +4370,6 @@ export interface DoctorModel {
|
|
|
4364
4370
|
* @memberof DoctorModel
|
|
4365
4371
|
*/
|
|
4366
4372
|
'dateOfBirth'?: Date | null;
|
|
4367
|
-
/**
|
|
4368
|
-
*
|
|
4369
|
-
* @type {string}
|
|
4370
|
-
* @memberof DoctorModel
|
|
4371
|
-
*/
|
|
4372
|
-
'timeZone'?: string | null;
|
|
4373
4373
|
/**
|
|
4374
4374
|
*
|
|
4375
4375
|
* @type {string}
|
|
@@ -4705,43 +4705,6 @@ export interface FaqCategoriesModel {
|
|
|
4705
4705
|
*/
|
|
4706
4706
|
'metaData'?: PagedListMetaData;
|
|
4707
4707
|
}
|
|
4708
|
-
/**
|
|
4709
|
-
*
|
|
4710
|
-
* @export
|
|
4711
|
-
* @interface FaqCategoryBreadCrumbModel
|
|
4712
|
-
*/
|
|
4713
|
-
export interface FaqCategoryBreadCrumbModel {
|
|
4714
|
-
/**
|
|
4715
|
-
*
|
|
4716
|
-
* @type {string}
|
|
4717
|
-
* @memberof FaqCategoryBreadCrumbModel
|
|
4718
|
-
*/
|
|
4719
|
-
'id'?: string;
|
|
4720
|
-
/**
|
|
4721
|
-
*
|
|
4722
|
-
* @type {string}
|
|
4723
|
-
* @memberof FaqCategoryBreadCrumbModel
|
|
4724
|
-
*/
|
|
4725
|
-
'name'?: string | null;
|
|
4726
|
-
/**
|
|
4727
|
-
*
|
|
4728
|
-
* @type {string}
|
|
4729
|
-
* @memberof FaqCategoryBreadCrumbModel
|
|
4730
|
-
*/
|
|
4731
|
-
'slug'?: string | null;
|
|
4732
|
-
/**
|
|
4733
|
-
*
|
|
4734
|
-
* @type {string}
|
|
4735
|
-
* @memberof FaqCategoryBreadCrumbModel
|
|
4736
|
-
*/
|
|
4737
|
-
'parentId'?: string | null;
|
|
4738
|
-
/**
|
|
4739
|
-
*
|
|
4740
|
-
* @type {boolean}
|
|
4741
|
-
* @memberof FaqCategoryBreadCrumbModel
|
|
4742
|
-
*/
|
|
4743
|
-
'confirmed'?: boolean;
|
|
4744
|
-
}
|
|
4745
4708
|
/**
|
|
4746
4709
|
*
|
|
4747
4710
|
* @export
|
|
@@ -5981,6 +5944,18 @@ export interface HospitalServiceModel {
|
|
|
5981
5944
|
* @memberof HospitalServiceModel
|
|
5982
5945
|
*/
|
|
5983
5946
|
'confirmed'?: boolean;
|
|
5947
|
+
/**
|
|
5948
|
+
*
|
|
5949
|
+
* @type {string}
|
|
5950
|
+
* @memberof HospitalServiceModel
|
|
5951
|
+
*/
|
|
5952
|
+
'hospitalSpecialtyName'?: string | null;
|
|
5953
|
+
/**
|
|
5954
|
+
*
|
|
5955
|
+
* @type {string}
|
|
5956
|
+
* @memberof HospitalServiceModel
|
|
5957
|
+
*/
|
|
5958
|
+
'hospitalSpecialtySlug'?: string | null;
|
|
5984
5959
|
/**
|
|
5985
5960
|
*
|
|
5986
5961
|
* @type {number}
|
|
@@ -6047,18 +6022,6 @@ export interface HospitalServiceModel {
|
|
|
6047
6022
|
* @memberof HospitalServiceModel
|
|
6048
6023
|
*/
|
|
6049
6024
|
'specialtyName'?: string | null;
|
|
6050
|
-
/**
|
|
6051
|
-
*
|
|
6052
|
-
* @type {string}
|
|
6053
|
-
* @memberof HospitalServiceModel
|
|
6054
|
-
*/
|
|
6055
|
-
'hospitalSpecialtyName'?: string | null;
|
|
6056
|
-
/**
|
|
6057
|
-
*
|
|
6058
|
-
* @type {string}
|
|
6059
|
-
* @memberof HospitalServiceModel
|
|
6060
|
-
*/
|
|
6061
|
-
'hospitalSpecialtySlug'?: string | null;
|
|
6062
6025
|
/**
|
|
6063
6026
|
*
|
|
6064
6027
|
* @type {string}
|
|
@@ -7289,6 +7252,12 @@ export interface PatientModel {
|
|
|
7289
7252
|
* @memberof PatientModel
|
|
7290
7253
|
*/
|
|
7291
7254
|
'photoThumbnail'?: string | null;
|
|
7255
|
+
/**
|
|
7256
|
+
*
|
|
7257
|
+
* @type {string}
|
|
7258
|
+
* @memberof PatientModel
|
|
7259
|
+
*/
|
|
7260
|
+
'timeZone'?: string | null;
|
|
7292
7261
|
/**
|
|
7293
7262
|
*
|
|
7294
7263
|
* @type {AuditableEntity}
|
|
@@ -7319,12 +7288,6 @@ export interface PatientModel {
|
|
|
7319
7288
|
* @memberof PatientModel
|
|
7320
7289
|
*/
|
|
7321
7290
|
'dateOfBirth'?: Date | null;
|
|
7322
|
-
/**
|
|
7323
|
-
*
|
|
7324
|
-
* @type {string}
|
|
7325
|
-
* @memberof PatientModel
|
|
7326
|
-
*/
|
|
7327
|
-
'timeZone'?: string | null;
|
|
7328
7291
|
/**
|
|
7329
7292
|
*
|
|
7330
7293
|
* @type {string}
|
|
@@ -8069,6 +8032,18 @@ export interface ServiceReviewItemModel {
|
|
|
8069
8032
|
* @memberof ServiceReviewItemModel
|
|
8070
8033
|
*/
|
|
8071
8034
|
'patientName'?: string | null;
|
|
8035
|
+
/**
|
|
8036
|
+
*
|
|
8037
|
+
* @type {string}
|
|
8038
|
+
* @memberof ServiceReviewItemModel
|
|
8039
|
+
*/
|
|
8040
|
+
'patientPhoto'?: string | null;
|
|
8041
|
+
/**
|
|
8042
|
+
*
|
|
8043
|
+
* @type {Date}
|
|
8044
|
+
* @memberof ServiceReviewItemModel
|
|
8045
|
+
*/
|
|
8046
|
+
'createdDate'?: Date;
|
|
8072
8047
|
/**
|
|
8073
8048
|
*
|
|
8074
8049
|
* @type {boolean}
|
|
@@ -8184,6 +8159,18 @@ export interface ServiceReviewModel {
|
|
|
8184
8159
|
* @memberof ServiceReviewModel
|
|
8185
8160
|
*/
|
|
8186
8161
|
'patientName'?: string | null;
|
|
8162
|
+
/**
|
|
8163
|
+
*
|
|
8164
|
+
* @type {string}
|
|
8165
|
+
* @memberof ServiceReviewModel
|
|
8166
|
+
*/
|
|
8167
|
+
'patientPhoto'?: string | null;
|
|
8168
|
+
/**
|
|
8169
|
+
*
|
|
8170
|
+
* @type {Date}
|
|
8171
|
+
* @memberof ServiceReviewModel
|
|
8172
|
+
*/
|
|
8173
|
+
'createdDate'?: Date;
|
|
8187
8174
|
/**
|
|
8188
8175
|
*
|
|
8189
8176
|
* @type {boolean}
|
|
@@ -9455,6 +9442,12 @@ export interface UserModel {
|
|
|
9455
9442
|
* @memberof UserModel
|
|
9456
9443
|
*/
|
|
9457
9444
|
'photoThumbnail'?: string | null;
|
|
9445
|
+
/**
|
|
9446
|
+
*
|
|
9447
|
+
* @type {string}
|
|
9448
|
+
* @memberof UserModel
|
|
9449
|
+
*/
|
|
9450
|
+
'timeZone'?: string | null;
|
|
9458
9451
|
/**
|
|
9459
9452
|
*
|
|
9460
9453
|
* @type {AuditableEntity}
|
|
@@ -9485,12 +9478,6 @@ export interface UserModel {
|
|
|
9485
9478
|
* @memberof UserModel
|
|
9486
9479
|
*/
|
|
9487
9480
|
'dateOfBirth'?: Date | null;
|
|
9488
|
-
/**
|
|
9489
|
-
*
|
|
9490
|
-
* @type {string}
|
|
9491
|
-
* @memberof UserModel
|
|
9492
|
-
*/
|
|
9493
|
-
'timeZone'?: string | null;
|
|
9494
9481
|
/**
|
|
9495
9482
|
*
|
|
9496
9483
|
* @type {string}
|
|
@@ -13440,15 +13427,6 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
13440
13427
|
* @export
|
|
13441
13428
|
*/
|
|
13442
13429
|
export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
13443
|
-
/**
|
|
13444
|
-
*
|
|
13445
|
-
* @summary Get BreadCrumbs.
|
|
13446
|
-
* @param {string} faqId
|
|
13447
|
-
* @param {string} [languageCode]
|
|
13448
|
-
* @param {*} [options] Override http request option.
|
|
13449
|
-
* @throws {RequiredError}
|
|
13450
|
-
*/
|
|
13451
|
-
apiV2FaqcategoriesBreadcrumbsFaqIdGet: (faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13452
13430
|
/**
|
|
13453
13431
|
*
|
|
13454
13432
|
* @summary Get FaqCategory.
|
|
@@ -13491,15 +13469,6 @@ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configu
|
|
|
13491
13469
|
* @export
|
|
13492
13470
|
*/
|
|
13493
13471
|
export declare const FaqCategoriesApiFp: (configuration?: Configuration | undefined) => {
|
|
13494
|
-
/**
|
|
13495
|
-
*
|
|
13496
|
-
* @summary Get BreadCrumbs.
|
|
13497
|
-
* @param {string} faqId
|
|
13498
|
-
* @param {string} [languageCode]
|
|
13499
|
-
* @param {*} [options] Override http request option.
|
|
13500
|
-
* @throws {RequiredError}
|
|
13501
|
-
*/
|
|
13502
|
-
apiV2FaqcategoriesBreadcrumbsFaqIdGet(faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<FaqCategoryBreadCrumbModel>>>;
|
|
13503
13472
|
/**
|
|
13504
13473
|
*
|
|
13505
13474
|
* @summary Get FaqCategory.
|
|
@@ -13542,15 +13511,6 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration | undefi
|
|
|
13542
13511
|
* @export
|
|
13543
13512
|
*/
|
|
13544
13513
|
export declare const FaqCategoriesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
13545
|
-
/**
|
|
13546
|
-
*
|
|
13547
|
-
* @summary Get BreadCrumbs.
|
|
13548
|
-
* @param {string} faqId
|
|
13549
|
-
* @param {string} [languageCode]
|
|
13550
|
-
* @param {*} [options] Override http request option.
|
|
13551
|
-
* @throws {RequiredError}
|
|
13552
|
-
*/
|
|
13553
|
-
apiV2FaqcategoriesBreadcrumbsFaqIdGet(faqId: string, languageCode?: string | undefined, options?: any): AxiosPromise<Array<FaqCategoryBreadCrumbModel>>;
|
|
13554
13514
|
/**
|
|
13555
13515
|
*
|
|
13556
13516
|
* @summary Get FaqCategory.
|
|
@@ -13595,16 +13555,6 @@ export declare const FaqCategoriesApiFactory: (configuration?: Configuration | u
|
|
|
13595
13555
|
* @extends {BaseAPI}
|
|
13596
13556
|
*/
|
|
13597
13557
|
export declare class FaqCategoriesApi extends BaseAPI {
|
|
13598
|
-
/**
|
|
13599
|
-
*
|
|
13600
|
-
* @summary Get BreadCrumbs.
|
|
13601
|
-
* @param {string} faqId
|
|
13602
|
-
* @param {string} [languageCode]
|
|
13603
|
-
* @param {*} [options] Override http request option.
|
|
13604
|
-
* @throws {RequiredError}
|
|
13605
|
-
* @memberof FaqCategoriesApi
|
|
13606
|
-
*/
|
|
13607
|
-
apiV2FaqcategoriesBreadcrumbsFaqIdGet(faqId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryBreadCrumbModel[], any>>;
|
|
13608
13558
|
/**
|
|
13609
13559
|
*
|
|
13610
13560
|
* @summary Get FaqCategory.
|