Skip to content

Commit

Permalink
feat(limits): increase files_api_query_bytes to 2 KB (#365)
Browse files Browse the repository at this point in the history
  • Loading branch information
AbrahamLopez10 committed Aug 19, 2024
1 parent 9b43dcd commit ae417d5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion const/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bpinternal/const",
"version": "0.0.38",
"version": "0.0.39",
"description": "Constant utilities for Botpress",
"main": "./dist/index.cjs",
"browser": "./dist/index.mjs",
Expand Down
4 changes: 2 additions & 2 deletions const/src/limits.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ export const limitConfigs = {
unit: 'count'
},
files_api_query_bytes: {
value: 1024, // 1 KB
value: 2048, // 2 KB
unit: 'bytes'
},
code_payload_bytes: {
value: 52428800, // 50 MB
unit: 'bytes'
},
}
} as const satisfies Record<string, Limit>

0 comments on commit ae417d5

Please sign in to comment.