Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Node.js SDK for signing IntentProof `ExecutionEvent` records locally.
- `wrap(intent, action, fn)` instrumentation
- Ed25519 signing and JCS canonicalization
- SQLite outbox for durable local capture
- Export events to your app or bundle pipeline (no hosted service required)
- Export events to your app or bundle pipeline

## Install

Expand Down
2 changes: 1 addition & 1 deletion src/exporter.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Posts signed ExecutionEvents to hosted or local ingest when configured.
* Posts signed ExecutionEvents to a configured ingest URL when set.
*/

const DEFAULT_LOCAL_INGEST_URL = 'http://127.0.0.1:9787/v1/events';
Expand Down
2 changes: 1 addition & 1 deletion tests/ingest_contract.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { configure, wrap, runWithCorrelationId, flush } from '../src/index';
import { assertValidExecutionEvent } from './helpers/spec_schema';

/**
* Minimal ingest contract exercised by hosted ingest tests: bearer required,
* Minimal ingest contract: bearer required when ingest auth is enabled,
* JSON execution event body, 202 Accepted on success.
*/
describe('ingest contract (local-loop shape)', () => {
Expand Down