@rivetkit/engine-envoy-protocol 0.0.0-pr.4669.7c31bd8 → 0.0.0-pr.4669.ed3f4dd
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 +258 -2
- package/dist/index.js +811 -74
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -165,6 +165,190 @@ type KvResponseData = {
|
|
|
165
165
|
};
|
|
166
166
|
declare function readKvResponseData(bc: bare.ByteCursor): KvResponseData;
|
|
167
167
|
declare function writeKvResponseData(bc: bare.ByteCursor, x: KvResponseData): void;
|
|
168
|
+
type SqlitePgno = u32;
|
|
169
|
+
declare function readSqlitePgno(bc: bare.ByteCursor): SqlitePgno;
|
|
170
|
+
declare function writeSqlitePgno(bc: bare.ByteCursor, x: SqlitePgno): void;
|
|
171
|
+
type SqliteGeneration = u64;
|
|
172
|
+
declare function readSqliteGeneration(bc: bare.ByteCursor): SqliteGeneration;
|
|
173
|
+
declare function writeSqliteGeneration(bc: bare.ByteCursor, x: SqliteGeneration): void;
|
|
174
|
+
type SqlitePageBytes = ArrayBuffer;
|
|
175
|
+
declare function readSqlitePageBytes(bc: bare.ByteCursor): SqlitePageBytes;
|
|
176
|
+
declare function writeSqlitePageBytes(bc: bare.ByteCursor, x: SqlitePageBytes): void;
|
|
177
|
+
type SqliteDirtyPage = {
|
|
178
|
+
readonly pgno: SqlitePgno;
|
|
179
|
+
readonly bytes: SqlitePageBytes;
|
|
180
|
+
};
|
|
181
|
+
declare function readSqliteDirtyPage(bc: bare.ByteCursor): SqliteDirtyPage;
|
|
182
|
+
declare function writeSqliteDirtyPage(bc: bare.ByteCursor, x: SqliteDirtyPage): void;
|
|
183
|
+
type SqliteFetchedPage = {
|
|
184
|
+
readonly pgno: SqlitePgno;
|
|
185
|
+
readonly bytes: SqlitePageBytes | null;
|
|
186
|
+
};
|
|
187
|
+
declare function readSqliteFetchedPage(bc: bare.ByteCursor): SqliteFetchedPage;
|
|
188
|
+
declare function writeSqliteFetchedPage(bc: bare.ByteCursor, x: SqliteFetchedPage): void;
|
|
189
|
+
type SqliteGetPagesRequest = {
|
|
190
|
+
readonly actorId: Id;
|
|
191
|
+
readonly pgnos: readonly SqlitePgno[];
|
|
192
|
+
readonly expectedGeneration: u64 | null;
|
|
193
|
+
readonly expectedHeadTxid: u64 | null;
|
|
194
|
+
};
|
|
195
|
+
declare function readSqliteGetPagesRequest(bc: bare.ByteCursor): SqliteGetPagesRequest;
|
|
196
|
+
declare function writeSqliteGetPagesRequest(bc: bare.ByteCursor, x: SqliteGetPagesRequest): void;
|
|
197
|
+
type SqliteGetPagesOk = {
|
|
198
|
+
readonly pages: readonly SqliteFetchedPage[];
|
|
199
|
+
};
|
|
200
|
+
declare function readSqliteGetPagesOk(bc: bare.ByteCursor): SqliteGetPagesOk;
|
|
201
|
+
declare function writeSqliteGetPagesOk(bc: bare.ByteCursor, x: SqliteGetPagesOk): void;
|
|
202
|
+
type SqliteErrorResponse = {
|
|
203
|
+
readonly message: string;
|
|
204
|
+
};
|
|
205
|
+
declare function readSqliteErrorResponse(bc: bare.ByteCursor): SqliteErrorResponse;
|
|
206
|
+
declare function writeSqliteErrorResponse(bc: bare.ByteCursor, x: SqliteErrorResponse): void;
|
|
207
|
+
type SqliteGetPagesResponse = {
|
|
208
|
+
readonly tag: "SqliteGetPagesOk";
|
|
209
|
+
readonly val: SqliteGetPagesOk;
|
|
210
|
+
} | {
|
|
211
|
+
readonly tag: "SqliteErrorResponse";
|
|
212
|
+
readonly val: SqliteErrorResponse;
|
|
213
|
+
};
|
|
214
|
+
declare function readSqliteGetPagesResponse(bc: bare.ByteCursor): SqliteGetPagesResponse;
|
|
215
|
+
declare function writeSqliteGetPagesResponse(bc: bare.ByteCursor, x: SqliteGetPagesResponse): void;
|
|
216
|
+
type SqliteCommitRequest = {
|
|
217
|
+
readonly actorId: Id;
|
|
218
|
+
readonly dirtyPages: readonly SqliteDirtyPage[];
|
|
219
|
+
readonly dbSizePages: u32;
|
|
220
|
+
readonly nowMs: i64;
|
|
221
|
+
readonly expectedGeneration: u64 | null;
|
|
222
|
+
readonly expectedHeadTxid: u64 | null;
|
|
223
|
+
};
|
|
224
|
+
declare function readSqliteCommitRequest(bc: bare.ByteCursor): SqliteCommitRequest;
|
|
225
|
+
declare function writeSqliteCommitRequest(bc: bare.ByteCursor, x: SqliteCommitRequest): void;
|
|
226
|
+
type SqliteCommitOk = null;
|
|
227
|
+
type SqliteCommitResponse = {
|
|
228
|
+
readonly tag: "SqliteCommitOk";
|
|
229
|
+
readonly val: SqliteCommitOk;
|
|
230
|
+
} | {
|
|
231
|
+
readonly tag: "SqliteErrorResponse";
|
|
232
|
+
readonly val: SqliteErrorResponse;
|
|
233
|
+
};
|
|
234
|
+
declare function readSqliteCommitResponse(bc: bare.ByteCursor): SqliteCommitResponse;
|
|
235
|
+
declare function writeSqliteCommitResponse(bc: bare.ByteCursor, x: SqliteCommitResponse): void;
|
|
236
|
+
type SqliteValueNull = null;
|
|
237
|
+
type SqliteValueInteger = {
|
|
238
|
+
readonly value: i64;
|
|
239
|
+
};
|
|
240
|
+
declare function readSqliteValueInteger(bc: bare.ByteCursor): SqliteValueInteger;
|
|
241
|
+
declare function writeSqliteValueInteger(bc: bare.ByteCursor, x: SqliteValueInteger): void;
|
|
242
|
+
type SqliteValueFloat = {
|
|
243
|
+
readonly value: ArrayBuffer;
|
|
244
|
+
};
|
|
245
|
+
declare function readSqliteValueFloat(bc: bare.ByteCursor): SqliteValueFloat;
|
|
246
|
+
declare function writeSqliteValueFloat(bc: bare.ByteCursor, x: SqliteValueFloat): void;
|
|
247
|
+
type SqliteValueText = {
|
|
248
|
+
readonly value: string;
|
|
249
|
+
};
|
|
250
|
+
declare function readSqliteValueText(bc: bare.ByteCursor): SqliteValueText;
|
|
251
|
+
declare function writeSqliteValueText(bc: bare.ByteCursor, x: SqliteValueText): void;
|
|
252
|
+
type SqliteValueBlob = {
|
|
253
|
+
readonly value: ArrayBuffer;
|
|
254
|
+
};
|
|
255
|
+
declare function readSqliteValueBlob(bc: bare.ByteCursor): SqliteValueBlob;
|
|
256
|
+
declare function writeSqliteValueBlob(bc: bare.ByteCursor, x: SqliteValueBlob): void;
|
|
257
|
+
type SqliteBindParam = {
|
|
258
|
+
readonly tag: "SqliteValueNull";
|
|
259
|
+
readonly val: SqliteValueNull;
|
|
260
|
+
} | {
|
|
261
|
+
readonly tag: "SqliteValueInteger";
|
|
262
|
+
readonly val: SqliteValueInteger;
|
|
263
|
+
} | {
|
|
264
|
+
readonly tag: "SqliteValueFloat";
|
|
265
|
+
readonly val: SqliteValueFloat;
|
|
266
|
+
} | {
|
|
267
|
+
readonly tag: "SqliteValueText";
|
|
268
|
+
readonly val: SqliteValueText;
|
|
269
|
+
} | {
|
|
270
|
+
readonly tag: "SqliteValueBlob";
|
|
271
|
+
readonly val: SqliteValueBlob;
|
|
272
|
+
};
|
|
273
|
+
declare function readSqliteBindParam(bc: bare.ByteCursor): SqliteBindParam;
|
|
274
|
+
declare function writeSqliteBindParam(bc: bare.ByteCursor, x: SqliteBindParam): void;
|
|
275
|
+
type SqliteColumnValue = {
|
|
276
|
+
readonly tag: "SqliteValueNull";
|
|
277
|
+
readonly val: SqliteValueNull;
|
|
278
|
+
} | {
|
|
279
|
+
readonly tag: "SqliteValueInteger";
|
|
280
|
+
readonly val: SqliteValueInteger;
|
|
281
|
+
} | {
|
|
282
|
+
readonly tag: "SqliteValueFloat";
|
|
283
|
+
readonly val: SqliteValueFloat;
|
|
284
|
+
} | {
|
|
285
|
+
readonly tag: "SqliteValueText";
|
|
286
|
+
readonly val: SqliteValueText;
|
|
287
|
+
} | {
|
|
288
|
+
readonly tag: "SqliteValueBlob";
|
|
289
|
+
readonly val: SqliteValueBlob;
|
|
290
|
+
};
|
|
291
|
+
declare function readSqliteColumnValue(bc: bare.ByteCursor): SqliteColumnValue;
|
|
292
|
+
declare function writeSqliteColumnValue(bc: bare.ByteCursor, x: SqliteColumnValue): void;
|
|
293
|
+
type SqliteQueryResult = {
|
|
294
|
+
readonly columns: readonly string[];
|
|
295
|
+
readonly rows: readonly (readonly SqliteColumnValue[])[];
|
|
296
|
+
};
|
|
297
|
+
declare function readSqliteQueryResult(bc: bare.ByteCursor): SqliteQueryResult;
|
|
298
|
+
declare function writeSqliteQueryResult(bc: bare.ByteCursor, x: SqliteQueryResult): void;
|
|
299
|
+
type SqliteExecuteResult = {
|
|
300
|
+
readonly columns: readonly string[];
|
|
301
|
+
readonly rows: readonly (readonly SqliteColumnValue[])[];
|
|
302
|
+
readonly changes: i64;
|
|
303
|
+
readonly lastInsertRowId: i64 | null;
|
|
304
|
+
};
|
|
305
|
+
declare function readSqliteExecuteResult(bc: bare.ByteCursor): SqliteExecuteResult;
|
|
306
|
+
declare function writeSqliteExecuteResult(bc: bare.ByteCursor, x: SqliteExecuteResult): void;
|
|
307
|
+
type SqliteExecRequest = {
|
|
308
|
+
readonly namespaceId: Id;
|
|
309
|
+
readonly actorId: Id;
|
|
310
|
+
readonly generation: SqliteGeneration;
|
|
311
|
+
readonly sql: string;
|
|
312
|
+
};
|
|
313
|
+
declare function readSqliteExecRequest(bc: bare.ByteCursor): SqliteExecRequest;
|
|
314
|
+
declare function writeSqliteExecRequest(bc: bare.ByteCursor, x: SqliteExecRequest): void;
|
|
315
|
+
type SqliteExecuteRequest = {
|
|
316
|
+
readonly namespaceId: Id;
|
|
317
|
+
readonly actorId: Id;
|
|
318
|
+
readonly generation: SqliteGeneration;
|
|
319
|
+
readonly sql: string;
|
|
320
|
+
readonly params: readonly SqliteBindParam[] | null;
|
|
321
|
+
};
|
|
322
|
+
declare function readSqliteExecuteRequest(bc: bare.ByteCursor): SqliteExecuteRequest;
|
|
323
|
+
declare function writeSqliteExecuteRequest(bc: bare.ByteCursor, x: SqliteExecuteRequest): void;
|
|
324
|
+
type SqliteExecOk = {
|
|
325
|
+
readonly result: SqliteQueryResult;
|
|
326
|
+
};
|
|
327
|
+
declare function readSqliteExecOk(bc: bare.ByteCursor): SqliteExecOk;
|
|
328
|
+
declare function writeSqliteExecOk(bc: bare.ByteCursor, x: SqliteExecOk): void;
|
|
329
|
+
type SqliteExecuteOk = {
|
|
330
|
+
readonly result: SqliteExecuteResult;
|
|
331
|
+
};
|
|
332
|
+
declare function readSqliteExecuteOk(bc: bare.ByteCursor): SqliteExecuteOk;
|
|
333
|
+
declare function writeSqliteExecuteOk(bc: bare.ByteCursor, x: SqliteExecuteOk): void;
|
|
334
|
+
type SqliteExecResponse = {
|
|
335
|
+
readonly tag: "SqliteExecOk";
|
|
336
|
+
readonly val: SqliteExecOk;
|
|
337
|
+
} | {
|
|
338
|
+
readonly tag: "SqliteErrorResponse";
|
|
339
|
+
readonly val: SqliteErrorResponse;
|
|
340
|
+
};
|
|
341
|
+
declare function readSqliteExecResponse(bc: bare.ByteCursor): SqliteExecResponse;
|
|
342
|
+
declare function writeSqliteExecResponse(bc: bare.ByteCursor, x: SqliteExecResponse): void;
|
|
343
|
+
type SqliteExecuteResponse = {
|
|
344
|
+
readonly tag: "SqliteExecuteOk";
|
|
345
|
+
readonly val: SqliteExecuteOk;
|
|
346
|
+
} | {
|
|
347
|
+
readonly tag: "SqliteErrorResponse";
|
|
348
|
+
readonly val: SqliteErrorResponse;
|
|
349
|
+
};
|
|
350
|
+
declare function readSqliteExecuteResponse(bc: bare.ByteCursor): SqliteExecuteResponse;
|
|
351
|
+
declare function writeSqliteExecuteResponse(bc: bare.ByteCursor, x: SqliteExecuteResponse): void;
|
|
168
352
|
/**
|
|
169
353
|
* Core
|
|
170
354
|
*/
|
|
@@ -543,6 +727,30 @@ type ToRivetKvRequest = {
|
|
|
543
727
|
};
|
|
544
728
|
declare function readToRivetKvRequest(bc: bare.ByteCursor): ToRivetKvRequest;
|
|
545
729
|
declare function writeToRivetKvRequest(bc: bare.ByteCursor, x: ToRivetKvRequest): void;
|
|
730
|
+
type ToRivetSqliteGetPagesRequest = {
|
|
731
|
+
readonly requestId: u32;
|
|
732
|
+
readonly data: SqliteGetPagesRequest;
|
|
733
|
+
};
|
|
734
|
+
declare function readToRivetSqliteGetPagesRequest(bc: bare.ByteCursor): ToRivetSqliteGetPagesRequest;
|
|
735
|
+
declare function writeToRivetSqliteGetPagesRequest(bc: bare.ByteCursor, x: ToRivetSqliteGetPagesRequest): void;
|
|
736
|
+
type ToRivetSqliteCommitRequest = {
|
|
737
|
+
readonly requestId: u32;
|
|
738
|
+
readonly data: SqliteCommitRequest;
|
|
739
|
+
};
|
|
740
|
+
declare function readToRivetSqliteCommitRequest(bc: bare.ByteCursor): ToRivetSqliteCommitRequest;
|
|
741
|
+
declare function writeToRivetSqliteCommitRequest(bc: bare.ByteCursor, x: ToRivetSqliteCommitRequest): void;
|
|
742
|
+
type ToRivetSqliteExecRequest = {
|
|
743
|
+
readonly requestId: u32;
|
|
744
|
+
readonly data: SqliteExecRequest;
|
|
745
|
+
};
|
|
746
|
+
declare function readToRivetSqliteExecRequest(bc: bare.ByteCursor): ToRivetSqliteExecRequest;
|
|
747
|
+
declare function writeToRivetSqliteExecRequest(bc: bare.ByteCursor, x: ToRivetSqliteExecRequest): void;
|
|
748
|
+
type ToRivetSqliteExecuteRequest = {
|
|
749
|
+
readonly requestId: u32;
|
|
750
|
+
readonly data: SqliteExecuteRequest;
|
|
751
|
+
};
|
|
752
|
+
declare function readToRivetSqliteExecuteRequest(bc: bare.ByteCursor): ToRivetSqliteExecuteRequest;
|
|
753
|
+
declare function writeToRivetSqliteExecuteRequest(bc: bare.ByteCursor, x: ToRivetSqliteExecuteRequest): void;
|
|
546
754
|
type ToRivet = {
|
|
547
755
|
readonly tag: "ToRivetMetadata";
|
|
548
756
|
readonly val: ToRivetMetadata;
|
|
@@ -564,6 +772,18 @@ type ToRivet = {
|
|
|
564
772
|
} | {
|
|
565
773
|
readonly tag: "ToRivetTunnelMessage";
|
|
566
774
|
readonly val: ToRivetTunnelMessage;
|
|
775
|
+
} | {
|
|
776
|
+
readonly tag: "ToRivetSqliteGetPagesRequest";
|
|
777
|
+
readonly val: ToRivetSqliteGetPagesRequest;
|
|
778
|
+
} | {
|
|
779
|
+
readonly tag: "ToRivetSqliteCommitRequest";
|
|
780
|
+
readonly val: ToRivetSqliteCommitRequest;
|
|
781
|
+
} | {
|
|
782
|
+
readonly tag: "ToRivetSqliteExecRequest";
|
|
783
|
+
readonly val: ToRivetSqliteExecRequest;
|
|
784
|
+
} | {
|
|
785
|
+
readonly tag: "ToRivetSqliteExecuteRequest";
|
|
786
|
+
readonly val: ToRivetSqliteExecuteRequest;
|
|
567
787
|
};
|
|
568
788
|
declare function readToRivet(bc: bare.ByteCursor): ToRivet;
|
|
569
789
|
declare function writeToRivet(bc: bare.ByteCursor, x: ToRivet): void;
|
|
@@ -598,6 +818,30 @@ type ToEnvoyKvResponse = {
|
|
|
598
818
|
};
|
|
599
819
|
declare function readToEnvoyKvResponse(bc: bare.ByteCursor): ToEnvoyKvResponse;
|
|
600
820
|
declare function writeToEnvoyKvResponse(bc: bare.ByteCursor, x: ToEnvoyKvResponse): void;
|
|
821
|
+
type ToEnvoySqliteGetPagesResponse = {
|
|
822
|
+
readonly requestId: u32;
|
|
823
|
+
readonly data: SqliteGetPagesResponse;
|
|
824
|
+
};
|
|
825
|
+
declare function readToEnvoySqliteGetPagesResponse(bc: bare.ByteCursor): ToEnvoySqliteGetPagesResponse;
|
|
826
|
+
declare function writeToEnvoySqliteGetPagesResponse(bc: bare.ByteCursor, x: ToEnvoySqliteGetPagesResponse): void;
|
|
827
|
+
type ToEnvoySqliteCommitResponse = {
|
|
828
|
+
readonly requestId: u32;
|
|
829
|
+
readonly data: SqliteCommitResponse;
|
|
830
|
+
};
|
|
831
|
+
declare function readToEnvoySqliteCommitResponse(bc: bare.ByteCursor): ToEnvoySqliteCommitResponse;
|
|
832
|
+
declare function writeToEnvoySqliteCommitResponse(bc: bare.ByteCursor, x: ToEnvoySqliteCommitResponse): void;
|
|
833
|
+
type ToEnvoySqliteExecResponse = {
|
|
834
|
+
readonly requestId: u32;
|
|
835
|
+
readonly data: SqliteExecResponse;
|
|
836
|
+
};
|
|
837
|
+
declare function readToEnvoySqliteExecResponse(bc: bare.ByteCursor): ToEnvoySqliteExecResponse;
|
|
838
|
+
declare function writeToEnvoySqliteExecResponse(bc: bare.ByteCursor, x: ToEnvoySqliteExecResponse): void;
|
|
839
|
+
type ToEnvoySqliteExecuteResponse = {
|
|
840
|
+
readonly requestId: u32;
|
|
841
|
+
readonly data: SqliteExecuteResponse;
|
|
842
|
+
};
|
|
843
|
+
declare function readToEnvoySqliteExecuteResponse(bc: bare.ByteCursor): ToEnvoySqliteExecuteResponse;
|
|
844
|
+
declare function writeToEnvoySqliteExecuteResponse(bc: bare.ByteCursor, x: ToEnvoySqliteExecuteResponse): void;
|
|
601
845
|
type ToEnvoy = {
|
|
602
846
|
readonly tag: "ToEnvoyInit";
|
|
603
847
|
readonly val: ToEnvoyInit;
|
|
@@ -616,6 +860,18 @@ type ToEnvoy = {
|
|
|
616
860
|
} | {
|
|
617
861
|
readonly tag: "ToEnvoyPing";
|
|
618
862
|
readonly val: ToEnvoyPing;
|
|
863
|
+
} | {
|
|
864
|
+
readonly tag: "ToEnvoySqliteGetPagesResponse";
|
|
865
|
+
readonly val: ToEnvoySqliteGetPagesResponse;
|
|
866
|
+
} | {
|
|
867
|
+
readonly tag: "ToEnvoySqliteCommitResponse";
|
|
868
|
+
readonly val: ToEnvoySqliteCommitResponse;
|
|
869
|
+
} | {
|
|
870
|
+
readonly tag: "ToEnvoySqliteExecResponse";
|
|
871
|
+
readonly val: ToEnvoySqliteExecResponse;
|
|
872
|
+
} | {
|
|
873
|
+
readonly tag: "ToEnvoySqliteExecuteResponse";
|
|
874
|
+
readonly val: ToEnvoySqliteExecuteResponse;
|
|
619
875
|
};
|
|
620
876
|
declare function readToEnvoy(bc: bare.ByteCursor): ToEnvoy;
|
|
621
877
|
declare function writeToEnvoy(bc: bare.ByteCursor, x: ToEnvoy): void;
|
|
@@ -691,6 +947,6 @@ declare function readToOutbound(bc: bare.ByteCursor): ToOutbound;
|
|
|
691
947
|
declare function writeToOutbound(bc: bare.ByteCursor, x: ToOutbound): void;
|
|
692
948
|
declare function encodeToOutbound(x: ToOutbound, config?: Partial<bare.Config>): Uint8Array;
|
|
693
949
|
declare function decodeToOutbound(bytes: Uint8Array): ToOutbound;
|
|
694
|
-
declare const VERSION =
|
|
950
|
+
declare const VERSION = 4;
|
|
695
951
|
|
|
696
|
-
export { type ActorCheckpoint, type ActorCommandKeyData, type ActorConfig, type ActorIntent, type ActorIntentSleep, type ActorIntentStop, type ActorName, type ActorState, type ActorStateRunning, type ActorStateStopped, type Command, type CommandStartActor, type CommandStopActor, type CommandWrapper, type Event, type EventActorIntent, type EventActorSetAlarm, type EventActorStateUpdate, type EventWrapper, type GatewayId, type HibernatingRequest, type Id, type Json, type KvDeleteRangeRequest, type KvDeleteRequest, type KvDeleteResponse, type KvDropRequest, type KvDropResponse, type KvErrorResponse, type KvGetRequest, type KvGetResponse, type KvKey, type KvListAllQuery, type KvListPrefixQuery, type KvListQuery, type KvListRangeQuery, type KvListRequest, type KvListResponse, type KvMetadata, type KvPutRequest, type KvPutResponse, type KvRequestData, type KvResponseData, type KvValue, type MessageId, type MessageIndex, type PreloadedKv, type PreloadedKvEntry, type ProtocolMetadata, type RequestId, StopActorReason, StopCode, type ToEnvoy, type ToEnvoyAckEvents, type ToEnvoyCommands, type ToEnvoyConn, type ToEnvoyConnClose, type ToEnvoyConnPing, type ToEnvoyInit, type ToEnvoyKvResponse, type ToEnvoyPing, type ToEnvoyRequestAbort, type ToEnvoyRequestChunk, type ToEnvoyRequestStart, type ToEnvoyTunnelMessage, type ToEnvoyTunnelMessageKind, type ToEnvoyWebSocketClose, type ToEnvoyWebSocketMessage, type ToEnvoyWebSocketOpen, type ToGateway, type ToGatewayPong, type ToOutbound, type ToOutboundActorStart, type ToRivet, type ToRivetAckCommands, type ToRivetEvents, type ToRivetKvRequest, type ToRivetMetadata, type ToRivetPong, type ToRivetResponseAbort, type ToRivetResponseChunk, type ToRivetResponseStart, type ToRivetStopping, type ToRivetTunnelMessage, type ToRivetTunnelMessageKind, type ToRivetWebSocketClose, type ToRivetWebSocketMessage, type ToRivetWebSocketMessageAck, type ToRivetWebSocketOpen, VERSION, decodeActorCommandKeyData, decodeToEnvoy, decodeToEnvoyConn, decodeToGateway, decodeToOutbound, decodeToRivet, encodeActorCommandKeyData, encodeToEnvoy, encodeToEnvoyConn, encodeToGateway, encodeToOutbound, encodeToRivet, type i64, readActorCheckpoint, readActorCommandKeyData, readActorConfig, readActorIntent, readActorName, readActorState, readActorStateStopped, readCommand, readCommandStartActor, readCommandStopActor, readCommandWrapper, readEvent, readEventActorIntent, readEventActorSetAlarm, readEventActorStateUpdate, readEventWrapper, readGatewayId, readHibernatingRequest, readId, readJson, readKvDeleteRangeRequest, readKvDeleteRequest, readKvErrorResponse, readKvGetRequest, readKvGetResponse, readKvKey, readKvListPrefixQuery, readKvListQuery, readKvListRangeQuery, readKvListRequest, readKvListResponse, readKvMetadata, readKvPutRequest, readKvRequestData, readKvResponseData, readKvValue, readMessageId, readMessageIndex, readPreloadedKv, readPreloadedKvEntry, readProtocolMetadata, readRequestId, readStopActorReason, readStopCode, readToEnvoy, readToEnvoyAckEvents, readToEnvoyCommands, readToEnvoyConn, readToEnvoyConnPing, readToEnvoyInit, readToEnvoyKvResponse, readToEnvoyPing, readToEnvoyRequestChunk, readToEnvoyRequestStart, readToEnvoyTunnelMessage, readToEnvoyTunnelMessageKind, readToEnvoyWebSocketClose, readToEnvoyWebSocketMessage, readToEnvoyWebSocketOpen, readToGateway, readToGatewayPong, readToOutbound, readToOutboundActorStart, readToRivet, readToRivetAckCommands, readToRivetEvents, readToRivetKvRequest, readToRivetMetadata, readToRivetPong, readToRivetResponseChunk, readToRivetResponseStart, readToRivetTunnelMessage, readToRivetTunnelMessageKind, readToRivetWebSocketClose, readToRivetWebSocketMessage, readToRivetWebSocketMessageAck, readToRivetWebSocketOpen, type u16, type u32, type u64, writeActorCheckpoint, writeActorCommandKeyData, writeActorConfig, writeActorIntent, writeActorName, writeActorState, writeActorStateStopped, writeCommand, writeCommandStartActor, writeCommandStopActor, writeCommandWrapper, writeEvent, writeEventActorIntent, writeEventActorSetAlarm, writeEventActorStateUpdate, writeEventWrapper, writeGatewayId, writeHibernatingRequest, writeId, writeJson, writeKvDeleteRangeRequest, writeKvDeleteRequest, writeKvErrorResponse, writeKvGetRequest, writeKvGetResponse, writeKvKey, writeKvListPrefixQuery, writeKvListQuery, writeKvListRangeQuery, writeKvListRequest, writeKvListResponse, writeKvMetadata, writeKvPutRequest, writeKvRequestData, writeKvResponseData, writeKvValue, writeMessageId, writeMessageIndex, writePreloadedKv, writePreloadedKvEntry, writeProtocolMetadata, writeRequestId, writeStopActorReason, writeStopCode, writeToEnvoy, writeToEnvoyAckEvents, writeToEnvoyCommands, writeToEnvoyConn, writeToEnvoyConnPing, writeToEnvoyInit, writeToEnvoyKvResponse, writeToEnvoyPing, writeToEnvoyRequestChunk, writeToEnvoyRequestStart, writeToEnvoyTunnelMessage, writeToEnvoyTunnelMessageKind, writeToEnvoyWebSocketClose, writeToEnvoyWebSocketMessage, writeToEnvoyWebSocketOpen, writeToGateway, writeToGatewayPong, writeToOutbound, writeToOutboundActorStart, writeToRivet, writeToRivetAckCommands, writeToRivetEvents, writeToRivetKvRequest, writeToRivetMetadata, writeToRivetPong, writeToRivetResponseChunk, writeToRivetResponseStart, writeToRivetTunnelMessage, writeToRivetTunnelMessageKind, writeToRivetWebSocketClose, writeToRivetWebSocketMessage, writeToRivetWebSocketMessageAck, writeToRivetWebSocketOpen };
|
|
952
|
+
export { type ActorCheckpoint, type ActorCommandKeyData, type ActorConfig, type ActorIntent, type ActorIntentSleep, type ActorIntentStop, type ActorName, type ActorState, type ActorStateRunning, type ActorStateStopped, type Command, type CommandStartActor, type CommandStopActor, type CommandWrapper, type Event, type EventActorIntent, type EventActorSetAlarm, type EventActorStateUpdate, type EventWrapper, type GatewayId, type HibernatingRequest, type Id, type Json, type KvDeleteRangeRequest, type KvDeleteRequest, type KvDeleteResponse, type KvDropRequest, type KvDropResponse, type KvErrorResponse, type KvGetRequest, type KvGetResponse, type KvKey, type KvListAllQuery, type KvListPrefixQuery, type KvListQuery, type KvListRangeQuery, type KvListRequest, type KvListResponse, type KvMetadata, type KvPutRequest, type KvPutResponse, type KvRequestData, type KvResponseData, type KvValue, type MessageId, type MessageIndex, type PreloadedKv, type PreloadedKvEntry, type ProtocolMetadata, type RequestId, type SqliteBindParam, type SqliteColumnValue, type SqliteCommitOk, type SqliteCommitRequest, type SqliteCommitResponse, type SqliteDirtyPage, type SqliteErrorResponse, type SqliteExecOk, type SqliteExecRequest, type SqliteExecResponse, type SqliteExecuteOk, type SqliteExecuteRequest, type SqliteExecuteResponse, type SqliteExecuteResult, type SqliteFetchedPage, type SqliteGeneration, type SqliteGetPagesOk, type SqliteGetPagesRequest, type SqliteGetPagesResponse, type SqlitePageBytes, type SqlitePgno, type SqliteQueryResult, type SqliteValueBlob, type SqliteValueFloat, type SqliteValueInteger, type SqliteValueNull, type SqliteValueText, StopActorReason, StopCode, type ToEnvoy, type ToEnvoyAckEvents, type ToEnvoyCommands, type ToEnvoyConn, type ToEnvoyConnClose, type ToEnvoyConnPing, type ToEnvoyInit, type ToEnvoyKvResponse, type ToEnvoyPing, type ToEnvoyRequestAbort, type ToEnvoyRequestChunk, type ToEnvoyRequestStart, type ToEnvoySqliteCommitResponse, type ToEnvoySqliteExecResponse, type ToEnvoySqliteExecuteResponse, type ToEnvoySqliteGetPagesResponse, type ToEnvoyTunnelMessage, type ToEnvoyTunnelMessageKind, type ToEnvoyWebSocketClose, type ToEnvoyWebSocketMessage, type ToEnvoyWebSocketOpen, type ToGateway, type ToGatewayPong, type ToOutbound, type ToOutboundActorStart, type ToRivet, type ToRivetAckCommands, type ToRivetEvents, type ToRivetKvRequest, type ToRivetMetadata, type ToRivetPong, type ToRivetResponseAbort, type ToRivetResponseChunk, type ToRivetResponseStart, type ToRivetSqliteCommitRequest, type ToRivetSqliteExecRequest, type ToRivetSqliteExecuteRequest, type ToRivetSqliteGetPagesRequest, type ToRivetStopping, type ToRivetTunnelMessage, type ToRivetTunnelMessageKind, type ToRivetWebSocketClose, type ToRivetWebSocketMessage, type ToRivetWebSocketMessageAck, type ToRivetWebSocketOpen, VERSION, decodeActorCommandKeyData, decodeToEnvoy, decodeToEnvoyConn, decodeToGateway, decodeToOutbound, decodeToRivet, encodeActorCommandKeyData, encodeToEnvoy, encodeToEnvoyConn, encodeToGateway, encodeToOutbound, encodeToRivet, type i64, readActorCheckpoint, readActorCommandKeyData, readActorConfig, readActorIntent, readActorName, readActorState, readActorStateStopped, readCommand, readCommandStartActor, readCommandStopActor, readCommandWrapper, readEvent, readEventActorIntent, readEventActorSetAlarm, readEventActorStateUpdate, readEventWrapper, readGatewayId, readHibernatingRequest, readId, readJson, readKvDeleteRangeRequest, readKvDeleteRequest, readKvErrorResponse, readKvGetRequest, readKvGetResponse, readKvKey, readKvListPrefixQuery, readKvListQuery, readKvListRangeQuery, readKvListRequest, readKvListResponse, readKvMetadata, readKvPutRequest, readKvRequestData, readKvResponseData, readKvValue, readMessageId, readMessageIndex, readPreloadedKv, readPreloadedKvEntry, readProtocolMetadata, readRequestId, readSqliteBindParam, readSqliteColumnValue, readSqliteCommitRequest, readSqliteCommitResponse, readSqliteDirtyPage, readSqliteErrorResponse, readSqliteExecOk, readSqliteExecRequest, readSqliteExecResponse, readSqliteExecuteOk, readSqliteExecuteRequest, readSqliteExecuteResponse, readSqliteExecuteResult, readSqliteFetchedPage, readSqliteGeneration, readSqliteGetPagesOk, readSqliteGetPagesRequest, readSqliteGetPagesResponse, readSqlitePageBytes, readSqlitePgno, readSqliteQueryResult, readSqliteValueBlob, readSqliteValueFloat, readSqliteValueInteger, readSqliteValueText, readStopActorReason, readStopCode, readToEnvoy, readToEnvoyAckEvents, readToEnvoyCommands, readToEnvoyConn, readToEnvoyConnPing, readToEnvoyInit, readToEnvoyKvResponse, readToEnvoyPing, readToEnvoyRequestChunk, readToEnvoyRequestStart, readToEnvoySqliteCommitResponse, readToEnvoySqliteExecResponse, readToEnvoySqliteExecuteResponse, readToEnvoySqliteGetPagesResponse, readToEnvoyTunnelMessage, readToEnvoyTunnelMessageKind, readToEnvoyWebSocketClose, readToEnvoyWebSocketMessage, readToEnvoyWebSocketOpen, readToGateway, readToGatewayPong, readToOutbound, readToOutboundActorStart, readToRivet, readToRivetAckCommands, readToRivetEvents, readToRivetKvRequest, readToRivetMetadata, readToRivetPong, readToRivetResponseChunk, readToRivetResponseStart, readToRivetSqliteCommitRequest, readToRivetSqliteExecRequest, readToRivetSqliteExecuteRequest, readToRivetSqliteGetPagesRequest, readToRivetTunnelMessage, readToRivetTunnelMessageKind, readToRivetWebSocketClose, readToRivetWebSocketMessage, readToRivetWebSocketMessageAck, readToRivetWebSocketOpen, type u16, type u32, type u64, writeActorCheckpoint, writeActorCommandKeyData, writeActorConfig, writeActorIntent, writeActorName, writeActorState, writeActorStateStopped, writeCommand, writeCommandStartActor, writeCommandStopActor, writeCommandWrapper, writeEvent, writeEventActorIntent, writeEventActorSetAlarm, writeEventActorStateUpdate, writeEventWrapper, writeGatewayId, writeHibernatingRequest, writeId, writeJson, writeKvDeleteRangeRequest, writeKvDeleteRequest, writeKvErrorResponse, writeKvGetRequest, writeKvGetResponse, writeKvKey, writeKvListPrefixQuery, writeKvListQuery, writeKvListRangeQuery, writeKvListRequest, writeKvListResponse, writeKvMetadata, writeKvPutRequest, writeKvRequestData, writeKvResponseData, writeKvValue, writeMessageId, writeMessageIndex, writePreloadedKv, writePreloadedKvEntry, writeProtocolMetadata, writeRequestId, writeSqliteBindParam, writeSqliteColumnValue, writeSqliteCommitRequest, writeSqliteCommitResponse, writeSqliteDirtyPage, writeSqliteErrorResponse, writeSqliteExecOk, writeSqliteExecRequest, writeSqliteExecResponse, writeSqliteExecuteOk, writeSqliteExecuteRequest, writeSqliteExecuteResponse, writeSqliteExecuteResult, writeSqliteFetchedPage, writeSqliteGeneration, writeSqliteGetPagesOk, writeSqliteGetPagesRequest, writeSqliteGetPagesResponse, writeSqlitePageBytes, writeSqlitePgno, writeSqliteQueryResult, writeSqliteValueBlob, writeSqliteValueFloat, writeSqliteValueInteger, writeSqliteValueText, writeStopActorReason, writeStopCode, writeToEnvoy, writeToEnvoyAckEvents, writeToEnvoyCommands, writeToEnvoyConn, writeToEnvoyConnPing, writeToEnvoyInit, writeToEnvoyKvResponse, writeToEnvoyPing, writeToEnvoyRequestChunk, writeToEnvoyRequestStart, writeToEnvoySqliteCommitResponse, writeToEnvoySqliteExecResponse, writeToEnvoySqliteExecuteResponse, writeToEnvoySqliteGetPagesResponse, writeToEnvoyTunnelMessage, writeToEnvoyTunnelMessageKind, writeToEnvoyWebSocketClose, writeToEnvoyWebSocketMessage, writeToEnvoyWebSocketOpen, writeToGateway, writeToGatewayPong, writeToOutbound, writeToOutboundActorStart, writeToRivet, writeToRivetAckCommands, writeToRivetEvents, writeToRivetKvRequest, writeToRivetMetadata, writeToRivetPong, writeToRivetResponseChunk, writeToRivetResponseStart, writeToRivetSqliteCommitRequest, writeToRivetSqliteExecRequest, writeToRivetSqliteExecuteRequest, writeToRivetSqliteGetPagesRequest, writeToRivetTunnelMessage, writeToRivetTunnelMessageKind, writeToRivetWebSocketClose, writeToRivetWebSocketMessage, writeToRivetWebSocketMessageAck, writeToRivetWebSocketOpen };
|