@walkeros/core 2.0.1 → 2.1.1
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/README.md +0 -11
- package/dist/dev.d.mts +601 -55
- package/dist/dev.d.ts +601 -55
- package/dist/dev.js +1 -1
- package/dist/dev.js.map +1 -1
- package/dist/dev.mjs +1 -1
- package/dist/dev.mjs.map +1 -1
- package/dist/index.d.mts +327 -89
- package/dist/index.d.ts +327 -89
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -396,17 +396,6 @@ onLog('Debug info', true); // Logs message
|
|
|
396
396
|
onLog('Silent message'); // No output
|
|
397
397
|
```
|
|
398
398
|
|
|
399
|
-
### Validation
|
|
400
|
-
|
|
401
|
-
#### validateEvent
|
|
402
|
-
|
|
403
|
-
`validateEvent(obj: unknown, customContracts?: Schema.Contracts): WalkerOS.Event | never`
|
|
404
|
-
validates event structure and throws on invalid events.
|
|
405
|
-
|
|
406
|
-
#### validateProperty
|
|
407
|
-
|
|
408
|
-
Validates that values conform to walkerOS property types.
|
|
409
|
-
|
|
410
399
|
## Type Definitions
|
|
411
400
|
|
|
412
401
|
See [src/types/](./src/types/) for TypeScript interfaces:
|