@delta-base/core 1.7.0 → 1.7.2

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/openapi.json CHANGED
@@ -1441,6 +1441,68 @@
1441
1441
  },
1442
1442
  "eventsWritten": {
1443
1443
  "type": "number"
1444
+ },
1445
+ "events": {
1446
+ "type": "array",
1447
+ "items": {
1448
+ "type": "object",
1449
+ "properties": {
1450
+ "streamId": {
1451
+ "type": "string"
1452
+ },
1453
+ "streamPosition": {
1454
+ "type": "number"
1455
+ },
1456
+ "globalPosition": {
1457
+ "type": "number"
1458
+ },
1459
+ "eventId": {
1460
+ "type": "string"
1461
+ },
1462
+ "type": {
1463
+ "type": "string"
1464
+ },
1465
+ "data": {
1466
+ "type": "object",
1467
+ "additionalProperties": {
1468
+ "nullable": true
1469
+ }
1470
+ },
1471
+ "metadata": {
1472
+ "type": "object",
1473
+ "additionalProperties": {
1474
+ "nullable": true
1475
+ }
1476
+ },
1477
+ "tags": {
1478
+ "type": "array",
1479
+ "items": {
1480
+ "type": "string"
1481
+ }
1482
+ },
1483
+ "schemaVersion": {
1484
+ "type": "string"
1485
+ },
1486
+ "transactionId": {
1487
+ "type": "string"
1488
+ },
1489
+ "createdAt": {
1490
+ "type": "string",
1491
+ "description": "ISO 8601 formatted timestamp in UTC"
1492
+ }
1493
+ },
1494
+ "required": [
1495
+ "streamId",
1496
+ "streamPosition",
1497
+ "globalPosition",
1498
+ "eventId",
1499
+ "type",
1500
+ "data",
1501
+ "schemaVersion",
1502
+ "transactionId",
1503
+ "createdAt"
1504
+ ]
1505
+ }
1444
1506
  }
1445
1507
  },
1446
1508
  "required": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@delta-base/core",
3
- "version": "1.7.0",
3
+ "version": "1.7.2",
4
4
  "description": "Deltabase Core",
5
5
  "type": "module",
6
6
  "private": false,
@@ -27,9 +27,9 @@
27
27
  "hono": "^4.10.6",
28
28
  "nanoid": "^5.0.9",
29
29
  "zod": "^4.1.13",
30
- "@delta-base/api-keys": "0.1.8",
31
- "@delta-base/auth": "0.2.2",
32
- "@delta-base/toolkit": "0.2.0"
30
+ "@delta-base/api-keys": "0.1.10",
31
+ "@delta-base/auth": "0.2.4",
32
+ "@delta-base/toolkit": "0.4.0"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@cloudflare/vitest-pool-workers": "^0.8.37",