diff --git a/const/package.json b/const/package.json index 6d204008..2876b3f1 100644 --- a/const/package.json +++ b/const/package.json @@ -1,6 +1,6 @@ { "name": "@bpinternal/const", - "version": "0.0.17", + "version": "0.0.18", "description": "Constant utilities for Botpress", "main": "./dist/index.cjs", "browser": "./dist/index.mjs", diff --git a/const/src/quotas.ts b/const/src/quotas.ts index 501ae79c..f8e6a3ef 100644 --- a/const/src/quotas.ts +++ b/const/src/quotas.ts @@ -39,7 +39,7 @@ export const quotaTypes = [ 'table_row_count', 'workspace_member_count', 'integrations_owned_count', - 'token_spend' + 'ai_spend' ] as const satisfies Readonly export const quotaConfigs = { @@ -115,10 +115,10 @@ export const quotaConfigs = { category: 'count', trackUsagePerBot: false }, - token_spend: { - name: 'Token Spend', + ai_spend: { + name: 'AI Spend', description: - 'Maximum amount of token spend, expressed in nano-dollars (1 nano-dollar = $0.000000001) that can be used in a month.', + 'Maximum amount of AI spend, expressed in nano-dollars (1 nano-dollar = $0.000000001) that can be used in a month.', default: 5_000_000_000, kind: 'workspace', category: 'credit',