@gooday_corp/gooday-api-client 1.1.58 → 1.1.59
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/api.ts +23 -4
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -3471,22 +3471,41 @@ export interface TaskEntity {
|
|
|
3471
3471
|
/**
|
|
3472
3472
|
*
|
|
3473
3473
|
* @export
|
|
3474
|
-
* @interface
|
|
3474
|
+
* @interface TaskListReorderPayload
|
|
3475
3475
|
*/
|
|
3476
|
-
export interface
|
|
3476
|
+
export interface TaskListReorderPayload {
|
|
3477
3477
|
/**
|
|
3478
3478
|
* Unique identifier for the todo item
|
|
3479
3479
|
* @type {string}
|
|
3480
|
-
* @memberof
|
|
3480
|
+
* @memberof TaskListReorderPayload
|
|
3481
3481
|
*/
|
|
3482
3482
|
'id': string;
|
|
3483
3483
|
/**
|
|
3484
3484
|
* Position of todo item
|
|
3485
3485
|
* @type {number}
|
|
3486
|
-
* @memberof
|
|
3486
|
+
* @memberof TaskListReorderPayload
|
|
3487
3487
|
*/
|
|
3488
3488
|
'position': number;
|
|
3489
3489
|
}
|
|
3490
|
+
/**
|
|
3491
|
+
*
|
|
3492
|
+
* @export
|
|
3493
|
+
* @interface TaskListReorderPayloadDTO
|
|
3494
|
+
*/
|
|
3495
|
+
export interface TaskListReorderPayloadDTO {
|
|
3496
|
+
/**
|
|
3497
|
+
* Unique identifier for the todo item
|
|
3498
|
+
* @type {Array<TaskListReorderPayload>}
|
|
3499
|
+
* @memberof TaskListReorderPayloadDTO
|
|
3500
|
+
*/
|
|
3501
|
+
'update': Array<TaskListReorderPayload>;
|
|
3502
|
+
/**
|
|
3503
|
+
* Unique identifier for the todo item
|
|
3504
|
+
* @type {string}
|
|
3505
|
+
* @memberof TaskListReorderPayloadDTO
|
|
3506
|
+
*/
|
|
3507
|
+
'id': string;
|
|
3508
|
+
}
|
|
3490
3509
|
/**
|
|
3491
3510
|
*
|
|
3492
3511
|
* @export
|