ch-api-client-typescript2 4.8.3 → 4.8.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 +282 -71
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +361 -2
- package/package.json +1 -1
- package/src/api.ts +443 -71
package/lib/api.d.ts
CHANGED
|
@@ -2738,6 +2738,24 @@ export interface CountryItemModel {
|
|
|
2738
2738
|
* @memberof CountryItemModel
|
|
2739
2739
|
*/
|
|
2740
2740
|
'languageCode'?: string | null;
|
|
2741
|
+
/**
|
|
2742
|
+
*
|
|
2743
|
+
* @type {number}
|
|
2744
|
+
* @memberof CountryItemModel
|
|
2745
|
+
*/
|
|
2746
|
+
'hospitalsCount'?: number;
|
|
2747
|
+
/**
|
|
2748
|
+
*
|
|
2749
|
+
* @type {number}
|
|
2750
|
+
* @memberof CountryItemModel
|
|
2751
|
+
*/
|
|
2752
|
+
'doctorsCount'?: number;
|
|
2753
|
+
/**
|
|
2754
|
+
*
|
|
2755
|
+
* @type {number}
|
|
2756
|
+
* @memberof CountryItemModel
|
|
2757
|
+
*/
|
|
2758
|
+
'dealsCount'?: number;
|
|
2741
2759
|
/**
|
|
2742
2760
|
*
|
|
2743
2761
|
* @type {string}
|
|
@@ -2750,6 +2768,12 @@ export interface CountryItemModel {
|
|
|
2750
2768
|
* @memberof CountryItemModel
|
|
2751
2769
|
*/
|
|
2752
2770
|
'slug'?: string | null;
|
|
2771
|
+
/**
|
|
2772
|
+
*
|
|
2773
|
+
* @type {string}
|
|
2774
|
+
* @memberof CountryItemModel
|
|
2775
|
+
*/
|
|
2776
|
+
'description'?: string | null;
|
|
2753
2777
|
/**
|
|
2754
2778
|
*
|
|
2755
2779
|
* @type {boolean}
|
|
@@ -2793,6 +2817,24 @@ export interface CountryModel {
|
|
|
2793
2817
|
* @memberof CountryModel
|
|
2794
2818
|
*/
|
|
2795
2819
|
'languageCode'?: string | null;
|
|
2820
|
+
/**
|
|
2821
|
+
*
|
|
2822
|
+
* @type {number}
|
|
2823
|
+
* @memberof CountryModel
|
|
2824
|
+
*/
|
|
2825
|
+
'hospitalsCount'?: number;
|
|
2826
|
+
/**
|
|
2827
|
+
*
|
|
2828
|
+
* @type {number}
|
|
2829
|
+
* @memberof CountryModel
|
|
2830
|
+
*/
|
|
2831
|
+
'doctorsCount'?: number;
|
|
2832
|
+
/**
|
|
2833
|
+
*
|
|
2834
|
+
* @type {number}
|
|
2835
|
+
* @memberof CountryModel
|
|
2836
|
+
*/
|
|
2837
|
+
'dealsCount'?: number;
|
|
2796
2838
|
/**
|
|
2797
2839
|
*
|
|
2798
2840
|
* @type {string}
|
|
@@ -2805,6 +2847,12 @@ export interface CountryModel {
|
|
|
2805
2847
|
* @memberof CountryModel
|
|
2806
2848
|
*/
|
|
2807
2849
|
'slug'?: string | null;
|
|
2850
|
+
/**
|
|
2851
|
+
*
|
|
2852
|
+
* @type {string}
|
|
2853
|
+
* @memberof CountryModel
|
|
2854
|
+
*/
|
|
2855
|
+
'description'?: string | null;
|
|
2808
2856
|
/**
|
|
2809
2857
|
*
|
|
2810
2858
|
* @type {boolean}
|
|
@@ -2829,12 +2877,6 @@ export interface CountryModel {
|
|
|
2829
2877
|
* @memberof CountryModel
|
|
2830
2878
|
*/
|
|
2831
2879
|
'auditableEntity'?: AuditableEntity;
|
|
2832
|
-
/**
|
|
2833
|
-
*
|
|
2834
|
-
* @type {string}
|
|
2835
|
-
* @memberof CountryModel
|
|
2836
|
-
*/
|
|
2837
|
-
'description'?: string | null;
|
|
2838
2880
|
/**
|
|
2839
2881
|
*
|
|
2840
2882
|
* @type {string}
|
|
@@ -3109,6 +3151,19 @@ export interface CreateConsultationCommand {
|
|
|
3109
3151
|
*/
|
|
3110
3152
|
'isExternal'?: boolean;
|
|
3111
3153
|
}
|
|
3154
|
+
/**
|
|
3155
|
+
*
|
|
3156
|
+
* @export
|
|
3157
|
+
* @interface CreateCorsCommand
|
|
3158
|
+
*/
|
|
3159
|
+
export interface CreateCorsCommand {
|
|
3160
|
+
/**
|
|
3161
|
+
*
|
|
3162
|
+
* @type {string}
|
|
3163
|
+
* @memberof CreateCorsCommand
|
|
3164
|
+
*/
|
|
3165
|
+
'url'?: string | null;
|
|
3166
|
+
}
|
|
3112
3167
|
/**
|
|
3113
3168
|
*
|
|
3114
3169
|
* @export
|
|
@@ -6674,6 +6729,12 @@ export interface HospitalServiceItemModel {
|
|
|
6674
6729
|
* @memberof HospitalServiceItemModel
|
|
6675
6730
|
*/
|
|
6676
6731
|
'slug'?: string | null;
|
|
6732
|
+
/**
|
|
6733
|
+
*
|
|
6734
|
+
* @type {string}
|
|
6735
|
+
* @memberof HospitalServiceItemModel
|
|
6736
|
+
*/
|
|
6737
|
+
'description'?: string | null;
|
|
6677
6738
|
/**
|
|
6678
6739
|
*
|
|
6679
6740
|
* @type {boolean}
|
|
@@ -6777,6 +6838,12 @@ export interface HospitalServiceModel {
|
|
|
6777
6838
|
* @memberof HospitalServiceModel
|
|
6778
6839
|
*/
|
|
6779
6840
|
'slug'?: string | null;
|
|
6841
|
+
/**
|
|
6842
|
+
*
|
|
6843
|
+
* @type {string}
|
|
6844
|
+
* @memberof HospitalServiceModel
|
|
6845
|
+
*/
|
|
6846
|
+
'description'?: string | null;
|
|
6780
6847
|
/**
|
|
6781
6848
|
*
|
|
6782
6849
|
* @type {boolean}
|
|
@@ -6849,12 +6916,6 @@ export interface HospitalServiceModel {
|
|
|
6849
6916
|
* @memberof HospitalServiceModel
|
|
6850
6917
|
*/
|
|
6851
6918
|
'auditableEntity'?: AuditableEntity;
|
|
6852
|
-
/**
|
|
6853
|
-
*
|
|
6854
|
-
* @type {string}
|
|
6855
|
-
* @memberof HospitalServiceModel
|
|
6856
|
-
*/
|
|
6857
|
-
'description'?: string | null;
|
|
6858
6919
|
/**
|
|
6859
6920
|
*
|
|
6860
6921
|
* @type {string}
|
|
@@ -9500,6 +9561,12 @@ export interface SpecialtyItemModel {
|
|
|
9500
9561
|
* @memberof SpecialtyItemModel
|
|
9501
9562
|
*/
|
|
9502
9563
|
'slug'?: string | null;
|
|
9564
|
+
/**
|
|
9565
|
+
*
|
|
9566
|
+
* @type {string}
|
|
9567
|
+
* @memberof SpecialtyItemModel
|
|
9568
|
+
*/
|
|
9569
|
+
'description'?: string | null;
|
|
9503
9570
|
/**
|
|
9504
9571
|
*
|
|
9505
9572
|
* @type {boolean}
|
|
@@ -9634,6 +9701,12 @@ export interface SpecialtyModel {
|
|
|
9634
9701
|
* @memberof SpecialtyModel
|
|
9635
9702
|
*/
|
|
9636
9703
|
'slug'?: string | null;
|
|
9704
|
+
/**
|
|
9705
|
+
*
|
|
9706
|
+
* @type {string}
|
|
9707
|
+
* @memberof SpecialtyModel
|
|
9708
|
+
*/
|
|
9709
|
+
'description'?: string | null;
|
|
9637
9710
|
/**
|
|
9638
9711
|
*
|
|
9639
9712
|
* @type {boolean}
|
|
@@ -9694,12 +9767,6 @@ export interface SpecialtyModel {
|
|
|
9694
9767
|
* @memberof SpecialtyModel
|
|
9695
9768
|
*/
|
|
9696
9769
|
'auditableEntity'?: AuditableEntity;
|
|
9697
|
-
/**
|
|
9698
|
-
*
|
|
9699
|
-
* @type {string}
|
|
9700
|
-
* @memberof SpecialtyModel
|
|
9701
|
-
*/
|
|
9702
|
-
'description'?: string | null;
|
|
9703
9770
|
/**
|
|
9704
9771
|
*
|
|
9705
9772
|
* @type {string}
|
|
@@ -9745,10 +9812,10 @@ export interface SpecialtyTypeItemModel {
|
|
|
9745
9812
|
'languageCode'?: string | null;
|
|
9746
9813
|
/**
|
|
9747
9814
|
*
|
|
9748
|
-
* @type {Array<
|
|
9815
|
+
* @type {Array<TranslationSimpleWithDescriptionModel>}
|
|
9749
9816
|
* @memberof SpecialtyTypeItemModel
|
|
9750
9817
|
*/
|
|
9751
|
-
'simpleTranslations'?: Array<
|
|
9818
|
+
'simpleTranslations'?: Array<TranslationSimpleWithDescriptionModel> | null;
|
|
9752
9819
|
/**
|
|
9753
9820
|
*
|
|
9754
9821
|
* @type {string}
|
|
@@ -9842,10 +9909,10 @@ export interface SpecialtyTypeModel {
|
|
|
9842
9909
|
'languageCode'?: string | null;
|
|
9843
9910
|
/**
|
|
9844
9911
|
*
|
|
9845
|
-
* @type {Array<
|
|
9912
|
+
* @type {Array<TranslationSimpleWithDescriptionModel>}
|
|
9846
9913
|
* @memberof SpecialtyTypeModel
|
|
9847
9914
|
*/
|
|
9848
|
-
'simpleTranslations'?: Array<
|
|
9915
|
+
'simpleTranslations'?: Array<TranslationSimpleWithDescriptionModel> | null;
|
|
9849
9916
|
/**
|
|
9850
9917
|
*
|
|
9851
9918
|
* @type {string}
|
|
@@ -9924,6 +9991,12 @@ export interface SpecialtyTypeModel {
|
|
|
9924
9991
|
* @memberof SpecialtyTypeModel
|
|
9925
9992
|
*/
|
|
9926
9993
|
'content'?: string | null;
|
|
9994
|
+
/**
|
|
9995
|
+
*
|
|
9996
|
+
* @type {string}
|
|
9997
|
+
* @memberof SpecialtyTypeModel
|
|
9998
|
+
*/
|
|
9999
|
+
'overview'?: string | null;
|
|
9927
10000
|
/**
|
|
9928
10001
|
*
|
|
9929
10002
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -9974,55 +10047,6 @@ export interface SpecialtyTypeSimpleItemModel {
|
|
|
9974
10047
|
*/
|
|
9975
10048
|
'confirmed'?: boolean;
|
|
9976
10049
|
}
|
|
9977
|
-
/**
|
|
9978
|
-
*
|
|
9979
|
-
* @export
|
|
9980
|
-
* @interface SpecialtyTypeTranslationSimpleModel
|
|
9981
|
-
*/
|
|
9982
|
-
export interface SpecialtyTypeTranslationSimpleModel {
|
|
9983
|
-
/**
|
|
9984
|
-
*
|
|
9985
|
-
* @type {string}
|
|
9986
|
-
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
9987
|
-
*/
|
|
9988
|
-
'languageCode'?: string | null;
|
|
9989
|
-
/**
|
|
9990
|
-
*
|
|
9991
|
-
* @type {string}
|
|
9992
|
-
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
9993
|
-
*/
|
|
9994
|
-
'name'?: string | null;
|
|
9995
|
-
/**
|
|
9996
|
-
*
|
|
9997
|
-
* @type {string}
|
|
9998
|
-
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
9999
|
-
*/
|
|
10000
|
-
'normalizedName'?: string | null;
|
|
10001
|
-
/**
|
|
10002
|
-
*
|
|
10003
|
-
* @type {string}
|
|
10004
|
-
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
10005
|
-
*/
|
|
10006
|
-
'slug'?: string | null;
|
|
10007
|
-
/**
|
|
10008
|
-
*
|
|
10009
|
-
* @type {Date}
|
|
10010
|
-
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
10011
|
-
*/
|
|
10012
|
-
'updatedDate'?: Date | null;
|
|
10013
|
-
/**
|
|
10014
|
-
*
|
|
10015
|
-
* @type {boolean}
|
|
10016
|
-
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
10017
|
-
*/
|
|
10018
|
-
'isConfirmed'?: boolean;
|
|
10019
|
-
/**
|
|
10020
|
-
*
|
|
10021
|
-
* @type {string}
|
|
10022
|
-
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
10023
|
-
*/
|
|
10024
|
-
'description'?: string | null;
|
|
10025
|
-
}
|
|
10026
10050
|
/**
|
|
10027
10051
|
*
|
|
10028
10052
|
* @export
|
|
@@ -10485,6 +10509,55 @@ export interface TranslationSimpleModel {
|
|
|
10485
10509
|
*/
|
|
10486
10510
|
'isConfirmed'?: boolean;
|
|
10487
10511
|
}
|
|
10512
|
+
/**
|
|
10513
|
+
*
|
|
10514
|
+
* @export
|
|
10515
|
+
* @interface TranslationSimpleWithDescriptionModel
|
|
10516
|
+
*/
|
|
10517
|
+
export interface TranslationSimpleWithDescriptionModel {
|
|
10518
|
+
/**
|
|
10519
|
+
*
|
|
10520
|
+
* @type {string}
|
|
10521
|
+
* @memberof TranslationSimpleWithDescriptionModel
|
|
10522
|
+
*/
|
|
10523
|
+
'languageCode'?: string | null;
|
|
10524
|
+
/**
|
|
10525
|
+
*
|
|
10526
|
+
* @type {string}
|
|
10527
|
+
* @memberof TranslationSimpleWithDescriptionModel
|
|
10528
|
+
*/
|
|
10529
|
+
'name'?: string | null;
|
|
10530
|
+
/**
|
|
10531
|
+
*
|
|
10532
|
+
* @type {string}
|
|
10533
|
+
* @memberof TranslationSimpleWithDescriptionModel
|
|
10534
|
+
*/
|
|
10535
|
+
'normalizedName'?: string | null;
|
|
10536
|
+
/**
|
|
10537
|
+
*
|
|
10538
|
+
* @type {string}
|
|
10539
|
+
* @memberof TranslationSimpleWithDescriptionModel
|
|
10540
|
+
*/
|
|
10541
|
+
'slug'?: string | null;
|
|
10542
|
+
/**
|
|
10543
|
+
*
|
|
10544
|
+
* @type {Date}
|
|
10545
|
+
* @memberof TranslationSimpleWithDescriptionModel
|
|
10546
|
+
*/
|
|
10547
|
+
'updatedDate'?: Date | null;
|
|
10548
|
+
/**
|
|
10549
|
+
*
|
|
10550
|
+
* @type {boolean}
|
|
10551
|
+
* @memberof TranslationSimpleWithDescriptionModel
|
|
10552
|
+
*/
|
|
10553
|
+
'isConfirmed'?: boolean;
|
|
10554
|
+
/**
|
|
10555
|
+
*
|
|
10556
|
+
* @type {string}
|
|
10557
|
+
* @memberof TranslationSimpleWithDescriptionModel
|
|
10558
|
+
*/
|
|
10559
|
+
'description'?: string | null;
|
|
10560
|
+
}
|
|
10488
10561
|
/**
|
|
10489
10562
|
*
|
|
10490
10563
|
* @export
|
|
@@ -18637,6 +18710,144 @@ export declare class NotificationsApi extends BaseAPI {
|
|
|
18637
18710
|
*/
|
|
18638
18711
|
apiV2NotificationsGet(notificationCode?: NotificationCode, unreadCountOnly?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NotificationsModel, any>>;
|
|
18639
18712
|
}
|
|
18713
|
+
/**
|
|
18714
|
+
* OriginsApi - axios parameter creator
|
|
18715
|
+
* @export
|
|
18716
|
+
*/
|
|
18717
|
+
export declare const OriginsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
18718
|
+
/**
|
|
18719
|
+
*
|
|
18720
|
+
* @param {*} [options] Override http request option.
|
|
18721
|
+
* @throws {RequiredError}
|
|
18722
|
+
*/
|
|
18723
|
+
apiV2OriginsGet: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18724
|
+
/**
|
|
18725
|
+
*
|
|
18726
|
+
* @param {CreateCorsCommand} [createCorsCommand]
|
|
18727
|
+
* @param {*} [options] Override http request option.
|
|
18728
|
+
* @throws {RequiredError}
|
|
18729
|
+
*/
|
|
18730
|
+
apiV2OriginsPost: (createCorsCommand?: CreateCorsCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18731
|
+
/**
|
|
18732
|
+
*
|
|
18733
|
+
* @param {CreateCorsCommand} [createCorsCommand]
|
|
18734
|
+
* @param {*} [options] Override http request option.
|
|
18735
|
+
* @throws {RequiredError}
|
|
18736
|
+
*/
|
|
18737
|
+
apiV2OriginsPut: (createCorsCommand?: CreateCorsCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18738
|
+
/**
|
|
18739
|
+
*
|
|
18740
|
+
* @param {string} url
|
|
18741
|
+
* @param {*} [options] Override http request option.
|
|
18742
|
+
* @throws {RequiredError}
|
|
18743
|
+
*/
|
|
18744
|
+
apiV2OriginsUrlGet: (url: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18745
|
+
};
|
|
18746
|
+
/**
|
|
18747
|
+
* OriginsApi - functional programming interface
|
|
18748
|
+
* @export
|
|
18749
|
+
*/
|
|
18750
|
+
export declare const OriginsApiFp: (configuration?: Configuration) => {
|
|
18751
|
+
/**
|
|
18752
|
+
*
|
|
18753
|
+
* @param {*} [options] Override http request option.
|
|
18754
|
+
* @throws {RequiredError}
|
|
18755
|
+
*/
|
|
18756
|
+
apiV2OriginsGet(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
|
|
18757
|
+
/**
|
|
18758
|
+
*
|
|
18759
|
+
* @param {CreateCorsCommand} [createCorsCommand]
|
|
18760
|
+
* @param {*} [options] Override http request option.
|
|
18761
|
+
* @throws {RequiredError}
|
|
18762
|
+
*/
|
|
18763
|
+
apiV2OriginsPost(createCorsCommand?: CreateCorsCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
18764
|
+
/**
|
|
18765
|
+
*
|
|
18766
|
+
* @param {CreateCorsCommand} [createCorsCommand]
|
|
18767
|
+
* @param {*} [options] Override http request option.
|
|
18768
|
+
* @throws {RequiredError}
|
|
18769
|
+
*/
|
|
18770
|
+
apiV2OriginsPut(createCorsCommand?: CreateCorsCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
18771
|
+
/**
|
|
18772
|
+
*
|
|
18773
|
+
* @param {string} url
|
|
18774
|
+
* @param {*} [options] Override http request option.
|
|
18775
|
+
* @throws {RequiredError}
|
|
18776
|
+
*/
|
|
18777
|
+
apiV2OriginsUrlGet(url: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
18778
|
+
};
|
|
18779
|
+
/**
|
|
18780
|
+
* OriginsApi - factory interface
|
|
18781
|
+
* @export
|
|
18782
|
+
*/
|
|
18783
|
+
export declare const OriginsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
18784
|
+
/**
|
|
18785
|
+
*
|
|
18786
|
+
* @param {*} [options] Override http request option.
|
|
18787
|
+
* @throws {RequiredError}
|
|
18788
|
+
*/
|
|
18789
|
+
apiV2OriginsGet(options?: any): AxiosPromise<Array<string>>;
|
|
18790
|
+
/**
|
|
18791
|
+
*
|
|
18792
|
+
* @param {CreateCorsCommand} [createCorsCommand]
|
|
18793
|
+
* @param {*} [options] Override http request option.
|
|
18794
|
+
* @throws {RequiredError}
|
|
18795
|
+
*/
|
|
18796
|
+
apiV2OriginsPost(createCorsCommand?: CreateCorsCommand, options?: any): AxiosPromise<boolean>;
|
|
18797
|
+
/**
|
|
18798
|
+
*
|
|
18799
|
+
* @param {CreateCorsCommand} [createCorsCommand]
|
|
18800
|
+
* @param {*} [options] Override http request option.
|
|
18801
|
+
* @throws {RequiredError}
|
|
18802
|
+
*/
|
|
18803
|
+
apiV2OriginsPut(createCorsCommand?: CreateCorsCommand, options?: any): AxiosPromise<boolean>;
|
|
18804
|
+
/**
|
|
18805
|
+
*
|
|
18806
|
+
* @param {string} url
|
|
18807
|
+
* @param {*} [options] Override http request option.
|
|
18808
|
+
* @throws {RequiredError}
|
|
18809
|
+
*/
|
|
18810
|
+
apiV2OriginsUrlGet(url: string, options?: any): AxiosPromise<string>;
|
|
18811
|
+
};
|
|
18812
|
+
/**
|
|
18813
|
+
* OriginsApi - object-oriented interface
|
|
18814
|
+
* @export
|
|
18815
|
+
* @class OriginsApi
|
|
18816
|
+
* @extends {BaseAPI}
|
|
18817
|
+
*/
|
|
18818
|
+
export declare class OriginsApi extends BaseAPI {
|
|
18819
|
+
/**
|
|
18820
|
+
*
|
|
18821
|
+
* @param {*} [options] Override http request option.
|
|
18822
|
+
* @throws {RequiredError}
|
|
18823
|
+
* @memberof OriginsApi
|
|
18824
|
+
*/
|
|
18825
|
+
apiV2OriginsGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any>>;
|
|
18826
|
+
/**
|
|
18827
|
+
*
|
|
18828
|
+
* @param {CreateCorsCommand} [createCorsCommand]
|
|
18829
|
+
* @param {*} [options] Override http request option.
|
|
18830
|
+
* @throws {RequiredError}
|
|
18831
|
+
* @memberof OriginsApi
|
|
18832
|
+
*/
|
|
18833
|
+
apiV2OriginsPost(createCorsCommand?: CreateCorsCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
18834
|
+
/**
|
|
18835
|
+
*
|
|
18836
|
+
* @param {CreateCorsCommand} [createCorsCommand]
|
|
18837
|
+
* @param {*} [options] Override http request option.
|
|
18838
|
+
* @throws {RequiredError}
|
|
18839
|
+
* @memberof OriginsApi
|
|
18840
|
+
*/
|
|
18841
|
+
apiV2OriginsPut(createCorsCommand?: CreateCorsCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
18842
|
+
/**
|
|
18843
|
+
*
|
|
18844
|
+
* @param {string} url
|
|
18845
|
+
* @param {*} [options] Override http request option.
|
|
18846
|
+
* @throws {RequiredError}
|
|
18847
|
+
* @memberof OriginsApi
|
|
18848
|
+
*/
|
|
18849
|
+
apiV2OriginsUrlGet(url: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
18850
|
+
}
|
|
18640
18851
|
/**
|
|
18641
18852
|
* PatientsApi - axios parameter creator
|
|
18642
18853
|
* @export
|