@rasadov/lumoar-sdk 1.2.6 → 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 +343 -71
- package/dist/api.d.ts +247 -63
- package/dist/api.js +220 -45
- package/docs/ReportBase.md +8 -0
- package/docs/ReportGenerate.md +2 -0
- package/docs/ReportsApi.md +62 -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
|
|
@@ -3635,12 +3725,13 @@ export declare const ReportsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3635
3725
|
* @summary Generate Report
|
|
3636
3726
|
* @param {string} companyId
|
|
3637
3727
|
* @param {ReportType} reportType
|
|
3728
|
+
* @param {string | null} [title]
|
|
3638
3729
|
* @param {string} [authorization]
|
|
3639
3730
|
* @param {string} [sessionId]
|
|
3640
3731
|
* @param {*} [options] Override http request option.
|
|
3641
3732
|
* @throws {RequiredError}
|
|
3642
3733
|
*/
|
|
3643
|
-
generateReportV1ReportsGeneratePost: (companyId: string, reportType: ReportType, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3734
|
+
generateReportV1ReportsGeneratePost: (companyId: string, reportType: ReportType, title?: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3644
3735
|
/**
|
|
3645
3736
|
*
|
|
3646
3737
|
* @summary Get Evidence
|
|
@@ -3652,10 +3743,20 @@ export declare const ReportsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3652
3743
|
* @throws {RequiredError}
|
|
3653
3744
|
*/
|
|
3654
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>;
|
|
3655
3756
|
/**
|
|
3656
3757
|
*
|
|
3657
3758
|
* @summary List Reports
|
|
3658
|
-
* @param {string} companyId
|
|
3759
|
+
* @param {string | null} companyId
|
|
3659
3760
|
* @param {number} [page]
|
|
3660
3761
|
* @param {number} [elements]
|
|
3661
3762
|
* @param {string} [authorization]
|
|
@@ -3663,7 +3764,7 @@ export declare const ReportsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3663
3764
|
* @param {*} [options] Override http request option.
|
|
3664
3765
|
* @throws {RequiredError}
|
|
3665
3766
|
*/
|
|
3666
|
-
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>;
|
|
3667
3768
|
};
|
|
3668
3769
|
/**
|
|
3669
3770
|
* ReportsApi - functional programming interface
|
|
@@ -3685,12 +3786,13 @@ export declare const ReportsApiFp: (configuration?: Configuration) => {
|
|
|
3685
3786
|
* @summary Generate Report
|
|
3686
3787
|
* @param {string} companyId
|
|
3687
3788
|
* @param {ReportType} reportType
|
|
3789
|
+
* @param {string | null} [title]
|
|
3688
3790
|
* @param {string} [authorization]
|
|
3689
3791
|
* @param {string} [sessionId]
|
|
3690
3792
|
* @param {*} [options] Override http request option.
|
|
3691
3793
|
* @throws {RequiredError}
|
|
3692
3794
|
*/
|
|
3693
|
-
generateReportV1ReportsGeneratePost(companyId: string, reportType: ReportType, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportGenerate>>;
|
|
3795
|
+
generateReportV1ReportsGeneratePost(companyId: string, reportType: ReportType, title?: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportGenerate>>;
|
|
3694
3796
|
/**
|
|
3695
3797
|
*
|
|
3696
3798
|
* @summary Get Evidence
|
|
@@ -3702,10 +3804,20 @@ export declare const ReportsApiFp: (configuration?: Configuration) => {
|
|
|
3702
3804
|
* @throws {RequiredError}
|
|
3703
3805
|
*/
|
|
3704
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>>;
|
|
3705
3817
|
/**
|
|
3706
3818
|
*
|
|
3707
3819
|
* @summary List Reports
|
|
3708
|
-
* @param {string} companyId
|
|
3820
|
+
* @param {string | null} companyId
|
|
3709
3821
|
* @param {number} [page]
|
|
3710
3822
|
* @param {number} [elements]
|
|
3711
3823
|
* @param {string} [authorization]
|
|
@@ -3713,7 +3825,7 @@ export declare const ReportsApiFp: (configuration?: Configuration) => {
|
|
|
3713
3825
|
* @param {*} [options] Override http request option.
|
|
3714
3826
|
* @throws {RequiredError}
|
|
3715
3827
|
*/
|
|
3716
|
-
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>>;
|
|
3717
3829
|
};
|
|
3718
3830
|
/**
|
|
3719
3831
|
* ReportsApi - factory interface
|
|
@@ -3735,12 +3847,13 @@ export declare const ReportsApiFactory: (configuration?: Configuration, basePath
|
|
|
3735
3847
|
* @summary Generate Report
|
|
3736
3848
|
* @param {string} companyId
|
|
3737
3849
|
* @param {ReportType} reportType
|
|
3850
|
+
* @param {string | null} [title]
|
|
3738
3851
|
* @param {string} [authorization]
|
|
3739
3852
|
* @param {string} [sessionId]
|
|
3740
3853
|
* @param {*} [options] Override http request option.
|
|
3741
3854
|
* @throws {RequiredError}
|
|
3742
3855
|
*/
|
|
3743
|
-
generateReportV1ReportsGeneratePost(companyId: string, reportType: ReportType, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ReportGenerate>;
|
|
3856
|
+
generateReportV1ReportsGeneratePost(companyId: string, reportType: ReportType, title?: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ReportGenerate>;
|
|
3744
3857
|
/**
|
|
3745
3858
|
*
|
|
3746
3859
|
* @summary Get Evidence
|
|
@@ -3752,10 +3865,20 @@ export declare const ReportsApiFactory: (configuration?: Configuration, basePath
|
|
|
3752
3865
|
* @throws {RequiredError}
|
|
3753
3866
|
*/
|
|
3754
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>;
|
|
3755
3878
|
/**
|
|
3756
3879
|
*
|
|
3757
3880
|
* @summary List Reports
|
|
3758
|
-
* @param {string} companyId
|
|
3881
|
+
* @param {string | null} companyId
|
|
3759
3882
|
* @param {number} [page]
|
|
3760
3883
|
* @param {number} [elements]
|
|
3761
3884
|
* @param {string} [authorization]
|
|
@@ -3763,7 +3886,7 @@ export declare const ReportsApiFactory: (configuration?: Configuration, basePath
|
|
|
3763
3886
|
* @param {*} [options] Override http request option.
|
|
3764
3887
|
* @throws {RequiredError}
|
|
3765
3888
|
*/
|
|
3766
|
-
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>;
|
|
3767
3890
|
};
|
|
3768
3891
|
/**
|
|
3769
3892
|
* ReportsApi - object-oriented interface
|
|
@@ -3788,13 +3911,14 @@ export declare class ReportsApi extends BaseAPI {
|
|
|
3788
3911
|
* @summary Generate Report
|
|
3789
3912
|
* @param {string} companyId
|
|
3790
3913
|
* @param {ReportType} reportType
|
|
3914
|
+
* @param {string | null} [title]
|
|
3791
3915
|
* @param {string} [authorization]
|
|
3792
3916
|
* @param {string} [sessionId]
|
|
3793
3917
|
* @param {*} [options] Override http request option.
|
|
3794
3918
|
* @throws {RequiredError}
|
|
3795
3919
|
* @memberof ReportsApi
|
|
3796
3920
|
*/
|
|
3797
|
-
generateReportV1ReportsGeneratePost(companyId: string, reportType: ReportType, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportGenerate, any, {}>>;
|
|
3921
|
+
generateReportV1ReportsGeneratePost(companyId: string, reportType: ReportType, title?: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportGenerate, any, {}>>;
|
|
3798
3922
|
/**
|
|
3799
3923
|
*
|
|
3800
3924
|
* @summary Get Evidence
|
|
@@ -3807,10 +3931,21 @@ export declare class ReportsApi extends BaseAPI {
|
|
|
3807
3931
|
* @memberof ReportsApi
|
|
3808
3932
|
*/
|
|
3809
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, {}>>;
|
|
3810
3945
|
/**
|
|
3811
3946
|
*
|
|
3812
3947
|
* @summary List Reports
|
|
3813
|
-
* @param {string} companyId
|
|
3948
|
+
* @param {string | null} companyId
|
|
3814
3949
|
* @param {number} [page]
|
|
3815
3950
|
* @param {number} [elements]
|
|
3816
3951
|
* @param {string} [authorization]
|
|
@@ -3819,7 +3954,7 @@ export declare class ReportsApi extends BaseAPI {
|
|
|
3819
3954
|
* @throws {RequiredError}
|
|
3820
3955
|
* @memberof ReportsApi
|
|
3821
3956
|
*/
|
|
3822
|
-
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, {}>>;
|
|
3823
3958
|
}
|
|
3824
3959
|
/**
|
|
3825
3960
|
* RolesApi - axios parameter creator
|
|
@@ -3829,43 +3964,45 @@ export declare const RolesApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3829
3964
|
/**
|
|
3830
3965
|
*
|
|
3831
3966
|
* @summary Get User Permissions
|
|
3832
|
-
* @param {string} companyId
|
|
3967
|
+
* @param {string | null} companyId
|
|
3833
3968
|
* @param {string} [authorization]
|
|
3834
3969
|
* @param {string} [sessionId]
|
|
3835
3970
|
* @param {*} [options] Override http request option.
|
|
3836
3971
|
* @throws {RequiredError}
|
|
3837
3972
|
*/
|
|
3838
|
-
getUserPermissionsV1RolesCompanyIdMeGet: (companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3973
|
+
getUserPermissionsV1RolesCompanyIdMeGet: (companyId: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3839
3974
|
/**
|
|
3840
3975
|
*
|
|
3841
3976
|
* @summary Get Users
|
|
3842
|
-
* @param {string} companyId
|
|
3977
|
+
* @param {string | null} companyId
|
|
3843
3978
|
* @param {string} [authorization]
|
|
3844
3979
|
* @param {string} [sessionId]
|
|
3845
3980
|
* @param {*} [options] Override http request option.
|
|
3846
3981
|
* @throws {RequiredError}
|
|
3847
3982
|
*/
|
|
3848
|
-
getUsersV1RolesCompanyIdUsersGet: (companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3983
|
+
getUsersV1RolesCompanyIdUsersGet: (companyId: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3849
3984
|
/**
|
|
3850
3985
|
*
|
|
3851
3986
|
* @summary Invite
|
|
3852
3987
|
* @param {InviteToCompany} inviteToCompany
|
|
3988
|
+
* @param {string | null} [companyId]
|
|
3853
3989
|
* @param {string} [authorization]
|
|
3854
3990
|
* @param {string} [sessionId]
|
|
3855
3991
|
* @param {*} [options] Override http request option.
|
|
3856
3992
|
* @throws {RequiredError}
|
|
3857
3993
|
*/
|
|
3858
|
-
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>;
|
|
3859
3995
|
/**
|
|
3860
3996
|
*
|
|
3861
3997
|
* @summary Remove People
|
|
3862
3998
|
* @param {RemoveFromCompany} removeFromCompany
|
|
3999
|
+
* @param {string | null} [companyId]
|
|
3863
4000
|
* @param {string} [authorization]
|
|
3864
4001
|
* @param {string} [sessionId]
|
|
3865
4002
|
* @param {*} [options] Override http request option.
|
|
3866
4003
|
* @throws {RequiredError}
|
|
3867
4004
|
*/
|
|
3868
|
-
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>;
|
|
3869
4006
|
};
|
|
3870
4007
|
/**
|
|
3871
4008
|
* RolesApi - functional programming interface
|
|
@@ -3875,43 +4012,45 @@ export declare const RolesApiFp: (configuration?: Configuration) => {
|
|
|
3875
4012
|
/**
|
|
3876
4013
|
*
|
|
3877
4014
|
* @summary Get User Permissions
|
|
3878
|
-
* @param {string} companyId
|
|
4015
|
+
* @param {string | null} companyId
|
|
3879
4016
|
* @param {string} [authorization]
|
|
3880
4017
|
* @param {string} [sessionId]
|
|
3881
4018
|
* @param {*} [options] Override http request option.
|
|
3882
4019
|
* @throws {RequiredError}
|
|
3883
4020
|
*/
|
|
3884
|
-
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>>;
|
|
3885
4022
|
/**
|
|
3886
4023
|
*
|
|
3887
4024
|
* @summary Get Users
|
|
3888
|
-
* @param {string} companyId
|
|
4025
|
+
* @param {string | null} companyId
|
|
3889
4026
|
* @param {string} [authorization]
|
|
3890
4027
|
* @param {string} [sessionId]
|
|
3891
4028
|
* @param {*} [options] Override http request option.
|
|
3892
4029
|
* @throws {RequiredError}
|
|
3893
4030
|
*/
|
|
3894
|
-
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>>>;
|
|
3895
4032
|
/**
|
|
3896
4033
|
*
|
|
3897
4034
|
* @summary Invite
|
|
3898
4035
|
* @param {InviteToCompany} inviteToCompany
|
|
4036
|
+
* @param {string | null} [companyId]
|
|
3899
4037
|
* @param {string} [authorization]
|
|
3900
4038
|
* @param {string} [sessionId]
|
|
3901
4039
|
* @param {*} [options] Override http request option.
|
|
3902
4040
|
* @throws {RequiredError}
|
|
3903
4041
|
*/
|
|
3904
|
-
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>>;
|
|
3905
4043
|
/**
|
|
3906
4044
|
*
|
|
3907
4045
|
* @summary Remove People
|
|
3908
4046
|
* @param {RemoveFromCompany} removeFromCompany
|
|
4047
|
+
* @param {string | null} [companyId]
|
|
3909
4048
|
* @param {string} [authorization]
|
|
3910
4049
|
* @param {string} [sessionId]
|
|
3911
4050
|
* @param {*} [options] Override http request option.
|
|
3912
4051
|
* @throws {RequiredError}
|
|
3913
4052
|
*/
|
|
3914
|
-
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>>;
|
|
3915
4054
|
};
|
|
3916
4055
|
/**
|
|
3917
4056
|
* RolesApi - factory interface
|
|
@@ -3921,43 +4060,45 @@ export declare const RolesApiFactory: (configuration?: Configuration, basePath?:
|
|
|
3921
4060
|
/**
|
|
3922
4061
|
*
|
|
3923
4062
|
* @summary Get User Permissions
|
|
3924
|
-
* @param {string} companyId
|
|
4063
|
+
* @param {string | null} companyId
|
|
3925
4064
|
* @param {string} [authorization]
|
|
3926
4065
|
* @param {string} [sessionId]
|
|
3927
4066
|
* @param {*} [options] Override http request option.
|
|
3928
4067
|
* @throws {RequiredError}
|
|
3929
4068
|
*/
|
|
3930
|
-
getUserPermissionsV1RolesCompanyIdMeGet(companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<PermissionResponse>;
|
|
4069
|
+
getUserPermissionsV1RolesCompanyIdMeGet(companyId: string | null, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<PermissionResponse>;
|
|
3931
4070
|
/**
|
|
3932
4071
|
*
|
|
3933
4072
|
* @summary Get Users
|
|
3934
|
-
* @param {string} companyId
|
|
4073
|
+
* @param {string | null} companyId
|
|
3935
4074
|
* @param {string} [authorization]
|
|
3936
4075
|
* @param {string} [sessionId]
|
|
3937
4076
|
* @param {*} [options] Override http request option.
|
|
3938
4077
|
* @throws {RequiredError}
|
|
3939
4078
|
*/
|
|
3940
|
-
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>>;
|
|
3941
4080
|
/**
|
|
3942
4081
|
*
|
|
3943
4082
|
* @summary Invite
|
|
3944
4083
|
* @param {InviteToCompany} inviteToCompany
|
|
4084
|
+
* @param {string | null} [companyId]
|
|
3945
4085
|
* @param {string} [authorization]
|
|
3946
4086
|
* @param {string} [sessionId]
|
|
3947
4087
|
* @param {*} [options] Override http request option.
|
|
3948
4088
|
* @throws {RequiredError}
|
|
3949
4089
|
*/
|
|
3950
|
-
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>;
|
|
3951
4091
|
/**
|
|
3952
4092
|
*
|
|
3953
4093
|
* @summary Remove People
|
|
3954
4094
|
* @param {RemoveFromCompany} removeFromCompany
|
|
4095
|
+
* @param {string | null} [companyId]
|
|
3955
4096
|
* @param {string} [authorization]
|
|
3956
4097
|
* @param {string} [sessionId]
|
|
3957
4098
|
* @param {*} [options] Override http request option.
|
|
3958
4099
|
* @throws {RequiredError}
|
|
3959
4100
|
*/
|
|
3960
|
-
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>;
|
|
3961
4102
|
};
|
|
3962
4103
|
/**
|
|
3963
4104
|
* RolesApi - object-oriented interface
|
|
@@ -3969,47 +4110,49 @@ export declare class RolesApi extends BaseAPI {
|
|
|
3969
4110
|
/**
|
|
3970
4111
|
*
|
|
3971
4112
|
* @summary Get User Permissions
|
|
3972
|
-
* @param {string} companyId
|
|
4113
|
+
* @param {string | null} companyId
|
|
3973
4114
|
* @param {string} [authorization]
|
|
3974
4115
|
* @param {string} [sessionId]
|
|
3975
4116
|
* @param {*} [options] Override http request option.
|
|
3976
4117
|
* @throws {RequiredError}
|
|
3977
4118
|
* @memberof RolesApi
|
|
3978
4119
|
*/
|
|
3979
|
-
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, {}>>;
|
|
3980
4121
|
/**
|
|
3981
4122
|
*
|
|
3982
4123
|
* @summary Get Users
|
|
3983
|
-
* @param {string} companyId
|
|
4124
|
+
* @param {string | null} companyId
|
|
3984
4125
|
* @param {string} [authorization]
|
|
3985
4126
|
* @param {string} [sessionId]
|
|
3986
4127
|
* @param {*} [options] Override http request option.
|
|
3987
4128
|
* @throws {RequiredError}
|
|
3988
4129
|
* @memberof RolesApi
|
|
3989
4130
|
*/
|
|
3990
|
-
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, {}>>;
|
|
3991
4132
|
/**
|
|
3992
4133
|
*
|
|
3993
4134
|
* @summary Invite
|
|
3994
4135
|
* @param {InviteToCompany} inviteToCompany
|
|
4136
|
+
* @param {string | null} [companyId]
|
|
3995
4137
|
* @param {string} [authorization]
|
|
3996
4138
|
* @param {string} [sessionId]
|
|
3997
4139
|
* @param {*} [options] Override http request option.
|
|
3998
4140
|
* @throws {RequiredError}
|
|
3999
4141
|
* @memberof RolesApi
|
|
4000
4142
|
*/
|
|
4001
|
-
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, {}>>;
|
|
4002
4144
|
/**
|
|
4003
4145
|
*
|
|
4004
4146
|
* @summary Remove People
|
|
4005
4147
|
* @param {RemoveFromCompany} removeFromCompany
|
|
4148
|
+
* @param {string | null} [companyId]
|
|
4006
4149
|
* @param {string} [authorization]
|
|
4007
4150
|
* @param {string} [sessionId]
|
|
4008
4151
|
* @param {*} [options] Override http request option.
|
|
4009
4152
|
* @throws {RequiredError}
|
|
4010
4153
|
* @memberof RolesApi
|
|
4011
4154
|
*/
|
|
4012
|
-
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, {}>>;
|
|
4013
4156
|
}
|
|
4014
4157
|
/**
|
|
4015
4158
|
* TasksApi - axios parameter creator
|
|
@@ -4036,6 +4179,16 @@ export declare const TasksApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
4036
4179
|
* @throws {RequiredError}
|
|
4037
4180
|
*/
|
|
4038
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>;
|
|
4039
4192
|
/**
|
|
4040
4193
|
*
|
|
4041
4194
|
* @summary Get Task
|
|
@@ -4138,6 +4291,16 @@ export declare const TasksApiFp: (configuration?: Configuration) => {
|
|
|
4138
4291
|
* @throws {RequiredError}
|
|
4139
4292
|
*/
|
|
4140
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>>;
|
|
4141
4304
|
/**
|
|
4142
4305
|
*
|
|
4143
4306
|
* @summary Get Task
|
|
@@ -4193,7 +4356,7 @@ export declare const TasksApiFp: (configuration?: Configuration) => {
|
|
|
4193
4356
|
* @param {*} [options] Override http request option.
|
|
4194
4357
|
* @throws {RequiredError}
|
|
4195
4358
|
*/
|
|
4196
|
-
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>>;
|
|
4197
4360
|
/**
|
|
4198
4361
|
*
|
|
4199
4362
|
* @summary Update Task Status
|
|
@@ -4240,6 +4403,16 @@ export declare const TasksApiFactory: (configuration?: Configuration, basePath?:
|
|
|
4240
4403
|
* @throws {RequiredError}
|
|
4241
4404
|
*/
|
|
4242
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>;
|
|
4243
4416
|
/**
|
|
4244
4417
|
*
|
|
4245
4418
|
* @summary Get Task
|
|
@@ -4295,7 +4468,7 @@ export declare const TasksApiFactory: (configuration?: Configuration, basePath?:
|
|
|
4295
4468
|
* @param {*} [options] Override http request option.
|
|
4296
4469
|
* @throws {RequiredError}
|
|
4297
4470
|
*/
|
|
4298
|
-
requestTaskSchedulingV1TasksSchedulePost(schedulerRequest: SchedulerRequest, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
4471
|
+
requestTaskSchedulingV1TasksSchedulePost(schedulerRequest: SchedulerRequest, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<SchedulerResponse>;
|
|
4299
4472
|
/**
|
|
4300
4473
|
*
|
|
4301
4474
|
* @summary Update Task Status
|
|
@@ -4346,6 +4519,17 @@ export declare class TasksApi extends BaseAPI {
|
|
|
4346
4519
|
* @memberof TasksApi
|
|
4347
4520
|
*/
|
|
4348
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, {}>>;
|
|
4349
4533
|
/**
|
|
4350
4534
|
*
|
|
4351
4535
|
* @summary Get Task
|
|
@@ -4405,7 +4589,7 @@ export declare class TasksApi extends BaseAPI {
|
|
|
4405
4589
|
* @throws {RequiredError}
|
|
4406
4590
|
* @memberof TasksApi
|
|
4407
4591
|
*/
|
|
4408
|
-
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, {}>>;
|
|
4409
4593
|
/**
|
|
4410
4594
|
*
|
|
4411
4595
|
* @summary Update Task Status
|