@base44-preview/sdk 0.8.36-pr.219.4b81d03 → 0.8.37-pr.212.00d8065

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/client.js CHANGED
@@ -12,6 +12,7 @@ import { createAppLogsModule } from "./modules/app-logs.js";
12
12
  import { createUsersModule } from "./modules/users.js";
13
13
  import { RoomsSocket } from "./utils/socket-utils.js";
14
14
  import { createAnalyticsModule } from "./modules/analytics.js";
15
+ import { createRealtimeModule } from "./modules/realtime.js";
15
16
  /**
16
17
  * Creates a Base44 client.
17
18
  *
@@ -51,9 +52,27 @@ import { createAnalyticsModule } from "./modules/analytics.js";
51
52
  */
52
53
  export function createClient(config) {
53
54
  var _a, _b;
54
- const { serverUrl = "https://base44.app", appId, token, serviceToken, requiresAuth = false, appBaseUrl, options, functionsVersion, headers: optionalHeaders, } = config;
55
+ const { serverUrl = "https://base44.app", appId, token, serviceToken, requiresAuth = false, appBaseUrl, options, functionsVersion, headers: optionalHeaders, dispatcherWsUrl, webSocketImpl, } = config;
55
56
  // Normalize appBaseUrl to always be a string (empty if not provided or invalid)
56
57
  const normalizedAppBaseUrl = typeof appBaseUrl === "string" ? appBaseUrl : "";
58
+ // Derive the dispatcher WebSocket URL if not explicitly provided. Default to
59
+ // the app's OWN origin (the app URL proxies /parties to the backend) so the
60
+ // socket is same-origin with the running app, not the API host: prefer an
61
+ // explicit appBaseUrl, then the browser origin, then fall back to serverUrl
62
+ // (Node/SSR, where there's no window). Convert https:// → wss:// (http → ws)
63
+ // and strip the trailing slash.
64
+ const resolvedDispatcherWsUrl = (() => {
65
+ var _a, _b;
66
+ if (dispatcherWsUrl)
67
+ return dispatcherWsUrl.replace(/\/$/, "");
68
+ const appOrigin = normalizedAppBaseUrl ||
69
+ // React Native has a bare `window` with no `location`, so guard both.
70
+ (typeof window !== "undefined" ? (_b = (_a = window.location) === null || _a === void 0 ? void 0 : _a.origin) !== null && _b !== void 0 ? _b : "" : "");
71
+ return (appOrigin || serverUrl)
72
+ .replace(/\/$/, "")
73
+ .replace(/^https:\/\//, "wss://")
74
+ .replace(/^http:\/\//, "ws://");
75
+ })();
57
76
  const socketConfig = {
58
77
  serverUrl,
59
78
  mountPath: "/ws-user-apps/socket.io/",
@@ -160,6 +179,22 @@ export function createClient(config) {
160
179
  appId,
161
180
  userAuthModule,
162
181
  }),
182
+ realtime: createRealtimeModule({
183
+ appId,
184
+ dispatcherWsUrl: resolvedDispatcherWsUrl,
185
+ webSocketImpl,
186
+ getToken: async (handlerName, instanceId, connId) => {
187
+ // axiosClient interceptors unwrap response.data, so the result is the body directly.
188
+ // conn_id rides inside the signed token (not a WS query param) so it survives
189
+ // proxies that strip params; the dispatcher forwards it as the handler's conn.id.
190
+ // Base44-Functions-Version rides along (like function calls) so live apps get
191
+ // tokens for the *published* realtime script and previews get the draft.
192
+ const data = await axiosClient.post(`/apps/${appId}/realtime-token`, { handler_name: handlerName, instance_id: instanceId, conn_id: connId }, functionsVersion
193
+ ? { headers: { "Base44-Functions-Version": functionsVersion } }
194
+ : undefined);
195
+ return data.token;
196
+ },
197
+ }),
163
198
  cleanup: () => {
164
199
  userModules.analytics.cleanup();
165
200
  if (socket) {
@@ -8,6 +8,7 @@ import type { AgentsModule } from "./modules/agents.types.js";
8
8
  import type { AiGatewayModule } from "./modules/ai-gateway.types.js";
9
9
  import type { AppLogsModule } from "./modules/app-logs.types.js";
10
10
  import type { AnalyticsModule } from "./modules/analytics.types.js";
11
+ import type { RealtimeModule } from "./modules/realtime.types.js";
11
12
  /**
12
13
  * Options for creating a Base44 client.
13
14
  */
@@ -73,6 +74,28 @@ export interface CreateClientConfig {
73
74
  * Additional client options.
74
75
  */
75
76
  options?: CreateClientOptions;
77
+ /**
78
+ * Base WebSocket URL for the Cloudflare Durable Object dispatcher.
79
+ *
80
+ * Defaults to the app's own origin (`appBaseUrl`, else the browser's
81
+ * `window.location.origin`, else `serverUrl`) with `https://` replaced by
82
+ * `wss://` (or `http://` by `ws://`) — so the realtime socket is same-origin
83
+ * with the running app, which proxies `/parties` to the backend.
84
+ * Override when the dispatcher lives at a different host than the app.
85
+ */
86
+ dispatcherWsUrl?: string;
87
+ /**
88
+ * WebSocket implementation for realtime subscriptions in environments
89
+ * without a global `WebSocket` (Node.js < 22). Browsers and Node ≥ 22
90
+ * don't need this.
91
+ *
92
+ * @example
93
+ * ```typescript
94
+ * import WS from "ws";
95
+ * const base44 = createClient({ appId, webSocketImpl: WS });
96
+ * ```
97
+ */
98
+ webSocketImpl?: unknown;
76
99
  }
77
100
  /**
78
101
  * The Base44 client instance.
@@ -88,6 +111,8 @@ export interface Base44Client {
88
111
  analytics: AnalyticsModule;
89
112
  /** {@link AppLogsModule | App logs module} for tracking app usage. */
90
113
  appLogs: AppLogsModule;
114
+ /** {@link RealtimeModule | Realtime module} for subscribing to and sending messages via Cloudflare Durable Object-backed RealtimeHandlers. */
115
+ realtime: RealtimeModule;
91
116
  /** {@link AuthModule | Auth module} for user authentication and management. */
92
117
  auth: AuthModule;
93
118
  /** {@link UserConnectorsModule | Connectors module} for app-user OAuth flows. */
package/dist/index.d.ts CHANGED
@@ -11,7 +11,9 @@ export type { FunctionsModule, FunctionName, FunctionNameRegistry, } from "./mod
11
11
  export type { AgentsModule, AgentName, AgentNameRegistry, AgentConversation, AgentMessage, AgentMessageReasoning, AgentMessageToolCall, AgentMessageUsage, AgentMessageCustomContext, AgentMessageMetadata, CreateConversationParams, } from "./modules/agents.types.js";
12
12
  export type { AiGatewayModule, AiGatewayConnection, } from "./modules/ai-gateway.types.js";
13
13
  export type { AppLogsModule } from "./modules/app-logs.types.js";
14
+ export type { RealtimeModule, RealtimeHandlerClient, RealtimeHandlerNameRegistry, RealtimeHandlerRegistry, } from "./modules/realtime.types.js";
14
15
  export type { SsoModule, SsoAccessTokenResponse } from "./modules/sso.types.js";
16
+ export { RealtimeHandler, type Conn } from "./realtime-handler.js";
15
17
  export type { ConnectorsModule, UserConnectorsModule, } from "./modules/connectors.types.js";
16
18
  export type { CustomIntegrationsModule, CustomIntegrationCallParams, CustomIntegrationCallResponse, } from "./modules/custom-integrations.types.js";
17
19
  export type { GetAccessTokenOptions, SaveAccessTokenOptions, RemoveAccessTokenOptions, GetLoginUrlOptions, } from "./utils/auth-utils.types.js";
package/dist/index.js CHANGED
@@ -3,3 +3,4 @@ import { Base44Error } from "./utils/axios-client.js";
3
3
  import { getAccessToken, saveAccessToken, removeAccessToken, getLoginUrl, } from "./utils/auth-utils.js";
4
4
  export { createClient, createClientFromRequest, Base44Error, getAccessToken, saveAccessToken, removeAccessToken, getLoginUrl, };
5
5
  export * from "./types.js";
6
+ export { RealtimeHandler } from "./realtime-handler.js";
@@ -1,5 +1,5 @@
1
1
  import { getSharedInstance } from "../utils/sharedInstance.js";
2
- import { generateUuid } from "../utils/common.js";
2
+ import { generateUuid, isReactNative } from "../utils/common.js";
3
3
  export const USER_HEARTBEAT_EVENT_NAME = "__user_heartbeat_event__";
4
4
  export const ANALYTICS_INITIALIZATION_EVENT_NAME = "__initialization_event__";
5
5
  export const ANALYTICS_SESSION_DURATION_EVENT_NAME = "__session_duration_event__";
@@ -34,7 +34,11 @@ export const createAnalyticsModule = ({ axiosClient, serverUrl, appId, userAuthM
34
34
  var _a;
35
35
  // prevent overflow of events //
36
36
  const { maxQueueSize, throttleTime, batchSize } = analyticsSharedState.config;
37
- if (!((_a = analyticsSharedState.config) === null || _a === void 0 ? void 0 : _a.enabled)) {
37
+ // Disable analytics on React Native. It defines `window` but not `document`,
38
+ // so the per-callsite `typeof window` guards below aren't enough to keep it
39
+ // from touching `document` (e.g. `document.referrer` on init). Node/SSR is
40
+ // still handled by those `window` guards, so this doesn't affect it.
41
+ if (!((_a = analyticsSharedState.config) === null || _a === void 0 ? void 0 : _a.enabled) || isReactNative) {
38
42
  return {
39
43
  track: () => { },
40
44
  cleanup: () => { },
@@ -242,7 +246,10 @@ async function getSessionContext(userAuthModule) {
242
246
  return analyticsSharedState.sessionContext;
243
247
  }
244
248
  export function getAnalyticsConfigFromUrlParams() {
245
- if (typeof window === "undefined")
249
+ // `window.location` is absent on React Native. This runs at module load (via
250
+ // the shared-state factory), so an unguarded `window.location.search` would
251
+ // throw on import there.
252
+ if (typeof window === "undefined" || !window.location)
246
253
  return undefined;
247
254
  const urlParams = new URLSearchParams(window.location.search);
248
255
  const analyticsEnable = urlParams.get(ANALYTICS_CONFIG_ENABLE_URL_PARAM_KEY);
@@ -0,0 +1,21 @@
1
+ export declare function createRealtimeModule(config: {
2
+ appId: string;
3
+ getToken(handlerName: string, instanceId: string, connId: string): Promise<string>;
4
+ dispatcherWsUrl: string;
5
+ /** WebSocket implementation for runtimes without a global one (Node < 22). */
6
+ webSocketImpl?: unknown;
7
+ }): Record<string, RealtimeHandler>;
8
+ /** Handle for an active realtime subscription. */
9
+ interface RealtimeSubscription {
10
+ /** This connection's id — the same value the handler receives as `conn.id`. */
11
+ id: string;
12
+ /** Close the subscription and its underlying socket. */
13
+ unsubscribe(): void;
14
+ }
15
+ interface RealtimeHandler {
16
+ subscribe(instanceId: string, callback: (data: unknown) => void, options?: {
17
+ id?: string;
18
+ }): RealtimeSubscription;
19
+ send(instanceId: string, data: unknown): void;
20
+ }
21
+ export {};
@@ -0,0 +1,89 @@
1
+ import PartySocket from "partysocket";
2
+ // Module-level map: "HandlerName:instanceId" → active socket
3
+ const activeSockets = new Map();
4
+ function socketKey(handlerName, instanceId) {
5
+ return `${handlerName}:${instanceId}`;
6
+ }
7
+ export function createRealtimeModule(config) {
8
+ return new Proxy({}, {
9
+ get(_, handlerName) {
10
+ return {
11
+ subscribe(instanceId, callback, options) {
12
+ var _a, _b;
13
+ const key = socketKey(handlerName, instanceId);
14
+ // close existing if any
15
+ (_a = activeSockets.get(key)) === null || _a === void 0 ? void 0 : _a.close();
16
+ // Connection id: caller-supplied (stable — reuse across reconnects/tabs as
17
+ // you see fit) or auto-generated per subscription. It travels INSIDE the
18
+ // signed realtime token (never as a WS query param, which proxies strip);
19
+ // the dispatcher forwards the verified claim as partyserver's _pk, so the
20
+ // handler sees this exact value as conn.id. Reconnects re-mint the token
21
+ // with the same id, so conn.id is stable across reconnects.
22
+ const connId = (_b = options === null || options === void 0 ? void 0 : options.id) !== null && _b !== void 0 ? _b : crypto.randomUUID();
23
+ // query as async fn: called on every (re)connect, fetches a fresh token each time
24
+ const ws = new PartySocket({
25
+ host: config.dispatcherWsUrl,
26
+ party: handlerName,
27
+ room: instanceId,
28
+ ...(config.webSocketImpl ? { WebSocket: config.webSocketImpl } : {}),
29
+ query: () => config.getToken(handlerName, instanceId, connId).then((token) => ({ token })),
30
+ });
31
+ activeSockets.set(key, ws);
32
+ // Heartbeat / half-open detection. PartySocket only reconnects on a
33
+ // browser close/error event, so a silently-dead connection (TCP alive,
34
+ // no data — common behind proxies/LBs) hangs until the OS idle timeout
35
+ // (~60s). We ping periodically and force a reconnect if nothing comes
36
+ // back within DEAD_MS, cutting detection from ~60s to a few seconds.
37
+ const PING_MS = 1000;
38
+ const DEAD_MS = 3000;
39
+ let lastMsg = Date.now();
40
+ const bumpAlive = () => { lastMsg = Date.now(); };
41
+ ws.addEventListener("open", bumpAlive);
42
+ ws.addEventListener("message", (ev) => {
43
+ bumpAlive();
44
+ let data;
45
+ try {
46
+ data = JSON.parse(ev.data);
47
+ }
48
+ catch (_a) {
49
+ return; // ignore malformed
50
+ }
51
+ // Swallow platform messages — never surface them to the app.
52
+ const msgType = data && typeof data === "object" ? data.type : undefined;
53
+ if (msgType === "__pong")
54
+ return;
55
+ callback(data);
56
+ });
57
+ const heartbeat = setInterval(() => {
58
+ if (Date.now() - lastMsg > DEAD_MS) {
59
+ bumpAlive(); // avoid a reconnect storm while the new socket comes up
60
+ ws.reconnect();
61
+ return;
62
+ }
63
+ try {
64
+ ws.send(JSON.stringify({ type: "__ping" }));
65
+ }
66
+ catch (_a) {
67
+ // socket not open; the watchdog above will force a reconnect
68
+ }
69
+ }, PING_MS);
70
+ return {
71
+ id: connId, // the connection id (same value the handler sees as conn.id)
72
+ unsubscribe() {
73
+ clearInterval(heartbeat);
74
+ activeSockets.delete(key);
75
+ ws.close();
76
+ },
77
+ };
78
+ },
79
+ send(instanceId, data) {
80
+ const key = socketKey(handlerName, instanceId);
81
+ const ws = activeSockets.get(key);
82
+ if (!ws)
83
+ throw new Error(`No active subscription for ${handlerName}:${instanceId}`);
84
+ ws.send(JSON.stringify(data));
85
+ },
86
+ };
87
+ },
88
+ });
89
+ }
@@ -0,0 +1,77 @@
1
+ /**
2
+ * Extend this interface to add typed `subscribe` callbacks and `send` payloads
3
+ * for your deployed RealtimeHandlers.
4
+ *
5
+ * This is separate from {@link RealtimeHandlerNameRegistry} (which is auto-generated
6
+ * by `base44 types generate`), so there are no conflicts.
7
+ *
8
+ * @example
9
+ * ```typescript
10
+ * declare module "@base44/sdk" {
11
+ * interface RealtimeHandlerRegistry {
12
+ * ChatRoom: {
13
+ * toClient: { type: "joined" | "left" | "message"; userId?: string; from?: string; text?: string };
14
+ * toServer: { type: "message"; text: string };
15
+ * };
16
+ * }
17
+ * }
18
+ * ```
19
+ */
20
+ export interface RealtimeHandlerRegistry {
21
+ }
22
+ /**
23
+ * Auto-populated by `base44 types generate` with the names of your deployed handlers.
24
+ * Do not edit this interface manually — use {@link RealtimeHandlerRegistry} for message types.
25
+ */
26
+ export interface RealtimeHandlerNameRegistry {
27
+ }
28
+ type AllHandlerNames = keyof RealtimeHandlerRegistry | keyof RealtimeHandlerNameRegistry;
29
+ type ToClientFor<N extends string> = N extends keyof RealtimeHandlerRegistry ? RealtimeHandlerRegistry[N] extends {
30
+ toClient: infer I;
31
+ } ? I : unknown : unknown;
32
+ type ToServerFor<N extends string> = N extends keyof RealtimeHandlerRegistry ? RealtimeHandlerRegistry[N] extends {
33
+ toServer: infer O;
34
+ } ? O : unknown : unknown;
35
+ /**
36
+ * Client for a single named RealtimeHandler.
37
+ * Typed automatically when the handler is registered in {@link RealtimeHandlerRegistry}.
38
+ */
39
+ export interface RealtimeHandlerClient<N extends string = string> {
40
+ /**
41
+ * Open a WebSocket subscription. Returns a {@link RealtimeSubscription} with the
42
+ * connection `id` (same value the handler sees as `conn.id`) and an `unsubscribe()` method.
43
+ *
44
+ * Pass `options.id` to control the connection id (e.g. a stable per-tab id so a
45
+ * reconnect reuses the same server-side connection); omit it for an auto-generated
46
+ * per-connection id.
47
+ */
48
+ subscribe(instanceId: string, callback: (data: ToClientFor<N>) => void, options?: {
49
+ id?: string;
50
+ }): RealtimeSubscription;
51
+ /** Send a message over the open socket. Throws if not subscribed. */
52
+ send(instanceId: string, data: ToServerFor<N>): void;
53
+ }
54
+ /** Handle for an active realtime subscription. */
55
+ export interface RealtimeSubscription {
56
+ /** This connection's id — the same value the handler receives as `conn.id`. */
57
+ id: string;
58
+ /** Close the subscription and its underlying socket. */
59
+ unsubscribe(): void;
60
+ }
61
+ /**
62
+ * The realtime module provides access to Cloudflare Durable Object-backed
63
+ * RealtimeHandlers deployed by the Base44 platform.
64
+ *
65
+ * Handler names are accessed as dynamic properties on this module:
66
+ * ```typescript
67
+ * const sub = await base44.realtime.MyHandler.subscribe("room-1", (msg) => {
68
+ * console.log(msg); // typed if MyHandler is in RealtimeHandlerRegistry
69
+ * });
70
+ * const { id, unsubscribe } = sub;
71
+ * unsubscribe();
72
+ * ```
73
+ */
74
+ export type RealtimeModule = {
75
+ [K in AllHandlerNames]: K extends keyof RealtimeHandlerRegistry ? RealtimeHandlerClient<string & K> : RealtimeHandlerClient;
76
+ } & Record<string, RealtimeHandlerClient>;
77
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,86 @@
1
+ /**
2
+ * Type-only base class for Realtime Handlers.
3
+ *
4
+ * Import and extend this in your handler files:
5
+ * import { RealtimeHandler } from "@base44/sdk";
6
+ * export class MyHandler extends RealtimeHandler { ... }
7
+ *
8
+ * At deploy time the bundler replaces this import with the compiled
9
+ * Cloudflare Durable Object implementation — this file provides types only.
10
+ */
11
+ import type { Base44Client } from "./client.types.js";
12
+ /**
13
+ * A single client connection. `Send` is the message type this connection accepts
14
+ * via {@link send} — the handler's *outgoing* (server→client) messages.
15
+ */
16
+ export interface Conn<Send = unknown> {
17
+ /** Unique per-connection id (one per socket/tab), the same value the client
18
+ * receives from `subscribe()`. Use this — not userId — to identify a distinct
19
+ * client, so multiple tabs of the same user are separate connections. */
20
+ id: string;
21
+ userId: string;
22
+ appId: string;
23
+ instanceId: string;
24
+ send(data: Send): void;
25
+ reject(code: number, reason: string): void;
26
+ }
27
+ export interface Storage {
28
+ get<T>(key: string): Promise<T | undefined>;
29
+ put(key: string, value: unknown): Promise<void>;
30
+ delete(key: string): Promise<boolean>;
31
+ }
32
+ /**
33
+ * Base class for a Realtime Handler.
34
+ *
35
+ * @typeParam Incoming - messages this handler *receives* from clients
36
+ * (`handleMessage`'s `msg`) — the schema's `toServer` section.
37
+ * @typeParam Outgoing - messages this handler *sends* to clients
38
+ * (`conn.send`/`broadcast`) — the schema's `toClient` section.
39
+ *
40
+ * With a generated `schema.jsonc`, wire both from the registry so they can't drift
41
+ * from the client's types:
42
+ * ```ts
43
+ * type Reg = RealtimeHandlerRegistry["MyHandler"];
44
+ * class MyHandler extends RealtimeHandler<Reg["toServer"], Reg["toClient"]> { ... }
45
+ * ```
46
+ */
47
+ export declare abstract class RealtimeHandler<Incoming = unknown, Outgoing = unknown> {
48
+ abstract handleConnect(conn: Conn<Outgoing>): void | Promise<void>;
49
+ abstract handleMessage(conn: Conn<Outgoing>, msg: Incoming): void | Promise<void>;
50
+ abstract handleClose(conn: Conn<Outgoing>): void | Promise<void>;
51
+ abstract handleTick(): void | Promise<void>;
52
+ onStart(): void | Promise<void>;
53
+ /**
54
+ * Managed ticker (opt-in). Override {@link shouldTick} and the platform runs
55
+ * {@link handleTick} on a timer of {@link tickIntervalMs} while it returns true,
56
+ * and stops (letting the Durable Object hibernate — no compute cost) when it
57
+ * returns false. The platform owns scheduling, rescheduling, self-heal, and
58
+ * error-safety — you don't call {@link startLoop}/{@link stopLoop}.
59
+ *
60
+ * Re-evaluated after every connect/message/close and on every tick, so keep it
61
+ * cheap and pure (no async, no side effects). Example: `return this.players >= 2`.
62
+ */
63
+ protected tickIntervalMs: number;
64
+ protected shouldTick?(): boolean;
65
+ protected broadcast(_data: Outgoing): void;
66
+ protected getConnections(): Conn<Outgoing>[];
67
+ protected startLoop(_ms: number): Promise<void>;
68
+ protected stopLoop(): Promise<void>;
69
+ protected get instanceId(): string;
70
+ protected get storage(): Storage;
71
+ /**
72
+ * SDK client acting **as the connected user** — every entity call respects
73
+ * the app's row-level security, evaluated as that user at call time. The
74
+ * default wherever a `conn` is in scope (connect/message/close).
75
+ *
76
+ * Anonymous connections get an unauthenticated client — entity calls run
77
+ * under anonymous RLS, just like any public visitor.
78
+ */
79
+ protected createClientFromConnection(conn: Conn): Base44Client;
80
+ /**
81
+ * Service-role SDK client — bypasses RLS. For work with **no user in scope**
82
+ * (tick, alarm, onStart). Inside handleMessage/handleConnect prefer
83
+ * `createClientFromConnection(conn)`.
84
+ */
85
+ protected createServiceClient(): Base44Client;
86
+ }
@@ -0,0 +1,79 @@
1
+ /**
2
+ * Type-only base class for Realtime Handlers.
3
+ *
4
+ * Import and extend this in your handler files:
5
+ * import { RealtimeHandler } from "@base44/sdk";
6
+ * export class MyHandler extends RealtimeHandler { ... }
7
+ *
8
+ * At deploy time the bundler replaces this import with the compiled
9
+ * Cloudflare Durable Object implementation — this file provides types only.
10
+ */
11
+ /**
12
+ * Base class for a Realtime Handler.
13
+ *
14
+ * @typeParam Incoming - messages this handler *receives* from clients
15
+ * (`handleMessage`'s `msg`) — the schema's `toServer` section.
16
+ * @typeParam Outgoing - messages this handler *sends* to clients
17
+ * (`conn.send`/`broadcast`) — the schema's `toClient` section.
18
+ *
19
+ * With a generated `schema.jsonc`, wire both from the registry so they can't drift
20
+ * from the client's types:
21
+ * ```ts
22
+ * type Reg = RealtimeHandlerRegistry["MyHandler"];
23
+ * class MyHandler extends RealtimeHandler<Reg["toServer"], Reg["toClient"]> { ... }
24
+ * ```
25
+ */
26
+ export class RealtimeHandler {
27
+ constructor() {
28
+ /**
29
+ * Managed ticker (opt-in). Override {@link shouldTick} and the platform runs
30
+ * {@link handleTick} on a timer of {@link tickIntervalMs} while it returns true,
31
+ * and stops (letting the Durable Object hibernate — no compute cost) when it
32
+ * returns false. The platform owns scheduling, rescheduling, self-heal, and
33
+ * error-safety — you don't call {@link startLoop}/{@link stopLoop}.
34
+ *
35
+ * Re-evaluated after every connect/message/close and on every tick, so keep it
36
+ * cheap and pure (no async, no side effects). Example: `return this.players >= 2`.
37
+ */
38
+ this.tickIntervalMs = 100;
39
+ }
40
+ onStart() { }
41
+ broadcast(_data) {
42
+ throw new Error("RealtimeHandler.broadcast() is only available inside a deployed handler");
43
+ }
44
+ getConnections() {
45
+ throw new Error("RealtimeHandler.getConnections() is only available inside a deployed handler");
46
+ }
47
+ startLoop(_ms) {
48
+ throw new Error("RealtimeHandler.startLoop() is only available inside a deployed handler");
49
+ }
50
+ stopLoop() {
51
+ throw new Error("RealtimeHandler.stopLoop() is only available inside a deployed handler");
52
+ }
53
+ get instanceId() {
54
+ throw new Error("RealtimeHandler.instanceId is only available inside a deployed handler");
55
+ }
56
+ get storage() {
57
+ throw new Error("RealtimeHandler.storage is only available inside a deployed handler");
58
+ }
59
+ /**
60
+ * SDK client acting **as the connected user** — every entity call respects
61
+ * the app's row-level security, evaluated as that user at call time. The
62
+ * default wherever a `conn` is in scope (connect/message/close).
63
+ *
64
+ * Anonymous connections get an unauthenticated client — entity calls run
65
+ * under anonymous RLS, just like any public visitor.
66
+ */
67
+ createClientFromConnection(conn) {
68
+ void conn;
69
+ throw new Error("RealtimeHandler.createClientFromConnection() is only available inside a deployed handler");
70
+ }
71
+ /**
72
+ * Service-role SDK client — bypasses RLS. For work with **no user in scope**
73
+ * (tick, alarm, onStart). Inside handleMessage/handleConnect prefer
74
+ * `createClientFromConnection(conn)`.
75
+ */
76
+ createServiceClient() {
77
+ throw new Error("RealtimeHandler.createServiceClient() is only available inside a deployed handler");
78
+ }
79
+ }
@@ -130,7 +130,9 @@ export function createAxiosClient({ baseURL, headers = {}, token, interceptRespo
130
130
  }
131
131
  // Add origin URL in browser environment
132
132
  client.interceptors.request.use((config) => {
133
- if (typeof window !== "undefined") {
133
+ // `window.location` is absent on React Native (where `window` still exists),
134
+ // so guard on it before reading `.href`.
135
+ if (typeof window !== "undefined" && window.location) {
134
136
  config.headers.set("X-Origin-URL", window.location.href);
135
137
  // On unauthenticated requests, attach a stable anonymous visitor id so the
136
138
  // backend can support anonymous agent access (conversation grouping + ownership).
@@ -1,3 +1,4 @@
1
1
  export declare const isNode: boolean;
2
2
  export declare const isInIFrame: boolean;
3
+ export declare const isReactNative: boolean;
3
4
  export declare const generateUuid: () => string;
@@ -1,5 +1,10 @@
1
1
  export const isNode = typeof window === "undefined";
2
2
  export const isInIFrame = !isNode && window.self !== window.top;
3
+ // React Native defines `window` (so `isNode` is false there) but not `document`.
4
+ // Browser-only code paths gated on `window`/`isNode` alone would run — and crash —
5
+ // on React Native. Node (no `window`) is already handled by those `window` guards;
6
+ // this flags the window-without-a-DOM case that isn't.
7
+ export const isReactNative = !isNode && typeof document === "undefined";
3
8
  export const generateUuid = () => {
4
9
  return (Math.random().toString(36).substring(2, 15) +
5
10
  Math.random().toString(36).substring(2, 15));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base44-preview/sdk",
3
- "version": "0.8.36-pr.219.4b81d03",
3
+ "version": "0.8.37-pr.212.00d8065",
4
4
  "description": "JavaScript SDK for Base44 API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -27,6 +27,7 @@
27
27
  },
28
28
  "dependencies": {
29
29
  "axios": "^1.17.0",
30
+ "partysocket": "^0.0.23",
30
31
  "socket.io-client": "^4.8.3",
31
32
  "uuid": "^13.0.2"
32
33
  },