@bpinternal/const 0.25.0 → 0.26.0
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.
|
@@ -16,7 +16,7 @@ export declare const plans: {
|
|
|
16
16
|
readonly features: {
|
|
17
17
|
readonly table_rows: 1000;
|
|
18
18
|
readonly bot_count: 3;
|
|
19
|
-
readonly collaborator_count:
|
|
19
|
+
readonly collaborator_count: 3;
|
|
20
20
|
readonly file_storage: number;
|
|
21
21
|
readonly vector_db_storage: number;
|
|
22
22
|
readonly saved_versions: 3;
|
|
@@ -21,7 +21,7 @@ export declare const billingConfig: {
|
|
|
21
21
|
readonly features: {
|
|
22
22
|
readonly table_rows: 1000;
|
|
23
23
|
readonly bot_count: 3;
|
|
24
|
-
readonly collaborator_count:
|
|
24
|
+
readonly collaborator_count: 3;
|
|
25
25
|
readonly file_storage: number;
|
|
26
26
|
readonly vector_db_storage: number;
|
|
27
27
|
readonly saved_versions: 3;
|
|
@@ -292,7 +292,7 @@ export declare const billingDefinitions: {
|
|
|
292
292
|
readonly features: {
|
|
293
293
|
readonly table_rows: 1000;
|
|
294
294
|
readonly bot_count: 3;
|
|
295
|
-
readonly collaborator_count:
|
|
295
|
+
readonly collaborator_count: 3;
|
|
296
296
|
readonly file_storage: number;
|
|
297
297
|
readonly vector_db_storage: number;
|
|
298
298
|
readonly saved_versions: 3;
|
package/dist/prefixes.d.ts
CHANGED
|
@@ -59,6 +59,9 @@ export declare const prefixToObjectMap: {
|
|
|
59
59
|
readonly wrkflow: "workflow";
|
|
60
60
|
readonly wkspacepf: "workspacePreference";
|
|
61
61
|
readonly trial: "trial";
|
|
62
|
+
readonly evlrun: "evalRun";
|
|
63
|
+
readonly evlent: "evalEntry";
|
|
64
|
+
readonly evlres: "evalResult";
|
|
62
65
|
};
|
|
63
66
|
export declare const objectToPrefixMap: Reverser<typeof prefixToObjectMap>;
|
|
64
67
|
export type Prefixes = (typeof objectToPrefixMap)[keyof typeof objectToPrefixMap];
|
|
@@ -115,6 +118,9 @@ export type WorkspaceAddonId = Ids['WorkspaceAddonId'];
|
|
|
115
118
|
export type WorkspaceQuotaAdditionId = Ids['WorkspaceQuotaAdditionId'];
|
|
116
119
|
export type WorkspaceId = Ids['WorkspaceId'];
|
|
117
120
|
export type WorkspacePlanId = Ids['WorkspacePlanId'];
|
|
121
|
+
export type EvalRunId = Ids['EvalRunId'];
|
|
122
|
+
export type EvalEntryId = Ids['EvalEntryId'];
|
|
123
|
+
export type EvalResultId = Ids['EvalResultId'];
|
|
118
124
|
type Reverser<T extends Record<PropertyKey, PropertyKey>> = {
|
|
119
125
|
[P in keyof T as T[P]]: P;
|
|
120
126
|
};
|
package/dist/prefixes.js
CHANGED
|
@@ -62,6 +62,9 @@ exports.prefixToObjectMap = {
|
|
|
62
62
|
wrkflow: 'workflow',
|
|
63
63
|
wkspacepf: 'workspacePreference',
|
|
64
64
|
trial: 'trial',
|
|
65
|
+
evlrun: 'evalRun',
|
|
66
|
+
evlent: 'evalEntry',
|
|
67
|
+
evlres: 'evalResult',
|
|
65
68
|
};
|
|
66
69
|
exports.objectToPrefixMap = {
|
|
67
70
|
account: 'accnt',
|
|
@@ -124,4 +127,7 @@ exports.objectToPrefixMap = {
|
|
|
124
127
|
workspacePlan: 'wksplan',
|
|
125
128
|
workspacePreference: 'wkspacepf',
|
|
126
129
|
trial: 'trial',
|
|
130
|
+
evalRun: 'evlrun',
|
|
131
|
+
evalEntry: 'evlent',
|
|
132
|
+
evalResult: 'evlres',
|
|
127
133
|
};
|