sst 2.48.0 → 2.48.1
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/constructs/Function.d.ts
CHANGED
|
@@ -24,6 +24,7 @@ declare const supportedRuntimes: {
|
|
|
24
24
|
"python3.10": CDKRuntime;
|
|
25
25
|
"python3.11": CDKRuntime;
|
|
26
26
|
"python3.12": CDKRuntime;
|
|
27
|
+
"python3.13": CDKRuntime;
|
|
27
28
|
"dotnetcore3.1": CDKRuntime;
|
|
28
29
|
dotnet6: CDKRuntime;
|
|
29
30
|
dotnet8: CDKRuntime;
|
|
@@ -797,7 +798,7 @@ export declare class Function extends CDKFunction implements SSTConstruct {
|
|
|
797
798
|
type: "Function";
|
|
798
799
|
data: {
|
|
799
800
|
arn: string;
|
|
800
|
-
runtime: "container" | "rust" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "java8" | "java11" | "java17" | "java21" | "go1.x" | "go" | undefined;
|
|
801
|
+
runtime: "container" | "rust" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "java8" | "java11" | "java17" | "java21" | "go1.x" | "go" | undefined;
|
|
801
802
|
handler: string | undefined;
|
|
802
803
|
missingSourcemap: boolean | undefined;
|
|
803
804
|
localId: string;
|
package/constructs/Function.js
CHANGED
|
@@ -43,6 +43,7 @@ const supportedRuntimes = {
|
|
|
43
43
|
"python3.10": CDKRuntime.PYTHON_3_10,
|
|
44
44
|
"python3.11": CDKRuntime.PYTHON_3_11,
|
|
45
45
|
"python3.12": CDKRuntime.PYTHON_3_12,
|
|
46
|
+
"python3.13": CDKRuntime.PYTHON_3_13,
|
|
46
47
|
"dotnetcore3.1": CDKRuntime.DOTNET_CORE_3_1,
|
|
47
48
|
dotnet6: CDKRuntime.DOTNET_6,
|
|
48
49
|
dotnet8: CDKRuntime.DOTNET_8,
|
package/package.json
CHANGED
package/package.json.bak
CHANGED