sst 2.33.0 → 2.33.1

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.
@@ -11,7 +11,7 @@ export interface ScriptProps {
11
11
  * import { Script } from "sst/constructs";
12
12
  *
13
13
  * new Script(stack, "Script", {
14
- * onCreate: "src/script.create",
14
+ * onCreate: "src/function.create",
15
15
  * params: {
16
16
  * hello: "world",
17
17
  * },
@@ -27,7 +27,7 @@ export interface ScriptProps {
27
27
  * import { Script } from "sst/constructs";
28
28
  *
29
29
  * new Script(stack, "Script", {
30
- * onUpdate: "src/function.handler",
30
+ * onUpdate: "src/function.update",
31
31
  * version: "v17",
32
32
  * });
33
33
  * ```
@@ -55,7 +55,7 @@ export interface ScriptProps {
55
55
  * @example
56
56
  * ```js
57
57
  * new Script(stack, "Api", {
58
- * onCreate: "src/function.handler",
58
+ * onCreate: "src/function.create",
59
59
  * })
60
60
  * ```
61
61
  */
@@ -68,7 +68,7 @@ export interface ScriptProps {
68
68
  * @example
69
69
  * ```js
70
70
  * new Script(stack, "Api", {
71
- * onUpdate: "src/function.handler",
71
+ * onUpdate: "src/function.update",
72
72
  * })
73
73
  * ```
74
74
  */
@@ -78,7 +78,7 @@ export interface ScriptProps {
78
78
  * @example
79
79
  * ```js
80
80
  * new Script(stack, "Api", {
81
- * onDelete: "src/function.handler",
81
+ * onDelete: "src/function.delete",
82
82
  * })
83
83
  * ```
84
84
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "sideEffects": false,
3
3
  "name": "sst",
4
- "version": "2.33.0",
4
+ "version": "2.33.1",
5
5
  "bin": {
6
6
  "sst": "cli/sst.js"
7
7
  },
@@ -120,11 +120,11 @@
120
120
  "@types/ws": "^8.5.3",
121
121
  "@types/yargs": "^17.0.13",
122
122
  "archiver": "^5.3.1",
123
- "astro-sst": "2.33.0",
124
123
  "async": "^3.2.4",
125
124
  "tsx": "^3.12.1",
126
125
  "typescript": "^5.2.2",
127
- "vitest": "^0.33.0"
126
+ "vitest": "^0.33.0",
127
+ "astro-sst": "2.33.1"
128
128
  },
129
129
  "peerDependencies": {
130
130
  "@sls-next/lambda-at-edge": "^3.7.0"