ch-admin-api-client-typescript 3.4.3 → 3.4.8
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 +65 -262
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +33 -156
- package/package.json +1 -1
- package/src/api.ts +78 -337
package/lib/api.d.ts
CHANGED
|
@@ -3617,6 +3617,12 @@ export interface CreateDoctorAffiliationCommand {
|
|
|
3617
3617
|
* @memberof CreateDoctorAffiliationCommand
|
|
3618
3618
|
*/
|
|
3619
3619
|
'description'?: string | null;
|
|
3620
|
+
/**
|
|
3621
|
+
*
|
|
3622
|
+
* @type {string}
|
|
3623
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3624
|
+
*/
|
|
3625
|
+
'overview'?: string | null;
|
|
3620
3626
|
/**
|
|
3621
3627
|
*
|
|
3622
3628
|
* @type {string}
|
|
@@ -6143,139 +6149,6 @@ export interface DoctorItemModel {
|
|
|
6143
6149
|
* @memberof DoctorItemModel
|
|
6144
6150
|
*/
|
|
6145
6151
|
'auditableEntity'?: AuditableEntity;
|
|
6146
|
-
/**
|
|
6147
|
-
*
|
|
6148
|
-
* @type {string}
|
|
6149
|
-
* @memberof DoctorItemModel
|
|
6150
|
-
*/
|
|
6151
|
-
'userType'?: string | null;
|
|
6152
|
-
/**
|
|
6153
|
-
*
|
|
6154
|
-
* @type {Array<UserLanguageModel>}
|
|
6155
|
-
* @memberof DoctorItemModel
|
|
6156
|
-
*/
|
|
6157
|
-
'languages'?: Array<UserLanguageModel> | null;
|
|
6158
|
-
/**
|
|
6159
|
-
*
|
|
6160
|
-
* @type {Array<UserLocationModel>}
|
|
6161
|
-
* @memberof DoctorItemModel
|
|
6162
|
-
*/
|
|
6163
|
-
'locations'?: Array<UserLocationModel> | null;
|
|
6164
|
-
/**
|
|
6165
|
-
*
|
|
6166
|
-
* @type {string}
|
|
6167
|
-
* @memberof DoctorItemModel
|
|
6168
|
-
*/
|
|
6169
|
-
'slug'?: string | null;
|
|
6170
|
-
/**
|
|
6171
|
-
*
|
|
6172
|
-
* @type {string}
|
|
6173
|
-
* @memberof DoctorItemModel
|
|
6174
|
-
*/
|
|
6175
|
-
'hospitalId'?: string | null;
|
|
6176
|
-
/**
|
|
6177
|
-
*
|
|
6178
|
-
* @type {string}
|
|
6179
|
-
* @memberof DoctorItemModel
|
|
6180
|
-
*/
|
|
6181
|
-
'hospitalName'?: string | null;
|
|
6182
|
-
/**
|
|
6183
|
-
*
|
|
6184
|
-
* @type {Date}
|
|
6185
|
-
* @memberof DoctorItemModel
|
|
6186
|
-
*/
|
|
6187
|
-
'startPracticeDate'?: Date | null;
|
|
6188
|
-
/**
|
|
6189
|
-
*
|
|
6190
|
-
* @type {string}
|
|
6191
|
-
* @memberof DoctorItemModel
|
|
6192
|
-
*/
|
|
6193
|
-
'overview'?: string | null;
|
|
6194
|
-
/**
|
|
6195
|
-
*
|
|
6196
|
-
* @type {boolean}
|
|
6197
|
-
* @memberof DoctorItemModel
|
|
6198
|
-
*/
|
|
6199
|
-
'consultationEnabled'?: boolean | null;
|
|
6200
|
-
/**
|
|
6201
|
-
*
|
|
6202
|
-
* @type {number}
|
|
6203
|
-
* @memberof DoctorItemModel
|
|
6204
|
-
*/
|
|
6205
|
-
'consultationFee'?: number | null;
|
|
6206
|
-
/**
|
|
6207
|
-
*
|
|
6208
|
-
* @type {Array<LocalizedUrlModel>}
|
|
6209
|
-
* @memberof DoctorItemModel
|
|
6210
|
-
*/
|
|
6211
|
-
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
6212
|
-
/**
|
|
6213
|
-
*
|
|
6214
|
-
* @type {boolean}
|
|
6215
|
-
* @memberof DoctorItemModel
|
|
6216
|
-
*/
|
|
6217
|
-
'confirmed'?: boolean;
|
|
6218
|
-
}
|
|
6219
|
-
/**
|
|
6220
|
-
*
|
|
6221
|
-
* @export
|
|
6222
|
-
* @interface DoctorItemSimpleModel
|
|
6223
|
-
*/
|
|
6224
|
-
export interface DoctorItemSimpleModel {
|
|
6225
|
-
/**
|
|
6226
|
-
*
|
|
6227
|
-
* @type {string}
|
|
6228
|
-
* @memberof DoctorItemSimpleModel
|
|
6229
|
-
*/
|
|
6230
|
-
'id'?: string;
|
|
6231
|
-
/**
|
|
6232
|
-
*
|
|
6233
|
-
* @type {string}
|
|
6234
|
-
* @memberof DoctorItemSimpleModel
|
|
6235
|
-
*/
|
|
6236
|
-
'firstName'?: string | null;
|
|
6237
|
-
/**
|
|
6238
|
-
*
|
|
6239
|
-
* @type {string}
|
|
6240
|
-
* @memberof DoctorItemSimpleModel
|
|
6241
|
-
*/
|
|
6242
|
-
'lastName'?: string | null;
|
|
6243
|
-
/**
|
|
6244
|
-
*
|
|
6245
|
-
* @type {string}
|
|
6246
|
-
* @memberof DoctorItemSimpleModel
|
|
6247
|
-
*/
|
|
6248
|
-
'fullname'?: string | null;
|
|
6249
|
-
/**
|
|
6250
|
-
*
|
|
6251
|
-
* @type {string}
|
|
6252
|
-
* @memberof DoctorItemSimpleModel
|
|
6253
|
-
*/
|
|
6254
|
-
'slug'?: string | null;
|
|
6255
|
-
/**
|
|
6256
|
-
*
|
|
6257
|
-
* @type {string}
|
|
6258
|
-
* @memberof DoctorItemSimpleModel
|
|
6259
|
-
*/
|
|
6260
|
-
'hospitalId'?: string | null;
|
|
6261
|
-
/**
|
|
6262
|
-
*
|
|
6263
|
-
* @type {string}
|
|
6264
|
-
* @memberof DoctorItemSimpleModel
|
|
6265
|
-
*/
|
|
6266
|
-
'hospitalName'?: string | null;
|
|
6267
|
-
/**
|
|
6268
|
-
*
|
|
6269
|
-
* @type {string}
|
|
6270
|
-
* @memberof DoctorItemSimpleModel
|
|
6271
|
-
*/
|
|
6272
|
-
'overview'?: string | null;
|
|
6273
|
-
/**
|
|
6274
|
-
*
|
|
6275
|
-
* @type {boolean}
|
|
6276
|
-
* @memberof DoctorItemSimpleModel
|
|
6277
|
-
*/
|
|
6278
|
-
'confirmed'?: boolean;
|
|
6279
6152
|
}
|
|
6280
6153
|
/**
|
|
6281
6154
|
*
|
|
@@ -6454,66 +6327,12 @@ export interface DoctorModel {
|
|
|
6454
6327
|
* @memberof DoctorModel
|
|
6455
6328
|
*/
|
|
6456
6329
|
'locations'?: Array<UserLocationModel> | null;
|
|
6457
|
-
/**
|
|
6458
|
-
*
|
|
6459
|
-
* @type {string}
|
|
6460
|
-
* @memberof DoctorModel
|
|
6461
|
-
*/
|
|
6462
|
-
'slug'?: string | null;
|
|
6463
|
-
/**
|
|
6464
|
-
*
|
|
6465
|
-
* @type {string}
|
|
6466
|
-
* @memberof DoctorModel
|
|
6467
|
-
*/
|
|
6468
|
-
'hospitalId'?: string | null;
|
|
6469
|
-
/**
|
|
6470
|
-
*
|
|
6471
|
-
* @type {string}
|
|
6472
|
-
* @memberof DoctorModel
|
|
6473
|
-
*/
|
|
6474
|
-
'hospitalName'?: string | null;
|
|
6475
6330
|
/**
|
|
6476
6331
|
*
|
|
6477
6332
|
* @type {Date}
|
|
6478
6333
|
* @memberof DoctorModel
|
|
6479
6334
|
*/
|
|
6480
6335
|
'startPracticeDate'?: Date | null;
|
|
6481
|
-
/**
|
|
6482
|
-
*
|
|
6483
|
-
* @type {string}
|
|
6484
|
-
* @memberof DoctorModel
|
|
6485
|
-
*/
|
|
6486
|
-
'overview'?: string | null;
|
|
6487
|
-
/**
|
|
6488
|
-
*
|
|
6489
|
-
* @type {boolean}
|
|
6490
|
-
* @memberof DoctorModel
|
|
6491
|
-
*/
|
|
6492
|
-
'consultationEnabled'?: boolean | null;
|
|
6493
|
-
/**
|
|
6494
|
-
*
|
|
6495
|
-
* @type {number}
|
|
6496
|
-
* @memberof DoctorModel
|
|
6497
|
-
*/
|
|
6498
|
-
'consultationFee'?: number | null;
|
|
6499
|
-
/**
|
|
6500
|
-
*
|
|
6501
|
-
* @type {Array<LocalizedUrlModel>}
|
|
6502
|
-
* @memberof DoctorModel
|
|
6503
|
-
*/
|
|
6504
|
-
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
6505
|
-
/**
|
|
6506
|
-
*
|
|
6507
|
-
* @type {boolean}
|
|
6508
|
-
* @memberof DoctorModel
|
|
6509
|
-
*/
|
|
6510
|
-
'confirmed'?: boolean;
|
|
6511
|
-
/**
|
|
6512
|
-
*
|
|
6513
|
-
* @type {string}
|
|
6514
|
-
* @memberof DoctorModel
|
|
6515
|
-
*/
|
|
6516
|
-
'languageCode'?: string | null;
|
|
6517
6336
|
}
|
|
6518
6337
|
/**
|
|
6519
6338
|
*
|
|
@@ -6632,6 +6451,43 @@ export interface DoctorPortfoliosModel {
|
|
|
6632
6451
|
*/
|
|
6633
6452
|
'metaData'?: PagedListMetaData;
|
|
6634
6453
|
}
|
|
6454
|
+
/**
|
|
6455
|
+
*
|
|
6456
|
+
* @export
|
|
6457
|
+
* @interface DoctorSimpleItemModel
|
|
6458
|
+
*/
|
|
6459
|
+
export interface DoctorSimpleItemModel {
|
|
6460
|
+
/**
|
|
6461
|
+
*
|
|
6462
|
+
* @type {string}
|
|
6463
|
+
* @memberof DoctorSimpleItemModel
|
|
6464
|
+
*/
|
|
6465
|
+
'id'?: string;
|
|
6466
|
+
/**
|
|
6467
|
+
*
|
|
6468
|
+
* @type {string}
|
|
6469
|
+
* @memberof DoctorSimpleItemModel
|
|
6470
|
+
*/
|
|
6471
|
+
'userName'?: string | null;
|
|
6472
|
+
/**
|
|
6473
|
+
*
|
|
6474
|
+
* @type {string}
|
|
6475
|
+
* @memberof DoctorSimpleItemModel
|
|
6476
|
+
*/
|
|
6477
|
+
'firstName'?: string | null;
|
|
6478
|
+
/**
|
|
6479
|
+
*
|
|
6480
|
+
* @type {string}
|
|
6481
|
+
* @memberof DoctorSimpleItemModel
|
|
6482
|
+
*/
|
|
6483
|
+
'lastName'?: string | null;
|
|
6484
|
+
/**
|
|
6485
|
+
*
|
|
6486
|
+
* @type {string}
|
|
6487
|
+
* @memberof DoctorSimpleItemModel
|
|
6488
|
+
*/
|
|
6489
|
+
'fullname'?: string | null;
|
|
6490
|
+
}
|
|
6635
6491
|
/**
|
|
6636
6492
|
*
|
|
6637
6493
|
* @export
|
|
@@ -6727,10 +6583,10 @@ export interface DoctorsModel {
|
|
|
6727
6583
|
export interface DoctorsSimpleModel {
|
|
6728
6584
|
/**
|
|
6729
6585
|
*
|
|
6730
|
-
* @type {Array<
|
|
6586
|
+
* @type {Array<DoctorSimpleItemModel>}
|
|
6731
6587
|
* @memberof DoctorsSimpleModel
|
|
6732
6588
|
*/
|
|
6733
|
-
'items'?: Array<
|
|
6589
|
+
'items'?: Array<DoctorSimpleItemModel> | null;
|
|
6734
6590
|
/**
|
|
6735
6591
|
*
|
|
6736
6592
|
* @type {PagedListMetaData}
|
|
@@ -19103,12 +18959,10 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
19103
18959
|
/**
|
|
19104
18960
|
*
|
|
19105
18961
|
* @param {string} doctorId
|
|
19106
|
-
* @param {string} [languageCode]
|
|
19107
|
-
* @param {boolean} [returnDefaultValue]
|
|
19108
18962
|
* @param {*} [options] Override http request option.
|
|
19109
18963
|
* @throws {RequiredError}
|
|
19110
18964
|
*/
|
|
19111
|
-
apiV1DoctorsDoctorIdGet: (doctorId: string,
|
|
18965
|
+
apiV1DoctorsDoctorIdGet: (doctorId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19112
18966
|
/**
|
|
19113
18967
|
*
|
|
19114
18968
|
* @summary Get all DoctorLanguages.
|
|
@@ -19324,8 +19178,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
19324
19178
|
*
|
|
19325
19179
|
* @summary Get all Doctors.
|
|
19326
19180
|
* @param {string} [hospitalId]
|
|
19327
|
-
* @param {string} [
|
|
19328
|
-
* @param {boolean} [returnDefaultValue]
|
|
19181
|
+
* @param {string} [hospitalName]
|
|
19329
19182
|
* @param {Array<string>} [ids]
|
|
19330
19183
|
* @param {string} [specialtyId]
|
|
19331
19184
|
* @param {boolean} [consultationEnabled]
|
|
@@ -19342,7 +19195,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
19342
19195
|
* @param {*} [options] Override http request option.
|
|
19343
19196
|
* @throws {RequiredError}
|
|
19344
19197
|
*/
|
|
19345
|
-
apiV1DoctorsGet: (hospitalId?: string | undefined,
|
|
19198
|
+
apiV1DoctorsGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19346
19199
|
/**
|
|
19347
19200
|
*
|
|
19348
19201
|
* @summary Create a Doctor.
|
|
@@ -19355,8 +19208,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
19355
19208
|
*
|
|
19356
19209
|
* @summary Get all Doctors.
|
|
19357
19210
|
* @param {string} [hospitalId]
|
|
19358
|
-
* @param {string} [
|
|
19359
|
-
* @param {boolean} [returnDefaultValue]
|
|
19211
|
+
* @param {string} [hospitalName]
|
|
19360
19212
|
* @param {Array<string>} [ids]
|
|
19361
19213
|
* @param {string} [specialtyId]
|
|
19362
19214
|
* @param {boolean} [consultationEnabled]
|
|
@@ -19373,16 +19225,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
19373
19225
|
* @param {*} [options] Override http request option.
|
|
19374
19226
|
* @throws {RequiredError}
|
|
19375
19227
|
*/
|
|
19376
|
-
apiV1DoctorsSimpleGet: (hospitalId?: string | undefined,
|
|
19377
|
-
/**
|
|
19378
|
-
*
|
|
19379
|
-
* @param {string} slug
|
|
19380
|
-
* @param {string} [languageCode]
|
|
19381
|
-
* @param {boolean} [returnDefaultValue]
|
|
19382
|
-
* @param {*} [options] Override http request option.
|
|
19383
|
-
* @throws {RequiredError}
|
|
19384
|
-
*/
|
|
19385
|
-
apiV1DoctorsSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19228
|
+
apiV1DoctorsSimpleGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19386
19229
|
};
|
|
19387
19230
|
/**
|
|
19388
19231
|
* DoctorsApi - functional programming interface
|
|
@@ -19506,12 +19349,10 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
19506
19349
|
/**
|
|
19507
19350
|
*
|
|
19508
19351
|
* @param {string} doctorId
|
|
19509
|
-
* @param {string} [languageCode]
|
|
19510
|
-
* @param {boolean} [returnDefaultValue]
|
|
19511
19352
|
* @param {*} [options] Override http request option.
|
|
19512
19353
|
* @throws {RequiredError}
|
|
19513
19354
|
*/
|
|
19514
|
-
apiV1DoctorsDoctorIdGet(doctorId: string,
|
|
19355
|
+
apiV1DoctorsDoctorIdGet(doctorId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
19515
19356
|
/**
|
|
19516
19357
|
*
|
|
19517
19358
|
* @summary Get all DoctorLanguages.
|
|
@@ -19727,8 +19568,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
19727
19568
|
*
|
|
19728
19569
|
* @summary Get all Doctors.
|
|
19729
19570
|
* @param {string} [hospitalId]
|
|
19730
|
-
* @param {string} [
|
|
19731
|
-
* @param {boolean} [returnDefaultValue]
|
|
19571
|
+
* @param {string} [hospitalName]
|
|
19732
19572
|
* @param {Array<string>} [ids]
|
|
19733
19573
|
* @param {string} [specialtyId]
|
|
19734
19574
|
* @param {boolean} [consultationEnabled]
|
|
@@ -19745,7 +19585,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
19745
19585
|
* @param {*} [options] Override http request option.
|
|
19746
19586
|
* @throws {RequiredError}
|
|
19747
19587
|
*/
|
|
19748
|
-
apiV1DoctorsGet(hospitalId?: string | undefined,
|
|
19588
|
+
apiV1DoctorsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
|
|
19749
19589
|
/**
|
|
19750
19590
|
*
|
|
19751
19591
|
* @summary Create a Doctor.
|
|
@@ -19758,8 +19598,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
19758
19598
|
*
|
|
19759
19599
|
* @summary Get all Doctors.
|
|
19760
19600
|
* @param {string} [hospitalId]
|
|
19761
|
-
* @param {string} [
|
|
19762
|
-
* @param {boolean} [returnDefaultValue]
|
|
19601
|
+
* @param {string} [hospitalName]
|
|
19763
19602
|
* @param {Array<string>} [ids]
|
|
19764
19603
|
* @param {string} [specialtyId]
|
|
19765
19604
|
* @param {boolean} [consultationEnabled]
|
|
@@ -19776,16 +19615,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
19776
19615
|
* @param {*} [options] Override http request option.
|
|
19777
19616
|
* @throws {RequiredError}
|
|
19778
19617
|
*/
|
|
19779
|
-
apiV1DoctorsSimpleGet(hospitalId?: string | undefined,
|
|
19780
|
-
/**
|
|
19781
|
-
*
|
|
19782
|
-
* @param {string} slug
|
|
19783
|
-
* @param {string} [languageCode]
|
|
19784
|
-
* @param {boolean} [returnDefaultValue]
|
|
19785
|
-
* @param {*} [options] Override http request option.
|
|
19786
|
-
* @throws {RequiredError}
|
|
19787
|
-
*/
|
|
19788
|
-
apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
19618
|
+
apiV1DoctorsSimpleGet(hospitalId?: string | undefined, hospitalName?: string | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsSimpleModel>>;
|
|
19789
19619
|
};
|
|
19790
19620
|
/**
|
|
19791
19621
|
* DoctorsApi - factory interface
|
|
@@ -19909,12 +19739,10 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
19909
19739
|
/**
|
|
19910
19740
|
*
|
|
19911
19741
|
* @param {string} doctorId
|
|
19912
|
-
* @param {string} [languageCode]
|
|
19913
|
-
* @param {boolean} [returnDefaultValue]
|
|
19914
19742
|
* @param {*} [options] Override http request option.
|
|
19915
19743
|
* @throws {RequiredError}
|
|
19916
19744
|
*/
|
|
19917
|
-
apiV1DoctorsDoctorIdGet(doctorId: string,
|
|
19745
|
+
apiV1DoctorsDoctorIdGet(doctorId: string, options?: any): AxiosPromise<DoctorModel>;
|
|
19918
19746
|
/**
|
|
19919
19747
|
*
|
|
19920
19748
|
* @summary Get all DoctorLanguages.
|
|
@@ -20130,8 +19958,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
20130
19958
|
*
|
|
20131
19959
|
* @summary Get all Doctors.
|
|
20132
19960
|
* @param {string} [hospitalId]
|
|
20133
|
-
* @param {string} [
|
|
20134
|
-
* @param {boolean} [returnDefaultValue]
|
|
19961
|
+
* @param {string} [hospitalName]
|
|
20135
19962
|
* @param {Array<string>} [ids]
|
|
20136
19963
|
* @param {string} [specialtyId]
|
|
20137
19964
|
* @param {boolean} [consultationEnabled]
|
|
@@ -20148,7 +19975,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
20148
19975
|
* @param {*} [options] Override http request option.
|
|
20149
19976
|
* @throws {RequiredError}
|
|
20150
19977
|
*/
|
|
20151
|
-
apiV1DoctorsGet(hospitalId?: string | undefined,
|
|
19978
|
+
apiV1DoctorsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
|
|
20152
19979
|
/**
|
|
20153
19980
|
*
|
|
20154
19981
|
* @summary Create a Doctor.
|
|
@@ -20161,8 +19988,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
20161
19988
|
*
|
|
20162
19989
|
* @summary Get all Doctors.
|
|
20163
19990
|
* @param {string} [hospitalId]
|
|
20164
|
-
* @param {string} [
|
|
20165
|
-
* @param {boolean} [returnDefaultValue]
|
|
19991
|
+
* @param {string} [hospitalName]
|
|
20166
19992
|
* @param {Array<string>} [ids]
|
|
20167
19993
|
* @param {string} [specialtyId]
|
|
20168
19994
|
* @param {boolean} [consultationEnabled]
|
|
@@ -20179,16 +20005,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
20179
20005
|
* @param {*} [options] Override http request option.
|
|
20180
20006
|
* @throws {RequiredError}
|
|
20181
20007
|
*/
|
|
20182
|
-
apiV1DoctorsSimpleGet(hospitalId?: string | undefined,
|
|
20183
|
-
/**
|
|
20184
|
-
*
|
|
20185
|
-
* @param {string} slug
|
|
20186
|
-
* @param {string} [languageCode]
|
|
20187
|
-
* @param {boolean} [returnDefaultValue]
|
|
20188
|
-
* @param {*} [options] Override http request option.
|
|
20189
|
-
* @throws {RequiredError}
|
|
20190
|
-
*/
|
|
20191
|
-
apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
20008
|
+
apiV1DoctorsSimpleGet(hospitalId?: string | undefined, hospitalName?: string | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsSimpleModel>;
|
|
20192
20009
|
};
|
|
20193
20010
|
/**
|
|
20194
20011
|
* DoctorsApi - object-oriented interface
|
|
@@ -20325,13 +20142,11 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
20325
20142
|
/**
|
|
20326
20143
|
*
|
|
20327
20144
|
* @param {string} doctorId
|
|
20328
|
-
* @param {string} [languageCode]
|
|
20329
|
-
* @param {boolean} [returnDefaultValue]
|
|
20330
20145
|
* @param {*} [options] Override http request option.
|
|
20331
20146
|
* @throws {RequiredError}
|
|
20332
20147
|
* @memberof DoctorsApi
|
|
20333
20148
|
*/
|
|
20334
|
-
apiV1DoctorsDoctorIdGet(doctorId: string,
|
|
20149
|
+
apiV1DoctorsDoctorIdGet(doctorId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
20335
20150
|
/**
|
|
20336
20151
|
*
|
|
20337
20152
|
* @summary Get all DoctorLanguages.
|
|
@@ -20568,8 +20383,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
20568
20383
|
*
|
|
20569
20384
|
* @summary Get all Doctors.
|
|
20570
20385
|
* @param {string} [hospitalId]
|
|
20571
|
-
* @param {string} [
|
|
20572
|
-
* @param {boolean} [returnDefaultValue]
|
|
20386
|
+
* @param {string} [hospitalName]
|
|
20573
20387
|
* @param {Array<string>} [ids]
|
|
20574
20388
|
* @param {string} [specialtyId]
|
|
20575
20389
|
* @param {boolean} [consultationEnabled]
|
|
@@ -20587,7 +20401,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
20587
20401
|
* @throws {RequiredError}
|
|
20588
20402
|
* @memberof DoctorsApi
|
|
20589
20403
|
*/
|
|
20590
|
-
apiV1DoctorsGet(hospitalId?: string,
|
|
20404
|
+
apiV1DoctorsGet(hospitalId?: string, hospitalName?: string, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
|
|
20591
20405
|
/**
|
|
20592
20406
|
*
|
|
20593
20407
|
* @summary Create a Doctor.
|
|
@@ -20601,8 +20415,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
20601
20415
|
*
|
|
20602
20416
|
* @summary Get all Doctors.
|
|
20603
20417
|
* @param {string} [hospitalId]
|
|
20604
|
-
* @param {string} [
|
|
20605
|
-
* @param {boolean} [returnDefaultValue]
|
|
20418
|
+
* @param {string} [hospitalName]
|
|
20606
20419
|
* @param {Array<string>} [ids]
|
|
20607
20420
|
* @param {string} [specialtyId]
|
|
20608
20421
|
* @param {boolean} [consultationEnabled]
|
|
@@ -20620,17 +20433,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
20620
20433
|
* @throws {RequiredError}
|
|
20621
20434
|
* @memberof DoctorsApi
|
|
20622
20435
|
*/
|
|
20623
|
-
apiV1DoctorsSimpleGet(hospitalId?: string,
|
|
20624
|
-
/**
|
|
20625
|
-
*
|
|
20626
|
-
* @param {string} slug
|
|
20627
|
-
* @param {string} [languageCode]
|
|
20628
|
-
* @param {boolean} [returnDefaultValue]
|
|
20629
|
-
* @param {*} [options] Override http request option.
|
|
20630
|
-
* @throws {RequiredError}
|
|
20631
|
-
* @memberof DoctorsApi
|
|
20632
|
-
*/
|
|
20633
|
-
apiV1DoctorsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
20436
|
+
apiV1DoctorsSimpleGet(hospitalId?: string, hospitalName?: string, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsSimpleModel>>;
|
|
20634
20437
|
}
|
|
20635
20438
|
/**
|
|
20636
20439
|
* EmailMarketingsApi - axios parameter creator
|