@camstack/addon-decoder-nodeav 1.2.45 → 1.2.46
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.js +54 -7
- package/dist/index.mjs +54 -7
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8003,6 +8003,21 @@ var RelocateJobSchema = object({
|
|
|
8003
8003
|
bytesMoved: number().int(),
|
|
8004
8004
|
/** Total files discovered up front; null while (or when) unknown. */
|
|
8005
8005
|
filesTotal: number().int().nullable(),
|
|
8006
|
+
/**
|
|
8007
|
+
* Rows this run CORRECTED while moving them — a durable mutation the move
|
|
8008
|
+
* made that nobody asked for, so it is reported where the operator reads the
|
|
8009
|
+
* job rather than only in a log line.
|
|
8010
|
+
*
|
|
8011
|
+
* A footage segment records its byte count in its own NAME, and the durable
|
|
8012
|
+
* hour row derives its aggregates from those names. A file that does not
|
|
8013
|
+
* match its name therefore makes the ledger's sums — and with them quota and
|
|
8014
|
+
* pressure eviction — wrong by the difference, and only a rename can fix it.
|
|
8015
|
+
* On 2026-08-30 one such row also stalled a 110 749-file drain permanently.
|
|
8016
|
+
*
|
|
8017
|
+
* Absent on lanes where the question has no meaning: a media blob's size is
|
|
8018
|
+
* in its row, not in its name, so `MediaRelocateEngine` never reconciles one.
|
|
8019
|
+
*/
|
|
8020
|
+
rowsReconciled: number().int().nonnegative().optional(),
|
|
8006
8021
|
startedAt: number(),
|
|
8007
8022
|
finishedAt: number().nullable(),
|
|
8008
8023
|
error: string().nullable()
|
|
@@ -8071,14 +8086,42 @@ var RelocateMediaInputSchema = object({
|
|
|
8071
8086
|
/** Omitted = `move`, the pre-existing behaviour. */
|
|
8072
8087
|
mode: MediaRelocateModeSchema.optional()
|
|
8073
8088
|
});
|
|
8074
|
-
/**
|
|
8075
|
-
*
|
|
8076
|
-
*
|
|
8077
|
-
|
|
8078
|
-
|
|
8079
|
-
|
|
8080
|
-
|
|
8089
|
+
/**
|
|
8090
|
+
* The unstamped population of ONE collection — split, because the gate and the
|
|
8091
|
+
* operator ask two different questions and only one of them has to be cheap.
|
|
8092
|
+
*
|
|
8093
|
+
* `present` is the GATE: "is there at least one row that would be orphaned by a
|
|
8094
|
+
* repoint". It is a single indexed seek to the first matching row, so it stays
|
|
8095
|
+
* answerable on a saturated disk and answers in O(log n) precisely in the state
|
|
8096
|
+
* that matters — after a seal, when the population is empty.
|
|
8097
|
+
*
|
|
8098
|
+
* `rows` is the NUMBER, for the refusal message and the operator's sense of
|
|
8099
|
+
* scale. It is a second, indexed `COUNT(*)`, and `null` means **not
|
|
8100
|
+
* measurable** — never zero. `{ present: true, rows: null }` is a legitimate
|
|
8101
|
+
* and useful answer: "there are some, and this read could not say how many"
|
|
8102
|
+
* still refuses the cutover, which is the whole job.
|
|
8103
|
+
*/
|
|
8104
|
+
var UnstampedRowsSchema = object({
|
|
8105
|
+
present: boolean(),
|
|
8106
|
+
rows: number().int().nonnegative().nullable()
|
|
8081
8107
|
});
|
|
8108
|
+
/**
|
|
8109
|
+
* How many rows still carry NO `locationId` — the population a repoint would
|
|
8110
|
+
* silently re-aim at a disk that does not hold their bytes.
|
|
8111
|
+
*
|
|
8112
|
+
* **`null` = the count could not be taken**, and it is NOT permission to cut
|
|
8113
|
+
* over. The gate opens on a measured absence and on nothing else; an unread
|
|
8114
|
+
* collection and an empty one are different facts, and this repo has already
|
|
8115
|
+
* paid for conflating them (`RelocateResidueSchema`, D295).
|
|
8116
|
+
*/
|
|
8117
|
+
var UnstampedEventMediaCountSchema = object({
|
|
8118
|
+
media: UnstampedRowsSchema,
|
|
8119
|
+
retrainFrames: UnstampedRowsSchema,
|
|
8120
|
+
/** True when EITHER collection holds one. The refusal reads this. */
|
|
8121
|
+
anyPresent: boolean(),
|
|
8122
|
+
/** Sum across both, or `null` when either lane could not be counted. */
|
|
8123
|
+
total: number().int().nonnegative().nullable()
|
|
8124
|
+
}).nullable();
|
|
8082
8125
|
var StorageMigrationMediaMoveInputSchema = RelocateMediaInputSchema.extend({ leaseId: string().min(1) });
|
|
8083
8126
|
/** The independently selectable logical storage classes — every class
|
|
8084
8127
|
* `storage.listLocationDeclarations` reports, so an operator never meets a
|
|
@@ -8189,6 +8232,10 @@ var StorageMigrationMoveProgressSchema = object({
|
|
|
8189
8232
|
/** The archive census — the **M** of "N of M" (D295). `null` = unknowable. */
|
|
8190
8233
|
filesTotal: number().int().nonnegative().nullable(),
|
|
8191
8234
|
bytesMoved: number().int().nonnegative(),
|
|
8235
|
+
/** Rows the mover corrected while moving them — see `RelocateJob`. Absent on
|
|
8236
|
+
* a lane that cannot reconcile. A migration that silently rewrote durable
|
|
8237
|
+
* rows would be the same failure as one that silently skipped them. */
|
|
8238
|
+
rowsReconciled: number().int().nonnegative().optional(),
|
|
8192
8239
|
/** The MOVER's start, not the migration's: a drain restarted after an addon
|
|
8193
8240
|
* crash gets a new mover, and a rate computed from the migration's start
|
|
8194
8241
|
* would silently average in the time nothing was running. */
|
package/dist/index.mjs
CHANGED
|
@@ -7999,6 +7999,21 @@ var RelocateJobSchema = object({
|
|
|
7999
7999
|
bytesMoved: number().int(),
|
|
8000
8000
|
/** Total files discovered up front; null while (or when) unknown. */
|
|
8001
8001
|
filesTotal: number().int().nullable(),
|
|
8002
|
+
/**
|
|
8003
|
+
* Rows this run CORRECTED while moving them — a durable mutation the move
|
|
8004
|
+
* made that nobody asked for, so it is reported where the operator reads the
|
|
8005
|
+
* job rather than only in a log line.
|
|
8006
|
+
*
|
|
8007
|
+
* A footage segment records its byte count in its own NAME, and the durable
|
|
8008
|
+
* hour row derives its aggregates from those names. A file that does not
|
|
8009
|
+
* match its name therefore makes the ledger's sums — and with them quota and
|
|
8010
|
+
* pressure eviction — wrong by the difference, and only a rename can fix it.
|
|
8011
|
+
* On 2026-08-30 one such row also stalled a 110 749-file drain permanently.
|
|
8012
|
+
*
|
|
8013
|
+
* Absent on lanes where the question has no meaning: a media blob's size is
|
|
8014
|
+
* in its row, not in its name, so `MediaRelocateEngine` never reconciles one.
|
|
8015
|
+
*/
|
|
8016
|
+
rowsReconciled: number().int().nonnegative().optional(),
|
|
8002
8017
|
startedAt: number(),
|
|
8003
8018
|
finishedAt: number().nullable(),
|
|
8004
8019
|
error: string().nullable()
|
|
@@ -8067,14 +8082,42 @@ var RelocateMediaInputSchema = object({
|
|
|
8067
8082
|
/** Omitted = `move`, the pre-existing behaviour. */
|
|
8068
8083
|
mode: MediaRelocateModeSchema.optional()
|
|
8069
8084
|
});
|
|
8070
|
-
/**
|
|
8071
|
-
*
|
|
8072
|
-
*
|
|
8073
|
-
|
|
8074
|
-
|
|
8075
|
-
|
|
8076
|
-
|
|
8085
|
+
/**
|
|
8086
|
+
* The unstamped population of ONE collection — split, because the gate and the
|
|
8087
|
+
* operator ask two different questions and only one of them has to be cheap.
|
|
8088
|
+
*
|
|
8089
|
+
* `present` is the GATE: "is there at least one row that would be orphaned by a
|
|
8090
|
+
* repoint". It is a single indexed seek to the first matching row, so it stays
|
|
8091
|
+
* answerable on a saturated disk and answers in O(log n) precisely in the state
|
|
8092
|
+
* that matters — after a seal, when the population is empty.
|
|
8093
|
+
*
|
|
8094
|
+
* `rows` is the NUMBER, for the refusal message and the operator's sense of
|
|
8095
|
+
* scale. It is a second, indexed `COUNT(*)`, and `null` means **not
|
|
8096
|
+
* measurable** — never zero. `{ present: true, rows: null }` is a legitimate
|
|
8097
|
+
* and useful answer: "there are some, and this read could not say how many"
|
|
8098
|
+
* still refuses the cutover, which is the whole job.
|
|
8099
|
+
*/
|
|
8100
|
+
var UnstampedRowsSchema = object({
|
|
8101
|
+
present: boolean(),
|
|
8102
|
+
rows: number().int().nonnegative().nullable()
|
|
8077
8103
|
});
|
|
8104
|
+
/**
|
|
8105
|
+
* How many rows still carry NO `locationId` — the population a repoint would
|
|
8106
|
+
* silently re-aim at a disk that does not hold their bytes.
|
|
8107
|
+
*
|
|
8108
|
+
* **`null` = the count could not be taken**, and it is NOT permission to cut
|
|
8109
|
+
* over. The gate opens on a measured absence and on nothing else; an unread
|
|
8110
|
+
* collection and an empty one are different facts, and this repo has already
|
|
8111
|
+
* paid for conflating them (`RelocateResidueSchema`, D295).
|
|
8112
|
+
*/
|
|
8113
|
+
var UnstampedEventMediaCountSchema = object({
|
|
8114
|
+
media: UnstampedRowsSchema,
|
|
8115
|
+
retrainFrames: UnstampedRowsSchema,
|
|
8116
|
+
/** True when EITHER collection holds one. The refusal reads this. */
|
|
8117
|
+
anyPresent: boolean(),
|
|
8118
|
+
/** Sum across both, or `null` when either lane could not be counted. */
|
|
8119
|
+
total: number().int().nonnegative().nullable()
|
|
8120
|
+
}).nullable();
|
|
8078
8121
|
var StorageMigrationMediaMoveInputSchema = RelocateMediaInputSchema.extend({ leaseId: string().min(1) });
|
|
8079
8122
|
/** The independently selectable logical storage classes — every class
|
|
8080
8123
|
* `storage.listLocationDeclarations` reports, so an operator never meets a
|
|
@@ -8185,6 +8228,10 @@ var StorageMigrationMoveProgressSchema = object({
|
|
|
8185
8228
|
/** The archive census — the **M** of "N of M" (D295). `null` = unknowable. */
|
|
8186
8229
|
filesTotal: number().int().nonnegative().nullable(),
|
|
8187
8230
|
bytesMoved: number().int().nonnegative(),
|
|
8231
|
+
/** Rows the mover corrected while moving them — see `RelocateJob`. Absent on
|
|
8232
|
+
* a lane that cannot reconcile. A migration that silently rewrote durable
|
|
8233
|
+
* rows would be the same failure as one that silently skipped them. */
|
|
8234
|
+
rowsReconciled: number().int().nonnegative().optional(),
|
|
8188
8235
|
/** The MOVER's start, not the migration's: a drain restarted after an addon
|
|
8189
8236
|
* crash gets a new mover, and a rate computed from the migration's start
|
|
8190
8237
|
* would silently average in the time nothing was running. */
|