ch-api-client-typescript2 4.1.8 → 4.2.3
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 +500 -22
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +639 -30
- package/package.json +1 -1
- package/src/api.ts +787 -36
package/lib/api.d.ts
CHANGED
|
@@ -2284,6 +2284,12 @@ export interface ContributorItemModel {
|
|
|
2284
2284
|
* @memberof ContributorItemModel
|
|
2285
2285
|
*/
|
|
2286
2286
|
'confirmed'?: boolean;
|
|
2287
|
+
/**
|
|
2288
|
+
*
|
|
2289
|
+
* @type {string}
|
|
2290
|
+
* @memberof ContributorItemModel
|
|
2291
|
+
*/
|
|
2292
|
+
'description'?: string | null;
|
|
2287
2293
|
/**
|
|
2288
2294
|
*
|
|
2289
2295
|
* @type {string}
|
|
@@ -2375,6 +2381,12 @@ export interface ContributorModel {
|
|
|
2375
2381
|
* @memberof ContributorModel
|
|
2376
2382
|
*/
|
|
2377
2383
|
'confirmed'?: boolean;
|
|
2384
|
+
/**
|
|
2385
|
+
*
|
|
2386
|
+
* @type {string}
|
|
2387
|
+
* @memberof ContributorModel
|
|
2388
|
+
*/
|
|
2389
|
+
'description'?: string | null;
|
|
2378
2390
|
/**
|
|
2379
2391
|
*
|
|
2380
2392
|
* @type {string}
|
|
@@ -2429,12 +2441,6 @@ export interface ContributorModel {
|
|
|
2429
2441
|
* @memberof ContributorModel
|
|
2430
2442
|
*/
|
|
2431
2443
|
'auditableEntity'?: AuditableEntity;
|
|
2432
|
-
/**
|
|
2433
|
-
*
|
|
2434
|
-
* @type {string}
|
|
2435
|
-
* @memberof ContributorModel
|
|
2436
|
-
*/
|
|
2437
|
-
'description'?: string | null;
|
|
2438
2444
|
/**
|
|
2439
2445
|
*
|
|
2440
2446
|
* @type {string}
|
|
@@ -2894,6 +2900,74 @@ export interface CreateConsultationCommand {
|
|
|
2894
2900
|
*/
|
|
2895
2901
|
'isExternal'?: boolean;
|
|
2896
2902
|
}
|
|
2903
|
+
/**
|
|
2904
|
+
*
|
|
2905
|
+
* @export
|
|
2906
|
+
* @interface CreateDeviceCommand
|
|
2907
|
+
*/
|
|
2908
|
+
export interface CreateDeviceCommand {
|
|
2909
|
+
/**
|
|
2910
|
+
*
|
|
2911
|
+
* @type {string}
|
|
2912
|
+
* @memberof CreateDeviceCommand
|
|
2913
|
+
*/
|
|
2914
|
+
'id'?: string;
|
|
2915
|
+
/**
|
|
2916
|
+
*
|
|
2917
|
+
* @type {string}
|
|
2918
|
+
* @memberof CreateDeviceCommand
|
|
2919
|
+
*/
|
|
2920
|
+
'token'?: string | null;
|
|
2921
|
+
/**
|
|
2922
|
+
*
|
|
2923
|
+
* @type {Platform}
|
|
2924
|
+
* @memberof CreateDeviceCommand
|
|
2925
|
+
*/
|
|
2926
|
+
'platform'?: Platform;
|
|
2927
|
+
/**
|
|
2928
|
+
*
|
|
2929
|
+
* @type {Array<string>}
|
|
2930
|
+
* @memberof CreateDeviceCommand
|
|
2931
|
+
*/
|
|
2932
|
+
'tags'?: Array<string> | null;
|
|
2933
|
+
/**
|
|
2934
|
+
*
|
|
2935
|
+
* @type {boolean}
|
|
2936
|
+
* @memberof CreateDeviceCommand
|
|
2937
|
+
*/
|
|
2938
|
+
'appAlert'?: boolean;
|
|
2939
|
+
/**
|
|
2940
|
+
*
|
|
2941
|
+
* @type {boolean}
|
|
2942
|
+
* @memberof CreateDeviceCommand
|
|
2943
|
+
*/
|
|
2944
|
+
'eventAlert'?: boolean;
|
|
2945
|
+
/**
|
|
2946
|
+
*
|
|
2947
|
+
* @type {boolean}
|
|
2948
|
+
* @memberof CreateDeviceCommand
|
|
2949
|
+
*/
|
|
2950
|
+
'noticeAlert'?: boolean;
|
|
2951
|
+
}
|
|
2952
|
+
/**
|
|
2953
|
+
*
|
|
2954
|
+
* @export
|
|
2955
|
+
* @interface CreateDeviceLoginCommand
|
|
2956
|
+
*/
|
|
2957
|
+
export interface CreateDeviceLoginCommand {
|
|
2958
|
+
/**
|
|
2959
|
+
*
|
|
2960
|
+
* @type {string}
|
|
2961
|
+
* @memberof CreateDeviceLoginCommand
|
|
2962
|
+
*/
|
|
2963
|
+
'version'?: string | null;
|
|
2964
|
+
/**
|
|
2965
|
+
*
|
|
2966
|
+
* @type {LocationModel}
|
|
2967
|
+
* @memberof CreateDeviceLoginCommand
|
|
2968
|
+
*/
|
|
2969
|
+
'location'?: LocationModel;
|
|
2970
|
+
}
|
|
2897
2971
|
/**
|
|
2898
2972
|
*
|
|
2899
2973
|
* @export
|
|
@@ -3688,6 +3762,117 @@ export interface DealsSimpleModel {
|
|
|
3688
3762
|
*/
|
|
3689
3763
|
'metaData'?: PagedListMetaData;
|
|
3690
3764
|
}
|
|
3765
|
+
/**
|
|
3766
|
+
*
|
|
3767
|
+
* @export
|
|
3768
|
+
* @interface DeviceItemModel
|
|
3769
|
+
*/
|
|
3770
|
+
export interface DeviceItemModel {
|
|
3771
|
+
/**
|
|
3772
|
+
*
|
|
3773
|
+
* @type {string}
|
|
3774
|
+
* @memberof DeviceItemModel
|
|
3775
|
+
*/
|
|
3776
|
+
'id'?: string;
|
|
3777
|
+
/**
|
|
3778
|
+
*
|
|
3779
|
+
* @type {string}
|
|
3780
|
+
* @memberof DeviceItemModel
|
|
3781
|
+
*/
|
|
3782
|
+
'token'?: string | null;
|
|
3783
|
+
/**
|
|
3784
|
+
*
|
|
3785
|
+
* @type {Platform}
|
|
3786
|
+
* @memberof DeviceItemModel
|
|
3787
|
+
*/
|
|
3788
|
+
'platform'?: Platform;
|
|
3789
|
+
/**
|
|
3790
|
+
*
|
|
3791
|
+
* @type {boolean}
|
|
3792
|
+
* @memberof DeviceItemModel
|
|
3793
|
+
*/
|
|
3794
|
+
'appAlert'?: boolean;
|
|
3795
|
+
/**
|
|
3796
|
+
*
|
|
3797
|
+
* @type {boolean}
|
|
3798
|
+
* @memberof DeviceItemModel
|
|
3799
|
+
*/
|
|
3800
|
+
'eventAlert'?: boolean;
|
|
3801
|
+
/**
|
|
3802
|
+
*
|
|
3803
|
+
* @type {boolean}
|
|
3804
|
+
* @memberof DeviceItemModel
|
|
3805
|
+
*/
|
|
3806
|
+
'noticeAlert'?: boolean;
|
|
3807
|
+
}
|
|
3808
|
+
/**
|
|
3809
|
+
*
|
|
3810
|
+
* @export
|
|
3811
|
+
* @interface DeviceModel
|
|
3812
|
+
*/
|
|
3813
|
+
export interface DeviceModel {
|
|
3814
|
+
/**
|
|
3815
|
+
*
|
|
3816
|
+
* @type {string}
|
|
3817
|
+
* @memberof DeviceModel
|
|
3818
|
+
*/
|
|
3819
|
+
'id'?: string;
|
|
3820
|
+
/**
|
|
3821
|
+
*
|
|
3822
|
+
* @type {string}
|
|
3823
|
+
* @memberof DeviceModel
|
|
3824
|
+
*/
|
|
3825
|
+
'token'?: string | null;
|
|
3826
|
+
/**
|
|
3827
|
+
*
|
|
3828
|
+
* @type {Platform}
|
|
3829
|
+
* @memberof DeviceModel
|
|
3830
|
+
*/
|
|
3831
|
+
'platform'?: Platform;
|
|
3832
|
+
/**
|
|
3833
|
+
*
|
|
3834
|
+
* @type {boolean}
|
|
3835
|
+
* @memberof DeviceModel
|
|
3836
|
+
*/
|
|
3837
|
+
'appAlert'?: boolean;
|
|
3838
|
+
/**
|
|
3839
|
+
*
|
|
3840
|
+
* @type {boolean}
|
|
3841
|
+
* @memberof DeviceModel
|
|
3842
|
+
*/
|
|
3843
|
+
'eventAlert'?: boolean;
|
|
3844
|
+
/**
|
|
3845
|
+
*
|
|
3846
|
+
* @type {boolean}
|
|
3847
|
+
* @memberof DeviceModel
|
|
3848
|
+
*/
|
|
3849
|
+
'noticeAlert'?: boolean;
|
|
3850
|
+
/**
|
|
3851
|
+
*
|
|
3852
|
+
* @type {Array<string>}
|
|
3853
|
+
* @memberof DeviceModel
|
|
3854
|
+
*/
|
|
3855
|
+
'tags'?: Array<string> | null;
|
|
3856
|
+
}
|
|
3857
|
+
/**
|
|
3858
|
+
*
|
|
3859
|
+
* @export
|
|
3860
|
+
* @interface DevicesModel
|
|
3861
|
+
*/
|
|
3862
|
+
export interface DevicesModel {
|
|
3863
|
+
/**
|
|
3864
|
+
*
|
|
3865
|
+
* @type {Array<DeviceItemModel>}
|
|
3866
|
+
* @memberof DevicesModel
|
|
3867
|
+
*/
|
|
3868
|
+
'items'?: Array<DeviceItemModel> | null;
|
|
3869
|
+
/**
|
|
3870
|
+
*
|
|
3871
|
+
* @type {PagedListMetaData}
|
|
3872
|
+
* @memberof DevicesModel
|
|
3873
|
+
*/
|
|
3874
|
+
'metaData'?: PagedListMetaData;
|
|
3875
|
+
}
|
|
3691
3876
|
/**
|
|
3692
3877
|
*
|
|
3693
3878
|
* @export
|
|
@@ -9200,6 +9385,43 @@ export interface UpdateConsultationCommand {
|
|
|
9200
9385
|
*/
|
|
9201
9386
|
'timeZone'?: string | null;
|
|
9202
9387
|
}
|
|
9388
|
+
/**
|
|
9389
|
+
*
|
|
9390
|
+
* @export
|
|
9391
|
+
* @interface UpdateDeviceCommand
|
|
9392
|
+
*/
|
|
9393
|
+
export interface UpdateDeviceCommand {
|
|
9394
|
+
/**
|
|
9395
|
+
*
|
|
9396
|
+
* @type {string}
|
|
9397
|
+
* @memberof UpdateDeviceCommand
|
|
9398
|
+
*/
|
|
9399
|
+
'token'?: string | null;
|
|
9400
|
+
/**
|
|
9401
|
+
*
|
|
9402
|
+
* @type {Array<string>}
|
|
9403
|
+
* @memberof UpdateDeviceCommand
|
|
9404
|
+
*/
|
|
9405
|
+
'tags'?: Array<string> | null;
|
|
9406
|
+
/**
|
|
9407
|
+
*
|
|
9408
|
+
* @type {boolean}
|
|
9409
|
+
* @memberof UpdateDeviceCommand
|
|
9410
|
+
*/
|
|
9411
|
+
'appAlert'?: boolean;
|
|
9412
|
+
/**
|
|
9413
|
+
*
|
|
9414
|
+
* @type {boolean}
|
|
9415
|
+
* @memberof UpdateDeviceCommand
|
|
9416
|
+
*/
|
|
9417
|
+
'eventAlert'?: boolean;
|
|
9418
|
+
/**
|
|
9419
|
+
*
|
|
9420
|
+
* @type {boolean}
|
|
9421
|
+
* @memberof UpdateDeviceCommand
|
|
9422
|
+
*/
|
|
9423
|
+
'noticeAlert'?: boolean;
|
|
9424
|
+
}
|
|
9203
9425
|
/**
|
|
9204
9426
|
*
|
|
9205
9427
|
* @export
|
|
@@ -10114,14 +10336,13 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
10114
10336
|
* @param {ContributionType} [contributionType]
|
|
10115
10337
|
* @param {string} [languageCode]
|
|
10116
10338
|
* @param {boolean} [showHidden]
|
|
10117
|
-
* @param {boolean} [inbound]
|
|
10118
10339
|
* @param {number} [page]
|
|
10119
10340
|
* @param {number} [limit]
|
|
10120
10341
|
* @param {Date} [lastRetrieved]
|
|
10121
10342
|
* @param {*} [options] Override http request option.
|
|
10122
10343
|
* @throws {RequiredError}
|
|
10123
10344
|
*/
|
|
10124
|
-
apiV2ArticlesArticleIdContributorsGet: (articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined,
|
|
10345
|
+
apiV2ArticlesArticleIdContributorsGet: (articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10125
10346
|
/**
|
|
10126
10347
|
*
|
|
10127
10348
|
* @summary Get Article.
|
|
@@ -10256,14 +10477,13 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
10256
10477
|
* @param {ContributionType} [contributionType]
|
|
10257
10478
|
* @param {string} [languageCode]
|
|
10258
10479
|
* @param {boolean} [showHidden]
|
|
10259
|
-
* @param {boolean} [inbound]
|
|
10260
10480
|
* @param {number} [page]
|
|
10261
10481
|
* @param {number} [limit]
|
|
10262
10482
|
* @param {Date} [lastRetrieved]
|
|
10263
10483
|
* @param {*} [options] Override http request option.
|
|
10264
10484
|
* @throws {RequiredError}
|
|
10265
10485
|
*/
|
|
10266
|
-
apiV2ArticlesArticleIdContributorsGet(articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined,
|
|
10486
|
+
apiV2ArticlesArticleIdContributorsGet(articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, website?: string | undefined, contributionType?: ContributionType | 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<ArticleContributorsModel>>;
|
|
10267
10487
|
/**
|
|
10268
10488
|
*
|
|
10269
10489
|
* @summary Get Article.
|
|
@@ -10398,14 +10618,13 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
10398
10618
|
* @param {ContributionType} [contributionType]
|
|
10399
10619
|
* @param {string} [languageCode]
|
|
10400
10620
|
* @param {boolean} [showHidden]
|
|
10401
|
-
* @param {boolean} [inbound]
|
|
10402
10621
|
* @param {number} [page]
|
|
10403
10622
|
* @param {number} [limit]
|
|
10404
10623
|
* @param {Date} [lastRetrieved]
|
|
10405
10624
|
* @param {*} [options] Override http request option.
|
|
10406
10625
|
* @throws {RequiredError}
|
|
10407
10626
|
*/
|
|
10408
|
-
apiV2ArticlesArticleIdContributorsGet(articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined,
|
|
10627
|
+
apiV2ArticlesArticleIdContributorsGet(articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticleContributorsModel>;
|
|
10409
10628
|
/**
|
|
10410
10629
|
*
|
|
10411
10630
|
* @summary Get Article.
|
|
@@ -10543,7 +10762,6 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
10543
10762
|
* @param {ContributionType} [contributionType]
|
|
10544
10763
|
* @param {string} [languageCode]
|
|
10545
10764
|
* @param {boolean} [showHidden]
|
|
10546
|
-
* @param {boolean} [inbound]
|
|
10547
10765
|
* @param {number} [page]
|
|
10548
10766
|
* @param {number} [limit]
|
|
10549
10767
|
* @param {Date} [lastRetrieved]
|
|
@@ -10551,7 +10769,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
10551
10769
|
* @throws {RequiredError}
|
|
10552
10770
|
* @memberof ArticlesApi
|
|
10553
10771
|
*/
|
|
10554
|
-
apiV2ArticlesArticleIdContributorsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, website?: string, contributionType?: ContributionType, languageCode?: string, showHidden?: boolean,
|
|
10772
|
+
apiV2ArticlesArticleIdContributorsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, website?: string, contributionType?: ContributionType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleContributorsModel, any>>;
|
|
10555
10773
|
/**
|
|
10556
10774
|
*
|
|
10557
10775
|
* @summary Get Article.
|
|
@@ -11579,14 +11797,13 @@ export declare const ContributorsApiAxiosParamCreator: (configuration?: Configur
|
|
|
11579
11797
|
* @param {boolean} [showHidden]
|
|
11580
11798
|
* @param {string} [languageCode]
|
|
11581
11799
|
* @param {boolean} [returnDefaultValue]
|
|
11582
|
-
* @param {boolean} [inbound]
|
|
11583
11800
|
* @param {number} [page]
|
|
11584
11801
|
* @param {number} [limit]
|
|
11585
11802
|
* @param {Date} [lastRetrieved]
|
|
11586
11803
|
* @param {*} [options] Override http request option.
|
|
11587
11804
|
* @throws {RequiredError}
|
|
11588
11805
|
*/
|
|
11589
|
-
apiV2ContributorsGet: (id?: string | undefined, name?: string | undefined, email?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined,
|
|
11806
|
+
apiV2ContributorsGet: (id?: string | undefined, name?: string | undefined, email?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11590
11807
|
/**
|
|
11591
11808
|
*
|
|
11592
11809
|
* @summary Get Contributor by slug.
|
|
@@ -11649,14 +11866,13 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
|
|
|
11649
11866
|
* @param {boolean} [showHidden]
|
|
11650
11867
|
* @param {string} [languageCode]
|
|
11651
11868
|
* @param {boolean} [returnDefaultValue]
|
|
11652
|
-
* @param {boolean} [inbound]
|
|
11653
11869
|
* @param {number} [page]
|
|
11654
11870
|
* @param {number} [limit]
|
|
11655
11871
|
* @param {Date} [lastRetrieved]
|
|
11656
11872
|
* @param {*} [options] Override http request option.
|
|
11657
11873
|
* @throws {RequiredError}
|
|
11658
11874
|
*/
|
|
11659
|
-
apiV2ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined,
|
|
11875
|
+
apiV2ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ContributorsModel>>;
|
|
11660
11876
|
/**
|
|
11661
11877
|
*
|
|
11662
11878
|
* @summary Get Contributor by slug.
|
|
@@ -11719,14 +11935,13 @@ export declare const ContributorsApiFactory: (configuration?: Configuration | un
|
|
|
11719
11935
|
* @param {boolean} [showHidden]
|
|
11720
11936
|
* @param {string} [languageCode]
|
|
11721
11937
|
* @param {boolean} [returnDefaultValue]
|
|
11722
|
-
* @param {boolean} [inbound]
|
|
11723
11938
|
* @param {number} [page]
|
|
11724
11939
|
* @param {number} [limit]
|
|
11725
11940
|
* @param {Date} [lastRetrieved]
|
|
11726
11941
|
* @param {*} [options] Override http request option.
|
|
11727
11942
|
* @throws {RequiredError}
|
|
11728
11943
|
*/
|
|
11729
|
-
apiV2ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined,
|
|
11944
|
+
apiV2ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ContributorsModel>;
|
|
11730
11945
|
/**
|
|
11731
11946
|
*
|
|
11732
11947
|
* @summary Get Contributor by slug.
|
|
@@ -11794,7 +12009,6 @@ export declare class ContributorsApi extends BaseAPI {
|
|
|
11794
12009
|
* @param {boolean} [showHidden]
|
|
11795
12010
|
* @param {string} [languageCode]
|
|
11796
12011
|
* @param {boolean} [returnDefaultValue]
|
|
11797
|
-
* @param {boolean} [inbound]
|
|
11798
12012
|
* @param {number} [page]
|
|
11799
12013
|
* @param {number} [limit]
|
|
11800
12014
|
* @param {Date} [lastRetrieved]
|
|
@@ -11802,7 +12016,7 @@ export declare class ContributorsApi extends BaseAPI {
|
|
|
11802
12016
|
* @throws {RequiredError}
|
|
11803
12017
|
* @memberof ContributorsApi
|
|
11804
12018
|
*/
|
|
11805
|
-
apiV2ContributorsGet(id?: string, name?: string, email?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, showHidden?: boolean, languageCode?: string, returnDefaultValue?: boolean,
|
|
12019
|
+
apiV2ContributorsGet(id?: string, name?: string, email?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, showHidden?: boolean, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorsModel, any>>;
|
|
11806
12020
|
/**
|
|
11807
12021
|
*
|
|
11808
12022
|
* @summary Get Contributor by slug.
|
|
@@ -12624,6 +12838,270 @@ export declare class DealsApi extends BaseAPI {
|
|
|
12624
12838
|
*/
|
|
12625
12839
|
apiV2DealsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel, any>>;
|
|
12626
12840
|
}
|
|
12841
|
+
/**
|
|
12842
|
+
* DevicesApi - axios parameter creator
|
|
12843
|
+
* @export
|
|
12844
|
+
*/
|
|
12845
|
+
export declare const DevicesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
12846
|
+
/**
|
|
12847
|
+
*
|
|
12848
|
+
* @summary Get all devices.
|
|
12849
|
+
* @param {string} [id]
|
|
12850
|
+
* @param {string} [token]
|
|
12851
|
+
* @param {Platform} [platform]
|
|
12852
|
+
* @param {boolean} [appAlert]
|
|
12853
|
+
* @param {boolean} [eventAlert]
|
|
12854
|
+
* @param {boolean} [noticeAlert]
|
|
12855
|
+
* @param {number} [page]
|
|
12856
|
+
* @param {number} [limit]
|
|
12857
|
+
* @param {Date} [lastRetrieved]
|
|
12858
|
+
* @param {*} [options] Override http request option.
|
|
12859
|
+
* @throws {RequiredError}
|
|
12860
|
+
*/
|
|
12861
|
+
apiV2DevicesGet: (id?: string | undefined, token?: string | undefined, platform?: Platform | undefined, appAlert?: boolean | undefined, eventAlert?: boolean | undefined, noticeAlert?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12862
|
+
/**
|
|
12863
|
+
*
|
|
12864
|
+
* @summary Delete device.
|
|
12865
|
+
* @param {string} id
|
|
12866
|
+
* @param {*} [options] Override http request option.
|
|
12867
|
+
* @throws {RequiredError}
|
|
12868
|
+
*/
|
|
12869
|
+
apiV2DevicesIdDelete: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12870
|
+
/**
|
|
12871
|
+
*
|
|
12872
|
+
* @summary Get device.
|
|
12873
|
+
* @param {string} id
|
|
12874
|
+
* @param {*} [options] Override http request option.
|
|
12875
|
+
* @throws {RequiredError}
|
|
12876
|
+
*/
|
|
12877
|
+
apiV2DevicesIdGet: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12878
|
+
/**
|
|
12879
|
+
*
|
|
12880
|
+
* @summary Create device login.
|
|
12881
|
+
* @param {string} id
|
|
12882
|
+
* @param {CreateDeviceLoginCommand} [createDeviceLoginCommand]
|
|
12883
|
+
* @param {*} [options] Override http request option.
|
|
12884
|
+
* @throws {RequiredError}
|
|
12885
|
+
*/
|
|
12886
|
+
apiV2DevicesIdLoginsPost: (id: string, createDeviceLoginCommand?: CreateDeviceLoginCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12887
|
+
/**
|
|
12888
|
+
*
|
|
12889
|
+
* @summary Update device.
|
|
12890
|
+
* @param {string} id
|
|
12891
|
+
* @param {UpdateDeviceCommand} [updateDeviceCommand]
|
|
12892
|
+
* @param {*} [options] Override http request option.
|
|
12893
|
+
* @throws {RequiredError}
|
|
12894
|
+
*/
|
|
12895
|
+
apiV2DevicesIdPut: (id: string, updateDeviceCommand?: UpdateDeviceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12896
|
+
/**
|
|
12897
|
+
*
|
|
12898
|
+
* @summary Create device.
|
|
12899
|
+
* @param {CreateDeviceCommand} [createDeviceCommand]
|
|
12900
|
+
* @param {*} [options] Override http request option.
|
|
12901
|
+
* @throws {RequiredError}
|
|
12902
|
+
*/
|
|
12903
|
+
apiV2DevicesPost: (createDeviceCommand?: CreateDeviceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12904
|
+
};
|
|
12905
|
+
/**
|
|
12906
|
+
* DevicesApi - functional programming interface
|
|
12907
|
+
* @export
|
|
12908
|
+
*/
|
|
12909
|
+
export declare const DevicesApiFp: (configuration?: Configuration | undefined) => {
|
|
12910
|
+
/**
|
|
12911
|
+
*
|
|
12912
|
+
* @summary Get all devices.
|
|
12913
|
+
* @param {string} [id]
|
|
12914
|
+
* @param {string} [token]
|
|
12915
|
+
* @param {Platform} [platform]
|
|
12916
|
+
* @param {boolean} [appAlert]
|
|
12917
|
+
* @param {boolean} [eventAlert]
|
|
12918
|
+
* @param {boolean} [noticeAlert]
|
|
12919
|
+
* @param {number} [page]
|
|
12920
|
+
* @param {number} [limit]
|
|
12921
|
+
* @param {Date} [lastRetrieved]
|
|
12922
|
+
* @param {*} [options] Override http request option.
|
|
12923
|
+
* @throws {RequiredError}
|
|
12924
|
+
*/
|
|
12925
|
+
apiV2DevicesGet(id?: string | undefined, token?: string | undefined, platform?: Platform | undefined, appAlert?: boolean | undefined, eventAlert?: boolean | undefined, noticeAlert?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DevicesModel>>;
|
|
12926
|
+
/**
|
|
12927
|
+
*
|
|
12928
|
+
* @summary Delete device.
|
|
12929
|
+
* @param {string} id
|
|
12930
|
+
* @param {*} [options] Override http request option.
|
|
12931
|
+
* @throws {RequiredError}
|
|
12932
|
+
*/
|
|
12933
|
+
apiV2DevicesIdDelete(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
12934
|
+
/**
|
|
12935
|
+
*
|
|
12936
|
+
* @summary Get device.
|
|
12937
|
+
* @param {string} id
|
|
12938
|
+
* @param {*} [options] Override http request option.
|
|
12939
|
+
* @throws {RequiredError}
|
|
12940
|
+
*/
|
|
12941
|
+
apiV2DevicesIdGet(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DeviceModel>>;
|
|
12942
|
+
/**
|
|
12943
|
+
*
|
|
12944
|
+
* @summary Create device login.
|
|
12945
|
+
* @param {string} id
|
|
12946
|
+
* @param {CreateDeviceLoginCommand} [createDeviceLoginCommand]
|
|
12947
|
+
* @param {*} [options] Override http request option.
|
|
12948
|
+
* @throws {RequiredError}
|
|
12949
|
+
*/
|
|
12950
|
+
apiV2DevicesIdLoginsPost(id: string, createDeviceLoginCommand?: CreateDeviceLoginCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
12951
|
+
/**
|
|
12952
|
+
*
|
|
12953
|
+
* @summary Update device.
|
|
12954
|
+
* @param {string} id
|
|
12955
|
+
* @param {UpdateDeviceCommand} [updateDeviceCommand]
|
|
12956
|
+
* @param {*} [options] Override http request option.
|
|
12957
|
+
* @throws {RequiredError}
|
|
12958
|
+
*/
|
|
12959
|
+
apiV2DevicesIdPut(id: string, updateDeviceCommand?: UpdateDeviceCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
12960
|
+
/**
|
|
12961
|
+
*
|
|
12962
|
+
* @summary Create device.
|
|
12963
|
+
* @param {CreateDeviceCommand} [createDeviceCommand]
|
|
12964
|
+
* @param {*} [options] Override http request option.
|
|
12965
|
+
* @throws {RequiredError}
|
|
12966
|
+
*/
|
|
12967
|
+
apiV2DevicesPost(createDeviceCommand?: CreateDeviceCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DeviceModel>>;
|
|
12968
|
+
};
|
|
12969
|
+
/**
|
|
12970
|
+
* DevicesApi - factory interface
|
|
12971
|
+
* @export
|
|
12972
|
+
*/
|
|
12973
|
+
export declare const DevicesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
12974
|
+
/**
|
|
12975
|
+
*
|
|
12976
|
+
* @summary Get all devices.
|
|
12977
|
+
* @param {string} [id]
|
|
12978
|
+
* @param {string} [token]
|
|
12979
|
+
* @param {Platform} [platform]
|
|
12980
|
+
* @param {boolean} [appAlert]
|
|
12981
|
+
* @param {boolean} [eventAlert]
|
|
12982
|
+
* @param {boolean} [noticeAlert]
|
|
12983
|
+
* @param {number} [page]
|
|
12984
|
+
* @param {number} [limit]
|
|
12985
|
+
* @param {Date} [lastRetrieved]
|
|
12986
|
+
* @param {*} [options] Override http request option.
|
|
12987
|
+
* @throws {RequiredError}
|
|
12988
|
+
*/
|
|
12989
|
+
apiV2DevicesGet(id?: string | undefined, token?: string | undefined, platform?: Platform | undefined, appAlert?: boolean | undefined, eventAlert?: boolean | undefined, noticeAlert?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DevicesModel>;
|
|
12990
|
+
/**
|
|
12991
|
+
*
|
|
12992
|
+
* @summary Delete device.
|
|
12993
|
+
* @param {string} id
|
|
12994
|
+
* @param {*} [options] Override http request option.
|
|
12995
|
+
* @throws {RequiredError}
|
|
12996
|
+
*/
|
|
12997
|
+
apiV2DevicesIdDelete(id: string, options?: any): AxiosPromise<boolean>;
|
|
12998
|
+
/**
|
|
12999
|
+
*
|
|
13000
|
+
* @summary Get device.
|
|
13001
|
+
* @param {string} id
|
|
13002
|
+
* @param {*} [options] Override http request option.
|
|
13003
|
+
* @throws {RequiredError}
|
|
13004
|
+
*/
|
|
13005
|
+
apiV2DevicesIdGet(id: string, options?: any): AxiosPromise<DeviceModel>;
|
|
13006
|
+
/**
|
|
13007
|
+
*
|
|
13008
|
+
* @summary Create device login.
|
|
13009
|
+
* @param {string} id
|
|
13010
|
+
* @param {CreateDeviceLoginCommand} [createDeviceLoginCommand]
|
|
13011
|
+
* @param {*} [options] Override http request option.
|
|
13012
|
+
* @throws {RequiredError}
|
|
13013
|
+
*/
|
|
13014
|
+
apiV2DevicesIdLoginsPost(id: string, createDeviceLoginCommand?: CreateDeviceLoginCommand | undefined, options?: any): AxiosPromise<string>;
|
|
13015
|
+
/**
|
|
13016
|
+
*
|
|
13017
|
+
* @summary Update device.
|
|
13018
|
+
* @param {string} id
|
|
13019
|
+
* @param {UpdateDeviceCommand} [updateDeviceCommand]
|
|
13020
|
+
* @param {*} [options] Override http request option.
|
|
13021
|
+
* @throws {RequiredError}
|
|
13022
|
+
*/
|
|
13023
|
+
apiV2DevicesIdPut(id: string, updateDeviceCommand?: UpdateDeviceCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
13024
|
+
/**
|
|
13025
|
+
*
|
|
13026
|
+
* @summary Create device.
|
|
13027
|
+
* @param {CreateDeviceCommand} [createDeviceCommand]
|
|
13028
|
+
* @param {*} [options] Override http request option.
|
|
13029
|
+
* @throws {RequiredError}
|
|
13030
|
+
*/
|
|
13031
|
+
apiV2DevicesPost(createDeviceCommand?: CreateDeviceCommand | undefined, options?: any): AxiosPromise<DeviceModel>;
|
|
13032
|
+
};
|
|
13033
|
+
/**
|
|
13034
|
+
* DevicesApi - object-oriented interface
|
|
13035
|
+
* @export
|
|
13036
|
+
* @class DevicesApi
|
|
13037
|
+
* @extends {BaseAPI}
|
|
13038
|
+
*/
|
|
13039
|
+
export declare class DevicesApi extends BaseAPI {
|
|
13040
|
+
/**
|
|
13041
|
+
*
|
|
13042
|
+
* @summary Get all devices.
|
|
13043
|
+
* @param {string} [id]
|
|
13044
|
+
* @param {string} [token]
|
|
13045
|
+
* @param {Platform} [platform]
|
|
13046
|
+
* @param {boolean} [appAlert]
|
|
13047
|
+
* @param {boolean} [eventAlert]
|
|
13048
|
+
* @param {boolean} [noticeAlert]
|
|
13049
|
+
* @param {number} [page]
|
|
13050
|
+
* @param {number} [limit]
|
|
13051
|
+
* @param {Date} [lastRetrieved]
|
|
13052
|
+
* @param {*} [options] Override http request option.
|
|
13053
|
+
* @throws {RequiredError}
|
|
13054
|
+
* @memberof DevicesApi
|
|
13055
|
+
*/
|
|
13056
|
+
apiV2DevicesGet(id?: string, token?: string, platform?: Platform, appAlert?: boolean, eventAlert?: boolean, noticeAlert?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DevicesModel, any>>;
|
|
13057
|
+
/**
|
|
13058
|
+
*
|
|
13059
|
+
* @summary Delete device.
|
|
13060
|
+
* @param {string} id
|
|
13061
|
+
* @param {*} [options] Override http request option.
|
|
13062
|
+
* @throws {RequiredError}
|
|
13063
|
+
* @memberof DevicesApi
|
|
13064
|
+
*/
|
|
13065
|
+
apiV2DevicesIdDelete(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
13066
|
+
/**
|
|
13067
|
+
*
|
|
13068
|
+
* @summary Get device.
|
|
13069
|
+
* @param {string} id
|
|
13070
|
+
* @param {*} [options] Override http request option.
|
|
13071
|
+
* @throws {RequiredError}
|
|
13072
|
+
* @memberof DevicesApi
|
|
13073
|
+
*/
|
|
13074
|
+
apiV2DevicesIdGet(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DeviceModel, any>>;
|
|
13075
|
+
/**
|
|
13076
|
+
*
|
|
13077
|
+
* @summary Create device login.
|
|
13078
|
+
* @param {string} id
|
|
13079
|
+
* @param {CreateDeviceLoginCommand} [createDeviceLoginCommand]
|
|
13080
|
+
* @param {*} [options] Override http request option.
|
|
13081
|
+
* @throws {RequiredError}
|
|
13082
|
+
* @memberof DevicesApi
|
|
13083
|
+
*/
|
|
13084
|
+
apiV2DevicesIdLoginsPost(id: string, createDeviceLoginCommand?: CreateDeviceLoginCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
13085
|
+
/**
|
|
13086
|
+
*
|
|
13087
|
+
* @summary Update device.
|
|
13088
|
+
* @param {string} id
|
|
13089
|
+
* @param {UpdateDeviceCommand} [updateDeviceCommand]
|
|
13090
|
+
* @param {*} [options] Override http request option.
|
|
13091
|
+
* @throws {RequiredError}
|
|
13092
|
+
* @memberof DevicesApi
|
|
13093
|
+
*/
|
|
13094
|
+
apiV2DevicesIdPut(id: string, updateDeviceCommand?: UpdateDeviceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
13095
|
+
/**
|
|
13096
|
+
*
|
|
13097
|
+
* @summary Create device.
|
|
13098
|
+
* @param {CreateDeviceCommand} [createDeviceCommand]
|
|
13099
|
+
* @param {*} [options] Override http request option.
|
|
13100
|
+
* @throws {RequiredError}
|
|
13101
|
+
* @memberof DevicesApi
|
|
13102
|
+
*/
|
|
13103
|
+
apiV2DevicesPost(createDeviceCommand?: CreateDeviceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DeviceModel, any>>;
|
|
13104
|
+
}
|
|
12627
13105
|
/**
|
|
12628
13106
|
* DoctorAffiliationsApi - axios parameter creator
|
|
12629
13107
|
* @export
|