sst 3.0.11 → 3.0.12

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.
@@ -7,5 +7,5 @@ type MicrosoftConfig = OidcBasicConfig & {
7
7
  export declare function MicrosoftAdapter(config: MicrosoftConfig): (routes: import("./adapter.js").AdapterRoute, ctx: import("./adapter.js").AdapterOptions<{
8
8
  tokenset: import("openid-client").TokenSet;
9
9
  client: import("openid-client").BaseClient;
10
- }>) => Promise<never>;
10
+ }>) => Promise<void>;
11
11
  export {};
@@ -16,4 +16,4 @@ export interface OidcConfig extends OidcBasicConfig {
16
16
  export declare const OidcAdapter: (config: OidcConfig) => (routes: import("./adapter.js").AdapterRoute, ctx: import("./adapter.js").AdapterOptions<{
17
17
  tokenset: TokenSet;
18
18
  client: BaseClient;
19
- }>) => Promise<never>;
19
+ }>) => Promise<void>;
@@ -41,6 +41,5 @@ export const OidcAdapter = /* @__PURE__ */ (config) => {
41
41
  client,
42
42
  });
43
43
  });
44
- throw new Error("Invalid auth request");
45
44
  };
46
45
  };
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "name": "sst",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
- "version": "3.0.11",
6
+ "version": "3.0.12",
7
7
  "main": "./dist/index.js",
8
8
  "exports": {
9
9
  ".": "./dist/index.js",