@sema-agent/server 1.322.0 → 1.323.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/index.d.ts CHANGED
@@ -2,7 +2,7 @@ export { loadConfig, type ServiceConfig } from "./config.js";
2
2
  export { createBrain } from "./brain.js";
3
3
  export { createSessionStore } from "./plugins/session-store.js";
4
4
  export { createStoreBackend, type StoreBackend } from "./plugins/store-backend.js";
5
- export { createTidbPool, ensureSchema, SCHEMA_STATEMENTS } from "./plugins/tidb-pool.js";
5
+ export { createTidbPool, ensureSchema, SCHEMA_STATEMENTS, } from "./plugins/tidb-pool.js";
6
6
  export { TiDBSessionStore } from "./plugins/tidb-session-store.js";
7
7
  export { TiDBSessionStorage } from "./plugins/tidb-session-storage.js";
8
8
  export { CachingSessionStore, type CachingOptions } from "./plugins/caching-session-store.js";
package/dist/index.js CHANGED
@@ -2,7 +2,7 @@ export { loadConfig } from "./config.js";
2
2
  export { createBrain } from "./brain.js";
3
3
  export { createSessionStore } from "./plugins/session-store.js";
4
4
  export { createStoreBackend } from "./plugins/store-backend.js";
5
- export { createTidbPool, ensureSchema, SCHEMA_STATEMENTS } from "./plugins/tidb-pool.js";
5
+ export { createTidbPool, ensureSchema, SCHEMA_STATEMENTS, } from "./plugins/tidb-pool.js";
6
6
  export { TiDBSessionStore } from "./plugins/tidb-session-store.js";
7
7
  export { TiDBSessionStorage } from "./plugins/tidb-session-storage.js";
8
8
  export { CachingSessionStore } from "./plugins/caching-session-store.js";
@@ -1,7 +1,7 @@
1
1
  import { callKeyOrdinal } from "@sema-agent/core";
2
2
  import { oversizeJournalResult } from "./workflow-journal-limits.js";
3
3
  import { mysqlDriver, pgDriver } from "./sql-driver.js";
4
- const DEFAULT_RESUME_CLAIM_TTL_MS = 15 * 60 * 1000;
4
+ const DEFAULT_RESUME_CLAIM_TTL_MS = 60 * 60 * 1000;
5
5
  export class SqlWorkflowJournalStore {
6
6
  db;
7
7
  resumeClaimTtlMs;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sema-agent/server",
3
- "version": "1.322.0",
3
+ "version": "1.323.0",
4
4
  "description": "Sema Server — the server/API implementation layer for Sema, wiring core, registry, model providers, and cloud agent execution. Built on @sema-agent/core.",
5
5
  "type": "module",
6
6
  "license": "BUSL-1.1",