@jskit-ai/auth-core 0.1.145 → 0.1.147

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jskit-ai/auth-core",
3
- "version": "0.1.145",
3
+ "version": "0.1.147",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "test": "node --test"
@@ -56,10 +56,95 @@
56
56
  "./shared/commands/authSessionReadCommand": "./src/shared/commands/authSessionReadCommand.js"
57
57
  },
58
58
  "dependencies": {
59
- "@jskit-ai/kernel": "0.1.146",
60
59
  "@fastify/cookie": "^11.0.2",
61
60
  "@fastify/csrf-protection": "^7.1.0",
62
61
  "@fastify/rate-limit": "^10.3.0",
63
- "json-rest-schema": "1.x.x"
62
+ "@jskit-ai/kernel": "0.1.149",
63
+ "json-rest-schema": "^1.0.17"
64
+ },
65
+ "jskit": {
66
+ "kind": "runtime",
67
+ "capabilities": {
68
+ "provides": [
69
+ "auth.access",
70
+ "auth.policy"
71
+ ],
72
+ "requires": []
73
+ },
74
+ "runtime": {
75
+ "server": {
76
+ "providerEntrypoint": "src/server/providers/AccessCoreServiceProvider.js",
77
+ "providers": [
78
+ {
79
+ "entrypoint": "src/server/providers/AccessCoreServiceProvider.js",
80
+ "export": "AccessCoreServiceProvider"
81
+ },
82
+ {
83
+ "entrypoint": "src/server/providers/AuthActionsServiceProvider.js",
84
+ "export": "AuthActionsServiceProvider"
85
+ },
86
+ {
87
+ "entrypoint": "src/server/providers/FastifyAuthPolicyServiceProvider.js",
88
+ "export": "FastifyAuthPolicyServiceProvider"
89
+ }
90
+ ]
91
+ },
92
+ "client": {
93
+ "providers": [
94
+ {
95
+ "entrypoint": "src/client/providers/AccessCoreClientProvider.js",
96
+ "export": "AccessCoreClientProvider"
97
+ },
98
+ {
99
+ "entrypoint": "src/client/providers/FastifyAuthPolicyClientProvider.js",
100
+ "export": "FastifyAuthPolicyClientProvider"
101
+ }
102
+ ]
103
+ }
104
+ },
105
+ "metadata": {
106
+ "apiSummary": {
107
+ "surfaces": [
108
+ {
109
+ "subpath": "./client",
110
+ "summary": "Exports client auth access APIs plus AccessCoreClientProvider/FastifyAuthPolicyClientProvider."
111
+ },
112
+ {
113
+ "subpath": "./server",
114
+ "summary": "Exports server auth access, shared auth action, and Fastify auth policy providers plus server auth utility modules."
115
+ },
116
+ {
117
+ "subpath": "./shared",
118
+ "summary": "Exports shared auth client helpers (createApi and runAuthSignOutFlow), with structured subpaths at ./shared/authApi and ./shared/signOutFlow."
119
+ }
120
+ ],
121
+ "containerTokens": {
122
+ "server": [
123
+ "auth.access",
124
+ "auth.session.events.service"
125
+ ],
126
+ "client": [
127
+ "auth.access.client"
128
+ ]
129
+ }
130
+ }
131
+ },
132
+ "mutations": {
133
+ "dependencies": {
134
+ "runtime": {
135
+ "@jskit-ai/kernel": "0.1.149",
136
+ "@fastify/cookie": "^11.0.2",
137
+ "@fastify/csrf-protection": "^7.1.0",
138
+ "@fastify/rate-limit": "^10.3.0"
139
+ },
140
+ "dev": {}
141
+ },
142
+ "packageJson": {
143
+ "scripts": {}
144
+ },
145
+ "procfile": {},
146
+ "files": [],
147
+ "text": []
148
+ }
64
149
  }
65
150
  }
@@ -1,91 +0,0 @@
1
- export default Object.freeze({
2
- "packageVersion": 1,
3
- "packageId": "@jskit-ai/auth-core",
4
- "version": "0.1.145",
5
- "kind": "runtime",
6
- "dependsOn": [
7
- "@jskit-ai/value-app-config-shared"
8
- ],
9
- "capabilities": {
10
- "provides": [
11
- "auth.access",
12
- "auth.policy"
13
- ],
14
- "requires": []
15
- },
16
- "runtime": {
17
- "server": {
18
- "providerEntrypoint": "src/server/providers/AccessCoreServiceProvider.js",
19
- "providers": [
20
- {
21
- "entrypoint": "src/server/providers/AccessCoreServiceProvider.js",
22
- "export": "AccessCoreServiceProvider"
23
- },
24
- {
25
- "entrypoint": "src/server/providers/AuthActionsServiceProvider.js",
26
- "export": "AuthActionsServiceProvider"
27
- },
28
- {
29
- "entrypoint": "src/server/providers/FastifyAuthPolicyServiceProvider.js",
30
- "export": "FastifyAuthPolicyServiceProvider"
31
- }
32
- ]
33
- },
34
- "client": {
35
- "providers": [
36
- {
37
- "entrypoint": "src/client/providers/AccessCoreClientProvider.js",
38
- "export": "AccessCoreClientProvider"
39
- },
40
- {
41
- "entrypoint": "src/client/providers/FastifyAuthPolicyClientProvider.js",
42
- "export": "FastifyAuthPolicyClientProvider"
43
- }
44
- ]
45
- }
46
- },
47
- "metadata": {
48
- "apiSummary": {
49
- "surfaces": [
50
- {
51
- "subpath": "./client",
52
- "summary": "Exports client auth access APIs plus AccessCoreClientProvider/FastifyAuthPolicyClientProvider."
53
- },
54
- {
55
- "subpath": "./server",
56
- "summary": "Exports server auth access, shared auth action, and Fastify auth policy providers plus server auth utility modules."
57
- },
58
- {
59
- "subpath": "./shared",
60
- "summary": "Exports shared auth client helpers (createApi and runAuthSignOutFlow), with structured subpaths at ./shared/authApi and ./shared/signOutFlow."
61
- }
62
- ],
63
- "containerTokens": {
64
- "server": [
65
- "auth.access",
66
- "auth.session.events.service"
67
- ],
68
- "client": [
69
- "auth.access.client"
70
- ]
71
- }
72
- }
73
- },
74
- "mutations": {
75
- "dependencies": {
76
- "runtime": {
77
- "@jskit-ai/kernel": "0.1.146",
78
- "@fastify/cookie": "^11.0.2",
79
- "@fastify/csrf-protection": "^7.1.0",
80
- "@fastify/rate-limit": "^10.3.0"
81
- },
82
- "dev": {}
83
- },
84
- "packageJson": {
85
- "scripts": {}
86
- },
87
- "procfile": {},
88
- "files": [],
89
- "text": []
90
- }
91
- });