@delta-base/core 1.0.0 → 1.1.0
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 +12 -0
- package/dist/index.js +5 -5
- package/package.json +1 -2
package/dist/index.d.ts
CHANGED
|
@@ -423,16 +423,19 @@ declare namespace EventStoreAPI {
|
|
|
423
423
|
streamPosition: z.ZodNumber;
|
|
424
424
|
streamName: z.ZodString;
|
|
425
425
|
globalPosition: z.ZodNumber;
|
|
426
|
+
schemaVersion: z.ZodString;
|
|
426
427
|
}, "strip", z.ZodTypeAny, {
|
|
427
428
|
eventId: string;
|
|
428
429
|
streamPosition: number;
|
|
429
430
|
streamName: string;
|
|
430
431
|
globalPosition: number;
|
|
432
|
+
schemaVersion: string;
|
|
431
433
|
}, {
|
|
432
434
|
eventId: string;
|
|
433
435
|
streamPosition: number;
|
|
434
436
|
streamName: string;
|
|
435
437
|
globalPosition: number;
|
|
438
|
+
schemaVersion: string;
|
|
436
439
|
}>>;
|
|
437
440
|
}>, "strip", z.ZodTypeAny, {
|
|
438
441
|
type: string;
|
|
@@ -442,6 +445,7 @@ declare namespace EventStoreAPI {
|
|
|
442
445
|
streamPosition: number;
|
|
443
446
|
streamName: string;
|
|
444
447
|
globalPosition: number;
|
|
448
|
+
schemaVersion: string;
|
|
445
449
|
} | undefined;
|
|
446
450
|
}, {
|
|
447
451
|
type: string;
|
|
@@ -451,6 +455,7 @@ declare namespace EventStoreAPI {
|
|
|
451
455
|
streamPosition: number;
|
|
452
456
|
streamName: string;
|
|
453
457
|
globalPosition: number;
|
|
458
|
+
schemaVersion: string;
|
|
454
459
|
} | undefined;
|
|
455
460
|
}>;
|
|
456
461
|
const ReadStreamResponseSchema: z.ZodObject<{
|
|
@@ -464,16 +469,19 @@ declare namespace EventStoreAPI {
|
|
|
464
469
|
streamPosition: z.ZodNumber;
|
|
465
470
|
streamName: z.ZodString;
|
|
466
471
|
globalPosition: z.ZodNumber;
|
|
472
|
+
schemaVersion: z.ZodString;
|
|
467
473
|
}, "strip", z.ZodTypeAny, {
|
|
468
474
|
eventId: string;
|
|
469
475
|
streamPosition: number;
|
|
470
476
|
streamName: string;
|
|
471
477
|
globalPosition: number;
|
|
478
|
+
schemaVersion: string;
|
|
472
479
|
}, {
|
|
473
480
|
eventId: string;
|
|
474
481
|
streamPosition: number;
|
|
475
482
|
streamName: string;
|
|
476
483
|
globalPosition: number;
|
|
484
|
+
schemaVersion: string;
|
|
477
485
|
}>>;
|
|
478
486
|
}>, "strip", z.ZodTypeAny, {
|
|
479
487
|
type: string;
|
|
@@ -483,6 +491,7 @@ declare namespace EventStoreAPI {
|
|
|
483
491
|
streamPosition: number;
|
|
484
492
|
streamName: string;
|
|
485
493
|
globalPosition: number;
|
|
494
|
+
schemaVersion: string;
|
|
486
495
|
} | undefined;
|
|
487
496
|
}, {
|
|
488
497
|
type: string;
|
|
@@ -492,6 +501,7 @@ declare namespace EventStoreAPI {
|
|
|
492
501
|
streamPosition: number;
|
|
493
502
|
streamName: string;
|
|
494
503
|
globalPosition: number;
|
|
504
|
+
schemaVersion: string;
|
|
495
505
|
} | undefined;
|
|
496
506
|
}>, "many">;
|
|
497
507
|
currentStreamVersion: z.ZodNumber;
|
|
@@ -504,6 +514,7 @@ declare namespace EventStoreAPI {
|
|
|
504
514
|
streamPosition: number;
|
|
505
515
|
streamName: string;
|
|
506
516
|
globalPosition: number;
|
|
517
|
+
schemaVersion: string;
|
|
507
518
|
} | undefined;
|
|
508
519
|
}[];
|
|
509
520
|
currentStreamVersion: number;
|
|
@@ -516,6 +527,7 @@ declare namespace EventStoreAPI {
|
|
|
516
527
|
streamPosition: number;
|
|
517
528
|
streamName: string;
|
|
518
529
|
globalPosition: number;
|
|
530
|
+
schemaVersion: string;
|
|
519
531
|
} | undefined;
|
|
520
532
|
}[];
|
|
521
533
|
currentStreamVersion: number;
|