@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.
Files changed (2) hide show
  1. package/api.ts +3 -3
  2. 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
- 'nextStep': UserEntityNextStepEnum;
532
+ 'pendingAction': UserEntityPendingActionEnum;
533
533
  }
534
534
 
535
- export const UserEntityNextStepEnum = {
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 UserEntityNextStepEnum = typeof UserEntityNextStepEnum[keyof typeof UserEntityNextStepEnum];
544
+ export type UserEntityPendingActionEnum = typeof UserEntityPendingActionEnum[keyof typeof UserEntityPendingActionEnum];
545
545
 
546
546
  /**
547
547
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooday_corp/gooday-api-client",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},