vona-module-a-user 5.0.43 → 5.0.45

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.
@@ -1,8 +1,8 @@
1
1
  import type { IMetaRuntimeExecute } from 'vona-module-a-runtime';
2
2
  import { BeanBase } from 'vona';
3
- export type TypeMetaPrintTipResult = {
3
+ export type TypeMetaRuntimeResult = {
4
4
  accessToken?: string;
5
5
  } | undefined;
6
6
  export declare class MetaRuntime extends BeanBase implements IMetaRuntimeExecute {
7
- execute(): Promise<TypeMetaPrintTipResult>;
7
+ execute(): Promise<TypeMetaRuntimeResult>;
8
8
  }
@@ -14,7 +14,8 @@ export interface IUser {
14
14
  email?: string;
15
15
  mobile?: string;
16
16
  activated?: boolean;
17
- locale?: keyof ILocaleRecord | undefined;
17
+ locale?: keyof ILocaleRecord;
18
+ tz?: string;
18
19
  anonymous?: boolean;
19
20
  }
20
21
  export interface IUserAdapter {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vona-module-a-user",
3
3
  "type": "module",
4
- "version": "5.0.43",
4
+ "version": "5.0.45",
5
5
  "title": "a-user",
6
6
  "vonaModule": {
7
7
  "dependencies": {}