@rivetkit/engine-envoy-protocol 0.0.0-pr.4879.d508104 → 0.0.0-pr.4880.c7bfbc5

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.
Files changed (3) hide show
  1. package/dist/index.d.ts +308 -2
  2. package/dist/index.js +1025 -191
  3. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -216,12 +216,28 @@ type SqliteGetPagesRequest = {
216
216
  };
217
217
  declare function readSqliteGetPagesRequest(bc: bare.ByteCursor): SqliteGetPagesRequest;
218
218
  declare function writeSqliteGetPagesRequest(bc: bare.ByteCursor, x: SqliteGetPagesRequest): void;
219
+ type SqliteGetPageRangeRequest = {
220
+ readonly actorId: Id;
221
+ readonly generation: SqliteGeneration;
222
+ readonly startPgno: SqlitePgno;
223
+ readonly maxPages: u32;
224
+ readonly maxBytes: u64;
225
+ };
226
+ declare function readSqliteGetPageRangeRequest(bc: bare.ByteCursor): SqliteGetPageRangeRequest;
227
+ declare function writeSqliteGetPageRangeRequest(bc: bare.ByteCursor, x: SqliteGetPageRangeRequest): void;
219
228
  type SqliteGetPagesOk = {
220
229
  readonly pages: readonly SqliteFetchedPage[];
221
230
  readonly meta: SqliteMeta;
222
231
  };
223
232
  declare function readSqliteGetPagesOk(bc: bare.ByteCursor): SqliteGetPagesOk;
224
233
  declare function writeSqliteGetPagesOk(bc: bare.ByteCursor, x: SqliteGetPagesOk): void;
234
+ type SqliteGetPageRangeOk = {
235
+ readonly startPgno: SqlitePgno;
236
+ readonly pages: readonly SqliteFetchedPage[];
237
+ readonly meta: SqliteMeta;
238
+ };
239
+ declare function readSqliteGetPageRangeOk(bc: bare.ByteCursor): SqliteGetPageRangeOk;
240
+ declare function writeSqliteGetPageRangeOk(bc: bare.ByteCursor, x: SqliteGetPageRangeOk): void;
225
241
  type SqliteErrorResponse = {
226
242
  readonly message: string;
227
243
  };
@@ -239,6 +255,18 @@ type SqliteGetPagesResponse = {
239
255
  };
240
256
  declare function readSqliteGetPagesResponse(bc: bare.ByteCursor): SqliteGetPagesResponse;
241
257
  declare function writeSqliteGetPagesResponse(bc: bare.ByteCursor, x: SqliteGetPagesResponse): void;
