@scitrera/memorylayer-sdk 0.1.22 → 0.2.0
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/LICENSE +177 -0
- package/README.md +22 -0
- package/dist/client.d.ts +143 -4
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +428 -89
- package/dist/client.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/knowledgebase.d.ts +41 -0
- package/dist/knowledgebase.d.ts.map +1 -0
- package/dist/knowledgebase.js +86 -0
- package/dist/knowledgebase.js.map +1 -0
- package/dist/mcp_servers.d.ts +14 -1
- package/dist/mcp_servers.d.ts.map +1 -1
- package/dist/mcp_servers.js +28 -0
- package/dist/mcp_servers.js.map +1 -1
- package/dist/rpg.d.ts +178 -0
- package/dist/rpg.d.ts.map +1 -0
- package/dist/rpg.js +126 -0
- package/dist/rpg.js.map +1 -0
- package/dist/skills.d.ts +85 -0
- package/dist/skills.d.ts.map +1 -1
- package/dist/skills.js +277 -27
- package/dist/skills.js.map +1 -1
- package/dist/types.d.ts +351 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js.map +1 -1
- package/dist/utils.d.ts +27 -0
- package/dist/utils.d.ts.map +1 -1
- package/dist/utils.js +43 -0
- package/dist/utils.js.map +1 -1
- package/package.json +9 -2
- package/vitest.config.ts +0 -12
package/LICENSE
ADDED
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
package/README.md
CHANGED
|
@@ -40,6 +40,7 @@ console.log(result.memories);
|
|
|
40
40
|
- **Full TypeScript Support** - Complete type definitions included
|
|
41
41
|
- **Memory Operations** - Remember, recall, reflect, forget, decay
|
|
42
42
|
- **Relationship Graph** - Link memories with 60+ relationship types organized into 11 categories
|
|
43
|
+
- **Repository Planning Graph** - Typed `client.rpg` namespace for repository sync, traversal, overlays, conflicts, maintenance, and enrichment
|
|
43
44
|
- **Session Management** - Working memory with TTL and commit
|
|
44
45
|
- **Context Environment** - Server-side Python sandbox for data operations
|
|
45
46
|
- **Batch Operations** - Bulk create, update, delete
|
|
@@ -140,6 +141,27 @@ const result = await client.batchMemories([
|
|
|
140
141
|
console.log(`Successful: ${result.successful}, Failed: ${result.failed}`);
|
|
141
142
|
```
|
|
142
143
|
|
|
144
|
+
Recall budgets, evidence-backed typed relations, and deterministic session
|
|
145
|
+
recovery are available on the same client:
|
|
146
|
+
|
|
147
|
+
```typescript
|
|
148
|
+
const recalled = await client.recall({
|
|
149
|
+
query: "Who works for Acme?",
|
|
150
|
+
budget_tokens: 600,
|
|
151
|
+
include_confidence: true,
|
|
152
|
+
include_relations: true,
|
|
153
|
+
});
|
|
154
|
+
|
|
155
|
+
const checkpoint = await client.createCheckpoint(sessionId, {
|
|
156
|
+
transcript_segment: transcript,
|
|
157
|
+
content_hash: sha256,
|
|
158
|
+
idempotency_key: `host:${boundary}:${sha256}`,
|
|
159
|
+
source_boundary: boundary,
|
|
160
|
+
});
|
|
161
|
+
const pack = await client.getContextPack(sessionId, { budgetTokens: 2048 });
|
|
162
|
+
const delta = await client.getContextDelta(sessionId, pack.cursor, 512);
|
|
163
|
+
```
|
|
164
|
+
|
|
143
165
|
## Associations
|
|
144
166
|
|
|
145
167
|
```typescript
|
package/dist/client.d.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
import type { Memory, RecallResult, ReflectResult, Association, Session, SessionBriefing, Workspace, Context, RememberOptions, RecallOptions, ReflectOptions, ClientConfig, SessionCreateOptions, SessionStartResponse, CommitOptions, CommitResponse, GraphTraverseOptions, GraphQueryResult, BatchOperation, BatchResult, AssociationCreateOptions, WorkspaceSchema, ContextExecOptions, ContextExecResult, ContextInspectOptions, ContextInspectResult, ContextLoadOptions, ContextLoadResult, ContextInjectOptions, ContextInjectResult, ContextQueryOptions, ContextQueryResult, ContextRlmOptions, ContextRlmResult, ContextStatusResult, WorkspaceExportData, WorkspaceImportResult, DocumentInfo, JobInfo, DocumentUploadOptions, DocumentUploadResponse, PageSearchOptions, PageSearchResponse, PageListResponse, DocumentListResponse, ChatThread, ThreadCreateOptions, ThreadListOptions, MessageAppendInput, ThreadWithMessagesResponse, MessageListResponse, MessagesAppendResponse, DecomposeResponse, DatasetInfo, DatasetJobInfo, DatasetUploadOptions, DatasetUploadResponse, DatasetListResponse, DatasetSliceOptions, DatasetSliceResult, DatasetMemoriesResponse, AuthorityContext } from "./types.js";
|
|
1
|
+
import type { Memory, RecallResult, ReflectResult, Association, Session, SessionBriefing, Workspace, Context, RememberOptions, RecallOptions, ReflectOptions, ClientConfig, SessionCreateOptions, SessionStartResponse, CommitOptions, CommitResponse, GraphTraverseOptions, GraphQueryResult, BatchOperation, BatchResult, AssociationCreateOptions, WorkspaceSchema, ContextExecOptions, ContextExecResult, ContextInspectOptions, ContextInspectResult, ContextLoadOptions, ContextLoadResult, ContextInjectOptions, ContextInjectResult, ContextQueryOptions, ContextQueryResult, ContextRlmOptions, ContextRlmResult, ContextStatusResult, WorkspaceExportData, WorkspaceImportResult, DocumentInfo, JobInfo, DocumentUploadOptions, DocumentUploadResponse, PageSearchOptions, PageSearchResponse, PageListResponse, DocumentListResponse, ChatThread, ThreadCreateOptions, ThreadListOptions, MessageAppendInput, ThreadWithMessagesResponse, MessageListResponse, MessagesAppendResponse, DecomposeResponse, DatasetInfo, DatasetJobInfo, DatasetUploadOptions, DatasetUploadResponse, DatasetListResponse, DatasetSliceOptions, DatasetSliceResult, DatasetMemoriesResponse, AuthorityContext, ApiToken, ApiTokenWithSecret, TokenCreateOptions, MemoryListOptions, MemoryListResponse, Entity, EntityListResponse, EntityResolveResponse, EntityListOptions, EntityResolveOptions, EntityMergeOptions, AssociationUpdateOptions, ThreadUpdateOptions, UserThreadListOptions, SessionCheckpoint, ContextPack, ContextDelta, ContextPackOptions } from "./types.js";
|
|
2
2
|
import { RelationshipType } from "./types.js";
|
|
3
3
|
import { SkillsNamespace } from "./skills.js";
|
|
4
4
|
import { McpServersNamespace } from "./mcp_servers.js";
|
|
5
|
+
import { KnowledgebaseNamespace } from "./knowledgebase.js";
|
|
6
|
+
import { RpgNamespace } from "./rpg.js";
|
|
5
7
|
export declare class MemoryLayerClient {
|
|
6
8
|
private baseUrl;
|
|
7
9
|
private apiKey?;
|
|
@@ -9,10 +11,17 @@ export declare class MemoryLayerClient {
|
|
|
9
11
|
private sessionId?;
|
|
10
12
|
private timeout;
|
|
11
13
|
private defaultAuthority?;
|
|
14
|
+
private fetchImpl;
|
|
15
|
+
private maxRetries;
|
|
16
|
+
private retryBaseDelay;
|
|
12
17
|
/** Skills namespace — access via `client.skills.list(...)` etc. */
|
|
13
18
|
readonly skills: SkillsNamespace;
|
|
14
19
|
/** MCP Servers namespace — access via `client.mcpServers.list(...)` etc. */
|
|
15
20
|
readonly mcpServers: McpServersNamespace;
|
|
21
|
+
/** Knowledgebase namespace — access via `client.kb.get(...)` etc. */
|
|
22
|
+
readonly kb: KnowledgebaseNamespace;
|
|
23
|
+
/** Repository Planning Graph namespace — access via `client.rpg.sync(...)` etc. */
|
|
24
|
+
readonly rpg: RpgNamespace;
|
|
16
25
|
constructor(config?: ClientConfig);
|
|
17
26
|
/**
|
|
18
27
|
* Returns a lightweight proxy that sends OBO headers for the given grant/subject
|
|
@@ -41,6 +50,52 @@ export declare class MemoryLayerClient {
|
|
|
41
50
|
*/
|
|
42
51
|
getSessionId(): string | undefined;
|
|
43
52
|
private buildAuthorityHeaders;
|
|
53
|
+
/**
|
|
54
|
+
* Build the standard request headers (auth, session, workspace, OBO authority).
|
|
55
|
+
* Centralized so every request helper applies identical header logic.
|
|
56
|
+
*
|
|
57
|
+
* Note: upload/stream paths (exportWorkspace, importWorkspaceStream,
|
|
58
|
+
* uploadDocument, uploadDataset, getPageImage) call this method and therefore
|
|
59
|
+
* intentionally inherit authority (X-Aether-*) headers when a defaultAuthority
|
|
60
|
+
* is set — consistent with every other request type.
|
|
61
|
+
*
|
|
62
|
+
* @param includeContentType Whether to set `Content-Type: application/json`.
|
|
63
|
+
* Omit for multipart/form-data (browser sets the boundary) or NDJSON bodies
|
|
64
|
+
* that set their own content type.
|
|
65
|
+
*/
|
|
66
|
+
private buildHeaders;
|
|
67
|
+
/**
|
|
68
|
+
* Determine whether a failed response is transient and should be retried.
|
|
69
|
+
* Retries 429 (rate limit) and 5xx server errors. 501 is treated as a
|
|
70
|
+
* permanent "not implemented" signal and is never retried.
|
|
71
|
+
*/
|
|
72
|
+
private isRetryableStatus;
|
|
73
|
+
/**
|
|
74
|
+
* Parse a `Retry-After` header (delta-seconds or HTTP-date) into milliseconds.
|
|
75
|
+
* Returns undefined when absent or unparseable.
|
|
76
|
+
*/
|
|
77
|
+
private parseRetryAfter;
|
|
78
|
+
/**
|
|
79
|
+
* Returns true when the HTTP method is safe to retry after a transient failure.
|
|
80
|
+
* POST is excluded to prevent duplicate writes (e.g. duplicate memories/edges
|
|
81
|
+
* after a post-commit 504). recall/reflect/mergeEntities are POST-but-read or
|
|
82
|
+
* write-once, but are deliberately left non-retried for safety and consistency
|
|
83
|
+
* with the Python SDK.
|
|
84
|
+
*/
|
|
85
|
+
private isIdempotentMethod;
|
|
86
|
+
/**
|
|
87
|
+
* Execute a fetch with bounded retry-with-backoff for transient failures
|
|
88
|
+
* (5xx, 429). Honors the `Retry-After` header when present, otherwise uses
|
|
89
|
+
* exponential backoff. Non-transient failures and successful responses are
|
|
90
|
+
* returned/raised immediately.
|
|
91
|
+
*
|
|
92
|
+
* Retries are gated on method idempotency: only GET/HEAD/OPTIONS/PUT/DELETE/PATCH
|
|
93
|
+
* are retried. POST is never retried automatically to avoid duplicate writes.
|
|
94
|
+
*
|
|
95
|
+
* This is the single network seam used by every request helper, so retry and
|
|
96
|
+
* header handling stay consistent across the client.
|
|
97
|
+
*/
|
|
98
|
+
private executeFetch;
|
|
44
99
|
private request;
|
|
45
100
|
private handleError;
|
|
46
101
|
remember(content: string, options?: RememberOptions): Promise<Memory>;
|
|
@@ -54,6 +109,29 @@ export declare class MemoryLayerClient {
|
|
|
54
109
|
decay(memoryId: string, decayRate?: number): Promise<Memory>;
|
|
55
110
|
associate(sourceId: string, targetId: string, relationship: RelationshipType, strength?: number): Promise<Association>;
|
|
56
111
|
getAssociations(memoryId: string, direction?: "outgoing" | "incoming" | "both"): Promise<Association[]>;
|
|
112
|
+
/**
|
|
113
|
+
* Update an association's strength and/or metadata.
|
|
114
|
+
*
|
|
115
|
+
* `memoryId` must be one of the association's endpoints (source or target);
|
|
116
|
+
* otherwise the server returns 404. Re-typing an edge is not supported —
|
|
117
|
+
* delete and recreate instead.
|
|
118
|
+
*/
|
|
119
|
+
updateAssociation(memoryId: string, associationId: string, updates: AssociationUpdateOptions): Promise<void>;
|
|
120
|
+
/**
|
|
121
|
+
* Delete an association (graph edge) by ID.
|
|
122
|
+
*
|
|
123
|
+
* `memoryId` must be one of the association's endpoints (source or target);
|
|
124
|
+
* otherwise the server returns 404.
|
|
125
|
+
*/
|
|
126
|
+
deleteAssociation(memoryId: string, associationId: string): Promise<void>;
|
|
127
|
+
/**
|
|
128
|
+
* List/browse memories in the workspace ordered by recency (created_at desc).
|
|
129
|
+
*
|
|
130
|
+
* Unlike {@link recall} this performs no vector search — it is a plain
|
|
131
|
+
* filtered enumeration for browsing. Supports limit/offset pagination and
|
|
132
|
+
* optional type/subtype/tag/context filters.
|
|
133
|
+
*/
|
|
134
|
+
listMemories(options?: MemoryListOptions): Promise<MemoryListResponse>;
|
|
57
135
|
/**
|
|
58
136
|
* Create a new session.
|
|
59
137
|
*
|
|
@@ -68,6 +146,17 @@ export declare class MemoryLayerClient {
|
|
|
68
146
|
includeExpired?: boolean;
|
|
69
147
|
}): Promise<Session[]>;
|
|
70
148
|
getSession(sessionId: string): Promise<Session>;
|
|
149
|
+
createCheckpoint(sessionId: string, input: {
|
|
150
|
+
transcriptSegment: string;
|
|
151
|
+
contentHash: string;
|
|
152
|
+
idempotencyKey: string;
|
|
153
|
+
sourceKind?: string;
|
|
154
|
+
sourceSequence?: number;
|
|
155
|
+
sourceBoundary?: number;
|
|
156
|
+
}): Promise<SessionCheckpoint>;
|
|
157
|
+
getCheckpoint(sessionId: string, checkpointId: string): Promise<SessionCheckpoint>;
|
|
158
|
+
getContextPack(sessionId: string, options?: ContextPackOptions): Promise<ContextPack>;
|
|
159
|
+
getContextDelta(sessionId: string, cursor: string, budgetTokens?: number): Promise<ContextDelta>;
|
|
71
160
|
deleteSession(sessionId: string): Promise<void>;
|
|
72
161
|
setWorkingMemory(sessionId: string, key: string, value: unknown): Promise<void>;
|
|
73
162
|
getWorkingMemory(sessionId: string, key?: string): Promise<Record<string, unknown>>;
|
|
@@ -80,15 +169,50 @@ export declare class MemoryLayerClient {
|
|
|
80
169
|
includeMemories?: boolean;
|
|
81
170
|
includeContradictions?: boolean;
|
|
82
171
|
}, includeContradictions?: boolean): Promise<SessionBriefing>;
|
|
83
|
-
createWorkspace(name: string, settings?: Record<string, unknown
|
|
172
|
+
createWorkspace(name: string, settings?: Record<string, unknown>, tags?: string[]): Promise<Workspace>;
|
|
84
173
|
getWorkspace(workspaceId?: string): Promise<Workspace>;
|
|
85
|
-
listWorkspaces(
|
|
174
|
+
listWorkspaces(filter?: {
|
|
175
|
+
tags?: string[];
|
|
176
|
+
match?: "any" | "all";
|
|
177
|
+
}): Promise<Workspace[]>;
|
|
86
178
|
updateWorkspace(workspaceId: string, updates: {
|
|
87
179
|
name?: string;
|
|
88
180
|
settings?: Record<string, unknown>;
|
|
181
|
+
tags?: string[];
|
|
89
182
|
}): Promise<Workspace>;
|
|
90
183
|
createContext(name: string, description?: string, settings?: Record<string, unknown>): Promise<Context>;
|
|
91
184
|
listContexts(): Promise<Context[]>;
|
|
185
|
+
deleteContext(contextId: string, workspaceId?: string): Promise<void>;
|
|
186
|
+
/** List canonical entities in a workspace (deterministic order by id). */
|
|
187
|
+
listEntities(options?: EntityListOptions): Promise<EntityListResponse>;
|
|
188
|
+
/** Get a single canonical entity by id. */
|
|
189
|
+
getEntity(entityId: string, workspaceId?: string): Promise<Entity>;
|
|
190
|
+
/**
|
|
191
|
+
* Resolve a surface name/alias to an existing canonical entity (never
|
|
192
|
+
* creates). Throws NotFoundError if no entity matches.
|
|
193
|
+
*/
|
|
194
|
+
resolveEntity(name: string, options?: EntityResolveOptions): Promise<EntityResolveResponse>;
|
|
195
|
+
/**
|
|
196
|
+
* Merge `sourceId` into `targetId`; returns the surviving target entity.
|
|
197
|
+
* Requires the entity registry to be enabled (501 -> EnterpriseRequiredError).
|
|
198
|
+
*/
|
|
199
|
+
mergeEntities(options: EntityMergeOptions): Promise<Entity>;
|
|
200
|
+
/** List API tokens. Set `includeRevoked` to also return revoked tokens. */
|
|
201
|
+
listTokens(includeRevoked?: boolean): Promise<ApiToken[]>;
|
|
202
|
+
/**
|
|
203
|
+
* Create a new API token. The returned object includes the plaintext
|
|
204
|
+
* `token` value, which is only ever available at creation time.
|
|
205
|
+
*/
|
|
206
|
+
createToken(options: TokenCreateOptions): Promise<ApiTokenWithSecret>;
|
|
207
|
+
/** Get details for a single API token. */
|
|
208
|
+
getToken(tokenId: string): Promise<ApiToken>;
|
|
209
|
+
/** Delete an API token. */
|
|
210
|
+
deleteToken(tokenId: string): Promise<void>;
|
|
211
|
+
/**
|
|
212
|
+
* Revoke an API token. Revoked tokens are invalidated immediately but remain
|
|
213
|
+
* visible in listings (with `revoked=true`).
|
|
214
|
+
*/
|
|
215
|
+
revokeToken(tokenId: string): Promise<void>;
|
|
92
216
|
batchMemories(operations: BatchOperation[]): Promise<BatchResult>;
|
|
93
217
|
traceMemory(memoryId: string): Promise<Record<string, unknown>>;
|
|
94
218
|
traverseGraph(startMemoryId: string, options?: GraphTraverseOptions): Promise<GraphQueryResult>;
|
|
@@ -183,6 +307,17 @@ export declare class MemoryLayerClient {
|
|
|
183
307
|
order?: "asc" | "desc";
|
|
184
308
|
}): Promise<ThreadWithMessagesResponse>;
|
|
185
309
|
deleteThread(threadId: string, workspaceId?: string): Promise<void>;
|
|
310
|
+
/**
|
|
311
|
+
* List chat threads owned by a user across all workspaces.
|
|
312
|
+
*
|
|
313
|
+
* Unlike {@link listThreads}, this is keyed on (tenant, user, ownership) and
|
|
314
|
+
* does NOT require a workspace filter — used for user-session-scoped views.
|
|
315
|
+
*/
|
|
316
|
+
listUserThreads(userId: string, options?: UserThreadListOptions): Promise<ChatThread[]>;
|
|
317
|
+
/** Update a thread (e.g. rename or change metadata). */
|
|
318
|
+
updateThread(threadId: string, updates: ThreadUpdateOptions): Promise<ChatThread>;
|
|
319
|
+
/** Delete a single message from a thread. */
|
|
320
|
+
deleteMessage(threadId: string, messageId: string, workspaceId?: string): Promise<void>;
|
|
186
321
|
appendMessages(threadId: string, messages: MessageAppendInput[], workspaceId?: string): Promise<MessagesAppendResponse>;
|
|
187
322
|
getMessages(threadId: string, options?: {
|
|
188
323
|
workspaceId?: string;
|
|
@@ -244,9 +379,13 @@ export declare class MemoryLayerClient {
|
|
|
244
379
|
*/
|
|
245
380
|
cancelDatasetJob(jobId: string): Promise<void>;
|
|
246
381
|
/** Used internally by SkillsNamespace to make requests with OBO authority. */
|
|
247
|
-
_skillsRequest<T>(method: string, path: string, body?: unknown, authority?: AuthorityContext): Promise<T>;
|
|
382
|
+
_skillsRequest<T>(method: string, path: string, body?: unknown, authority?: AuthorityContext, responseMode?: "json" | "text" | "arraybuffer"): Promise<T>;
|
|
248
383
|
/** Used internally by McpServersNamespace to make requests with OBO authority. */
|
|
249
384
|
_mcpServersRequest<T>(method: string, path: string, body?: unknown, authority?: AuthorityContext): Promise<T>;
|
|
385
|
+
/** Used internally by KnowledgebaseNamespace to make requests with OBO authority. */
|
|
386
|
+
_kbRequest<T>(method: string, path: string, body?: unknown, authority?: AuthorityContext, responseMode?: "json" | "text" | "arraybuffer"): Promise<T>;
|
|
387
|
+
/** Used internally by RpgNamespace to make requests with OBO authority. */
|
|
388
|
+
_rpgRequest<T>(method: string, path: string, body?: unknown, authority?: AuthorityContext): Promise<T>;
|
|
250
389
|
}
|
|
251
390
|
/**
|
|
252
391
|
* Lightweight OBO proxy returned by `client.actingFor()`.
|
package/dist/client.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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"}
|