@schemavaults/auth-server-sdk 0.21.7 → 0.21.8

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 +2 -2
package/dist/cli.cjs CHANGED
@@ -66,7 +66,7 @@ var init_resolve_codegen_templates_directory = __esm({
66
66
 
67
67
  // src/NextjsAppDirectoryPlugin/codegen-marker.ts
68
68
  function getCodegenMarkerComment() {
69
- const version = true ? "0.21.7" : "unknown";
69
+ const version = true ? "0.21.8" : "unknown";
70
70
  return `${CODEGEN_MARKER_PREFIX}${version}`;
71
71
  }
72
72
  function hasCodegenMarker(firstLine) {
@@ -248,7 +248,7 @@ async function main() {
248
248
  return;
249
249
  }
250
250
  if (args.includes("--version") || args.includes("-v")) {
251
- console.log(`${PACKAGE_NAME}@${"0.21.7"}`);
251
+ console.log(`${PACKAGE_NAME}@${"0.21.8"}`);
252
252
  return;
253
253
  }
254
254
  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.21.7",
4
+ "version": "0.21.8",
5
5
  "license": "UNLICENSED",
6
6
  "private": false,
7
7
  "repository": {
@@ -19,7 +19,7 @@
19
19
  "dependencies": {
20
20
  "zod": "3.25.8",
21
21
  "@schemavaults/jwt": "0.6.34",
22
- "@schemavaults/auth-common": "0.9.4",
22
+ "@schemavaults/auth-common": "0.9.5",
23
23
  "@schemavaults/app-definitions": "0.6.19"
24
24
  },
25
25
  "scripts": {