@schemavaults/auth-server-sdk 0.21.13 → 0.21.14

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.13" : "unknown";
69
+ const version = true ? "0.21.14" : "unknown";
70
70
  return `${CODEGEN_MARKER_PREFIX}${version}`;
71
71
  }
72
72
  function hasCodegenMarker(firstLine) {
@@ -252,7 +252,7 @@ async function main() {
252
252
  return;
253
253
  }
254
254
  if (args.includes("--version") || args.includes("-v")) {
255
- console.log(`${PACKAGE_NAME}@${"0.21.13"}`);
255
+ console.log(`${PACKAGE_NAME}@${"0.21.14"}`);
256
256
  return;
257
257
  }
258
258
  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.13",
4
+ "version": "0.21.14",
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.36",
22
- "@schemavaults/auth-common": "0.9.7",
22
+ "@schemavaults/auth-common": "0.9.8",
23
23
  "@schemavaults/app-definitions": "0.6.21"
24
24
  },
25
25
  "scripts": {