@botiverse/raft-computer 0.0.64 → 0.0.65
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.js +14 -9
- package/dist/lib/index.js +14 -9
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -45197,8 +45197,8 @@ var PLAN_CONFIG = {
|
|
|
45197
45197
|
displayFeatures: [
|
|
45198
45198
|
"Channels",
|
|
45199
45199
|
"Tasks",
|
|
45200
|
-
"
|
|
45201
|
-
"Agent
|
|
45200
|
+
"Agents on your own computers",
|
|
45201
|
+
"Agent reminders",
|
|
45202
45202
|
"Basic observability",
|
|
45203
45203
|
"30 days of message history",
|
|
45204
45204
|
"100 MB file uploads/month"
|
|
@@ -45229,12 +45229,13 @@ var DISPLAY_PLAN_CONFIG = {
|
|
|
45229
45229
|
priceCadence: "/ seat pack / month",
|
|
45230
45230
|
extraAgentPrice: 0,
|
|
45231
45231
|
displayFeatures: [
|
|
45232
|
-
"
|
|
45232
|
+
"Everything in Free",
|
|
45233
45233
|
"Unlimited message history",
|
|
45234
45234
|
"Higher file upload limits",
|
|
45235
|
-
"Joint
|
|
45235
|
+
"Joint channels",
|
|
45236
45236
|
"More professional features coming soon"
|
|
45237
45237
|
],
|
|
45238
|
+
displayDescription: "For builders and teams scaling agent collaboration.",
|
|
45238
45239
|
displayNote: "$17.60 / seat pack / month when billed yearly"
|
|
45239
45240
|
},
|
|
45240
45241
|
enterprise: {
|
|
@@ -45246,14 +45247,18 @@ var DISPLAY_PLAN_CONFIG = {
|
|
|
45246
45247
|
priceCadence: null,
|
|
45247
45248
|
extraAgentPrice: 0,
|
|
45248
45249
|
displayFeatures: [
|
|
45249
|
-
"
|
|
45250
|
-
"
|
|
45251
|
-
"
|
|
45252
|
-
"
|
|
45253
|
-
]
|
|
45250
|
+
"Everything in Pro",
|
|
45251
|
+
"Private deployment options",
|
|
45252
|
+
"SSO and advanced access control",
|
|
45253
|
+
"Dedicated onboarding and rollout support"
|
|
45254
|
+
],
|
|
45255
|
+
displayDescription: "For advanced deployment and governance needs."
|
|
45254
45256
|
}
|
|
45255
45257
|
};
|
|
45256
45258
|
var FREE_MONTHLY_FILE_UPLOAD_LIMIT_BYTES = 100 * 1024 * 1024;
|
|
45259
|
+
var TRIAL_START_DATE = /* @__PURE__ */ new Date("2026-04-18T00:00:00Z");
|
|
45260
|
+
var TRIAL_END_DATE = /* @__PURE__ */ new Date("2026-06-23T12:00:00Z");
|
|
45261
|
+
var TRIAL_DURATION_DAYS = (TRIAL_END_DATE.getTime() - TRIAL_START_DATE.getTime()) / (24 * 60 * 60 * 1e3);
|
|
45257
45262
|
|
|
45258
45263
|
// src/services/errors.ts
|
|
45259
45264
|
init_esm_shims();
|
package/dist/lib/index.js
CHANGED
|
@@ -15420,8 +15420,8 @@ var PLAN_CONFIG = {
|
|
|
15420
15420
|
displayFeatures: [
|
|
15421
15421
|
"Channels",
|
|
15422
15422
|
"Tasks",
|
|
15423
|
-
"
|
|
15424
|
-
"Agent
|
|
15423
|
+
"Agents on your own computers",
|
|
15424
|
+
"Agent reminders",
|
|
15425
15425
|
"Basic observability",
|
|
15426
15426
|
"30 days of message history",
|
|
15427
15427
|
"100 MB file uploads/month"
|
|
@@ -15452,12 +15452,13 @@ var DISPLAY_PLAN_CONFIG = {
|
|
|
15452
15452
|
priceCadence: "/ seat pack / month",
|
|
15453
15453
|
extraAgentPrice: 0,
|
|
15454
15454
|
displayFeatures: [
|
|
15455
|
-
"
|
|
15455
|
+
"Everything in Free",
|
|
15456
15456
|
"Unlimited message history",
|
|
15457
15457
|
"Higher file upload limits",
|
|
15458
|
-
"Joint
|
|
15458
|
+
"Joint channels",
|
|
15459
15459
|
"More professional features coming soon"
|
|
15460
15460
|
],
|
|
15461
|
+
displayDescription: "For builders and teams scaling agent collaboration.",
|
|
15461
15462
|
displayNote: "$17.60 / seat pack / month when billed yearly"
|
|
15462
15463
|
},
|
|
15463
15464
|
enterprise: {
|
|
@@ -15469,14 +15470,18 @@ var DISPLAY_PLAN_CONFIG = {
|
|
|
15469
15470
|
priceCadence: null,
|
|
15470
15471
|
extraAgentPrice: 0,
|
|
15471
15472
|
displayFeatures: [
|
|
15472
|
-
"
|
|
15473
|
-
"
|
|
15474
|
-
"
|
|
15475
|
-
"
|
|
15476
|
-
]
|
|
15473
|
+
"Everything in Pro",
|
|
15474
|
+
"Private deployment options",
|
|
15475
|
+
"SSO and advanced access control",
|
|
15476
|
+
"Dedicated onboarding and rollout support"
|
|
15477
|
+
],
|
|
15478
|
+
displayDescription: "For advanced deployment and governance needs."
|
|
15477
15479
|
}
|
|
15478
15480
|
};
|
|
15479
15481
|
var FREE_MONTHLY_FILE_UPLOAD_LIMIT_BYTES = 100 * 1024 * 1024;
|
|
15482
|
+
var TRIAL_START_DATE = /* @__PURE__ */ new Date("2026-04-18T00:00:00Z");
|
|
15483
|
+
var TRIAL_END_DATE = /* @__PURE__ */ new Date("2026-06-23T12:00:00Z");
|
|
15484
|
+
var TRIAL_DURATION_DAYS = (TRIAL_END_DATE.getTime() - TRIAL_START_DATE.getTime()) / (24 * 60 * 60 * 1e3);
|
|
15480
15485
|
|
|
15481
15486
|
// src/services/errors.ts
|
|
15482
15487
|
var ComputerServiceError = class extends Error {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@botiverse/raft-computer",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.65",
|
|
4
4
|
"description": "Canonical Raft Computer — standalone human/local-machine control-plane CLI (login + attach). Provides raft-computer plus the legacy slock-computer alias; distinct from the agent-facing @botiverse/raft CLI.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"commander": "^12.1.0",
|
|
32
32
|
"proper-lockfile": "^4.1.2",
|
|
33
33
|
"undici": "^7.24.7",
|
|
34
|
-
"@botiverse/raft-daemon": "0.63.
|
|
34
|
+
"@botiverse/raft-daemon": "0.63.5"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/node": "^25.5.0",
|