@letterblack/lbe-core 1.3.0 → 1.3.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/CHANGELOG.md +6 -0
- package/README.md +5 -5
- package/WORKSPACE.md +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -135,7 +135,7 @@ node_modules/
|
|
|
135
135
|
Internal source workspace:
|
|
136
136
|
|
|
137
137
|
```bash
|
|
138
|
-
npm install @letterblack/lbe-core
|
|
138
|
+
npm install @letterblack/lbe-core
|
|
139
139
|
```
|
|
140
140
|
|
|
141
141
|
Public users install:
|
|
@@ -324,7 +324,7 @@ npx lbe-exec audit # stream .lbe/events.jsonl as a formatted table
|
|
|
324
324
|
For teams, compliance workflows, or named actors with distinct permission sets:
|
|
325
325
|
|
|
326
326
|
```js
|
|
327
|
-
import { createLBE, generateKeyPair, createKeyStore } from '@letterblack/lbe-core';
|
|
327
|
+
import { createLBE, generateKeyPair, createKeyStore } from '@letterblack/lbe-core';
|
|
328
328
|
|
|
329
329
|
const { secretKey, publicKey } = generateKeyPair();
|
|
330
330
|
|
|
@@ -425,7 +425,7 @@ interface LBEExecuteOutput {
|
|
|
425
425
|
|
|
426
426
|
## Internal source API (private package only)
|
|
427
427
|
|
|
428
|
-
These helpers exist in `@letterblack/lbe-core` (this
|
|
428
|
+
These helpers exist in `@letterblack/lbe-core` (this package) for
|
|
429
429
|
repository development and testing. They are **not** exported from the public
|
|
430
430
|
`@letterblack/lbe-sdk` package.
|
|
431
431
|
|
|
@@ -451,7 +451,7 @@ repository development and testing. They are **not** exported from the public
|
|
|
451
451
|
### Additional exports
|
|
452
452
|
|
|
453
453
|
```js
|
|
454
|
-
import { AVAILABLE_ADAPTERS } from '@letterblack/lbe-core/adapters';
|
|
454
|
+
import { AVAILABLE_ADAPTERS } from '@letterblack/lbe-core/adapters';
|
|
455
455
|
// → ['noop', 'shell', 'file']
|
|
456
456
|
|
|
457
457
|
import {
|
|
@@ -461,7 +461,7 @@ import {
|
|
|
461
461
|
signEd25519, verifyEd25519, generateKeyPair,
|
|
462
462
|
createLogger, deepFreeze,
|
|
463
463
|
checkInvariants, assertInvariants, InvariantGateError
|
|
464
|
-
} from '@letterblack/lbe-core';
|
|
464
|
+
} from '@letterblack/lbe-core';
|
|
465
465
|
```
|
|
466
466
|
|
|
467
467
|
## CLI
|
package/WORKSPACE.md
CHANGED
|
@@ -18,7 +18,7 @@ There are two published packages and one private source workspace:
|
|
|
18
18
|
|---|---|---|
|
|
19
19
|
| `@letterblack/lbe-sdk` | published | WASM runtime + CLI only. Raw `execute()` function, no controller. |
|
|
20
20
|
| `@letterblack/lbe-exec` | published | Full in-process controller. `createLocalExecutor()`, policy, audit, sandbox. |
|
|
21
|
-
|
|
|
21
|
+
| `letterblack-lbe-core` | private | This workspace. Source for both packages. Never published. |
|
|
22
22
|
|
|
23
23
|
---
|
|
24
24
|
|
|
@@ -133,7 +133,7 @@ letterblack-sentinel/
|
|
|
133
133
|
│
|
|
134
134
|
├── types.d.ts Private full type declarations
|
|
135
135
|
├── index.js Private package entry
|
|
136
|
-
├── package.json Private workspace package (
|
|
136
|
+
├── package.json Private workspace package (letterblack-lbe-core)
|
|
137
137
|
├── CHANGELOG.md
|
|
138
138
|
└── WORKSPACE.md This file
|
|
139
139
|
```
|
package/package.json
CHANGED