rivetkit 2.3.7 → 2.3.8
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/browser/client.d.ts +34 -6
- package/dist/browser/client.js +33 -14
- package/dist/browser/client.js.map +1 -1
- package/dist/browser/inspector/client.js +1 -1
- package/dist/browser/inspector/client.js.map +1 -1
- package/dist/tsup/agent-os/index.cjs +1 -1
- package/dist/tsup/agent-os/index.cjs.map +1 -1
- package/dist/tsup/agent-os/index.d.cts +34 -6
- package/dist/tsup/agent-os/index.d.ts +34 -6
- package/dist/tsup/agent-os/index.js +1 -1
- package/dist/tsup/agent-os/index.js.map +1 -1
- package/dist/tsup/{chunk-46AE7JOI.cjs → chunk-5MJPN3QU.cjs} +172 -151
- package/dist/tsup/chunk-5MJPN3QU.cjs.map +1 -0
- package/dist/tsup/{chunk-MNZFNIVI.cjs → chunk-7TNEDX3Y.cjs} +3 -3
- package/dist/tsup/{chunk-MNZFNIVI.cjs.map → chunk-7TNEDX3Y.cjs.map} +1 -1
- package/dist/tsup/{chunk-YU3C5OCU.js → chunk-BL6ERZQO.js} +36 -15
- package/dist/tsup/chunk-BL6ERZQO.js.map +1 -0
- package/dist/tsup/{chunk-DOPH7DT2.cjs → chunk-F6GCLL5Z.cjs} +7 -7
- package/dist/tsup/{chunk-DOPH7DT2.cjs.map → chunk-F6GCLL5Z.cjs.map} +1 -1
- package/dist/tsup/{chunk-6D2WRHJV.js → chunk-HWBISPRP.js} +2 -2
- package/dist/tsup/{chunk-UIZZCJ5W.cjs → chunk-IJMVVULS.cjs} +4 -4
- package/dist/tsup/{chunk-UIZZCJ5W.cjs.map → chunk-IJMVVULS.cjs.map} +1 -1
- package/dist/tsup/{chunk-7YQJXWBW.js → chunk-MY6BRV3S.js} +3 -3
- package/dist/tsup/{chunk-2SGPZEAJ.cjs → chunk-NUMGL52R.cjs} +6 -3
- package/dist/tsup/chunk-NUMGL52R.cjs.map +1 -0
- package/dist/tsup/{chunk-TQHMPWL6.cjs → chunk-TMTJPSHQ.cjs} +9 -9
- package/dist/tsup/{chunk-TQHMPWL6.cjs.map → chunk-TMTJPSHQ.cjs.map} +1 -1
- package/dist/tsup/{chunk-YHPFCYL3.js → chunk-V7PJYBA5.js} +2 -2
- package/dist/tsup/{chunk-CH25U5NO.js → chunk-YFXQ7DBH.js} +3 -3
- package/dist/tsup/{chunk-OG4OR2CM.js → chunk-ZKDZW5DQ.js} +6 -3
- package/dist/tsup/chunk-ZKDZW5DQ.js.map +1 -0
- package/dist/tsup/client/mod.cjs +5 -5
- package/dist/tsup/client/mod.d.cts +2 -2
- package/dist/tsup/client/mod.d.ts +2 -2
- package/dist/tsup/client/mod.js +4 -4
- package/dist/tsup/common/log.cjs +2 -2
- package/dist/tsup/common/log.js +1 -1
- package/dist/tsup/common/websocket.cjs +3 -3
- package/dist/tsup/common/websocket.js +2 -2
- package/dist/tsup/{config-BRpVbJCD.d.ts → config-CUymbyM6.d.ts} +35 -7
- package/dist/tsup/{config-BobvQpex.d.cts → config-CpB-e4I9.d.cts} +35 -7
- package/dist/tsup/{context-Cj-DFyiy.d.ts → context-YBUBTwTS.d.ts} +1 -1
- package/dist/tsup/{context-YEBNJrws.d.cts → context-c-6G4mjk.d.cts} +1 -1
- package/dist/tsup/db/drizzle.cjs +2 -2
- package/dist/tsup/db/drizzle.js +1 -1
- package/dist/tsup/db/mod.cjs +2 -2
- package/dist/tsup/db/mod.js +1 -1
- package/dist/tsup/dynamic/mod.d.cts +1 -1
- package/dist/tsup/dynamic/mod.d.ts +1 -1
- package/dist/tsup/inspector/mod.cjs +4 -4
- package/dist/tsup/inspector/mod.js +3 -3
- package/dist/tsup/inspector-tab/mod.d.cts +2 -2
- package/dist/tsup/inspector-tab/mod.d.ts +2 -2
- package/dist/tsup/mod.cjs +449 -124
- package/dist/tsup/mod.cjs.map +1 -1
- package/dist/tsup/mod.d.cts +3 -3
- package/dist/tsup/mod.d.ts +3 -3
- package/dist/tsup/mod.js +388 -63
- package/dist/tsup/mod.js.map +1 -1
- package/dist/tsup/test/mod.cjs +6 -6
- package/dist/tsup/test/mod.d.cts +1 -1
- package/dist/tsup/test/mod.d.ts +1 -1
- package/dist/tsup/test/mod.js +4 -4
- package/dist/tsup/utils.cjs +2 -2
- package/dist/tsup/utils.js +1 -1
- package/dist/tsup/workflow/mod.cjs +6 -6
- package/dist/tsup/workflow/mod.d.cts +3 -3
- package/dist/tsup/workflow/mod.d.ts +3 -3
- package/dist/tsup/workflow/mod.js +3 -3
- package/package.json +8 -8
- package/src/client/actor-handle.ts +3 -1
- package/src/client/raw-utils.ts +11 -2
- package/src/common/actor-router-consts.ts +1 -0
- package/src/common/encoding.ts +4 -1
- package/src/common/fetch-like.ts +49 -0
- package/src/engine-client/actor-http-client.ts +6 -22
- package/src/registry/index.ts +159 -14
- package/src/registry/napi-runtime.ts +74 -0
- package/src/registry/native-http.ts +208 -0
- package/src/registry/native.ts +111 -63
- package/src/registry/runtime.ts +35 -0
- package/src/registry/wasm-runtime.ts +11 -0
- package/dist/tsup/chunk-2SGPZEAJ.cjs.map +0 -1
- package/dist/tsup/chunk-46AE7JOI.cjs.map +0 -1
- package/dist/tsup/chunk-OG4OR2CM.js.map +0 -1
- package/dist/tsup/chunk-YU3C5OCU.js.map +0 -1
- /package/dist/tsup/{chunk-6D2WRHJV.js.map → chunk-HWBISPRP.js.map} +0 -0
- /package/dist/tsup/{chunk-7YQJXWBW.js.map → chunk-MY6BRV3S.js.map} +0 -0
- /package/dist/tsup/{chunk-YHPFCYL3.js.map → chunk-V7PJYBA5.js.map} +0 -0
- /package/dist/tsup/{chunk-CH25U5NO.js.map → chunk-YFXQ7DBH.js.map} +0 -0
|
@@ -573,6 +573,12 @@ interface RuntimeHttpRequest {
|
|
|
573
573
|
headers?: Record<string, string>;
|
|
574
574
|
body?: RuntimeBytes;
|
|
575
575
|
}
|
|
576
|
+
interface RuntimeHttpResponseBodyStream {
|
|
577
|
+
cancelled(): Promise<void>;
|
|
578
|
+
write(chunk: Uint8Array): Promise<void>;
|
|
579
|
+
end(): Promise<void>;
|
|
580
|
+
error(message: string): Promise<void>;
|
|
581
|
+
}
|
|
576
582
|
interface RuntimeStateDeltaPayload {
|
|
577
583
|
state?: RuntimeBytes;
|
|
578
584
|
connHibernation: Array<{
|
|
@@ -795,6 +801,7 @@ interface RuntimeListenerConfig {
|
|
|
795
801
|
port: number;
|
|
796
802
|
host?: string;
|
|
797
803
|
publicDir?: string;
|
|
804
|
+
application?: RuntimeApplicationFetch;
|
|
798
805
|
}
|
|
799
806
|
interface RuntimeServerlessRequest {
|
|
800
807
|
method: string;
|
|
@@ -802,6 +809,19 @@ interface RuntimeServerlessRequest {
|
|
|
802
809
|
headers: Record<string, string>;
|
|
803
810
|
body: RuntimeBytes;
|
|
804
811
|
}
|
|
812
|
+
interface RuntimeApplicationRequest extends RuntimeServerlessRequest {
|
|
813
|
+
cancelToken?: CancellationTokenHandle;
|
|
814
|
+
}
|
|
815
|
+
interface RuntimeApplicationResponse {
|
|
816
|
+
status: number;
|
|
817
|
+
headers: Record<string, string>;
|
|
818
|
+
body?: RuntimeBytes;
|
|
819
|
+
stream?: boolean;
|
|
820
|
+
}
|
|
821
|
+
type RuntimeApplicationFetch = (request: RuntimeApplicationRequest, responseBodyStream?: RuntimeHttpResponseBodyStream) => Promise<RuntimeApplicationResponse>;
|
|
822
|
+
interface RuntimeApplicationListenerConfig extends RuntimeListenerConfig {
|
|
823
|
+
application: RuntimeApplicationFetch;
|
|
824
|
+
}
|
|
805
825
|
interface RuntimeServerlessResponseHead {
|
|
806
826
|
status: number;
|
|
807
827
|
headers: Record<string, string>;
|
|
@@ -844,6 +864,7 @@ interface CoreRuntime {
|
|
|
844
864
|
registryActorStopThresholdMs?(registry: RegistryHandle): Promise<number | undefined>;
|
|
845
865
|
handleServerlessRequest(registry: RegistryHandle, req: RuntimeServerlessRequest, onStreamEvent: RuntimeServerlessStreamCallback, cancelToken: CancellationTokenHandle, config: RuntimeServeConfig): Promise<RuntimeServerlessResponseHead>;
|
|
846
866
|
serveListener(registry: RegistryHandle, listener: RuntimeListenerConfig, config: RuntimeServeConfig): Promise<void>;
|
|
867
|
+
serveApplicationListener(registry: RegistryHandle, listener: RuntimeApplicationListenerConfig, config: RuntimeServeConfig): Promise<void>;
|
|
847
868
|
registryHealth?(registry: RegistryHandle): Promise<RuntimeRegistryRouteResponse>;
|
|
848
869
|
registryMetadata?(registry: RegistryHandle): Promise<RuntimeRegistryRouteResponse>;
|
|
849
870
|
registryMetrics?(registry: RegistryHandle): Promise<RuntimeRegistryRouteResponse>;
|
|
@@ -954,6 +975,15 @@ type FetchHandler = (request: Request, ...args: any) => Response | Promise<Respo
|
|
|
954
975
|
interface ServerlessHandler {
|
|
955
976
|
fetch: FetchHandler;
|
|
956
977
|
}
|
|
978
|
+
interface RegistryApplication {
|
|
979
|
+
fetch: FetchHandler;
|
|
980
|
+
}
|
|
981
|
+
interface RegistryListenOptions {
|
|
982
|
+
port?: number;
|
|
983
|
+
host?: string;
|
|
984
|
+
publicDir?: string;
|
|
985
|
+
application?: RegistryApplication;
|
|
986
|
+
}
|
|
957
987
|
interface RegistryRoutes {
|
|
958
988
|
health(): Promise<Response>;
|
|
959
989
|
metadata(): Promise<Response>;
|
|
@@ -1003,18 +1033,16 @@ declare class Registry<A extends RegistryActors> {
|
|
|
1003
1033
|
* @param opts.host Address to bind. Defaults to `0.0.0.0`.
|
|
1004
1034
|
* @param opts.publicDir If set, serves static files from this directory
|
|
1005
1035
|
* as a fallback below the framework routes.
|
|
1036
|
+
* @param opts.application If set, handles requests that do not match a
|
|
1037
|
+
* framework route.
|
|
1006
1038
|
*
|
|
1007
1039
|
* @example
|
|
1008
1040
|
* ```ts
|
|
1009
1041
|
* await registry.listen();
|
|
1010
|
-
* await registry.listen({
|
|
1042
|
+
* await registry.listen({ application: app });
|
|
1011
1043
|
* ```
|
|
1012
1044
|
*/
|
|
1013
|
-
listen(opts?:
|
|
1014
|
-
port?: number;
|
|
1015
|
-
host?: string;
|
|
1016
|
-
publicDir?: string;
|
|
1017
|
-
}): Promise<void>;
|
|
1045
|
+
listen(opts?: RegistryListenOptions): Promise<void>;
|
|
1018
1046
|
/**
|
|
1019
1047
|
* Gracefully drains all live registries.
|
|
1020
1048
|
*
|
|
@@ -2412,4 +2440,4 @@ declare const DocActorConfigSchema: z.ZodObject<{
|
|
|
2412
2440
|
}, z.core.$strip>>;
|
|
2413
2441
|
}, z.core.$strip>;
|
|
2414
2442
|
|
|
2415
|
-
export { BuiltinInspectorTabIdSchema as $, type AnyActorDefinition as A, type BaseActorDefinition as B, type ConnectContext as C, type DestroyContext as D, type EventSchemaConfig as E, type ActorLogger as F, type ActorOptions as G, type ActorOptionsInput as H, ActorOptionsSchema as I, type ActorQuery as J, type ActorQueue as K, type ActorSchedule as L, type MigrateContext as M, type ActorTypes as N, ActorsSchema as O, type AnyActorInstance as P, type QueueSchemaConfig as Q, type RequestContext as R, type SleepContext as S, type AnyClient as T, type AnyConn as U, type AnyStaticActorDefinition as V, type WakeContext as W, type AnyStaticActorInstance as X, type AuthIntent as Y, BUILTIN_INSPECTOR_TAB_IDS as Z, type BaseActorInstance as _, type ActionContext as a, type
|
|
2443
|
+
export { BuiltinInspectorTabIdSchema as $, type AnyActorDefinition as A, type BaseActorDefinition as B, type ConnectContext as C, type DestroyContext as D, type EventSchemaConfig as E, type ActorLogger as F, type ActorOptions as G, type ActorOptionsInput as H, ActorOptionsSchema as I, type ActorQuery as J, type ActorQueue as K, type ActorSchedule as L, type MigrateContext as M, type ActorTypes as N, ActorsSchema as O, type AnyActorInstance as P, type QueueSchemaConfig as Q, type RequestContext as R, type SleepContext as S, type AnyClient as T, type AnyConn as U, type AnyStaticActorDefinition as V, type WakeContext as W, type AnyStaticActorInstance as X, type AuthIntent as Y, BUILTIN_INSPECTOR_TAB_IDS as Z, type BaseActorInstance as _, type ActionContext as a, type WasmRuntimeConfig as a$, CONN_DRIVER_SYMBOL as a0, CONN_STATE_MANAGER_SYMBOL as a1, type Client as a2, type Conn as a3, type CronFire as a4, type CronJobInfo as a5, CustomInspectorTabEntrySchema as a6, DEFAULT_SLEEP_GRACE_PERIOD as a7, DocActorConfigSchema as a8, DocActorOptionsSchema as a9, RAW_STATE_SYMBOL as aA, RUN_FUNCTION_CONFIG_SYMBOL as aB, Registry as aC, type RegistryActors as aD, type RegistryApplication as aE, type RegistryConfig as aF, type RegistryConfigInput as aG, RegistryConfigSchema as aH, type RegistryDeps as aI, type RegistryListenOptions as aJ, type RegistryRoutes as aK, type RunConfig as aL, RunConfigSchema as aM, type RunInspectorConfig as aN, type RuntimeKind as aO, RuntimeKindSchema as aP, type ScheduledEventInfo as aQ, type ScheduledFireInfo as aR, type ServerlessHandler as aS, type SqliteBackend as aT, SqliteBackendSchema as aU, type SqliteConfig as aV, SqliteConfigSchema as aW, type TestConfig as aX, TestConfigSchema as aY, type Type as aZ, type WasmRuntimeBindings as a_, DocConfigurePoolSchema as aa, DocEnvoyConfigSchema as ab, DocRegistryConfigSchema as ac, DocServerlessConfigSchema as ad, DocSqliteConfigSchema as ae, type FetchHandler as af, type GlobalActorOptions as ag, type GlobalActorOptionsInput as ah, GlobalActorOptionsSchema as ai, HideInspectorTabEntrySchema as aj, InspectorTabEntrySchema as ak, type InspectorUnsubscribe as al, type InstanceActorOptions as am, type InstanceActorOptionsInput as an, InstanceActorOptionsSchema as ao, type QueueEnqueueAndWaitOptions as ap, type QueueFilterName as aq, type QueueIterOptions as ar, type QueueMessageOf as as, type QueueName as at, type QueueNextBatchOptions as au, type QueueNextOptions as av, type QueueResultMessageForName as aw, type QueueTryNextBatchOptions as ax, type QueueTryNextOptions as ay, type QueueWaitOptions as az, type BeforeActionResponseContext as b, WasmRuntimeConfigSchema as b0, type WasmRuntimeInitInput as b1, type WorkflowInspectorConfig as b2, actor as b3, buildActorNames as b4, createClientWithDriver as b5, disposeRunInspector as b6, event as b7, getRunFunction as b8, getRunInspectorConfig as b9, type QueryOptions as bA, type Region as bB, type StatusChangeCallback as bC, type InferEventArgs as bD, type InferSchemaMap as bE, getRunMetadata as ba, isStaticActorDefinition as bb, isStaticActorInstance as bc, lookupInRegistry as bd, queue as be, setup as bf, test as bg, type ActorAccessor as bh, type ActorActionFunction as bi, type ActorActionOptions as bj, type ActorConn as bk, ActorConnRaw as bl, type ActorConnStatus as bm, type ActorConnectOptions as bn, type ActorGatewayOptions as bo, type ActorHandle as bp, ActorHandleRaw as bq, ClientRaw as br, type ConnectionStateCallback as bs, type CreateOptions as bt, type CreateRequest as bu, type EventUnsubscribe as bv, type ExtractActorsFromRegistry as bw, type ExtractRegistryFromClient as bx, type GetOptions as by, type GetWithIdOptions as bz, type BeforeConnectContext as c, type CreateConnStateContext as d, type CreateContext as e, type CreateVarsContext as f, type DisconnectContext as g, type RunContext as h, type StateChangeContext as i, type WebSocketContext as j, ACTOR_CONTEXT_INTERNAL_SYMBOL as k, type ActionInputSchemas as l, type Actions as m, type ActorConfig as n, type ActorConfigInput as o, ActorConfigSchema as p, type ActorContext as q, type ActorContextOf as r, type ActorCron as s, type ActorCronEveryOptions as t, type ActorCronSetOptions as u, ActorDefinition as v, type ActorInspectorConfig as w, ActorInspectorConfigSchema as x, type ActorKey as y, type ActorKv as z };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as AnyActorDefinition, B as BaseActorDefinition, E as EventSchemaConfig, Q as QueueSchemaConfig, h as RunContext, F as ActorLogger, aq as QueueFilterName, av as QueueNextOptions, aw as QueueResultMessageForName, au as QueueNextBatchOptions, aC as Registry, a2 as Client,
|
|
1
|
+
import { A as AnyActorDefinition, B as BaseActorDefinition, E as EventSchemaConfig, Q as QueueSchemaConfig, h as RunContext, F as ActorLogger, aq as QueueFilterName, av as QueueNextOptions, aw as QueueResultMessageForName, au as QueueNextBatchOptions, aC as Registry, a2 as Client, bD as InferEventArgs, bE as InferSchemaMap } from './config-CUymbyM6.js';
|
|
2
2
|
import { WorkflowContextInterface, StepConfig, TryStepResult, TryStepConfig, TryBlockResult, TryBlockConfig, LoopResult, LoopConfig, BranchConfig, BranchOutput, EntryKindType } from '@rivetkit/workflow-engine';
|
|
3
3
|
import { A as AnyDatabaseProvider, I as InferDatabaseClient } from './config-BxOimoGX.js';
|
|
4
4
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as AnyActorDefinition, B as BaseActorDefinition, E as EventSchemaConfig, Q as QueueSchemaConfig, h as RunContext, F as ActorLogger, aq as QueueFilterName, av as QueueNextOptions, aw as QueueResultMessageForName, au as QueueNextBatchOptions, aC as Registry, a2 as Client,
|
|
1
|
+
import { A as AnyActorDefinition, B as BaseActorDefinition, E as EventSchemaConfig, Q as QueueSchemaConfig, h as RunContext, F as ActorLogger, aq as QueueFilterName, av as QueueNextOptions, aw as QueueResultMessageForName, au as QueueNextBatchOptions, aC as Registry, a2 as Client, bD as InferEventArgs, bE as InferSchemaMap } from './config-CpB-e4I9.cjs';
|
|
2
2
|
import { WorkflowContextInterface, StepConfig, TryStepResult, TryStepConfig, TryBlockResult, TryBlockConfig, LoopResult, LoopConfig, BranchConfig, BranchOutput, EntryKindType } from '@rivetkit/workflow-engine';
|
|
3
3
|
import { A as AnyDatabaseProvider, I as InferDatabaseClient } from './config-BxOimoGX.cjs';
|
|
4
4
|
|
package/dist/tsup/db/drizzle.cjs
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
var _chunkUEULFXUIcjs = require('../chunk-UEULFXUI.cjs');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
9
|
+
var _chunkNUMGL52Rcjs = require('../chunk-NUMGL52R.cjs');
|
|
10
10
|
require('../chunk-4FC7TVS6.cjs');
|
|
11
11
|
|
|
12
12
|
// src/db/drizzle.ts
|
|
@@ -159,7 +159,7 @@ function db({
|
|
|
159
159
|
return;
|
|
160
160
|
}
|
|
161
161
|
manualTransactionWarned = true;
|
|
162
|
-
|
|
162
|
+
_chunkNUMGL52Rcjs.getLogger.call(void 0, "database").warn(
|
|
163
163
|
{ actorId: ctx.actorId },
|
|
164
164
|
"Manual cross-call SQLite transactions can interleave with other actor work. Use db.transaction() for coordinated transactions. Set warnOnManualTransactions: false in your db(...) configuration to disable this warning."
|
|
165
165
|
);
|
package/dist/tsup/db/drizzle.js
CHANGED
package/dist/tsup/db/mod.cjs
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
var _chunkUEULFXUIcjs = require('../chunk-UEULFXUI.cjs');
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var _chunkNUMGL52Rcjs = require('../chunk-NUMGL52R.cjs');
|
|
11
11
|
require('../chunk-4FC7TVS6.cjs');
|
|
12
12
|
|
|
13
13
|
// src/common/database/mod.ts
|
|
@@ -43,7 +43,7 @@ function db({
|
|
|
43
43
|
ensureOpen();
|
|
44
44
|
if (!transactionScoped && warnOnManualTransactions && !manualTransactionWarned && !hasMultipleStatements(query) && _chunkUEULFXUIcjs.isManualTransactionControl.call(void 0, query)) {
|
|
45
45
|
manualTransactionWarned = true;
|
|
46
|
-
|
|
46
|
+
_chunkNUMGL52Rcjs.getLogger.call(void 0, "database").warn(
|
|
47
47
|
{ actorId: ctx.actorId },
|
|
48
48
|
"Manual cross-call SQLite transactions can interleave with other actor work. Use db.transaction() for coordinated transactions. Set warnOnManualTransactions: false in your db(...) configuration to disable this warning."
|
|
49
49
|
);
|
package/dist/tsup/db/mod.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { newObj[key] = obj[key]; } } } newObj.default = obj; return newObj; } }
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkTMTJPSHQcjs = require('../chunk-TMTJPSHQ.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
8
|
-
require('../chunk-
|
|
7
|
+
var _chunkIJMVVULScjs = require('../chunk-IJMVVULS.cjs');
|
|
8
|
+
require('../chunk-NUMGL52R.cjs');
|
|
9
9
|
require('../chunk-4FC7TVS6.cjs');
|
|
10
10
|
|
|
11
11
|
// src/common/bare/generated/inspector/v5.ts
|
|
@@ -795,5 +795,5 @@ function decodeToClient(bytes) {
|
|
|
795
795
|
|
|
796
796
|
|
|
797
797
|
|
|
798
|
-
exports.createWorkflowInspectorAdapter =
|
|
798
|
+
exports.createWorkflowInspectorAdapter = _chunkTMTJPSHQcjs.createWorkflowInspectorAdapter; exports.decodeToClient = decodeToClient; exports.decodeToServer = decodeToServer; exports.decodeWorkflowHistoryTransport = _chunkIJMVVULScjs.decodeWorkflowHistoryTransport; exports.encodeToClient = encodeToClient; exports.encodeToServer = encodeToServer; exports.encodeWorkflowHistoryTransport = _chunkIJMVVULScjs.encodeWorkflowHistoryTransport; exports.readActionRequest = readActionRequest; exports.readActionResponse = readActionResponse; exports.readConnection = readConnection; exports.readConnectionsRequest = readConnectionsRequest; exports.readConnectionsResponse = readConnectionsResponse; exports.readConnectionsUpdated = readConnectionsUpdated; exports.readDatabaseSchemaRequest = readDatabaseSchemaRequest; exports.readDatabaseSchemaResponse = readDatabaseSchemaResponse; exports.readDatabaseTableRowsRequest = readDatabaseTableRowsRequest; exports.readDatabaseTableRowsResponse = readDatabaseTableRowsResponse; exports.readError = readError; exports.readInit = readInit; exports.readPatchStateRequest = readPatchStateRequest; exports.readQueueMessageSummary = readQueueMessageSummary; exports.readQueueRequest = readQueueRequest; exports.readQueueResponse = readQueueResponse; exports.readQueueStatus = readQueueStatus; exports.readQueueUpdated = readQueueUpdated; exports.readRpcsListRequest = readRpcsListRequest; exports.readRpcsListResponse = readRpcsListResponse; exports.readState = readState; exports.readStateRequest = readStateRequest; exports.readStateResponse = readStateResponse; exports.readStateUpdated = readStateUpdated; exports.readTabConfigEntry = readTabConfigEntry; exports.readToClient = readToClient; exports.readToClientBody = readToClientBody; exports.readToServer = readToServer; exports.readToServerBody = readToServerBody; exports.readTraceQueryRequest = readTraceQueryRequest; exports.readTraceQueryResponse = readTraceQueryResponse; exports.readWorkflowHistory = readWorkflowHistory; exports.readWorkflowHistoryRequest = readWorkflowHistoryRequest; exports.readWorkflowHistoryResponse = readWorkflowHistoryResponse; exports.readWorkflowHistoryUpdated = readWorkflowHistoryUpdated; exports.readWorkflowReplayRequest = readWorkflowReplayRequest; exports.readWorkflowReplayResponse = readWorkflowReplayResponse; exports.writeActionRequest = writeActionRequest; exports.writeActionResponse = writeActionResponse; exports.writeConnection = writeConnection; exports.writeConnectionsRequest = writeConnectionsRequest; exports.writeConnectionsResponse = writeConnectionsResponse; exports.writeConnectionsUpdated = writeConnectionsUpdated; exports.writeDatabaseSchemaRequest = writeDatabaseSchemaRequest; exports.writeDatabaseSchemaResponse = writeDatabaseSchemaResponse; exports.writeDatabaseTableRowsRequest = writeDatabaseTableRowsRequest; exports.writeDatabaseTableRowsResponse = writeDatabaseTableRowsResponse; exports.writeError = writeError; exports.writeInit = writeInit; exports.writePatchStateRequest = writePatchStateRequest; exports.writeQueueMessageSummary = writeQueueMessageSummary; exports.writeQueueRequest = writeQueueRequest; exports.writeQueueResponse = writeQueueResponse; exports.writeQueueStatus = writeQueueStatus; exports.writeQueueUpdated = writeQueueUpdated; exports.writeRpcsListRequest = writeRpcsListRequest; exports.writeRpcsListResponse = writeRpcsListResponse; exports.writeState = writeState; exports.writeStateRequest = writeStateRequest; exports.writeStateResponse = writeStateResponse; exports.writeStateUpdated = writeStateUpdated; exports.writeTabConfigEntry = writeTabConfigEntry; exports.writeToClient = writeToClient; exports.writeToClientBody = writeToClientBody; exports.writeToServer = writeToServer; exports.writeToServerBody = writeToServerBody; exports.writeTraceQueryRequest = writeTraceQueryRequest; exports.writeTraceQueryResponse = writeTraceQueryResponse; exports.writeWorkflowHistory = writeWorkflowHistory; exports.writeWorkflowHistoryRequest = writeWorkflowHistoryRequest; exports.writeWorkflowHistoryResponse = writeWorkflowHistoryResponse; exports.writeWorkflowHistoryUpdated = writeWorkflowHistoryUpdated; exports.writeWorkflowReplayRequest = writeWorkflowReplayRequest; exports.writeWorkflowReplayResponse = writeWorkflowReplayResponse;
|
|
799
799
|
//# sourceMappingURL=mod.cjs.map
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
createWorkflowInspectorAdapter
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-MY6BRV3S.js";
|
|
4
4
|
import {
|
|
5
5
|
decodeWorkflowHistoryTransport,
|
|
6
6
|
encodeWorkflowHistoryTransport
|
|
7
|
-
} from "../chunk-
|
|
8
|
-
import "../chunk-
|
|
7
|
+
} from "../chunk-HWBISPRP.js";
|
|
8
|
+
import "../chunk-ZKDZW5DQ.js";
|
|
9
9
|
import "../chunk-ZZ3WBRPD.js";
|
|
10
10
|
|
|
11
11
|
// src/common/bare/generated/inspector/v5.ts
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { a6 as CustomInspectorTabEntrySchema, aj as HideInspectorTabEntrySchema, ak as InspectorTabEntrySchema } from '../config-
|
|
3
|
-
export { w as ActorInspectorConfig, x as ActorInspectorConfigSchema, Z as BUILTIN_INSPECTOR_TAB_IDS, $ as BuiltinInspectorTabIdSchema } from '../config-
|
|
2
|
+
import { a6 as CustomInspectorTabEntrySchema, aj as HideInspectorTabEntrySchema, ak as InspectorTabEntrySchema } from '../config-CpB-e4I9.cjs';
|
|
3
|
+
export { w as ActorInspectorConfig, x as ActorInspectorConfigSchema, Z as BUILTIN_INSPECTOR_TAB_IDS, $ as BuiltinInspectorTabIdSchema } from '../config-CpB-e4I9.cjs';
|
|
4
4
|
import 'zod/v4';
|
|
5
5
|
import '../config-BxOimoGX.cjs';
|
|
6
6
|
import '@rivetkit/rivetkit-wasm';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { a6 as CustomInspectorTabEntrySchema, aj as HideInspectorTabEntrySchema, ak as InspectorTabEntrySchema } from '../config-
|
|
3
|
-
export { w as ActorInspectorConfig, x as ActorInspectorConfigSchema, Z as BUILTIN_INSPECTOR_TAB_IDS, $ as BuiltinInspectorTabIdSchema } from '../config-
|
|
2
|
+
import { a6 as CustomInspectorTabEntrySchema, aj as HideInspectorTabEntrySchema, ak as InspectorTabEntrySchema } from '../config-CUymbyM6.js';
|
|
3
|
+
export { w as ActorInspectorConfig, x as ActorInspectorConfigSchema, Z as BUILTIN_INSPECTOR_TAB_IDS, $ as BuiltinInspectorTabIdSchema } from '../config-CUymbyM6.js';
|
|
4
4
|
import 'zod/v4';
|
|
5
5
|
import '../config-BxOimoGX.js';
|
|
6
6
|
import '@rivetkit/rivetkit-wasm';
|