@bpinternal/const 0.2.2 → 0.3.1
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-features.d.ts +88 -0
- package/dist/billing-features.js +96 -0
- package/dist/billing-products.d.ts +272 -0
- package/dist/billing-products.js +282 -0
- package/dist/billing-versions.d.ts +33 -0
- package/dist/billing-versions.js +34 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +25 -0
- package/dist/limits.d.ts +80 -0
- package/dist/limits.js +81 -0
- package/dist/prefixes.d.ts +99 -0
- package/dist/prefixes.js +103 -0
- package/dist/quotas.d.ts +250 -0
- package/dist/quotas.js +234 -0
- package/dist/tags.d.ts +80 -0
- package/dist/tags.js +78 -0
- package/dist/usage-metadata.d.ts +22 -0
- package/dist/usage-metadata.js +138 -0
- package/package.json +13 -23
- package/dist/index.cjs +0 -546
- package/dist/index.mjs +0 -513
- package/index.code-workspace +0 -10
- package/readme.md +0 -9
- package/src/index.ts +0 -4
- package/src/limits.ts +0 -92
- package/src/prefixes.ts +0 -152
- package/src/quotas.ts +0 -274
- package/src/tags.ts +0 -84
- package/test/prefix.test.ts +0 -12
- package/tsconfig.json +0 -19
- package/tsconfig.tsbuildinfo +0 -1
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Billing features for v4 billing system
|
|
3
|
+
* Based on the requirements from the billing refactor document
|
|
4
|
+
*/
|
|
5
|
+
export declare const billingFeatures: readonly ["human_in_the_loop", "ratelimit", "incoming_messages_events", "integration_spend", "integration_subscription", "table_rows", "bot_count", "always_alive_count", "collaborator_count", "file_storage", "vector_db_storage", "saved_versions"];
|
|
6
|
+
export type BillingFeature = (typeof billingFeatures)[number];
|
|
7
|
+
export type BillingFeatureConfig = {
|
|
8
|
+
name: string;
|
|
9
|
+
description: string;
|
|
10
|
+
type: 'boolean' | 'static' | 'usage' | 'subscription';
|
|
11
|
+
resetPeriod?: 'monthly' | 'yearly' | 'never';
|
|
12
|
+
dimensions?: Record<string, string>;
|
|
13
|
+
};
|
|
14
|
+
export declare const billingFeatureConfigs: {
|
|
15
|
+
readonly human_in_the_loop: {
|
|
16
|
+
readonly name: "Human in the Loop";
|
|
17
|
+
readonly description: "Ability to enable human intervention in bot conversations";
|
|
18
|
+
readonly type: "boolean";
|
|
19
|
+
};
|
|
20
|
+
readonly ratelimit: {
|
|
21
|
+
readonly name: "Rate Limit";
|
|
22
|
+
readonly description: "API rate limiting configuration";
|
|
23
|
+
readonly type: "static";
|
|
24
|
+
};
|
|
25
|
+
readonly incoming_messages_events: {
|
|
26
|
+
readonly name: "Incoming Messages/Events";
|
|
27
|
+
readonly description: "Number of incoming messages and events processed per month";
|
|
28
|
+
readonly type: "usage";
|
|
29
|
+
readonly resetPeriod: "monthly";
|
|
30
|
+
readonly dimensions: {
|
|
31
|
+
readonly botId: "Bot ID";
|
|
32
|
+
readonly type: "Message or Event type";
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
readonly integration_spend: {
|
|
36
|
+
readonly name: "Integration Spend";
|
|
37
|
+
readonly description: "Credits spent on integrations (AI, third-party services)";
|
|
38
|
+
readonly type: "usage";
|
|
39
|
+
readonly resetPeriod: "monthly";
|
|
40
|
+
readonly dimensions: {
|
|
41
|
+
readonly botId: "Bot ID";
|
|
42
|
+
readonly integrationName: "Integration name";
|
|
43
|
+
readonly integrationVersionId: "Integration version ID";
|
|
44
|
+
readonly actionName: "Action name";
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
readonly integration_subscription: {
|
|
48
|
+
readonly name: "Integration Subscription";
|
|
49
|
+
readonly description: "Monthly subscription to premium integrations";
|
|
50
|
+
readonly type: "subscription";
|
|
51
|
+
readonly resetPeriod: "monthly";
|
|
52
|
+
};
|
|
53
|
+
readonly table_rows: {
|
|
54
|
+
readonly name: "Table Rows";
|
|
55
|
+
readonly description: "Number of table rows that can be stored";
|
|
56
|
+
readonly type: "static";
|
|
57
|
+
};
|
|
58
|
+
readonly bot_count: {
|
|
59
|
+
readonly name: "Bot Count";
|
|
60
|
+
readonly description: "Number of bots that can be created";
|
|
61
|
+
readonly type: "static";
|
|
62
|
+
};
|
|
63
|
+
readonly always_alive_count: {
|
|
64
|
+
readonly name: "Always Alive Count";
|
|
65
|
+
readonly description: "Number of bots that can be kept always alive";
|
|
66
|
+
readonly type: "static";
|
|
67
|
+
};
|
|
68
|
+
readonly collaborator_count: {
|
|
69
|
+
readonly name: "Collaborator Count";
|
|
70
|
+
readonly description: "Number of collaborators that can be added to workspace";
|
|
71
|
+
readonly type: "static";
|
|
72
|
+
};
|
|
73
|
+
readonly file_storage: {
|
|
74
|
+
readonly name: "File Storage";
|
|
75
|
+
readonly description: "Amount of file storage available";
|
|
76
|
+
readonly type: "static";
|
|
77
|
+
};
|
|
78
|
+
readonly vector_db_storage: {
|
|
79
|
+
readonly name: "Vector DB Storage";
|
|
80
|
+
readonly description: "Amount of vector database storage available";
|
|
81
|
+
readonly type: "static";
|
|
82
|
+
};
|
|
83
|
+
readonly saved_versions: {
|
|
84
|
+
readonly name: "Saved Versions";
|
|
85
|
+
readonly description: "Number of bot versions that can be saved";
|
|
86
|
+
readonly type: "static";
|
|
87
|
+
};
|
|
88
|
+
};
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Billing features for v4 billing system
|
|
4
|
+
* Based on the requirements from the billing refactor document
|
|
5
|
+
*/
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
exports.billingFeatureConfigs = exports.billingFeatures = void 0;
|
|
8
|
+
exports.billingFeatures = [
|
|
9
|
+
'human_in_the_loop',
|
|
10
|
+
'ratelimit',
|
|
11
|
+
'incoming_messages_events',
|
|
12
|
+
'integration_spend',
|
|
13
|
+
'integration_subscription',
|
|
14
|
+
'table_rows',
|
|
15
|
+
'bot_count',
|
|
16
|
+
'always_alive_count',
|
|
17
|
+
'collaborator_count',
|
|
18
|
+
'file_storage',
|
|
19
|
+
'vector_db_storage',
|
|
20
|
+
'saved_versions',
|
|
21
|
+
];
|
|
22
|
+
exports.billingFeatureConfigs = {
|
|
23
|
+
human_in_the_loop: {
|
|
24
|
+
name: 'Human in the Loop',
|
|
25
|
+
description: 'Ability to enable human intervention in bot conversations',
|
|
26
|
+
type: 'boolean',
|
|
27
|
+
},
|
|
28
|
+
ratelimit: {
|
|
29
|
+
name: 'Rate Limit',
|
|
30
|
+
description: 'API rate limiting configuration',
|
|
31
|
+
type: 'static',
|
|
32
|
+
},
|
|
33
|
+
incoming_messages_events: {
|
|
34
|
+
name: 'Incoming Messages/Events',
|
|
35
|
+
description: 'Number of incoming messages and events processed per month',
|
|
36
|
+
type: 'usage',
|
|
37
|
+
resetPeriod: 'monthly',
|
|
38
|
+
dimensions: {
|
|
39
|
+
botId: 'Bot ID',
|
|
40
|
+
type: 'Message or Event type',
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
integration_spend: {
|
|
44
|
+
name: 'Integration Spend',
|
|
45
|
+
description: 'Credits spent on integrations (AI, third-party services)',
|
|
46
|
+
type: 'usage',
|
|
47
|
+
resetPeriod: 'monthly',
|
|
48
|
+
dimensions: {
|
|
49
|
+
botId: 'Bot ID',
|
|
50
|
+
integrationName: 'Integration name',
|
|
51
|
+
integrationVersionId: 'Integration version ID',
|
|
52
|
+
actionName: 'Action name',
|
|
53
|
+
},
|
|
54
|
+
},
|
|
55
|
+
integration_subscription: {
|
|
56
|
+
name: 'Integration Subscription',
|
|
57
|
+
description: 'Monthly subscription to premium integrations',
|
|
58
|
+
type: 'subscription',
|
|
59
|
+
resetPeriod: 'monthly',
|
|
60
|
+
},
|
|
61
|
+
table_rows: {
|
|
62
|
+
name: 'Table Rows',
|
|
63
|
+
description: 'Number of table rows that can be stored',
|
|
64
|
+
type: 'static',
|
|
65
|
+
},
|
|
66
|
+
bot_count: {
|
|
67
|
+
name: 'Bot Count',
|
|
68
|
+
description: 'Number of bots that can be created',
|
|
69
|
+
type: 'static',
|
|
70
|
+
},
|
|
71
|
+
always_alive_count: {
|
|
72
|
+
name: 'Always Alive Count',
|
|
73
|
+
description: 'Number of bots that can be kept always alive',
|
|
74
|
+
type: 'static',
|
|
75
|
+
},
|
|
76
|
+
collaborator_count: {
|
|
77
|
+
name: 'Collaborator Count',
|
|
78
|
+
description: 'Number of collaborators that can be added to workspace',
|
|
79
|
+
type: 'static',
|
|
80
|
+
},
|
|
81
|
+
file_storage: {
|
|
82
|
+
name: 'File Storage',
|
|
83
|
+
description: 'Amount of file storage available',
|
|
84
|
+
type: 'static',
|
|
85
|
+
},
|
|
86
|
+
vector_db_storage: {
|
|
87
|
+
name: 'Vector DB Storage',
|
|
88
|
+
description: 'Amount of vector database storage available',
|
|
89
|
+
type: 'static',
|
|
90
|
+
},
|
|
91
|
+
saved_versions: {
|
|
92
|
+
name: 'Saved Versions',
|
|
93
|
+
description: 'Number of bot versions that can be saved',
|
|
94
|
+
type: 'static',
|
|
95
|
+
},
|
|
96
|
+
};
|
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
import type { BillingFeature } from './billing-features';
|
|
2
|
+
/**
|
|
3
|
+
* Special price value indicating a free product/plan.
|
|
4
|
+
* This will be converted to $0 during deployment.
|
|
5
|
+
*/
|
|
6
|
+
export declare const FREE_PRICE = -1;
|
|
7
|
+
export declare const BILLING_PLAN_IDS: readonly ["community", "plus", "team", "enterprise"];
|
|
8
|
+
export type BillingPlanId = (typeof BILLING_PLAN_IDS)[number];
|
|
9
|
+
export type BillingAddonId = 'bot_addon' | 'collaborator_addon' | 'always_alive_addon' | 'messages_events_addon' | 'table_rows_addon' | 'file_storage_addon' | 'vector_db_storage_addon' | 'web_search_addon' | 'ai_credits_addon' | 'enterprise_ai_token' | 'enterprise_additional_workspace';
|
|
10
|
+
export type BillingPlan = {
|
|
11
|
+
id: BillingPlanId;
|
|
12
|
+
name: string;
|
|
13
|
+
description: string;
|
|
14
|
+
prices: Array<{
|
|
15
|
+
price: number;
|
|
16
|
+
currency: 'usd';
|
|
17
|
+
interval: 'month' | 'year';
|
|
18
|
+
}>;
|
|
19
|
+
features: Record<BillingFeature, number | boolean>;
|
|
20
|
+
};
|
|
21
|
+
export type BillingAddon = {
|
|
22
|
+
id: BillingAddonId;
|
|
23
|
+
name: string;
|
|
24
|
+
description: string;
|
|
25
|
+
prices: Array<{
|
|
26
|
+
price: number;
|
|
27
|
+
currency: 'usd';
|
|
28
|
+
interval: 'month' | 'year';
|
|
29
|
+
}>;
|
|
30
|
+
feature: BillingFeature;
|
|
31
|
+
increment: number;
|
|
32
|
+
};
|
|
33
|
+
export declare const billingPlans: {
|
|
34
|
+
readonly community: {
|
|
35
|
+
readonly id: "community";
|
|
36
|
+
readonly name: "Plan - Pay as you go";
|
|
37
|
+
readonly description: "Free plan for developers";
|
|
38
|
+
readonly prices: [{
|
|
39
|
+
readonly price: -1;
|
|
40
|
+
readonly currency: "usd";
|
|
41
|
+
readonly interval: "month";
|
|
42
|
+
}];
|
|
43
|
+
readonly features: {
|
|
44
|
+
readonly human_in_the_loop: false;
|
|
45
|
+
readonly ratelimit: 100;
|
|
46
|
+
readonly incoming_messages_events: 500;
|
|
47
|
+
readonly integration_spend: 5000000000;
|
|
48
|
+
readonly integration_subscription: false;
|
|
49
|
+
readonly table_rows: 1000;
|
|
50
|
+
readonly bot_count: 1;
|
|
51
|
+
readonly always_alive_count: 0;
|
|
52
|
+
readonly collaborator_count: 1;
|
|
53
|
+
readonly file_storage: 100000000;
|
|
54
|
+
readonly vector_db_storage: 100000000;
|
|
55
|
+
readonly saved_versions: 3;
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
readonly plus: {
|
|
59
|
+
readonly id: "plus";
|
|
60
|
+
readonly name: "Plan - Plus";
|
|
61
|
+
readonly description: "For growing businesses";
|
|
62
|
+
readonly prices: [{
|
|
63
|
+
readonly price: 89;
|
|
64
|
+
readonly currency: "usd";
|
|
65
|
+
readonly interval: "month";
|
|
66
|
+
}, {
|
|
67
|
+
readonly price: 948;
|
|
68
|
+
readonly currency: "usd";
|
|
69
|
+
readonly interval: "year";
|
|
70
|
+
}];
|
|
71
|
+
readonly features: {
|
|
72
|
+
readonly human_in_the_loop: true;
|
|
73
|
+
readonly ratelimit: 100;
|
|
74
|
+
readonly incoming_messages_events: 5000;
|
|
75
|
+
readonly integration_spend: 5000000000;
|
|
76
|
+
readonly integration_subscription: true;
|
|
77
|
+
readonly table_rows: 100000;
|
|
78
|
+
readonly bot_count: 2;
|
|
79
|
+
readonly always_alive_count: 1;
|
|
80
|
+
readonly collaborator_count: 2;
|
|
81
|
+
readonly file_storage: 10000000000;
|
|
82
|
+
readonly vector_db_storage: 1000000000;
|
|
83
|
+
readonly saved_versions: 50;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
readonly team: {
|
|
87
|
+
readonly id: "team";
|
|
88
|
+
readonly name: "Plan - Team";
|
|
89
|
+
readonly description: "For small teams";
|
|
90
|
+
readonly prices: [{
|
|
91
|
+
readonly price: 495;
|
|
92
|
+
readonly currency: "usd";
|
|
93
|
+
readonly interval: "month";
|
|
94
|
+
}, {
|
|
95
|
+
readonly price: 5346;
|
|
96
|
+
readonly currency: "usd";
|
|
97
|
+
readonly interval: "year";
|
|
98
|
+
}];
|
|
99
|
+
readonly features: {
|
|
100
|
+
readonly human_in_the_loop: true;
|
|
101
|
+
readonly ratelimit: 1000;
|
|
102
|
+
readonly incoming_messages_events: 50000;
|
|
103
|
+
readonly integration_spend: 5000000000;
|
|
104
|
+
readonly integration_subscription: true;
|
|
105
|
+
readonly table_rows: 100000;
|
|
106
|
+
readonly bot_count: 3;
|
|
107
|
+
readonly always_alive_count: 3;
|
|
108
|
+
readonly collaborator_count: 3;
|
|
109
|
+
readonly file_storage: 10000000000;
|
|
110
|
+
readonly vector_db_storage: 2000000000;
|
|
111
|
+
readonly saved_versions: 100;
|
|
112
|
+
};
|
|
113
|
+
};
|
|
114
|
+
readonly enterprise: {
|
|
115
|
+
readonly id: "enterprise";
|
|
116
|
+
readonly name: "Plan - Enterprise";
|
|
117
|
+
readonly description: "Enterprise license subscription";
|
|
118
|
+
readonly prices: [{
|
|
119
|
+
readonly price: -1;
|
|
120
|
+
readonly currency: "usd";
|
|
121
|
+
readonly interval: "month";
|
|
122
|
+
}];
|
|
123
|
+
readonly features: {
|
|
124
|
+
readonly human_in_the_loop: true;
|
|
125
|
+
readonly ratelimit: 10000;
|
|
126
|
+
readonly incoming_messages_events: 1000000;
|
|
127
|
+
readonly integration_spend: 5000000000;
|
|
128
|
+
readonly integration_subscription: true;
|
|
129
|
+
readonly table_rows: 10000000;
|
|
130
|
+
readonly bot_count: 100;
|
|
131
|
+
readonly always_alive_count: 50;
|
|
132
|
+
readonly collaborator_count: 100;
|
|
133
|
+
readonly file_storage: 1000000000000;
|
|
134
|
+
readonly vector_db_storage: 500000000000;
|
|
135
|
+
readonly saved_versions: 1000;
|
|
136
|
+
};
|
|
137
|
+
};
|
|
138
|
+
};
|
|
139
|
+
export declare const billingAddons: {
|
|
140
|
+
readonly bot_addon: {
|
|
141
|
+
readonly id: "bot_addon";
|
|
142
|
+
readonly name: "Add-on - Bot";
|
|
143
|
+
readonly description: "Add one more bot to your workspace";
|
|
144
|
+
readonly prices: [{
|
|
145
|
+
readonly price: 10;
|
|
146
|
+
readonly currency: "usd";
|
|
147
|
+
readonly interval: "month";
|
|
148
|
+
}];
|
|
149
|
+
readonly feature: "bot_count";
|
|
150
|
+
readonly increment: 1;
|
|
151
|
+
};
|
|
152
|
+
readonly collaborator_addon: {
|
|
153
|
+
readonly id: "collaborator_addon";
|
|
154
|
+
readonly name: "Add-on - Collaborators";
|
|
155
|
+
readonly description: "Add one more collaborator to your workspace";
|
|
156
|
+
readonly prices: [{
|
|
157
|
+
readonly price: 25;
|
|
158
|
+
readonly currency: "usd";
|
|
159
|
+
readonly interval: "month";
|
|
160
|
+
}];
|
|
161
|
+
readonly feature: "collaborator_count";
|
|
162
|
+
readonly increment: 1;
|
|
163
|
+
};
|
|
164
|
+
readonly always_alive_addon: {
|
|
165
|
+
readonly id: "always_alive_addon";
|
|
166
|
+
readonly name: "Add-on - Always Alive";
|
|
167
|
+
readonly description: "Keep one more bot always alive";
|
|
168
|
+
readonly prices: [{
|
|
169
|
+
readonly price: 10;
|
|
170
|
+
readonly currency: "usd";
|
|
171
|
+
readonly interval: "month";
|
|
172
|
+
}];
|
|
173
|
+
readonly feature: "always_alive_count";
|
|
174
|
+
readonly increment: 1;
|
|
175
|
+
};
|
|
176
|
+
readonly messages_events_addon: {
|
|
177
|
+
readonly id: "messages_events_addon";
|
|
178
|
+
readonly name: "Add-on - Messages & Events";
|
|
179
|
+
readonly description: "Adds 5,000 messages and events";
|
|
180
|
+
readonly prices: [{
|
|
181
|
+
readonly price: 20;
|
|
182
|
+
readonly currency: "usd";
|
|
183
|
+
readonly interval: "month";
|
|
184
|
+
}];
|
|
185
|
+
readonly feature: "incoming_messages_events";
|
|
186
|
+
readonly increment: 5000;
|
|
187
|
+
};
|
|
188
|
+
readonly table_rows_addon: {
|
|
189
|
+
readonly id: "table_rows_addon";
|
|
190
|
+
readonly name: "Add-on - Table Rows";
|
|
191
|
+
readonly description: "Adds 100,000 additional table rows";
|
|
192
|
+
readonly prices: [{
|
|
193
|
+
readonly price: 25;
|
|
194
|
+
readonly currency: "usd";
|
|
195
|
+
readonly interval: "month";
|
|
196
|
+
}];
|
|
197
|
+
readonly feature: "table_rows";
|
|
198
|
+
readonly increment: 100000;
|
|
199
|
+
};
|
|
200
|
+
readonly file_storage_addon: {
|
|
201
|
+
readonly id: "file_storage_addon";
|
|
202
|
+
readonly name: "Add-on - File Storage";
|
|
203
|
+
readonly description: "Adds 10GB of File Storage";
|
|
204
|
+
readonly prices: [{
|
|
205
|
+
readonly price: 10;
|
|
206
|
+
readonly currency: "usd";
|
|
207
|
+
readonly interval: "month";
|
|
208
|
+
}];
|
|
209
|
+
readonly feature: "file_storage";
|
|
210
|
+
readonly increment: 10000000000;
|
|
211
|
+
};
|
|
212
|
+
readonly vector_db_storage_addon: {
|
|
213
|
+
readonly id: "vector_db_storage_addon";
|
|
214
|
+
readonly name: "Add-on - Vector DB Storage";
|
|
215
|
+
readonly description: "Add 1 GB of vector database storage";
|
|
216
|
+
readonly prices: [{
|
|
217
|
+
readonly price: 20;
|
|
218
|
+
readonly currency: "usd";
|
|
219
|
+
readonly interval: "month";
|
|
220
|
+
}];
|
|
221
|
+
readonly feature: "vector_db_storage";
|
|
222
|
+
readonly increment: 1000000000;
|
|
223
|
+
};
|
|
224
|
+
readonly web_search_addon: {
|
|
225
|
+
readonly id: "web_search_addon";
|
|
226
|
+
readonly name: "Web Search and Crawl";
|
|
227
|
+
readonly description: "Web search and crawl functionality";
|
|
228
|
+
readonly prices: [{
|
|
229
|
+
readonly price: 0.01;
|
|
230
|
+
readonly currency: "usd";
|
|
231
|
+
readonly interval: "month";
|
|
232
|
+
}];
|
|
233
|
+
readonly feature: "integration_spend";
|
|
234
|
+
readonly increment: 10000000000;
|
|
235
|
+
};
|
|
236
|
+
readonly ai_credits_addon: {
|
|
237
|
+
readonly id: "ai_credits_addon";
|
|
238
|
+
readonly name: "AI Tokens";
|
|
239
|
+
readonly description: "Add $25 worth of AI credits";
|
|
240
|
+
readonly prices: [{
|
|
241
|
+
readonly price: 0.01;
|
|
242
|
+
readonly currency: "usd";
|
|
243
|
+
readonly interval: "month";
|
|
244
|
+
}];
|
|
245
|
+
readonly feature: "integration_spend";
|
|
246
|
+
readonly increment: 25000000000;
|
|
247
|
+
};
|
|
248
|
+
readonly enterprise_ai_token: {
|
|
249
|
+
readonly id: "enterprise_ai_token";
|
|
250
|
+
readonly name: "Enterprise - AI Token";
|
|
251
|
+
readonly description: "Enterprise AI token credits";
|
|
252
|
+
readonly prices: [{
|
|
253
|
+
readonly price: -1;
|
|
254
|
+
readonly currency: "usd";
|
|
255
|
+
readonly interval: "month";
|
|
256
|
+
}];
|
|
257
|
+
readonly feature: "integration_spend";
|
|
258
|
+
readonly increment: 100000000000;
|
|
259
|
+
};
|
|
260
|
+
readonly enterprise_additional_workspace: {
|
|
261
|
+
readonly id: "enterprise_additional_workspace";
|
|
262
|
+
readonly name: "Enterprise - Additional Workspace";
|
|
263
|
+
readonly description: "Enterprise additional workspace";
|
|
264
|
+
readonly prices: [{
|
|
265
|
+
readonly price: -1;
|
|
266
|
+
readonly currency: "usd";
|
|
267
|
+
readonly interval: "month";
|
|
268
|
+
}];
|
|
269
|
+
readonly feature: "collaborator_count";
|
|
270
|
+
readonly increment: 10;
|
|
271
|
+
};
|
|
272
|
+
};
|