sst 2.44.1 → 2.44.3
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/constructs/Function.d.ts +1 -1
- package/constructs/Job.d.ts +1 -1
- package/constructs/Job.js +1 -1
- package/package.json +2 -2
package/constructs/Function.d.ts
CHANGED
|
@@ -70,7 +70,7 @@ export interface FunctionHooks {
|
|
|
70
70
|
*/
|
|
71
71
|
afterBuild?: (props: FunctionProps, out: string) => Promise<void>;
|
|
72
72
|
}
|
|
73
|
-
export interface FunctionProps extends Omit<FunctionOptions, "functionName" | "memorySize" | "timeout" | "runtime" | "tracing" | "layers" | "architecture" | "logRetention"> {
|
|
73
|
+
export interface FunctionProps extends Omit<FunctionOptions, "functionName" | "memorySize" | "timeout" | "runtime" | "tracing" | "layers" | "architecture" | "logRetention" | "ephemeralStorageSize"> {
|
|
74
74
|
/**
|
|
75
75
|
* Used to configure additional files to copy into the function bundle
|
|
76
76
|
*
|
package/constructs/Job.d.ts
CHANGED
package/constructs/Job.js
CHANGED
|
@@ -406,7 +406,7 @@ export class Job extends Construct {
|
|
|
406
406
|
}
|
|
407
407
|
normalizeTimeout(timeout) {
|
|
408
408
|
const value = toCdkDuration(timeout);
|
|
409
|
-
if (value.toSeconds() < 5 * 60 || value.toSeconds() >
|
|
409
|
+
if (value.toSeconds() < 5 * 60 || value.toSeconds() > 2160 * 60) {
|
|
410
410
|
throw new Error(`Invalid timeout value for the ${this.node.id} Job.`);
|
|
411
411
|
}
|
|
412
412
|
return value;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"sideEffects": false,
|
|
3
3
|
"name": "sst",
|
|
4
|
-
"version": "2.44.
|
|
4
|
+
"version": "2.44.3",
|
|
5
5
|
"bin": {
|
|
6
6
|
"sst": "cli/sst.js"
|
|
7
7
|
},
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
"@types/ws": "^8.5.3",
|
|
119
119
|
"@types/yargs": "^17.0.13",
|
|
120
120
|
"archiver": "^5.3.1",
|
|
121
|
-
"astro-sst": "2.44.
|
|
121
|
+
"astro-sst": "2.44.3",
|
|
122
122
|
"async": "^3.2.4",
|
|
123
123
|
"tsx": "^3.12.1",
|
|
124
124
|
"typescript": "^5.2.2",
|