@djodjonx/x32-simulator 0.0.1 → 0.0.3

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/CHANGELOG.md CHANGED
@@ -2,6 +2,16 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.0.3](https://github.com/djodjonx/x32-simulator/compare/v0.0.2...v0.0.3) (2026-01-08)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **domain:** remove broken duplicate getter in X32Address ([79217cd](https://github.com/djodjonx/x32-simulator/commit/79217cd31510807b9c55beddaef336acba7ea91b))
11
+ * **library:** export all core components and remove duplicate types ([8a4539c](https://github.com/djodjonx/x32-simulator/commit/8a4539c9ae00a0c1e6e8b725623328f0c683958b))
12
+
13
+ ### [0.0.2](https://github.com/djodjonx/x32-simulator/compare/v0.0.1...v0.0.2) (2026-01-08)
14
+
5
15
  ### 0.0.1 (2026-01-08)
6
16
 
7
17
 
package/README.md CHANGED
@@ -110,6 +110,34 @@ console.log('Simulator running...');
110
110
  await simulator.stop();
111
111
  ```
112
112
 
113
+ ### Available Exports
114
+
115
+ The library exports the following components for advanced usage:
116
+
117
+ **Core Services**
118
+ * `SimulationService`: Main entry point.
119
+ * `SchemaRegistry`: Manages the OSC node definitions.
120
+ * `SchemaFactory`: Generates the default X32 schema.
121
+
122
+ **Domain Entities & Models**
123
+ * `X32State`: The "Digital Twin" state container.
124
+ * `SubscriptionManager`: Manages `/xremote` and `/subscribe` clients.
125
+ * `X32Address`: Helper for parsing OSC paths.
126
+ * `OscMessage`: Wrapper for parsed OSC messages.
127
+ * `MeterData`: Helper for handling meter blobs.
128
+ * `X32Node`: Represents a single parameter (type, default value).
129
+
130
+ **Infrastructure**
131
+ * `UdpNetworkGateway`: Default UDP implementation.
132
+ * `ConsoleLogger`: Default logger implementation.
133
+ * `OscCodec`: Encodes/Decodes X32-specific OSC packets.
134
+ * `InMemoryStateRepository`: Default state storage.
135
+
136
+ **Types & Interfaces**
137
+ * `INetworkGateway`, `ILogger`, `IStateRepository`
138
+ * `OscPacket`, `OscMsg`, `RemoteClient`
139
+ * `LogCategory`
140
+
113
141
  ---
114
142
 
115
143
  ## 🎛️ Simulated OSC Map