aq-fe-framework 0.1.78 → 0.1.80

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.
@@ -10135,7 +10135,9 @@ function F_authenticate_Login({
10135
10135
  loadingState[1](false);
10136
10136
  return;
10137
10137
  }
10138
- authStore.setProperty("userId", data.userId);
10138
+ authStore.setProperty("code", data.data.userName);
10139
+ authStore.setProperty("fullName", data.data.userFullName);
10140
+ authStore.setProperty("userId", data.data.userId);
10139
10141
  authStore.setProperty("token", data.data.token);
10140
10142
  if (onSuccess) {
10141
10143
  onSuccess(data);
@@ -62,7 +62,7 @@ import {
62
62
  useHeaderMegaMenuStore,
63
63
  useS_ButtonImport,
64
64
  utils_layout_getItemsWithoutLinks
65
- } from "../chunk-WES6NCPS.mjs";
65
+ } from "../chunk-DKHALPJQ.mjs";
66
66
  import "../chunk-AL73DX37.mjs";
67
67
  import "../chunk-42OQXQR5.mjs";
68
68
  import "../chunk-FWCSY2DS.mjs";
@@ -435,6 +435,8 @@ declare function F_authenticate_SplashPage(): react_jsx_runtime.JSX.Element;
435
435
  interface I$1 {
436
436
  token?: string;
437
437
  userId?: number;
438
+ fullName?: string;
439
+ code?: string;
438
440
  }
439
441
  declare function useS_authenticate(): {
440
442
  state: I$1;
@@ -57,7 +57,7 @@ import {
57
57
  useS_authenticate,
58
58
  useS_core83092,
59
59
  utils_core83092_mergePage
60
- } from "../chunk-WES6NCPS.mjs";
60
+ } from "../chunk-DKHALPJQ.mjs";
61
61
  import "../chunk-AL73DX37.mjs";
62
62
  import "../chunk-42OQXQR5.mjs";
63
63
  import "../chunk-FWCSY2DS.mjs";
package/package.json CHANGED
@@ -18,13 +18,13 @@
18
18
  "types": "./dist/modules-features/index.d.mts"
19
19
  }
20
20
  },
21
- "version": "0.1.78",
21
+ "version": "0.1.80",
22
22
  "private": false,
23
23
  "files": [
24
24
  "dist"
25
25
  ],
26
26
  "scripts": {
27
- "dev": "next dev --turbopack -p 3003",
27
+ "dev": "next dev --turbopack -p 3000",
28
28
  "gen": "barrelsby --config barrelsby.json",
29
29
  "build": "tsup --tsconfig tsconfig.lib.json",
30
30
  "start": "next start",