@objectstack/plugin-auth 4.0.2 → 4.0.4
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/.turbo/turbo-build.log +10 -10
- package/CHANGELOG.md +15 -0
- package/dist/index.d.mts +1410 -91
- package/dist/index.d.ts +1410 -91
- package/dist/index.js +149 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +148 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -7
- package/src/auth-manager.test.ts +129 -4
- package/src/auth-manager.ts +83 -2
- package/src/auth-plugin.test.ts +12 -5
- package/src/auth-plugin.ts +24 -2
- package/src/objects/index.ts +1 -0
- package/src/objects/sys-user-preference.object.ts +82 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @objectstack/plugin-auth@4.0.
|
|
2
|
+
> @objectstack/plugin-auth@4.0.4 build /home/runner/work/framework/framework/packages/plugins/plugin-auth
|
|
3
3
|
> tsup --config ../../../tsup.config.ts
|
|
4
4
|
|
|
5
5
|
▲ [WARNING] The condition "types" here will never be used as it comes after both "import" and "require" [package.json]
|
|
@@ -47,9 +47,9 @@
|
|
|
47
47
|
╵ [32m~~~~~~~~~[0m
|
|
48
48
|
|
|
49
49
|
|
|
50
|
-
[32mCJS[39m [1mdist/index.js [22m[
|
|
51
|
-
[32mCJS[39m [1mdist/index.js.map [22m[
|
|
52
|
-
[32mCJS[39m ⚡️ Build success in
|
|
50
|
+
[32mCJS[39m [1mdist/index.js [22m[32m50.99 KB[39m
|
|
51
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m104.52 KB[39m
|
|
52
|
+
[32mCJS[39m ⚡️ Build success in 85ms
|
|
53
53
|
[warn] [33m▲ [43;33m[[43;30mWARNING[43;33m][0m [1mThe condition "types" here will never be used as it comes after both "import" and "require"[0m [package.json]
|
|
54
54
|
|
|
55
55
|
package.json:13:6:
|
|
@@ -69,10 +69,10 @@
|
|
|
69
69
|
╵ [32m~~~~~~~~~[0m
|
|
70
70
|
|
|
71
71
|
|
|
72
|
-
[32mESM[39m [1mdist/index.mjs [22m[
|
|
73
|
-
[32mESM[39m [1mdist/index.mjs.map [22m[
|
|
74
|
-
[32mESM[39m ⚡️ Build success in
|
|
72
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m47.42 KB[39m
|
|
73
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m104.01 KB[39m
|
|
74
|
+
[32mESM[39m ⚡️ Build success in 95ms
|
|
75
75
|
[34mDTS[39m Build start
|
|
76
|
-
[32mDTS[39m ⚡️ Build success in
|
|
77
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[
|
|
78
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[
|
|
76
|
+
[32mDTS[39m ⚡️ Build success in 7023ms
|
|
77
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m914.23 KB[39m
|
|
78
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m914.23 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 4.0.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [326b66b]
|
|
8
|
+
- @objectstack/spec@4.0.4
|
|
9
|
+
- @objectstack/core@4.0.4
|
|
10
|
+
|
|
11
|
+
## 4.0.3
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- @objectstack/spec@4.0.3
|
|
16
|
+
- @objectstack/core@4.0.3
|
|
17
|
+
|
|
3
18
|
## 4.0.2
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|