@rasadov/lumoar-sdk 1.0.14 → 1.0.16

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/dist/api.d.ts CHANGED
@@ -38,6 +38,7 @@ export declare const AuditLogEntity: {
38
38
  readonly Companies: "companies";
39
39
  readonly Users: "users";
40
40
  readonly Tasks: "tasks";
41
+ readonly TaskScheduler: "task_scheduler";
41
42
  };
42
43
  export type AuditLogEntity = typeof AuditLogEntity[keyof typeof AuditLogEntity];
43
44
  /**
@@ -69,7 +70,7 @@ export interface AuditLogSchema {
69
70
  * @type {string}
70
71
  * @memberof AuditLogSchema
71
72
  */
72
- 'entity_id': string;
73
+ 'entity_id'?: string | null;
73
74
  /**
74
75
  *
75
76
  * @type {string}
@@ -1142,6 +1143,18 @@ export interface LoginSchema {
1142
1143
  */
1143
1144
  'turnstile_token': string;
1144
1145
  }
1146
+ /**
1147
+ *
1148
+ * @export
1149
+ * @enum {string}
1150
+ */
1151
+ export declare const OrderBy: {
1152
+ readonly Priority: "priority";
1153
+ readonly DueDate: "due_date";
1154
+ readonly UpdatedAt: "updated_at";
1155
+ readonly Status: "status";
1156
+ };
1157
+ export type OrderBy = typeof OrderBy[keyof typeof OrderBy];
1145
1158
  /**
1146
1159
  *
1147
1160
  * @export
@@ -1237,6 +1250,25 @@ export interface PaginationResponseTaskRead {
1237
1250
  */
1238
1251
  'total': number;
1239
1252
  }
1253
+ /**
1254
+ *
1255
+ * @export
1256
+ * @interface PaginationResponseTaskWithUser
1257
+ */
1258
+ export interface PaginationResponseTaskWithUser {
1259
+ /**
1260
+ *
1261
+ * @type {Array<TaskWithUser>}
1262
+ * @memberof PaginationResponseTaskWithUser
1263
+ */
1264
+ 'items': Array<TaskWithUser>;
1265
+ /**
1266
+ *
1267
+ * @type {number}
1268
+ * @memberof PaginationResponseTaskWithUser
1269
+ */
1270
+ 'total': number;
1271
+ }
1240
1272
  /**
1241
1273
  *
1242
1274
  * @export
@@ -1572,6 +1604,20 @@ export interface SchedulerRequest {
1572
1604
  */
1573
1605
  'user_ids_to_assign'?: Array<string>;
1574
1606
  }
1607
+ /**
1608
+ *
1609
+ * @export
1610
+ * @enum {number}
1611
+ */
1612
+ export declare const TaskPriority: {
1613
+ readonly NUMBER_1: 1;
1614
+ readonly NUMBER_2: 2;
1615
+ readonly NUMBER_3: 3;
1616
+ readonly NUMBER_4: 4;
1617
+ readonly NUMBER_5: 5;
1618
+ readonly NUMBER_6: 6;
1619
+ };
1620
+ export type TaskPriority = typeof TaskPriority[keyof typeof TaskPriority];
1575
1621
  /**
1576
1622
  *
1577
1623
  * @export
@@ -1613,31 +1659,106 @@ export interface TaskRead {
1613
1659
  * @type {string}
1614
1660
  * @memberof TaskRead
1615
1661
  */
1616
- 'assigned_to_id': string;
1662
+ 'created_at': string;
1617
1663
  /**
1618
1664
  *
1619
1665
  * @type {string}
1620
1666
  * @memberof TaskRead
1621
1667
  */
1622
- 'created_at': string;
1668
+ 'updated_at': string;
1623
1669
  /**
1624
1670
  *
1625
- * @type {string}
1671
+ * @type {TaskPriority}
1626
1672
  * @memberof TaskRead
1627
1673
  */
