sst 2.11.13 → 2.11.14

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.
@@ -570,6 +570,7 @@ export declare class Function extends CDKFunction implements SSTConstruct {
570
570
  type: "Function";
571
571
  data: {
572
572
  arn: string;
573
+ handler: string | undefined;
573
574
  localId: string;
574
575
  secrets: string[];
575
576
  };
@@ -316,6 +316,7 @@ export class Function extends CDKFunction {
316
316
  type: "Function",
317
317
  data: {
318
318
  arn: this.functionArn,
319
+ handler: this.props.handler,
319
320
  localId: this.node.addr,
320
321
  secrets: this.allBindings
321
322
  .filter((c) => c instanceof Secret)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "sideEffects": false,
3
3
  "name": "sst",
4
- "version": "2.11.13",
4
+ "version": "2.11.14",
5
5
  "bin": {
6
6
  "sst": "cli/sst.js"
7
7
  },