@bpinternal/const 0.24.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.
- package/dist/billing-next/config/addons.d.ts +1 -0
- package/dist/billing-next/config/addons.js +1 -0
- package/dist/billing-next/config/plans.d.ts +1 -1
- package/dist/billing-next/config/plans.js +1 -1
- package/dist/billing-next/config/versions.d.ts +4 -2
- package/dist/prefixes.d.ts +8 -2
- package/dist/prefixes.js +8 -2
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -185,6 +185,7 @@ export declare const billingConfig: {
|
|
|
185
185
|
};
|
|
186
186
|
readonly providerProductId: "__UNKNOWN_STRIPE_ID__";
|
|
187
187
|
readonly autoRechargeable: true;
|
|
188
|
+
readonly prorationDisabled: true;
|
|
188
189
|
};
|
|
189
190
|
readonly storage_addon: {
|
|
190
191
|
readonly id: "storage_addon";
|
|
@@ -291,7 +292,7 @@ export declare const billingDefinitions: {
|
|
|
291
292
|
readonly features: {
|
|
292
293
|
readonly table_rows: 1000;
|
|
293
294
|
readonly bot_count: 3;
|
|
294
|
-
readonly collaborator_count:
|
|
295
|
+
readonly collaborator_count: 3;
|
|
295
296
|
readonly file_storage: number;
|
|
296
297
|
readonly vector_db_storage: number;
|
|
297
298
|
readonly saved_versions: 3;
|
|
@@ -455,6 +456,7 @@ export declare const billingDefinitions: {
|
|
|
455
456
|
};
|
|
456
457
|
readonly providerProductId: "__UNKNOWN_STRIPE_ID__";
|
|
457
458
|
readonly autoRechargeable: true;
|
|
459
|
+
readonly prorationDisabled: true;
|
|
458
460
|
};
|
|
459
461
|
readonly storage_addon: {
|
|
460
462
|
readonly id: "storage_addon";
|
package/dist/prefixes.d.ts
CHANGED
|
@@ -54,11 +54,14 @@ export declare const prefixToObjectMap: {
|
|
|
54
54
|
readonly webhook: "webhook";
|
|
55
55
|
readonly wkspace: "workspace";
|
|
56
56
|
readonly wksadd: "workspaceAddon";
|
|
57
|
-
readonly
|
|
57
|
+
readonly wksqtaadd: "workspaceQuotaAddition";
|
|
58
58
|
readonly wksplan: "workspacePlan";
|
|
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];
|
|
@@ -112,9 +115,12 @@ export type UserId = Ids['UserId'];
|
|
|
112
115
|
export type WebhookId = Ids['WebhookId'];
|
|
113
116
|
export type WorkflowId = Ids['WorkflowId'];
|
|
114
117
|
export type WorkspaceAddonId = Ids['WorkspaceAddonId'];
|
|
115
|
-
export type
|
|
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
|
@@ -57,11 +57,14 @@ exports.prefixToObjectMap = {
|
|
|
57
57
|
webhook: 'webhook',
|
|
58
58
|
wkspace: 'workspace',
|
|
59
59
|
wksadd: 'workspaceAddon',
|
|
60
|
-
|
|
60
|
+
wksqtaadd: 'workspaceQuotaAddition',
|
|
61
61
|
wksplan: 'workspacePlan',
|
|
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',
|
|
@@ -120,8 +123,11 @@ exports.objectToPrefixMap = {
|
|
|
120
123
|
workflow: 'wrkflow',
|
|
121
124
|
workspace: 'wkspace',
|
|
122
125
|
workspaceAddon: 'wksadd',
|
|
123
|
-
|
|
126
|
+
workspaceQuotaAddition: 'wksqtaadd',
|
|
124
127
|
workspacePlan: 'wksplan',
|
|
125
128
|
workspacePreference: 'wkspacepf',
|
|
126
129
|
trial: 'trial',
|
|
130
|
+
evalRun: 'evlrun',
|
|
131
|
+
evalEntry: 'evlent',
|
|
132
|
+
evalResult: 'evlres',
|
|
127
133
|
};
|