@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 +4 -0
- package/guides/demo-app.md +3 -3
- package/mocks/data/users/snapshots.json +3 -3
- package/package.json +1 -1
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.
|
package/guides/demo-app.md
CHANGED
|
@@ -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": "
|
|
223
|
-
{ "recordId": "usr-2", "name": "
|
|
224
|
-
{ "recordId": "usr-3", "name": "
|
|
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": "
|
|
3
|
-
{ "recordId": "usr-2", "name": "
|
|
4
|
-
{ "recordId": "usr-3", "name": "
|
|
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
|
]
|