sst 3.3.29 → 3.3.30
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,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="node" resolution-mode="require"/>
|
|
2
1
|
export declare function LinkAdapter(config: {
|
|
3
2
|
onLink: (link: string, claims: Record<string, any>) => Promise<Response>;
|
|
4
3
|
}): (routes: import("./adapter.js").AdapterRoute, ctx: import("./adapter.js").AdapterOptions<{
|
package/dist/auth/handler.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="node" resolution-mode="require"/>
|
|
2
1
|
import { Adapter } from "./adapter/adapter.js";
|
|
3
2
|
import { JWTPayload } from "jose";
|
|
4
3
|
import { SessionBuilder } from "./session.js";
|
|
@@ -30,7 +29,7 @@ export declare class InvalidSessionError extends Error {
|
|
|
30
29
|
export type Prettify<T> = {
|
|
31
30
|
[K in keyof T]: T[K];
|
|
32
31
|
} & {};
|
|
33
|
-
export declare const aws: <E extends import("hono").Env = import("hono").Env, S extends import("hono").Schema = {}, BasePath extends string = "/">(app: import("hono").Hono<E, S, BasePath>) => (event: import("hono/aws-lambda").LambdaEvent, lambdaContext?: import("hono/aws-lambda").LambdaContext
|
|
32
|
+
export declare const aws: <E extends import("hono").Env = import("hono").Env, S extends import("hono").Schema = {}, BasePath extends string = "/">(app: import("hono").Hono<E, S, BasePath>) => (event: import("hono/aws-lambda").LambdaEvent, lambdaContext?: import("hono/aws-lambda").LambdaContext) => Promise<import("hono/aws-lambda").APIGatewayProxyResult>;
|
|
34
33
|
export declare function AuthHandler<Providers extends Record<string, Adapter<any>>, Sessions extends SessionBuilder = SessionBuilder, Result = {
|
|
35
34
|
[key in keyof Providers]: Prettify<{
|
|
36
35
|
provider: key;
|
package/dist/aws/bus.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"name": "sst",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
|
-
"version": "3.3.
|
|
6
|
+
"version": "3.3.30",
|
|
7
7
|
"main": "./dist/index.js",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": "./dist/index.js",
|
|
@@ -20,10 +20,9 @@
|
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@tsconfig/node20": "20.1.4",
|
|
23
|
-
"@types/
|
|
24
|
-
"@types/node": "20.11.0",
|
|
23
|
+
"@types/node": "22.10.0",
|
|
25
24
|
"hono": "4.3.9",
|
|
26
|
-
"typescript": "5.
|
|
25
|
+
"typescript": "5.7.2",
|
|
27
26
|
"valibot": "0.30.0",
|
|
28
27
|
"zod": "3.23.8"
|
|
29
28
|
},
|
|
@@ -47,11 +46,11 @@
|
|
|
47
46
|
}
|
|
48
47
|
},
|
|
49
48
|
"optionalDependencies": {
|
|
50
|
-
"sst-linux-x64": "3.3.
|
|
51
|
-
"sst-linux-x86": "3.3.
|
|
52
|
-
"sst-linux-arm64": "3.3.
|
|
53
|
-
"sst-darwin-x64": "3.3.
|
|
54
|
-
"sst-darwin-arm64": "3.3.
|
|
49
|
+
"sst-linux-x64": "3.3.30",
|
|
50
|
+
"sst-linux-x86": "3.3.30",
|
|
51
|
+
"sst-linux-arm64": "3.3.30",
|
|
52
|
+
"sst-darwin-x64": "3.3.30",
|
|
53
|
+
"sst-darwin-arm64": "3.3.30"
|
|
55
54
|
},
|
|
56
55
|
"dependencies": {
|
|
57
56
|
"aws4fetch": "^1.0.18",
|