@schemavaults/auth-server-sdk 0.22.16 → 0.22.18
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.18" : "unknown";
|
|
93
93
|
return `${CODEGEN_MARKER_PREFIX}${version}`;
|
|
94
94
|
}
|
|
95
95
|
function hasCodegenMarker(firstLine) {
|
|
@@ -306,7 +306,7 @@ async function main() {
|
|
|
306
306
|
return;
|
|
307
307
|
}
|
|
308
308
|
if (args.includes("--version") || args.includes("-v")) {
|
|
309
|
-
console.log(`${PACKAGE_NAME}@${"0.22.
|
|
309
|
+
console.log(`${PACKAGE_NAME}@${"0.22.18"}`);
|
|
310
310
|
return;
|
|
311
311
|
}
|
|
312
312
|
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.18",
|
|
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.7",
|
|
22
|
+
"@schemavaults/auth-common": "0.10.10",
|
|
23
23
|
"@schemavaults/app-definitions": "0.6.23"
|
|
24
24
|
},
|
|
25
25
|
"scripts": {
|