ch-api-client-typescript2 2.6.3 → 2.6.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 +736 -78
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +728 -71
- package/package.json +1 -1
- package/src/api.ts +1058 -102
package/lib/api.d.ts
CHANGED
|
@@ -2436,6 +2436,91 @@ export interface CountryModel {
|
|
|
2436
2436
|
*/
|
|
2437
2437
|
'languageCode'?: string | null;
|
|
2438
2438
|
}
|
|
2439
|
+
/**
|
|
2440
|
+
*
|
|
2441
|
+
* @export
|
|
2442
|
+
* @interface CreateBookingCommand
|
|
2443
|
+
*/
|
|
2444
|
+
export interface CreateBookingCommand {
|
|
2445
|
+
/**
|
|
2446
|
+
*
|
|
2447
|
+
* @type {string}
|
|
2448
|
+
* @memberof CreateBookingCommand
|
|
2449
|
+
*/
|
|
2450
|
+
'hospitalId'?: string;
|
|
2451
|
+
/**
|
|
2452
|
+
*
|
|
2453
|
+
* @type {string}
|
|
2454
|
+
* @memberof CreateBookingCommand
|
|
2455
|
+
*/
|
|
2456
|
+
'dealPackageId'?: string;
|
|
2457
|
+
/**
|
|
2458
|
+
*
|
|
2459
|
+
* @type {number}
|
|
2460
|
+
* @memberof CreateBookingCommand
|
|
2461
|
+
*/
|
|
2462
|
+
'quantity'?: number;
|
|
2463
|
+
/**
|
|
2464
|
+
*
|
|
2465
|
+
* @type {string}
|
|
2466
|
+
* @memberof CreateBookingCommand
|
|
2467
|
+
*/
|
|
2468
|
+
'firstName'?: string | null;
|
|
2469
|
+
/**
|
|
2470
|
+
*
|
|
2471
|
+
* @type {string}
|
|
2472
|
+
* @memberof CreateBookingCommand
|
|
2473
|
+
*/
|
|
2474
|
+
'lastName'?: string | null;
|
|
2475
|
+
/**
|
|
2476
|
+
*
|
|
2477
|
+
* @type {string}
|
|
2478
|
+
* @memberof CreateBookingCommand
|
|
2479
|
+
*/
|
|
2480
|
+
'email'?: string | null;
|
|
2481
|
+
/**
|
|
2482
|
+
*
|
|
2483
|
+
* @type {string}
|
|
2484
|
+
* @memberof CreateBookingCommand
|
|
2485
|
+
*/
|
|
2486
|
+
'phone'?: string | null;
|
|
2487
|
+
/**
|
|
2488
|
+
*
|
|
2489
|
+
* @type {Date}
|
|
2490
|
+
* @memberof CreateBookingCommand
|
|
2491
|
+
*/
|
|
2492
|
+
'dateOfBirth'?: Date | null;
|
|
2493
|
+
/**
|
|
2494
|
+
*
|
|
2495
|
+
* @type {Gender}
|
|
2496
|
+
* @memberof CreateBookingCommand
|
|
2497
|
+
*/
|
|
2498
|
+
'gender'?: Gender;
|
|
2499
|
+
/**
|
|
2500
|
+
*
|
|
2501
|
+
* @type {Date}
|
|
2502
|
+
* @memberof CreateBookingCommand
|
|
2503
|
+
*/
|
|
2504
|
+
'approximateDateStart'?: Date;
|
|
2505
|
+
/**
|
|
2506
|
+
*
|
|
2507
|
+
* @type {Date}
|
|
2508
|
+
* @memberof CreateBookingCommand
|
|
2509
|
+
*/
|
|
2510
|
+
'approximateDateEnd'?: Date;
|
|
2511
|
+
/**
|
|
2512
|
+
*
|
|
2513
|
+
* @type {string}
|
|
2514
|
+
* @memberof CreateBookingCommand
|
|
2515
|
+
*/
|
|
2516
|
+
'comment'?: string | null;
|
|
2517
|
+
/**
|
|
2518
|
+
*
|
|
2519
|
+
* @type {string}
|
|
2520
|
+
* @memberof CreateBookingCommand
|
|
2521
|
+
*/
|
|
2522
|
+
'timeZone'?: string | null;
|
|
2523
|
+
}
|
|
2439
2524
|
/**
|
|
2440
2525
|
*
|
|
2441
2526
|
* @export
|
|
@@ -2473,6 +2558,121 @@ export interface CreateChatUserCommand {
|
|
|
2473
2558
|
*/
|
|
2474
2559
|
'discoveryKeys'?: Array<string> | null;
|
|
2475
2560
|
}
|
|
2561
|
+
/**
|
|
2562
|
+
*
|
|
2563
|
+
* @export
|
|
2564
|
+
* @interface CreateConsultationCommand
|
|
2565
|
+
*/
|
|
2566
|
+
export interface CreateConsultationCommand {
|
|
2567
|
+
/**
|
|
2568
|
+
*
|
|
2569
|
+
* @type {ConsultationType}
|
|
2570
|
+
* @memberof CreateConsultationCommand
|
|
2571
|
+
*/
|
|
2572
|
+
'consultationType'?: ConsultationType;
|
|
2573
|
+
/**
|
|
2574
|
+
*
|
|
2575
|
+
* @type {string}
|
|
2576
|
+
* @memberof CreateConsultationCommand
|
|
2577
|
+
*/
|
|
2578
|
+
'hospitalId'?: string;
|
|
2579
|
+
/**
|
|
2580
|
+
*
|
|
2581
|
+
* @type {string}
|
|
2582
|
+
* @memberof CreateConsultationCommand
|
|
2583
|
+
*/
|
|
2584
|
+
'specialtyId'?: string | null;
|
|
2585
|
+
/**
|
|
2586
|
+
*
|
|
2587
|
+
* @type {string}
|
|
2588
|
+
* @memberof CreateConsultationCommand
|
|
2589
|
+
*/
|
|
2590
|
+
'doctorId'?: string | null;
|
|
2591
|
+
/**
|
|
2592
|
+
*
|
|
2593
|
+
* @type {string}
|
|
2594
|
+
* @memberof CreateConsultationCommand
|
|
2595
|
+
*/
|
|
2596
|
+
'dealId'?: string | null;
|
|
2597
|
+
/**
|
|
2598
|
+
*
|
|
2599
|
+
* @type {string}
|
|
2600
|
+
* @memberof CreateConsultationCommand
|
|
2601
|
+
*/
|
|
2602
|
+
'language'?: string | null;
|
|
2603
|
+
/**
|
|
2604
|
+
*
|
|
2605
|
+
* @type {boolean}
|
|
2606
|
+
* @memberof CreateConsultationCommand
|
|
2607
|
+
*/
|
|
2608
|
+
'isAccountHolder'?: boolean;
|
|
2609
|
+
/**
|
|
2610
|
+
*
|
|
2611
|
+
* @type {string}
|
|
2612
|
+
* @memberof CreateConsultationCommand
|
|
2613
|
+
*/
|
|
2614
|
+
'firstName'?: string | null;
|
|
2615
|
+
/**
|
|
2616
|
+
*
|
|
2617
|
+
* @type {string}
|
|
2618
|
+
* @memberof CreateConsultationCommand
|
|
2619
|
+
*/
|
|
2620
|
+
'lastName'?: string | null;
|
|
2621
|
+
/**
|
|
2622
|
+
*
|
|
2623
|
+
* @type {string}
|
|
2624
|
+
* @memberof CreateConsultationCommand
|
|
2625
|
+
*/
|
|
2626
|
+
'email'?: string | null;
|
|
2627
|
+
/**
|
|
2628
|
+
*
|
|
2629
|
+
* @type {string}
|
|
2630
|
+
* @memberof CreateConsultationCommand
|
|
2631
|
+
*/
|
|
2632
|
+
'phone'?: string | null;
|
|
2633
|
+
/**
|
|
2634
|
+
*
|
|
2635
|
+
* @type {Date}
|
|
2636
|
+
* @memberof CreateConsultationCommand
|
|
2637
|
+
*/
|
|
2638
|
+
'dateOfBirth'?: Date | null;
|
|
2639
|
+
/**
|
|
2640
|
+
*
|
|
2641
|
+
* @type {Gender}
|
|
2642
|
+
* @memberof CreateConsultationCommand
|
|
2643
|
+
*/
|
|
2644
|
+
'gender'?: Gender;
|
|
2645
|
+
/**
|
|
2646
|
+
*
|
|
2647
|
+
* @type {string}
|
|
2648
|
+
* @memberof CreateConsultationCommand
|
|
2649
|
+
*/
|
|
2650
|
+
'comment'?: string | null;
|
|
2651
|
+
/**
|
|
2652
|
+
*
|
|
2653
|
+
* @type {string}
|
|
2654
|
+
* @memberof CreateConsultationCommand
|
|
2655
|
+
*/
|
|
2656
|
+
'timeRange'?: string | null;
|
|
2657
|
+
/**
|
|
2658
|
+
*
|
|
2659
|
+
* @type {Date}
|
|
2660
|
+
* @memberof CreateConsultationCommand
|
|
2661
|
+
*/
|
|
2662
|
+
'approximateDateStart'?: Date;
|
|
2663
|
+
/**
|
|
2664
|
+
*
|
|
2665
|
+
* @type {Date}
|
|
2666
|
+
* @memberof CreateConsultationCommand
|
|
2667
|
+
*/
|
|
2668
|
+
'approximateDateEnd'?: Date;
|
|
2669
|
+
/**
|
|
2670
|
+
*
|
|
2671
|
+
* @type {string}
|
|
2672
|
+
* @memberof CreateConsultationCommand
|
|
2673
|
+
*/
|
|
2674
|
+
'timeZone'?: string | null;
|
|
2675
|
+
}
|
|
2476
2676
|
/**
|
|
2477
2677
|
*
|
|
2478
2678
|
* @export
|
|
@@ -2624,6 +2824,18 @@ export interface DealItemModel {
|
|
|
2624
2824
|
* @memberof DealItemModel
|
|
2625
2825
|
*/
|
|
2626
2826
|
'dealServices'?: Array<DealServiceItemModel> | null;
|
|
2827
|
+
/**
|
|
2828
|
+
*
|
|
2829
|
+
* @type {Array<LocalizedUrlModel>}
|
|
2830
|
+
* @memberof DealItemModel
|
|
2831
|
+
*/
|
|
2832
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
2833
|
+
/**
|
|
2834
|
+
*
|
|
2835
|
+
* @type {boolean}
|
|
2836
|
+
* @memberof DealItemModel
|
|
2837
|
+
*/
|
|
2838
|
+
'confirmed'?: boolean;
|
|
2627
2839
|
/**
|
|
2628
2840
|
*
|
|
2629
2841
|
* @type {AuditableEntity}
|
|
@@ -2715,12 +2927,30 @@ export interface DealModel {
|
|
|
2715
2927
|
* @memberof DealModel
|
|
2716
2928
|
*/
|
|
2717
2929
|
'dealServices'?: Array<DealServiceItemModel> | null;
|
|
2930
|
+
/**
|
|
2931
|
+
*
|
|
2932
|
+
* @type {Array<LocalizedUrlModel>}
|
|
2933
|
+
* @memberof DealModel
|
|
2934
|
+
*/
|
|
2935
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
2936
|
+
/**
|
|
2937
|
+
*
|
|
2938
|
+
* @type {boolean}
|
|
2939
|
+
* @memberof DealModel
|
|
2940
|
+
*/
|
|
2941
|
+
'confirmed'?: boolean;
|
|
2718
2942
|
/**
|
|
2719
2943
|
*
|
|
2720
2944
|
* @type {AuditableEntity}
|
|
2721
2945
|
* @memberof DealModel
|
|
2722
2946
|
*/
|
|
2723
2947
|
'auditableEntity'?: AuditableEntity;
|
|
2948
|
+
/**
|
|
2949
|
+
*
|
|
2950
|
+
* @type {string}
|
|
2951
|
+
* @memberof DealModel
|
|
2952
|
+
*/
|
|
2953
|
+
'languageCode'?: string | null;
|
|
2724
2954
|
}
|
|
2725
2955
|
/**
|
|
2726
2956
|
*
|
|
@@ -5696,7 +5926,10 @@ export declare enum MediaType {
|
|
|
5696
5926
|
Photo = "Photo",
|
|
5697
5927
|
Video = "Video",
|
|
5698
5928
|
Youtube = "Youtube",
|
|
5699
|
-
Document = "Document"
|
|
5929
|
+
Document = "Document",
|
|
5930
|
+
Frontal = "Frontal",
|
|
5931
|
+
Diagonal = "Diagonal",
|
|
5932
|
+
Side = "Side"
|
|
5700
5933
|
}
|
|
5701
5934
|
/**
|
|
5702
5935
|
*
|
|
@@ -6614,12 +6847,6 @@ export interface ServiceCategoryItemModel {
|
|
|
6614
6847
|
* @memberof ServiceCategoryItemModel
|
|
6615
6848
|
*/
|
|
6616
6849
|
'serviceCount'?: number;
|
|
6617
|
-
/**
|
|
6618
|
-
*
|
|
6619
|
-
* @type {Array<HospitalServiceItemModel>}
|
|
6620
|
-
* @memberof ServiceCategoryItemModel
|
|
6621
|
-
*/
|
|
6622
|
-
'services'?: Array<HospitalServiceItemModel> | null;
|
|
6623
6850
|
}
|
|
6624
6851
|
/**
|
|
6625
6852
|
*
|
|
@@ -6663,12 +6890,6 @@ export interface ServiceCategoryModel {
|
|
|
6663
6890
|
* @memberof ServiceCategoryModel
|
|
6664
6891
|
*/
|
|
6665
6892
|
'serviceCount'?: number;
|
|
6666
|
-
/**
|
|
6667
|
-
*
|
|
6668
|
-
* @type {Array<HospitalServiceItemModel>}
|
|
6669
|
-
* @memberof ServiceCategoryModel
|
|
6670
|
-
*/
|
|
6671
|
-
'services'?: Array<HospitalServiceItemModel> | null;
|
|
6672
6893
|
}
|
|
6673
6894
|
/**
|
|
6674
6895
|
*
|
|
@@ -7210,66 +7431,236 @@ export interface TagModel {
|
|
|
7210
7431
|
'normalizedTagId'?: string | null;
|
|
7211
7432
|
/**
|
|
7212
7433
|
*
|
|
7213
|
-
* @type {number}
|
|
7214
|
-
* @memberof TagModel
|
|
7434
|
+
* @type {number}
|
|
7435
|
+
* @memberof TagModel
|
|
7436
|
+
*/
|
|
7437
|
+
'articleTagsCount'?: number;
|
|
7438
|
+
/**
|
|
7439
|
+
*
|
|
7440
|
+
* @type {number}
|
|
7441
|
+
* @memberof TagModel
|
|
7442
|
+
*/
|
|
7443
|
+
'youtubeTagsCount'?: number;
|
|
7444
|
+
}
|
|
7445
|
+
/**
|
|
7446
|
+
*
|
|
7447
|
+
* @export
|
|
7448
|
+
* @interface TagsModel
|
|
7449
|
+
*/
|
|
7450
|
+
export interface TagsModel {
|
|
7451
|
+
/**
|
|
7452
|
+
*
|
|
7453
|
+
* @type {Array<TagItemModel>}
|
|
7454
|
+
* @memberof TagsModel
|
|
7455
|
+
*/
|
|
7456
|
+
'items'?: Array<TagItemModel> | null;
|
|
7457
|
+
/**
|
|
7458
|
+
*
|
|
7459
|
+
* @type {PagedListMetaData}
|
|
7460
|
+
* @memberof TagsModel
|
|
7461
|
+
*/
|
|
7462
|
+
'metaData'?: PagedListMetaData;
|
|
7463
|
+
}
|
|
7464
|
+
/**
|
|
7465
|
+
*
|
|
7466
|
+
* @export
|
|
7467
|
+
* @interface UpdateBookingCommand
|
|
7468
|
+
*/
|
|
7469
|
+
export interface UpdateBookingCommand {
|
|
7470
|
+
/**
|
|
7471
|
+
*
|
|
7472
|
+
* @type {number}
|
|
7473
|
+
* @memberof UpdateBookingCommand
|
|
7474
|
+
*/
|
|
7475
|
+
'quantity'?: number;
|
|
7476
|
+
/**
|
|
7477
|
+
*
|
|
7478
|
+
* @type {string}
|
|
7479
|
+
* @memberof UpdateBookingCommand
|
|
7480
|
+
*/
|
|
7481
|
+
'firstName'?: string | null;
|
|
7482
|
+
/**
|
|
7483
|
+
*
|
|
7484
|
+
* @type {string}
|
|
7485
|
+
* @memberof UpdateBookingCommand
|
|
7486
|
+
*/
|
|
7487
|
+
'lastName'?: string | null;
|
|
7488
|
+
/**
|
|
7489
|
+
*
|
|
7490
|
+
* @type {string}
|
|
7491
|
+
* @memberof UpdateBookingCommand
|
|
7492
|
+
*/
|
|
7493
|
+
'email'?: string | null;
|
|
7494
|
+
/**
|
|
7495
|
+
*
|
|
7496
|
+
* @type {string}
|
|
7497
|
+
* @memberof UpdateBookingCommand
|
|
7498
|
+
*/
|
|
7499
|
+
'phone'?: string | null;
|
|
7500
|
+
/**
|
|
7501
|
+
*
|
|
7502
|
+
* @type {Date}
|
|
7503
|
+
* @memberof UpdateBookingCommand
|
|
7504
|
+
*/
|
|
7505
|
+
'dateOfBirth'?: Date | null;
|
|
7506
|
+
/**
|
|
7507
|
+
*
|
|
7508
|
+
* @type {Gender}
|
|
7509
|
+
* @memberof UpdateBookingCommand
|
|
7510
|
+
*/
|
|
7511
|
+
'gender'?: Gender;
|
|
7512
|
+
/**
|
|
7513
|
+
*
|
|
7514
|
+
* @type {Date}
|
|
7515
|
+
* @memberof UpdateBookingCommand
|
|
7516
|
+
*/
|
|
7517
|
+
'approximateDateStart'?: Date;
|
|
7518
|
+
/**
|
|
7519
|
+
*
|
|
7520
|
+
* @type {Date}
|
|
7521
|
+
* @memberof UpdateBookingCommand
|
|
7522
|
+
*/
|
|
7523
|
+
'approximateDateEnd'?: Date;
|
|
7524
|
+
/**
|
|
7525
|
+
*
|
|
7526
|
+
* @type {string}
|
|
7527
|
+
* @memberof UpdateBookingCommand
|
|
7528
|
+
*/
|
|
7529
|
+
'comment'?: string | null;
|
|
7530
|
+
/**
|
|
7531
|
+
*
|
|
7532
|
+
* @type {string}
|
|
7533
|
+
* @memberof UpdateBookingCommand
|
|
7534
|
+
*/
|
|
7535
|
+
'timeZone'?: string | null;
|
|
7536
|
+
}
|
|
7537
|
+
/**
|
|
7538
|
+
*
|
|
7539
|
+
* @export
|
|
7540
|
+
* @interface UpdateChatUserCommand
|
|
7541
|
+
*/
|
|
7542
|
+
export interface UpdateChatUserCommand {
|
|
7543
|
+
/**
|
|
7544
|
+
*
|
|
7545
|
+
* @type {string}
|
|
7546
|
+
* @memberof UpdateChatUserCommand
|
|
7547
|
+
*/
|
|
7548
|
+
'nickname'?: string | null;
|
|
7549
|
+
/**
|
|
7550
|
+
*
|
|
7551
|
+
* @type {string}
|
|
7552
|
+
* @memberof UpdateChatUserCommand
|
|
7553
|
+
*/
|
|
7554
|
+
'profileUrl'?: string | null;
|
|
7555
|
+
/**
|
|
7556
|
+
*
|
|
7557
|
+
* @type {boolean}
|
|
7558
|
+
* @memberof UpdateChatUserCommand
|
|
7559
|
+
*/
|
|
7560
|
+
'issueAccessToken'?: boolean;
|
|
7561
|
+
/**
|
|
7562
|
+
*
|
|
7563
|
+
* @type {Array<string>}
|
|
7564
|
+
* @memberof UpdateChatUserCommand
|
|
7565
|
+
*/
|
|
7566
|
+
'discoveryKeys'?: Array<string> | null;
|
|
7567
|
+
}
|
|
7568
|
+
/**
|
|
7569
|
+
*
|
|
7570
|
+
* @export
|
|
7571
|
+
* @interface UpdateConsultationCommand
|
|
7572
|
+
*/
|
|
7573
|
+
export interface UpdateConsultationCommand {
|
|
7574
|
+
/**
|
|
7575
|
+
*
|
|
7576
|
+
* @type {string}
|
|
7577
|
+
* @memberof UpdateConsultationCommand
|
|
7578
|
+
*/
|
|
7579
|
+
'specialtyId'?: string | null;
|
|
7580
|
+
/**
|
|
7581
|
+
*
|
|
7582
|
+
* @type {string}
|
|
7583
|
+
* @memberof UpdateConsultationCommand
|
|
7584
|
+
*/
|
|
7585
|
+
'doctorId'?: string | null;
|
|
7586
|
+
/**
|
|
7587
|
+
*
|
|
7588
|
+
* @type {string}
|
|
7589
|
+
* @memberof UpdateConsultationCommand
|
|
7590
|
+
*/
|
|
7591
|
+
'language'?: string | null;
|
|
7592
|
+
/**
|
|
7593
|
+
*
|
|
7594
|
+
* @type {boolean}
|
|
7595
|
+
* @memberof UpdateConsultationCommand
|
|
7596
|
+
*/
|
|
7597
|
+
'isAccountHolder'?: boolean;
|
|
7598
|
+
/**
|
|
7599
|
+
*
|
|
7600
|
+
* @type {string}
|
|
7601
|
+
* @memberof UpdateConsultationCommand
|
|
7602
|
+
*/
|
|
7603
|
+
'firstName'?: string | null;
|
|
7604
|
+
/**
|
|
7605
|
+
*
|
|
7606
|
+
* @type {string}
|
|
7607
|
+
* @memberof UpdateConsultationCommand
|
|
7608
|
+
*/
|
|
7609
|
+
'lastName'?: string | null;
|
|
7610
|
+
/**
|
|
7611
|
+
*
|
|
7612
|
+
* @type {string}
|
|
7613
|
+
* @memberof UpdateConsultationCommand
|
|
7614
|
+
*/
|
|
7615
|
+
'email'?: string | null;
|
|
7616
|
+
/**
|
|
7617
|
+
*
|
|
7618
|
+
* @type {string}
|
|
7619
|
+
* @memberof UpdateConsultationCommand
|
|
7215
7620
|
*/
|
|
7216
|
-
'
|
|
7621
|
+
'phone'?: string | null;
|
|
7217
7622
|
/**
|
|
7218
7623
|
*
|
|
7219
|
-
* @type {
|
|
7220
|
-
* @memberof
|
|
7624
|
+
* @type {Date}
|
|
7625
|
+
* @memberof UpdateConsultationCommand
|
|
7221
7626
|
*/
|
|
7222
|
-
'
|
|
7223
|
-
}
|
|
7224
|
-
/**
|
|
7225
|
-
*
|
|
7226
|
-
* @export
|
|
7227
|
-
* @interface TagsModel
|
|
7228
|
-
*/
|
|
7229
|
-
export interface TagsModel {
|
|
7627
|
+
'dateOfBirth'?: Date | null;
|
|
7230
7628
|
/**
|
|
7231
7629
|
*
|
|
7232
|
-
* @type {
|
|
7233
|
-
* @memberof
|
|
7630
|
+
* @type {Gender}
|
|
7631
|
+
* @memberof UpdateConsultationCommand
|
|
7234
7632
|
*/
|
|
7235
|
-
'
|
|
7633
|
+
'gender'?: Gender;
|
|
7236
7634
|
/**
|
|
7237
7635
|
*
|
|
7238
|
-
* @type {
|
|
7239
|
-
* @memberof
|
|
7636
|
+
* @type {string}
|
|
7637
|
+
* @memberof UpdateConsultationCommand
|
|
7240
7638
|
*/
|
|
7241
|
-
'
|
|
7242
|
-
}
|
|
7243
|
-
/**
|
|
7244
|
-
*
|
|
7245
|
-
* @export
|
|
7246
|
-
* @interface UpdateChatUserCommand
|
|
7247
|
-
*/
|
|
7248
|
-
export interface UpdateChatUserCommand {
|
|
7639
|
+
'comment'?: string | null;
|
|
7249
7640
|
/**
|
|
7250
7641
|
*
|
|
7251
7642
|
* @type {string}
|
|
7252
|
-
* @memberof
|
|
7643
|
+
* @memberof UpdateConsultationCommand
|
|
7253
7644
|
*/
|
|
7254
|
-
'
|
|
7645
|
+
'timeRange'?: string | null;
|
|
7255
7646
|
/**
|
|
7256
7647
|
*
|
|
7257
|
-
* @type {
|
|
7258
|
-
* @memberof
|
|
7648
|
+
* @type {Date}
|
|
7649
|
+
* @memberof UpdateConsultationCommand
|
|
7259
7650
|
*/
|
|
7260
|
-
'
|
|
7651
|
+
'approximateDateStart'?: Date;
|
|
7261
7652
|
/**
|
|
7262
7653
|
*
|
|
7263
|
-
* @type {
|
|
7264
|
-
* @memberof
|
|
7654
|
+
* @type {Date}
|
|
7655
|
+
* @memberof UpdateConsultationCommand
|
|
7265
7656
|
*/
|
|
7266
|
-
'
|
|
7657
|
+
'approximateDateEnd'?: Date;
|
|
7267
7658
|
/**
|
|
7268
7659
|
*
|
|
7269
|
-
* @type {
|
|
7270
|
-
* @memberof
|
|
7660
|
+
* @type {string}
|
|
7661
|
+
* @memberof UpdateConsultationCommand
|
|
7271
7662
|
*/
|
|
7272
|
-
'
|
|
7663
|
+
'timeZone'?: string | null;
|
|
7273
7664
|
}
|
|
7274
7665
|
/**
|
|
7275
7666
|
*
|
|
@@ -8324,6 +8715,31 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8324
8715
|
* @throws {RequiredError}
|
|
8325
8716
|
*/
|
|
8326
8717
|
apiV2BookingsBookingIdGet: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8718
|
+
/**
|
|
8719
|
+
*
|
|
8720
|
+
* @summary Mark as Paid booking.
|
|
8721
|
+
* @param {string} bookingId
|
|
8722
|
+
* @param {*} [options] Override http request option.
|
|
8723
|
+
* @throws {RequiredError}
|
|
8724
|
+
*/
|
|
8725
|
+
apiV2BookingsBookingIdPaidPost: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8726
|
+
/**
|
|
8727
|
+
*
|
|
8728
|
+
* @summary Pay booking.
|
|
8729
|
+
* @param {string} bookingId
|
|
8730
|
+
* @param {*} [options] Override http request option.
|
|
8731
|
+
* @throws {RequiredError}
|
|
8732
|
+
*/
|
|
8733
|
+
apiV2BookingsBookingIdPayPost: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8734
|
+
/**
|
|
8735
|
+
*
|
|
8736
|
+
* @summary Update booking.
|
|
8737
|
+
* @param {string} bookingId
|
|
8738
|
+
* @param {UpdateBookingCommand} [updateBookingCommand]
|
|
8739
|
+
* @param {*} [options] Override http request option.
|
|
8740
|
+
* @throws {RequiredError}
|
|
8741
|
+
*/
|
|
8742
|
+
apiV2BookingsBookingIdPut: (bookingId: string, updateBookingCommand?: UpdateBookingCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8327
8743
|
/**
|
|
8328
8744
|
*
|
|
8329
8745
|
* @summary Reject booking.
|
|
@@ -8348,6 +8764,15 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8348
8764
|
* @throws {RequiredError}
|
|
8349
8765
|
*/
|
|
8350
8766
|
apiV2BookingsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8767
|
+
/**
|
|
8768
|
+
*
|
|
8769
|
+
* @summary Create booking.
|
|
8770
|
+
* @param {string} requestId
|
|
8771
|
+
* @param {CreateBookingCommand} [createBookingCommand]
|
|
8772
|
+
* @param {*} [options] Override http request option.
|
|
8773
|
+
* @throws {RequiredError}
|
|
8774
|
+
*/
|
|
8775
|
+
apiV2BookingsRequestIdPost: (requestId: string, createBookingCommand?: CreateBookingCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8351
8776
|
};
|
|
8352
8777
|
/**
|
|
8353
8778
|
* BookingsApi - functional programming interface
|
|
@@ -8387,6 +8812,31 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
8387
8812
|
* @throws {RequiredError}
|
|
8388
8813
|
*/
|
|
8389
8814
|
apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
|
|
8815
|
+
/**
|
|
8816
|
+
*
|
|
8817
|
+
* @summary Mark as Paid booking.
|
|
8818
|
+
* @param {string} bookingId
|
|
8819
|
+
* @param {*} [options] Override http request option.
|
|
8820
|
+
* @throws {RequiredError}
|
|
8821
|
+
*/
|
|
8822
|
+
apiV2BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
8823
|
+
/**
|
|
8824
|
+
*
|
|
8825
|
+
* @summary Pay booking.
|
|
8826
|
+
* @param {string} bookingId
|
|
8827
|
+
* @param {*} [options] Override http request option.
|
|
8828
|
+
* @throws {RequiredError}
|
|
8829
|
+
*/
|
|
8830
|
+
apiV2BookingsBookingIdPayPost(bookingId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
8831
|
+
/**
|
|
8832
|
+
*
|
|
8833
|
+
* @summary Update booking.
|
|
8834
|
+
* @param {string} bookingId
|
|
8835
|
+
* @param {UpdateBookingCommand} [updateBookingCommand]
|
|
8836
|
+
* @param {*} [options] Override http request option.
|
|
8837
|
+
* @throws {RequiredError}
|
|
8838
|
+
*/
|
|
8839
|
+
apiV2BookingsBookingIdPut(bookingId: string, updateBookingCommand?: UpdateBookingCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
|
|
8390
8840
|
/**
|
|
8391
8841
|
*
|
|
8392
8842
|
* @summary Reject booking.
|
|
@@ -8411,6 +8861,15 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
8411
8861
|
* @throws {RequiredError}
|
|
8412
8862
|
*/
|
|
8413
8863
|
apiV2BookingsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingsModel>>;
|
|
8864
|
+
/**
|
|
8865
|
+
*
|
|
8866
|
+
* @summary Create booking.
|
|
8867
|
+
* @param {string} requestId
|
|
8868
|
+
* @param {CreateBookingCommand} [createBookingCommand]
|
|
8869
|
+
* @param {*} [options] Override http request option.
|
|
8870
|
+
* @throws {RequiredError}
|
|
8871
|
+
*/
|
|
8872
|
+
apiV2BookingsRequestIdPost(requestId: string, createBookingCommand?: CreateBookingCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
|
|
8414
8873
|
};
|
|
8415
8874
|
/**
|
|
8416
8875
|
* BookingsApi - factory interface
|
|
@@ -8450,6 +8909,31 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
|
|
|
8450
8909
|
* @throws {RequiredError}
|
|
8451
8910
|
*/
|
|
8452
8911
|
apiV2BookingsBookingIdGet(bookingId: string, options?: any): AxiosPromise<BookingModel>;
|
|
8912
|
+
/**
|
|
8913
|
+
*
|
|
8914
|
+
* @summary Mark as Paid booking.
|
|
8915
|
+
* @param {string} bookingId
|
|
8916
|
+
* @param {*} [options] Override http request option.
|
|
8917
|
+
* @throws {RequiredError}
|
|
8918
|
+
*/
|
|
8919
|
+
apiV2BookingsBookingIdPaidPost(bookingId: string, options?: any): AxiosPromise<string>;
|
|
8920
|
+
/**
|
|
8921
|
+
*
|
|
8922
|
+
* @summary Pay booking.
|
|
8923
|
+
* @param {string} bookingId
|
|
8924
|
+
* @param {*} [options] Override http request option.
|
|
8925
|
+
* @throws {RequiredError}
|
|
8926
|
+
*/
|
|
8927
|
+
apiV2BookingsBookingIdPayPost(bookingId: string, options?: any): AxiosPromise<string>;
|
|
8928
|
+
/**
|
|
8929
|
+
*
|
|
8930
|
+
* @summary Update booking.
|
|
8931
|
+
* @param {string} bookingId
|
|
8932
|
+
* @param {UpdateBookingCommand} [updateBookingCommand]
|
|
8933
|
+
* @param {*} [options] Override http request option.
|
|
8934
|
+
* @throws {RequiredError}
|
|
8935
|
+
*/
|
|
8936
|
+
apiV2BookingsBookingIdPut(bookingId: string, updateBookingCommand?: UpdateBookingCommand | undefined, options?: any): AxiosPromise<BookingModel>;
|
|
8453
8937
|
/**
|
|
8454
8938
|
*
|
|
8455
8939
|
* @summary Reject booking.
|
|
@@ -8474,6 +8958,15 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
|
|
|
8474
8958
|
* @throws {RequiredError}
|
|
8475
8959
|
*/
|
|
8476
8960
|
apiV2BookingsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<BookingsModel>;
|
|
8961
|
+
/**
|
|
8962
|
+
*
|
|
8963
|
+
* @summary Create booking.
|
|
8964
|
+
* @param {string} requestId
|
|
8965
|
+
* @param {CreateBookingCommand} [createBookingCommand]
|
|
8966
|
+
* @param {*} [options] Override http request option.
|
|
8967
|
+
* @throws {RequiredError}
|
|
8968
|
+
*/
|
|
8969
|
+
apiV2BookingsRequestIdPost(requestId: string, createBookingCommand?: CreateBookingCommand | undefined, options?: any): AxiosPromise<BookingModel>;
|
|
8477
8970
|
};
|
|
8478
8971
|
/**
|
|
8479
8972
|
* BookingsApi - object-oriented interface
|
|
@@ -8519,6 +9012,34 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
8519
9012
|
* @memberof BookingsApi
|
|
8520
9013
|
*/
|
|
8521
9014
|
apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel>>;
|
|
9015
|
+
/**
|
|
9016
|
+
*
|
|
9017
|
+
* @summary Mark as Paid booking.
|
|
9018
|
+
* @param {string} bookingId
|
|
9019
|
+
* @param {*} [options] Override http request option.
|
|
9020
|
+
* @throws {RequiredError}
|
|
9021
|
+
* @memberof BookingsApi
|
|
9022
|
+
*/
|
|
9023
|
+
apiV2BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
9024
|
+
/**
|
|
9025
|
+
*
|
|
9026
|
+
* @summary Pay booking.
|
|
9027
|
+
* @param {string} bookingId
|
|
9028
|
+
* @param {*} [options] Override http request option.
|
|
9029
|
+
* @throws {RequiredError}
|
|
9030
|
+
* @memberof BookingsApi
|
|
9031
|
+
*/
|
|
9032
|
+
apiV2BookingsBookingIdPayPost(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
9033
|
+
/**
|
|
9034
|
+
*
|
|
9035
|
+
* @summary Update booking.
|
|
9036
|
+
* @param {string} bookingId
|
|
9037
|
+
* @param {UpdateBookingCommand} [updateBookingCommand]
|
|
9038
|
+
* @param {*} [options] Override http request option.
|
|
9039
|
+
* @throws {RequiredError}
|
|
9040
|
+
* @memberof BookingsApi
|
|
9041
|
+
*/
|
|
9042
|
+
apiV2BookingsBookingIdPut(bookingId: string, updateBookingCommand?: UpdateBookingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel>>;
|
|
8522
9043
|
/**
|
|
8523
9044
|
*
|
|
8524
9045
|
* @summary Reject booking.
|
|
@@ -8545,6 +9066,16 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
8545
9066
|
* @memberof BookingsApi
|
|
8546
9067
|
*/
|
|
8547
9068
|
apiV2BookingsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingsModel>>;
|
|
9069
|
+
/**
|
|
9070
|
+
*
|
|
9071
|
+
* @summary Create booking.
|
|
9072
|
+
* @param {string} requestId
|
|
9073
|
+
* @param {CreateBookingCommand} [createBookingCommand]
|
|
9074
|
+
* @param {*} [options] Override http request option.
|
|
9075
|
+
* @throws {RequiredError}
|
|
9076
|
+
* @memberof BookingsApi
|
|
9077
|
+
*/
|
|
9078
|
+
apiV2BookingsRequestIdPost(requestId: string, createBookingCommand?: CreateBookingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel>>;
|
|
8548
9079
|
}
|
|
8549
9080
|
/**
|
|
8550
9081
|
* ChatUsersApi - axios parameter creator
|
|
@@ -8933,6 +9464,23 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
8933
9464
|
* @throws {RequiredError}
|
|
8934
9465
|
*/
|
|
8935
9466
|
apiV2ConsultationsConsultationIdGet: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9467
|
+
/**
|
|
9468
|
+
*
|
|
9469
|
+
* @summary Pay consultation.
|
|
9470
|
+
* @param {string} consultationId
|
|
9471
|
+
* @param {*} [options] Override http request option.
|
|
9472
|
+
* @throws {RequiredError}
|
|
9473
|
+
*/
|
|
9474
|
+
apiV2ConsultationsConsultationIdPayPost: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9475
|
+
/**
|
|
9476
|
+
*
|
|
9477
|
+
* @summary Update consultation.
|
|
9478
|
+
* @param {string} consultationId
|
|
9479
|
+
* @param {UpdateConsultationCommand} [updateConsultationCommand]
|
|
9480
|
+
* @param {*} [options] Override http request option.
|
|
9481
|
+
* @throws {RequiredError}
|
|
9482
|
+
*/
|
|
9483
|
+
apiV2ConsultationsConsultationIdPut: (consultationId: string, updateConsultationCommand?: UpdateConsultationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8936
9484
|
/**
|
|
8937
9485
|
*
|
|
8938
9486
|
* @summary Reject consultation.
|
|
@@ -8957,6 +9505,15 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
8957
9505
|
* @throws {RequiredError}
|
|
8958
9506
|
*/
|
|
8959
9507
|
apiV2ConsultationsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9508
|
+
/**
|
|
9509
|
+
*
|
|
9510
|
+
* @summary Create consultation.
|
|
9511
|
+
* @param {string} requestId
|
|
9512
|
+
* @param {CreateConsultationCommand} [createConsultationCommand]
|
|
9513
|
+
* @param {*} [options] Override http request option.
|
|
9514
|
+
* @throws {RequiredError}
|
|
9515
|
+
*/
|
|
9516
|
+
apiV2ConsultationsRequestIdPost: (requestId: string, createConsultationCommand?: CreateConsultationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8960
9517
|
};
|
|
8961
9518
|
/**
|
|
8962
9519
|
* ConsultationsApi - functional programming interface
|
|
@@ -8996,6 +9553,23 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
8996
9553
|
* @throws {RequiredError}
|
|
8997
9554
|
*/
|
|
8998
9555
|
apiV2ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
|
|
9556
|
+
/**
|
|
9557
|
+
*
|
|
9558
|
+
* @summary Pay consultation.
|
|
9559
|
+
* @param {string} consultationId
|
|
9560
|
+
* @param {*} [options] Override http request option.
|
|
9561
|
+
* @throws {RequiredError}
|
|
9562
|
+
*/
|
|
9563
|
+
apiV2ConsultationsConsultationIdPayPost(consultationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
9564
|
+
/**
|
|
9565
|
+
*
|
|
9566
|
+
* @summary Update consultation.
|
|
9567
|
+
* @param {string} consultationId
|
|
9568
|
+
* @param {UpdateConsultationCommand} [updateConsultationCommand]
|
|
9569
|
+
* @param {*} [options] Override http request option.
|
|
9570
|
+
* @throws {RequiredError}
|
|
9571
|
+
*/
|
|
9572
|
+
apiV2ConsultationsConsultationIdPut(consultationId: string, updateConsultationCommand?: UpdateConsultationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
|
|
8999
9573
|
/**
|
|
9000
9574
|
*
|
|
9001
9575
|
* @summary Reject consultation.
|
|
@@ -9020,6 +9594,15 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
9020
9594
|
* @throws {RequiredError}
|
|
9021
9595
|
*/
|
|
9022
9596
|
apiV2ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationsModel>>;
|
|
9597
|
+
/**
|
|
9598
|
+
*
|
|
9599
|
+
* @summary Create consultation.
|
|
9600
|
+
* @param {string} requestId
|
|
9601
|
+
* @param {CreateConsultationCommand} [createConsultationCommand]
|
|
9602
|
+
* @param {*} [options] Override http request option.
|
|
9603
|
+
* @throws {RequiredError}
|
|
9604
|
+
*/
|
|
9605
|
+
apiV2ConsultationsRequestIdPost(requestId: string, createConsultationCommand?: CreateConsultationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
|
|
9023
9606
|
};
|
|
9024
9607
|
/**
|
|
9025
9608
|
* ConsultationsApi - factory interface
|
|
@@ -9059,6 +9642,23 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
|
|
|
9059
9642
|
* @throws {RequiredError}
|
|
9060
9643
|
*/
|
|
9061
9644
|
apiV2ConsultationsConsultationIdGet(consultationId: string, options?: any): AxiosPromise<ConsultationModel>;
|
|
9645
|
+
/**
|
|
9646
|
+
*
|
|
9647
|
+
* @summary Pay consultation.
|
|
9648
|
+
* @param {string} consultationId
|
|
9649
|
+
* @param {*} [options] Override http request option.
|
|
9650
|
+
* @throws {RequiredError}
|
|
9651
|
+
*/
|
|
9652
|
+
apiV2ConsultationsConsultationIdPayPost(consultationId: string, options?: any): AxiosPromise<string>;
|
|
9653
|
+
/**
|
|
9654
|
+
*
|
|
9655
|
+
* @summary Update consultation.
|
|
9656
|
+
* @param {string} consultationId
|
|
9657
|
+
* @param {UpdateConsultationCommand} [updateConsultationCommand]
|
|
9658
|
+
* @param {*} [options] Override http request option.
|
|
9659
|
+
* @throws {RequiredError}
|
|
9660
|
+
*/
|
|
9661
|
+
apiV2ConsultationsConsultationIdPut(consultationId: string, updateConsultationCommand?: UpdateConsultationCommand | undefined, options?: any): AxiosPromise<ConsultationModel>;
|
|
9062
9662
|
/**
|
|
9063
9663
|
*
|
|
9064
9664
|
* @summary Reject consultation.
|
|
@@ -9083,6 +9683,15 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
|
|
|
9083
9683
|
* @throws {RequiredError}
|
|
9084
9684
|
*/
|
|
9085
9685
|
apiV2ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ConsultationsModel>;
|
|
9686
|
+
/**
|
|
9687
|
+
*
|
|
9688
|
+
* @summary Create consultation.
|
|
9689
|
+
* @param {string} requestId
|
|
9690
|
+
* @param {CreateConsultationCommand} [createConsultationCommand]
|
|
9691
|
+
* @param {*} [options] Override http request option.
|
|
9692
|
+
* @throws {RequiredError}
|
|
9693
|
+
*/
|
|
9694
|
+
apiV2ConsultationsRequestIdPost(requestId: string, createConsultationCommand?: CreateConsultationCommand | undefined, options?: any): AxiosPromise<ConsultationModel>;
|
|
9086
9695
|
};
|
|
9087
9696
|
/**
|
|
9088
9697
|
* ConsultationsApi - object-oriented interface
|
|
@@ -9128,6 +9737,25 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
9128
9737
|
* @memberof ConsultationsApi
|
|
9129
9738
|
*/
|
|
9130
9739
|
apiV2ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel>>;
|
|
9740
|
+
/**
|
|
9741
|
+
*
|
|
9742
|
+
* @summary Pay consultation.
|
|
9743
|
+
* @param {string} consultationId
|
|
9744
|
+
* @param {*} [options] Override http request option.
|
|
9745
|
+
* @throws {RequiredError}
|
|
9746
|
+
* @memberof ConsultationsApi
|
|
9747
|
+
*/
|
|
9748
|
+
apiV2ConsultationsConsultationIdPayPost(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
9749
|
+
/**
|
|
9750
|
+
*
|
|
9751
|
+
* @summary Update consultation.
|
|
9752
|
+
* @param {string} consultationId
|
|
9753
|
+
* @param {UpdateConsultationCommand} [updateConsultationCommand]
|
|
9754
|
+
* @param {*} [options] Override http request option.
|
|
9755
|
+
* @throws {RequiredError}
|
|
9756
|
+
* @memberof ConsultationsApi
|
|
9757
|
+
*/
|
|
9758
|
+
apiV2ConsultationsConsultationIdPut(consultationId: string, updateConsultationCommand?: UpdateConsultationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel>>;
|
|
9131
9759
|
/**
|
|
9132
9760
|
*
|
|
9133
9761
|
* @summary Reject consultation.
|
|
@@ -9154,6 +9782,16 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
9154
9782
|
* @memberof ConsultationsApi
|
|
9155
9783
|
*/
|
|
9156
9784
|
apiV2ConsultationsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationsModel>>;
|
|
9785
|
+
/**
|
|
9786
|
+
*
|
|
9787
|
+
* @summary Create consultation.
|
|
9788
|
+
* @param {string} requestId
|
|
9789
|
+
* @param {CreateConsultationCommand} [createConsultationCommand]
|
|
9790
|
+
* @param {*} [options] Override http request option.
|
|
9791
|
+
* @throws {RequiredError}
|
|
9792
|
+
* @memberof ConsultationsApi
|
|
9793
|
+
*/
|
|
9794
|
+
apiV2ConsultationsRequestIdPost(requestId: string, createConsultationCommand?: CreateConsultationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel>>;
|
|
9157
9795
|
}
|
|
9158
9796
|
/**
|
|
9159
9797
|
* ContributorsApi - axios parameter creator
|
|
@@ -9698,10 +10336,12 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
9698
10336
|
*
|
|
9699
10337
|
* @summary Get deal.
|
|
9700
10338
|
* @param {string} dealId
|
|
10339
|
+
* @param {string} [languageCode]
|
|
10340
|
+
* @param {boolean} [returnDefaultValue]
|
|
9701
10341
|
* @param {*} [options] Override http request option.
|
|
9702
10342
|
* @throws {RequiredError}
|
|
9703
10343
|
*/
|
|
9704
|
-
apiV2DealsDealIdGet: (dealId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10344
|
+
apiV2DealsDealIdGet: (dealId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9705
10345
|
/**
|
|
9706
10346
|
*
|
|
9707
10347
|
* @summary Get all DealPackage.
|
|
@@ -9762,21 +10402,26 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
9762
10402
|
* @param {string} [exceptHospitalId]
|
|
9763
10403
|
* @param {string} [exceptDealId]
|
|
9764
10404
|
* @param {Array<string>} [ids]
|
|
10405
|
+
* @param {string} [languageCode]
|
|
10406
|
+
* @param {boolean} [showHidden]
|
|
10407
|
+
* @param {boolean} [returnDefaultValue]
|
|
9765
10408
|
* @param {number} [page]
|
|
9766
10409
|
* @param {number} [limit]
|
|
9767
10410
|
* @param {Date} [lastRetrieved]
|
|
9768
10411
|
* @param {*} [options] Override http request option.
|
|
9769
10412
|
* @throws {RequiredError}
|
|
9770
10413
|
*/
|
|
9771
|
-
apiV2DealsGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10414
|
+
apiV2DealsGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9772
10415
|
/**
|
|
9773
10416
|
*
|
|
9774
10417
|
* @summary Get deal by slug.
|
|
9775
10418
|
* @param {string} slug
|
|
10419
|
+
* @param {string} [languageCode]
|
|
10420
|
+
* @param {boolean} [returnDefaultValue]
|
|
9776
10421
|
* @param {*} [options] Override http request option.
|
|
9777
10422
|
* @throws {RequiredError}
|
|
9778
10423
|
*/
|
|
9779
|
-
apiV2DealsSlugGet: (slug: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10424
|
+
apiV2DealsSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9780
10425
|
};
|
|
9781
10426
|
/**
|
|
9782
10427
|
* DealsApi - functional programming interface
|
|
@@ -9787,10 +10432,12 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
9787
10432
|
*
|
|
9788
10433
|
* @summary Get deal.
|
|
9789
10434
|
* @param {string} dealId
|
|
10435
|
+
* @param {string} [languageCode]
|
|
10436
|
+
* @param {boolean} [returnDefaultValue]
|
|
9790
10437
|
* @param {*} [options] Override http request option.
|
|
9791
10438
|
* @throws {RequiredError}
|
|
9792
10439
|
*/
|
|
9793
|
-
apiV2DealsDealIdGet(dealId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
|
|
10440
|
+
apiV2DealsDealIdGet(dealId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
|
|
9794
10441
|
/**
|
|
9795
10442
|
*
|
|
9796
10443
|
* @summary Get all DealPackage.
|
|
@@ -9851,21 +10498,26 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
9851
10498
|
* @param {string} [exceptHospitalId]
|
|
9852
10499
|
* @param {string} [exceptDealId]
|
|
9853
10500
|
* @param {Array<string>} [ids]
|
|
10501
|
+
* @param {string} [languageCode]
|
|
10502
|
+
* @param {boolean} [showHidden]
|
|
10503
|
+
* @param {boolean} [returnDefaultValue]
|
|
9854
10504
|
* @param {number} [page]
|
|
9855
10505
|
* @param {number} [limit]
|
|
9856
10506
|
* @param {Date} [lastRetrieved]
|
|
9857
10507
|
* @param {*} [options] Override http request option.
|
|
9858
10508
|
* @throws {RequiredError}
|
|
9859
10509
|
*/
|
|
9860
|
-
apiV2DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsModel>>;
|
|
10510
|
+
apiV2DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsModel>>;
|
|
9861
10511
|
/**
|
|
9862
10512
|
*
|
|
9863
10513
|
* @summary Get deal by slug.
|
|
9864
10514
|
* @param {string} slug
|
|
10515
|
+
* @param {string} [languageCode]
|
|
10516
|
+
* @param {boolean} [returnDefaultValue]
|
|
9865
10517
|
* @param {*} [options] Override http request option.
|
|
9866
10518
|
* @throws {RequiredError}
|
|
9867
10519
|
*/
|
|
9868
|
-
apiV2DealsSlugGet(slug: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
|
|
10520
|
+
apiV2DealsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
|
|
9869
10521
|
};
|
|
9870
10522
|
/**
|
|
9871
10523
|
* DealsApi - factory interface
|
|
@@ -9876,10 +10528,12 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
9876
10528
|
*
|
|
9877
10529
|
* @summary Get deal.
|
|
9878
10530
|
* @param {string} dealId
|
|
10531
|
+
* @param {string} [languageCode]
|
|
10532
|
+
* @param {boolean} [returnDefaultValue]
|
|
9879
10533
|
* @param {*} [options] Override http request option.
|
|
9880
10534
|
* @throws {RequiredError}
|
|
9881
10535
|
*/
|
|
9882
|
-
apiV2DealsDealIdGet(dealId: string, options?: any): AxiosPromise<DealModel>;
|
|
10536
|
+
apiV2DealsDealIdGet(dealId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DealModel>;
|
|
9883
10537
|
/**
|
|
9884
10538
|
*
|
|
9885
10539
|
* @summary Get all DealPackage.
|
|
@@ -9940,21 +10594,26 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
9940
10594
|
* @param {string} [exceptHospitalId]
|
|
9941
10595
|
* @param {string} [exceptDealId]
|
|
9942
10596
|
* @param {Array<string>} [ids]
|
|
10597
|
+
* @param {string} [languageCode]
|
|
10598
|
+
* @param {boolean} [showHidden]
|
|
10599
|
+
* @param {boolean} [returnDefaultValue]
|
|
9943
10600
|
* @param {number} [page]
|
|
9944
10601
|
* @param {number} [limit]
|
|
9945
10602
|
* @param {Date} [lastRetrieved]
|
|
9946
10603
|
* @param {*} [options] Override http request option.
|
|
9947
10604
|
* @throws {RequiredError}
|
|
9948
10605
|
*/
|
|
9949
|
-
apiV2DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
|
|
10606
|
+
apiV2DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
|
|
9950
10607
|
/**
|
|
9951
10608
|
*
|
|
9952
10609
|
* @summary Get deal by slug.
|
|
9953
10610
|
* @param {string} slug
|
|
10611
|
+
* @param {string} [languageCode]
|
|
10612
|
+
* @param {boolean} [returnDefaultValue]
|
|
9954
10613
|
* @param {*} [options] Override http request option.
|
|
9955
10614
|
* @throws {RequiredError}
|
|
9956
10615
|
*/
|
|
9957
|
-
apiV2DealsSlugGet(slug: string, options?: any): AxiosPromise<DealModel>;
|
|
10616
|
+
apiV2DealsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DealModel>;
|
|
9958
10617
|
};
|
|
9959
10618
|
/**
|
|
9960
10619
|
* DealsApi - object-oriented interface
|
|
@@ -9967,11 +10626,13 @@ export declare class DealsApi extends BaseAPI {
|
|
|
9967
10626
|
*
|
|
9968
10627
|
* @summary Get deal.
|
|
9969
10628
|
* @param {string} dealId
|
|
10629
|
+
* @param {string} [languageCode]
|
|
10630
|
+
* @param {boolean} [returnDefaultValue]
|
|
9970
10631
|
* @param {*} [options] Override http request option.
|
|
9971
10632
|
* @throws {RequiredError}
|
|
9972
10633
|
* @memberof DealsApi
|
|
9973
10634
|
*/
|
|
9974
|
-
apiV2DealsDealIdGet(dealId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
|
|
10635
|
+
apiV2DealsDealIdGet(dealId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
|
|
9975
10636
|
/**
|
|
9976
10637
|
*
|
|
9977
10638
|
* @summary Get all DealPackage.
|
|
@@ -10036,6 +10697,9 @@ export declare class DealsApi extends BaseAPI {
|
|
|
10036
10697
|
* @param {string} [exceptHospitalId]
|
|
10037
10698
|
* @param {string} [exceptDealId]
|
|
10038
10699
|
* @param {Array<string>} [ids]
|
|
10700
|
+
* @param {string} [languageCode]
|
|
10701
|
+
* @param {boolean} [showHidden]
|
|
10702
|
+
* @param {boolean} [returnDefaultValue]
|
|
10039
10703
|
* @param {number} [page]
|
|
10040
10704
|
* @param {number} [limit]
|
|
10041
10705
|
* @param {Date} [lastRetrieved]
|
|
@@ -10043,16 +10707,18 @@ export declare class DealsApi extends BaseAPI {
|
|
|
10043
10707
|
* @throws {RequiredError}
|
|
10044
10708
|
* @memberof DealsApi
|
|
10045
10709
|
*/
|
|
10046
|
-
apiV2DealsGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel>>;
|
|
10710
|
+
apiV2DealsGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel>>;
|
|
10047
10711
|
/**
|
|
10048
10712
|
*
|
|
10049
10713
|
* @summary Get deal by slug.
|
|
10050
10714
|
* @param {string} slug
|
|
10715
|
+
* @param {string} [languageCode]
|
|
10716
|
+
* @param {boolean} [returnDefaultValue]
|
|
10051
10717
|
* @param {*} [options] Override http request option.
|
|
10052
10718
|
* @throws {RequiredError}
|
|
10053
10719
|
* @memberof DealsApi
|
|
10054
10720
|
*/
|
|
10055
|
-
apiV2DealsSlugGet(slug: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
|
|
10721
|
+
apiV2DealsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
|
|
10056
10722
|
}
|
|
10057
10723
|
/**
|
|
10058
10724
|
* DoctorsApi - axios parameter creator
|
|
@@ -13609,23 +14275,21 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
|
|
|
13609
14275
|
* @param {string} [id]
|
|
13610
14276
|
* @param {string} [name]
|
|
13611
14277
|
* @param {string} [description]
|
|
13612
|
-
* @param {string} [languageCode]
|
|
13613
14278
|
* @param {number} [page]
|
|
13614
14279
|
* @param {number} [limit]
|
|
13615
14280
|
* @param {Date} [lastRetrieved]
|
|
13616
14281
|
* @param {*} [options] Override http request option.
|
|
13617
14282
|
* @throws {RequiredError}
|
|
13618
14283
|
*/
|
|
13619
|
-
apiV2ServicescategoriesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined,
|
|
14284
|
+
apiV2ServicescategoriesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13620
14285
|
/**
|
|
13621
14286
|
*
|
|
13622
14287
|
* @summary Get ServiceCategory.
|
|
13623
14288
|
* @param {string} serviceCategoryId
|
|
13624
|
-
* @param {string} [languageCode]
|
|
13625
14289
|
* @param {*} [options] Override http request option.
|
|
13626
14290
|
* @throws {RequiredError}
|
|
13627
14291
|
*/
|
|
13628
|
-
apiV2ServicescategoriesServiceCategoryIdGet: (serviceCategoryId: string,
|
|
14292
|
+
apiV2ServicescategoriesServiceCategoryIdGet: (serviceCategoryId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13629
14293
|
};
|
|
13630
14294
|
/**
|
|
13631
14295
|
* ServicesCategoriesApi - functional programming interface
|
|
@@ -13638,23 +14302,21 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
|
|
|
13638
14302
|
* @param {string} [id]
|
|
13639
14303
|
* @param {string} [name]
|
|
13640
14304
|
* @param {string} [description]
|
|
13641
|
-
* @param {string} [languageCode]
|
|
13642
14305
|
* @param {number} [page]
|
|
13643
14306
|
* @param {number} [limit]
|
|
13644
14307
|
* @param {Date} [lastRetrieved]
|
|
13645
14308
|
* @param {*} [options] Override http request option.
|
|
13646
14309
|
* @throws {RequiredError}
|
|
13647
14310
|
*/
|
|
13648
|
-
apiV2ServicescategoriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined,
|
|
14311
|
+
apiV2ServicescategoriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoriesModel>>;
|
|
13649
14312
|
/**
|
|
13650
14313
|
*
|
|
13651
14314
|
* @summary Get ServiceCategory.
|
|
13652
14315
|
* @param {string} serviceCategoryId
|
|
13653
|
-
* @param {string} [languageCode]
|
|
13654
14316
|
* @param {*} [options] Override http request option.
|
|
13655
14317
|
* @throws {RequiredError}
|
|
13656
14318
|
*/
|
|
13657
|
-
apiV2ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string,
|
|
14319
|
+
apiV2ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoryModel>>;
|
|
13658
14320
|
};
|
|
13659
14321
|
/**
|
|
13660
14322
|
* ServicesCategoriesApi - factory interface
|
|
@@ -13667,23 +14329,21 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
|
|
|
13667
14329
|
* @param {string} [id]
|
|
13668
14330
|
* @param {string} [name]
|
|
13669
14331
|
* @param {string} [description]
|
|
13670
|
-
* @param {string} [languageCode]
|
|
13671
14332
|
* @param {number} [page]
|
|
13672
14333
|
* @param {number} [limit]
|
|
13673
14334
|
* @param {Date} [lastRetrieved]
|
|
13674
14335
|
* @param {*} [options] Override http request option.
|
|
13675
14336
|
* @throws {RequiredError}
|
|
13676
14337
|
*/
|
|
13677
|
-
apiV2ServicescategoriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined,
|
|
14338
|
+
apiV2ServicescategoriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceCategoriesModel>;
|
|
13678
14339
|
/**
|
|
13679
14340
|
*
|
|
13680
14341
|
* @summary Get ServiceCategory.
|
|
13681
14342
|
* @param {string} serviceCategoryId
|
|
13682
|
-
* @param {string} [languageCode]
|
|
13683
14343
|
* @param {*} [options] Override http request option.
|
|
13684
14344
|
* @throws {RequiredError}
|
|
13685
14345
|
*/
|
|
13686
|
-
apiV2ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string,
|
|
14346
|
+
apiV2ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, options?: any): AxiosPromise<ServiceCategoryModel>;
|
|
13687
14347
|
};
|
|
13688
14348
|
/**
|
|
13689
14349
|
* ServicesCategoriesApi - object-oriented interface
|
|
@@ -13698,7 +14358,6 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
13698
14358
|
* @param {string} [id]
|
|
13699
14359
|
* @param {string} [name]
|
|
13700
14360
|
* @param {string} [description]
|
|
13701
|
-
* @param {string} [languageCode]
|
|
13702
14361
|
* @param {number} [page]
|
|
13703
14362
|
* @param {number} [limit]
|
|
13704
14363
|
* @param {Date} [lastRetrieved]
|
|
@@ -13706,17 +14365,16 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
13706
14365
|
* @throws {RequiredError}
|
|
13707
14366
|
* @memberof ServicesCategoriesApi
|
|
13708
14367
|
*/
|
|
13709
|
-
apiV2ServicescategoriesGet(id?: string, name?: string, description?: string,
|
|
14368
|
+
apiV2ServicescategoriesGet(id?: string, name?: string, description?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoriesModel>>;
|
|
13710
14369
|
/**
|
|
13711
14370
|
*
|
|
13712
14371
|
* @summary Get ServiceCategory.
|
|
13713
14372
|
* @param {string} serviceCategoryId
|
|
13714
|
-
* @param {string} [languageCode]
|
|
13715
14373
|
* @param {*} [options] Override http request option.
|
|
13716
14374
|
* @throws {RequiredError}
|
|
13717
14375
|
* @memberof ServicesCategoriesApi
|
|
13718
14376
|
*/
|
|
13719
|
-
apiV2ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string,
|
|
14377
|
+
apiV2ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoryModel>>;
|
|
13720
14378
|
}
|
|
13721
14379
|
/**
|
|
13722
14380
|
* SpecialtiesApi - axios parameter creator
|