replicas-engine 0.1.127 → 0.1.129
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/src/index.js +26 -12
- package/package.json +1 -1
package/dist/src/index.js
CHANGED
|
@@ -975,30 +975,44 @@ var PLANS = {
|
|
|
975
975
|
monthlyPrice: 0,
|
|
976
976
|
seatPriceCents: 0,
|
|
977
977
|
creditsIncluded: 20,
|
|
978
|
-
features: [
|
|
978
|
+
features: [
|
|
979
|
+
"20 hours of human-initiated workspace usage (one-time)",
|
|
980
|
+
"20 hours of API + automation usage (one-time)",
|
|
981
|
+
"Automations (limited to 2)",
|
|
982
|
+
"Warm pools and warm hooks",
|
|
983
|
+
"Up to 3 repositories"
|
|
984
|
+
]
|
|
979
985
|
},
|
|
980
986
|
developer: {
|
|
981
987
|
id: "developer",
|
|
982
988
|
name: "Developer",
|
|
983
|
-
monthlyPrice:
|
|
984
|
-
seatPriceCents:
|
|
989
|
+
monthlyPrice: 120,
|
|
990
|
+
seatPriceCents: 12e3,
|
|
985
991
|
creditsIncluded: 0,
|
|
986
|
-
features: [
|
|
992
|
+
features: [
|
|
993
|
+
"Unlimited human-initiated workspaces",
|
|
994
|
+
"5,000 included automation/API minutes per month",
|
|
995
|
+
"Up to 10 repositories",
|
|
996
|
+
"Up to 5 automations",
|
|
997
|
+
"Warm pools and warm hooks",
|
|
998
|
+
"API access"
|
|
999
|
+
]
|
|
987
1000
|
},
|
|
988
1001
|
team: {
|
|
989
1002
|
id: "team",
|
|
990
1003
|
name: "Team",
|
|
991
|
-
monthlyPrice:
|
|
992
|
-
seatPriceCents:
|
|
1004
|
+
monthlyPrice: 300,
|
|
1005
|
+
seatPriceCents: 3e4,
|
|
993
1006
|
creditsIncluded: 0,
|
|
994
1007
|
features: [
|
|
995
|
-
"Unlimited
|
|
1008
|
+
"Unlimited human-initiated workspaces",
|
|
1009
|
+
"15,000 included automation/API minutes per month",
|
|
1010
|
+
"Unlimited repositories",
|
|
996
1011
|
"Unlimited automations",
|
|
997
|
-
"API access",
|
|
998
1012
|
"Higher API rate limits",
|
|
999
|
-
"Warm
|
|
1000
|
-
"
|
|
1001
|
-
"
|
|
1013
|
+
"Warm pools and warm hooks",
|
|
1014
|
+
"Auto-upgraded sandbox resources (32 GB disk, 16 GB memory)",
|
|
1015
|
+
"Shared Slack support channel"
|
|
1002
1016
|
]
|
|
1003
1017
|
},
|
|
1004
1018
|
enterprise: {
|
|
@@ -1151,7 +1165,7 @@ function parseReplicasConfigString(content, filename) {
|
|
|
1151
1165
|
}
|
|
1152
1166
|
|
|
1153
1167
|
// ../shared/src/engine/environment.ts
|
|
1154
|
-
var DAYTONA_SNAPSHOT_ID = "
|
|
1168
|
+
var DAYTONA_SNAPSHOT_ID = "26-04-2026-islington-v1";
|
|
1155
1169
|
|
|
1156
1170
|
// ../shared/src/engine/types.ts
|
|
1157
1171
|
var DEFAULT_CHAT_TITLES = {
|