@gooday_corp/gooday-api-client 1.0.8 → 1.0.9
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 +3 -3
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -529,10 +529,10 @@ export interface UserEntity {
|
|
|
529
529
|
* @type {string}
|
|
530
530
|
* @memberof UserEntity
|
|
531
531
|
*/
|
|
532
|
-
'
|
|
532
|
+
'pendingAction': UserEntityPendingActionEnum;
|
|
533
533
|
}
|
|
534
534
|
|
|
535
|
-
export const
|
|
535
|
+
export const UserEntityPendingActionEnum = {
|
|
536
536
|
BasicInfo: 'basic_info',
|
|
537
537
|
NickName: 'nick_name',
|
|
538
538
|
Dob: 'dob',
|
|
@@ -541,7 +541,7 @@ export const UserEntityNextStepEnum = {
|
|
|
541
541
|
Plan: 'plan'
|
|
542
542
|
} as const;
|
|
543
543
|
|
|
544
|
-
export type
|
|
544
|
+
export type UserEntityPendingActionEnum = typeof UserEntityPendingActionEnum[keyof typeof UserEntityPendingActionEnum];
|
|
545
545
|
|
|
546
546
|
/**
|
|
547
547
|
*
|