ch-api-client-typescript2 3.3.4 → 3.3.5

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
@@ -4119,7 +4119,37 @@ export interface DoctorItemModel {
4119
4119
  * @type {string}
4120
4120
  * @memberof DoctorItemModel
4121
4121
  */
4122
- 'name'?: string | null;
4122
+ 'languageCode'?: string | null;
4123
+ /**
4124
+ *
4125
+ * @type {string}
4126
+ * @memberof DoctorItemModel
4127
+ */
4128
+ 'userName'?: string | null;
4129
+ /**
4130
+ *
4131
+ * @type {string}
4132
+ * @memberof DoctorItemModel
4133
+ */
4134
+ 'firstName'?: string | null;
4135
+ /**
4136
+ *
4137
+ * @type {string}
4138
+ * @memberof DoctorItemModel
4139
+ */
4140
+ 'middleName'?: string | null;
4141
+ /**
4142
+ *
4143
+ * @type {string}
4144
+ * @memberof DoctorItemModel
4145
+ */
4146
+ 'lastName'?: string | null;
4147
+ /**
4148
+ *
4149
+ * @type {string}
4150
+ * @memberof DoctorItemModel
4151
+ */
4152
+ 'fullName'?: string | null;
4123
4153
  /**
4124
4154
  *
4125
4155
  * @type {string}
@@ -4131,19 +4161,43 @@ export interface DoctorItemModel {
4131
4161
  * @type {boolean}
4132
4162
  * @memberof DoctorItemModel
4133
4163
  */
4134
- 'consultationEnabled'?: boolean | null;
4164
+ 'confirmed'?: boolean;
4135
4165
  /**
4136
4166
  *
4137
- * @type {number}
4167
+ * @type {string}
4138
4168
  * @memberof DoctorItemModel
4139
4169
  */
4140
- 'consultationFee'?: number | null;
4170
+ 'userType'?: string | null;
4171
+ /**
4172
+ *
4173
+ * @type {string}
4174
+ * @memberof DoctorItemModel
4175
+ */
4176
+ 'photo'?: string | null;
4177
+ /**
4178
+ *
4179
+ * @type {string}
4180
+ * @memberof DoctorItemModel
4181
+ */
4182
+ 'photoThumbnail'?: string | null;
4183
+ /**
4184
+ *
4185
+ * @type {AuditableEntity}
4186
+ * @memberof DoctorItemModel
4187
+ */
4188
+ 'auditableEntity'?: AuditableEntity;
4141
4189
  /**
4142
4190
  *
4143
4191
  * @type {boolean}
4144
4192
  * @memberof DoctorItemModel
4145
4193
  */
4146
- 'confirmed'?: boolean;
4194
+ 'consultationEnabled'?: boolean | null;
4195
+ /**
4196
+ *
4197
+ * @type {number}
4198
+ * @memberof DoctorItemModel
4199
+ */
4200
+ 'consultationFee'?: number | null;
4147
4201
  /**
4148
4202
  *
4149
4203
  * @type {Array<DoctorSpecialtyItemModel>}
@@ -4238,6 +4292,12 @@ export interface DoctorModel {
4238
4292
  * @memberof DoctorModel
4239
4293
  */
4240
4294
  'id'?: string;
4295
+ /**
4296
+ *
4297
+ * @type {string}
4298
+ * @memberof DoctorModel
4299
+ */
4300
+ 'languageCode'?: string | null;
4241
4301
  /**
4242
4302
  *
4243
4303
  * @type {string}
@@ -4276,16 +4336,16 @@ export interface DoctorModel {
4276
4336
  'slug'?: string | null;
4277
4337
  /**
4278
4338
  *
4279
- * @type {string}
4339
+ * @type {boolean}
4280
4340
  * @memberof DoctorModel
4281
4341
  */
4282
- 'phone'?: string | null;
4342
+ 'confirmed'?: boolean;
4283
4343
  /**
4284
4344
  *
4285
4345
  * @type {string}
4286
4346
  * @memberof DoctorModel
4287
4347
  */
4288
- 'email'?: string | null;
4348
+ 'userType'?: string | null;
4289
4349
  /**
4290
4350
  *
4291
4351
  * @type {string}
@@ -4300,64 +4360,58 @@ export interface DoctorModel {
4300
4360
  'photoThumbnail'?: string | null;
4301
4361
  /**
4302
4362
  *
4303
- * @type {Gender}
4304
- * @memberof DoctorModel
4305
- */
4306
- 'gender'?: Gender;
4307
- /**
4308
- *
4309
- * @type {Date}
4363
+ * @type {AuditableEntity}
4310
4364
  * @memberof DoctorModel
4311
4365
  */
4312
- 'dateOfBirth'?: Date | null;
4366
+ 'auditableEntity'?: AuditableEntity;
4313
4367
  /**
4314
4368
  *
4315
4369
  * @type {string}
4316
4370
  * @memberof DoctorModel
4317
4371
  */
4318
- 'timeZone'?: string | null;
4372
+ 'phone'?: string | null;
4319
4373
  /**
4320
4374
  *
4321
4375
  * @type {string}
4322
4376
  * @memberof DoctorModel
4323
4377
  */
4324
- 'communicationUserId'?: string | null;
4378
+ 'email'?: string | null;
4325
4379
  /**
4326
4380
  *
4327
- * @type {AuditableEntity}
4381
+ * @type {Gender}
4328
4382
  * @memberof DoctorModel
4329
4383
  */
4330
- 'auditableEntity'?: AuditableEntity;
4384
+ 'gender'?: Gender;
4331
4385
  /**
4332
4386
  *
4333
- * @type {string}
4387
+ * @type {Date}
4334
4388
  * @memberof DoctorModel
4335
4389
  */
4336
- 'userType'?: string | null;
4390
+ 'dateOfBirth'?: Date | null;
4337
4391
  /**
4338
4392
  *
4339
- * @type {Array<UserLanguageModel>}
4393
+ * @type {string}
4340
4394
  * @memberof DoctorModel
4341
4395
  */
4342
- 'languages'?: Array<UserLanguageModel> | null;
4396
+ 'timeZone'?: string | null;
4343
4397
  /**
4344
4398
  *
4345
- * @type {Array<UserLocationModel>}
4399
+ * @type {string}
4346
4400
  * @memberof DoctorModel
4347
4401
  */
4348
- 'locations'?: Array<UserLocationModel> | null;
4402
+ 'communicationUserId'?: string | null;
4349
4403
  /**
4350
4404
  *
4351
- * @type {string}
4405
+ * @type {Array<UserLanguageModel>}
4352
4406
  * @memberof DoctorModel
4353
4407
  */
4354
- 'languageCode'?: string | null;
4408
+ 'languages'?: Array<UserLanguageModel> | null;
4355
4409
  /**
4356
4410
  *
4357
- * @type {Date}
4411
+ * @type {Array<UserLocationModel>}
4358
4412
  * @memberof DoctorModel
4359
4413
  */
4360
- 'startPracticeDate'?: Date | null;
4414
+ 'locations'?: Array<UserLocationModel> | null;
4361
4415
  /**
4362
4416
  *
4363
4417
  * @type {string}
@@ -4378,40 +4432,10 @@ export interface DoctorModel {
4378
4432
  'content'?: string | null;
4379
4433
  /**
4380
4434
  *
4381
- * @type {boolean}
4382
- * @memberof DoctorModel
4383
- */
4384
- 'consultationEnabled'?: boolean | null;
4385
- /**
4386
- *
4387
- * @type {number}
4388
- * @memberof DoctorModel
4389
- */
4390
- 'consultationFee'?: number | null;
4391
- /**
4392
- *
4393
- * @type {boolean}
4394
- * @memberof DoctorModel
4395
- */
4396
- 'confirmed'?: boolean;
4397
- /**
4398
- *
4399
- * @type {Array<DoctorSpecialtyItemModel>}
4400
- * @memberof DoctorModel
4401
- */
4402
- 'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
4403
- /**
4404
- *
4405
- * @type {Array<DoctorAffiliationModel>}
4406
- * @memberof DoctorModel
4407
- */
4408
- 'doctorAffiliations'?: Array<DoctorAffiliationModel> | null;
4409
- /**
4410
- *
4411
- * @type {Array<UserTranslationModel>}
4435
+ * @type {Date}
4412
4436
  * @memberof DoctorModel
4413
4437
  */
4414
- 'translations'?: Array<UserTranslationModel> | null;
4438
+ 'startPracticeDate'?: Date | null;
4415
4439
  /**
4416
4440
  *
4417
4441
  * @type {Array<LocalizedUrlModel>}
@@ -4553,25 +4577,25 @@ export interface DoctorSimpleItemModel {
4553
4577
  * @type {string}
4554
4578
  * @memberof DoctorSimpleItemModel
4555
4579
  */
4556
- 'firstName'?: string | null;
4580
+ 'languageCode'?: string | null;
4557
4581
  /**
4558
4582
  *
4559
4583
  * @type {string}
4560
4584
  * @memberof DoctorSimpleItemModel
4561
4585
  */
4562
- 'middleName'?: string | null;
4586
+ 'firstName'?: string | null;
4563
4587
  /**
4564
4588
  *
4565
4589
  * @type {string}
4566
4590
  * @memberof DoctorSimpleItemModel
4567
4591
  */
4568
- 'lastName'?: string | null;
4592
+ 'middleName'?: string | null;
4569
4593
  /**
4570
4594
  *
4571
4595
  * @type {string}
4572
4596
  * @memberof DoctorSimpleItemModel
4573
4597
  */
4574
- 'fullname'?: string | null;
4598
+ 'lastName'?: string | null;
4575
4599
  /**
4576
4600
  *
4577
4601
  * @type {string}
@@ -4593,10 +4617,10 @@ export interface DoctorSimpleItemModel {
4593
4617
  export interface DoctorSpecialtiesModel {
4594
4618
  /**
4595
4619
  *
4596
- * @type {Array<DoctorSpecialtyModel>}
4620
+ * @type {Array<DoctorSpecialtyItemModel>}
4597
4621
  * @memberof DoctorSpecialtiesModel
4598
4622
  */
4599
- 'items'?: Array<DoctorSpecialtyModel> | null;
4623
+ 'items'?: Array<DoctorSpecialtyItemModel> | null;
4600
4624
  /**
4601
4625
  *
4602
4626
  * @type {PagedListMetaData}
@@ -4610,6 +4634,12 @@ export interface DoctorSpecialtiesModel {
4610
4634
  * @interface DoctorSpecialtyItemModel
4611
4635
  */
4612
4636
  export interface DoctorSpecialtyItemModel {
4637
+ /**
4638
+ *
4639
+ * @type {string}
4640
+ * @memberof DoctorSpecialtyItemModel
4641
+ */
4642
+ 'languageCode'?: string | null;
4613
4643
  /**
4614
4644
  *
4615
4645
  * @type {string}
@@ -4641,6 +4671,12 @@ export interface DoctorSpecialtyItemModel {
4641
4671
  * @interface DoctorSpecialtyModel
4642
4672
  */
4643
4673
  export interface DoctorSpecialtyModel {
4674
+ /**
4675
+ *
4676
+ * @type {string}
4677
+ * @memberof DoctorSpecialtyModel
4678
+ */
4679
+ 'languageCode'?: string | null;
4644
4680
  /**
4645
4681
  *
4646
4682
  * @type {string}
@@ -4665,6 +4701,18 @@ export interface DoctorSpecialtyModel {
4665
4701
  * @memberof DoctorSpecialtyModel
4666
4702
  */
4667
4703
  'order'?: number;
4704
+ /**
4705
+ *
4706
+ * @type {string}
4707
+ * @memberof DoctorSpecialtyModel
4708
+ */
4709
+ 'specialtyTypeName'?: string | null;
4710
+ /**
4711
+ *
4712
+ * @type {string}
4713
+ * @memberof DoctorSpecialtyModel
4714
+ */
4715
+ 'specialtyTyeSlug'?: string | null;
4668
4716
  }
4669
4717
  /**
4670
4718
  *
@@ -6156,6 +6204,12 @@ export interface HospitalSimpleItemModel {
6156
6204
  * @memberof HospitalSimpleItemModel
6157
6205
  */
6158
6206
  'id'?: string;
6207
+ /**
6208
+ *
6209
+ * @type {string}
6210
+ * @memberof HospitalSimpleItemModel
6211
+ */
6212
+ 'languageCode'?: string | null;
6159
6213
  /**
6160
6214
  *
6161
6215
  * @type {string}
@@ -6485,25 +6539,25 @@ export interface HospitalSpecialtySimpleItemModel {
6485
6539
  * @type {string}
6486
6540
  * @memberof HospitalSpecialtySimpleItemModel
6487
6541
  */
6488
- 'name'?: string | null;
6542
+ 'languageCode'?: string | null;
6489
6543
  /**
6490
6544
  *
6491
6545
  * @type {string}
6492
6546
  * @memberof HospitalSpecialtySimpleItemModel
6493
6547
  */
6494
- 'slug'?: string | null;
6548
+ 'name'?: string | null;
6495
6549
  /**
6496
6550
  *
6497
6551
  * @type {string}
6498
6552
  * @memberof HospitalSpecialtySimpleItemModel
6499
6553
  */
6500
- 'description'?: string | null;
6554
+ 'slug'?: string | null;
6501
6555
  /**
6502
6556
  *
6503
- * @type {number}
6557
+ * @type {string}
6504
6558
  * @memberof HospitalSpecialtySimpleItemModel
6505
6559
  */
6506
- 'order'?: number;
6560
+ 'description'?: string | null;
6507
6561
  /**
6508
6562
  *
6509
6563
  * @type {boolean}
@@ -6515,25 +6569,19 @@ export interface HospitalSpecialtySimpleItemModel {
6515
6569
  * @type {number}
6516
6570
  * @memberof HospitalSpecialtySimpleItemModel
6517
6571
  */
6518
- 'servicesCount'?: number;
6519
- /**
6520
- *
6521
- * @type {string}
6522
- * @memberof HospitalSpecialtySimpleItemModel
6523
- */
6524
- 'specialtyId'?: string;
6572
+ 'order'?: number;
6525
6573
  /**
6526
6574
  *
6527
- * @type {string}
6575
+ * @type {number}
6528
6576
  * @memberof HospitalSpecialtySimpleItemModel
6529
6577
  */
6530
- 'specialtyName'?: string | null;
6578
+ 'servicesCount'?: number;
6531
6579
  /**
6532
6580
  *
6533
6581
  * @type {string}
6534
6582
  * @memberof HospitalSpecialtySimpleItemModel
6535
6583
  */
6536
- 'specialtySlug'?: string | null;
6584
+ 'specialtyId'?: string;
6537
6585
  }
6538
6586
  /**
6539
6587
  *
@@ -7276,6 +7324,12 @@ export interface PatientModel {
7276
7324
  * @memberof PatientModel
7277
7325
  */
7278
7326
  'id'?: string;
7327
+ /**
7328
+ *
7329
+ * @type {string}
7330
+ * @memberof PatientModel
7331
+ */
7332
+ 'languageCode'?: string | null;
7279
7333
  /**
7280
7334
  *
7281
7335
  * @type {string}
@@ -7314,16 +7368,16 @@ export interface PatientModel {
7314
7368
  'slug'?: string | null;
7315
7369
  /**
7316
7370
  *
7317
- * @type {string}
7371
+ * @type {boolean}
7318
7372
  * @memberof PatientModel
7319
7373
  */
7320
- 'phone'?: string | null;
7374
+ 'confirmed'?: boolean;
7321
7375
  /**
7322
7376
  *
7323
7377
  * @type {string}
7324
7378
  * @memberof PatientModel
7325
7379
  */
7326
- 'email'?: string | null;
7380
+ 'userType'?: string | null;
7327
7381
  /**
7328
7382
  *
7329
7383
  * @type {string}
@@ -7338,40 +7392,46 @@ export interface PatientModel {
7338
7392
  'photoThumbnail'?: string | null;
7339
7393
  /**
7340
7394
  *
7341
- * @type {Gender}
7395
+ * @type {AuditableEntity}
7342
7396
  * @memberof PatientModel
7343
7397
  */
7344
- 'gender'?: Gender;
7398
+ 'auditableEntity'?: AuditableEntity;
7345
7399
  /**
7346
7400
  *
7347
- * @type {Date}
7401
+ * @type {string}
7348
7402
  * @memberof PatientModel
7349
7403
  */
7350
- 'dateOfBirth'?: Date | null;
7404
+ 'phone'?: string | null;
7351
7405
  /**
7352
7406
  *
7353
7407
  * @type {string}
7354
7408
  * @memberof PatientModel
7355
7409
  */
7356
- 'timeZone'?: string | null;
7410
+ 'email'?: string | null;
7357
7411
  /**
7358
7412
  *
7359
- * @type {string}
7413
+ * @type {Gender}
7360
7414
  * @memberof PatientModel
7361
7415
  */
7362
- 'communicationUserId'?: string | null;
7416
+ 'gender'?: Gender;
7363
7417
  /**
7364
7418
  *
7365
- * @type {AuditableEntity}
7419
+ * @type {Date}
7366
7420
  * @memberof PatientModel
7367
7421
  */
7368
- 'auditableEntity'?: AuditableEntity;
7422
+ 'dateOfBirth'?: Date | null;
7369
7423
  /**
7370
7424
  *
7371
7425
  * @type {string}
7372
7426
  * @memberof PatientModel
7373
7427
  */
7374
- 'userType'?: string | null;
7428
+ 'timeZone'?: string | null;
7429
+ /**
7430
+ *
7431
+ * @type {string}
7432
+ * @memberof PatientModel
7433
+ */
7434
+ 'communicationUserId'?: string | null;
7375
7435
  /**
7376
7436
  *
7377
7437
  * @type {Array<UserLanguageModel>}
@@ -9451,6 +9511,12 @@ export interface UserModel {
9451
9511
  * @memberof UserModel
9452
9512
  */
9453
9513
  'id'?: string;
9514
+ /**
9515
+ *
9516
+ * @type {string}
9517
+ * @memberof UserModel
9518
+ */
9519
+ 'languageCode'?: string | null;
9454
9520
  /**
9455
9521
  *
9456
9522
  * @type {string}
@@ -9489,16 +9555,16 @@ export interface UserModel {
9489
9555
  'slug'?: string | null;
9490
9556
  /**
9491
9557
  *
9492
- * @type {string}
9558
+ * @type {boolean}
9493
9559
  * @memberof UserModel
9494
9560
  */
9495
- 'phone'?: string | null;
9561
+ 'confirmed'?: boolean;
9496
9562
  /**
9497
9563
  *
9498
9564
  * @type {string}
9499
9565
  * @memberof UserModel
9500
9566
  */
9501
- 'email'?: string | null;
9567
+ 'userType'?: string | null;
9502
9568
  /**
9503
9569
  *
9504
9570
  * @type {string}
@@ -9513,40 +9579,46 @@ export interface UserModel {
9513
9579
  'photoThumbnail'?: string | null;
9514
9580
  /**
9515
9581
  *
9516
- * @type {Gender}
9582
+ * @type {AuditableEntity}
9517
9583
  * @memberof UserModel
9518
9584
  */
9519
- 'gender'?: Gender;
9585
+ 'auditableEntity'?: AuditableEntity;
9520
9586
  /**
9521
9587
  *
9522
- * @type {Date}
9588
+ * @type {string}
9523
9589
  * @memberof UserModel
9524
9590
  */
9525
- 'dateOfBirth'?: Date | null;
9591
+ 'phone'?: string | null;
9526
9592
  /**
9527
9593
  *
9528
9594
  * @type {string}
9529
9595
  * @memberof UserModel
9530
9596
  */
9531
- 'timeZone'?: string | null;
9597
+ 'email'?: string | null;
9532
9598
  /**
9533
9599
  *
9534
- * @type {string}
9600
+ * @type {Gender}
9535
9601
  * @memberof UserModel
9536
9602
  */
9537
- 'communicationUserId'?: string | null;
9603
+ 'gender'?: Gender;
9538
9604
  /**
9539
9605
  *
9540
- * @type {AuditableEntity}
9606
+ * @type {Date}
9541
9607
  * @memberof UserModel
9542
9608
  */
9543
- 'auditableEntity'?: AuditableEntity;
9609
+ 'dateOfBirth'?: Date | null;
9544
9610
  /**
9545
9611
  *
9546
9612
  * @type {string}
9547
9613
  * @memberof UserModel
9548
9614
  */
9549
- 'userType'?: string | null;
9615
+ 'timeZone'?: string | null;
9616
+ /**
9617
+ *
9618
+ * @type {string}
9619
+ * @memberof UserModel
9620
+ */
9621
+ 'communicationUserId'?: string | null;
9550
9622
  /**
9551
9623
  *
9552
9624
  * @type {Array<UserLanguageModel>}
@@ -9560,79 +9632,6 @@ export interface UserModel {
9560
9632
  */
9561
9633
  'locations'?: Array<UserLocationModel> | null;
9562
9634
  }
