@gooday_corp/gooday-api-client 1.1.34 → 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.
Files changed (2) hide show
  1. package/api.ts +8 -2
  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<string>}
3341
+ * @type {Array<UserEntity>}
3336
3342
  * @memberof TaskEntity
3337
3343
  */
3338
- 'assignedTo': Array<string>;
3344
+ 'assignedTo': Array<UserEntity>;
3339
3345
  /**
3340
3346
  * Status
3341
3347
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooday_corp/gooday-api-client",
3
- "version": "1.1.34",
3
+ "version": "1.1.35",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},