@x12i/static-memorix-explorer-api 1.5.0 → 1.5.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 CHANGED
@@ -329,6 +329,10 @@ and `knowledgeId`.
329
329
 
330
330
  ## Release history
331
331
 
332
+ ### v1.5.1
333
+ - Replaced personal names in the bundled demo users with generic sample names.
334
+ - Added regression coverage to keep personal identifiers out of generated demos.
335
+
332
336
  ### v1.5.0
333
337
  - Added `memorix-explorer stop [--port <number>]` with safe managed-process
334
338
  tracking and stale-PID cleanup.
@@ -219,9 +219,9 @@ Data files (under `mocks/data/`) hold the actual records.
219
219
 
220
220
  ```json
221
221
  [
222
- { "recordId": "usr-1", "name": "Ami", "role": "owner" },
223
- { "recordId": "usr-2", "name": "Devran", "role": "engineer" },
224
- { "recordId": "usr-3", "name": "Ilan", "role": "growth" }
222
+ { "recordId": "usr-1", "name": "James", "role": "owner" },
223
+ { "recordId": "usr-2", "name": "Emily", "role": "engineer" },
224
+ { "recordId": "usr-3", "name": "Michael", "role": "growth" }
225
225
  ]
226
226
  ```
227
227
 
@@ -1,5 +1,5 @@
1
1
  [
2
- { "recordId": "usr-1", "name": "Ami", "role": "owner" },
3
- { "recordId": "usr-2", "name": "Devran", "role": "engineer" },
4
- { "recordId": "usr-3", "name": "Ilan", "role": "growth" }
2
+ { "recordId": "usr-1", "name": "James", "role": "owner" },
3
+ { "recordId": "usr-2", "name": "Emily", "role": "engineer" },
4
+ { "recordId": "usr-3", "name": "Michael", "role": "growth" }
5
5
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@x12i/static-memorix-explorer-api",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "Static mock server providing full API parity for the Memorix Explorer API.",
5
5
  "type": "module",
6
6
  "main": "dist/server.js",