@gooday_corp/gooday-api-client 1.1.33 → 1.1.35
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 +8 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -3330,12 +3330,18 @@ export interface TaskEntity {
|
|
|
3330
3330
|
* @memberof TaskEntity
|
|
3331
3331
|
*/
|
|
3332
3332
|
'createdBy': string;
|
|
3333
|
+
/**
|
|
3334
|
+
* Assignee note
|
|
3335
|
+
* @type {string}
|
|
3336
|
+
* @memberof TaskEntity
|
|
3337
|
+
*/
|
|
3338
|
+
'note': string;
|
|
3333
3339
|
/**
|
|
3334
3340
|
* Assigned to
|
|
3335
|
-
* @type {Array<
|
|
3341
|
+
* @type {Array<UserEntity>}
|
|
3336
3342
|
* @memberof TaskEntity
|
|
3337
3343
|
*/
|
|
3338
|
-
'assignedTo': Array<
|
|
3344
|
+
'assignedTo': Array<UserEntity>;
|
|
3339
3345
|
/**
|
|
3340
3346
|
* Status
|
|
3341
3347
|
* @type {string}
|