1628
- 'updated_at': string;
1674
+ 'priority': TaskPriority;
1629
1675
  /**
1630
1676
  *
1631
- * @type {number}
1677
+ * @type {TaskStatus}
1632
1678
  * @memberof TaskRead
1633
1679
  */
1634
- 'priority': number;
1680
+ 'status': TaskStatus;
1681
+ }
1682
+ /**
1683
+ *
1684
+ * @export
1685
+ * @enum {string}
1686
+ */
1687
+ export declare const TaskStatus: {
1688
+ readonly NotStarted: "not_started";
1689
+ readonly InProgress: "in_progress";
1690
+ readonly Completed: "completed";
1691
+ readonly PendingReview: "pending_review";
1692
+ readonly Failed: "failed";
1693
+ readonly Skipped: "skipped";
1694
+ };
1695
+ export type TaskStatus = typeof TaskStatus[keyof typeof TaskStatus];
1696
+ /**
1697
+ *
1698
+ * @export
1699
+ * @interface TaskWithUser
1700
+ */
1701
+ export interface TaskWithUser {
1635
1702
  /**
1636
1703
  *
1637
1704
  * @type {string}
1638
- * @memberof TaskRead
1705
+ * @memberof TaskWithUser
1639
1706
  */
1640
- 'status': string;
1707
+ 'id': string;
1708
+ /**
1709
+ *
1710
+ * @type {string}
1711
+ * @memberof TaskWithUser
1712
+ */
1713
+ 'company_id': string;
1714
+ /**
1715
+ *
1716
+ * @type {string}
1717
+ * @memberof TaskWithUser
1718
+ */
1719
+ 'title': string;
1720
+ /**
1721
+ *
1722
+ * @type {string}
1723
+ * @memberof TaskWithUser
1724
+ */
1725
+ 'description': string;
1726
+ /**
1727
+ *
1728
+ * @type {string}
1729
+ * @memberof TaskWithUser
1730
+ */
1731
+ 'due_date': string;
1732
+ /**
1733
+ *
1734
+ * @type {string}
1735
+ * @memberof TaskWithUser
1736
+ */
1737
+ 'created_at': string;
1738
+ /**
1739
+ *
1740
+ * @type {string}
1741
+ * @memberof TaskWithUser
1742
+ */
1743
+ 'updated_at': string;
1744
+ /**
1745
+ *
1746
+ * @type {TaskPriority}
1747
+ * @memberof TaskWithUser
1748
+ */
1749
+ 'priority': TaskPriority;
1750
+ /**
1751
+ *
1752
+ * @type {TaskStatus}
1753
+ * @memberof TaskWithUser
1754
+ */
1755
+ 'status': TaskStatus;
1756
+ /**
1757
+ *
1758
+ * @type {UserWithId}
1759
+ * @memberof TaskWithUser
1760
+ */
1761
+ 'assigned_to': UserWithId | null;
1641
1762
  }
1642
1763
  /**
1643
1764
  *
@@ -1720,6 +1841,25 @@ export interface UpdateTaskSchema {
1720
1841
  */
1721
1842
  'assigned_to_id': string;
1722
1843
  }
1844
+ /**
1845
+ *
1846
+ * @export
1847
+ * @interface UpdateTaskStatus
1848
+ */
1849
+ export interface UpdateTaskStatus {
1850
+ /**
1851
+ *
1852
+ * @type {string}
1853
+ * @memberof UpdateTaskStatus
1854
+ */
1855
+ 'id': string;
1856
+ /**
1857
+ *
1858
+ * @type {TaskStatus}
1859
+ * @memberof UpdateTaskStatus
1860
+ */
1861
+ 'status': TaskStatus;
1862
+ }
1723
1863
  /**
1724
1864
  *
1725
1865
  * @export
@@ -1845,6 +1985,37 @@ export interface UserUpdate {
1845
1985
  */
1846
1986
  'phone'?: string | null;
1847
1987
  }
