@schemavaults/auth-server-sdk 0.22.20 → 0.22.24

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.
Files changed (2) hide show
  1. package/dist/cli.cjs +2 -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.20" : "unknown";
92
+ const version = true ? "0.22.24" : "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.20"}`);
309
+ console.log(`${PACKAGE_NAME}@${"0.22.24"}`);
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.20",
4
+ "version": "0.22.24",
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.8",
22
- "@schemavaults/auth-common": "0.10.11",
21
+ "@schemavaults/jwt": "0.7.12",
22
+ "@schemavaults/auth-common": "0.10.15",
23
23
  "@schemavaults/app-definitions": "0.6.23"
24
24
  },
25
25
  "scripts": {