sst 2.13.3 → 2.13.5

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.
@@ -27,6 +27,7 @@ export declare class AstroSite extends SsrSite {
27
27
  mode: "placeholder" | "deployed";
28
28
  path: string;
29
29
  customDomainUrl: string | undefined;
30
+ url: string | undefined;
30
31
  edge: boolean | undefined;
31
32
  server: string;
32
33
  secrets: string[];
@@ -66,6 +66,7 @@ export declare class NextjsSite extends SsrSite {
66
66
  mode: "placeholder" | "deployed";
67
67
  path: string;
68
68
  customDomainUrl: string | undefined;
69
+ url: string | undefined;
69
70
  edge: boolean | undefined;
70
71
  server: string;
71
72
  secrets: string[];
@@ -29,6 +29,7 @@ export declare class RemixSite extends SsrSite {
29
29
  mode: "placeholder" | "deployed";
30
30
  path: string;
31
31
  customDomainUrl: string | undefined;
32
+ url: string | undefined;
32
33
  edge: boolean | undefined;
33
34
  server: string;
34
35
  secrets: string[];
@@ -26,6 +26,7 @@ export declare class SolidStartSite extends SsrSite {
26
26
  mode: "placeholder" | "deployed";
27
27
  path: string;
28
28
  customDomainUrl: string | undefined;
29
+ url: string | undefined;
29
30
  edge: boolean | undefined;
30
31
  server: string;
31
32
  secrets: string[];
@@ -258,6 +258,7 @@ export declare abstract class SsrSite extends Construct implements SSTConstruct
258
258
  mode: "placeholder" | "deployed";
259
259
  path: string;
260
260
  customDomainUrl: string | undefined;
261
+ url: string | undefined;
261
262
  edge: boolean | undefined;
262
263
  server: string;
263
264
  secrets: string[];
@@ -188,6 +188,7 @@ export class SsrSite extends Construct {
188
188
  : "deployed",
189
189
  path: this.props.path,
190
190
  customDomainUrl: this.customDomainUrl,
191
+ url: this.url,
191
192
  edge: this.props.edge,
192
193
  server: (this.serverLambdaForDev ||
193
194
  this.serverLambdaForRegional ||
@@ -324,6 +324,7 @@ export declare class StaticSite extends Construct implements SSTConstruct {
324
324
  path: string;
325
325
  environment: Record<string, string>;
326
326
  customDomainUrl: string | undefined;
327
+ url: string | undefined;
327
328
  };
328
329
  };
329
330
  /** @internal */
@@ -138,6 +138,7 @@ export class StaticSite extends Construct {
138
138
  path: this.props.path,
139
139
  environment: this.props.environment || {},
140
140
  customDomainUrl: this.customDomainUrl,
141
+ url: this.url,
141
142
  },
142
143
  };
143
144
  }
@@ -29,6 +29,7 @@ export declare class SvelteKitSite extends SsrSite {
29
29
  mode: "placeholder" | "deployed";
30
30
  path: string;
31
31
  customDomainUrl: string | undefined;
32
+ url: string | undefined;
32
33
  edge: boolean | undefined;
33
34
  server: string;
34
35
  secrets: string[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "sideEffects": false,
3
3
  "name": "sst",
4
- "version": "2.13.3",
4
+ "version": "2.13.5",
5
5
  "bin": {
6
6
  "sst": "cli/sst.js"
7
7
  },