authhero 0.160.0 → 0.161.0
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/authhero.cjs +55 -41
- package/dist/authhero.d.ts +62 -0
- package/dist/authhero.mjs +19954 -12089
- package/package.json +1 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -18255,6 +18255,68 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18255
18255
|
};
|
|
18256
18256
|
};
|
|
18257
18257
|
}, "/v2/logout">, "/">;
|
|
18258
|
+
samlApp: OpenAPIHono<{
|
|
18259
|
+
Bindings: Bindings;
|
|
18260
|
+
Variables: Variables;
|
|
18261
|
+
}, import("hono/types").MergeSchemaPath<{
|
|
18262
|
+
"/metadata/:client_id": {
|
|
18263
|
+
$get: {
|
|
18264
|
+
input: {
|
|
18265
|
+
param: {
|
|
18266
|
+
client_id: string;
|
|
18267
|
+
};
|
|
18268
|
+
};
|
|
18269
|
+
output: Response;
|
|
18270
|
+
outputFormat: "json";
|
|
18271
|
+
status: import("hono/utils/http-status").StatusCode;
|
|
18272
|
+
} | {
|
|
18273
|
+
input: {
|
|
18274
|
+
param: {
|
|
18275
|
+
client_id: string;
|
|
18276
|
+
};
|
|
18277
|
+
};
|
|
18278
|
+
output: {};
|
|
18279
|
+
outputFormat: string;
|
|
18280
|
+
status: 400;
|
|
18281
|
+
};
|
|
18282
|
+
};
|
|
18283
|
+
} & {
|
|
18284
|
+
"/:client_id": {
|
|
18285
|
+
$get: {
|
|
18286
|
+
input: {
|
|
18287
|
+
param: {
|
|
18288
|
+
client_id: string;
|
|
18289
|
+
};
|
|
18290
|
+
} & {
|
|
18291
|
+
query: {
|
|
18292
|
+
SAMLRequest: string;
|
|
18293
|
+
Signature?: string | undefined;
|
|
18294
|
+
RelayState?: string | undefined;
|
|
18295
|
+
SigAlg?: string | undefined;
|
|
18296
|
+
};
|
|
18297
|
+
};
|
|
18298
|
+
output: Response;
|
|
18299
|
+
outputFormat: "json";
|
|
18300
|
+
status: import("hono/utils/http-status").StatusCode;
|
|
18301
|
+
} | {
|
|
18302
|
+
input: {
|
|
18303
|
+
param: {
|
|
18304
|
+
client_id: string;
|
|
18305
|
+
};
|
|
18306
|
+
} & {
|
|
18307
|
+
query: {
|
|
18308
|
+
SAMLRequest: string;
|
|
18309
|
+
Signature?: string | undefined;
|
|
18310
|
+
RelayState?: string | undefined;
|
|
18311
|
+
SigAlg?: string | undefined;
|
|
18312
|
+
};
|
|
18313
|
+
};
|
|
18314
|
+
output: {};
|
|
18315
|
+
outputFormat: string;
|
|
18316
|
+
status: 400;
|
|
18317
|
+
};
|
|
18318
|
+
};
|
|
18319
|
+
}, "/">, "/">;
|
|
18258
18320
|
universalApp: OpenAPIHono<{
|
|
18259
18321
|
Bindings: Bindings;
|
|
18260
18322
|
Variables: Variables;
|