@rasadov/lumoar-sdk 1.0.7 → 1.0.9
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 +13 -0
- package/api.ts +1366 -64
- package/dist/api.d.ts +849 -20
- package/dist/api.js +995 -63
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -1
- package/dist/sdk.d.ts +5 -1
- package/dist/sdk.js +5 -1
- package/docs/CreateTaskSchema.md +28 -0
- package/docs/DeleteTaskSchema.md +20 -0
- package/docs/DeliveryMethod.md +8 -0
- package/docs/PaginationResponseReportBase.md +22 -0
- package/docs/PaginationResponseTaskRead.md +22 -0
- package/docs/ReminderFrequency.md +12 -0
- package/docs/ReportBase.md +32 -0
- package/docs/ReportGenerate.md +20 -0
- package/docs/ReportsApi.md +254 -0
- package/docs/SchedulerRequest.md +32 -0
- package/docs/TaskRead.md +38 -0
- package/docs/TasksApi.md +371 -0
- package/docs/UpdateTaskSchema.md +28 -0
- package/index.ts +1 -1
- package/package.json +1 -1
- package/sdk.ts +8 -0
package/dist/api.d.ts
CHANGED
|
@@ -761,6 +761,43 @@ export interface ControlWithRelationships {
|
|
|
761
761
|
*/
|
|
762
762
|
'evidences'?: Array<EvidenceBase>;
|
|
763
763
|
}
|
|
764
|
+
/**
|
|
765
|
+
*
|
|
766
|
+
* @export
|
|
767
|
+
* @interface CreateTaskSchema
|
|
768
|
+
*/
|
|
769
|
+
export interface CreateTaskSchema {
|
|
770
|
+
/**
|
|
771
|
+
*
|
|
772
|
+
* @type {string}
|
|
773
|
+
* @memberof CreateTaskSchema
|
|
774
|
+
*/
|
|
775
|
+
'company_id': string;
|
|
776
|
+
/**
|
|
777
|
+
*
|
|
778
|
+
* @type {string}
|
|
779
|
+
* @memberof CreateTaskSchema
|
|
780
|
+
*/
|
|
781
|
+
'title': string;
|
|
782
|
+
/**
|
|
783
|
+
*
|
|
784
|
+
* @type {string}
|
|
785
|
+
* @memberof CreateTaskSchema
|
|
786
|
+
*/
|
|
787
|
+
'description': string;
|
|
788
|
+
/**
|
|
789
|
+
*
|
|
790
|
+
* @type {string}
|
|
791
|
+
* @memberof CreateTaskSchema
|
|
792
|
+
*/
|
|
793
|
+
'due_date': string;
|
|
794
|
+
/**
|
|
795
|
+
*
|
|
796
|
+
* @type {string}
|
|
797
|
+
* @memberof CreateTaskSchema
|
|
798
|
+
*/
|
|
799
|
+
'assigned_to_id': string;
|
|
800
|
+
}
|
|
764
801
|
/**
|
|
765
802
|
*
|
|
766
803
|
* @export
|
|
@@ -788,6 +825,28 @@ export interface CustomerPortalSession {
|
|
|
788
825
|
*/
|
|
789
826
|
'link': string;
|
|
790
827
|
}
|
|
828
|
+
/**
|
|
829
|
+
*
|
|
830
|
+
* @export
|
|
831
|
+
* @interface DeleteTaskSchema
|
|
832
|
+
*/
|
|
833
|
+
export interface DeleteTaskSchema {
|
|
834
|
+
/**
|
|
835
|
+
*
|
|
836
|
+
* @type {string}
|
|
837
|
+
* @memberof DeleteTaskSchema
|
|
838
|
+
*/
|
|
839
|
+
'id': string;
|
|
840
|
+
}
|
|
841
|
+
/**
|
|
842
|
+
*
|
|
843
|
+
* @export
|
|
844
|
+
* @enum {string}
|
|
845
|
+
*/
|
|
846
|
+
export declare const DeliveryMethod: {
|
|
847
|
+
readonly Email: "email";
|
|
848
|
+
};
|
|
849
|
+
export type DeliveryMethod = typeof DeliveryMethod[keyof typeof DeliveryMethod];
|
|
791
850
|
/**
|
|
792
851
|
*
|
|
793
852
|
* @export
|
|
@@ -1149,6 +1208,44 @@ export interface PaginationResponsePolicyRead {
|
|
|
1149
1208
|
*/
|
|
1150
1209
|
'total': number;
|
|
1151
1210
|
}
|
|
1211
|
+
/**
|
|
1212
|
+
*
|
|
1213
|
+
* @export
|
|
1214
|
+
* @interface PaginationResponseReportBase
|
|
1215
|
+
*/
|
|
1216
|
+
export interface PaginationResponseReportBase {
|
|
1217
|
+
/**
|
|
1218
|
+
*
|
|
1219
|
+
* @type {Array<ReportBase>}
|
|
1220
|
+
* @memberof PaginationResponseReportBase
|
|
1221
|
+
*/
|
|
1222
|
+
'items': Array<ReportBase>;
|
|
1223
|
+
/**
|
|
1224
|
+
*
|
|
1225
|
+
* @type {number}
|
|
1226
|
+
* @memberof PaginationResponseReportBase
|
|
1227
|
+
*/
|
|
1228
|
+
'total': number;
|
|
1229
|
+
}
|
|
1230
|
+
/**
|
|
1231
|
+
*
|
|
1232
|
+
* @export
|
|
1233
|
+
* @interface PaginationResponseTaskRead
|
|
1234
|
+
*/
|
|
1235
|
+
export interface PaginationResponseTaskRead {
|
|
1236
|
+
/**
|
|
1237
|
+
*
|
|
1238
|
+
* @type {Array<TaskRead>}
|
|
1239
|
+
* @memberof PaginationResponseTaskRead
|
|
1240
|
+
*/
|
|
1241
|
+
'items': Array<TaskRead>;
|
|
1242
|
+
/**
|
|
1243
|
+
*
|
|
1244
|
+
* @type {number}
|
|
1245
|
+
* @memberof PaginationResponseTaskRead
|
|
1246
|
+
*/
|
|
1247
|
+
'total': number;
|
|
1248
|
+
}
|
|
1152
1249
|
/**
|
|
1153
1250
|
*
|
|
1154
1251
|
* @export
|
|
@@ -1315,6 +1412,17 @@ export interface RegisterSchema {
|
|
|
1315
1412
|
*/
|
|
1316
1413
|
'password_repeat': string;
|
|
1317
1414
|
}
|
|
1415
|
+
/**
|
|
1416
|
+
*
|
|
1417
|
+
* @export
|
|
1418
|
+
* @enum {string}
|
|
1419
|
+
*/
|
|
1420
|
+
export declare const ReminderFrequency: {
|
|
1421
|
+
readonly Daily: "daily";
|
|
1422
|
+
readonly Weekly: "weekly";
|
|
1423
|
+
readonly Custom: "custom";
|
|
1424
|
+
};
|
|
1425
|
+
export type ReminderFrequency = typeof ReminderFrequency[keyof typeof ReminderFrequency];
|
|
1318
1426
|
/**
|
|
1319
1427
|
*
|
|
1320
1428
|
* @export
|
|
@@ -1334,6 +1442,68 @@ export interface RemoveFromCompany {
|
|
|
1334
1442
|
*/
|
|
1335
1443
|
'company_id': string;
|
|
1336
1444
|
}
|
|
1445
|
+
/**
|
|
1446
|
+
*
|
|
1447
|
+
* @export
|
|
1448
|
+
* @interface ReportBase
|
|
1449
|
+
*/
|
|
1450
|
+
export interface ReportBase {
|
|
1451
|
+
/**
|
|
1452
|
+
*
|
|
1453
|
+
* @type {string}
|
|
1454
|
+
* @memberof ReportBase
|
|
1455
|
+
*/
|
|
1456
|
+
'id': string;
|
|
1457
|
+
/**
|
|
1458
|
+
*
|
|
1459
|
+
* @type {string}
|
|
1460
|
+
* @memberof ReportBase
|
|
1461
|
+
*/
|
|
1462
|
+
'company_id': string;
|
|
1463
|
+
/**
|
|
1464
|
+
*
|
|
1465
|
+
* @type {string}
|
|
1466
|
+
* @memberof ReportBase
|
|
1467
|
+
*/
|
|
1468
|
+
'title': string;
|
|
1469
|
+
/**
|
|
1470
|
+
*
|
|
1471
|
+
* @type {string}
|
|
1472
|
+
* @memberof ReportBase
|
|
1473
|
+
*/
|
|
1474
|
+
'share_expiration'?: string | null;
|
|
1475
|
+
/**
|
|
1476
|
+
*
|
|
1477
|
+
* @type {string}
|
|
1478
|
+
* @memberof ReportBase
|
|
1479
|
+
*/
|
|
1480
|
+
'status': string;
|
|
1481
|
+
/**
|
|
1482
|
+
*
|
|
1483
|
+
* @type {string}
|
|
1484
|
+
* @memberof ReportBase
|
|
1485
|
+
*/
|
|
1486
|
+
'created_at': string;
|
|
1487
|
+
/**
|
|
1488
|
+
*
|
|
1489
|
+
* @type {string}
|
|
1490
|
+
* @memberof ReportBase
|
|
1491
|
+
*/
|
|
1492
|
+
'updated_at': string;
|
|
1493
|
+
}
|
|
1494
|
+
/**
|
|
1495
|
+
*
|
|
1496
|
+
* @export
|
|
1497
|
+
* @interface ReportGenerate
|
|
1498
|
+
*/
|
|
1499
|
+
export interface ReportGenerate {
|
|
1500
|
+
/**
|
|
1501
|
+
*
|
|
1502
|
+
* @type {string}
|
|
1503
|
+
* @memberof ReportGenerate
|
|
1504
|
+
*/
|
|
1505
|
+
'report_id': string;
|
|
1506
|
+
}
|
|
1337
1507
|
/**
|
|
1338
1508
|
*
|
|
1339
1509
|
* @export
|
|
@@ -1372,6 +1542,122 @@ export interface RolesWithUser {
|
|
|
1372
1542
|
*/
|
|
1373
1543
|
'user': UserBase;
|
|
1374
1544
|
}
|
|
1545
|
+
/**
|
|
1546
|
+
*
|
|
1547
|
+
* @export
|
|
1548
|
+
* @interface SchedulerRequest
|
|
1549
|
+
*/
|
|
1550
|
+
export interface SchedulerRequest {
|
|
1551
|
+
/**
|
|
1552
|
+
*
|
|
1553
|
+
* @type {string}
|
|
1554
|
+
* @memberof SchedulerRequest
|
|
1555
|
+
*/
|
|
1556
|
+
'company_id': string;
|
|
1557
|
+
/**
|
|
1558
|
+
*
|
|
1559
|
+
* @type {Array<string>}
|
|
1560
|
+
* @memberof SchedulerRequest
|
|
1561
|
+
*/
|
|
1562
|
+
'control_ids': Array<string>;
|
|
1563
|
+
/**
|
|
1564
|
+
*
|
|
1565
|
+
* @type {Array<string>}
|
|
1566
|
+
* @memberof SchedulerRequest
|
|
1567
|
+
*/
|
|
1568
|
+
'user_ids': Array<string>;
|
|
1569
|
+
/**
|
|
1570
|
+
*
|
|
1571
|
+
* @type {number}
|
|
1572
|
+
* @memberof SchedulerRequest
|
|
1573
|
+
*/
|
|
1574
|
+
'expected_finish_days': number;
|
|
1575
|
+
/**
|
|
1576
|
+
*
|
|
1577
|
+
* @type {ReminderFrequency}
|
|
1578
|
+
* @memberof SchedulerRequest
|
|
1579
|
+
*/
|
|
1580
|
+
'frequency'?: ReminderFrequency;
|
|
1581
|
+
/**
|
|
1582
|
+
*
|
|
1583
|
+
* @type {DeliveryMethod}
|
|
1584
|
+
* @memberof SchedulerRequest
|
|
1585
|
+
*/
|
|
1586
|
+
'delivery_method'?: DeliveryMethod;
|
|
1587
|
+
/**
|
|
1588
|
+
*
|
|
1589
|
+
* @type {number}
|
|
1590
|
+
* @memberof SchedulerRequest
|
|
1591
|
+
*/
|
|
1592
|
+
'reminder_offset_days'?: number;
|
|
1593
|
+
}
|
|
1594
|
+
/**
|
|
1595
|
+
*
|
|
1596
|
+
* @export
|
|
1597
|
+
* @interface TaskRead
|
|
1598
|
+
*/
|
|
1599
|
+
export interface TaskRead {
|
|
1600
|
+
/**
|
|
1601
|
+
*
|
|
1602
|
+
* @type {string}
|
|
1603
|
+
* @memberof TaskRead
|
|
1604
|
+
*/
|
|
1605
|
+
'id': string;
|
|
1606
|
+
/**
|
|
1607
|
+
*
|
|
1608
|
+
* @type {string}
|
|
1609
|
+
* @memberof TaskRead
|
|
1610
|
+
*/
|
|
1611
|
+
'company_id': string;
|
|
1612
|
+
/**
|
|
1613
|
+
*
|
|
1614
|
+
* @type {string}
|
|
1615
|
+
* @memberof TaskRead
|
|
1616
|
+
*/
|
|
1617
|
+
'title': string;
|
|
1618
|
+
/**
|
|
1619
|
+
*
|
|
1620
|
+
* @type {string}
|
|
1621
|
+
* @memberof TaskRead
|
|
1622
|
+
*/
|
|
1623
|
+
'description': string;
|
|
1624
|
+
/**
|
|
1625
|
+
*
|
|
1626
|
+
* @type {string}
|
|
1627
|
+
* @memberof TaskRead
|
|
1628
|
+
*/
|
|
1629
|
+
'due_date': string;
|
|
1630
|
+
/**
|
|
1631
|
+
*
|
|
1632
|
+
* @type {string}
|
|
1633
|
+
* @memberof TaskRead
|
|
1634
|
+
*/
|
|
1635
|
+
'assigned_to_id': string;
|
|
1636
|
+
/**
|
|
1637
|
+
*
|
|
1638
|
+
* @type {string}
|
|
1639
|
+
* @memberof TaskRead
|
|
1640
|
+
*/
|
|
1641
|
+
'created_at': string;
|
|
1642
|
+
/**
|
|
1643
|
+
*
|
|
1644
|
+
* @type {string}
|
|
1645
|
+
* @memberof TaskRead
|
|
1646
|
+
*/
|
|
1647
|
+
'updated_at': string;
|
|
1648
|
+
/**
|
|
1649
|
+
*
|
|
1650
|
+
* @type {number}
|
|
1651
|
+
* @memberof TaskRead
|
|
1652
|
+
*/
|
|
1653
|
+
'priority': number;
|
|
1654
|
+
/**
|
|
1655
|
+
*
|
|
1656
|
+
* @type {string}
|
|
1657
|
+
* @memberof TaskRead
|
|
1658
|
+
*/
|
|
1659
|
+
'status': string;
|
|
1660
|
+
}
|
|
1375
1661
|
/**
|
|
1376
1662
|
*
|
|
1377
1663
|
* @export
|
|
@@ -1416,6 +1702,43 @@ export interface UpdatePassword {
|
|
|
1416
1702
|
*/
|
|
1417
1703
|
'new_password': string;
|
|
1418
1704
|
}
|
|
1705
|
+
/**
|
|
1706
|
+
*
|
|
1707
|
+
* @export
|
|
1708
|
+
* @interface UpdateTaskSchema
|
|
1709
|
+
*/
|
|
1710
|
+
export interface UpdateTaskSchema {
|
|
1711
|
+
/**
|
|
1712
|
+
*
|
|
1713
|
+
* @type {string}
|
|
1714
|
+
* @memberof UpdateTaskSchema
|
|
1715
|
+
*/
|
|
1716
|
+
'id': string;
|
|
1717
|
+
/**
|
|
1718
|
+
*
|
|
1719
|
+
* @type {string}
|
|
1720
|
+
* @memberof UpdateTaskSchema
|
|
1721
|
+
*/
|
|
1722
|
+
'title': string;
|
|
1723
|
+
/**
|
|
1724
|
+
*
|
|
1725
|
+
* @type {string}
|
|
1726
|
+
* @memberof UpdateTaskSchema
|
|
1727
|
+
*/
|
|
1728
|
+
'description': string;
|
|
1729
|
+
/**
|
|
1730
|
+
*
|
|
1731
|
+
* @type {string}
|
|
1732
|
+
* @memberof UpdateTaskSchema
|
|
1733
|
+
*/
|
|
1734
|
+
'due_date': string;
|
|
1735
|
+
/**
|
|
1736
|
+
*
|
|
1737
|
+
* @type {string}
|
|
1738
|
+
* @memberof UpdateTaskSchema
|
|
1739
|
+
*/
|
|
1740
|
+
'assigned_to_id': string;
|
|
1741
|
+
}
|
|
1419
1742
|
/**
|
|
1420
1743
|
*
|
|
1421
1744
|
* @export
|
|
@@ -3241,41 +3564,259 @@ export declare class PoliciesApi extends BaseAPI {
|
|
|
3241
3564
|
updatePolicyV1PoliciesPolicyIdPut(policyId: string, policyUpdate: PolicyUpdate, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PolicyRead, any, {}>>;
|
|
3242
3565
|
}
|
|
3243
3566
|
/**
|
|
3244
|
-
*
|
|
3567
|
+
* ReportsApi - axios parameter creator
|
|
3245
3568
|
* @export
|
|
3246
3569
|
*/
|
|
3247
|
-
export declare const
|
|
3570
|
+
export declare const ReportsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3248
3571
|
/**
|
|
3249
|
-
*
|
|
3250
|
-
* @summary
|
|
3251
|
-
* @param {
|
|
3572
|
+
*
|
|
3573
|
+
* @summary Export Report
|
|
3574
|
+
* @param {string} reportId
|
|
3252
3575
|
* @param {string} [authorization]
|
|
3253
3576
|
* @param {string} [sessionId]
|
|
3254
3577
|
* @param {*} [options] Override http request option.
|
|
3255
3578
|
* @throws {RequiredError}
|
|
3256
3579
|
*/
|
|
3257
|
-
|
|
3580
|
+
exportReportV1ReportsExportReportIdGet: (reportId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3258
3581
|
/**
|
|
3259
|
-
*
|
|
3260
|
-
* @summary
|
|
3261
|
-
* @param {
|
|
3582
|
+
*
|
|
3583
|
+
* @summary Generate Report
|
|
3584
|
+
* @param {string} companyId
|
|
3585
|
+
* @param {string} reportType
|
|
3586
|
+
* @param {{ [key: string]: any; }} requestBody
|
|
3262
3587
|
* @param {string} [authorization]
|
|
3263
3588
|
* @param {string} [sessionId]
|
|
3264
3589
|
* @param {*} [options] Override http request option.
|
|
3265
3590
|
* @throws {RequiredError}
|
|
3266
3591
|
*/
|
|
3267
|
-
|
|
3268
|
-
|
|
3269
|
-
|
|
3270
|
-
* RolesApi - functional programming interface
|
|
3271
|
-
* @export
|
|
3272
|
-
*/
|
|
3273
|
-
export declare const RolesApiFp: (configuration?: Configuration) => {
|
|
3592
|
+
generateReportV1ReportsGeneratePost: (companyId: string, reportType: string, requestBody: {
|
|
3593
|
+
[key: string]: any;
|
|
3594
|
+
}, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3274
3595
|
/**
|
|
3275
|
-
*
|
|
3276
|
-
* @summary
|
|
3277
|
-
* @param {
|
|
3278
|
-
* @param {string}
|
|
3596
|
+
*
|
|
3597
|
+
* @summary Get Evidence
|
|
3598
|
+
* @param {string} reportId
|
|
3599
|
+
* @param {string} evidenceId
|
|
3600
|
+
* @param {string} [authorization]
|
|
3601
|
+
* @param {string} [sessionId]
|
|
3602
|
+
* @param {*} [options] Override http request option.
|
|
3603
|
+
* @throws {RequiredError}
|
|
3604
|
+
*/
|
|
3605
|
+
getEvidenceV1ReportsEvidenceReportIdEvidenceIdGet: (reportId: string, evidenceId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3606
|
+
/**
|
|
3607
|
+
*
|
|
3608
|
+
* @summary List Reports
|
|
3609
|
+
* @param {string} companyId
|
|
3610
|
+
* @param {number} [page]
|
|
3611
|
+
* @param {number} [elements]
|
|
3612
|
+
* @param {string} [authorization]
|
|
3613
|
+
* @param {string} [sessionId]
|
|
3614
|
+
* @param {*} [options] Override http request option.
|
|
3615
|
+
* @throws {RequiredError}
|
|
3616
|
+
*/
|
|
3617
|
+
listReportsV1ReportsListCompanyIdGet: (companyId: string, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3618
|
+
};
|
|
3619
|
+
/**
|
|
3620
|
+
* ReportsApi - functional programming interface
|
|
3621
|
+
* @export
|
|
3622
|
+
*/
|
|
3623
|
+
export declare const ReportsApiFp: (configuration?: Configuration) => {
|
|
3624
|
+
/**
|
|
3625
|
+
*
|
|
3626
|
+
* @summary Export Report
|
|
3627
|
+
* @param {string} reportId
|
|
3628
|
+
* @param {string} [authorization]
|
|
3629
|
+
* @param {string} [sessionId]
|
|
3630
|
+
* @param {*} [options] Override http request option.
|
|
3631
|
+
* @throws {RequiredError}
|
|
3632
|
+
*/
|
|
3633
|
+
exportReportV1ReportsExportReportIdGet(reportId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FileDownload>>;
|
|
3634
|
+
/**
|
|
3635
|
+
*
|
|
3636
|
+
* @summary Generate Report
|
|
3637
|
+
* @param {string} companyId
|
|
3638
|
+
* @param {string} reportType
|
|
3639
|
+
* @param {{ [key: string]: any; }} requestBody
|
|
3640
|
+
* @param {string} [authorization]
|
|
3641
|
+
* @param {string} [sessionId]
|
|
3642
|
+
* @param {*} [options] Override http request option.
|
|
3643
|
+
* @throws {RequiredError}
|
|
3644
|
+
*/
|
|
3645
|
+
generateReportV1ReportsGeneratePost(companyId: string, reportType: string, requestBody: {
|
|
3646
|
+
[key: string]: any;
|
|
3647
|
+
}, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportGenerate>>;
|
|
3648
|
+
/**
|
|
3649
|
+
*
|
|
3650
|
+
* @summary Get Evidence
|
|
3651
|
+
* @param {string} reportId
|
|
3652
|
+
* @param {string} evidenceId
|
|
3653
|
+
* @param {string} [authorization]
|
|
3654
|
+
* @param {string} [sessionId]
|
|
3655
|
+
* @param {*} [options] Override http request option.
|
|
3656
|
+
* @throws {RequiredError}
|
|
3657
|
+
*/
|
|
3658
|
+
getEvidenceV1ReportsEvidenceReportIdEvidenceIdGet(reportId: string, evidenceId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FileDownload>>>;
|
|
3659
|
+
/**
|
|
3660
|
+
*
|
|
3661
|
+
* @summary List Reports
|
|
3662
|
+
* @param {string} companyId
|
|
3663
|
+
* @param {number} [page]
|
|
3664
|
+
* @param {number} [elements]
|
|
3665
|
+
* @param {string} [authorization]
|
|
3666
|
+
* @param {string} [sessionId]
|
|
3667
|
+
* @param {*} [options] Override http request option.
|
|
3668
|
+
* @throws {RequiredError}
|
|
3669
|
+
*/
|
|
3670
|
+
listReportsV1ReportsListCompanyIdGet(companyId: string, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginationResponseReportBase>>;
|
|
3671
|
+
};
|
|
3672
|
+
/**
|
|
3673
|
+
* ReportsApi - factory interface
|
|
3674
|
+
* @export
|
|
3675
|
+
*/
|
|
3676
|
+
export declare const ReportsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3677
|
+
/**
|
|
3678
|
+
*
|
|
3679
|
+
* @summary Export Report
|
|
3680
|
+
* @param {string} reportId
|
|
3681
|
+
* @param {string} [authorization]
|
|
3682
|
+
* @param {string} [sessionId]
|
|
3683
|
+
* @param {*} [options] Override http request option.
|
|
3684
|
+
* @throws {RequiredError}
|
|
3685
|
+
*/
|
|
3686
|
+
exportReportV1ReportsExportReportIdGet(reportId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<FileDownload>;
|
|
3687
|
+
/**
|
|
3688
|
+
*
|
|
3689
|
+
* @summary Generate Report
|
|
3690
|
+
* @param {string} companyId
|
|
3691
|
+
* @param {string} reportType
|
|
3692
|
+
* @param {{ [key: string]: any; }} requestBody
|
|
3693
|
+
* @param {string} [authorization]
|
|
3694
|
+
* @param {string} [sessionId]
|
|
3695
|
+
* @param {*} [options] Override http request option.
|
|
3696
|
+
* @throws {RequiredError}
|
|
3697
|
+
*/
|
|
3698
|
+
generateReportV1ReportsGeneratePost(companyId: string, reportType: string, requestBody: {
|
|
3699
|
+
[key: string]: any;
|
|
3700
|
+
}, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ReportGenerate>;
|
|
3701
|
+
/**
|
|
3702
|
+
*
|
|
3703
|
+
* @summary Get Evidence
|
|
3704
|
+
* @param {string} reportId
|
|
3705
|
+
* @param {string} evidenceId
|
|
3706
|
+
* @param {string} [authorization]
|
|
3707
|
+
* @param {string} [sessionId]
|
|
3708
|
+
* @param {*} [options] Override http request option.
|
|
3709
|
+
* @throws {RequiredError}
|
|
3710
|
+
*/
|
|
3711
|
+
getEvidenceV1ReportsEvidenceReportIdEvidenceIdGet(reportId: string, evidenceId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<FileDownload>>;
|
|
3712
|
+
/**
|
|
3713
|
+
*
|
|
3714
|
+
* @summary List Reports
|
|
3715
|
+
* @param {string} companyId
|
|
3716
|
+
* @param {number} [page]
|
|
3717
|
+
* @param {number} [elements]
|
|
3718
|
+
* @param {string} [authorization]
|
|
3719
|
+
* @param {string} [sessionId]
|
|
3720
|
+
* @param {*} [options] Override http request option.
|
|
3721
|
+
* @throws {RequiredError}
|
|
3722
|
+
*/
|
|
3723
|
+
listReportsV1ReportsListCompanyIdGet(companyId: string, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<PaginationResponseReportBase>;
|
|
3724
|
+
};
|
|
3725
|
+
/**
|
|
3726
|
+
* ReportsApi - object-oriented interface
|
|
3727
|
+
* @export
|
|
3728
|
+
* @class ReportsApi
|
|
3729
|
+
* @extends {BaseAPI}
|
|
3730
|
+
*/
|
|
3731
|
+
export declare class ReportsApi extends BaseAPI {
|
|
3732
|
+
/**
|
|
3733
|
+
*
|
|
3734
|
+
* @summary Export Report
|
|
3735
|
+
* @param {string} reportId
|
|
3736
|
+
* @param {string} [authorization]
|
|
3737
|
+
* @param {string} [sessionId]
|
|
3738
|
+
* @param {*} [options] Override http request option.
|
|
3739
|
+
* @throws {RequiredError}
|
|
3740
|
+
* @memberof ReportsApi
|
|
3741
|
+
*/
|
|
3742
|
+
exportReportV1ReportsExportReportIdGet(reportId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileDownload, any, {}>>;
|
|
3743
|
+
/**
|
|
3744
|
+
*
|
|
3745
|
+
* @summary Generate Report
|
|
3746
|
+
* @param {string} companyId
|
|
3747
|
+
* @param {string} reportType
|
|
3748
|
+
* @param {{ [key: string]: any; }} requestBody
|
|
3749
|
+
* @param {string} [authorization]
|
|
3750
|
+
* @param {string} [sessionId]
|
|
3751
|
+
* @param {*} [options] Override http request option.
|
|
3752
|
+
* @throws {RequiredError}
|
|
3753
|
+
* @memberof ReportsApi
|
|
3754
|
+
*/
|
|
3755
|
+
generateReportV1ReportsGeneratePost(companyId: string, reportType: string, requestBody: {
|
|
3756
|
+
[key: string]: any;
|
|
3757
|
+
}, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportGenerate, any, {}>>;
|
|
3758
|
+
/**
|
|
3759
|
+
*
|
|
3760
|
+
* @summary Get Evidence
|
|
3761
|
+
* @param {string} reportId
|
|
3762
|
+
* @param {string} evidenceId
|
|
3763
|
+
* @param {string} [authorization]
|
|
3764
|
+
* @param {string} [sessionId]
|
|
3765
|
+
* @param {*} [options] Override http request option.
|
|
3766
|
+
* @throws {RequiredError}
|
|
3767
|
+
* @memberof ReportsApi
|
|
3768
|
+
*/
|
|
3769
|
+
getEvidenceV1ReportsEvidenceReportIdEvidenceIdGet(reportId: string, evidenceId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileDownload[], any, {}>>;
|
|
3770
|
+
/**
|
|
3771
|
+
*
|
|
3772
|
+
* @summary List Reports
|
|
3773
|
+
* @param {string} companyId
|
|
3774
|
+
* @param {number} [page]
|
|
3775
|
+
* @param {number} [elements]
|
|
3776
|
+
* @param {string} [authorization]
|
|
3777
|
+
* @param {string} [sessionId]
|
|
3778
|
+
* @param {*} [options] Override http request option.
|
|
3779
|
+
* @throws {RequiredError}
|
|
3780
|
+
* @memberof ReportsApi
|
|
3781
|
+
*/
|
|
3782
|
+
listReportsV1ReportsListCompanyIdGet(companyId: string, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginationResponseReportBase, any, {}>>;
|
|
3783
|
+
}
|
|
3784
|
+
/**
|
|
3785
|
+
* RolesApi - axios parameter creator
|
|
3786
|
+
* @export
|
|
3787
|
+
*/
|
|
3788
|
+
export declare const RolesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3789
|
+
/**
|
|
3790
|
+
* Add people to company
|
|
3791
|
+
* @summary Invite
|
|
3792
|
+
* @param {InviteToCompany} inviteToCompany
|
|
3793
|
+
* @param {string} [authorization]
|
|
3794
|
+
* @param {string} [sessionId]
|
|
3795
|
+
* @param {*} [options] Override http request option.
|
|
3796
|
+
* @throws {RequiredError}
|
|
3797
|
+
*/
|
|
3798
|
+
inviteV1RolesInvitesPost: (inviteToCompany: InviteToCompany, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3799
|
+
/**
|
|
3800
|
+
* Remove people from company
|
|
3801
|
+
* @summary Remove People
|
|
3802
|
+
* @param {RemoveFromCompany} removeFromCompany
|
|
3803
|
+
* @param {string} [authorization]
|
|
3804
|
+
* @param {string} [sessionId]
|
|
3805
|
+
* @param {*} [options] Override http request option.
|
|
3806
|
+
* @throws {RequiredError}
|
|
3807
|
+
*/
|
|
3808
|
+
removePeopleV1RolesInvitesDelete: (removeFromCompany: RemoveFromCompany, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3809
|
+
};
|
|
3810
|
+
/**
|
|
3811
|
+
* RolesApi - functional programming interface
|
|
3812
|
+
* @export
|
|
3813
|
+
*/
|
|
3814
|
+
export declare const RolesApiFp: (configuration?: Configuration) => {
|
|
3815
|
+
/**
|
|
3816
|
+
* Add people to company
|
|
3817
|
+
* @summary Invite
|
|
3818
|
+
* @param {InviteToCompany} inviteToCompany
|
|
3819
|
+
* @param {string} [authorization]
|
|
3279
3820
|
* @param {string} [sessionId]
|
|
3280
3821
|
* @param {*} [options] Override http request option.
|
|
3281
3822
|
* @throws {RequiredError}
|
|
@@ -3348,6 +3889,294 @@ export declare class RolesApi extends BaseAPI {
|
|
|
3348
3889
|
*/
|
|
3349
3890
|
removePeopleV1RolesInvitesDelete(removeFromCompany: RemoveFromCompany, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
|
|
3350
3891
|
}
|
|
3892
|
+
/**
|
|
3893
|
+
* TasksApi - axios parameter creator
|
|
3894
|
+
* @export
|
|
3895
|
+
*/
|
|
3896
|
+
export declare const TasksApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3897
|
+
/**
|
|
3898
|
+
*
|
|
3899
|
+
* @summary Create Task
|
|
3900
|
+
* @param {CreateTaskSchema} createTaskSchema
|
|
3901
|
+
* @param {string} [authorization]
|
|
3902
|
+
* @param {string} [sessionId]
|
|
3903
|
+
* @param {*} [options] Override http request option.
|
|
3904
|
+
* @throws {RequiredError}
|
|
3905
|
+
*/
|
|
3906
|
+
createTaskV1TasksPost: (createTaskSchema: CreateTaskSchema, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3907
|
+
/**
|
|
3908
|
+
*
|
|
3909
|
+
* @summary Delete Task
|
|
3910
|
+
* @param {DeleteTaskSchema} deleteTaskSchema
|
|
3911
|
+
* @param {string} [authorization]
|
|
3912
|
+
* @param {string} [sessionId]
|
|
3913
|
+
* @param {*} [options] Override http request option.
|
|
3914
|
+
* @throws {RequiredError}
|
|
3915
|
+
*/
|
|
3916
|
+
deleteTaskV1TasksDelete: (deleteTaskSchema: DeleteTaskSchema, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3917
|
+
/**
|
|
3918
|
+
*
|
|
3919
|
+
* @summary List Tasks For Company
|
|
3920
|
+
* @param {string} companyId
|
|
3921
|
+
* @param {number} [page]
|
|
3922
|
+
* @param {number} [elements]
|
|
3923
|
+
* @param {string} [authorization]
|
|
3924
|
+
* @param {string} [sessionId]
|
|
3925
|
+
* @param {*} [options] Override http request option.
|
|
3926
|
+
* @throws {RequiredError}
|
|
3927
|
+
*/
|
|
3928
|
+
listTasksForCompanyV1TasksCompanyGet: (companyId: string, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3929
|
+
/**
|
|
3930
|
+
*
|
|
3931
|
+
* @summary List Tasks For User
|
|
3932
|
+
* @param {string} companyId
|
|
3933
|
+
* @param {number} [page]
|
|
3934
|
+
* @param {number} [elements]
|
|
3935
|
+
* @param {string} [authorization]
|
|
3936
|
+
* @param {string} [sessionId]
|
|
3937
|
+
* @param {*} [options] Override http request option.
|
|
3938
|
+
* @throws {RequiredError}
|
|
3939
|
+
*/
|
|
3940
|
+
listTasksForUserV1TasksUserGet: (companyId: string, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3941
|
+
/**
|
|
3942
|
+
*
|
|
3943
|
+
* @summary Request Task Scheduling
|
|
3944
|
+
* @param {SchedulerRequest} schedulerRequest
|
|
3945
|
+
* @param {string} [authorization]
|
|
3946
|
+
* @param {string} [sessionId]
|
|
3947
|
+
* @param {*} [options] Override http request option.
|
|
3948
|
+
* @throws {RequiredError}
|
|
3949
|
+
*/
|
|
3950
|
+
requestTaskSchedulingV1TasksSchedulePost: (schedulerRequest: SchedulerRequest, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3951
|
+
/**
|
|
3952
|
+
*
|
|
3953
|
+
* @summary Update Task
|
|
3954
|
+
* @param {UpdateTaskSchema} updateTaskSchema
|
|
3955
|
+
* @param {string} [authorization]
|
|
3956
|
+
* @param {string} [sessionId]
|
|
3957
|
+
* @param {*} [options] Override http request option.
|
|
3958
|
+
* @throws {RequiredError}
|
|
3959
|
+
*/
|
|
3960
|
+
updateTaskV1TasksPut: (updateTaskSchema: UpdateTaskSchema, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3961
|
+
};
|
|
3962
|
+
/**
|
|
3963
|
+
* TasksApi - functional programming interface
|
|
3964
|
+
* @export
|
|
3965
|
+
*/
|
|
3966
|
+
export declare const TasksApiFp: (configuration?: Configuration) => {
|
|
3967
|
+
/**
|
|
3968
|
+
*
|
|
3969
|
+
* @summary Create Task
|
|
3970
|
+
* @param {CreateTaskSchema} createTaskSchema
|
|
3971
|
+
* @param {string} [authorization]
|
|
3972
|
+
* @param {string} [sessionId]
|
|
3973
|
+
* @param {*} [options] Override http request option.
|
|
3974
|
+
* @throws {RequiredError}
|
|
3975
|
+
*/
|
|
3976
|
+
createTaskV1TasksPost(createTaskSchema: CreateTaskSchema, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskRead>>;
|
|
3977
|
+
/**
|
|
3978
|
+
*
|
|
3979
|
+
* @summary Delete Task
|
|
3980
|
+
* @param {DeleteTaskSchema} deleteTaskSchema
|
|
3981
|
+
* @param {string} [authorization]
|
|
3982
|
+
* @param {string} [sessionId]
|
|
3983
|
+
* @param {*} [options] Override http request option.
|
|
3984
|
+
* @throws {RequiredError}
|
|
3985
|
+
*/
|
|
3986
|
+
deleteTaskV1TasksDelete(deleteTaskSchema: DeleteTaskSchema, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Details>>;
|
|
3987
|
+
/**
|
|
3988
|
+
*
|
|
3989
|
+
* @summary List Tasks For Company
|
|
3990
|
+
* @param {string} companyId
|
|
3991
|
+
* @param {number} [page]
|
|
3992
|
+
* @param {number} [elements]
|
|
3993
|
+
* @param {string} [authorization]
|
|
3994
|
+
* @param {string} [sessionId]
|
|
3995
|
+
* @param {*} [options] Override http request option.
|
|
3996
|
+
* @throws {RequiredError}
|
|
3997
|
+
*/
|
|
3998
|
+
listTasksForCompanyV1TasksCompanyGet(companyId: string, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginationResponseTaskRead>>;
|
|
3999
|
+
/**
|
|
4000
|
+
*
|
|
4001
|
+
* @summary List Tasks For User
|
|
4002
|
+
* @param {string} companyId
|
|
4003
|
+
* @param {number} [page]
|
|
4004
|
+
* @param {number} [elements]
|
|
4005
|
+
* @param {string} [authorization]
|
|
4006
|
+
* @param {string} [sessionId]
|
|
4007
|
+
* @param {*} [options] Override http request option.
|
|
4008
|
+
* @throws {RequiredError}
|
|
4009
|
+
*/
|
|
4010
|
+
listTasksForUserV1TasksUserGet(companyId: string, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginationResponseTaskRead>>;
|
|
4011
|
+
/**
|
|
4012
|
+
*
|
|
4013
|
+
* @summary Request Task Scheduling
|
|
4014
|
+
* @param {SchedulerRequest} schedulerRequest
|
|
4015
|
+
* @param {string} [authorization]
|
|
4016
|
+
* @param {string} [sessionId]
|
|
4017
|
+
* @param {*} [options] Override http request option.
|
|
4018
|
+
* @throws {RequiredError}
|
|
4019
|
+
*/
|
|
4020
|
+
requestTaskSchedulingV1TasksSchedulePost(schedulerRequest: SchedulerRequest, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Details>>;
|
|
4021
|
+
/**
|
|
4022
|
+
*
|
|
4023
|
+
* @summary Update Task
|
|
4024
|
+
* @param {UpdateTaskSchema} updateTaskSchema
|
|
4025
|
+
* @param {string} [authorization]
|
|
4026
|
+
* @param {string} [sessionId]
|
|
4027
|
+
* @param {*} [options] Override http request option.
|
|
4028
|
+
* @throws {RequiredError}
|
|
4029
|
+
*/
|
|
4030
|
+
updateTaskV1TasksPut(updateTaskSchema: UpdateTaskSchema, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskRead>>;
|
|
4031
|
+
};
|
|
4032
|
+
/**
|
|
4033
|
+
* TasksApi - factory interface
|
|
4034
|
+
* @export
|
|
4035
|
+
*/
|
|
4036
|
+
export declare const TasksApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4037
|
+
/**
|
|
4038
|
+
*
|
|
4039
|
+
* @summary Create Task
|
|
4040
|
+
* @param {CreateTaskSchema} createTaskSchema
|
|
4041
|
+
* @param {string} [authorization]
|
|
4042
|
+
* @param {string} [sessionId]
|
|
4043
|
+
* @param {*} [options] Override http request option.
|
|
4044
|
+
* @throws {RequiredError}
|
|
4045
|
+
*/
|
|
4046
|
+
createTaskV1TasksPost(createTaskSchema: CreateTaskSchema, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<TaskRead>;
|
|
4047
|
+
/**
|
|
4048
|
+
*
|
|
4049
|
+
* @summary Delete Task
|
|
4050
|
+
* @param {DeleteTaskSchema} deleteTaskSchema
|
|
4051
|
+
* @param {string} [authorization]
|
|
4052
|
+
* @param {string} [sessionId]
|
|
4053
|
+
* @param {*} [options] Override http request option.
|
|
4054
|
+
* @throws {RequiredError}
|
|
4055
|
+
*/
|
|
4056
|
+
deleteTaskV1TasksDelete(deleteTaskSchema: DeleteTaskSchema, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<Details>;
|
|
4057
|
+
/**
|
|
4058
|
+
*
|
|
4059
|
+
* @summary List Tasks For Company
|
|
4060
|
+
* @param {string} companyId
|
|
4061
|
+
* @param {number} [page]
|
|
4062
|
+
* @param {number} [elements]
|
|
4063
|
+
* @param {string} [authorization]
|
|
4064
|
+
* @param {string} [sessionId]
|
|
4065
|
+
* @param {*} [options] Override http request option.
|
|
4066
|
+
* @throws {RequiredError}
|
|
4067
|
+
*/
|
|
4068
|
+
listTasksForCompanyV1TasksCompanyGet(companyId: string, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<PaginationResponseTaskRead>;
|
|
4069
|
+
/**
|
|
4070
|
+
*
|
|
4071
|
+
* @summary List Tasks For User
|
|
4072
|
+
* @param {string} companyId
|
|
4073
|
+
* @param {number} [page]
|
|
4074
|
+
* @param {number} [elements]
|
|
4075
|
+
* @param {string} [authorization]
|
|
4076
|
+
* @param {string} [sessionId]
|
|
4077
|
+
* @param {*} [options] Override http request option.
|
|
4078
|
+
* @throws {RequiredError}
|
|
4079
|
+
*/
|
|
4080
|
+
listTasksForUserV1TasksUserGet(companyId: string, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<PaginationResponseTaskRead>;
|
|
4081
|
+
/**
|
|
4082
|
+
*
|
|
4083
|
+
* @summary Request Task Scheduling
|
|
4084
|
+
* @param {SchedulerRequest} schedulerRequest
|
|
4085
|
+
* @param {string} [authorization]
|
|
4086
|
+
* @param {string} [sessionId]
|
|
4087
|
+
* @param {*} [options] Override http request option.
|
|
4088
|
+
* @throws {RequiredError}
|
|
4089
|
+
*/
|
|
4090
|
+
requestTaskSchedulingV1TasksSchedulePost(schedulerRequest: SchedulerRequest, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<Details>;
|
|
4091
|
+
/**
|
|
4092
|
+
*
|
|
4093
|
+
* @summary Update Task
|
|
4094
|
+
* @param {UpdateTaskSchema} updateTaskSchema
|
|
4095
|
+
* @param {string} [authorization]
|
|
4096
|
+
* @param {string} [sessionId]
|
|
4097
|
+
* @param {*} [options] Override http request option.
|
|
4098
|
+
* @throws {RequiredError}
|
|
4099
|
+
*/
|
|
4100
|
+
updateTaskV1TasksPut(updateTaskSchema: UpdateTaskSchema, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<TaskRead>;
|
|
4101
|
+
};
|
|
4102
|
+
/**
|
|
4103
|
+
* TasksApi - object-oriented interface
|
|
4104
|
+
* @export
|
|
4105
|
+
* @class TasksApi
|
|
4106
|
+
* @extends {BaseAPI}
|
|
4107
|
+
*/
|
|
4108
|
+
export declare class TasksApi extends BaseAPI {
|
|
4109
|
+
/**
|
|
4110
|
+
*
|
|
4111
|
+
* @summary Create Task
|
|
4112
|
+
* @param {CreateTaskSchema} createTaskSchema
|
|
4113
|
+
* @param {string} [authorization]
|
|
4114
|
+
* @param {string} [sessionId]
|
|
4115
|
+
* @param {*} [options] Override http request option.
|
|
4116
|
+
* @throws {RequiredError}
|
|
4117
|
+
* @memberof TasksApi
|
|
4118
|
+
*/
|
|
4119
|
+
createTaskV1TasksPost(createTaskSchema: CreateTaskSchema, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskRead, any, {}>>;
|
|
4120
|
+
/**
|
|
4121
|
+
*
|
|
4122
|
+
* @summary Delete Task
|
|
4123
|
+
* @param {DeleteTaskSchema} deleteTaskSchema
|
|
4124
|
+
* @param {string} [authorization]
|
|
4125
|
+
* @param {string} [sessionId]
|
|
4126
|
+
* @param {*} [options] Override http request option.
|
|
4127
|
+
* @throws {RequiredError}
|
|
4128
|
+
* @memberof TasksApi
|
|
4129
|
+
*/
|
|
4130
|
+
deleteTaskV1TasksDelete(deleteTaskSchema: DeleteTaskSchema, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
|
|
4131
|
+
/**
|
|
4132
|
+
*
|
|
4133
|
+
* @summary List Tasks For Company
|
|
4134
|
+
* @param {string} companyId
|
|
4135
|
+
* @param {number} [page]
|
|
4136
|
+
* @param {number} [elements]
|
|
4137
|
+
* @param {string} [authorization]
|
|
4138
|
+
* @param {string} [sessionId]
|
|
4139
|
+
* @param {*} [options] Override http request option.
|
|
4140
|
+
* @throws {RequiredError}
|
|
4141
|
+
* @memberof TasksApi
|
|
4142
|
+
*/
|
|
4143
|
+
listTasksForCompanyV1TasksCompanyGet(companyId: string, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginationResponseTaskRead, any, {}>>;
|
|
4144
|
+
/**
|
|
4145
|
+
*
|
|
4146
|
+
* @summary List Tasks For User
|
|
4147
|
+
* @param {string} companyId
|
|
4148
|
+
* @param {number} [page]
|
|
4149
|
+
* @param {number} [elements]
|
|
4150
|
+
* @param {string} [authorization]
|
|
4151
|
+
* @param {string} [sessionId]
|
|
4152
|
+
* @param {*} [options] Override http request option.
|
|
4153
|
+
* @throws {RequiredError}
|
|
4154
|
+
* @memberof TasksApi
|
|
4155
|
+
*/
|
|
4156
|
+
listTasksForUserV1TasksUserGet(companyId: string, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginationResponseTaskRead, any, {}>>;
|
|
4157
|
+
/**
|
|
4158
|
+
*
|
|
4159
|
+
* @summary Request Task Scheduling
|
|
4160
|
+
* @param {SchedulerRequest} schedulerRequest
|
|
4161
|
+
* @param {string} [authorization]
|
|
4162
|
+
* @param {string} [sessionId]
|
|
4163
|
+
* @param {*} [options] Override http request option.
|
|
4164
|
+
* @throws {RequiredError}
|
|
4165
|
+
* @memberof TasksApi
|
|
4166
|
+
*/
|
|
4167
|
+
requestTaskSchedulingV1TasksSchedulePost(schedulerRequest: SchedulerRequest, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
|
|
4168
|
+
/**
|
|
4169
|
+
*
|
|
4170
|
+
* @summary Update Task
|
|
4171
|
+
* @param {UpdateTaskSchema} updateTaskSchema
|
|
4172
|
+
* @param {string} [authorization]
|
|
4173
|
+
* @param {string} [sessionId]
|
|
4174
|
+
* @param {*} [options] Override http request option.
|
|
4175
|
+
* @throws {RequiredError}
|
|
4176
|
+
* @memberof TasksApi
|
|
4177
|
+
*/
|
|
4178
|
+
updateTaskV1TasksPut(updateTaskSchema: UpdateTaskSchema, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskRead, any, {}>>;
|
|
4179
|
+
}
|
|
3351
4180
|
/**
|
|
3352
4181
|
* UserApi - axios parameter creator
|
|
3353
4182
|
* @export
|