sst 2.23.8 → 2.23.10

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.
@@ -49,6 +49,7 @@ export declare class SsrFunction extends Construct implements SSTConstruct {
49
49
  type: "Function";
50
50
  data: {
51
51
  arn: string;
52
+ runtime: "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | undefined;
52
53
  handler: string;
53
54
  localId: string;
54
55
  secrets: string[];
@@ -212,6 +212,7 @@ export class SsrFunction extends Construct {
212
212
  type: "Function",
213
213
  data: {
214
214
  arn: this.functionArn,
215
+ runtime: this.props.runtime,
215
216
  handler: this.props.handler,
216
217
  localId: this.node.addr,
217
218
  secrets: [],
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "sideEffects": false,
3
3
  "name": "sst",
4
- "version": "2.23.8",
4
+ "version": "2.23.10",
5
5
  "bin": {
6
6
  "sst": "cli/sst.js"
7
7
  },