@hasna/mementos 0.14.75 → 0.14.79

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 (63) hide show
  1. package/bun.lock +93 -0
  2. package/dist/cli/commands/info-context.d.ts.map +1 -1
  3. package/dist/cli/commands/info-stale.d.ts.map +1 -1
  4. package/dist/cli/commands/io-export.d.ts.map +1 -1
  5. package/dist/cli/commands/memory-cmd-crud.d.ts.map +1 -1
  6. package/dist/cli/commands/memory-cmd-list.d.ts.map +1 -1
  7. package/dist/cli/commands/memory-cmd-recall.d.ts.map +1 -1
  8. package/dist/cli/commands/memory-cmd-search.d.ts.map +1 -1
  9. package/dist/cli/commands/memory-cmd-tail.d.ts.map +1 -1
  10. package/dist/cli/commands/project.d.ts.map +1 -1
  11. package/dist/cli/commands/system-watch.d.ts.map +1 -1
  12. package/dist/cli/helpers.d.ts +38 -0
  13. package/dist/cli/helpers.d.ts.map +1 -1
  14. package/dist/cli/index.js +2009 -334
  15. package/dist/db/__fixtures__/fail-closed-stub-server.d.ts.map +1 -1
  16. package/dist/db/memory-project-link.d.ts +13 -0
  17. package/dist/db/memory-project-link.d.ts.map +1 -0
  18. package/dist/db/migrations.d.ts.map +1 -1
  19. package/dist/db/pg-migrations.d.ts +0 -6
  20. package/dist/db/pg-migrations.d.ts.map +1 -1
  21. package/dist/db/projects.d.ts +22 -1
  22. package/dist/db/projects.d.ts.map +1 -1
  23. package/dist/index.d.ts +5 -2
  24. package/dist/index.d.ts.map +1 -1
  25. package/dist/index.js +2828 -163
  26. package/dist/lib/package-version.d.ts +3 -0
  27. package/dist/lib/package-version.d.ts.map +1 -0
  28. package/dist/mcp/index.js +414 -0
  29. package/dist/memory-project-link/index.d.ts +2 -0
  30. package/dist/memory-project-link/index.d.ts.map +1 -0
  31. package/dist/memory-project-link/schema.d.ts +5 -0
  32. package/dist/memory-project-link/schema.d.ts.map +1 -0
  33. package/dist/project-registration/authority.d.ts +39 -0
  34. package/dist/project-registration/authority.d.ts.map +1 -0
  35. package/dist/project-registration/http.d.ts +29 -0
  36. package/dist/project-registration/http.d.ts.map +1 -0
  37. package/dist/project-registration/index.d.ts +8 -0
  38. package/dist/project-registration/index.d.ts.map +1 -0
  39. package/dist/project-registration/project-references.d.ts +71 -0
  40. package/dist/project-registration/project-references.d.ts.map +1 -0
  41. package/dist/project-registration/schema.d.ts +5 -0
  42. package/dist/project-registration/schema.d.ts.map +1 -0
  43. package/dist/project-registration/types.d.ts +168 -0
  44. package/dist/project-registration/types.d.ts.map +1 -0
  45. package/dist/project-registration.d.ts +2 -0
  46. package/dist/project-registration.d.ts.map +1 -0
  47. package/dist/project-registration.js +1496 -0
  48. package/dist/sdk/index.d.ts +127 -0
  49. package/dist/sdk/index.d.ts.map +1 -1
  50. package/dist/sdk/index.js +74 -0
  51. package/dist/server/index.d.ts +1 -0
  52. package/dist/server/index.d.ts.map +1 -1
  53. package/dist/server/index.js +2573 -138
  54. package/dist/server/routes/memories.d.ts +1 -0
  55. package/dist/server/routes/memories.d.ts.map +1 -1
  56. package/dist/server/routes/memory-project-link.d.ts +2 -0
  57. package/dist/server/routes/memory-project-link.d.ts.map +1 -0
  58. package/dist/server/routes/project-registration.d.ts +2 -0
  59. package/dist/server/routes/project-registration.d.ts.map +1 -0
  60. package/dist/types/index.d.ts +119 -0
  61. package/dist/types/index.d.ts.map +1 -1
  62. package/package.json +9 -3
  63. package/dashboard/bun.lock +0 -519
