From db3080784e128d1b0fe34c42d2bdb2eeba819168 Mon Sep 17 00:00:00 2001 From: Allen Ray Date: Thu, 5 Mar 2026 16:27:05 -0500 Subject: [PATCH 1/2] Export Range/Bound from the spacetimedb/server typescript sdk --- crates/bindings-typescript/src/server/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/bindings-typescript/src/server/index.ts b/crates/bindings-typescript/src/server/index.ts index ac4a492556f..f891c63ae27 100644 --- a/crates/bindings-typescript/src/server/index.ts +++ b/crates/bindings-typescript/src/server/index.ts @@ -21,5 +21,6 @@ export { toCamelCase } from '../lib/util'; export type { Uuid } from '../lib/uuid'; export type { Random } from './rng'; export type { ViewExport, ViewCtx, AnonymousViewCtx } from './views'; +export * from './range'; import './polyfills'; // Ensure polyfills are loaded From fed9e602e97572fe983e122bfa216f6a16b150a3 Mon Sep 17 00:00:00 2001 From: Allen Ray Date: Thu, 5 Mar 2026 19:16:15 -0500 Subject: [PATCH 2/2] explicitly enumerate exported types --- crates/bindings-typescript/src/server/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bindings-typescript/src/server/index.ts b/crates/bindings-typescript/src/server/index.ts index f891c63ae27..18c547be6ef 100644 --- a/crates/bindings-typescript/src/server/index.ts +++ b/crates/bindings-typescript/src/server/index.ts @@ -21,6 +21,6 @@ export { toCamelCase } from '../lib/util'; export type { Uuid } from '../lib/uuid'; export type { Random } from './rng'; export type { ViewExport, ViewCtx, AnonymousViewCtx } from './views'; -export * from './range'; +export { Range, type Bound } from './range'; import './polyfills'; // Ensure polyfills are loaded