@emeryld/rrroutes-export 1.1.0 → 1.1.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.
- package/README.md +115 -1
- package/bin/rrroutes-checkpoint.mjs +9 -0
- package/bin/rrroutes-export-changes.mjs +9 -0
- package/bin/rrroutes-export-snapshot.mjs +9 -0
- package/bin/rrroutes-inspector-serve.mjs +9 -0
- package/dist/adapters/express.d.ts +6 -0
- package/dist/checkpoint/lock.d.ts +4 -0
- package/dist/checkpoint/retention.d.ts +15 -0
- package/dist/checkpoint/service.d.ts +11 -0
- package/dist/checkpoint/types.d.ts +65 -0
- package/dist/cli/changes.d.ts +4 -0
- package/dist/cli/checkpoint.d.ts +1 -0
- package/dist/cli/runtime.d.ts +7 -0
- package/dist/cli/serve.d.ts +7 -0
- package/dist/cli/snapshot.d.ts +4 -0
- package/dist/diff/diff-snapshots.d.ts +4 -0
- package/dist/diff/types.d.ts +58 -0
- package/dist/exportFinalizedLeaves.changelog.d.ts +4 -0
- package/dist/files/baked-payload.d.ts +21 -0
- package/dist/files/write.d.ts +10 -0
- package/dist/http/handler.d.ts +2 -0
- package/dist/http/types.d.ts +24 -0
- package/dist/index.cjs +3100 -121
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +25 -0
- package/dist/index.mjs +3070 -118
- package/dist/index.mjs.map +1 -1
- package/dist/inspection/diagnostics.d.ts +8 -0
- package/dist/inspection/inspect-clients.d.ts +9 -0
- package/dist/inspection/inspect-contract.d.ts +8 -0
- package/dist/inspection/inspect-server.d.ts +8 -0
- package/dist/inspection/inspect-sockets.d.ts +4 -0
- package/dist/inspection/join-routes.d.ts +10 -0
- package/dist/inspection/native.d.ts +4 -0
- package/dist/inspection/normalize-clients.d.ts +8 -0
- package/dist/inspection/normalize-routes.d.ts +3 -0
- package/dist/inspection/normalize-sockets.d.ts +7 -0
- package/dist/inspection/serializable.d.ts +3 -0
- package/dist/runtime.d.ts +16 -0
- package/dist/serializeLeafContract.d.ts +1 -0
- package/dist/snapshot/build.d.ts +2 -0
- package/dist/snapshot/canonicalize.d.ts +6 -0
- package/dist/snapshot/hash.d.ts +5 -0
- package/dist/snapshot/types.d.ts +287 -0
- package/dist/storage/filesystem.d.ts +5 -0
- package/dist/storage/memory.d.ts +2 -0
- package/dist/storage/sqlite.d.ts +15 -0
- package/dist/storage/types.d.ts +27 -0
- package/package.json +70 -8
package/dist/index.d.ts
CHANGED
|
@@ -8,3 +8,28 @@ export * from './exportFinalizedLeaves.changelog.cli';
|
|
|
8
8
|
export * from './exportFinalizedLeaves.bundle';
|
|
9
9
|
export * from './defaultViewerTemplate';
|
|
10
10
|
export * from './extractLeafSourceByAst';
|
|
11
|
+
export type { RouteKey } from '@emeryld/rrroutes-contract';
|
|
12
|
+
export * from './snapshot/types';
|
|
13
|
+
export * from './snapshot/canonicalize';
|
|
14
|
+
export * from './snapshot/hash';
|
|
15
|
+
export * from './snapshot/build';
|
|
16
|
+
export * from './diff/types';
|
|
17
|
+
export * from './diff/diff-snapshots';
|
|
18
|
+
export * from './checkpoint/types';
|
|
19
|
+
export * from './checkpoint/service';
|
|
20
|
+
export * from './checkpoint/retention';
|
|
21
|
+
export * from './storage/types';
|
|
22
|
+
export * from './storage/memory';
|
|
23
|
+
export * from './storage/filesystem';
|
|
24
|
+
export * from './storage/sqlite';
|
|
25
|
+
export * from './http/types';
|
|
26
|
+
export * from './http/handler';
|
|
27
|
+
export * from './adapters/express';
|
|
28
|
+
export * from './files/write';
|
|
29
|
+
export * from './files/baked-payload';
|
|
30
|
+
export * from './runtime';
|
|
31
|
+
export * from './cli/runtime';
|
|
32
|
+
export * from './cli/snapshot';
|
|
33
|
+
export * from './cli/changes';
|
|
34
|
+
export * from './cli/checkpoint';
|
|
35
|
+
export * from './cli/serve';
|