memorysync-sdk 1.2.0 → 1.4.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/dist/index.d.mts +349 -1
- package/dist/index.d.ts +349 -1
- package/dist/index.js +523 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +511 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +49 -49
package/dist/index.d.mts
CHANGED
|
@@ -26,6 +26,343 @@ declare class ServerError extends MemorySyncError {
|
|
|
26
26
|
constructor(message: string, options?: ErrorOptions);
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
+
/**
|
|
30
|
+
* Connector namespaces — `client.connections`, `client.objects` and friends.
|
|
31
|
+
*
|
|
32
|
+
* Covers the connector API: creating and managing connections to Slack, Google
|
|
33
|
+
* Drive, S3 and Granola, driving syncs, and inspecting the objects a sync
|
|
34
|
+
* produced. Shaped after `client.connections.*` in comparable SDKs so the layout
|
|
35
|
+
* is familiar.
|
|
36
|
+
*
|
|
37
|
+
* ## Why these return raw payloads
|
|
38
|
+
*
|
|
39
|
+
* Connector responses are large, provider-shaped and still moving — a Slack
|
|
40
|
+
* channel listing looks nothing like an S3 prefix listing, and both carry
|
|
41
|
+
* provider fields that change when the provider changes. Freezing them into
|
|
42
|
+
* interfaces would mean an SDK release every time a provider adds a field, and
|
|
43
|
+
* callers unable to see the new field until then. Typed models are reserved for
|
|
44
|
+
* the small, stable, first-party shapes (memories, history, feedback, ontology).
|
|
45
|
+
*/
|
|
46
|
+
/** The client's request function, injected so namespaces carry no transport. */
|
|
47
|
+
type RequestFn = <T>(method: string, path: string, options?: {
|
|
48
|
+
body?: unknown;
|
|
49
|
+
query?: Record<string, unknown>;
|
|
50
|
+
}) => Promise<T>;
|
|
51
|
+
type Json = Record<string, unknown>;
|
|
52
|
+
declare class Namespace {
|
|
53
|
+
protected readonly req: RequestFn;
|
|
54
|
+
constructor(request: RequestFn);
|
|
55
|
+
}
|
|
56
|
+
/** Slack connection settings. */
|
|
57
|
+
declare class SlackNamespace extends Namespace {
|
|
58
|
+
/**
|
|
59
|
+
* Channels the app can see and could be added.
|
|
60
|
+
*
|
|
61
|
+
* Private channels appear only where the deployment allows them *and* a human
|
|
62
|
+
* has invited the app, so this never widens what someone already granted.
|
|
63
|
+
*/
|
|
64
|
+
availableChannels(connectionId: string, query?: Json): Promise<Json>;
|
|
65
|
+
/** Channels currently selected for syncing. */
|
|
66
|
+
channels(connectionId: string): Promise<Json>;
|
|
67
|
+
/**
|
|
68
|
+
* Select channels for syncing.
|
|
69
|
+
*
|
|
70
|
+
* Accepts bare channel ids, which is the common case, or objects carrying the
|
|
71
|
+
* name and type across so the server does not have to look them up again:
|
|
72
|
+
*
|
|
73
|
+
* ```ts
|
|
74
|
+
* await client.connections.slack.addChannels("c1", ["C0123", "C0456"]);
|
|
75
|
+
* await client.connections.slack.addChannels("c1", [
|
|
76
|
+
* { id: "C0123", name: "support", is_private: false },
|
|
77
|
+
* ]);
|
|
78
|
+
* ```
|
|
79
|
+
*/
|
|
80
|
+
addChannels(connectionId: string, channels: Array<string | Json>): Promise<Json>;
|
|
81
|
+
/** Stop syncing one channel. */
|
|
82
|
+
removeChannel(connectionId: string, channelId: string): Promise<Json>;
|
|
83
|
+
/**
|
|
84
|
+
* Channels this connection will never sync.
|
|
85
|
+
*
|
|
86
|
+
* The deployment-wide floor cannot be removed here; a tenant may only add to it.
|
|
87
|
+
*/
|
|
88
|
+
exclusionPolicy(connectionId: string): Promise<Json>;
|
|
89
|
+
/** Replace this connection's additions to the exclusion policy. */
|
|
90
|
+
setExclusionPolicy(connectionId: string, policy: Json): Promise<Json>;
|
|
91
|
+
/** Slack users seen on this connection and who they map to. */
|
|
92
|
+
identities(connectionId: string): Promise<Json>;
|
|
93
|
+
/** Map a Slack user to a MemorySync end user. */
|
|
94
|
+
linkIdentity(connectionId: string, body: Json): Promise<Json>;
|
|
95
|
+
/** Re-read the Slack member list and refresh the identity table. */
|
|
96
|
+
syncIdentities(connectionId: string): Promise<Json>;
|
|
97
|
+
}
|
|
98
|
+
/** Google Drive connection settings. */
|
|
99
|
+
declare class GoogleDriveNamespace extends Namespace {
|
|
100
|
+
/** Config for rendering Google's own file picker in your UI. */
|
|
101
|
+
pickerConfig(connectionId: string): Promise<Json>;
|
|
102
|
+
/** Files and folders selected for syncing. */
|
|
103
|
+
resources(connectionId: string, query?: Json): Promise<Json>;
|
|
104
|
+
/** Select files or folders for syncing. */
|
|
105
|
+
addResources(connectionId: string, body: Json): Promise<Json>;
|
|
106
|
+
/** Stop syncing one file or folder. */
|
|
107
|
+
removeResource(connectionId: string, resourceId: string): Promise<Json>;
|
|
108
|
+
}
|
|
109
|
+
/** S3 connection settings. */
|
|
110
|
+
declare class S3Namespace extends Namespace {
|
|
111
|
+
/** Prefixes visible in the bucket that could be added. */
|
|
112
|
+
availablePrefixes(connectionId: string, query?: Json): Promise<Json>;
|
|
113
|
+
/** Prefixes currently selected for syncing. */
|
|
114
|
+
prefixes(connectionId: string): Promise<Json>;
|
|
115
|
+
/**
|
|
116
|
+
* Select prefixes for syncing.
|
|
117
|
+
*
|
|
118
|
+
* Accepts bare prefixes, or objects carrying `bucket` and `label`:
|
|
119
|
+
*
|
|
120
|
+
* ```ts
|
|
121
|
+
* await client.connections.s3.addPrefixes("c1", ["handbook/", "policies/"]);
|
|
122
|
+
* await client.connections.s3.addPrefixes("c1", [
|
|
123
|
+
* { prefix: "handbook/", label: "Handbook" },
|
|
124
|
+
* ]);
|
|
125
|
+
* ```
|
|
126
|
+
*
|
|
127
|
+
* An empty string means the bucket root. The bucket defaults to the one the
|
|
128
|
+
* connection's credentials were validated against, and the API rejects any
|
|
129
|
+
* other bucket rather than indexing one nobody proved access to.
|
|
130
|
+
*/
|
|
131
|
+
addPrefixes(connectionId: string, prefixes: Array<string | Json>): Promise<Json>;
|
|
132
|
+
/**
|
|
133
|
+
* Revoke one prefix approval, optionally purging what it produced.
|
|
134
|
+
*
|
|
135
|
+
* The prefix travels as a query parameter, not in the body and not as a path
|
|
136
|
+
* segment: prefixes contain slashes, which a path segment cannot carry
|
|
137
|
+
* unambiguously, and this endpoint reads no body at all.
|
|
138
|
+
*
|
|
139
|
+
* Pass `purge: true` to also delete the memories already derived from the
|
|
140
|
+
* prefix. The default leaves them in place, so revoking an approval does not
|
|
141
|
+
* silently destroy knowledge.
|
|
142
|
+
*/
|
|
143
|
+
removePrefix(connectionId: string, prefix?: string, options?: {
|
|
144
|
+
bucket?: string;
|
|
145
|
+
purge?: boolean;
|
|
146
|
+
}): Promise<Json>;
|
|
147
|
+
/** Keys and patterns this connection will never sync. */
|
|
148
|
+
exclusionPolicy(connectionId: string): Promise<Json>;
|
|
149
|
+
/** Replace this connection's additions to the exclusion policy. */
|
|
150
|
+
setExclusionPolicy(connectionId: string, policy: Json): Promise<Json>;
|
|
151
|
+
/** Effective S3 settings, including the per-object size ceiling. */
|
|
152
|
+
settings(connectionId: string): Promise<Json>;
|
|
153
|
+
}
|
|
154
|
+
/** Granola connection settings. */
|
|
155
|
+
declare class GranolaNamespace extends Namespace {
|
|
156
|
+
/** Folders that could be added. */
|
|
157
|
+
availableFolders(connectionId: string, query?: Json): Promise<Json>;
|
|
158
|
+
/** Folders currently selected for syncing. */
|
|
159
|
+
folders(connectionId: string): Promise<Json>;
|
|
160
|
+
/** Select folders for syncing. */
|
|
161
|
+
addFolders(connectionId: string, body: Json): Promise<Json>;
|
|
162
|
+
/** Stop syncing one folder. */
|
|
163
|
+
removeFolder(connectionId: string, folderId: string): Promise<Json>;
|
|
164
|
+
/** Folders and meetings this connection will never sync. */
|
|
165
|
+
exclusionPolicy(connectionId: string): Promise<Json>;
|
|
166
|
+
/** Replace this connection's additions to the exclusion policy. */
|
|
167
|
+
setExclusionPolicy(connectionId: string, policy: Json): Promise<Json>;
|
|
168
|
+
/** Meeting participants seen on this connection and who they map to. */
|
|
169
|
+
identities(connectionId: string): Promise<Json>;
|
|
170
|
+
/** Map a participant to a MemorySync end user. */
|
|
171
|
+
linkIdentity(connectionId: string, body: Json): Promise<Json>;
|
|
172
|
+
/**
|
|
173
|
+
* Re-run identity matching for this connection.
|
|
174
|
+
*
|
|
175
|
+
* Takes no arguments: the route reads no body and re-matches the whole roster.
|
|
176
|
+
* `body` is kept optional only so a forward-compatible field can be passed
|
|
177
|
+
* once the route grows one.
|
|
178
|
+
*/
|
|
179
|
+
relinkIdentity(connectionId: string, body?: Json): Promise<Json>;
|
|
180
|
+
/** Effective Granola settings for this connection. */
|
|
181
|
+
settings(connectionId: string): Promise<Json>;
|
|
182
|
+
/** Update Granola settings for this connection. */
|
|
183
|
+
setSettings(connectionId: string, settings: Json): Promise<Json>;
|
|
184
|
+
}
|
|
185
|
+
/** Starting an OAuth connection. */
|
|
186
|
+
declare class ConnectionOAuthNamespace extends Namespace {
|
|
187
|
+
/**
|
|
188
|
+
* Begin an OAuth connection and get the URL to send the user to.
|
|
189
|
+
*
|
|
190
|
+
* The user completes consent in a browser and the provider calls the platform
|
|
191
|
+
* back — not your backend. Poll {@link status} to find out how it went.
|
|
192
|
+
*/
|
|
193
|
+
initiate(provider: string, body?: Json): Promise<Json>;
|
|
194
|
+
/** Where an in-flight OAuth connection got to. */
|
|
195
|
+
status(query?: Json): Promise<Json>;
|
|
196
|
+
}
|
|
197
|
+
/**
|
|
198
|
+
* Connections to external sources.
|
|
199
|
+
*
|
|
200
|
+
* Provider-specific settings live in sub-namespaces: `connections.slack`,
|
|
201
|
+
* `connections.gdrive`, `connections.s3`, `connections.granola`.
|
|
202
|
+
*/
|
|
203
|
+
declare class ConnectionsNamespace extends Namespace {
|
|
204
|
+
readonly slack: SlackNamespace;
|
|
205
|
+
readonly gdrive: GoogleDriveNamespace;
|
|
206
|
+
readonly s3: S3Namespace;
|
|
207
|
+
readonly granola: GranolaNamespace;
|
|
208
|
+
readonly oauth: ConnectionOAuthNamespace;
|
|
209
|
+
constructor(request: RequestFn);
|
|
210
|
+
/** Every connection in this organization. */
|
|
211
|
+
list(query?: Json): Promise<Json>;
|
|
212
|
+
/** One connection, including its status and last sync. */
|
|
213
|
+
get(connectionId: string): Promise<Json>;
|
|
214
|
+
/** Connect a provider that authenticates with an API key or bot token. */
|
|
215
|
+
/**
|
|
216
|
+
* Connect a provider that authenticates with an API key or bot token.
|
|
217
|
+
*
|
|
218
|
+
* The wire field is `provider_id`; the argument is named `provider` because
|
|
219
|
+
* that is what the rest of this namespace calls it.
|
|
220
|
+
*/
|
|
221
|
+
createWithApiKey(provider: string, apiKey: string, body?: Json): Promise<Json>;
|
|
222
|
+
/** Connect a provider that needs a credential bundle, such as S3 keys. */
|
|
223
|
+
createWithCredentials(provider: string, credentials: Json, body?: Json): Promise<Json>;
|
|
224
|
+
/** Change a connection's name, schedule or settings. */
|
|
225
|
+
update(connectionId: string, body: Json): Promise<Json>;
|
|
226
|
+
/**
|
|
227
|
+
* Remove a connection.
|
|
228
|
+
*
|
|
229
|
+
* Stops future syncing. Memories already extracted are left in place — use
|
|
230
|
+
* {@link purge} for those, so disconnecting never silently deletes knowledge
|
|
231
|
+
* someone still depends on.
|
|
232
|
+
*/
|
|
233
|
+
delete(connectionId: string): Promise<Json>;
|
|
234
|
+
/** Re-authorise a connection whose credentials expired or were revoked. */
|
|
235
|
+
reconnect(connectionId: string, body?: Json): Promise<Json>;
|
|
236
|
+
/**
|
|
237
|
+
* Delete the memories this connection produced.
|
|
238
|
+
*
|
|
239
|
+
* Separate from {@link delete} on purpose: removing a connection and removing
|
|
240
|
+
* what it taught you are different decisions.
|
|
241
|
+
*/
|
|
242
|
+
purge(connectionId: string, body?: Json): Promise<Json>;
|
|
243
|
+
/** Current and recent sync state for a connection. */
|
|
244
|
+
syncStatus(connectionId: string): Promise<Json>;
|
|
245
|
+
/** Start a sync now instead of waiting for the schedule. */
|
|
246
|
+
triggerSync(connectionId: string, body?: Json): Promise<Json>;
|
|
247
|
+
/** Objects a connection has ingested — files, messages, meetings. */
|
|
248
|
+
objects(connectionId: string, query?: Json): Promise<Json>;
|
|
249
|
+
/** Object listing with richer filtering and paging than {@link objects}. */
|
|
250
|
+
objectsV2(connectionId: string, query?: Json): Promise<Json>;
|
|
251
|
+
/** Apply one action to many objects — pause, resume, re-extract. */
|
|
252
|
+
bulkObjectAction(connectionId: string, body: Json): Promise<Json>;
|
|
253
|
+
/** Connector totals: connections, objects synced, memories produced. */
|
|
254
|
+
stats(query?: Json): Promise<Json>;
|
|
255
|
+
/** Audit trail of connector activity. */
|
|
256
|
+
auditLogs(query?: Json): Promise<Json>;
|
|
257
|
+
}
|
|
258
|
+
/**
|
|
259
|
+
* A single synced object: a Drive file, a Slack message batch, an S3 key, a
|
|
260
|
+
* meeting transcript.
|
|
261
|
+
*/
|
|
262
|
+
declare class ObjectsNamespace extends Namespace {
|
|
263
|
+
/** Metadata and sync state for one object. */
|
|
264
|
+
get(objectId: string): Promise<Json>;
|
|
265
|
+
/** What extraction made of this object. */
|
|
266
|
+
analysis(objectId: string): Promise<Json>;
|
|
267
|
+
/** Every action taken on this object. */
|
|
268
|
+
audit(objectId: string, query?: Json): Promise<Json>;
|
|
269
|
+
/** Versions of this object seen across syncs. */
|
|
270
|
+
history(objectId: string, query?: Json): Promise<Json>;
|
|
271
|
+
/** Which memories this object produced, and whether extraction finished. */
|
|
272
|
+
memoryStatus(objectId: string): Promise<Json>;
|
|
273
|
+
/** Row and column statistics for spreadsheet-shaped objects. */
|
|
274
|
+
structuredStats(objectId: string): Promise<Json>;
|
|
275
|
+
/** Score this object for extraction worthiness without extracting. */
|
|
276
|
+
evaluate(objectId: string, body?: Json): Promise<Json>;
|
|
277
|
+
/** Stop re-syncing this object, leaving its memories in place. */
|
|
278
|
+
pause(objectId: string): Promise<Json>;
|
|
279
|
+
/** Resume syncing a paused object. */
|
|
280
|
+
resume(objectId: string): Promise<Json>;
|
|
281
|
+
/**
|
|
282
|
+
* Run extraction again over content already fetched.
|
|
283
|
+
*
|
|
284
|
+
* Counts against the plan's add allowance, exactly like the first extraction,
|
|
285
|
+
* because it creates memories the same way.
|
|
286
|
+
*/
|
|
287
|
+
reextract(objectId: string, body?: Json): Promise<Json>;
|
|
288
|
+
/** Fetch this object from the provider again, then extract. */
|
|
289
|
+
resync(objectId: string, body?: Json): Promise<Json>;
|
|
290
|
+
/** Remove the memories this object produced, keeping the object record. */
|
|
291
|
+
deleteMemories(objectId: string, query?: Json): Promise<Json>;
|
|
292
|
+
}
|
|
293
|
+
/** Connectors this deployment supports. */
|
|
294
|
+
declare class ProvidersNamespace extends Namespace {
|
|
295
|
+
/** Every available provider and what it needs to connect. */
|
|
296
|
+
list(query?: Json): Promise<Json>;
|
|
297
|
+
/** One provider's capabilities, scopes and settings schema. */
|
|
298
|
+
get(providerId: string): Promise<Json>;
|
|
299
|
+
}
|
|
300
|
+
/** Individual sync runs. */
|
|
301
|
+
declare class SyncJobsNamespace extends Namespace {
|
|
302
|
+
/** Progress and outcome of one sync run. */
|
|
303
|
+
get(jobId: string): Promise<Json>;
|
|
304
|
+
/** Stop a running sync. Objects already ingested are kept. */
|
|
305
|
+
cancel(jobId: string, body?: Json): Promise<Json>;
|
|
306
|
+
}
|
|
307
|
+
/** Turn websites into memories. */
|
|
308
|
+
declare class WebCrawlerNamespace extends Namespace {
|
|
309
|
+
/** Check a URL is reachable and crawlable before committing to a job. */
|
|
310
|
+
validate(url: string, body?: Json): Promise<Json>;
|
|
311
|
+
/**
|
|
312
|
+
* Start a crawl. Returns a job to poll.
|
|
313
|
+
*
|
|
314
|
+
* Crawling only fetches and stores page content. Nothing becomes a memory until
|
|
315
|
+
* you call {@link importJob}, so a large crawl cannot quietly consume your add
|
|
316
|
+
* allowance.
|
|
317
|
+
*/
|
|
318
|
+
crawl(url: string, body?: Json): Promise<Json>;
|
|
319
|
+
/** Crawl jobs for this organization. */
|
|
320
|
+
jobs(query?: Json): Promise<Json>;
|
|
321
|
+
/** One crawl job's status and progress. */
|
|
322
|
+
job(jobId: string): Promise<Json>;
|
|
323
|
+
/** Stop a running crawl. Pages already fetched are kept. */
|
|
324
|
+
cancelJob(jobId: string): Promise<Json>;
|
|
325
|
+
/** Delete a crawl job and its fetched pages. */
|
|
326
|
+
deleteJob(jobId: string): Promise<Json>;
|
|
327
|
+
/** Pages a crawl fetched, before any import. */
|
|
328
|
+
jobContent(jobId: string, query?: Json): Promise<Json>;
|
|
329
|
+
/** Page counts, byte totals and error breakdown for a crawl. */
|
|
330
|
+
jobStatistics(jobId: string): Promise<Json>;
|
|
331
|
+
/**
|
|
332
|
+
* Turn a completed crawl's pages into memories.
|
|
333
|
+
*
|
|
334
|
+
* This is the step that creates memories, so this is the step that is billed —
|
|
335
|
+
* one unit per memory created, like every other ingestion path.
|
|
336
|
+
*/
|
|
337
|
+
importJob(jobId: string, body?: Json): Promise<Json>;
|
|
338
|
+
/** Crawls running right now. */
|
|
339
|
+
active(): Promise<Json>;
|
|
340
|
+
/** Crawler limits in force: depth, page ceiling, rate, timeouts. */
|
|
341
|
+
config(): Promise<Json>;
|
|
342
|
+
}
|
|
343
|
+
/**
|
|
344
|
+
* The `/api/v1/integrations` surface.
|
|
345
|
+
*
|
|
346
|
+
* Kept because the catalog and the web crawler live here and have no v2
|
|
347
|
+
* equivalent. For connection lifecycle use `client.connections`, which is the
|
|
348
|
+
* current API — `connected()` and `stats()` here are older, thinner views of the
|
|
349
|
+
* same data.
|
|
350
|
+
*/
|
|
351
|
+
declare class IntegrationsNamespace extends Namespace {
|
|
352
|
+
readonly webCrawler: WebCrawlerNamespace;
|
|
353
|
+
constructor(request: RequestFn);
|
|
354
|
+
/** Every integration this deployment offers, for building a picker UI. */
|
|
355
|
+
catalog(query?: Json): Promise<Json>;
|
|
356
|
+
/** Integrations currently connected. Older view of `connections.list()`. */
|
|
357
|
+
connected(query?: Json): Promise<Json>;
|
|
358
|
+
/** Legacy integration counters. Prefer `connections.stats()`. */
|
|
359
|
+
stats(query?: Json): Promise<Json>;
|
|
360
|
+
/** Update a legacy integration record. */
|
|
361
|
+
update(integrationId: string, body: Json): Promise<Json>;
|
|
362
|
+
/** Delete a legacy integration record. */
|
|
363
|
+
delete(integrationId: string): Promise<Json>;
|
|
364
|
+
}
|
|
365
|
+
|
|
29
366
|
interface ControlPlaneConfig {
|
|
30
367
|
baseUrl: string;
|
|
31
368
|
accessToken?: string;
|
|
@@ -679,6 +1016,7 @@ interface UploadRequest {
|
|
|
679
1016
|
metadata?: Record<string, unknown>;
|
|
680
1017
|
endUserId?: string;
|
|
681
1018
|
}
|
|
1019
|
+
|
|
682
1020
|
declare class MemorySyncClient {
|
|
683
1021
|
private readonly apiKey;
|
|
684
1022
|
private readonly baseUrl;
|
|
@@ -686,6 +1024,16 @@ declare class MemorySyncClient {
|
|
|
686
1024
|
private readonly endUserId?;
|
|
687
1025
|
private readonly timeoutMs;
|
|
688
1026
|
private readonly fetchImpl;
|
|
1027
|
+
/** Connections to external sources, with provider sub-namespaces. */
|
|
1028
|
+
readonly connections: ConnectionsNamespace;
|
|
1029
|
+
/** Individual objects a connector ingested. */
|
|
1030
|
+
readonly objects: ObjectsNamespace;
|
|
1031
|
+
/** Connectors this deployment supports. */
|
|
1032
|
+
readonly providers: ProvidersNamespace;
|
|
1033
|
+
/** Individual sync runs. */
|
|
1034
|
+
readonly syncJobs: SyncJobsNamespace;
|
|
1035
|
+
/** The legacy `/api/v1/integrations` surface, including the web crawler. */
|
|
1036
|
+
readonly integrations: IntegrationsNamespace;
|
|
689
1037
|
constructor(config: MemorySyncConfig);
|
|
690
1038
|
private headers;
|
|
691
1039
|
private request;
|
|
@@ -872,4 +1220,4 @@ declare class MemorySyncClient {
|
|
|
872
1220
|
}): Promise<Record<string, unknown>>;
|
|
873
1221
|
}
|
|
874
1222
|
|
|
875
|
-
export { type AddRequest, type AddResponse, type AddSkippedResponse, type ApiKeyTestResponse, type ApiKeyTestStatus, type AuditActor, type AuditEvent, type AuditEventListResponse, type AuditEventQuery, type AuditResource, type AuditSortDirection, AuthError, type BatchUpdateItem, type BatchUpdateItemResult, type BatchUpdateResponse, type BulkAddItem, type BulkAddItemResult, type BulkAddResponse, type BulkRevokeApiKeyResult, type BulkRevokeApiKeysRequest, type BulkRevokeApiKeysResponse, type ComposeRequest, type ComposeResponse, ControlPlaneClient, type ControlPlaneConfig, type ControlPlaneRequestOptions, type CreateOrganizationRequest, type CreateWebhookRequest, type CreatedWebhook, type CurrentPlanResponse, type ExportResponse, type FeedbackResponse, type FeedbackSignal, type FeedbackSummary, type FeedbackTrend, type ForgetFilters, type ForgetRequest, type HistoryResponse, type Integration, type IntegrationQuery, type LoginRequest, type LoginResponse, type MemoryRecord, MemorySyncClient, type MemorySyncConfig, MemorySyncError, NotFoundError, type Ontology, type OntologyUpdateRequest, type OrganizationMembership, type OrganizationSettings, type OrganizationSettingsQuery, type Plan, type PlanLimits, type Project, type QueryFilters, type QueryRequest, type QueryResponse, RateLimitError, type RelationCreateRequest, type RelationRecord, type RelationshipType, type ReplayWebhookDeliveriesRequest, type ReplayWebhookDeliveriesResponse, type RevisionEntry, type RevisionEvent, ServerError, type Session, type SessionListResponse, type SummarizeRequest, type TeamMember, type TestWebhookRequest, type TestWebhookResponse, type UpdateRequest, type UpdateWebhookRequest, type UploadRequest, ValidationError, type Webhook, type WebhookDelivery, type WebhookDeliveryListResponse, type WebhookDeliveryQuery, type WebhookListResponse, type WebhookRetryConfig, type WebhookSignatureConfig };
|
|
1223
|
+
export { type AddRequest, type AddResponse, type AddSkippedResponse, type ApiKeyTestResponse, type ApiKeyTestStatus, type AuditActor, type AuditEvent, type AuditEventListResponse, type AuditEventQuery, type AuditResource, type AuditSortDirection, AuthError, type BatchUpdateItem, type BatchUpdateItemResult, type BatchUpdateResponse, type BulkAddItem, type BulkAddItemResult, type BulkAddResponse, type BulkRevokeApiKeyResult, type BulkRevokeApiKeysRequest, type BulkRevokeApiKeysResponse, type ComposeRequest, type ComposeResponse, ConnectionOAuthNamespace, ConnectionsNamespace, ControlPlaneClient, type ControlPlaneConfig, type ControlPlaneRequestOptions, type CreateOrganizationRequest, type CreateWebhookRequest, type CreatedWebhook, type CurrentPlanResponse, type ExportResponse, type FeedbackResponse, type FeedbackSignal, type FeedbackSummary, type FeedbackTrend, type ForgetFilters, type ForgetRequest, GoogleDriveNamespace, GranolaNamespace, type HistoryResponse, type Integration, type IntegrationQuery, IntegrationsNamespace, type LoginRequest, type LoginResponse, type MemoryRecord, MemorySyncClient, type MemorySyncConfig, MemorySyncError, NotFoundError, ObjectsNamespace, type Ontology, type OntologyUpdateRequest, type OrganizationMembership, type OrganizationSettings, type OrganizationSettingsQuery, type Plan, type PlanLimits, type Project, ProvidersNamespace, type QueryFilters, type QueryRequest, type QueryResponse, RateLimitError, type RelationCreateRequest, type RelationRecord, type RelationshipType, type ReplayWebhookDeliveriesRequest, type ReplayWebhookDeliveriesResponse, type RevisionEntry, type RevisionEvent, S3Namespace, ServerError, type Session, type SessionListResponse, SlackNamespace, type SummarizeRequest, SyncJobsNamespace, type TeamMember, type TestWebhookRequest, type TestWebhookResponse, type UpdateRequest, type UpdateWebhookRequest, type UploadRequest, ValidationError, WebCrawlerNamespace, type Webhook, type WebhookDelivery, type WebhookDeliveryListResponse, type WebhookDeliveryQuery, type WebhookListResponse, type WebhookRetryConfig, type WebhookSignatureConfig };
|