sst 2.23.6 → 2.23.8

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.
@@ -26,6 +26,7 @@ export declare class AstroSite extends SsrSite {
26
26
  data: {
27
27
  mode: "placeholder" | "deployed";
28
28
  path: string;
29
+ runtime: "nodejs14.x" | "nodejs16.x" | "nodejs18.x";
29
30
  customDomainUrl: string | undefined;
30
31
  url: string | undefined;
31
32
  edge: boolean | undefined;
@@ -634,6 +634,7 @@ export declare class Function extends CDKFunction implements SSTConstruct {
634
634
  type: "Function";
635
635
  data: {
636
636
  arn: string;
637
+ runtime: "container" | "rust" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "dotnetcore3.1" | "dotnet6" | "java8" | "java11" | "java17" | "go1.x" | "go" | undefined;
637
638
  handler: string | undefined;
638
639
  localId: string;
639
640
  secrets: string[];
@@ -348,6 +348,7 @@ export class Function extends CDKFunction {
348
348
  type: "Function",
349
349
  data: {
350
350
  arn: this.functionArn,
351
+ runtime: this.props.runtime,
351
352
  handler: this.props.handler,
352
353
  localId: this.node.addr,
353
354
  secrets: this.allBindings
@@ -70,6 +70,7 @@ export declare class NextjsSite extends SsrSite {
70
70
  data: {
71
71
  mode: "placeholder" | "deployed";
72
72
  path: string;
73
+ runtime: "nodejs14.x" | "nodejs16.x" | "nodejs18.x";
73
74
  customDomainUrl: string | undefined;
74
75
  url: string | undefined;
75
76
  edge: boolean | undefined;
@@ -28,6 +28,7 @@ export declare class RemixSite extends SsrSite {
28
28
  data: {
29
29
  mode: "placeholder" | "deployed";
30
30
  path: string;
31
+ runtime: "nodejs14.x" | "nodejs16.x" | "nodejs18.x";
31
32
  customDomainUrl: string | undefined;
32
33
  url: string | undefined;
33
34
  edge: boolean | undefined;
@@ -25,6 +25,7 @@ export declare class SolidStartSite extends SsrSite {
25
25
  data: {
26
26
  mode: "placeholder" | "deployed";
27
27
  path: string;
28
+ runtime: "nodejs14.x" | "nodejs16.x" | "nodejs18.x";
28
29
  customDomainUrl: string | undefined;
29
30
  url: string | undefined;
30
31
  edge: boolean | undefined;
@@ -314,6 +314,7 @@ export declare abstract class SsrSite extends Construct implements SSTConstruct
314
314
  data: {
315
315
  mode: "placeholder" | "deployed";
316
316
  path: string;
317
+ runtime: "nodejs14.x" | "nodejs16.x" | "nodejs18.x";
317
318
  customDomainUrl: string | undefined;
318
319
  url: string | undefined;
319
320
  edge: boolean | undefined;
@@ -177,6 +177,7 @@ export class SsrSite extends Construct {
177
177
  ? "placeholder"
178
178
  : "deployed",
179
179
  path: this.props.path,
180
+ runtime: this.props.runtime,
180
181
  customDomainUrl: this.customDomainUrl,
181
182
  url: this.url,
182
183
  edge: this.props.edge,
@@ -28,6 +28,7 @@ export declare class SvelteKitSite extends SsrSite {
28
28
  data: {
29
29
  mode: "placeholder" | "deployed";
30
30
  path: string;
31
+ runtime: "nodejs14.x" | "nodejs16.x" | "nodejs18.x";
31
32
  customDomainUrl: string | undefined;
32
33
  url: string | undefined;
33
34
  edge: boolean | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "sideEffects": false,
3
3
  "name": "sst",
4
- "version": "2.23.6",
4
+ "version": "2.23.8",
5
5
  "bin": {
6
6
  "sst": "cli/sst.js"
7
7
  },