@rasadov/lumoar-sdk 1.2.8 → 1.3.0
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/.openapi-generator/FILES +2 -0
- package/api.ts +328 -64
- package/dist/api.d.ts +239 -59
- package/dist/api.js +206 -38
- package/docs/ReportBase.md +8 -0
- package/docs/ReportGenerate.md +2 -0
- package/docs/ReportsApi.md +59 -0
- package/docs/RolesApi.md +6 -0
- package/docs/SchedulerResponse.md +23 -0
- package/docs/TaskStatusResponse.md +29 -0
- package/docs/TasksApi.md +61 -2
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1385,6 +1385,30 @@ export interface ReportBase {
|
|
|
1385
1385
|
* @memberof ReportBase
|
|
1386
1386
|
*/
|
|
1387
1387
|
'share_expiration'?: string | null;
|
|
1388
|
+
/**
|
|
1389
|
+
*
|
|
1390
|
+
* @type {number}
|
|
1391
|
+
* @memberof ReportBase
|
|
1392
|
+
*/
|
|
1393
|
+
'file_size'?: number | null;
|
|
1394
|
+
/**
|
|
1395
|
+
*
|
|
1396
|
+
* @type {string}
|
|
1397
|
+
* @memberof ReportBase
|
|
1398
|
+
*/
|
|
1399
|
+
'file_type'?: string | null;
|
|
1400
|
+
/**
|
|
1401
|
+
*
|
|
1402
|
+
* @type {string}
|
|
1403
|
+
* @memberof ReportBase
|
|
1404
|
+
*/
|
|
1405
|
+
'checksum'?: string | null;
|
|
1406
|
+
/**
|
|
1407
|
+
*
|
|
1408
|
+
* @type {ReportType}
|
|
1409
|
+
* @memberof ReportBase
|
|
1410
|
+
*/
|
|
1411
|
+
'report_type': ReportType;
|
|
1388
1412
|
/**
|
|
1389
1413
|
*
|
|
1390
1414
|
* @type {string}
|
|
@@ -1410,6 +1434,12 @@ export interface ReportGenerate {
|
|
|
1410
1434
|
* @memberof ReportGenerate
|
|
1411
1435
|
*/
|
|
1412
1436
|
'report_id': string;
|
|
1437
|
+
/**
|
|
1438
|
+
*
|
|
1439
|
+
* @type {string}
|
|
1440
|
+
* @memberof ReportGenerate
|
|
1441
|
+
*/
|
|
1442
|
+
'task_id'?: string | null;
|
|
1413
1443
|
}
|
|
1414
1444
|
/**
|
|
1415
1445
|
*
|
|
@@ -1564,6 +1594,25 @@ export interface SchedulerRequest {
|
|
|
1564
1594
|
*/
|
|
1565
1595
|
'user_ids_to_assign'?: Array<string>;
|
|
1566
1596
|
}
|
|
1597
|
+
/**
|
|
1598
|
+
* Response schema for task scheduler request
|
|
1599
|
+
* @export
|
|
1600
|
+
* @interface SchedulerResponse
|
|
1601
|
+
*/
|
|
1602
|
+
export interface SchedulerResponse {
|
|
1603
|
+
/**
|
|
1604
|
+
*
|
|
1605
|
+
* @type {string}
|
|
1606
|
+
* @memberof SchedulerResponse
|
|
1607
|
+
*/
|
|
1608
|
+
'task_id': string;
|
|
1609
|
+
/**
|
|
1610
|
+
*
|
|
1611
|
+
* @type {string}
|
|
1612
|
+
* @memberof SchedulerResponse
|
|
1613
|
+
*/
|
|
1614
|
+
'details'?: string;
|
|
1615
|
+
}
|
|
1567
1616
|
/**
|
|
1568
1617
|
*
|
|
1569
1618
|
* @export
|
|
@@ -1696,6 +1745,47 @@ export declare const TaskStatus: {
|
|
|
1696
1745
|
readonly Skipped: "skipped";
|
|
1697
1746
|
};
|
|
1698
1747
|
export type TaskStatus = typeof TaskStatus[keyof typeof TaskStatus];
|
|
1748
|
+
/**
|
|
1749
|
+
* Response schema for checking Celery task status
|
|
1750
|
+
* @export
|
|
1751
|
+
* @interface TaskStatusResponse
|
|
1752
|
+
*/
|
|
1753
|
+
export interface TaskStatusResponse {
|
|
1754
|
+
/**
|
|
1755
|
+
*
|
|
1756
|
+
* @type {string}
|
|
1757
|
+
* @memberof TaskStatusResponse
|
|
1758
|
+
*/
|
|
1759
|
+
'task_id': string;
|
|
1760
|
+
/**
|
|
1761
|
+
*
|
|
1762
|
+
* @type {string}
|
|
1763
|
+
* @memberof TaskStatusResponse
|
|
1764
|
+
*/
|
|
1765
|
+
'status': string;
|
|
1766
|
+
/**
|
|
1767
|
+
*
|
|
1768
|
+
* @type {{ [key: string]: any; }}
|
|
1769
|
+
* @memberof TaskStatusResponse
|
|
1770
|
+
*/
|
|
1771
|
+
'result'?: {
|
|
1772
|
+
[key: string]: any;
|
|
1773
|
+
} | null;
|
|
1774
|
+
/**
|
|
1775
|
+
*
|
|
1776
|
+
* @type {string}
|
|
1777
|
+
* @memberof TaskStatusResponse
|
|
1778
|
+
*/
|
|
1779
|
+
'error'?: string | null;
|
|
1780
|
+
/**
|
|
1781
|
+
*
|
|
1782
|
+
* @type {{ [key: string]: any; }}
|
|
1783
|
+
* @memberof TaskStatusResponse
|
|
1784
|
+
*/
|
|
1785
|
+
'progress'?: {
|
|
1786
|
+
[key: string]: any;
|
|
1787
|
+
} | null;
|
|
1788
|
+
}
|
|
1699
1789
|
/**
|
|
1700
1790
|
*
|
|
1701
1791
|
* @export
|
|
@@ -2664,23 +2754,23 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2664
2754
|
/**
|
|
2665
2755
|
*
|
|
2666
2756
|
* @summary Get Company
|
|
2667
|
-
* @param {string} companyId
|
|
2757
|
+
* @param {string | null} companyId
|
|
2668
2758
|
* @param {string} [authorization]
|
|
2669
2759
|
* @param {string} [sessionId]
|
|
2670
2760
|
* @param {*} [options] Override http request option.
|
|
2671
2761
|
* @throws {RequiredError}
|
|
2672
2762
|
*/
|
|
2673
|
-
getCompanyV1CompanyGetCompanyIdGet: (companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2763
|
+
getCompanyV1CompanyGetCompanyIdGet: (companyId: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2674
2764
|
/**
|
|
2675
2765
|
*
|
|
2676
2766
|
* @summary Get Company With Controls
|
|
2677
|
-
* @param {string} companyId
|
|
2767
|
+
* @param {string | null} companyId
|
|
2678
2768
|
* @param {string} [authorization]
|
|
2679
2769
|
* @param {string} [sessionId]
|
|
2680
2770
|
* @param {*} [options] Override http request option.
|
|
2681
2771
|
* @throws {RequiredError}
|
|
2682
2772
|
*/
|
|
2683
|
-
getCompanyWithControlsV1CompanyControlsCompanyIdGet: (companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2773
|
+
getCompanyWithControlsV1CompanyControlsCompanyIdGet: (companyId: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2684
2774
|
/**
|
|
2685
2775
|
*
|
|
2686
2776
|
* @summary Update Company
|
|
@@ -2721,23 +2811,23 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
|
|
|
2721
2811
|
/**
|
|
2722
2812
|
*
|
|
2723
2813
|
* @summary Get Company
|
|
2724
|
-
* @param {string} companyId
|
|
2814
|
+
* @param {string | null} companyId
|
|
2725
2815
|
* @param {string} [authorization]
|
|
2726
2816
|
* @param {string} [sessionId]
|
|
2727
2817
|
* @param {*} [options] Override http request option.
|
|
2728
2818
|
* @throws {RequiredError}
|
|
2729
2819
|
*/
|
|
2730
|
-
getCompanyV1CompanyGetCompanyIdGet(companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CompanyWithRoles>>;
|
|
2820
|
+
getCompanyV1CompanyGetCompanyIdGet(companyId: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CompanyWithRoles>>;
|
|
2731
2821
|
/**
|
|
2732
2822
|
*
|
|
2733
2823
|
* @summary Get Company With Controls
|
|
2734
|
-
* @param {string} companyId
|
|
2824
|
+
* @param {string | null} companyId
|
|
2735
2825
|
* @param {string} [authorization]
|
|
2736
2826
|
* @param {string} [sessionId]
|
|
2737
2827
|
* @param {*} [options] Override http request option.
|
|
2738
2828
|
* @throws {RequiredError}
|
|
2739
2829
|
*/
|
|
2740
|
-
getCompanyWithControlsV1CompanyControlsCompanyIdGet(companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CompanyWithControls>>;
|
|
2830
|
+
getCompanyWithControlsV1CompanyControlsCompanyIdGet(companyId: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CompanyWithControls>>;
|
|
2741
2831
|
/**
|
|
2742
2832
|
*
|
|
2743
2833
|
* @summary Update Company
|
|
@@ -2778,23 +2868,23 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
|
|
|
2778
2868
|
/**
|
|
2779
2869
|
*
|
|
2780
2870
|
* @summary Get Company
|
|
2781
|
-
* @param {string} companyId
|
|
2871
|
+
* @param {string | null} companyId
|
|
2782
2872
|
* @param {string} [authorization]
|
|
2783
2873
|
* @param {string} [sessionId]
|
|
2784
2874
|
* @param {*} [options] Override http request option.
|
|
2785
2875
|
* @throws {RequiredError}
|
|
2786
2876
|
*/
|
|
2787
|
-
getCompanyV1CompanyGetCompanyIdGet(companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<CompanyWithRoles>;
|
|
2877
|
+
getCompanyV1CompanyGetCompanyIdGet(companyId: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<CompanyWithRoles>;
|
|
2788
2878
|
/**
|
|
2789
2879
|
*
|
|
2790
2880
|
* @summary Get Company With Controls
|
|
2791
|
-
* @param {string} companyId
|
|
2881
|
+
* @param {string | null} companyId
|
|
2792
2882
|
* @param {string} [authorization]
|
|
2793
2883
|
* @param {string} [sessionId]
|
|
2794
2884
|
* @param {*} [options] Override http request option.
|
|
2795
2885
|
* @throws {RequiredError}
|
|
2796
2886
|
*/
|
|
2797
|
-
getCompanyWithControlsV1CompanyControlsCompanyIdGet(companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<CompanyWithControls>;
|
|
2887
|
+
getCompanyWithControlsV1CompanyControlsCompanyIdGet(companyId: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<CompanyWithControls>;
|
|
2798
2888
|
/**
|
|
2799
2889
|
*
|
|
2800
2890
|
* @summary Update Company
|
|
@@ -2839,25 +2929,25 @@ export declare class CompanyApi extends BaseAPI {
|
|
|
2839
2929
|
/**
|
|
2840
2930
|
*
|
|
2841
2931
|
* @summary Get Company
|
|
2842
|
-
* @param {string} companyId
|
|
2932
|
+
* @param {string | null} companyId
|
|
2843
2933
|
* @param {string} [authorization]
|
|
2844
2934
|
* @param {string} [sessionId]
|
|
2845
2935
|
* @param {*} [options] Override http request option.
|
|
2846
2936
|
* @throws {RequiredError}
|
|
2847
2937
|
* @memberof CompanyApi
|
|
2848
2938
|
*/
|
|
2849
|
-
getCompanyV1CompanyGetCompanyIdGet(companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompanyWithRoles, any, {}>>;
|
|
2939
|
+
getCompanyV1CompanyGetCompanyIdGet(companyId: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompanyWithRoles, any, {}>>;
|
|
2850
2940
|
/**
|
|
2851
2941
|
*
|
|
2852
2942
|
* @summary Get Company With Controls
|
|
2853
|
-
* @param {string} companyId
|
|
2943
|
+
* @param {string | null} companyId
|
|
2854
2944
|
* @param {string} [authorization]
|
|
2855
2945
|
* @param {string} [sessionId]
|
|
2856
2946
|
* @param {*} [options] Override http request option.
|
|
2857
2947
|
* @throws {RequiredError}
|
|
2858
2948
|
* @memberof CompanyApi
|
|
2859
2949
|
*/
|
|
2860
|
-
getCompanyWithControlsV1CompanyControlsCompanyIdGet(companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompanyWithControls, any, {}>>;
|
|
2950
|
+
getCompanyWithControlsV1CompanyControlsCompanyIdGet(companyId: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompanyWithControls, any, {}>>;
|
|
2861
2951
|
/**
|
|
2862
2952
|
*
|
|
2863
2953
|
* @summary Update Company
|
|
@@ -3016,13 +3106,13 @@ export declare const EvidenceApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
3016
3106
|
/**
|
|
3017
3107
|
*
|
|
3018
3108
|
* @summary List Company Evidence
|
|
3019
|
-
* @param {string} companyId
|
|
3109
|
+
* @param {string | null} companyId
|
|
3020
3110
|
* @param {string} [authorization]
|
|
3021
3111
|
* @param {string} [sessionId]
|
|
3022
3112
|
* @param {*} [options] Override http request option.
|
|
3023
3113
|
* @throws {RequiredError}
|
|
3024
3114
|
*/
|
|
3025
|
-
listCompanyEvidenceV1EvidenceCompanyCompanyIdGet: (companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3115
|
+
listCompanyEvidenceV1EvidenceCompanyCompanyIdGet: (companyId: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3026
3116
|
/**
|
|
3027
3117
|
*
|
|
3028
3118
|
* @summary Update Evidence
|
|
@@ -3086,13 +3176,13 @@ export declare const EvidenceApiFp: (configuration?: Configuration) => {
|
|
|
3086
3176
|
/**
|
|
3087
3177
|
*
|
|
3088
3178
|
* @summary List Company Evidence
|
|
3089
|
-
* @param {string} companyId
|
|
3179
|
+
* @param {string | null} companyId
|
|
3090
3180
|
* @param {string} [authorization]
|
|
3091
3181
|
* @param {string} [sessionId]
|
|
3092
3182
|
* @param {*} [options] Override http request option.
|
|
3093
3183
|
* @throws {RequiredError}
|
|
3094
3184
|
*/
|
|
3095
|
-
listCompanyEvidenceV1EvidenceCompanyCompanyIdGet(companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EvidenceBase>>>;
|
|
3185
|
+
listCompanyEvidenceV1EvidenceCompanyCompanyIdGet(companyId: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EvidenceBase>>>;
|
|
3096
3186
|
/**
|
|
3097
3187
|
*
|
|
3098
3188
|
* @summary Update Evidence
|
|
@@ -3156,13 +3246,13 @@ export declare const EvidenceApiFactory: (configuration?: Configuration, basePat
|
|
|
3156
3246
|
/**
|
|
3157
3247
|
*
|
|
3158
3248
|
* @summary List Company Evidence
|
|
3159
|
-
* @param {string} companyId
|
|
3249
|
+
* @param {string | null} companyId
|
|
3160
3250
|
* @param {string} [authorization]
|
|
3161
3251
|
* @param {string} [sessionId]
|
|
3162
3252
|
* @param {*} [options] Override http request option.
|
|
3163
3253
|
* @throws {RequiredError}
|
|
3164
3254
|
*/
|
|
3165
|
-
listCompanyEvidenceV1EvidenceCompanyCompanyIdGet(companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<EvidenceBase>>;
|
|
3255
|
+
listCompanyEvidenceV1EvidenceCompanyCompanyIdGet(companyId: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<EvidenceBase>>;
|
|
3166
3256
|
/**
|
|
3167
3257
|
*
|
|
3168
3258
|
* @summary Update Evidence
|
|
@@ -3231,14 +3321,14 @@ export declare class EvidenceApi extends BaseAPI {
|
|
|
3231
3321
|
/**
|
|
3232
3322
|
*
|
|
3233
3323
|
* @summary List Company Evidence
|
|
3234
|
-
* @param {string} companyId
|
|
3324
|
+
* @param {string | null} companyId
|
|
3235
3325
|
* @param {string} [authorization]
|
|
3236
3326
|
* @param {string} [sessionId]
|
|
3237
3327
|
* @param {*} [options] Override http request option.
|
|
3238
3328
|
* @throws {RequiredError}
|
|
3239
3329
|
* @memberof EvidenceApi
|
|
3240
3330
|
*/
|
|
3241
|
-
listCompanyEvidenceV1EvidenceCompanyCompanyIdGet(companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EvidenceBase[], any, {}>>;
|
|
3331
|
+
listCompanyEvidenceV1EvidenceCompanyCompanyIdGet(companyId: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EvidenceBase[], any, {}>>;
|
|
3242
3332
|
/**
|
|
3243
3333
|
*
|
|
3244
3334
|
* @summary Update Evidence
|
|
@@ -3653,10 +3743,20 @@ export declare const ReportsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3653
3743
|
* @throws {RequiredError}
|
|
3654
3744
|
*/
|
|
3655
3745
|
getEvidenceV1ReportsEvidenceReportIdEvidenceIdGet: (reportId: string, evidenceId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3746
|
+
/**
|
|
3747
|
+
* Check the status of a report generation background job
|
|
3748
|
+
* @summary Get Report Generation Status
|
|
3749
|
+
* @param {string} taskId
|
|
3750
|
+
* @param {string} [authorization]
|
|
3751
|
+
* @param {string} [sessionId]
|
|
3752
|
+
* @param {*} [options] Override http request option.
|
|
3753
|
+
* @throws {RequiredError}
|
|
3754
|
+
*/
|
|
3755
|
+
getReportGenerationStatusV1ReportsGenerateTaskIdStatusGet: (taskId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3656
3756
|
/**
|
|
3657
3757
|
*
|
|
3658
3758
|
* @summary List Reports
|
|
3659
|
-
* @param {string} companyId
|
|
3759
|
+
* @param {string | null} companyId
|
|
3660
3760
|
* @param {number} [page]
|
|
3661
3761
|
* @param {number} [elements]
|
|
3662
3762
|
* @param {string} [authorization]
|
|
@@ -3664,7 +3764,7 @@ export declare const ReportsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3664
3764
|
* @param {*} [options] Override http request option.
|
|
3665
3765
|
* @throws {RequiredError}
|
|
3666
3766
|
*/
|
|
3667
|
-
listReportsV1ReportsListCompanyIdGet: (companyId: string, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3767
|
+
listReportsV1ReportsListCompanyIdGet: (companyId: string | null, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3668
3768
|
};
|
|
3669
3769
|
/**
|
|
3670
3770
|
* ReportsApi - functional programming interface
|
|
@@ -3704,10 +3804,20 @@ export declare const ReportsApiFp: (configuration?: Configuration) => {
|
|
|
3704
3804
|
* @throws {RequiredError}
|
|
3705
3805
|
*/
|
|
3706
3806
|
getEvidenceV1ReportsEvidenceReportIdEvidenceIdGet(reportId: string, evidenceId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FileDownload>>>;
|
|
3807
|
+
/**
|
|
3808
|
+
* Check the status of a report generation background job
|
|
3809
|
+
* @summary Get Report Generation Status
|
|
3810
|
+
* @param {string} taskId
|
|
3811
|
+
* @param {string} [authorization]
|
|
3812
|
+
* @param {string} [sessionId]
|
|
3813
|
+
* @param {*} [options] Override http request option.
|
|
3814
|
+
* @throws {RequiredError}
|
|
3815
|
+
*/
|
|
3816
|
+
getReportGenerationStatusV1ReportsGenerateTaskIdStatusGet(taskId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusResponse>>;
|
|
3707
3817
|
/**
|
|
3708
3818
|
*
|
|
3709
3819
|
* @summary List Reports
|
|
3710
|
-
* @param {string} companyId
|
|
3820
|
+
* @param {string | null} companyId
|
|
3711
3821
|
* @param {number} [page]
|
|
3712
3822
|
* @param {number} [elements]
|
|
3713
3823
|
* @param {string} [authorization]
|
|
@@ -3715,7 +3825,7 @@ export declare const ReportsApiFp: (configuration?: Configuration) => {
|
|
|
3715
3825
|
* @param {*} [options] Override http request option.
|
|
3716
3826
|
* @throws {RequiredError}
|
|
3717
3827
|
*/
|
|
3718
|
-
listReportsV1ReportsListCompanyIdGet(companyId: string, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginationResponseReportBase>>;
|
|
3828
|
+
listReportsV1ReportsListCompanyIdGet(companyId: string | null, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginationResponseReportBase>>;
|
|
3719
3829
|
};
|
|
3720
3830
|
/**
|
|
3721
3831
|
* ReportsApi - factory interface
|
|
@@ -3755,10 +3865,20 @@ export declare const ReportsApiFactory: (configuration?: Configuration, basePath
|
|
|
3755
3865
|
* @throws {RequiredError}
|
|
3756
3866
|
*/
|
|
3757
3867
|
getEvidenceV1ReportsEvidenceReportIdEvidenceIdGet(reportId: string, evidenceId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<FileDownload>>;
|
|
3868
|
+
/**
|
|
3869
|
+
* Check the status of a report generation background job
|
|
3870
|
+
* @summary Get Report Generation Status
|
|
3871
|
+
* @param {string} taskId
|
|
3872
|
+
* @param {string} [authorization]
|
|
3873
|
+
* @param {string} [sessionId]
|
|
3874
|
+
* @param {*} [options] Override http request option.
|
|
3875
|
+
* @throws {RequiredError}
|
|
3876
|
+
*/
|
|
3877
|
+
getReportGenerationStatusV1ReportsGenerateTaskIdStatusGet(taskId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<TaskStatusResponse>;
|
|
3758
3878
|
/**
|
|
3759
3879
|
*
|
|
3760
3880
|
* @summary List Reports
|
|
3761
|
-
* @param {string} companyId
|
|
3881
|
+
* @param {string | null} companyId
|
|
3762
3882
|
* @param {number} [page]
|
|
3763
3883
|
* @param {number} [elements]
|
|
3764
3884
|
* @param {string} [authorization]
|
|
@@ -3766,7 +3886,7 @@ export declare const ReportsApiFactory: (configuration?: Configuration, basePath
|
|
|
3766
3886
|
* @param {*} [options] Override http request option.
|
|
3767
3887
|
* @throws {RequiredError}
|
|
3768
3888
|
*/
|
|
3769
|
-
listReportsV1ReportsListCompanyIdGet(companyId: string, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<PaginationResponseReportBase>;
|
|
3889
|
+
listReportsV1ReportsListCompanyIdGet(companyId: string | null, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<PaginationResponseReportBase>;
|
|
3770
3890
|
};
|
|
3771
3891
|
/**
|
|
3772
3892
|
* ReportsApi - object-oriented interface
|
|
@@ -3811,10 +3931,21 @@ export declare class ReportsApi extends BaseAPI {
|
|
|
3811
3931
|
* @memberof ReportsApi
|
|
3812
3932
|
*/
|
|
3813
3933
|
getEvidenceV1ReportsEvidenceReportIdEvidenceIdGet(reportId: string, evidenceId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileDownload[], any, {}>>;
|
|
3934
|
+
/**
|
|
3935
|
+
* Check the status of a report generation background job
|
|
3936
|
+
* @summary Get Report Generation Status
|
|
3937
|
+
* @param {string} taskId
|
|
3938
|
+
* @param {string} [authorization]
|
|
3939
|
+
* @param {string} [sessionId]
|
|
3940
|
+
* @param {*} [options] Override http request option.
|
|
3941
|
+
* @throws {RequiredError}
|
|
3942
|
+
* @memberof ReportsApi
|
|
3943
|
+
*/
|
|
3944
|
+
getReportGenerationStatusV1ReportsGenerateTaskIdStatusGet(taskId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskStatusResponse, any, {}>>;
|
|
3814
3945
|
/**
|
|
3815
3946
|
*
|
|
3816
3947
|
* @summary List Reports
|
|
3817
|
-
* @param {string} companyId
|
|
3948
|
+
* @param {string | null} companyId
|
|
3818
3949
|
* @param {number} [page]
|
|
3819
3950
|
* @param {number} [elements]
|
|
3820
3951
|
* @param {string} [authorization]
|
|
@@ -3823,7 +3954,7 @@ export declare class ReportsApi extends BaseAPI {
|
|
|
3823
3954
|
* @throws {RequiredError}
|
|
3824
3955
|
* @memberof ReportsApi
|
|
3825
3956
|
*/
|
|
3826
|
-
listReportsV1ReportsListCompanyIdGet(companyId: string, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginationResponseReportBase, any, {}>>;
|
|
3957
|
+
listReportsV1ReportsListCompanyIdGet(companyId: string | null, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginationResponseReportBase, any, {}>>;
|
|
3827
3958
|
}
|
|
3828
3959
|
/**
|
|
3829
3960
|
* RolesApi - axios parameter creator
|
|
@@ -3833,43 +3964,45 @@ export declare const RolesApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3833
3964
|
/**
|
|
3834
3965
|
*
|
|
3835
3966
|
* @summary Get User Permissions
|
|
3836
|
-
* @param {string} companyId
|
|
3967
|
+
* @param {string | null} companyId
|
|
3837
3968
|
* @param {string} [authorization]
|
|
3838
3969
|
* @param {string} [sessionId]
|
|
3839
3970
|
* @param {*} [options] Override http request option.
|
|
3840
3971
|
* @throws {RequiredError}
|
|
3841
3972
|
*/
|
|
3842
|
-
getUserPermissionsV1RolesCompanyIdMeGet: (companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3973
|
+
getUserPermissionsV1RolesCompanyIdMeGet: (companyId: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3843
3974
|
/**
|
|
3844
3975
|
*
|
|
3845
3976
|
* @summary Get Users
|
|
3846
|
-
* @param {string} companyId
|
|
3977
|
+
* @param {string | null} companyId
|
|
3847
3978
|
* @param {string} [authorization]
|
|
3848
3979
|
* @param {string} [sessionId]
|
|
3849
3980
|
* @param {*} [options] Override http request option.
|
|
3850
3981
|
* @throws {RequiredError}
|
|
3851
3982
|
*/
|
|
3852
|
-
getUsersV1RolesCompanyIdUsersGet: (companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3983
|
+
getUsersV1RolesCompanyIdUsersGet: (companyId: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3853
3984
|
/**
|
|
3854
3985
|
*
|
|
3855
3986
|
* @summary Invite
|
|
3856
3987
|
* @param {InviteToCompany} inviteToCompany
|
|
3988
|
+
* @param {string | null} [companyId]
|
|
3857
3989
|
* @param {string} [authorization]
|
|
3858
3990
|
* @param {string} [sessionId]
|
|
3859
3991
|
* @param {*} [options] Override http request option.
|
|
3860
3992
|
* @throws {RequiredError}
|
|
3861
3993
|
*/
|
|
3862
|
-
inviteV1RolesInvitesPost: (inviteToCompany: InviteToCompany, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3994
|
+
inviteV1RolesInvitesPost: (inviteToCompany: InviteToCompany, companyId?: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3863
3995
|
/**
|
|
3864
3996
|
*
|
|
3865
3997
|
* @summary Remove People
|
|
3866
3998
|
* @param {RemoveFromCompany} removeFromCompany
|
|
3999
|
+
* @param {string | null} [companyId]
|
|
3867
4000
|
* @param {string} [authorization]
|
|
3868
4001
|
* @param {string} [sessionId]
|
|
3869
4002
|
* @param {*} [options] Override http request option.
|
|
3870
4003
|
* @throws {RequiredError}
|
|
3871
4004
|
*/
|
|
3872
|
-
removePeopleV1RolesInvitesDelete: (removeFromCompany: RemoveFromCompany, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4005
|
+
removePeopleV1RolesInvitesDelete: (removeFromCompany: RemoveFromCompany, companyId?: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3873
4006
|
};
|
|
3874
4007
|
/**
|
|
3875
4008
|
* RolesApi - functional programming interface
|
|
@@ -3879,43 +4012,45 @@ export declare const RolesApiFp: (configuration?: Configuration) => {
|
|
|
3879
4012
|
/**
|
|
3880
4013
|
*
|
|
3881
4014
|
* @summary Get User Permissions
|
|
3882
|
-
* @param {string} companyId
|
|
4015
|
+
* @param {string | null} companyId
|
|
3883
4016
|
* @param {string} [authorization]
|
|
3884
4017
|
* @param {string} [sessionId]
|
|
3885
4018
|
* @param {*} [options] Override http request option.
|
|
3886
4019
|
* @throws {RequiredError}
|
|
3887
4020
|
*/
|
|
3888
|
-
getUserPermissionsV1RolesCompanyIdMeGet(companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PermissionResponse>>;
|
|
4021
|
+
getUserPermissionsV1RolesCompanyIdMeGet(companyId: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PermissionResponse>>;
|
|
3889
4022
|
/**
|
|
3890
4023
|
*
|
|
3891
4024
|
* @summary Get Users
|
|
3892
|
-
* @param {string} companyId
|
|
4025
|
+
* @param {string | null} companyId
|
|
3893
4026
|
* @param {string} [authorization]
|
|
3894
4027
|
* @param {string} [sessionId]
|
|
3895
4028
|
* @param {*} [options] Override http request option.
|
|
3896
4029
|
* @throws {RequiredError}
|
|
3897
4030
|
*/
|
|
3898
|
-
getUsersV1RolesCompanyIdUsersGet(companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<UserWithId>>>;
|
|
4031
|
+
getUsersV1RolesCompanyIdUsersGet(companyId: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<UserWithId>>>;
|
|
3899
4032
|
/**
|
|
3900
4033
|
*
|
|
3901
4034
|
* @summary Invite
|
|
3902
4035
|
* @param {InviteToCompany} inviteToCompany
|
|
4036
|
+
* @param {string | null} [companyId]
|
|
3903
4037
|
* @param {string} [authorization]
|
|
3904
4038
|
* @param {string} [sessionId]
|
|
3905
4039
|
* @param {*} [options] Override http request option.
|
|
3906
4040
|
* @throws {RequiredError}
|
|
3907
4041
|
*/
|
|
3908
|
-
inviteV1RolesInvitesPost(inviteToCompany: InviteToCompany, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Details>>;
|
|
4042
|
+
inviteV1RolesInvitesPost(inviteToCompany: InviteToCompany, companyId?: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Details>>;
|
|
3909
4043
|
/**
|
|
3910
4044
|
*
|
|
3911
4045
|
* @summary Remove People
|
|
3912
4046
|
* @param {RemoveFromCompany} removeFromCompany
|
|
4047
|
+
* @param {string | null} [companyId]
|
|
3913
4048
|
* @param {string} [authorization]
|
|
3914
4049
|
* @param {string} [sessionId]
|
|
3915
4050
|
* @param {*} [options] Override http request option.
|
|
3916
4051
|
* @throws {RequiredError}
|
|
3917
4052
|
*/
|
|
3918
|
-
removePeopleV1RolesInvitesDelete(removeFromCompany: RemoveFromCompany, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Details>>;
|
|
4053
|
+
removePeopleV1RolesInvitesDelete(removeFromCompany: RemoveFromCompany, companyId?: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Details>>;
|
|
3919
4054
|
};
|
|
3920
4055
|
/**
|
|
3921
4056
|
* RolesApi - factory interface
|
|
@@ -3925,43 +4060,45 @@ export declare const RolesApiFactory: (configuration?: Configuration, basePath?:
|
|
|
3925
4060
|
/**
|
|
3926
4061
|
*
|
|
3927
4062
|
* @summary Get User Permissions
|
|
3928
|
-
* @param {string} companyId
|
|
4063
|
+
* @param {string | null} companyId
|
|
3929
4064
|
* @param {string} [authorization]
|
|
3930
4065
|
* @param {string} [sessionId]
|
|
3931
4066
|
* @param {*} [options] Override http request option.
|
|
3932
4067
|
* @throws {RequiredError}
|
|
3933
4068
|
*/
|
|
3934
|
-
getUserPermissionsV1RolesCompanyIdMeGet(companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<PermissionResponse>;
|
|
4069
|
+
getUserPermissionsV1RolesCompanyIdMeGet(companyId: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<PermissionResponse>;
|
|
3935
4070
|
/**
|
|
3936
4071
|
*
|
|
3937
4072
|
* @summary Get Users
|
|
3938
|
-
* @param {string} companyId
|
|
4073
|
+
* @param {string | null} companyId
|
|
3939
4074
|
* @param {string} [authorization]
|
|
3940
4075
|
* @param {string} [sessionId]
|
|
3941
4076
|
* @param {*} [options] Override http request option.
|
|
3942
4077
|
* @throws {RequiredError}
|
|
3943
4078
|
*/
|
|
3944
|
-
getUsersV1RolesCompanyIdUsersGet(companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<UserWithId>>;
|
|
4079
|
+
getUsersV1RolesCompanyIdUsersGet(companyId: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<UserWithId>>;
|
|
3945
4080
|
/**
|
|
3946
4081
|
*
|
|
3947
4082
|
* @summary Invite
|
|
3948
4083
|
* @param {InviteToCompany} inviteToCompany
|
|
4084
|
+
* @param {string | null} [companyId]
|
|
3949
4085
|
* @param {string} [authorization]
|
|
3950
4086
|
* @param {string} [sessionId]
|
|
3951
4087
|
* @param {*} [options] Override http request option.
|
|
3952
4088
|
* @throws {RequiredError}
|
|
3953
4089
|
*/
|
|
3954
|
-
inviteV1RolesInvitesPost(inviteToCompany: InviteToCompany, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<Details>;
|
|
4090
|
+
inviteV1RolesInvitesPost(inviteToCompany: InviteToCompany, companyId?: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<Details>;
|
|
3955
4091
|
/**
|
|
3956
4092
|
*
|
|
3957
4093
|
* @summary Remove People
|
|
3958
4094
|
* @param {RemoveFromCompany} removeFromCompany
|
|
4095
|
+
* @param {string | null} [companyId]
|
|
3959
4096
|
* @param {string} [authorization]
|
|
3960
4097
|
* @param {string} [sessionId]
|
|
3961
4098
|
* @param {*} [options] Override http request option.
|
|
3962
4099
|
* @throws {RequiredError}
|
|
3963
4100
|
*/
|
|
3964
|
-
removePeopleV1RolesInvitesDelete(removeFromCompany: RemoveFromCompany, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<Details>;
|
|
4101
|
+
removePeopleV1RolesInvitesDelete(removeFromCompany: RemoveFromCompany, companyId?: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<Details>;
|
|
3965
4102
|
};
|
|
3966
4103
|
/**
|
|
3967
4104
|
* RolesApi - object-oriented interface
|
|
@@ -3973,47 +4110,49 @@ export declare class RolesApi extends BaseAPI {
|
|
|
3973
4110
|
/**
|
|
3974
4111
|
*
|
|
3975
4112
|
* @summary Get User Permissions
|
|
3976
|
-
* @param {string} companyId
|
|
4113
|
+
* @param {string | null} companyId
|
|
3977
4114
|
* @param {string} [authorization]
|
|
3978
4115
|
* @param {string} [sessionId]
|
|
3979
4116
|
* @param {*} [options] Override http request option.
|
|
3980
4117
|
* @throws {RequiredError}
|
|
3981
4118
|
* @memberof RolesApi
|
|
3982
4119
|
*/
|
|
3983
|
-
getUserPermissionsV1RolesCompanyIdMeGet(companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PermissionResponse, any, {}>>;
|
|
4120
|
+
getUserPermissionsV1RolesCompanyIdMeGet(companyId: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PermissionResponse, any, {}>>;
|
|
3984
4121
|
/**
|
|
3985
4122
|
*
|
|
3986
4123
|
* @summary Get Users
|
|
3987
|
-
* @param {string} companyId
|
|
4124
|
+
* @param {string | null} companyId
|
|
3988
4125
|
* @param {string} [authorization]
|
|
3989
4126
|
* @param {string} [sessionId]
|
|
3990
4127
|
* @param {*} [options] Override http request option.
|
|
3991
4128
|
* @throws {RequiredError}
|
|
3992
4129
|
* @memberof RolesApi
|
|
3993
4130
|
*/
|
|
3994
|
-
getUsersV1RolesCompanyIdUsersGet(companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserWithId[], any, {}>>;
|
|
4131
|
+
getUsersV1RolesCompanyIdUsersGet(companyId: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserWithId[], any, {}>>;
|
|
3995
4132
|
/**
|
|
3996
4133
|
*
|
|
3997
4134
|
* @summary Invite
|
|
3998
4135
|
* @param {InviteToCompany} inviteToCompany
|
|
4136
|
+
* @param {string | null} [companyId]
|
|
3999
4137
|
* @param {string} [authorization]
|
|
4000
4138
|
* @param {string} [sessionId]
|
|
4001
4139
|
* @param {*} [options] Override http request option.
|
|
4002
4140
|
* @throws {RequiredError}
|
|
4003
4141
|
* @memberof RolesApi
|
|
4004
4142
|
*/
|
|
4005
|
-
inviteV1RolesInvitesPost(inviteToCompany: InviteToCompany, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
|
|
4143
|
+
inviteV1RolesInvitesPost(inviteToCompany: InviteToCompany, companyId?: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
|
|
4006
4144
|
/**
|
|
4007
4145
|
*
|
|
4008
4146
|
* @summary Remove People
|
|
4009
4147
|
* @param {RemoveFromCompany} removeFromCompany
|
|
4148
|
+
* @param {string | null} [companyId]
|
|
4010
4149
|
* @param {string} [authorization]
|
|
4011
4150
|
* @param {string} [sessionId]
|
|
4012
4151
|
* @param {*} [options] Override http request option.
|
|
4013
4152
|
* @throws {RequiredError}
|
|
4014
4153
|
* @memberof RolesApi
|
|
4015
4154
|
*/
|
|
4016
|
-
removePeopleV1RolesInvitesDelete(removeFromCompany: RemoveFromCompany, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
|
|
4155
|
+
removePeopleV1RolesInvitesDelete(removeFromCompany: RemoveFromCompany, companyId?: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
|
|
4017
4156
|
}
|
|
4018
4157
|
/**
|
|
4019
4158
|
* TasksApi - axios parameter creator
|
|
@@ -4040,6 +4179,16 @@ export declare const TasksApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
4040
4179
|
* @throws {RequiredError}
|
|
4041
4180
|
*/
|
|
4042
4181
|
deleteTaskV1TasksDelete: (deleteTaskSchema: DeleteTaskSchema, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4182
|
+
/**
|
|
4183
|
+
* Check the status of a task scheduler background job
|
|
4184
|
+
* @summary Get Task Scheduler Status
|
|
4185
|
+
* @param {string} taskId
|
|
4186
|
+
* @param {string} [authorization]
|
|
4187
|
+
* @param {string} [sessionId]
|
|
4188
|
+
* @param {*} [options] Override http request option.
|
|
4189
|
+
* @throws {RequiredError}
|
|
4190
|
+
*/
|
|
4191
|
+
getTaskSchedulerStatusV1TasksScheduleTaskIdStatusGet: (taskId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4043
4192
|
/**
|
|
4044
4193
|
*
|
|
4045
4194
|
* @summary Get Task
|
|
@@ -4142,6 +4291,16 @@ export declare const TasksApiFp: (configuration?: Configuration) => {
|
|
|
4142
4291
|
* @throws {RequiredError}
|
|
4143
4292
|
*/
|
|
4144
4293
|
deleteTaskV1TasksDelete(deleteTaskSchema: DeleteTaskSchema, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Details>>;
|
|
4294
|
+
/**
|
|
4295
|
+
* Check the status of a task scheduler background job
|
|
4296
|
+
* @summary Get Task Scheduler Status
|
|
4297
|
+
* @param {string} taskId
|
|
4298
|
+
* @param {string} [authorization]
|
|
4299
|
+
* @param {string} [sessionId]
|
|
4300
|
+
* @param {*} [options] Override http request option.
|
|
4301
|
+
* @throws {RequiredError}
|
|
4302
|
+
*/
|
|
4303
|
+
getTaskSchedulerStatusV1TasksScheduleTaskIdStatusGet(taskId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusResponse>>;
|
|
4145
4304
|
/**
|
|
4146
4305
|
*
|
|
4147
4306
|
* @summary Get Task
|
|
@@ -4197,7 +4356,7 @@ export declare const TasksApiFp: (configuration?: Configuration) => {
|
|
|
4197
4356
|
* @param {*} [options] Override http request option.
|
|
4198
4357
|
* @throws {RequiredError}
|
|
4199
4358
|
*/
|
|
4200
|
-
requestTaskSchedulingV1TasksSchedulePost(schedulerRequest: SchedulerRequest, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4359
|
+
requestTaskSchedulingV1TasksSchedulePost(schedulerRequest: SchedulerRequest, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SchedulerResponse>>;
|
|
4201
4360
|
/**
|
|
4202
4361
|
*
|
|
4203
4362
|
* @summary Update Task Status
|
|
@@ -4244,6 +4403,16 @@ export declare const TasksApiFactory: (configuration?: Configuration, basePath?:
|
|
|
4244
4403
|
* @throws {RequiredError}
|
|
4245
4404
|
*/
|
|
4246
4405
|
deleteTaskV1TasksDelete(deleteTaskSchema: DeleteTaskSchema, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<Details>;
|
|
4406
|
+
/**
|
|
4407
|
+
* Check the status of a task scheduler background job
|
|
4408
|
+
* @summary Get Task Scheduler Status
|
|
4409
|
+
* @param {string} taskId
|
|
4410
|
+
* @param {string} [authorization]
|
|
4411
|
+
* @param {string} [sessionId]
|
|
4412
|
+
* @param {*} [options] Override http request option.
|
|
4413
|
+
* @throws {RequiredError}
|
|
4414
|
+
*/
|
|
4415
|
+
getTaskSchedulerStatusV1TasksScheduleTaskIdStatusGet(taskId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<TaskStatusResponse>;
|
|
4247
4416
|
/**
|
|
4248
4417
|
*
|
|
4249
4418
|
* @summary Get Task
|
|
@@ -4299,7 +4468,7 @@ export declare const TasksApiFactory: (configuration?: Configuration, basePath?:
|
|
|
4299
4468
|
* @param {*} [options] Override http request option.
|
|
4300
4469
|
* @throws {RequiredError}
|
|
4301
4470
|
*/
|
|
4302
|
-
requestTaskSchedulingV1TasksSchedulePost(schedulerRequest: SchedulerRequest, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
4471
|
+
requestTaskSchedulingV1TasksSchedulePost(schedulerRequest: SchedulerRequest, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<SchedulerResponse>;
|
|
4303
4472
|
/**
|
|
4304
4473
|
*
|
|
4305
4474
|
* @summary Update Task Status
|
|
@@ -4350,6 +4519,17 @@ export declare class TasksApi extends BaseAPI {
|
|
|
4350
4519
|
* @memberof TasksApi
|
|
4351
4520
|
*/
|
|
4352
4521
|
deleteTaskV1TasksDelete(deleteTaskSchema: DeleteTaskSchema, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
|
|
4522
|
+
/**
|
|
4523
|
+
* Check the status of a task scheduler background job
|
|
4524
|
+
* @summary Get Task Scheduler Status
|
|
4525
|
+
* @param {string} taskId
|
|
4526
|
+
* @param {string} [authorization]
|
|
4527
|
+
* @param {string} [sessionId]
|
|
4528
|
+
* @param {*} [options] Override http request option.
|
|
4529
|
+
* @throws {RequiredError}
|
|
4530
|
+
* @memberof TasksApi
|
|
4531
|
+
*/
|
|
4532
|
+
getTaskSchedulerStatusV1TasksScheduleTaskIdStatusGet(taskId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskStatusResponse, any, {}>>;
|
|
4353
4533
|
/**
|
|
4354
4534
|
*
|
|
4355
4535
|
* @summary Get Task
|
|
@@ -4409,7 +4589,7 @@ export declare class TasksApi extends BaseAPI {
|
|
|
4409
4589
|
* @throws {RequiredError}
|
|
4410
4590
|
* @memberof TasksApi
|
|
4411
4591
|
*/
|
|
4412
|
-
requestTaskSchedulingV1TasksSchedulePost(schedulerRequest: SchedulerRequest, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
4592
|
+
requestTaskSchedulingV1TasksSchedulePost(schedulerRequest: SchedulerRequest, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SchedulerResponse, any, {}>>;
|
|
4413
4593
|
/**
|
|
4414
4594
|
*
|
|
4415
4595
|
* @summary Update Task Status
|