ch-api-client-typescript2 3.3.3 → 3.3.4
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 +81 -75
- package/lib/api.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/api.ts +81 -75
package/lib/api.d.ts
CHANGED
|
@@ -5478,19 +5478,19 @@ export interface HospitalItemModel {
|
|
|
5478
5478
|
* @type {string}
|
|
5479
5479
|
* @memberof HospitalItemModel
|
|
5480
5480
|
*/
|
|
5481
|
-
'
|
|
5481
|
+
'languageCode'?: string | null;
|
|
5482
5482
|
/**
|
|
5483
5483
|
*
|
|
5484
5484
|
* @type {string}
|
|
5485
5485
|
* @memberof HospitalItemModel
|
|
5486
5486
|
*/
|
|
5487
|
-
'
|
|
5487
|
+
'name'?: string | null;
|
|
5488
5488
|
/**
|
|
5489
5489
|
*
|
|
5490
5490
|
* @type {string}
|
|
5491
5491
|
* @memberof HospitalItemModel
|
|
5492
5492
|
*/
|
|
5493
|
-
'
|
|
5493
|
+
'slug'?: string | null;
|
|
5494
5494
|
/**
|
|
5495
5495
|
*
|
|
5496
5496
|
* @type {boolean}
|
|
@@ -5502,19 +5502,7 @@ export interface HospitalItemModel {
|
|
|
5502
5502
|
* @type {string}
|
|
5503
5503
|
* @memberof HospitalItemModel
|
|
5504
5504
|
*/
|
|
5505
|
-
'
|
|
5506
|
-
/**
|
|
5507
|
-
*
|
|
5508
|
-
* @type {string}
|
|
5509
|
-
* @memberof HospitalItemModel
|
|
5510
|
-
*/
|
|
5511
|
-
'countryName'?: string | null;
|
|
5512
|
-
/**
|
|
5513
|
-
*
|
|
5514
|
-
* @type {string}
|
|
5515
|
-
* @memberof HospitalItemModel
|
|
5516
|
-
*/
|
|
5517
|
-
'countrySlug'?: string | null;
|
|
5505
|
+
'logo'?: string | null;
|
|
5518
5506
|
/**
|
|
5519
5507
|
*
|
|
5520
5508
|
* @type {MarketingType}
|
|
@@ -5557,6 +5545,12 @@ export interface HospitalItemModel {
|
|
|
5557
5545
|
* @memberof HospitalItemModel
|
|
5558
5546
|
*/
|
|
5559
5547
|
'specialtiesSummerized'?: string | null;
|
|
5548
|
+
/**
|
|
5549
|
+
*
|
|
5550
|
+
* @type {string}
|
|
5551
|
+
* @memberof HospitalItemModel
|
|
5552
|
+
*/
|
|
5553
|
+
'countryId'?: string;
|
|
5560
5554
|
/**
|
|
5561
5555
|
*
|
|
5562
5556
|
* @type {Array<HospitalAccreditationItemModel>}
|
|
@@ -5593,19 +5587,19 @@ export interface HospitalModel {
|
|
|
5593
5587
|
* @type {string}
|
|
5594
5588
|
* @memberof HospitalModel
|
|
5595
5589
|
*/
|
|
5596
|
-
'
|
|
5590
|
+
'languageCode'?: string | null;
|
|
5597
5591
|
/**
|
|
5598
5592
|
*
|
|
5599
5593
|
* @type {string}
|
|
5600
5594
|
* @memberof HospitalModel
|
|
5601
5595
|
*/
|
|
5602
|
-
'
|
|
5596
|
+
'name'?: string | null;
|
|
5603
5597
|
/**
|
|
5604
5598
|
*
|
|
5605
5599
|
* @type {string}
|
|
5606
5600
|
* @memberof HospitalModel
|
|
5607
5601
|
*/
|
|
5608
|
-
'
|
|
5602
|
+
'slug'?: string | null;
|
|
5609
5603
|
/**
|
|
5610
5604
|
*
|
|
5611
5605
|
* @type {boolean}
|
|
@@ -5617,19 +5611,7 @@ export interface HospitalModel {
|
|
|
5617
5611
|
* @type {string}
|
|
5618
5612
|
* @memberof HospitalModel
|
|
5619
5613
|
*/
|
|
5620
|
-
'
|
|
5621
|
-
/**
|
|
5622
|
-
*
|
|
5623
|
-
* @type {string}
|
|
5624
|
-
* @memberof HospitalModel
|
|
5625
|
-
*/
|
|
5626
|
-
'countryName'?: string | null;
|
|
5627
|
-
/**
|
|
5628
|
-
*
|
|
5629
|
-
* @type {string}
|
|
5630
|
-
* @memberof HospitalModel
|
|
5631
|
-
*/
|
|
5632
|
-
'countrySlug'?: string | null;
|
|
5614
|
+
'logo'?: string | null;
|
|
5633
5615
|
/**
|
|
5634
5616
|
*
|
|
5635
5617
|
* @type {MarketingType}
|
|
@@ -5672,6 +5654,12 @@ export interface HospitalModel {
|
|
|
5672
5654
|
* @memberof HospitalModel
|
|
5673
5655
|
*/
|
|
5674
5656
|
'specialtiesSummerized'?: string | null;
|
|
5657
|
+
/**
|
|
5658
|
+
*
|
|
5659
|
+
* @type {string}
|
|
5660
|
+
* @memberof HospitalModel
|
|
5661
|
+
*/
|
|
5662
|
+
'countryId'?: string;
|
|
5675
5663
|
/**
|
|
5676
5664
|
*
|
|
5677
5665
|
* @type {Array<HospitalAccreditationItemModel>}
|
|
@@ -5695,25 +5683,25 @@ export interface HospitalModel {
|
|
|
5695
5683
|
* @type {string}
|
|
5696
5684
|
* @memberof HospitalModel
|
|
5697
5685
|
*/
|
|
5698
|
-
'
|
|
5686
|
+
'description'?: string | null;
|
|
5699
5687
|
/**
|
|
5700
5688
|
*
|
|
5701
5689
|
* @type {string}
|
|
5702
5690
|
* @memberof HospitalModel
|
|
5703
5691
|
*/
|
|
5704
|
-
'
|
|
5692
|
+
'overview'?: string | null;
|
|
5705
5693
|
/**
|
|
5706
5694
|
*
|
|
5707
5695
|
* @type {string}
|
|
5708
5696
|
* @memberof HospitalModel
|
|
5709
5697
|
*/
|
|
5710
|
-
'
|
|
5698
|
+
'content'?: string | null;
|
|
5711
5699
|
/**
|
|
5712
5700
|
*
|
|
5713
|
-
* @type {
|
|
5701
|
+
* @type {Array<LocalizedUrlModel>}
|
|
5714
5702
|
* @memberof HospitalModel
|
|
5715
5703
|
*/
|
|
5716
|
-
'
|
|
5704
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
5717
5705
|
/**
|
|
5718
5706
|
*
|
|
5719
5707
|
* @type {number}
|
|
@@ -5780,12 +5768,6 @@ export interface HospitalModel {
|
|
|
5780
5768
|
* @memberof HospitalModel
|
|
5781
5769
|
*/
|
|
5782
5770
|
'hospitalSnsHandles'?: Array<SnsHandle> | null;
|
|
5783
|
-
/**
|
|
5784
|
-
*
|
|
5785
|
-
* @type {Array<LocalizedUrlModel>}
|
|
5786
|
-
* @memberof HospitalModel
|
|
5787
|
-
*/
|
|
5788
|
-
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
5789
5771
|
/**
|
|
5790
5772
|
*
|
|
5791
5773
|
* @type {Array<AwardModel>}
|
|
@@ -6262,6 +6244,12 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6262
6244
|
* @memberof HospitalSpecialtyItemModel
|
|
6263
6245
|
*/
|
|
6264
6246
|
'id'?: string;
|
|
6247
|
+
/**
|
|
6248
|
+
*
|
|
6249
|
+
* @type {string}
|
|
6250
|
+
* @memberof HospitalSpecialtyItemModel
|
|
6251
|
+
*/
|
|
6252
|
+
'languageCode'?: string | null;
|
|
6265
6253
|
/**
|
|
6266
6254
|
*
|
|
6267
6255
|
* @type {string}
|
|
@@ -6282,10 +6270,10 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6282
6270
|
'description'?: string | null;
|
|
6283
6271
|
/**
|
|
6284
6272
|
*
|
|
6285
|
-
* @type {
|
|
6273
|
+
* @type {boolean}
|
|
6286
6274
|
* @memberof HospitalSpecialtyItemModel
|
|
6287
6275
|
*/
|
|
6288
|
-
'
|
|
6276
|
+
'confirmed'?: boolean;
|
|
6289
6277
|
/**
|
|
6290
6278
|
*
|
|
6291
6279
|
* @type {string}
|
|
@@ -6318,10 +6306,16 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6318
6306
|
'order'?: number;
|
|
6319
6307
|
/**
|
|
6320
6308
|
*
|
|
6321
|
-
* @type {
|
|
6309
|
+
* @type {number}
|
|
6322
6310
|
* @memberof HospitalSpecialtyItemModel
|
|
6323
6311
|
*/
|
|
6324
|
-
'
|
|
6312
|
+
'servicesCount'?: number;
|
|
6313
|
+
/**
|
|
6314
|
+
*
|
|
6315
|
+
* @type {string}
|
|
6316
|
+
* @memberof HospitalSpecialtyItemModel
|
|
6317
|
+
*/
|
|
6318
|
+
'specialtyId'?: string;
|
|
6325
6319
|
}
|
|
6326
6320
|
/**
|
|
6327
6321
|
*
|
|
@@ -6335,6 +6329,12 @@ export interface HospitalSpecialtyModel {
|
|
|
6335
6329
|
* @memberof HospitalSpecialtyModel
|
|
6336
6330
|
*/
|
|
6337
6331
|
'id'?: string;
|
|
6332
|
+
/**
|
|
6333
|
+
*
|
|
6334
|
+
* @type {string}
|
|
6335
|
+
* @memberof HospitalSpecialtyModel
|
|
6336
|
+
*/
|
|
6337
|
+
'languageCode'?: string | null;
|
|
6338
6338
|
/**
|
|
6339
6339
|
*
|
|
6340
6340
|
* @type {string}
|
|
@@ -6355,10 +6355,10 @@ export interface HospitalSpecialtyModel {
|
|
|
6355
6355
|
'description'?: string | null;
|
|
6356
6356
|
/**
|
|
6357
6357
|
*
|
|
6358
|
-
* @type {
|
|
6358
|
+
* @type {boolean}
|
|
6359
6359
|
* @memberof HospitalSpecialtyModel
|
|
6360
6360
|
*/
|
|
6361
|
-
'
|
|
6361
|
+
'confirmed'?: boolean;
|
|
6362
6362
|
/**
|
|
6363
6363
|
*
|
|
6364
6364
|
* @type {string}
|
|
@@ -6391,28 +6391,28 @@ export interface HospitalSpecialtyModel {
|
|
|
6391
6391
|
'order'?: number;
|
|
6392
6392
|
/**
|
|
6393
6393
|
*
|
|
6394
|
-
* @type {
|
|
6394
|
+
* @type {number}
|
|
6395
6395
|
* @memberof HospitalSpecialtyModel
|
|
6396
6396
|
*/
|
|
6397
|
-
'
|
|
6397
|
+
'servicesCount'?: number;
|
|
6398
6398
|
/**
|
|
6399
6399
|
*
|
|
6400
6400
|
* @type {string}
|
|
6401
6401
|
* @memberof HospitalSpecialtyModel
|
|
6402
6402
|
*/
|
|
6403
|
-
'
|
|
6403
|
+
'specialtyId'?: string;
|
|
6404
6404
|
/**
|
|
6405
6405
|
*
|
|
6406
6406
|
* @type {string}
|
|
6407
6407
|
* @memberof HospitalSpecialtyModel
|
|
6408
6408
|
*/
|
|
6409
|
-
'
|
|
6409
|
+
'hospitalId'?: string;
|
|
6410
6410
|
/**
|
|
6411
6411
|
*
|
|
6412
6412
|
* @type {string}
|
|
6413
6413
|
* @memberof HospitalSpecialtyModel
|
|
6414
6414
|
*/
|
|
6415
|
-
'
|
|
6415
|
+
'customStyle'?: string | null;
|
|
6416
6416
|
/**
|
|
6417
6417
|
*
|
|
6418
6418
|
* @type {string}
|
|
@@ -6424,19 +6424,13 @@ export interface HospitalSpecialtyModel {
|
|
|
6424
6424
|
* @type {string}
|
|
6425
6425
|
* @memberof HospitalSpecialtyModel
|
|
6426
6426
|
*/
|
|
6427
|
-
'
|
|
6428
|
-
/**
|
|
6429
|
-
*
|
|
6430
|
-
* @type {string}
|
|
6431
|
-
* @memberof HospitalSpecialtyModel
|
|
6432
|
-
*/
|
|
6433
|
-
'languageCode'?: string | null;
|
|
6427
|
+
'hospitalName'?: string | null;
|
|
6434
6428
|
/**
|
|
6435
6429
|
*
|
|
6436
6430
|
* @type {string}
|
|
6437
6431
|
* @memberof HospitalSpecialtyModel
|
|
6438
6432
|
*/
|
|
6439
|
-
'
|
|
6433
|
+
'hospitalSlug'?: string | null;
|
|
6440
6434
|
/**
|
|
6441
6435
|
*
|
|
6442
6436
|
* @type {string}
|
|
@@ -6457,16 +6451,10 @@ export interface HospitalSpecialtyModel {
|
|
|
6457
6451
|
'specialtyTypeName'?: string | null;
|
|
6458
6452
|
/**
|
|
6459
6453
|
*
|
|
6460
|
-
* @type {
|
|
6461
|
-
* @memberof HospitalSpecialtyModel
|
|
6462
|
-
*/
|
|
6463
|
-
'serviceCount'?: number;
|
|
6464
|
-
/**
|
|
6465
|
-
*
|
|
6466
|
-
* @type {Array<HospitalServiceItemModel>}
|
|
6454
|
+
* @type {MarketingType}
|
|
6467
6455
|
* @memberof HospitalSpecialtyModel
|
|
6468
6456
|
*/
|
|
6469
|
-
'
|
|
6457
|
+
'marketingType'?: MarketingType;
|
|
6470
6458
|
/**
|
|
6471
6459
|
*
|
|
6472
6460
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -6512,22 +6500,40 @@ export interface HospitalSpecialtySimpleItemModel {
|
|
|
6512
6500
|
'description'?: string | null;
|
|
6513
6501
|
/**
|
|
6514
6502
|
*
|
|
6515
|
-
* @type {
|
|
6503
|
+
* @type {number}
|
|
6516
6504
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
6517
6505
|
*/
|
|
6518
|
-
'
|
|
6506
|
+
'order'?: number;
|
|
6507
|
+
/**
|
|
6508
|
+
*
|
|
6509
|
+
* @type {boolean}
|
|
6510
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
6511
|
+
*/
|
|
6512
|
+
'confirmed'?: boolean;
|
|
6519
6513
|
/**
|
|
6520
6514
|
*
|
|
6521
6515
|
* @type {number}
|
|
6522
6516
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
6523
6517
|
*/
|
|
6524
|
-
'
|
|
6518
|
+
'servicesCount'?: number;
|
|
6525
6519
|
/**
|
|
6526
6520
|
*
|
|
6527
|
-
* @type {
|
|
6521
|
+
* @type {string}
|
|
6528
6522
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
6529
6523
|
*/
|
|
6530
|
-
'
|
|
6524
|
+
'specialtyId'?: string;
|
|
6525
|
+
/**
|
|
6526
|
+
*
|
|
6527
|
+
* @type {string}
|
|
6528
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
6529
|
+
*/
|
|
6530
|
+
'specialtyName'?: string | null;
|
|
6531
|
+
/**
|
|
6532
|
+
*
|
|
6533
|
+
* @type {string}
|
|
6534
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
6535
|
+
*/
|
|
6536
|
+
'specialtySlug'?: string | null;
|
|
6531
6537
|
}
|
|
6532
6538
|
/**
|
|
6533
6539
|
*
|