@maykonpaulo/maestro-admin 0.1.0-next.1 → 0.1.0-next.2

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 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -33,7 +33,7 @@ export function AdminPage() {
33
33
  <MaestroAdmin
34
34
  apiUrl="http://localhost:3000"
35
35
  headers={() => ({ Authorization: `Bearer ${getToken()}` })}
36
- title="Finans Admin"
36
+ title="Admin"
37
37
  />
38
38
  );
39
39
  }
@@ -74,4 +74,4 @@ All of them talk to the server through a single `MaestroClient` provided via `Ad
74
74
  | `field.sensitive` | masked values |
75
75
  | `capabilities` | which of New / Edit / Delete appear |
76
76
 
77
- Fields the server marks as E2EE-encrypted (a Finans reality) come across as opaque values — the admin shows them as-is; it never decrypts.
77
+ Fields the server marks as encrypted (as in a zero-knowledge / E2EE system) come across as opaque values — the admin shows them as-is; it never decrypts.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maykonpaulo/maestro-admin",
3
- "version": "0.1.0-next.1",
3
+ "version": "0.1.0-next.2",
4
4
  "description": "Generic, metadata-driven admin UI for @maykonpaulo/maestro-core (via @maykonpaulo/maestro-server). Reads GET /metadata and auto-builds navigation, tables, detail views and create/update forms for every entity/collection — no per-entity code. Ships as a runnable React app and as exported components (ADR 0008).",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",