sst 3.0.41 → 3.0.43
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/auth/handler.d.ts +1 -0
- package/dist/aws/auth.js +1 -1
- package/package.json +6 -6
package/dist/auth/handler.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ export declare function AuthHandler<Providers extends Record<string, Adapter<any
|
|
|
37
37
|
provider: key;
|
|
38
38
|
} & (Providers[key] extends Adapter<infer T> ? T : {})>;
|
|
39
39
|
}[keyof Providers]>(input: {
|
|
40
|
+
stream?: boolean;
|
|
40
41
|
session?: Sessions;
|
|
41
42
|
providers: Providers;
|
|
42
43
|
callbacks: {
|
package/dist/aws/auth.js
CHANGED
|
@@ -5,7 +5,7 @@ export var auth;
|
|
|
5
5
|
(function (auth) {
|
|
6
6
|
function authorizer(...args) {
|
|
7
7
|
const hono = AuthHandler(...args);
|
|
8
|
-
return (
|
|
8
|
+
return (args[0].stream ? streamHandle(hono) : handle(hono));
|
|
9
9
|
}
|
|
10
10
|
auth.authorizer = authorizer;
|
|
11
11
|
auth.sessions = createSessionBuilder;
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"name": "sst",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
|
-
"version": "3.0.
|
|
6
|
+
"version": "3.0.43",
|
|
7
7
|
"main": "./dist/index.js",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": "./dist/index.js",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
49
|
"optionalDependencies": {
|
|
50
|
-
"sst-linux-x64": "3.0.
|
|
51
|
-
"sst-linux-x86": "3.0.
|
|
52
|
-
"sst-linux-arm64": "3.0.
|
|
53
|
-
"sst-darwin-x64": "3.0.
|
|
54
|
-
"sst-darwin-arm64": "3.0.
|
|
50
|
+
"sst-linux-x64": "3.0.43",
|
|
51
|
+
"sst-linux-x86": "3.0.43",
|
|
52
|
+
"sst-linux-arm64": "3.0.43",
|
|
53
|
+
"sst-darwin-x64": "3.0.43",
|
|
54
|
+
"sst-darwin-arm64": "3.0.43"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"@aws-sdk/client-lambda": "3.478.0",
|