@emeryld/rrroutes-export 1.1.1 → 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.
Files changed (49) hide show
  1. package/README.md +115 -1
  2. package/bin/rrroutes-checkpoint.mjs +9 -0
  3. package/bin/rrroutes-export-changes.mjs +9 -0
  4. package/bin/rrroutes-export-snapshot.mjs +9 -0
  5. package/bin/rrroutes-inspector-serve.mjs +9 -0
  6. package/dist/adapters/express.d.ts +6 -0
  7. package/dist/checkpoint/lock.d.ts +4 -0
  8. package/dist/checkpoint/retention.d.ts +15 -0
  9. package/dist/checkpoint/service.d.ts +11 -0
  10. package/dist/checkpoint/types.d.ts +65 -0
  11. package/dist/cli/changes.d.ts +4 -0
  12. package/dist/cli/checkpoint.d.ts +1 -0
  13. package/dist/cli/runtime.d.ts +7 -0
  14. package/dist/cli/serve.d.ts +7 -0
  15. package/dist/cli/snapshot.d.ts +4 -0
  16. package/dist/diff/diff-snapshots.d.ts +4 -0
  17. package/dist/diff/types.d.ts +58 -0
  18. package/dist/exportFinalizedLeaves.changelog.d.ts +4 -0
  19. package/dist/files/baked-payload.d.ts +21 -0
  20. package/dist/files/write.d.ts +10 -0
  21. package/dist/http/handler.d.ts +2 -0
  22. package/dist/http/types.d.ts +24 -0
  23. package/dist/index.cjs +3094 -118
  24. package/dist/index.cjs.map +1 -1
  25. package/dist/index.d.ts +25 -0
  26. package/dist/index.mjs +3065 -116
  27. package/dist/index.mjs.map +1 -1
  28. package/dist/inspection/diagnostics.d.ts +8 -0
  29. package/dist/inspection/inspect-clients.d.ts +9 -0
  30. package/dist/inspection/inspect-contract.d.ts +8 -0
  31. package/dist/inspection/inspect-server.d.ts +8 -0
  32. package/dist/inspection/inspect-sockets.d.ts +4 -0
  33. package/dist/inspection/join-routes.d.ts +10 -0
  34. package/dist/inspection/native.d.ts +4 -0
  35. package/dist/inspection/normalize-clients.d.ts +8 -0
  36. package/dist/inspection/normalize-routes.d.ts +3 -0
  37. package/dist/inspection/normalize-sockets.d.ts +7 -0
  38. package/dist/inspection/serializable.d.ts +3 -0
  39. package/dist/runtime.d.ts +16 -0
  40. package/dist/serializeLeafContract.d.ts +1 -0
  41. package/dist/snapshot/build.d.ts +2 -0
  42. package/dist/snapshot/canonicalize.d.ts +6 -0
  43. package/dist/snapshot/hash.d.ts +5 -0
  44. package/dist/snapshot/types.d.ts +287 -0
  45. package/dist/storage/filesystem.d.ts +5 -0
  46. package/dist/storage/memory.d.ts +2 -0
  47. package/dist/storage/sqlite.d.ts +15 -0
  48. package/dist/storage/types.d.ts +27 -0
  49. package/package.json +66 -7
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';