sst 2.24.11 → 2.24.12

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/bootstrap.js CHANGED
@@ -161,10 +161,12 @@ export async function bootstrapSST(cdkBucket) {
161
161
  },
162
162
  synthesizer: new DefaultStackSynthesizer({
163
163
  qualifier: cdk?.qualifier,
164
+ bootstrapStackVersionSsmParameter: cdk?.bootstrapStackVersionSsmParameter,
164
165
  fileAssetsBucketName: cdk?.fileAssetsBucketName,
165
166
  deployRoleArn: cdk?.deployRoleArn,
166
167
  fileAssetPublishingRoleArn: cdk?.fileAssetPublishingRoleArn,
167
168
  imageAssetPublishingRoleArn: cdk?.imageAssetPublishingRoleArn,
169
+ imageAssetsRepositoryName: cdk?.imageAssetsRepositoryName,
168
170
  cloudFormationExecutionRole: cdk?.cloudFormationExecutionRole,
169
171
  lookupRoleArn: cdk?.lookupRoleArn,
170
172
  }),
@@ -205,10 +205,12 @@ export class Stack extends CDKStack {
205
205
  const { config } = useProject();
206
206
  const props = {
207
207
  qualifier: config.cdk?.qualifier,
208
+ bootstrapStackVersionSsmParameter: config.cdk?.bootstrapStackVersionSsmParameter,
208
209
  fileAssetsBucketName: config.cdk?.fileAssetsBucketName,
209
210
  deployRoleArn: config.cdk?.deployRoleArn,
210
211
  fileAssetPublishingRoleArn: config.cdk?.fileAssetPublishingRoleArn,
211
212
  imageAssetPublishingRoleArn: config.cdk?.imageAssetPublishingRoleArn,
213
+ imageAssetsRepositoryName: config.cdk?.imageAssetsRepositoryName,
212
214
  cloudFormationExecutionRole: config.cdk?.cloudFormationExecutionRole,
213
215
  lookupRoleArn: config.cdk?.lookupRoleArn,
214
216
  };
@@ -0,0 +1,3 @@
1
+ export interface ServiceResources {
2
+ }
3
+ export declare const Service: ServiceResources;
@@ -0,0 +1,4 @@
1
+ import { createProxy } from "../util/index.js";
2
+ export const Service =
3
+ /* @__PURE__ */
4
+ createProxy("Service");
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "sideEffects": false,
3
3
  "name": "sst",
4
- "version": "2.24.11",
4
+ "version": "2.24.12",
5
5
  "bin": {
6
6
  "sst": "cli/sst.js"
7
7
  },
package/project.d.ts CHANGED
@@ -24,12 +24,14 @@ export interface ConfigOptions {
24
24
  cdk?: {
25
25
  toolkitStackName?: string;
26
26
  qualifier?: string;
27
+ bootstrapStackVersionSsmParameter?: string;
27
28
  fileAssetsBucketName?: string;
28
29
  customPermissionsBoundary?: string;
29
30
  publicAccessBlockConfiguration?: boolean;
30
31
  deployRoleArn?: string;
31
32
  fileAssetPublishingRoleArn?: string;
32
33
  imageAssetPublishingRoleArn?: string;
34
+ imageAssetsRepositoryName?: string;
33
35
  cloudFormationExecutionRole?: string;
34
36
  lookupRoleArn?: string;
35
37
  pathMetadata?: boolean;