@schemavaults/auth-server-sdk 0.22.6 → 0.22.7
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/dist/cli.cjs +2 -2
- package/package.json +3 -3
package/dist/cli.cjs
CHANGED
|
@@ -89,7 +89,7 @@ var init_resolve_codegen_templates_directory = __esm({
|
|
|
89
89
|
|
|
90
90
|
// src/NextjsAppDirectoryPlugin/codegen-marker.ts
|
|
91
91
|
function getCodegenMarkerComment() {
|
|
92
|
-
const version = true ? "0.22.
|
|
92
|
+
const version = true ? "0.22.7" : "unknown";
|
|
93
93
|
return `${CODEGEN_MARKER_PREFIX}${version}`;
|
|
94
94
|
}
|
|
95
95
|
function hasCodegenMarker(firstLine) {
|
|
@@ -296,7 +296,7 @@ async function main() {
|
|
|
296
296
|
return;
|
|
297
297
|
}
|
|
298
298
|
if (args.includes("--version") || args.includes("-v")) {
|
|
299
|
-
console.log(`${PACKAGE_NAME}@${"0.22.
|
|
299
|
+
console.log(`${PACKAGE_NAME}@${"0.22.7"}`);
|
|
300
300
|
return;
|
|
301
301
|
}
|
|
302
302
|
const command = args.find((arg) => !arg.startsWith("-")) ?? "codegen";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@schemavaults/auth-server-sdk",
|
|
3
3
|
"description": "TypeScript SDK for building authenticated endpoints/middlewares for the Auth Server and Resource Servers",
|
|
4
|
-
"version": "0.22.
|
|
4
|
+
"version": "0.22.7",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"private": false,
|
|
7
7
|
"repository": {
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"zod": "3.25.8",
|
|
21
|
-
"@schemavaults/jwt": "0.7.
|
|
22
|
-
"@schemavaults/auth-common": "0.10.
|
|
21
|
+
"@schemavaults/jwt": "0.7.4",
|
|
22
|
+
"@schemavaults/auth-common": "0.10.5",
|
|
23
23
|
"@schemavaults/app-definitions": "0.6.22"
|
|
24
24
|
},
|
|
25
25
|
"scripts": {
|