9563
- /**
9564
- *
9565
- * @export
9566
- * @interface UserTranslationModel
9567
- */
9568
- export interface UserTranslationModel {
9569
- /**
9570
- *
9571
- * @type {string}
9572
- * @memberof UserTranslationModel
9573
- */
9574
- 'userId'?: string;
9575
- /**
9576
- *
9577
- * @type {string}
9578
- * @memberof UserTranslationModel
9579
- */
9580
- 'languageCode'?: string | null;
9581
- /**
9582
- *
9583
- * @type {string}
9584
- * @memberof UserTranslationModel
9585
- */
9586
- 'firstName'?: string | null;
9587
- /**
9588
- *
9589
- * @type {string}
9590
- * @memberof UserTranslationModel
9591
- */
9592
- 'middleName'?: string | null;
9593
- /**
9594
- *
9595
- * @type {string}
9596
- * @memberof UserTranslationModel
9597
- */
9598
- 'lastName'?: string | null;
9599
- /**
9600
- *
9601
- * @type {string}
9602
- * @memberof UserTranslationModel
9603
- */
9604
- 'slug'?: string | null;
9605
- /**
9606
- *
9607
- * @type {string}
9608
- * @memberof UserTranslationModel
9609
- */
9610
- 'overview'?: string | null;
9611
- /**
9612
- *
9613
- * @type {string}
9614
- * @memberof UserTranslationModel
9615
- */
9616
- 'description'?: string | null;
9617
- /**
9618
- *
9619
- * @type {string}
9620
- * @memberof UserTranslationModel
9621
- */
9622
- 'content'?: string | null;
9623
- /**
9624
- *
9625
- * @type {boolean}
9626
- * @memberof UserTranslationModel
9627
- */
9628
- 'confirmed'?: boolean;
9629
- /**
9630
- *
9631
- * @type {AuditableEntity}
9632
- * @memberof UserTranslationModel
9633
- */
9634
- 'auditableEntity'?: AuditableEntity;
9635
- }
9636
9635
  /**
9637
9636
  *
9638
9637
  * @export
@@ -12674,22 +12673,25 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
12674
12673
  * @param {string} [doctorName]
12675
12674
  * @param {string} [specialtyId]
12676
12675
  * @param {string} [specialtyName]
12676
+ * @param {string} [languageCode]
12677
+ * @param {boolean} [showHidden]
12677
12678
  * @param {number} [page]
12678
12679
  * @param {number} [limit]
12679
12680
  * @param {Date} [lastRetrieved]
12680
12681
  * @param {*} [options] Override http request option.
12681
12682
  * @throws {RequiredError}
12682
12683
  */
