@schemavaults/auth-server-sdk 0.20.15 → 0.20.17
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { IJwtKeyManager } from "../../JwtKeyManager/IJwtKeyManager";
|
|
2
2
|
import type { JWKS } from "@schemavaults/jwt";
|
|
3
|
-
import { ApiServerId } from "@schemavaults/app-definitions";
|
|
3
|
+
import { type ApiServerId } from "@schemavaults/app-definitions";
|
|
4
4
|
export interface IRemoteJwtKeyManagerConstructorOpts {
|
|
5
5
|
auth_server_uri?: string;
|
|
6
6
|
debug?: boolean;
|
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.20.
|
|
69
|
+
const version = true ? "0.20.17" : "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.20.
|
|
251
|
+
console.log(`${PACKAGE_NAME}@${"0.20.17"}`);
|
|
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.20.
|
|
4
|
+
"version": "0.20.17",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"private": false,
|
|
7
7
|
"repository": {
|