@gooday_corp/gooday-api-client 1.0.9 → 1.0.10
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 +2 -14
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -526,23 +526,11 @@ export interface UserEntity {
|
|
|
526
526
|
'plan': string;
|
|
527
527
|
/**
|
|
528
528
|
* Action user has to perform
|
|
529
|
-
* @type {string}
|
|
529
|
+
* @type {Array<string>}
|
|
530
530
|
* @memberof UserEntity
|
|
531
531
|
*/
|
|
532
|
-
'pendingAction':
|
|
532
|
+
'pendingAction': Array<string>;
|
|
533
533
|
}
|
|
534
|
-
|
|
535
|
-
export const UserEntityPendingActionEnum = {
|
|
536
|
-
BasicInfo: 'basic_info',
|
|
537
|
-
NickName: 'nick_name',
|
|
538
|
-
Dob: 'dob',
|
|
539
|
-
Assistant: 'assistant',
|
|
540
|
-
Goals: 'goals',
|
|
541
|
-
Plan: 'plan'
|
|
542
|
-
} as const;
|
|
543
|
-
|
|
544
|
-
export type UserEntityPendingActionEnum = typeof UserEntityPendingActionEnum[keyof typeof UserEntityPendingActionEnum];
|
|
545
|
-
|
|
546
534
|
/**
|
|
547
535
|
*
|
|
548
536
|
* @export
|