12683
- apiV2DoctorsDoctorIdSpecialtiesGet: (doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12684
+ apiV2DoctorsDoctorIdSpecialtiesGet: (doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12684
12685
  /**
12685
12686
  *
12686
12687
  * @summary Get DoctorSpecialty
12687
12688
  * @param {string} doctorId
12688
12689
  * @param {string} specialtyId
12690
+ * @param {string} [languageCode]
12689
12691
  * @param {*} [options] Override http request option.
12690
12692
  * @throws {RequiredError}
12691
12693
  */
12692
- apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet: (doctorId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12694
+ apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet: (doctorId: string, specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12693
12695
  /**
12694
12696
  *
12695
12697
  * @summary Get all Doctors.
@@ -12906,22 +12908,25 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
12906
12908
  * @param {string} [doctorName]
12907
12909
  * @param {string} [specialtyId]
12908
12910
  * @param {string} [specialtyName]
12911
+ * @param {string} [languageCode]
12912
+ * @param {boolean} [showHidden]
12909
12913
  * @param {number} [page]
12910
12914
  * @param {number} [limit]
12911
12915
  * @param {Date} [lastRetrieved]
12912
12916
  * @param {*} [options] Override http request option.
12913
12917
  * @throws {RequiredError}
12914
12918
  */
12915
- apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtiesModel>>;
12919
+ apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | 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<DoctorSpecialtiesModel>>;
12916
12920
  /**
12917
12921
  *
12918
12922
  * @summary Get DoctorSpecialty
12919
12923
  * @param {string} doctorId
12920
12924
  * @param {string} specialtyId
12925
+ * @param {string} [languageCode]
12921
12926
  * @param {*} [options] Override http request option.
12922
12927
  * @throws {RequiredError}
12923
12928
  */
12924
- apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
12929
+ apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
12925
12930
  /**
12926
12931
  *
12927
12932
  * @summary Get all Doctors.
@@ -13138,22 +13143,25 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
13138
13143
  * @param {string} [doctorName]
13139
13144
  * @param {string} [specialtyId]
13140
13145
  * @param {string} [specialtyName]
13146
+ * @param {string} [languageCode]
13147
+ * @param {boolean} [showHidden]
13141
13148
  * @param {number} [page]
13142
13149
  * @param {number} [limit]
13143
13150
  * @param {Date} [lastRetrieved]
13144
13151
  * @param {*} [options] Override http request option.
13145
13152
  * @throws {RequiredError}
13146
13153
  */
13147
- apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorSpecialtiesModel>;
13154
+ apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorSpecialtiesModel>;
13148
13155
  /**
13149
13156
  *
13150
13157
  * @summary Get DoctorSpecialty
13151
13158
  * @param {string} doctorId
13152
13159
  * @param {string} specialtyId
13160
+ * @param {string} [languageCode]
13153
13161
  * @param {*} [options] Override http request option.
13154
13162
  * @throws {RequiredError}
13155
13163
  */
13156
- apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: any): AxiosPromise<DoctorSpecialtyModel>;
13164
+ apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, languageCode?: string | undefined, options?: any): AxiosPromise<DoctorSpecialtyModel>;
13157
13165
  /**
13158
13166
  *
13159
13167
  * @summary Get all Doctors.
@@ -13385,6 +13393,8 @@ export declare class DoctorsApi extends BaseAPI {
13385
13393
  * @param {string} [doctorName]
13386
13394
  * @param {string} [specialtyId]
13387
13395
  * @param {string} [specialtyName]
13396
+ * @param {string} [languageCode]
13397
+ * @param {boolean} [showHidden]
13388
13398
  * @param {number} [page]
13389
13399
  * @param {number} [limit]
13390
13400
  * @param {Date} [lastRetrieved]
@@ -13392,17 +13402,18 @@ export declare class DoctorsApi extends BaseAPI {
13392
13402
  * @throws {RequiredError}
13393
13403
  * @memberof DoctorsApi
13394
13404
  */
13395
- apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtiesModel, any>>;
13405
+ apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtiesModel, any>>;
13396
13406
  /**
13397
13407
  *
13398
13408
  * @summary Get DoctorSpecialty
13399
13409
  * @param {string} doctorId
13400
13410
  * @param {string} specialtyId
13411
+ * @param {string} [languageCode]
13401
13412
  * @param {*} [options] Override http request option.
13402
13413
  * @throws {RequiredError}
13403
13414
  * @memberof DoctorsApi
13404
13415
  */
13405
- apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel, any>>;
13416
+ apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel, any>>;
13406
13417
  /**
13407
13418
  *
13408
13419
  * @summary Get all Doctors.