@c7-digital/ledger 0.0.4 → 0.0.5
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/BUILD.md +2 -2
- package/README.md +3 -3
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib-lite/src/validation.js +2 -2
- package/lib-lite/tsconfig.temp.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Lite runtime validation utilities - validation is disabled in lite builds
|
|
3
3
|
*
|
|
4
4
|
* This module provides stub implementations that pass data through without validation.
|
|
5
|
-
* Use the full @c7/ledger package if you need runtime schema validation.
|
|
5
|
+
* Use the full @c7-digital/ledger package if you need runtime schema validation.
|
|
6
6
|
*/
|
|
7
7
|
import { logger } from "./logger.js";
|
|
8
8
|
export class SchemaValidator {
|
|
@@ -10,7 +10,7 @@ export class SchemaValidator {
|
|
|
10
10
|
this.instanceId = Math.random().toString(36).substring(2, 8);
|
|
11
11
|
if (validation) {
|
|
12
12
|
logger.warn(`SchemaValidator instance ${this.instanceId}: Validation requested but using lite build. ` +
|
|
13
|
-
`Install the full @c7/ledger package for runtime validation support.`);
|
|
13
|
+
`Install the full @c7-digital/ledger package for runtime validation support.`);
|
|
14
14
|
}
|
|
15
15
|
this.schemaReady = Promise.resolve();
|
|
16
16
|
}
|