1988
+ /**
1989
+ *
1990
+ * @export
1991
+ * @interface UserWithId
1992
+ */
1993
+ export interface UserWithId {
1994
+ /**
1995
+ *
1996
+ * @type {string}
1997
+ * @memberof UserWithId
1998
+ */
1999
+ 'name': string;
2000
+ /**
2001
+ *
2002
+ * @type {string}
2003
+ * @memberof UserWithId
2004
+ */
2005
+ 'email'?: string;
2006
+ /**
2007
+ *
2008
+ * @type {string}
2009
+ * @memberof UserWithId
2010
+ */
2011
+ 'phone'?: string | null;
2012
+ /**
2013
+ *
2014
+ * @type {string}
2015
+ * @memberof UserWithId
2016
+ */
2017
+ 'id': string;
2018
+ }
1848
2019
  /**
1849
2020
  *
1850
2021
  * @export
@@ -3777,6 +3948,16 @@ export declare const RolesApiAxiosParamCreator: (configuration?: Configuration)
3777
3948
  * @throws {RequiredError}
3778
3949
  */
3779
3950
  getUserPermissionsV1RolesCompanyIdMeGet: (companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3951
+ /**
3952
+ *
3953
+ * @summary Get Users
3954
+ * @param {string} companyId
3955
+ * @param {string} [authorization]
3956
+ * @param {string} [sessionId]
3957
+ * @param {*} [options] Override http request option.
3958
+ * @throws {RequiredError}
3959
+ */
3960
+ getUsersV1RolesCompanyIdListGet: (companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3780
3961
  /**
3781
3962
  *
3782
3963
  * @summary Invite
@@ -3813,6 +3994,16 @@ export declare const RolesApiFp: (configuration?: Configuration) => {
3813
3994
  * @throws {RequiredError}
3814
3995
  */
3815
3996
  getUserPermissionsV1RolesCompanyIdMeGet(companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PermissionResponse>>;
3997
+ /**
3998
+ *
3999
+ * @summary Get Users
4000
+ * @param {string} companyId
4001
+ * @param {string} [authorization]
4002
+ * @param {string} [sessionId]
4003
+ * @param {*} [options] Override http request option.
4004
+ * @throws {RequiredError}
4005
+ */
4006
+ getUsersV1RolesCompanyIdListGet(companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<UserWithId>>>;
3816
4007
  /**
3817
4008
  *
3818
4009
  * @summary Invite
@@ -3849,6 +4040,16 @@ export declare const RolesApiFactory: (configuration?: Configuration, basePath?:
3849
4040
  * @throws {RequiredError}
3850
4041
  */
3851
4042
  getUserPermissionsV1RolesCompanyIdMeGet(companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<PermissionResponse>;
4043
+ /**
4044
+ *
4045
+ * @summary Get Users
4046
+ * @param {string} companyId
4047
+ * @param {string} [authorization]
4048
+ * @param {string} [sessionId]
4049
+ * @param {*} [options] Override http request option.
4050
+ * @throws {RequiredError}
4051
+ */
4052
+ getUsersV1RolesCompanyIdListGet(companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<UserWithId>>;
3852
4053
  /**
3853
4054
  *
3854
4055
  * @summary Invite
@@ -3888,6 +4089,17 @@ export declare class RolesApi extends BaseAPI {
3888
4089
  * @memberof RolesApi
3889
4090
  */
3890
4091
  getUserPermissionsV1RolesCompanyIdMeGet(companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PermissionResponse, any, {}>>;
4092
+ /**
4093
+ *
4094
+ * @summary Get Users
4095
+ * @param {string} companyId
4096
+ * @param {string} [authorization]
4097
+ * @param {string} [sessionId]
4098
+ * @param {*} [options] Override http request option.
4099
+ * @throws {RequiredError}
4100
+ * @memberof RolesApi
4101
+ */
4102
+ getUsersV1RolesCompanyIdListGet(companyId: string, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserWithId[], any, {}>>;
3891
4103
  /**
3892
4104
  *
3893
4105
  * @summary Invite
@@ -3942,24 +4154,36 @@ export declare const TasksApiAxiosParamCreator: (configuration?: Configuration)
3942
4154
  * @param {string} companyId
3943
4155
  * @param {number} [page]
3944
4156
  * @param {number} [elements]
4157
+ * @param {string | null} [dueDateFrom]
4158
+ * @param {string | null} [dueDateTo]
4159
+ * @param {TaskPriority | null} [priority]
4160
+ * @param {TaskStatus | null} [status]
4161
+ * @param {OrderBy | null} [orderBy]
4162
+ * @param {ListTasksForCompanyV1TasksCompanyGetOrderEnum} [order]
3945
4163
  * @param {string} [authorization]
3946
4164
  * @param {string} [sessionId]
3947
4165
  * @param {*} [options] Override http request option.
3948
4166
  * @throws {RequiredError}
3949
4167
  */
3950
- listTasksForCompanyV1TasksCompanyGet: (companyId: string, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4168
+ listTasksForCompanyV1TasksCompanyGet: (companyId: string, page?: number, elements?: number, dueDateFrom?: string | null, dueDateTo?: string | null, priority?: TaskPriority | null, status?: TaskStatus | null, orderBy?: OrderBy | null, order?: ListTasksForCompanyV1TasksCompanyGetOrderEnum, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3951
4169
  /**
3952
4170
  *
3953
4171
  * @summary List Tasks For User
3954
4172
  * @param {string} companyId
3955
4173
  * @param {number} [page]
3956
4174
  * @param {number} [elements]
4175
+ * @param {string | null} [dueDateFrom]
4176
+ * @param {string | null} [dueDateTo]
4177
+ * @param {TaskPriority | null} [priority]
4178
+ * @param {TaskStatus | null} [status]
4179
+ * @param {OrderBy | null} [orderBy]
4180
+ * @param {ListTasksForUserV1TasksUserGetOrderEnum} [order]
3957
4181
  * @param {string} [authorization]
3958
4182
  * @param {string} [sessionId]
3959
4183
  * @param {*} [options] Override http request option.
3960
4184
  * @throws {RequiredError}
3961
4185
  */
3962
- listTasksForUserV1TasksUserGet: (companyId: string, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4186
+ listTasksForUserV1TasksUserGet: (companyId: string, page?: number, elements?: number, dueDateFrom?: string | null, dueDateTo?: string | null, priority?: TaskPriority | null, status?: TaskStatus | null, orderBy?: OrderBy | null, order?: ListTasksForUserV1TasksUserGetOrderEnum, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3963
4187
  /**
3964
4188
  *
3965
4189
  * @summary Request Task Scheduling
@@ -3970,6 +4194,16 @@ export declare const TasksApiAxiosParamCreator: (configuration?: Configuration)
3970
4194
  * @throws {RequiredError}
3971
4195
  */
3972
4196
  requestTaskSchedulingV1TasksSchedulePost: (schedulerRequest: SchedulerRequest, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4197
+ /**
4198
+ *
4199
+ * @summary Update Task Status
4200
+ * @param {UpdateTaskStatus} updateTaskStatus
4201
+ * @param {string} [authorization]
4202
+ * @param {string} [sessionId]
4203
+ * @param {*} [options] Override http request option.
4204
+ * @throws {RequiredError}
4205
+ */
4206
+ updateTaskStatusV1TasksStatusPatch: (updateTaskStatus: UpdateTaskStatus, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3973
4207
  /**
3974
4208
  *
3975
4209
  * @summary Update Task
@@ -4012,24 +4246,36 @@ export declare const TasksApiFp: (configuration?: Configuration) => {
4012
4246
  * @param {string} companyId
4013
4247
  * @param {number} [page]
4014
4248
  * @param {number} [elements]
4249
+ * @param {string | null} [dueDateFrom]
4250
+ * @param {string | null} [dueDateTo]
4251
+ * @param {TaskPriority | null} [priority]
4252
+ * @param {TaskStatus | null} [status]
4253
+ * @param {OrderBy | null} [orderBy]
4254
+ * @param {ListTasksForCompanyV1TasksCompanyGetOrderEnum} [order]
4015
4255
  * @param {string} [authorization]
4016
4256
  * @param {string} [sessionId]
4017
4257
  * @param {*} [options] Override http request option.
4018
4258
  * @throws {RequiredError}
4019
4259
  */
4020
- listTasksForCompanyV1TasksCompanyGet(companyId: string, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginationResponseTaskRead>>;
4260
+ listTasksForCompanyV1TasksCompanyGet(companyId: string, page?: number, elements?: number, dueDateFrom?: string | null, dueDateTo?: string | null, priority?: TaskPriority | null, status?: TaskStatus | null, orderBy?: OrderBy | null, order?: ListTasksForCompanyV1TasksCompanyGetOrderEnum, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginationResponseTaskWithUser>>;
4021
4261
  /**
4022
4262
  *
4023
4263
  * @summary List Tasks For User
4024
4264
  * @param {string} companyId
4025
4265
  * @param {number} [page]
4026
4266
  * @param {number} [elements]
4267
+ * @param {string | null} [dueDateFrom]
4268
+ * @param {string | null} [dueDateTo]
4269
+ * @param {TaskPriority | null} [priority]
4270
+ * @param {TaskStatus | null} [status]
4271
+ * @param {OrderBy | null} [orderBy]
4272
+ * @param {ListTasksForUserV1TasksUserGetOrderEnum} [order]
4027
4273
  * @param {string} [authorization]
4028
4274
  * @param {string} [sessionId]
4029
4275
  * @param {*} [options] Override http request option.
4030
4276
  * @throws {RequiredError}
4031
4277
  */
4032
- listTasksForUserV1TasksUserGet(companyId: string, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginationResponseTaskRead>>;
4278
+ listTasksForUserV1TasksUserGet(companyId: string, page?: number, elements?: number, dueDateFrom?: string | null, dueDateTo?: string | null, priority?: TaskPriority | null, status?: TaskStatus | null, orderBy?: OrderBy | null, order?: ListTasksForUserV1TasksUserGetOrderEnum, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginationResponseTaskRead>>;
4033
4279
  /**
4034
4280
  *
4035
4281
  * @summary Request Task Scheduling
@@ -4040,6 +4286,16 @@ export declare const TasksApiFp: (configuration?: Configuration) => {
4040
4286
  * @throws {RequiredError}
4041
4287
  */
4042
4288
  requestTaskSchedulingV1TasksSchedulePost(schedulerRequest: SchedulerRequest, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Details>>;
4289
+ /**
4290
+ *
4291
+ * @summary Update Task Status
4292
+ * @param {UpdateTaskStatus} updateTaskStatus
4293
+ * @param {string} [authorization]
4294
+ * @param {string} [sessionId]
4295
+ * @param {*} [options] Override http request option.
4296
+ * @throws {RequiredError}
4297
+ */
4298
+ updateTaskStatusV1TasksStatusPatch(updateTaskStatus: UpdateTaskStatus, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskRead>>;
4043
4299
  /**
4044
4300
  *
4045
4301
  * @summary Update Task
@@ -4082,24 +4338,36 @@ export declare const TasksApiFactory: (configuration?: Configuration, basePath?:
4082
4338
  * @param {string} companyId
4083
4339
  * @param {number} [page]
4084
4340
  * @param {number} [elements]
4341
+ * @param {string | null} [dueDateFrom]
4342
+ * @param {string | null} [dueDateTo]
4343
+ * @param {TaskPriority | null} [priority]
4344
+ * @param {TaskStatus | null} [status]
4345
+ * @param {OrderBy | null} [orderBy]
4346
+ * @param {ListTasksForCompanyV1TasksCompanyGetOrderEnum} [order]
4085
4347
  * @param {string} [authorization]
4086
4348
  * @param {string} [sessionId]
4087
4349
  * @param {*} [options] Override http request option.
4088
4350
  * @throws {RequiredError}
4089
4351
  */
4090
- listTasksForCompanyV1TasksCompanyGet(companyId: string, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<PaginationResponseTaskRead>;
4352
+ listTasksForCompanyV1TasksCompanyGet(companyId: string, page?: number, elements?: number, dueDateFrom?: string | null, dueDateTo?: string | null, priority?: TaskPriority | null, status?: TaskStatus | null, orderBy?: OrderBy | null, order?: ListTasksForCompanyV1TasksCompanyGetOrderEnum, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<PaginationResponseTaskWithUser>;
4091
4353
  /**
4092
4354
  *
4093
4355
  * @summary List Tasks For User
4094
4356
  * @param {string} companyId
4095
4357
  * @param {number} [page]
4096
4358
  * @param {number} [elements]
4359
+ * @param {string | null} [dueDateFrom]
4360
+ * @param {string | null} [dueDateTo]
4361
+ * @param {TaskPriority | null} [priority]
4362
+ * @param {TaskStatus | null} [status]
4363
+ * @param {OrderBy | null} [orderBy]
4364
+ * @param {ListTasksForUserV1TasksUserGetOrderEnum} [order]
4097
4365
  * @param {string} [authorization]
4098
4366
  * @param {string} [sessionId]
4099
4367
  * @param {*} [options] Override http request option.
4100
4368
  * @throws {RequiredError}
4101
4369
  */
4102
- listTasksForUserV1TasksUserGet(companyId: string, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<PaginationResponseTaskRead>;
4370
+ listTasksForUserV1TasksUserGet(companyId: string, page?: number, elements?: number, dueDateFrom?: string | null, dueDateTo?: string | null, priority?: TaskPriority | null, status?: TaskStatus | null, orderBy?: OrderBy | null, order?: ListTasksForUserV1TasksUserGetOrderEnum, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<PaginationResponseTaskRead>;
4103
4371
  /**
4104
4372
  *
4105
4373
  * @summary Request Task Scheduling
@@ -4110,6 +4378,16 @@ export declare const TasksApiFactory: (configuration?: Configuration, basePath?:
4110
4378
  * @throws {RequiredError}
4111
4379
  */
4112
4380
  requestTaskSchedulingV1TasksSchedulePost(schedulerRequest: SchedulerRequest, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<Details>;
4381
+ /**
4382
+ *
4383
+ * @summary Update Task Status
4384
+ * @param {UpdateTaskStatus} updateTaskStatus
4385
+ * @param {string} [authorization]
4386
+ * @param {string} [sessionId]
4387
+ * @param {*} [options] Override http request option.
4388
+ * @throws {RequiredError}
4389
+ */
4390
+ updateTaskStatusV1TasksStatusPatch(updateTaskStatus: UpdateTaskStatus, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<TaskRead>;
4113
4391
  /**
4114
4392
  *
4115
4393
  * @summary Update Task
@@ -4156,26 +4434,38 @@ export declare class TasksApi extends BaseAPI {
4156
4434
  * @param {string} companyId
4157
4435
  * @param {number} [page]
4158
4436
  * @param {number} [elements]
4437
+ * @param {string | null} [dueDateFrom]
4438
+ * @param {string | null} [dueDateTo]
4439
+ * @param {TaskPriority | null} [priority]
4440
+ * @param {TaskStatus | null} [status]
4441
+ * @param {OrderBy | null} [orderBy]
4442
+ * @param {ListTasksForCompanyV1TasksCompanyGetOrderEnum} [order]
4159
4443
  * @param {string} [authorization]
4160
4444
  * @param {string} [sessionId]
4161
4445
  * @param {*} [options] Override http request option.
4162
4446
  * @throws {RequiredError}
4163
4447
  * @memberof TasksApi
4164
4448
  */
4165
- listTasksForCompanyV1TasksCompanyGet(companyId: string, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginationResponseTaskRead, any, {}>>;
4449
+ listTasksForCompanyV1TasksCompanyGet(companyId: string, page?: number, elements?: number, dueDateFrom?: string | null, dueDateTo?: string | null, priority?: TaskPriority | null, status?: TaskStatus | null, orderBy?: OrderBy | null, order?: ListTasksForCompanyV1TasksCompanyGetOrderEnum, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginationResponseTaskWithUser, any, {}>>;
4166
4450
  /**
4167
4451
  *
4168
4452
  * @summary List Tasks For User
4169
4453
  * @param {string} companyId
4170
4454
  * @param {number} [page]
4171
4455
  * @param {number} [elements]
4456
+ * @param {string | null} [dueDateFrom]
4457
+ * @param {string | null} [dueDateTo]
4458
+ * @param {TaskPriority | null} [priority]
4459
+ * @param {TaskStatus | null} [status]
4460
+ * @param {OrderBy | null} [orderBy]
4461
+ * @param {ListTasksForUserV1TasksUserGetOrderEnum} [order]
4172
4462
  * @param {string} [authorization]
4173
4463
  * @param {string} [sessionId]
4174
4464
  * @param {*} [options] Override http request option.
4175
4465
  * @throws {RequiredError}
4176
4466
  * @memberof TasksApi
4177
4467
  */
4178
- listTasksForUserV1TasksUserGet(companyId: string, page?: number, elements?: number, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginationResponseTaskRead, any, {}>>;
4468
+ listTasksForUserV1TasksUserGet(companyId: string, page?: number, elements?: number, dueDateFrom?: string | null, dueDateTo?: string | null, priority?: TaskPriority | null, status?: TaskStatus | null, orderBy?: OrderBy | null, order?: ListTasksForUserV1TasksUserGetOrderEnum, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginationResponseTaskRead, any, {}>>;
4179
4469
  /**
4180
4470
  *
4181
4471
  * @summary Request Task Scheduling
@@ -4187,6 +4477,17 @@ export declare class TasksApi extends BaseAPI {
4187
4477
  * @memberof TasksApi
4188
4478
  */
4189
4479
  requestTaskSchedulingV1TasksSchedulePost(schedulerRequest: SchedulerRequest, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
4480
+ /**
4481
+ *
4482
+ * @summary Update Task Status
4483
+ * @param {UpdateTaskStatus} updateTaskStatus
4484
+ * @param {string} [authorization]
4485
+ * @param {string} [sessionId]
4486
+ * @param {*} [options] Override http request option.
4487
+ * @throws {RequiredError}
4488
+ * @memberof TasksApi
4489
+ */
4490
+ updateTaskStatusV1TasksStatusPatch(updateTaskStatus: UpdateTaskStatus, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskRead, any, {}>>;
4190
4491
  /**
4191
4492
  *
4192
4493
  * @summary Update Task
@@ -4199,6 +4500,22 @@ export declare class TasksApi extends BaseAPI {
4199
4500
  */
4200
4501
  updateTaskV1TasksPut(updateTaskSchema: UpdateTaskSchema, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskRead, any, {}>>;
4201
4502
  }
4503
+ /**
4504
+ * @export
4505
+ */
4506
+ export declare const ListTasksForCompanyV1TasksCompanyGetOrderEnum: {
4507
+ readonly Asc: "asc";
4508
+ readonly Desc: "desc";
4509
+ };
4510
+ export type ListTasksForCompanyV1TasksCompanyGetOrderEnum = typeof ListTasksForCompanyV1TasksCompanyGetOrderEnum[keyof typeof ListTasksForCompanyV1TasksCompanyGetOrderEnum];
4511
+ /**
4512
+ * @export
4513
+ */
4514
+ export declare const ListTasksForUserV1TasksUserGetOrderEnum: {
4515
+ readonly Asc: "asc";
4516
+ readonly Desc: "desc";
4517
+ };
4518
+ export type ListTasksForUserV1TasksUserGetOrderEnum = typeof ListTasksForUserV1TasksUserGetOrderEnum[keyof typeof ListTasksForUserV1TasksUserGetOrderEnum];
4202
4519
  /**
4203
4520
  * UserApi - axios parameter creator
4204
4521
  * @export