chore(api): bump maximum memory (#451)
build-test / pre-commit-and-test (push) Has been cancelled

* chore(api): bump maximum memory

* chore(build): commit build artefacts
This commit is contained in:
Chuck Driesler
2025-09-23 17:08:19 +01:00
committed by GitHub
parent 73db62dc70
commit f2c3ac2ae7
3 changed files with 3 additions and 3 deletions
Generated Vendored
+1 -1
View File
@@ -38490,7 +38490,7 @@ const InputVariablesSchema = z.object({
.int() .int()
.finite() .finite()
.gte(1) .gte(1)
.lte(8000) .lte(60000)
.optional() .optional()
}); });
const parseInputs = () => { const parseInputs = () => {
Generated Vendored
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -29,7 +29,7 @@ const InputVariablesSchema = z.object({
.int() .int()
.finite() .finite()
.gte(1) .gte(1)
.lte(8000) .lte(60000)
.optional() .optional()
}) })