@blamejs/core 0.13.42 → 0.13.44

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/lib/mcp.js CHANGED
@@ -81,30 +81,30 @@ function parseRequest(body, opts) {
81
81
  try {
82
82
  parsed = typeof body === "string" ? safeJson.parse(body, { maxBytes: C.BYTES.mib(1) }) : body; // allow:JSON.parse — routed via safeJson.parse
83
83
  } catch (_e) {
84
- throw errorClass.factory("BAD_JSON",
84
+ throw errorClass.factory("mcp/bad-json",
85
85
  "mcp.parseRequest: body is not valid JSON");
86
86
  }
87
87
  if (!parsed || typeof parsed !== "object" || Array.isArray(parsed)) {
88
- throw errorClass.factory("BAD_ENVELOPE",
88
+ throw errorClass.factory("mcp/bad-envelope",
89
89
  "mcp.parseRequest: request must be a JSON-RPC object");
90
90
  }
91
91
  if (parsed.jsonrpc !== "2.0") {
92
- throw errorClass.factory("BAD_VERSION",
92
+ throw errorClass.factory("mcp/bad-version",
93
93
  "mcp.parseRequest: jsonrpc must be \"2.0\"");
94
94
  }
95
95
  if (typeof parsed.method !== "string" || parsed.method.length === 0 ||
96
96
  parsed.method.length > METHOD_NAME_MAX) {
97
- throw errorClass.factory("BAD_METHOD",
97
+ throw errorClass.factory("mcp/bad-method",
98
98
  "mcp.parseRequest: method must be a non-empty string under 256 bytes");
99
99
  }
100
100
  if (parsed.id !== undefined && parsed.id !== null &&
101
101
  typeof parsed.id !== "string" && typeof parsed.id !== "number") {
102
- throw errorClass.factory("BAD_ID",
102
+ throw errorClass.factory("mcp/bad-id",
103
103
  "mcp.parseRequest: id must be string, number, or null");
104
104
  }
105
105
  if (parsed.params !== undefined && parsed.params !== null &&
106
106
  typeof parsed.params !== "object") {
107
- throw errorClass.factory("BAD_PARAMS",
107
+ throw errorClass.factory("mcp/bad-params",
108
108
  "mcp.parseRequest: params must be object or array");
109
109
  }
110
110
  return parsed;
@@ -167,7 +167,7 @@ function _readBodyBuffered(req, maxBytes, errorClass) {
167
167
  try { collector.push(chunk); }
168
168
  catch (_e) {
169
169
  req.destroy();
170
- reject(errorClass.factory("BODY_TOO_LARGE",
170
+ reject(errorClass.factory("mcp/body-too-large",
171
171
  "mcp: request body exceeds " + maxBytes + " bytes"));
172
172
  }
173
173
  });
@@ -178,17 +178,17 @@ function _readBodyBuffered(req, maxBytes, errorClass) {
178
178
 
179
179
  function _checkRedirectUri(uri, allowlist, errorClass) {
180
180
  if (typeof uri !== "string") {
181
- throw errorClass.factory("BAD_REDIRECT_URI",
181
+ throw errorClass.factory("mcp/bad-redirect-uri",
182
182
  "mcp: redirect_uri must be a string");
183
183
  }
184
184
  if (!Array.isArray(allowlist) || allowlist.indexOf(uri) === -1) {
185
- throw errorClass.factory("REDIRECT_URI_REFUSED",
185
+ throw errorClass.factory("mcp/redirect-uri-refused",
186
186
  "mcp: redirect_uri not in allowlist (OAuth 2.1 / RFC 9700 sec 4.1.1)");
187
187
  }
188
188
  var parsed;
189
189
  try { parsed = safeUrl.parse(uri); }
190
190
  catch (_e) {
191
- throw errorClass.factory("BAD_REDIRECT_URI",
191
+ throw errorClass.factory("mcp/bad-redirect-uri",
192
192
  "mcp: redirect_uri did not parse");
193
193
  }
194
194
  var isHttps = parsed.protocol === "https:";
@@ -205,7 +205,7 @@ function _checkRedirectUri(uri, allowlist, errorClass) {
205
205
  }
206
206
  var isLocal = rawHost === "localhost" || rawHost === "127.0.0.1" || rawHost === "::1";
207
207
  if (!isHttps && !isLocal) {
208
- throw errorClass.factory("INSECURE_REDIRECT_URI",
208
+ throw errorClass.factory("mcp/insecure-redirect-uri",
209
209
  "mcp: redirect_uri must be HTTPS (or localhost; RFC 9700 sec 4.1.1)");
210
210
  }
211
211
  }
@@ -257,7 +257,7 @@ function serverGuard(opts) {
257
257
  var requireBearer = opts.requireBearer !== false;
258
258
  var verifyBearer = opts.verifyBearer || null;
259
259
  if (requireBearer && typeof verifyBearer !== "function") {
260
- throw errorClass.factory("BAD_OPTS",
260
+ throw errorClass.factory("mcp/bad-opts",
261
261
  "mcp.serverGuard: verifyBearer required when requireBearer=true");
262
262
  }
263
263
  var redirectUriAllowlist = Array.isArray(opts.redirectUriAllowlist)
@@ -266,7 +266,7 @@ function serverGuard(opts) {
266
266
  var registerClientAllowlist = typeof opts.registerClientAllowlist === "function"
267
267
  ? opts.registerClientAllowlist : null;
268
268
  if (allowDynamicRegister && !registerClientAllowlist) {
269
- throw errorClass.factory("BAD_OPTS",
269
+ throw errorClass.factory("mcp/bad-opts",
270
270
  "mcp.serverGuard: allowDynamicRegister=true requires registerClientAllowlist function");
271
271
  }
272
272
  var toolAllowlist = Array.isArray(opts.toolAllowlist) ? opts.toolAllowlist : null;
@@ -123,11 +123,11 @@ function create(opts) {
123
123
  ], "middleware.requireStepUp");
124
124
 
125
125
  if (!opts.requirement || typeof opts.requirement !== "object") {
126
- throw new AuthError("auth-stepUp/bad-requirement",
126
+ throw new AuthError("auth-step-up/bad-requirement",
127
127
  "middleware.requireStepUp: opts.requirement must be an object");
128
128
  }
129
129
  validateOpts.optionalFunction(opts.getClaims,
130
- "middleware.requireStepUp: getClaims", AuthError, "auth-stepUp/bad-opt");
130
+ "middleware.requireStepUp: getClaims", AuthError, "auth-step-up/bad-opt");
131
131
 
132
132
  var realm = (typeof opts.realm === "string" && opts.realm.length > 0)
133
133
  ? opts.realm : "api";
@@ -146,7 +146,7 @@ function create(opts) {
146
146
  // on the first hot-path request.
147
147
  var probe = stepUp().evaluate({ claims: { acr: "0" }, requirement: opts.requirement });
148
148
  if (probe.error === "bad_requirement" || probe.error === "unknown_acr") {
149
- throw new AuthError("auth-stepUp/bad-requirement",
149
+ throw new AuthError("auth-step-up/bad-requirement",
150
150
  "middleware.requireStepUp: " + (probe.reason || probe.error));
151
151
  }
152
152
 
package/lib/mtls-ca.js CHANGED
@@ -517,8 +517,8 @@ function create(opts) {
517
517
  opts3 = opts3 || {};
518
518
  if (typeof engine.generateCrl !== "function") {
519
519
  throw new MtlsCaError("mtls-ca/engine-no-crl",
520
- "configured engine does not implement generateCrl(); the bundled " +
521
- "engine ships in v0.6.45+");
520
+ "configured engine does not implement generateCrl(); use the " +
521
+ "framework's bundled CA engine, which supports it");
522
522
  }
523
523
  var ca = await initCA();
524
524
  var revocations = _loadRevocations().revocations;
@@ -22,10 +22,11 @@
22
22
  * pipeline manually.
23
23
  *
24
24
  * Format auto-detection sniffs the first ~512 bytes for magic
25
- * signatures. v0.12.7 ships ZIP detection (LFH magic `0x04034b50`
26
- * + EOCD magic `0x06054b50`); tar / gz / ae2 / `b.crypto.encryptPacked`-
27
- * wrapped formats are flagged as `safe-archive/format-unsupported`
28
- * in this patch — tar lands v0.12.8, gz v0.12.9, encryption v0.12.10/11.
25
+ * signatures: ZIP (LFH magic `0x04034b50` + EOCD magic `0x06054b50`),
26
+ * tar (`ustar` at offset 257), gzip / tar.gz (RFC 1952 magic), and
27
+ * `b.crypto.encryptPacked`-wrapped envelopes (auto-unwrapped before
28
+ * format detection). Unrecognized inputs are flagged
29
+ * `safe-archive/format-unsupported`.
29
30
  *
30
31
  * The orchestrator refuses the WHOLE archive on any single critical
31
32
  * guard issue — no partial extraction. Cleanup is `fs.rm`-recursive
@@ -148,7 +149,7 @@ async function _collectSourceBytes(source) {
148
149
  * @opts
149
150
  * source: b.archive.adapters.* | Buffer | string,
150
151
  * destination: string (target directory; created if missing),
151
- * format: "auto" | "zip" (v0.12.7 tar v0.12.8, gz v0.12.9),
152
+ * format: "auto" | "zip" | "tar" | "tar.gz",
152
153
  * bombPolicy: b.guardArchive.zipBombPolicy(...) | { ... },
153
154
  * entryTypePolicy: b.guardArchive.entryTypePolicy(...) | { ... },
154
155
  * guardProfile: "strict" | "balanced" | "permissive" | "hipaa" | ...,
@@ -275,8 +276,8 @@ async function extract(opts) {
275
276
  });
276
277
  } else {
277
278
  throw new SafeArchiveError("safe-archive/format-unsupported",
278
- "extract: format=" + JSON.stringify(format) + " — v0.12.9 ships ZIP + tar + tar.gz; " +
279
- "v0.12.10/v0.12.11 added wrap-recipient + wrap-passphrase envelopes (auto-unwrap as of v0.12.15)");
279
+ "extract: format=" + JSON.stringify(format) + " — supported formats are " +
280
+ "zip, tar, tar.gz; b.crypto.encryptPacked-wrapped archives are auto-unwrapped first");
280
281
  }
281
282
  var result = await reader.extract({
282
283
  destination: opts.destination,
package/lib/sec-cyber.js CHANGED
@@ -91,13 +91,13 @@ function _addBusinessDays(startMs, days) {
91
91
 
92
92
  function eightKArtifact(opts) {
93
93
  if (!opts || typeof opts !== "object") {
94
- throw SecCyberError.factory("BAD_OPTS",
94
+ throw SecCyberError.factory("sec-cyber/bad-opts",
95
95
  "secCyber.eightKArtifact: opts required");
96
96
  }
97
97
  validateOpts.requireNonEmptyString(opts.incidentId,
98
98
  "secCyber.eightKArtifact: incidentId", SecCyberError, "BAD_INCIDENT_ID");
99
99
  if (!opts.registrant || typeof opts.registrant !== "object") {
100
- throw SecCyberError.factory("BAD_REGISTRANT",
100
+ throw SecCyberError.factory("sec-cyber/bad-registrant",
101
101
  "secCyber.eightKArtifact: registrant object required");
102
102
  }
103
103
  validateOpts.requireNonEmptyString(opts.registrant.name,
@@ -110,7 +110,7 @@ function eightKArtifact(opts) {
110
110
  "secCyber.eightKArtifact: materialityDeterminedAt", SecCyberError, "BAD_MAT_AT");
111
111
 
112
112
  if (FINDINGS.indexOf(opts.materialityFinding) === -1) {
113
- throw SecCyberError.factory("BAD_FINDING",
113
+ throw SecCyberError.factory("sec-cyber/bad-finding",
114
114
  "secCyber.eightKArtifact: materialityFinding must be one of " + FINDINGS.join(", "));
115
115
  }
116
116
  validateOpts.requireNonEmptyString(opts.materialityReasoning,
package/lib/sse.js CHANGED
@@ -89,7 +89,7 @@ function _validateRetry(retry, errorClass) {
89
89
  if (retry === undefined || retry === null) return null;
90
90
  if (typeof retry !== "number" || !isFinite(retry) || retry < 0 ||
91
91
  Math.floor(retry) !== retry) {
92
- throw errorClass.factory("BAD_RETRY",
92
+ throw errorClass.factory("sse/bad-retry",
93
93
  "sse.send: retry must be a non-negative finite integer (got " +
94
94
  JSON.stringify(retry) + ")");
95
95
  }
@@ -98,14 +98,14 @@ function _validateRetry(retry, errorClass) {
98
98
 
99
99
  function _refuseInjection(field, value, errorClass) {
100
100
  if (typeof value !== "string") {
101
- throw errorClass.factory("BAD_FIELD",
101
+ throw errorClass.factory("sse/bad-field",
102
102
  "sse.send: " + field + " must be a string");
103
103
  }
104
104
  // Length-bound BEFORE the regex test — _capField applies a tighter
105
105
  // cap further along, but the regex itself runs against the full
106
106
  // value so we bound here too.
107
107
  if (value.length > MAX_DATA_BYTES) {
108
- throw errorClass.factory("FIELD_TOO_LARGE",
108
+ throw errorClass.factory("sse/field-too-large",
109
109
  "sse.send: " + field + " too large for injection scan");
110
110
  }
111
111
  if (INJECTION_RE.test(value)) { // allow:regex-no-length-cap — value length capped above
@@ -114,7 +114,7 @@ function _refuseInjection(field, value, errorClass) {
114
114
  outcome: "denied",
115
115
  metadata: { field: field, length: value.length },
116
116
  });
117
- throw errorClass.factory("INJECTION",
117
+ throw errorClass.factory("sse/injection",
118
118
  "sse.send: " + field + " contains LF/CR/NUL — refused " +
119
119
  "(CVE-2026-33128 / 29085 / 44217 class)");
120
120
  }
@@ -130,7 +130,7 @@ var MAX_DATA_BYTES = C.BYTES.mib(1);
130
130
  function _capField(field, value, capBytes, errorClass) {
131
131
  var len = Buffer.byteLength(value, "utf8");
132
132
  if (len > capBytes) {
133
- throw errorClass.factory("FIELD_TOO_LARGE",
133
+ throw errorClass.factory("sse/field-too-large",
134
134
  "sse.send: " + field + " exceeds cap (" + len + " > " +
135
135
  capBytes + " bytes)");
136
136
  }
@@ -139,7 +139,7 @@ function _capField(field, value, capBytes, errorClass) {
139
139
  function serializeEvent(opts, errorClass) {
140
140
  errorClass = errorClass || SseError;
141
141
  if (!opts || typeof opts !== "object") {
142
- throw errorClass.factory("BAD_OPTS", "sse.serializeEvent: opts required");
142
+ throw errorClass.factory("sse/bad-opts", "sse.serializeEvent: opts required");
143
143
  }
144
144
  var out = "";
145
145
  // Field order: id, event, retry, data — matches the framework's
@@ -162,7 +162,7 @@ function serializeEvent(opts, errorClass) {
162
162
  }
163
163
  if (opts.data !== undefined && opts.data !== null) {
164
164
  if (typeof opts.data !== "string") {
165
- throw errorClass.factory("BAD_FIELD",
165
+ throw errorClass.factory("sse/bad-field",
166
166
  "sse.send: data must be a string");
167
167
  }
168
168
  _capField("data", opts.data, MAX_DATA_BYTES, errorClass);
@@ -174,7 +174,7 @@ function serializeEvent(opts, errorClass) {
174
174
  outcome: "denied",
175
175
  metadata: { field: "data", length: opts.data.length, char: "cr-or-nul" },
176
176
  });
177
- throw errorClass.factory("INJECTION",
177
+ throw errorClass.factory("sse/injection",
178
178
  "sse.send: data contains CR or NUL — refused");
179
179
  }
180
180
  var lines = opts.data.split("\n");
@@ -189,11 +189,11 @@ function serializeEvent(opts, errorClass) {
189
189
 
190
190
  function _validateComment(text, errorClass) {
191
191
  if (typeof text !== "string") {
192
- throw errorClass.factory("BAD_FIELD",
192
+ throw errorClass.factory("sse/bad-field",
193
193
  "sse.comment: text must be a string");
194
194
  }
195
195
  if (text.length > MAX_DATA_BYTES) {
196
- throw errorClass.factory("FIELD_TOO_LARGE",
196
+ throw errorClass.factory("sse/field-too-large",
197
197
  "sse.comment: text too large for injection scan");
198
198
  }
199
199
  if (INJECTION_RE.test(text)) { // allow:regex-no-length-cap — text length capped above
@@ -202,7 +202,7 @@ function _validateComment(text, errorClass) {
202
202
  outcome: "denied",
203
203
  metadata: { field: "comment", length: text.length },
204
204
  });
205
- throw errorClass.factory("INJECTION",
205
+ throw errorClass.factory("sse/injection",
206
206
  "sse.comment: text contains LF/CR/NUL — refused");
207
207
  }
208
208
  }
@@ -224,14 +224,14 @@ function create(req, res, opts) {
224
224
  opts = opts || {};
225
225
  var errorClass = opts.errorClass || SseError;
226
226
  if (!res || typeof res.write !== "function" || typeof res.end !== "function") {
227
- throw errorClass.factory("BAD_RES",
227
+ throw errorClass.factory("sse/bad-res",
228
228
  "sse.create: res must be a writable response stream");
229
229
  }
230
230
  var heartbeatMs = opts.heartbeatMs;
231
231
  if (heartbeatMs === undefined) heartbeatMs = C.TIME.seconds(15);
232
232
  if (typeof heartbeatMs !== "number" || !isFinite(heartbeatMs) ||
233
233
  heartbeatMs < 0 || Math.floor(heartbeatMs) !== heartbeatMs) {
234
- throw errorClass.factory("BAD_OPTS",
234
+ throw errorClass.factory("sse/bad-opts",
235
235
  "sse.create: heartbeatMs must be a non-negative integer ms (got " +
236
236
  JSON.stringify(heartbeatMs) + ")");
237
237
  }
@@ -264,7 +264,7 @@ function create(req, res, opts) {
264
264
 
265
265
  function _writeRaw(s) {
266
266
  if (closed) {
267
- throw errorClass.factory("CLOSED",
267
+ throw errorClass.factory("sse/closed",
268
268
  "sse.send: channel closed");
269
269
  }
270
270
  res.write(s);
package/lib/tcpa-10dlc.js CHANGED
@@ -72,11 +72,11 @@ var records = new Map(); // phoneE164 → record
72
72
 
73
73
  function recordConsent(opts) {
74
74
  if (!opts || typeof opts !== "object") {
75
- throw Tcpa10dlcError.factory("BAD_OPTS",
75
+ throw Tcpa10dlcError.factory("tcpa-10dlc/bad-opts",
76
76
  "tcpa10dlc.recordConsent: opts required");
77
77
  }
78
78
  if (typeof opts.phoneE164 !== "string" || !E164_RE.test(opts.phoneE164)) {
79
- throw Tcpa10dlcError.factory("BAD_PHONE",
79
+ throw Tcpa10dlcError.factory("tcpa-10dlc/bad-phone",
80
80
  "tcpa10dlc.recordConsent: phoneE164 must match " + E164_RE);
81
81
  }
82
82
  validateOpts.requireNonEmptyString(opts.brand,
@@ -86,7 +86,7 @@ function recordConsent(opts) {
86
86
  validateOpts.requireNonEmptyString(opts.formUrl,
87
87
  "tcpa10dlc.recordConsent: formUrl", Tcpa10dlcError, "BAD_FORM_URL");
88
88
  if (DISCLOSURE_PARTIES.indexOf(opts.disclosurePartyKind) === -1) {
89
- throw Tcpa10dlcError.factory("BAD_DISCLOSURE_PARTY",
89
+ throw Tcpa10dlcError.factory("tcpa-10dlc/bad-disclosure-party",
90
90
  "tcpa10dlc.recordConsent: disclosurePartyKind must be one of " +
91
91
  DISCLOSURE_PARTIES.join(", "));
92
92
  }
@@ -133,12 +133,12 @@ function lookup(phoneE164) {
133
133
 
134
134
  function revoke(phoneE164, reason) {
135
135
  if (typeof phoneE164 !== "string" || !E164_RE.test(phoneE164)) {
136
- throw Tcpa10dlcError.factory("BAD_PHONE",
136
+ throw Tcpa10dlcError.factory("tcpa-10dlc/bad-phone",
137
137
  "tcpa10dlc.revoke: phoneE164 must match " + E164_RE);
138
138
  }
139
139
  var existing = records.get(phoneE164);
140
140
  if (!existing) {
141
- throw Tcpa10dlcError.factory("NO_RECORD",
141
+ throw Tcpa10dlcError.factory("tcpa-10dlc/no-record",
142
142
  "tcpa10dlc.revoke: no consent record for " + phoneE164);
143
143
  }
144
144
  if (existing.revoked) {
@@ -113,23 +113,23 @@ function create(opts) {
113
113
 
114
114
  if (!opts.db || typeof opts.db.from !== "function" ||
115
115
  typeof opts.db.getTableMetadata !== "function") {
116
- throw new TenantQuotaError("tenantQuota/bad-db",
116
+ throw new TenantQuotaError("tenant-quota/bad-db",
117
117
  "tenantQuota.create: opts.db must be the framework's b.db namespace");
118
118
  }
119
119
  validateOpts.requireNonEmptyString(opts.tenantField,
120
- "tenantQuota.create: tenantField", TenantQuotaError, "tenantQuota/bad-field");
120
+ "tenantQuota.create: tenantField", TenantQuotaError, "tenant-quota/bad-field");
121
121
 
122
122
  var defaultBytesCap = (opts.defaultBytesCap == null)
123
123
  ? DEFAULT_BYTES_CAP
124
124
  : opts.defaultBytesCap;
125
125
  if (typeof defaultBytesCap !== "number" || !isFinite(defaultBytesCap) || defaultBytesCap <= 0) {
126
- throw new TenantQuotaError("tenantQuota/bad-cap",
126
+ throw new TenantQuotaError("tenant-quota/bad-cap",
127
127
  "tenantQuota.create: defaultBytesCap must be a positive finite number");
128
128
  }
129
129
 
130
130
  var perTenantBytesCap = opts.perTenantBytesCap || {};
131
131
  if (typeof perTenantBytesCap !== "object" || Array.isArray(perTenantBytesCap)) {
132
- throw new TenantQuotaError("tenantQuota/bad-per-tenant",
132
+ throw new TenantQuotaError("tenant-quota/bad-per-tenant",
133
133
  "tenantQuota.create: perTenantBytesCap must be a plain object {tenantId: bytes}");
134
134
  }
135
135
  // Validate every per-tenant override at config time so a typo
@@ -138,7 +138,7 @@ function create(opts) {
138
138
  for (var pi = 0; pi < ptKeys.length; pi++) {
139
139
  var v = perTenantBytesCap[ptKeys[pi]];
140
140
  if (typeof v !== "number" || !isFinite(v) || v <= 0) {
141
- throw new TenantQuotaError("tenantQuota/bad-per-tenant",
141
+ throw new TenantQuotaError("tenant-quota/bad-per-tenant",
142
142
  "tenantQuota.create: perTenantBytesCap['" + ptKeys[pi] +
143
143
  "'] must be a positive finite number");
144
144
  }
@@ -147,7 +147,7 @@ function create(opts) {
147
147
  var auditOn = opts.audit !== false;
148
148
  var cacheTtlMs = (opts.cacheTtlMs == null) ? DEFAULT_CACHE_TTL_MS : opts.cacheTtlMs;
149
149
  if (typeof cacheTtlMs !== "number" || !isFinite(cacheTtlMs) || cacheTtlMs < 0) {
150
- throw new TenantQuotaError("tenantQuota/bad-ttl",
150
+ throw new TenantQuotaError("tenant-quota/bad-ttl",
151
151
  "tenantQuota.create: cacheTtlMs must be a non-negative finite number");
152
152
  }
153
153
 
@@ -230,7 +230,7 @@ function create(opts) {
230
230
 
231
231
  async function snapshot(tenantId) {
232
232
  validateOpts.requireNonEmptyString(tenantId,
233
- "tenantQuota.snapshot: tenantId", TenantQuotaError, "tenantQuota/bad-tenant");
233
+ "tenantQuota.snapshot: tenantId", TenantQuotaError, "tenant-quota/bad-tenant");
234
234
  var now = Date.now();
235
235
  var cached = cache.get(tenantId);
236
236
  var bytesUsed;
@@ -258,7 +258,7 @@ function create(opts) {
258
258
  bytesCap: snap.bytesCap,
259
259
  });
260
260
  _emitMetric("tenant.quota.exceeded", 1);
261
- throw new TenantQuotaError("tenantQuota/exceeded",
261
+ throw new TenantQuotaError("tenant-quota/exceeded",
262
262
  "tenantQuota.assert: tenant '" + tenantId + "' is at " +
263
263
  snap.bytesUsed + " of " + snap.bytesCap + " bytes; insert refused");
264
264
  }
@@ -344,21 +344,21 @@ function budget(opts) {
344
344
  ], "tenantQuota.budget");
345
345
 
346
346
  validateOpts.requireNonEmptyString(opts.tenantField,
347
- "tenantQuota.budget: tenantField", TenantQuotaError, "tenantQuota/bad-field");
347
+ "tenantQuota.budget: tenantField", TenantQuotaError, "tenant-quota/bad-field");
348
348
 
349
349
  var qpsCap = (opts.perTenantQpsCap == null) ? DEFAULT_QPS_CAP : opts.perTenantQpsCap;
350
350
  if (typeof qpsCap !== "number" || !isFinite(qpsCap) || qpsCap <= 0) {
351
- throw new TenantQuotaError("tenantQuota/bad-qps",
351
+ throw new TenantQuotaError("tenant-quota/bad-qps",
352
352
  "tenantQuota.budget: perTenantQpsCap must be a positive finite number");
353
353
  }
354
354
  var rowsCap = (opts.perTenantTotalRowsRead == null) ? DEFAULT_ROWS_READ : opts.perTenantTotalRowsRead;
355
355
  if (typeof rowsCap !== "number" || !isFinite(rowsCap) || rowsCap <= 0) {
356
- throw new TenantQuotaError("tenantQuota/bad-rows",
356
+ throw new TenantQuotaError("tenant-quota/bad-rows",
357
357
  "tenantQuota.budget: perTenantTotalRowsRead must be a positive finite number");
358
358
  }
359
359
  var windowMs = (opts.window == null) ? DEFAULT_WINDOW_MS : opts.window;
360
360
  if (typeof windowMs !== "number" || !isFinite(windowMs) || windowMs <= 0) {
361
- throw new TenantQuotaError("tenantQuota/bad-window",
361
+ throw new TenantQuotaError("tenant-quota/bad-window",
362
362
  "tenantQuota.budget: window must be a positive finite number");
363
363
  }
364
364
  var auditOn = opts.audit !== false;
@@ -393,7 +393,7 @@ function budget(opts) {
393
393
 
394
394
  function observe(tenantId, info) {
395
395
  validateOpts.requireNonEmptyString(tenantId,
396
- "tenantQuota.budget.observe: tenantId", TenantQuotaError, "tenantQuota/bad-tenant");
396
+ "tenantQuota.budget.observe: tenantId", TenantQuotaError, "tenant-quota/bad-tenant");
397
397
  info = info || {};
398
398
  var rowsRead = (typeof info.rowsRead === "number" && info.rowsRead >= 0) ? info.rowsRead : 0;
399
399
  var now = Date.now();
@@ -411,7 +411,7 @@ function budget(opts) {
411
411
  windowMs: windowMs,
412
412
  });
413
413
  _emitMetric("tenant.budget.exceeded", 1);
414
- throw new TenantQuotaError("tenantQuota/budget-exceeded",
414
+ throw new TenantQuotaError("tenant-quota/budget-exceeded",
415
415
  "tenantQuota.budget: tenant '" + tenantId + "' exceeded budget " +
416
416
  "(calls=" + c.calls + "/" + maxCalls + ", rowsRead=" + c.rowsRead +
417
417
  "/" + rowsCap + ", windowMs=" + windowMs + ")");
@@ -486,7 +486,7 @@ function budget(opts) {
486
486
  */
487
487
  function instrumentQuery(opts) {
488
488
  if (!opts || typeof opts !== "object") {
489
- throw new TenantQuotaError("tenantQuota/bad-instr",
489
+ throw new TenantQuotaError("tenant-quota/bad-instr",
490
490
  "tenantQuota.instrumentQuery: opts object is required");
491
491
  }
492
492
  validateOpts(opts, [
@@ -494,13 +494,13 @@ function instrumentQuery(opts) {
494
494
  ], "tenantQuota.instrumentQuery");
495
495
 
496
496
  if (!Array.isArray(opts.rows)) {
497
- throw new TenantQuotaError("tenantQuota/bad-rows",
497
+ throw new TenantQuotaError("tenant-quota/bad-rows",
498
498
  "tenantQuota.instrumentQuery: rows must be an array");
499
499
  }
500
500
  validateOpts.requireNonEmptyString(opts.tenantField,
501
- "tenantQuota.instrumentQuery: tenantField", TenantQuotaError, "tenantQuota/bad-field");
501
+ "tenantQuota.instrumentQuery: tenantField", TenantQuotaError, "tenant-quota/bad-field");
502
502
  validateOpts.requireNonEmptyString(opts.tenantId,
503
- "tenantQuota.instrumentQuery: tenantId", TenantQuotaError, "tenantQuota/bad-tenant");
503
+ "tenantQuota.instrumentQuery: tenantId", TenantQuotaError, "tenant-quota/bad-tenant");
504
504
  var auditOn = opts.audit !== false;
505
505
 
506
506
  var crossover = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blamejs/core",
3
- "version": "0.13.42",
3
+ "version": "0.13.44",
4
4
  "description": "The Node framework that owns its stack.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "blamejs contributors",
package/sbom.cdx.json CHANGED
@@ -2,10 +2,10 @@
2
2
  "$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
3
3
  "bomFormat": "CycloneDX",
4
4
  "specVersion": "1.5",
5
- "serialNumber": "urn:uuid:57bde5fd-6321-44f5-9f42-0bb7c66aa56f",
5
+ "serialNumber": "urn:uuid:43cf0213-9944-42ad-9695-86dbc4acd548",
6
6
  "version": 1,
7
7
  "metadata": {
8
- "timestamp": "2026-05-29T19:13:48.640Z",
8
+ "timestamp": "2026-05-30T00:54:18.743Z",
9
9
  "lifecycles": [
10
10
  {
11
11
  "phase": "build"
@@ -19,14 +19,14 @@
19
19
  }
20
20
  ],
21
21
  "component": {
22
- "bom-ref": "@blamejs/core@0.13.42",
22
+ "bom-ref": "@blamejs/core@0.13.44",
23
23
  "type": "application",
24
24
  "name": "blamejs",
25
- "version": "0.13.42",
25
+ "version": "0.13.44",
26
26
  "scope": "required",
27
27
  "author": "blamejs contributors",
28
28
  "description": "The Node framework that owns its stack.",
29
- "purl": "pkg:npm/%40blamejs/core@0.13.42",
29
+ "purl": "pkg:npm/%40blamejs/core@0.13.44",
30
30
  "properties": [],
31
31
  "externalReferences": [
32
32
  {
@@ -54,7 +54,7 @@
54
54
  "components": [],
55
55
  "dependencies": [
56
56
  {
57
- "ref": "@blamejs/core@0.13.42",
57
+ "ref": "@blamejs/core@0.13.44",
58
58
  "dependsOn": []
59
59
  }
60
60
  ]