@runlot/api 0.1.0-rc.48 → 0.1.0-rc.50
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/schema.d.ts +3 -3
- package/package.json +2 -2
package/dist/schema.d.ts
CHANGED
|
@@ -3398,12 +3398,12 @@ export interface components {
|
|
|
3398
3398
|
* Format: int64
|
|
3399
3399
|
* @description The first commit this backup carries. A backup is an ordered log of the commits since
|
|
3400
3400
|
* the previous one, so every commit in `[firstTxnId, txnId]` is a restore point
|
|
3401
|
-
* (`RestoreRequest.txnId`). Equal to `txnId` for a full
|
|
3401
|
+
* (`RestoreRequest.txnId`). A historical full may carry a range. Equal to `txnId` for a single-commit full or a backup with no commits.
|
|
3402
3402
|
*/
|
|
3403
3403
|
firstTxnId: number;
|
|
3404
3404
|
/**
|
|
3405
3405
|
* Format: int64
|
|
3406
|
-
* @description How many commits this backup carries.
|
|
3406
|
+
* @description How many commits this backup carries. A full backup may preserve multiple pending commits. Zero means no writes since the previous backup.
|
|
3407
3407
|
*/
|
|
3408
3408
|
commitCount: number;
|
|
3409
3409
|
/**
|
|
@@ -3454,7 +3454,7 @@ export interface components {
|
|
|
3454
3454
|
* @description A restore point, given in **exactly one** of three ways. `(epoch, seq)` restores to the
|
|
3455
3455
|
* end of that backup. `txnId` restores to that commit, which may be inside a backup — every
|
|
3456
3456
|
* backup carries the commits between it and the previous one in order, so any of them is a
|
|
3457
|
-
* restore point (`GenerationRow.firstTxnId` … `txnId`). `at` restores to the last commit at
|
|
3457
|
+
* restore point (`GenerationRow.firstTxnId` … `txnId`). `at` uses stored millisecond timestamps and restores to the last commit at
|
|
3458
3458
|
* or before that time (RFC 3339); the resolution is one backup interval.
|
|
3459
3459
|
*/
|
|
3460
3460
|
RestoreRequest: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@runlot/api",
|
|
3
|
-
"version": "0.1.0-rc.
|
|
3
|
+
"version": "0.1.0-rc.50",
|
|
4
4
|
"description": "Client for the Runlot control-plane API, with types generated from its OpenAPI spec",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"typescript": "^5.7.2",
|
|
27
27
|
"@types/node": "^22.10.2",
|
|
28
28
|
"openapi-typescript": "^7.13.0",
|
|
29
|
-
"@runlot/config": "0.1.0-rc.
|
|
29
|
+
"@runlot/config": "0.1.0-rc.50"
|
|
30
30
|
},
|
|
31
31
|
"scripts": {
|
|
32
32
|
"build": "tsc -p tsconfig.build.json",
|