@rivetkit/engine-envoy-protocol 0.0.0-pr.4880.b43a278 → 0.0.0-pr.4881.f7f7908
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 +2 -308
- package/dist/index.js +192 -1026
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -216,28 +216,12 @@ 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;
|
|
228
219
|
type SqliteGetPagesOk = {
|
|
229
220
|
readonly pages: readonly SqliteFetchedPage[];
|
|
230
221
|
readonly meta: SqliteMeta;
|
|
231
222
|
};
|
|
232
223
|
declare function readSqliteGetPagesOk(bc: bare.ByteCursor): SqliteGetPagesOk;
|
|
233
224
|
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;
|
|
241
225
|
type SqliteErrorResponse = {
|
|
242
226
|
readonly message: string;
|
|
243
227
|
};
|
|
@@ -255,18 +239,6 @@ type SqliteGetPagesResponse = {
|
|
|
255
239
|
};
|
|
256
240
|
declare function readSqliteGetPagesResponse(bc: bare.ByteCursor): SqliteGetPagesResponse;
|
|
257
241
|
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;
|
|
270
242
|
type SqliteCommitRequest = {
|
|
271
243
|
readonly actorId: Id;
|
|
272
244
|
readonly generation: SqliteGeneration;
|
|
@@ -388,38 +360,6 @@ type SqliteCommitFinalizeResponse = {
|
|
|
388
360
|
};
|
|
389
361
|
declare function readSqliteCommitFinalizeResponse(bc: bare.ByteCursor): SqliteCommitFinalizeResponse;
|
|
390
362
|
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;
|
|
423
363
|
type SqliteStartupData = {
|
|
424
364
|
readonly generation: SqliteGeneration;
|
|
425
365
|
readonly meta: SqliteMeta;
|
|
@@ -427,162 +367,6 @@ type SqliteStartupData = {
|
|
|
427
367
|
};
|
|
428
368
|
declare function readSqliteStartupData(bc: bare.ByteCursor): SqliteStartupData;
|
|
429
369
|
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;
|
|
586
370
|
/**
|
|
587
371
|
* Core
|
|
588
372
|
*/
|
|
@@ -968,12 +752,6 @@ type ToRivetSqliteGetPagesRequest = {
|
|
|
968
752
|
};
|
|
969
753
|
declare function readToRivetSqliteGetPagesRequest(bc: bare.ByteCursor): ToRivetSqliteGetPagesRequest;
|
|
970
754
|
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;
|
|
977
755
|
type ToRivetSqliteCommitRequest = {
|
|
978
756
|
readonly requestId: u32;
|
|
979
757
|
readonly data: SqliteCommitRequest;
|
|
@@ -998,30 +776,6 @@ type ToRivetSqliteCommitFinalizeRequest = {
|
|
|
998
776
|
};
|
|
999
777
|
declare function readToRivetSqliteCommitFinalizeRequest(bc: bare.ByteCursor): ToRivetSqliteCommitFinalizeRequest;
|
|
1000
778
|
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;
|
|
1025
779
|
type ToRivet = {
|
|
1026
780
|
readonly tag: "ToRivetMetadata";
|
|
1027
781
|
readonly val: ToRivetMetadata;
|
|
@@ -1046,9 +800,6 @@ type ToRivet = {
|
|
|
1046
800
|
} | {
|
|
1047
801
|
readonly tag: "ToRivetSqliteGetPagesRequest";
|
|
1048
802
|
readonly val: ToRivetSqliteGetPagesRequest;
|
|
1049
|
-
} | {
|
|
1050
|
-
readonly tag: "ToRivetSqliteGetPageRangeRequest";
|
|
1051
|
-
readonly val: ToRivetSqliteGetPageRangeRequest;
|
|
1052
803
|
} | {
|
|
1053
804
|
readonly tag: "ToRivetSqliteCommitRequest";
|
|
1054
805
|
readonly val: ToRivetSqliteCommitRequest;
|
|
@@ -1061,18 +812,6 @@ type ToRivet = {
|
|
|
1061
812
|
} | {
|
|
1062
813
|
readonly tag: "ToRivetSqliteCommitFinalizeRequest";
|
|
1063
814
|
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;
|
|
1076
815
|
};
|
|
1077
816
|
declare function readToRivet(bc: bare.ByteCursor): ToRivet;
|
|
1078
817
|
declare function writeToRivet(bc: bare.ByteCursor, x: ToRivet): void;
|
|
@@ -1113,12 +852,6 @@ type ToEnvoySqliteGetPagesResponse = {
|
|
|
1113
852
|
};
|
|
1114
853
|
declare function readToEnvoySqliteGetPagesResponse(bc: bare.ByteCursor): ToEnvoySqliteGetPagesResponse;
|
|
1115
854
|
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;
|
|
1122
855
|
type ToEnvoySqliteCommitResponse = {
|
|
1123
856
|
readonly requestId: u32;
|
|
1124
857
|
readonly data: SqliteCommitResponse;
|
|
@@ -1143,30 +876,6 @@ type ToEnvoySqliteCommitFinalizeResponse = {
|
|
|
1143
876
|
};
|
|
1144
877
|
declare function readToEnvoySqliteCommitFinalizeResponse(bc: bare.ByteCursor): ToEnvoySqliteCommitFinalizeResponse;
|
|
1145
878
|
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;
|
|
1170
879
|
type ToEnvoy = {
|
|
1171
880
|
readonly tag: "ToEnvoyInit";
|
|
1172
881
|
readonly val: ToEnvoyInit;
|
|
@@ -1188,9 +897,6 @@ type ToEnvoy = {
|
|
|
1188
897
|
} | {
|
|
1189
898
|
readonly tag: "ToEnvoySqliteGetPagesResponse";
|
|
1190
899
|
readonly val: ToEnvoySqliteGetPagesResponse;
|
|
1191
|
-
} | {
|
|
1192
|
-
readonly tag: "ToEnvoySqliteGetPageRangeResponse";
|
|
1193
|
-
readonly val: ToEnvoySqliteGetPageRangeResponse;
|
|
1194
900
|
} | {
|
|
1195
901
|
readonly tag: "ToEnvoySqliteCommitResponse";
|
|
1196
902
|
readonly val: ToEnvoySqliteCommitResponse;
|
|
@@ -1203,18 +909,6 @@ type ToEnvoy = {
|
|
|
1203
909
|
} | {
|
|
1204
910
|
readonly tag: "ToEnvoySqliteCommitFinalizeResponse";
|
|
1205
911
|
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;
|
|
1218
912
|
};
|
|
1219
913
|
declare function readToEnvoy(bc: bare.ByteCursor): ToEnvoy;
|
|
1220
914
|
declare function writeToEnvoy(bc: bare.ByteCursor, x: ToEnvoy): void;
|
|
@@ -1290,6 +984,6 @@ declare function readToOutbound(bc: bare.ByteCursor): ToOutbound;
|
|
|
1290
984
|
declare function writeToOutbound(bc: bare.ByteCursor, x: ToOutbound): void;
|
|
1291
985
|
declare function encodeToOutbound(x: ToOutbound, config?: Partial<bare.Config>): Uint8Array;
|
|
1292
986
|
declare function decodeToOutbound(bytes: Uint8Array): ToOutbound;
|
|
1293
|
-
declare const VERSION =
|
|
987
|
+
declare const VERSION = 2;
|
|
1294
988
|
|
|
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 };
|
|
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 };
|