@bpinternal/const 0.0.18 → 0.0.19

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 CHANGED
@@ -194,7 +194,9 @@ var quotaTypes = [
194
194
  "table_row_count",
195
195
  "workspace_member_count",
196
196
  "integrations_owned_count",
197
- "ai_spend"
197
+ "ai_spend",
198
+ "openai_spend",
199
+ "bing_search_spend"
198
200
  ];
199
201
  var quotaConfigs = {
200
202
  invocation_timeout: {
@@ -278,6 +280,24 @@ var quotaConfigs = {
278
280
  kind: "workspace",
279
281
  category: "credit",
280
282
  trackUsagePerBot: true
283
+ },
284
+ openai_spend: {
285
+ name: "OpenAI Spend",
286
+ description: "Maximum amount of OpenAI spend, expressed in nano-dollars (1 nano-dollar = $0.000000001) that can be used in a month.",
287
+ default: 5e9,
288
+ kind: "workspace",
289
+ category: "credit",
290
+ trackUsagePerBot: true,
291
+ parent: "ai_spend"
292
+ },
293
+ bing_search_spend: {
294
+ name: "Bing Search Spend",
295
+ description: "Maximum amount of Bing Search spend, expressed in nano-dollars (1 nano-dollar = $0.000000001) that can be used in a month.",
296
+ default: 5e9,
297
+ kind: "workspace",
298
+ category: "credit",
299
+ trackUsagePerBot: true,
300
+ parent: "ai_spend"
281
301
  }
282
302
  };
283
303
  // Annotate the CommonJS export names for ESM import in node:
package/dist/index.mjs CHANGED
@@ -164,7 +164,9 @@ var quotaTypes = [
164
164
  "table_row_count",
165
165
  "workspace_member_count",
166
166
  "integrations_owned_count",
167
- "ai_spend"
167
+ "ai_spend",
168
+ "openai_spend",
169
+ "bing_search_spend"
168
170
  ];
169
171
  var quotaConfigs = {
170
172
  invocation_timeout: {
@@ -248,6 +250,24 @@ var quotaConfigs = {
248
250
  kind: "workspace",
249
251
  category: "credit",
250
252
  trackUsagePerBot: true
253
+ },
254
+ openai_spend: {
255
+ name: "OpenAI Spend",
256
+ description: "Maximum amount of OpenAI spend, expressed in nano-dollars (1 nano-dollar = $0.000000001) that can be used in a month.",
257
+ default: 5e9,
258
+ kind: "workspace",
259
+ category: "credit",
260
+ trackUsagePerBot: true,
261
+ parent: "ai_spend"
262
+ },
263
+ bing_search_spend: {
264
+ name: "Bing Search Spend",
265
+ description: "Maximum amount of Bing Search spend, expressed in nano-dollars (1 nano-dollar = $0.000000001) that can be used in a month.",
266
+ default: 5e9,
267
+ kind: "workspace",
268
+ category: "credit",
269
+ trackUsagePerBot: true,
270
+ parent: "ai_spend"
251
271
  }
252
272
  };
253
273
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpinternal/const",
3
- "version": "0.0.18",
3
+ "version": "0.0.19",
4
4
  "description": "Constant utilities for Botpress",
5
5
  "main": "./dist/index.cjs",
6
6
  "browser": "./dist/index.mjs",
package/src/quotas.ts CHANGED
@@ -23,6 +23,10 @@ export type Quota = {
23
23
  * If true, the usage is tracked per bot. This is only applicable if the kind is workspace.
24
24
  */
25
25
  trackUsagePerBot: boolean
26
+ /**
27
+ * Parent quota type. This is used to determine the object linked to the usage type.
28
+ */
29
+ parent?: QuotaType
26
30
  }
27
31
 
28
32
  export type QuotaKind = 'workspace' | 'bot'
@@ -39,7 +43,9 @@ export const quotaTypes = [
39
43
  'table_row_count',
40
44
  'workspace_member_count',
41
45
  'integrations_owned_count',
42
- 'ai_spend'
46
+ 'ai_spend',
47
+ 'openai_spend',
48
+ 'bing_search_spend',
43
49
  ] as const satisfies Readonly<string[]>
44
50
 
45
51
  export const quotaConfigs = {
@@ -123,5 +129,25 @@ export const quotaConfigs = {
123
129
  kind: 'workspace',
124
130
  category: 'credit',
125
131
  trackUsagePerBot: true
126
- }
132
+ },
133
+ openai_spend: {
134
+ name: 'OpenAI Spend',
135
+ description:
136
+ 'Maximum amount of OpenAI spend, expressed in nano-dollars (1 nano-dollar = $0.000000001) that can be used in a month.',
137
+ default: 5_000_000_000,
138
+ kind: 'workspace',
139
+ category: 'credit',
140
+ trackUsagePerBot: true,
141
+ parent: 'ai_spend'
142
+ },
143
+ bing_search_spend: {
144
+ name: 'Bing Search Spend',
145
+ description:
146
+ 'Maximum amount of Bing Search spend, expressed in nano-dollars (1 nano-dollar = $0.000000001) that can be used in a month.',
147
+ default: 5_000_000_000,
148
+ kind: 'workspace',
149
+ category: 'credit',
150
+ trackUsagePerBot: true,
151
+ parent: 'ai_spend'
152
+ },
127
153
  } as const satisfies Record<QuotaType, Quota>