@@ -0,0 +1,168 @@
1
+ export declare const MEMENTOS_PROJECT_REGISTRATION_ROUTE: "mementos.project-registration.v1";
2
+ export declare const MEMENTOS_PROJECT_REGISTRATION_CALLER_ROUTE: "projects.full-registration.v1";
3
+ export declare const MEMENTOS_PROJECT_REGISTRATION_SCHEMA_VERSION: 1;
4
+ export declare const MEMENTOS_PROJECT_GUARDED_UPDATE_ROUTE: "mementos.project-guarded-update.v1";
5
+ export type MementosProjectRegistrationResourceKind = "project";
6
+ export type MementosProjectRegistrationDirection = "forward" | "inverse";
7
+ export type MementosProjectRegistrationOutcome = "accepted" | "duplicate_of_accepted" | "terminal_nonacceptance";
8
+ export interface MementosProjectRegistrationBounds {
9
+ response_byte_limit: number;
10
+ time_budget_ms: number;
11
+ }
12
+ export interface MementosProjectRegistrationResponseControl extends MementosProjectRegistrationBounds {
13
+ response_bytes: number;
14
+ elapsed_ms: number;
15
+ complete: true;
16
+ truncated: false;
17
+ }
18
+ export interface MementosProjectRegistrationCapability {
19
+ authority: "mementos";
20
+ route: typeof MEMENTOS_PROJECT_REGISTRATION_ROUTE;
21
+ package_version: string;
22
+ authority_id: string;
23
+ tenant_id: string;
24
+ corpus_id: string;
25
+ supported_resources: ["project"];
26
+ conditional_create: true;
27
+ immutable_receipts: true;
28
+ exact_terminal_lookup: true;
29
+ exact_readback: true;
30
+ conditional_inverse: true;
31
+ ambiguous_outcome_reconciliation: true;
32
+ guarded_update: true;
33
+ no_write_dry_run: true;
34
+ expected_revision_compare_and_swap: true;
35
+ caller_idempotency: true;
36
+ exact_inverse_rollback: true;
37
+ }
38
+ export interface MementosProjectRegistrationReceipt {
39
+ receipt_id: string;
40
+ authority: "mementos";
41
+ route: typeof MEMENTOS_PROJECT_REGISTRATION_ROUTE;
42
+ package_version: string;
43
+ authority_id: string;
44
+ tenant_id: string;
45
+ corpus_id: string;
46
+ operation_id: string;
47
+ step_id: string;
48
+ resource_kind: "project";
49
+ direction: MementosProjectRegistrationDirection;
50
+ idempotency_key: string;
51
+ request_digest: string;
52
+ precondition_digest: string;
53
+ outcome: MementosProjectRegistrationOutcome;
54
+ reason: string | null;
55
+ target_id: string | null;
56
+ result_revision: string | null;
57
+ result_digest: string | null;
58
+ duplicate_of_receipt_id: string | null;
59
+ accepted_receipt_id: string | null;
60
+ created_by_operation: boolean;
61
+ created_at: string;
62
+ }
63
+ export interface MementosProjectRegistrationRecord {
64
+ target_id: string;
65
+ revision: string;
66
+ digest: string;
67
+ }
68
+ /**
69
+ * Structural handle implemented by @hasna/projects. The absolute path can be
70
+ * consumed by this authority but is never returned in a capability, receipt,
71
+ * lookup, or exact-read response.
72
+ */
73
+ export interface MementosProjectRegistrationPathHandle {
74
+ withOwnedPath<T>(consumer: (absolutePath: string) => T): T;
75
+ }
76
+ export interface MementosProjectRegistrationRequest extends MementosProjectRegistrationBounds {
77
+ operation_id: string;
78
+ step_id: string;
79
+ resource_kind: "project";
80
+ direction: MementosProjectRegistrationDirection;
81
+ authority_route: string;
82
+ package_version: string;
83
+ authority_id: string;
84
+ tenant_id: string;
85
+ corpus_id: string;
86
+ target_selector: string;
87
+ idempotency_key: string;
88
+ request_digest: string;
89
+ precondition_digest: string;
90
+ project_id: string;
91
+ project_slug: string;
92
+ project_name: string;
93
+ desired: Record<string, unknown>;
94
+ target: MementosProjectRegistrationPathHandle;
95
+ accepted_receipt?: MementosProjectRegistrationReceipt;
96
+ }
97
+ export interface MementosProjectRegistrationLookupRequest extends MementosProjectRegistrationBounds {
98
+ operation_id: string;
99
+ step_id: string;
100
+ resource_kind: "project";
101
+ direction: MementosProjectRegistrationDirection;
102
+ authority: "mementos";
103
+ authority_route: string;
104
+ package_version: string;
105
+ authority_id: string;
106
+ tenant_id: string;
107
+ corpus_id: string;
108
+ target_selector: string;
109
+ idempotency_key: string;
110
+ target_id?: string;
111
+ max_items: 1;
112
+ }
113
+ export interface MementosProjectRegistrationLookupResult {
114
+ receipt: MementosProjectRegistrationReceipt;
115
+ response_control: MementosProjectRegistrationResponseControl;
116
+ }
117
+ export interface MementosProjectRegistrationInverseVerification {
118
+ target_id: string;
119
+ accepted_receipt_id: string;
120
+ absent: true;
121
+ digest: string;
122
+ }
123
+ export interface MementosProjectRegistrationAuthority {
124
+ readonly authority: "mementos";
125
+ capability(): Promise<MementosProjectRegistrationCapability>;
126
+ create(request: MementosProjectRegistrationRequest): Promise<MementosProjectRegistrationReceipt>;
127
+ readExact(request: {
128
+ resource_kind: "project";
129
+ target_id: string;
130
+ target: MementosProjectRegistrationPathHandle;
131
+ response_byte_limit: number;
132
+ time_budget_ms: number;
133
+ }): Promise<MementosProjectRegistrationRecord>;
134
+ lookupReceipt(request: MementosProjectRegistrationLookupRequest): Promise<MementosProjectRegistrationLookupResult>;
135
+ compensate(request: MementosProjectRegistrationRequest): Promise<MementosProjectRegistrationReceipt>;
136
+ verifyInverse(request: MementosProjectRegistrationRequest): Promise<MementosProjectRegistrationInverseVerification>;
137
+ }
138
+ export type MementosProjectRegistrationFaultPoint = "before_object_write" | "after_object_write" | "before_receipt_write" | "after_receipt_write" | "after_commit";
139
+ export interface MementosProjectRegistrationAuthorityOptions {
140
+ packageVersion?: string;
141
+ authorityId?: string;
142
+ tenantId?: string;
143
+ corpusId?: string;
144
+ now?: () => string;
145
+ faultInjector?: (point: MementosProjectRegistrationFaultPoint, context: {
146
+ operation_id: string;
147
+ step_id: string;
148
+ resource_kind: "project";
149
+ direction: MementosProjectRegistrationDirection;
150
+ }) => void;
151
+ }
152
+ export type MementosProjectRegistrationErrorCode = "MEMENTOS_PROJECT_REGISTRATION_INVALID_INPUT" | "MEMENTOS_PROJECT_REGISTRATION_INVALID_BOUNDS" | "MEMENTOS_PROJECT_REGISTRATION_RESPONSE_TOO_LARGE" | "MEMENTOS_PROJECT_REGISTRATION_TIME_BUDGET_EXCEEDED" | "MEMENTOS_PROJECT_REGISTRATION_CAPABILITY_MISMATCH" | "MEMENTOS_PROJECT_REGISTRATION_DIGEST_MISMATCH" | "MEMENTOS_PROJECT_REGISTRATION_IDEMPOTENCY_MISMATCH" | "MEMENTOS_PROJECT_REGISTRATION_EXACT_ID_REQUIRED" | "MEMENTOS_PROJECT_REGISTRATION_RECEIPT_NOT_FOUND" | "MEMENTOS_PROJECT_REGISTRATION_RECORD_NOT_FOUND" | "MEMENTOS_PROJECT_REGISTRATION_ACCEPTED_RECEIPT_NOT_FOUND" | "MEMENTOS_PROJECT_REGISTRATION_ATOMICITY_UNAVAILABLE" | "MEMENTOS_PROJECT_REGISTRATION_CONFLICT";
153
+ export declare class MementosProjectRegistrationError extends Error {
154
+ readonly code: MementosProjectRegistrationErrorCode;
155
+ readonly details: Record<string, unknown>;
156
+ constructor(code: MementosProjectRegistrationErrorCode, message: string, details?: Record<string, unknown>);
157
+ }
158
+ export interface MementosProjectRegistrationHttpClientOptions {
159
+ baseUrl: string;
160
+ apiKey?: string;
161
+ fetch?: typeof globalThis.fetch;
162
+ headers?: Record<string, string>;
163
+ }
164
+ /** Private wire request used only between the package-owned HTTP client/server. */
165
+ export interface MementosProjectRegistrationWireRequest extends Omit<MementosProjectRegistrationRequest, "target"> {
166
+ canonical_path: string;
167
+ }
168
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/project-registration/types.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export * from "./project-registration/index.js";
2
+ //# sourceMappingURL=project-registration.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"project-registration.d.ts","sourceRoot":"","sources":["../src/project-registration.ts"],"names":[],"mappings":"AAAA,cAAc,iCAAiC,CAAC"}