258
+ type SqliteGetPageRangeResponse = {
259
+ readonly tag: "SqliteGetPageRangeOk";
260
+ readonly val: SqliteGetPageRangeOk;
261
+ } | {
262
+ readonly tag: "SqliteFenceMismatch";
263
+ readonly val: SqliteFenceMismatch;
264
+ } | {
265
+ readonly tag: "SqliteErrorResponse";
266
+ readonly val: SqliteErrorResponse;
267
+ };
268
+ declare function readSqliteGetPageRangeResponse(bc: bare.ByteCursor): SqliteGetPageRangeResponse;
269
+ declare function writeSqliteGetPageRangeResponse(bc: bare.ByteCursor, x: SqliteGetPageRangeResponse): void;
242
270
  type SqliteCommitRequest = {
243
271
  readonly actorId: Id;
244
272
  readonly generation: SqliteGeneration;
@@ -360,6 +388,38 @@ type SqliteCommitFinalizeResponse = {
360
388
  };
361
389
  declare function readSqliteCommitFinalizeResponse(bc: bare.ByteCursor): SqliteCommitFinalizeResponse;
362
390
  declare function writeSqliteCommitFinalizeResponse(bc: bare.ByteCursor, x: SqliteCommitFinalizeResponse): void;
391
+ type SqlitePreloadHintRange = {
392
+ readonly startPgno: SqlitePgno;
393
+ readonly pageCount: u32;
394
+ };
395
+ declare function readSqlitePreloadHintRange(bc: bare.ByteCursor): SqlitePreloadHintRange;
396
+ declare function writeSqlitePreloadHintRange(bc: bare.ByteCursor, x: SqlitePreloadHintRange): void;
397
+ type SqlitePreloadHints = {
398
+ readonly pgnos: readonly SqlitePgno[];
399
+ readonly ranges: readonly SqlitePreloadHintRange[];
400
+ };
401
+ declare function readSqlitePreloadHints(bc: bare.ByteCursor): SqlitePreloadHints;
402
+ declare function writeSqlitePreloadHints(bc: bare.ByteCursor, x: SqlitePreloadHints): void;
403
+ type SqlitePersistPreloadHintsRequest = {
404
+ readonly actorId: Id;
405
+ readonly generation: SqliteGeneration;
406
+ readonly hints: SqlitePreloadHints;
407
+ };
408
+ declare function readSqlitePersistPreloadHintsRequest(bc: bare.ByteCursor): SqlitePersistPreloadHintsRequest;
409
+ declare function writeSqlitePersistPreloadHintsRequest(bc: bare.ByteCursor, x: SqlitePersistPreloadHintsRequest): void;
410
+ type SqlitePersistPreloadHintsOk = null;
411
+ type SqlitePersistPreloadHintsResponse = {
412
+ readonly tag: "SqlitePersistPreloadHintsOk";
413
+ readonly val: SqlitePersistPreloadHintsOk;
414
+ } | {
415
+ readonly tag: "SqliteFenceMismatch";
416
+ readonly val: SqliteFenceMismatch;
417
+ } | {
418
+ readonly tag: "SqliteErrorResponse";
419
+ readonly val: SqliteErrorResponse;
420
+ };
421
+ declare function readSqlitePersistPreloadHintsResponse(bc: bare.ByteCursor): SqlitePersistPreloadHintsResponse;
422
+ declare function writeSqlitePersistPreloadHintsResponse(bc: bare.ByteCursor, x: SqlitePersistPreloadHintsResponse): void;
363
423
  type SqliteStartupData = {
364
424
  readonly generation: SqliteGeneration;
365
425
  readonly meta: SqliteMeta;
@@ -367,6 +427,162 @@ type SqliteStartupData = {
367
427
  };
368
428
  declare function readSqliteStartupData(bc: bare.ByteCursor): SqliteStartupData;
369
429
  declare function writeSqliteStartupData(bc: bare.ByteCursor, x: SqliteStartupData): void;
430
+ type SqliteValueNull = null;
431
+ type SqliteValueInteger = {
432
+ readonly value: i64;
433
+ };
434
+ declare function readSqliteValueInteger(bc: bare.ByteCursor): SqliteValueInteger;
435
+ declare function writeSqliteValueInteger(bc: bare.ByteCursor, x: SqliteValueInteger): void;
436
+ type SqliteValueFloat = {
437
+ readonly value: ArrayBuffer;
438
+ };
439
+ declare function readSqliteValueFloat(bc: bare.ByteCursor): SqliteValueFloat;
440
+ declare function writeSqliteValueFloat(bc: bare.ByteCursor, x: SqliteValueFloat): void;
441
+ type SqliteValueText = {
442
+ readonly value: string;
443
+ };
444
+ declare function readSqliteValueText(bc: bare.ByteCursor): SqliteValueText;
445
+ declare function writeSqliteValueText(bc: bare.ByteCursor, x: SqliteValueText): void;
446
+ type SqliteValueBlob = {
447
+ readonly value: ArrayBuffer;
448
+ };
449
+ declare function readSqliteValueBlob(bc: bare.ByteCursor): SqliteValueBlob;
450
+ declare function writeSqliteValueBlob(bc: bare.ByteCursor, x: SqliteValueBlob): void;
451
+ type SqliteBindParam = {
452
+ readonly tag: "SqliteValueNull";
453
+ readonly val: SqliteValueNull;
454
+ } | {
455
+ readonly tag: "SqliteValueInteger";
456
+ readonly val: SqliteValueInteger;
457
+ } | {
458
+ readonly tag: "SqliteValueFloat";
459
+ readonly val: SqliteValueFloat;
460
+ } | {
461
+ readonly tag: "SqliteValueText";
462
+ readonly val: SqliteValueText;
463
+ } | {
464
+ readonly tag: "SqliteValueBlob";
465
+ readonly val: SqliteValueBlob;
466
+ };
467
+ declare function readSqliteBindParam(bc: bare.ByteCursor): SqliteBindParam;
468
+ declare function writeSqliteBindParam(bc: bare.ByteCursor, x: SqliteBindParam): void;
469
+ type SqliteColumnValue = {
470
+ readonly tag: "SqliteValueNull";
471
+ readonly val: SqliteValueNull;
472
+ } | {
473
+ readonly tag: "SqliteValueInteger";
474
+ readonly val: SqliteValueInteger;
475
+ } | {
476
+ readonly tag: "SqliteValueFloat";
477
+ readonly val: SqliteValueFloat;
478
+ } | {
479
+ readonly tag: "SqliteValueText";
480
+ readonly val: SqliteValueText;
481
+ } | {
482
+ readonly tag: "SqliteValueBlob";
483
+ readonly val: SqliteValueBlob;
484
+ };
485
+ declare function readSqliteColumnValue(bc: bare.ByteCursor): SqliteColumnValue;
486
+ declare function writeSqliteColumnValue(bc: bare.ByteCursor, x: SqliteColumnValue): void;
487
+ type SqliteQueryResult = {
488
+ readonly columns: readonly string[];
489
+ readonly rows: readonly (readonly SqliteColumnValue[])[];
490
+ };
491
+ declare function readSqliteQueryResult(bc: bare.ByteCursor): SqliteQueryResult;
492
+ declare function writeSqliteQueryResult(bc: bare.ByteCursor, x: SqliteQueryResult): void;
493
+ declare enum SqliteExecuteRoute {
494
+ Read = "Read",
495
+ Write = "Write",
496
+ WriteFallback = "WriteFallback"
497
+ }
498
+ declare function readSqliteExecuteRoute(bc: bare.ByteCursor): SqliteExecuteRoute;
499
+ declare function writeSqliteExecuteRoute(bc: bare.ByteCursor, x: SqliteExecuteRoute): void;
500
+ type SqliteExecuteResult = {
501
+ readonly columns: readonly string[];
502
+ readonly rows: readonly (readonly SqliteColumnValue[])[];
503
+ readonly changes: i64;
504
+ readonly lastInsertRowId: i64 | null;
505
+ readonly route: SqliteExecuteRoute;
506
+ };
507
+ declare function readSqliteExecuteResult(bc: bare.ByteCursor): SqliteExecuteResult;
508
+ declare function writeSqliteExecuteResult(bc: bare.ByteCursor, x: SqliteExecuteResult): void;
509
+ type SqliteExecRequest = {
510
+ readonly namespaceId: Id;
511
+ readonly actorId: Id;
512
+ readonly generation: SqliteGeneration;
513
+ readonly sql: string;
514
+ };
515
+ declare function readSqliteExecRequest(bc: bare.ByteCursor): SqliteExecRequest;
516
+ declare function writeSqliteExecRequest(bc: bare.ByteCursor, x: SqliteExecRequest): void;
517
+ type SqliteExecuteRequest = {
518
+ readonly namespaceId: Id;
519
+ readonly actorId: Id;
520
+ readonly generation: SqliteGeneration;
521
+ readonly sql: string;
522
+ readonly params: readonly SqliteBindParam[] | null;
523
+ };
524
+ declare function readSqliteExecuteRequest(bc: bare.ByteCursor): SqliteExecuteRequest;
525
+ declare function writeSqliteExecuteRequest(bc: bare.ByteCursor, x: SqliteExecuteRequest): void;
526
+ type SqliteExecuteWriteRequest = {
527
+ readonly namespaceId: Id;
528
+ readonly actorId: Id;
529
+ readonly generation: SqliteGeneration;
530
+ readonly sql: string;
531
+ readonly params: readonly SqliteBindParam[] | null;
532
+ };
533
+ declare function readSqliteExecuteWriteRequest(bc: bare.ByteCursor): SqliteExecuteWriteRequest;
534
+ declare function writeSqliteExecuteWriteRequest(bc: bare.ByteCursor, x: SqliteExecuteWriteRequest): void;
535
+ type SqliteExecOk = {
536
+ readonly result: SqliteQueryResult;
537
+ };
538
+ declare function readSqliteExecOk(bc: bare.ByteCursor): SqliteExecOk;
539
+ declare function writeSqliteExecOk(bc: bare.ByteCursor, x: SqliteExecOk): void;
540
+ type SqliteExecuteOk = {
541
+ readonly result: SqliteExecuteResult;
542
+ };
543
+ declare function readSqliteExecuteOk(bc: bare.ByteCursor): SqliteExecuteOk;
544
+ declare function writeSqliteExecuteOk(bc: bare.ByteCursor, x: SqliteExecuteOk): void;
545
+ type SqliteExecuteWriteOk = {
546
+ readonly result: SqliteExecuteResult;
547
+ };
548
+ declare function readSqliteExecuteWriteOk(bc: bare.ByteCursor): SqliteExecuteWriteOk;
549
+ declare function writeSqliteExecuteWriteOk(bc: bare.ByteCursor, x: SqliteExecuteWriteOk): void;
550
+ type SqliteExecResponse = {
551
+ readonly tag: "SqliteExecOk";
552
+ readonly val: SqliteExecOk;
553
+ } | {
554
+ readonly tag: "SqliteFenceMismatch";
555
+ readonly val: SqliteFenceMismatch;
556
+ } | {
557
+ readonly tag: "SqliteErrorResponse";
558
+ readonly val: SqliteErrorResponse;
559
+ };
560
+ declare function readSqliteExecResponse(bc: bare.ByteCursor): SqliteExecResponse;
561
+ declare function writeSqliteExecResponse(bc: bare.ByteCursor, x: SqliteExecResponse): void;
562
+ type SqliteExecuteResponse = {
563
+ readonly tag: "SqliteExecuteOk";
564
+ readonly val: SqliteExecuteOk;
565
+ } | {
566
+ readonly tag: "SqliteFenceMismatch";
567
+ readonly val: SqliteFenceMismatch;
568
+ } | {
569
+ readonly tag: "SqliteErrorResponse";
570
+ readonly val: SqliteErrorResponse;
571
+ };
572
+ declare function readSqliteExecuteResponse(bc: bare.ByteCursor): SqliteExecuteResponse;
573
+ declare function writeSqliteExecuteResponse(bc: bare.ByteCursor, x: SqliteExecuteResponse): void;
574
+ type SqliteExecuteWriteResponse = {
575
+ readonly tag: "SqliteExecuteWriteOk";
576
+ readonly val: SqliteExecuteWriteOk;
577
+ } | {
578
+ readonly tag: "SqliteFenceMismatch";
579
+ readonly val: SqliteFenceMismatch;
580
+ } | {
581
+ readonly tag: "SqliteErrorResponse";
582
+ readonly val: SqliteErrorResponse;
583
+ };
584
+ declare function readSqliteExecuteWriteResponse(bc: bare.ByteCursor): SqliteExecuteWriteResponse;
585
+ declare function writeSqliteExecuteWriteResponse(bc: bare.ByteCursor, x: SqliteExecuteWriteResponse): void;
370
586
  /**
371
587
  * Core
372
588
  */
@@ -752,6 +968,12 @@ type ToRivetSqliteGetPagesRequest = {
752
968
  };
753
969
  declare function readToRivetSqliteGetPagesRequest(bc: bare.ByteCursor): ToRivetSqliteGetPagesRequest;
754
970
  declare function writeToRivetSqliteGetPagesRequest(bc: bare.ByteCursor, x: ToRivetSqliteGetPagesRequest): void;
971
+ type ToRivetSqliteGetPageRangeRequest = {
972
+ readonly requestId: u32;
973
+ readonly data: SqliteGetPageRangeRequest;
974
+ };
975
+ declare function readToRivetSqliteGetPageRangeRequest(bc: bare.ByteCursor): ToRivetSqliteGetPageRangeRequest;
976
+ declare function writeToRivetSqliteGetPageRangeRequest(bc: bare.ByteCursor, x: ToRivetSqliteGetPageRangeRequest): void;
755
977
  type ToRivetSqliteCommitRequest = {
756
978
  readonly requestId: u32;
757
979
  readonly data: SqliteCommitRequest;
@@ -776,6 +998,30 @@ type ToRivetSqliteCommitFinalizeRequest = {
776
998
  };
777
999
  declare function readToRivetSqliteCommitFinalizeRequest(bc: bare.ByteCursor): ToRivetSqliteCommitFinalizeRequest;
778
1000
  declare function writeToRivetSqliteCommitFinalizeRequest(bc: bare.ByteCursor, x: ToRivetSqliteCommitFinalizeRequest): void;
1001
+ type ToRivetSqlitePersistPreloadHintsRequest = {
1002
+ readonly requestId: u32;
1003
+ readonly data: SqlitePersistPreloadHintsRequest;
1004
+ };
1005
+ declare function readToRivetSqlitePersistPreloadHintsRequest(bc: bare.ByteCursor): ToRivetSqlitePersistPreloadHintsRequest;
1006
+ declare function writeToRivetSqlitePersistPreloadHintsRequest(bc: bare.ByteCursor, x: ToRivetSqlitePersistPreloadHintsRequest): void;
1007
+ type ToRivetSqliteExecRequest = {
1008
+ readonly requestId: u32;
1009
+ readonly data: SqliteExecRequest;
1010
+ };
1011
+ declare function readToRivetSqliteExecRequest(bc: bare.ByteCursor): ToRivetSqliteExecRequest;
1012
+ declare function writeToRivetSqliteExecRequest(bc: bare.ByteCursor, x: ToRivetSqliteExecRequest): void;
1013
+ type ToRivetSqliteExecuteRequest = {
1014
+ readonly requestId: u32;
1015
+ readonly data: SqliteExecuteRequest;
1016
+ };
1017
+ declare function readToRivetSqliteExecuteRequest(bc: bare.ByteCursor): ToRivetSqliteExecuteRequest;
1018
+ declare function writeToRivetSqliteExecuteRequest(bc: bare.ByteCursor, x: ToRivetSqliteExecuteRequest): void;
1019
+ type ToRivetSqliteExecuteWriteRequest = {
1020
+ readonly requestId: u32;
1021
+ readonly data: SqliteExecuteWriteRequest;
1022
+ };
1023
+ declare function readToRivetSqliteExecuteWriteRequest(bc: bare.ByteCursor): ToRivetSqliteExecuteWriteRequest;
1024
+ declare function writeToRivetSqliteExecuteWriteRequest(bc: bare.ByteCursor, x: ToRivetSqliteExecuteWriteRequest): void;
779
1025
  type ToRivet = {
780
1026
  readonly tag: "ToRivetMetadata";
781
1027
  readonly val: ToRivetMetadata;
@@ -800,6 +1046,9 @@ type ToRivet = {
800
1046
  } | {
801
1047
  readonly tag: "ToRivetSqliteGetPagesRequest";
802
1048
  readonly val: ToRivetSqliteGetPagesRequest;
1049
+ } | {
1050
+ readonly tag: "ToRivetSqliteGetPageRangeRequest";
1051
+ readonly val: ToRivetSqliteGetPageRangeRequest;
803
1052
  } | {
804
1053
  readonly tag: "ToRivetSqliteCommitRequest";
805
1054
  readonly val: ToRivetSqliteCommitRequest;
@@ -812,6 +1061,18 @@ type ToRivet = {
812
1061
  } | {
813
1062
  readonly tag: "ToRivetSqliteCommitFinalizeRequest";
814
1063
  readonly val: ToRivetSqliteCommitFinalizeRequest;
1064
+ } | {
1065
+ readonly tag: "ToRivetSqlitePersistPreloadHintsRequest";
1066
+ readonly val: ToRivetSqlitePersistPreloadHintsRequest;
1067
+ } | {
1068
+ readonly tag: "ToRivetSqliteExecRequest";
1069
+ readonly val: ToRivetSqliteExecRequest;
1070
+ } | {
1071
+ readonly tag: "ToRivetSqliteExecuteRequest";
1072
+ readonly val: ToRivetSqliteExecuteRequest;
1073
+ } | {
1074
+ readonly tag: "ToRivetSqliteExecuteWriteRequest";
1075
+ readonly val: ToRivetSqliteExecuteWriteRequest;
815
1076
  };
816
1077
  declare function readToRivet(bc: bare.ByteCursor): ToRivet;
817
1078
  declare function writeToRivet(bc: bare.ByteCursor, x: ToRivet): void;
@@ -852,6 +1113,12 @@ type ToEnvoySqliteGetPagesResponse = {
852
1113
  };
853
1114
  declare function readToEnvoySqliteGetPagesResponse(bc: bare.ByteCursor): ToEnvoySqliteGetPagesResponse;
854
1115
  declare function writeToEnvoySqliteGetPagesResponse(bc: bare.ByteCursor, x: ToEnvoySqliteGetPagesResponse): void;
1116
+ type ToEnvoySqliteGetPageRangeResponse = {
1117
+ readonly requestId: u32;
1118
+ readonly data: SqliteGetPageRangeResponse;
1119
+ };
1120
+ declare function readToEnvoySqliteGetPageRangeResponse(bc: bare.ByteCursor): ToEnvoySqliteGetPageRangeResponse;
1121
+ declare function writeToEnvoySqliteGetPageRangeResponse(bc: bare.ByteCursor, x: ToEnvoySqliteGetPageRangeResponse): void;
855
1122
  type ToEnvoySqliteCommitResponse = {
856
1123
  readonly requestId: u32;
857
1124
  readonly data: SqliteCommitResponse;
@@ -876,6 +1143,30 @@ type ToEnvoySqliteCommitFinalizeResponse = {
876
1143
  };
877
1144
  declare function readToEnvoySqliteCommitFinalizeResponse(bc: bare.ByteCursor): ToEnvoySqliteCommitFinalizeResponse;
878
1145
  declare function writeToEnvoySqliteCommitFinalizeResponse(bc: bare.ByteCursor, x: ToEnvoySqliteCommitFinalizeResponse): void;
1146
+ type ToEnvoySqlitePersistPreloadHintsResponse = {
1147
+ readonly requestId: u32;
1148
+ readonly data: SqlitePersistPreloadHintsResponse;
1149
+ };
1150
+ declare function readToEnvoySqlitePersistPreloadHintsResponse(bc: bare.ByteCursor): ToEnvoySqlitePersistPreloadHintsResponse;
1151
+ declare function writeToEnvoySqlitePersistPreloadHintsResponse(bc: bare.ByteCursor, x: ToEnvoySqlitePersistPreloadHintsResponse): void;
1152
+ type ToEnvoySqliteExecResponse = {
1153
+ readonly requestId: u32;
1154
+ readonly data: SqliteExecResponse;
1155
+ };
1156
+ declare function readToEnvoySqliteExecResponse(bc: bare.ByteCursor): ToEnvoySqliteExecResponse;
1157
+ declare function writeToEnvoySqliteExecResponse(bc: bare.ByteCursor, x: ToEnvoySqliteExecResponse): void;
1158
+ type ToEnvoySqliteExecuteResponse = {
1159
+ readonly requestId: u32;
1160
+ readonly data: SqliteExecuteResponse;
1161
+ };
1162
+ declare function readToEnvoySqliteExecuteResponse(bc: bare.ByteCursor): ToEnvoySqliteExecuteResponse;
1163
+ declare function writeToEnvoySqliteExecuteResponse(bc: bare.ByteCursor, x: ToEnvoySqliteExecuteResponse): void;
1164
+ type ToEnvoySqliteExecuteWriteResponse = {
1165
+ readonly requestId: u32;
1166
+ readonly data: SqliteExecuteWriteResponse;
1167
+ };
1168
+ declare function readToEnvoySqliteExecuteWriteResponse(bc: bare.ByteCursor): ToEnvoySqliteExecuteWriteResponse;
1169
+ declare function writeToEnvoySqliteExecuteWriteResponse(bc: bare.ByteCursor, x: ToEnvoySqliteExecuteWriteResponse): void;
879
1170
  type ToEnvoy = {
880
1171
  readonly tag: "ToEnvoyInit";
881
1172
  readonly val: ToEnvoyInit;
@@ -897,6 +1188,9 @@ type ToEnvoy = {
897
1188
  } | {
898
1189
  readonly tag: "ToEnvoySqliteGetPagesResponse";
899
1190
  readonly val: ToEnvoySqliteGetPagesResponse;
1191
+ } | {
1192
+ readonly tag: "ToEnvoySqliteGetPageRangeResponse";
1193
+ readonly val: ToEnvoySqliteGetPageRangeResponse;
900
1194
  } | {
901
1195
  readonly tag: "ToEnvoySqliteCommitResponse";
902
1196
  readonly val: ToEnvoySqliteCommitResponse;
@@ -909,6 +1203,18 @@ type ToEnvoy = {
909
1203
  } | {
910
1204
  readonly tag: "ToEnvoySqliteCommitFinalizeResponse";
911
1205
  readonly val: ToEnvoySqliteCommitFinalizeResponse;
1206
+ } | {
1207
+ readonly tag: "ToEnvoySqlitePersistPreloadHintsResponse";
1208
+ readonly val: ToEnvoySqlitePersistPreloadHintsResponse;
1209
+ } | {
1210
+ readonly tag: "ToEnvoySqliteExecResponse";
1211
+ readonly val: ToEnvoySqliteExecResponse;
1212
+ } | {
1213
+ readonly tag: "ToEnvoySqliteExecuteResponse";
1214
+ readonly val: ToEnvoySqliteExecuteResponse;
1215
+ } | {
1216
+ readonly tag: "ToEnvoySqliteExecuteWriteResponse";
1217
+ readonly val: ToEnvoySqliteExecuteWriteResponse;
912
1218
  };
913
1219
  declare function readToEnvoy(bc: bare.ByteCursor): ToEnvoy;
914
1220
  declare function writeToEnvoy(bc: bare.ByteCursor, x: ToEnvoy): void;
@@ -984,6 +1290,6 @@ declare function readToOutbound(bc: bare.ByteCursor): ToOutbound;
984
1290
  declare function writeToOutbound(bc: bare.ByteCursor, x: ToOutbound): void;
985
1291
  declare function encodeToOutbound(x: ToOutbound, config?: Partial<bare.Config>): Uint8Array;
986
1292
  declare function decodeToOutbound(bytes: Uint8Array): ToOutbound;
987
- declare const VERSION = 2;
1293
+ declare const VERSION = 4;
988
1294
 
989
- 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 SqliteCommitFinalizeOk, type SqliteCommitFinalizeRequest, type SqliteCommitFinalizeResponse, type SqliteCommitOk, type SqliteCommitRequest, type SqliteCommitResponse, type SqliteCommitStageBeginOk, type SqliteCommitStageBeginRequest, type SqliteCommitStageBeginResponse, type SqliteCommitStageOk, type SqliteCommitStageRequest, type SqliteCommitStageResponse, type SqliteCommitTooLarge, type SqliteDirtyPage, type SqliteErrorResponse, type SqliteFenceMismatch, type SqliteFetchedPage, type SqliteGeneration, type SqliteGetPagesOk, type SqliteGetPagesRequest, type SqliteGetPagesResponse, type SqliteMeta, type SqlitePageBytes, type SqlitePgno, type SqliteStageId, type SqliteStageNotFound, type SqliteStartupData, type SqliteTxid, 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 ToEnvoySqliteCommitFinalizeResponse, type ToEnvoySqliteCommitResponse, type ToEnvoySqliteCommitStageBeginResponse, type ToEnvoySqliteCommitStageResponse, 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 ToRivetSqliteCommitFinalizeRequest, type ToRivetSqliteCommitRequest, type ToRivetSqliteCommitStageBeginRequest, type ToRivetSqliteCommitStageRequest, 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, readSqliteCommitFinalizeOk, readSqliteCommitFinalizeRequest, readSqliteCommitFinalizeResponse, readSqliteCommitOk, readSqliteCommitRequest, readSqliteCommitResponse, readSqliteCommitStageBeginOk, readSqliteCommitStageBeginRequest, readSqliteCommitStageBeginResponse, readSqliteCommitStageOk, readSqliteCommitStageRequest, readSqliteCommitStageResponse, readSqliteCommitTooLarge, readSqliteDirtyPage, readSqliteErrorResponse, readSqliteFenceMismatch, readSqliteFetchedPage, readSqliteGeneration, readSqliteGetPagesOk, readSqliteGetPagesRequest, readSqliteGetPagesResponse, readSqliteMeta, readSqlitePageBytes, readSqlitePgno, readSqliteStageId, readSqliteStageNotFound, readSqliteStartupData, readSqliteTxid, readStopActorReason, readStopCode, readToEnvoy, readToEnvoyAckEvents, readToEnvoyCommands, readToEnvoyConn, readToEnvoyConnPing, readToEnvoyInit, readToEnvoyKvResponse, readToEnvoyPing, readToEnvoyRequestChunk, readToEnvoyRequestStart, readToEnvoySqliteCommitFinalizeResponse, readToEnvoySqliteCommitResponse, readToEnvoySqliteCommitStageBeginResponse, readToEnvoySqliteCommitStageResponse, readToEnvoySqliteGetPagesResponse, readToEnvoyTunnelMessage, readToEnvoyTunnelMessageKind, readToEnvoyWebSocketClose, readToEnvoyWebSocketMessage, readToEnvoyWebSocketOpen, readToGateway, readToGatewayPong, readToOutbound, readToOutboundActorStart, readToRivet, readToRivetAckCommands, readToRivetEvents, readToRivetKvRequest, readToRivetMetadata, readToRivetPong, readToRivetResponseChunk, readToRivetResponseStart, readToRivetSqliteCommitFinalizeRequest, readToRivetSqliteCommitRequest, readToRivetSqliteCommitStageBeginRequest, readToRivetSqliteCommitStageRequest, 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, writeSqliteCommitFinalizeOk, writeSqliteCommitFinalizeRequest, writeSqliteCommitFinalizeResponse, writeSqliteCommitOk, writeSqliteCommitRequest, writeSqliteCommitResponse, writeSqliteCommitStageBeginOk, writeSqliteCommitStageBeginRequest, writeSqliteCommitStageBeginResponse, writeSqliteCommitStageOk, writeSqliteCommitStageRequest, writeSqliteCommitStageResponse, writeSqliteCommitTooLarge, writeSqliteDirtyPage, writeSqliteErrorResponse, writeSqliteFenceMismatch, writeSqliteFetchedPage, writeSqliteGeneration, writeSqliteGetPagesOk, writeSqliteGetPagesRequest, writeSqliteGetPagesResponse, writeSqliteMeta, writeSqlitePageBytes, writeSqlitePgno, writeSqliteStageId, writeSqliteStageNotFound, writeSqliteStartupData, writeSqliteTxid, writeStopActorReason, writeStopCode, writeToEnvoy, writeToEnvoyAckEvents, writeToEnvoyCommands, writeToEnvoyConn, writeToEnvoyConnPing, writeToEnvoyInit, writeToEnvoyKvResponse, writeToEnvoyPing, writeToEnvoyRequestChunk, writeToEnvoyRequestStart, writeToEnvoySqliteCommitFinalizeResponse, writeToEnvoySqliteCommitResponse, writeToEnvoySqliteCommitStageBeginResponse, writeToEnvoySqliteCommitStageResponse, writeToEnvoySqliteGetPagesResponse, writeToEnvoyTunnelMessage, writeToEnvoyTunnelMessageKind, writeToEnvoyWebSocketClose, writeToEnvoyWebSocketMessage, writeToEnvoyWebSocketOpen, writeToGateway, writeToGatewayPong, writeToOutbound, writeToOutboundActorStart, writeToRivet, writeToRivetAckCommands, writeToRivetEvents, writeToRivetKvRequest, writeToRivetMetadata, writeToRivetPong, writeToRivetResponseChunk, writeToRivetResponseStart, writeToRivetSqliteCommitFinalizeRequest, writeToRivetSqliteCommitRequest, writeToRivetSqliteCommitStageBeginRequest, writeToRivetSqliteCommitStageRequest, writeToRivetSqliteGetPagesRequest, writeToRivetTunnelMessage, writeToRivetTunnelMessageKind, writeToRivetWebSocketClose, writeToRivetWebSocketMessage, writeToRivetWebSocketMessageAck, writeToRivetWebSocketOpen };
1295
+ 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 SqliteCommitFinalizeOk, type SqliteCommitFinalizeRequest, type SqliteCommitFinalizeResponse, type SqliteCommitOk, type SqliteCommitRequest, type SqliteCommitResponse, type SqliteCommitStageBeginOk, type SqliteCommitStageBeginRequest, type SqliteCommitStageBeginResponse, type SqliteCommitStageOk, type SqliteCommitStageRequest, type SqliteCommitStageResponse, type SqliteCommitTooLarge, type SqliteDirtyPage, type SqliteErrorResponse, type SqliteExecOk, type SqliteExecRequest, type SqliteExecResponse, type SqliteExecuteOk, type SqliteExecuteRequest, type SqliteExecuteResponse, type SqliteExecuteResult, SqliteExecuteRoute, type SqliteExecuteWriteOk, type SqliteExecuteWriteRequest, type SqliteExecuteWriteResponse, type SqliteFenceMismatch, type SqliteFetchedPage, type SqliteGeneration, type SqliteGetPageRangeOk, type SqliteGetPageRangeRequest, type SqliteGetPageRangeResponse, type SqliteGetPagesOk, type SqliteGetPagesRequest, type SqliteGetPagesResponse, type SqliteMeta, type SqlitePageBytes, type SqlitePersistPreloadHintsOk, type SqlitePersistPreloadHintsRequest, type SqlitePersistPreloadHintsResponse, type SqlitePgno, type SqlitePreloadHintRange, type SqlitePreloadHints, type SqliteQueryResult, type SqliteStageId, type SqliteStageNotFound, type SqliteStartupData, type SqliteTxid, 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 ToEnvoySqliteCommitFinalizeResponse, type ToEnvoySqliteCommitResponse, type ToEnvoySqliteCommitStageBeginResponse, type ToEnvoySqliteCommitStageResponse, type ToEnvoySqliteExecResponse, type ToEnvoySqliteExecuteResponse, type ToEnvoySqliteExecuteWriteResponse, type ToEnvoySqliteGetPageRangeResponse, type ToEnvoySqliteGetPagesResponse, type ToEnvoySqlitePersistPreloadHintsResponse, 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 ToRivetSqliteCommitFinalizeRequest, type ToRivetSqliteCommitRequest, type ToRivetSqliteCommitStageBeginRequest, type ToRivetSqliteCommitStageRequest, type ToRivetSqliteExecRequest, type ToRivetSqliteExecuteRequest, type ToRivetSqliteExecuteWriteRequest, type ToRivetSqliteGetPageRangeRequest, type ToRivetSqliteGetPagesRequest, type ToRivetSqlitePersistPreloadHintsRequest, 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, readSqliteCommitFinalizeOk, readSqliteCommitFinalizeRequest, readSqliteCommitFinalizeResponse, readSqliteCommitOk, readSqliteCommitRequest, readSqliteCommitResponse, readSqliteCommitStageBeginOk, readSqliteCommitStageBeginRequest, readSqliteCommitStageBeginResponse, readSqliteCommitStageOk, readSqliteCommitStageRequest, readSqliteCommitStageResponse, readSqliteCommitTooLarge, readSqliteDirtyPage, readSqliteErrorResponse, readSqliteExecOk, readSqliteExecRequest, readSqliteExecResponse, readSqliteExecuteOk, readSqliteExecuteRequest, readSqliteExecuteResponse, readSqliteExecuteResult, readSqliteExecuteRoute, readSqliteExecuteWriteOk, readSqliteExecuteWriteRequest, readSqliteExecuteWriteResponse, readSqliteFenceMismatch, readSqliteFetchedPage, readSqliteGeneration, readSqliteGetPageRangeOk, readSqliteGetPageRangeRequest, readSqliteGetPageRangeResponse, readSqliteGetPagesOk, readSqliteGetPagesRequest, readSqliteGetPagesResponse, readSqliteMeta, readSqlitePageBytes, readSqlitePersistPreloadHintsRequest, readSqlitePersistPreloadHintsResponse, readSqlitePgno, readSqlitePreloadHintRange, readSqlitePreloadHints, readSqliteQueryResult, readSqliteStageId, readSqliteStageNotFound, readSqliteStartupData, readSqliteTxid, readSqliteValueBlob, readSqliteValueFloat, readSqliteValueInteger, readSqliteValueText, readStopActorReason, readStopCode, readToEnvoy, readToEnvoyAckEvents, readToEnvoyCommands, readToEnvoyConn, readToEnvoyConnPing, readToEnvoyInit, readToEnvoyKvResponse, readToEnvoyPing, readToEnvoyRequestChunk, readToEnvoyRequestStart, readToEnvoySqliteCommitFinalizeResponse, readToEnvoySqliteCommitResponse, readToEnvoySqliteCommitStageBeginResponse, readToEnvoySqliteCommitStageResponse, readToEnvoySqliteExecResponse, readToEnvoySqliteExecuteResponse, readToEnvoySqliteExecuteWriteResponse, readToEnvoySqliteGetPageRangeResponse, readToEnvoySqliteGetPagesResponse, readToEnvoySqlitePersistPreloadHintsResponse, readToEnvoyTunnelMessage, readToEnvoyTunnelMessageKind, readToEnvoyWebSocketClose, readToEnvoyWebSocketMessage, readToEnvoyWebSocketOpen, readToGateway, readToGatewayPong, readToOutbound, readToOutboundActorStart, readToRivet, readToRivetAckCommands, readToRivetEvents, readToRivetKvRequest, readToRivetMetadata, readToRivetPong, readToRivetResponseChunk, readToRivetResponseStart, readToRivetSqliteCommitFinalizeRequest, readToRivetSqliteCommitRequest, readToRivetSqliteCommitStageBeginRequest, readToRivetSqliteCommitStageRequest, readToRivetSqliteExecRequest, readToRivetSqliteExecuteRequest, readToRivetSqliteExecuteWriteRequest, readToRivetSqliteGetPageRangeRequest, readToRivetSqliteGetPagesRequest, readToRivetSqlitePersistPreloadHintsRequest, 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, writeSqliteCommitFinalizeOk, writeSqliteCommitFinalizeRequest, writeSqliteCommitFinalizeResponse, writeSqliteCommitOk, writeSqliteCommitRequest, writeSqliteCommitResponse, writeSqliteCommitStageBeginOk, writeSqliteCommitStageBeginRequest, writeSqliteCommitStageBeginResponse, writeSqliteCommitStageOk, writeSqliteCommitStageRequest, writeSqliteCommitStageResponse, writeSqliteCommitTooLarge, writeSqliteDirtyPage, writeSqliteErrorResponse, writeSqliteExecOk, writeSqliteExecRequest, writeSqliteExecResponse, writeSqliteExecuteOk, writeSqliteExecuteRequest, writeSqliteExecuteResponse, writeSqliteExecuteResult, writeSqliteExecuteRoute, writeSqliteExecuteWriteOk, writeSqliteExecuteWriteRequest, writeSqliteExecuteWriteResponse, writeSqliteFenceMismatch, writeSqliteFetchedPage, writeSqliteGeneration, writeSqliteGetPageRangeOk, writeSqliteGetPageRangeRequest, writeSqliteGetPageRangeResponse, writeSqliteGetPagesOk, writeSqliteGetPagesRequest, writeSqliteGetPagesResponse, writeSqliteMeta, writeSqlitePageBytes, writeSqlitePersistPreloadHintsRequest, writeSqlitePersistPreloadHintsResponse, writeSqlitePgno, writeSqlitePreloadHintRange, writeSqlitePreloadHints, writeSqliteQueryResult, writeSqliteStageId, writeSqliteStageNotFound, writeSqliteStartupData, writeSqliteTxid, writeSqliteValueBlob, writeSqliteValueFloat, writeSqliteValueInteger, writeSqliteValueText, writeStopActorReason, writeStopCode, writeToEnvoy, writeToEnvoyAckEvents, writeToEnvoyCommands, writeToEnvoyConn, writeToEnvoyConnPing, writeToEnvoyInit, writeToEnvoyKvResponse, writeToEnvoyPing, writeToEnvoyRequestChunk, writeToEnvoyRequestStart, writeToEnvoySqliteCommitFinalizeResponse, writeToEnvoySqliteCommitResponse, writeToEnvoySqliteCommitStageBeginResponse, writeToEnvoySqliteCommitStageResponse, writeToEnvoySqliteExecResponse, writeToEnvoySqliteExecuteResponse, writeToEnvoySqliteExecuteWriteResponse, writeToEnvoySqliteGetPageRangeResponse, writeToEnvoySqliteGetPagesResponse, writeToEnvoySqlitePersistPreloadHintsResponse, writeToEnvoyTunnelMessage, writeToEnvoyTunnelMessageKind, writeToEnvoyWebSocketClose, writeToEnvoyWebSocketMessage, writeToEnvoyWebSocketOpen, writeToGateway, writeToGatewayPong, writeToOutbound, writeToOutboundActorStart, writeToRivet, writeToRivetAckCommands, writeToRivetEvents, writeToRivetKvRequest, writeToRivetMetadata, writeToRivetPong, writeToRivetResponseChunk, writeToRivetResponseStart, writeToRivetSqliteCommitFinalizeRequest, writeToRivetSqliteCommitRequest, writeToRivetSqliteCommitStageBeginRequest, writeToRivetSqliteCommitStageRequest, writeToRivetSqliteExecRequest, writeToRivetSqliteExecuteRequest, writeToRivetSqliteExecuteWriteRequest, writeToRivetSqliteGetPageRangeRequest, writeToRivetSqliteGetPagesRequest, writeToRivetSqlitePersistPreloadHintsRequest, writeToRivetTunnelMessage, writeToRivetTunnelMessageKind, writeToRivetWebSocketClose, writeToRivetWebSocketMessage, writeToRivetWebSocketMessageAck, writeToRivetWebSocketOpen };