@nanolink/operational-model 0.1.4 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -63,6 +63,8 @@ main().catch((err) => {
63
63
  ## Notes
64
64
  - The package is read-only: repository implementations do not perform writes or emit events.
65
65
  - Uses msgpack for decoding embedded payloads; ensure Aerospike bins match the schema in `spec.md`.
66
+ - All repository implementations use TypeScript with direct imports from the `aerospike` npm package.
67
+ - Client configuration uses Aerospike's policies structure for timeout and retry settings.
66
68
 
67
69
  ## NATS subscription helper
68
70
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nanolink/operational-model",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "TypeScript utility package.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",