replicas-engine 0.1.333 → 0.1.335

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 CHANGED
@@ -199,6 +199,10 @@ function buildCodexTokenUsageContextUsagePayload(usage) {
199
199
  }
200
200
 
201
201
  // ../shared/src/pricing.ts
202
+ var INTEGRATION_SOURCES = ["slack", "linear", "github", "gitlab"];
203
+ var SYSTEMIC_SOURCES = ["api", "automation"];
204
+ var INTEGRATION_SOURCES_SQL = INTEGRATION_SOURCES.map((s) => `'${s}'`).join(", ");
205
+ var SYSTEMIC_SOURCES_SQL = SYSTEMIC_SOURCES.map((s) => `'${s}'`).join(", ");
202
206
  var PLANS = {
203
207
  hobby: {
204
208
  id: "hobby",
@@ -287,7 +291,7 @@ var WORKSPACE_SIZES = ["small", "large"];
287
291
  var INVALID_WORKSPACE_SIZE_ERROR = `Invalid size: must be one of ${WORKSPACE_SIZES.join(", ")}`;
288
292
 
289
293
  // ../shared/src/e2b.ts
290
- var E2B_TEMPLATE_NAME = "replicas-sandbox-2026-06-21-v3";
294
+ var E2B_TEMPLATE_NAME = "replicas-sandbox-2026-06-22-v1";
291
295
 
292
296
  // ../shared/src/runtime-env.ts
293
297
  function parsePosixEnvFile(content) {
@@ -7355,7 +7359,7 @@ var AspClient = class {
7355
7359
  // src/managers/codex-asp/app-server-process.ts
7356
7360
  var DEFAULT_CODEX_BINARY = "codex";
7357
7361
  var DEFAULT_CODEX_ARGS = ["app-server", "--listen", "stdio://"];
7358
- var ENGINE_PACKAGE_VERSION = "0.1.333";
7362
+ var ENGINE_PACKAGE_VERSION = "0.1.335";
7359
7363
  var INITIALIZE_METHOD = "initialize";
7360
7364
  var INITIALIZED_NOTIFICATION = "initialized";
7361
7365
  var ACCOUNT_LOGIN_START_METHOD = "account/login/start";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replicas-engine",
3
- "version": "0.1.333",
3
+ "version": "0.1.335",
4
4
  "description": "Lightweight API server for Replicas workspaces",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",