@bpinternal/const 0.0.19 → 0.0.20
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/dist/index.cjs +3 -3
- package/dist/index.mjs +3 -3
- package/package.json +1 -1
- package/src/quotas.ts +3 -3
package/dist/index.cjs
CHANGED
|
@@ -210,7 +210,7 @@ var quotaConfigs = {
|
|
|
210
210
|
storage_count: {
|
|
211
211
|
name: "Storage Count",
|
|
212
212
|
description: "Maximum number of storage bytes that can be stored.",
|
|
213
|
-
default:
|
|
213
|
+
default: 5e8,
|
|
214
214
|
// 500 MB
|
|
215
215
|
kind: "workspace",
|
|
216
216
|
category: "count",
|
|
@@ -234,8 +234,8 @@ var quotaConfigs = {
|
|
|
234
234
|
},
|
|
235
235
|
knowledgebase_vector_storage: {
|
|
236
236
|
name: "Knowledgebase Vector Storage",
|
|
237
|
-
description: "Maximum size knowledge base documents",
|
|
238
|
-
default:
|
|
237
|
+
description: "Maximum size of knowledge base documents",
|
|
238
|
+
default: 1e8,
|
|
239
239
|
// 100 MB
|
|
240
240
|
kind: "workspace",
|
|
241
241
|
category: "count",
|
package/dist/index.mjs
CHANGED
|
@@ -180,7 +180,7 @@ var quotaConfigs = {
|
|
|
180
180
|
storage_count: {
|
|
181
181
|
name: "Storage Count",
|
|
182
182
|
description: "Maximum number of storage bytes that can be stored.",
|
|
183
|
-
default:
|
|
183
|
+
default: 5e8,
|
|
184
184
|
// 500 MB
|
|
185
185
|
kind: "workspace",
|
|
186
186
|
category: "count",
|
|
@@ -204,8 +204,8 @@ var quotaConfigs = {
|
|
|
204
204
|
},
|
|
205
205
|
knowledgebase_vector_storage: {
|
|
206
206
|
name: "Knowledgebase Vector Storage",
|
|
207
|
-
description: "Maximum size knowledge base documents",
|
|
208
|
-
default:
|
|
207
|
+
description: "Maximum size of knowledge base documents",
|
|
208
|
+
default: 1e8,
|
|
209
209
|
// 100 MB
|
|
210
210
|
kind: "workspace",
|
|
211
211
|
category: "count",
|
package/package.json
CHANGED
package/src/quotas.ts
CHANGED
|
@@ -60,7 +60,7 @@ export const quotaConfigs = {
|
|
|
60
60
|
storage_count: {
|
|
61
61
|
name: 'Storage Count',
|
|
62
62
|
description: 'Maximum number of storage bytes that can be stored.',
|
|
63
|
-
default:
|
|
63
|
+
default: 500_000_000, // 500 MB
|
|
64
64
|
kind: 'workspace',
|
|
65
65
|
category: 'count',
|
|
66
66
|
trackUsagePerBot: true
|
|
@@ -83,8 +83,8 @@ export const quotaConfigs = {
|
|
|
83
83
|
},
|
|
84
84
|
knowledgebase_vector_storage: {
|
|
85
85
|
name: 'Knowledgebase Vector Storage',
|
|
86
|
-
description: 'Maximum size knowledge base documents',
|
|
87
|
-
default:
|
|
86
|
+
description: 'Maximum size of knowledge base documents',
|
|
87
|
+
default: 100_000_000, // 100 MB
|
|
88
88
|
kind: 'workspace',
|
|
89
89
|
category: 'count',
|
|
90
90
|
trackUsagePerBot: true
|