@granular-software/sdk 0.4.36 → 0.4.37
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 +82 -2
- package/dist/agent-evals.d.mts +64 -3
- package/dist/agent-evals.d.ts +64 -3
- package/dist/agent-evals.js +2486 -601
- package/dist/agent-evals.js.map +1 -1
- package/dist/agent-evals.mjs +2486 -601
- package/dist/agent-evals.mjs.map +1 -1
- package/dist/agent-harness.d.mts +39 -4
- package/dist/agent-harness.d.ts +39 -4
- package/dist/agent-harness.js +1051 -456
- package/dist/agent-harness.js.map +1 -1
- package/dist/agent-harness.mjs +1049 -457
- package/dist/agent-harness.mjs.map +1 -1
- package/dist/cli/index.js +2335 -289
- package/dist/{client-Cq8onk2D.d.mts → client-eE9nTfvp.d.mts} +109 -28
- package/dist/{client-Cq8onk2D.d.ts → client-eE9nTfvp.d.ts} +109 -28
- package/dist/index.d.mts +17 -5
- package/dist/index.d.ts +17 -5
- package/dist/index.js +1930 -571
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1927 -572
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { PermissionProfileFile } from '@granular-software/policy-engine';
|
|
1
2
|
import * as Automerge from '@automerge/automerge';
|
|
2
3
|
import { Doc } from '@automerge/automerge/slim';
|
|
3
4
|
|
|
@@ -5,6 +6,7 @@ import { Doc } from '@automerge/automerge/slim';
|
|
|
5
6
|
* @module @granular-software/sdk/types
|
|
6
7
|
* Type definitions for the Granular SDK
|
|
7
8
|
*/
|
|
9
|
+
|
|
8
10
|
/**
|
|
9
11
|
* Configuration for the Granular client
|
|
10
12
|
*/
|
|
@@ -19,6 +21,8 @@ interface GranularOptions {
|
|
|
19
21
|
tokenProvider?: AccessTokenProvider;
|
|
20
22
|
/** Optional API URL (for on-prem or testing) */
|
|
21
23
|
apiUrl?: string;
|
|
24
|
+
/** Optional live effect-host WebSocket/base URL override (for local/on-prem routing) */
|
|
25
|
+
effectHostUrl?: string;
|
|
22
26
|
/** Optional endpoint mode when apiUrl is not explicitly provided */
|
|
23
27
|
endpointMode?: EndpointMode;
|
|
24
28
|
/** Optional WebSocket constructor (for Node.js environments) */
|
|
@@ -141,7 +145,11 @@ interface ConnectOptions extends OpenEnvironmentOptions {
|
|
|
141
145
|
tagName?: string;
|
|
142
146
|
/** @deprecated Ignored by `connect()` now that it no longer opens sessions. */
|
|
143
147
|
clientId?: string;
|
|
144
|
-
/**
|
|
148
|
+
/**
|
|
149
|
+
* @deprecated Ignored by `connect()` now that it no longer opens sessions.
|
|
150
|
+
* Uses application record identity: class name plus the record id from the
|
|
151
|
+
* customer's own system. Granular resolves the internal graph path.
|
|
152
|
+
*/
|
|
145
153
|
initialHeap?: Array<{
|
|
146
154
|
className: string;
|
|
147
155
|
id: string;
|
|
@@ -153,7 +161,11 @@ interface ConnectOptions extends OpenEnvironmentOptions {
|
|
|
153
161
|
interface CreateSessionOptions {
|
|
154
162
|
/** Optional stable client ID. Defaults to `client_${Date.now()}`. */
|
|
155
163
|
clientId?: string;
|
|
156
|
-
/**
|
|
164
|
+
/**
|
|
165
|
+
* Optional session heap seed. Each item uses application record identity:
|
|
166
|
+
* class name plus the record id from the customer's own system. Granular
|
|
167
|
+
* resolves and hydrates the corresponding internal graph record on connect.
|
|
168
|
+
*/
|
|
157
169
|
initialHeap?: Array<{
|
|
158
170
|
className: string;
|
|
159
171
|
id: string;
|
|
@@ -234,7 +246,9 @@ interface PermissionProfile {
|
|
|
234
246
|
permissionProfileId: string;
|
|
235
247
|
sandboxId: string;
|
|
236
248
|
name: string;
|
|
237
|
-
|
|
249
|
+
description?: string;
|
|
250
|
+
rules?: PermissionProfileFile;
|
|
251
|
+
profile?: PermissionProfileFile;
|
|
238
252
|
createdAt: number;
|
|
239
253
|
updatedAt: number;
|
|
240
254
|
}
|
|
@@ -243,7 +257,7 @@ interface PermissionProfile {
|
|
|
243
257
|
*/
|
|
244
258
|
interface CreatePermissionProfileData {
|
|
245
259
|
name: string;
|
|
246
|
-
rules:
|
|
260
|
+
rules: PermissionProfileFile;
|
|
247
261
|
}
|
|
248
262
|
/**
|
|
249
263
|
* List response for permission profiles
|
|
@@ -865,6 +879,24 @@ interface SessionHeapSnapshot {
|
|
|
865
879
|
variablesByName: Record<string, SessionHeapVariable>;
|
|
866
880
|
updatedAt: number;
|
|
867
881
|
}
|
|
882
|
+
interface RecordSearchResult {
|
|
883
|
+
path: string;
|
|
884
|
+
className: string;
|
|
885
|
+
id: string;
|
|
886
|
+
label: string;
|
|
887
|
+
description?: string | null;
|
|
888
|
+
fields: SessionHeapFieldValue[];
|
|
889
|
+
}
|
|
890
|
+
interface RecordSearchOptions {
|
|
891
|
+
limit?: number;
|
|
892
|
+
offset?: number;
|
|
893
|
+
classNames?: string[];
|
|
894
|
+
}
|
|
895
|
+
interface RecordMentionInput {
|
|
896
|
+
className: string;
|
|
897
|
+
id?: string;
|
|
898
|
+
path?: string;
|
|
899
|
+
}
|
|
868
900
|
interface SessionDocumentResult {
|
|
869
901
|
sessionState: Record<string, unknown> | null;
|
|
870
902
|
document: Record<string, unknown> | null;
|
|
@@ -1070,6 +1102,12 @@ interface RecordObjectsOptions {
|
|
|
1070
1102
|
*/
|
|
1071
1103
|
onChunkComplete?: (info: RecordObjectsChunkInfo) => void | Promise<void>;
|
|
1072
1104
|
}
|
|
1105
|
+
type RecordImportWriteMode = "adaptive" | "batched" | "per_record" | "parallel_5";
|
|
1106
|
+
interface RecordImportOptions {
|
|
1107
|
+
batchSize?: number;
|
|
1108
|
+
setupRunId?: string;
|
|
1109
|
+
writeMode?: RecordImportWriteMode;
|
|
1110
|
+
}
|
|
1073
1111
|
type RecordImportStatus = "queued" | "processing" | "completed" | "failed" | "canceled";
|
|
1074
1112
|
type RecordImportItemStatus = "queued" | "processing" | "completed" | "failed" | "canceled";
|
|
1075
1113
|
interface RecordImportStats {
|
|
@@ -1124,6 +1162,17 @@ interface EnvironmentRecordImportSummary extends RecordImportStats {
|
|
|
1124
1162
|
updatedAt: number;
|
|
1125
1163
|
}
|
|
1126
1164
|
type EnvironmentSetupTriggerReason = "new_environment" | "fresh_after_version_update";
|
|
1165
|
+
interface RunEnvironmentImporterOptions {
|
|
1166
|
+
/**
|
|
1167
|
+
* Ontology name/id used to resolve the registered importer. Defaults to the
|
|
1168
|
+
* environment sandbox id.
|
|
1169
|
+
*/
|
|
1170
|
+
ontology?: string;
|
|
1171
|
+
/**
|
|
1172
|
+
* Reason recorded on the setup run. Defaults to `new_environment`.
|
|
1173
|
+
*/
|
|
1174
|
+
reason?: EnvironmentSetupTriggerReason;
|
|
1175
|
+
}
|
|
1127
1176
|
type EnvironmentSetupLifecycleStatus = "running" | "completed" | "failed";
|
|
1128
1177
|
interface EnvironmentSetupSummary extends RecordImportStats {
|
|
1129
1178
|
setupRunId: string;
|
|
@@ -1144,6 +1193,7 @@ interface EnvironmentSetupSummary extends RecordImportStats {
|
|
|
1144
1193
|
}
|
|
1145
1194
|
interface EnvironmentImporterImportOptions {
|
|
1146
1195
|
batchSize?: number;
|
|
1196
|
+
writeMode?: RecordImportWriteMode;
|
|
1147
1197
|
}
|
|
1148
1198
|
interface EnvironmentImporter {
|
|
1149
1199
|
environmentId: string;
|
|
@@ -1469,6 +1519,8 @@ declare class Session {
|
|
|
1469
1519
|
private lastKnownTools;
|
|
1470
1520
|
/** Last seen live prompts, keyed by prompt id, for answer normalization */
|
|
1471
1521
|
private promptCache;
|
|
1522
|
+
/** Prompt ids locally answered before the document sync catches up. */
|
|
1523
|
+
private hiddenPromptIds;
|
|
1472
1524
|
constructor(client: WSClient, clientId?: string);
|
|
1473
1525
|
private extractDomainRevisionFromDoc;
|
|
1474
1526
|
private buildLegacyEffectContext;
|
|
@@ -1534,7 +1586,11 @@ declare class Session {
|
|
|
1534
1586
|
* `effect.invoke` RPC back to the sandbox effect host, where the registered handlers
|
|
1535
1587
|
* execute locally and return the result to the sandbox.
|
|
1536
1588
|
*/
|
|
1537
|
-
submitJob(code: string,
|
|
1589
|
+
submitJob(code: string, domainRevisionOrOptions?: string | {
|
|
1590
|
+
domainRevision?: string;
|
|
1591
|
+
metadata?: Record<string, unknown>;
|
|
1592
|
+
agent?: Record<string, unknown>;
|
|
1593
|
+
}): Promise<Job>;
|
|
1538
1594
|
/**
|
|
1539
1595
|
* Register a handler for a specific tool.
|
|
1540
1596
|
* @param isInstance - If true, handler will receive (id, params) for instance method dispatch.
|
|
@@ -1550,6 +1606,14 @@ declare class Session {
|
|
|
1550
1606
|
* Consolidates effect declarations and live availability for the session.
|
|
1551
1607
|
*/
|
|
1552
1608
|
getEffects(): EffectInfo[];
|
|
1609
|
+
/**
|
|
1610
|
+
* Return the currently open prompt payloads known to this session.
|
|
1611
|
+
*
|
|
1612
|
+
* These come from live `prompt` / `prompt.request` websocket events and
|
|
1613
|
+
* preserve the exact shape used by `answerPrompt(...)`.
|
|
1614
|
+
*/
|
|
1615
|
+
getPrompts(): Prompt[];
|
|
1616
|
+
getHiddenPromptIds(): string[];
|
|
1553
1617
|
/**
|
|
1554
1618
|
* Backwards-compatible alias for `getEffects()`.
|
|
1555
1619
|
*/
|
|
@@ -1707,24 +1771,20 @@ declare class Environment {
|
|
|
1707
1771
|
listFeedback(): Promise<EnvironmentFeedbackRecord[]>;
|
|
1708
1772
|
private getRuntimeBaseUrl;
|
|
1709
1773
|
private controlPlaneRequest;
|
|
1774
|
+
private static normalizeGraphPathSegment;
|
|
1710
1775
|
/**
|
|
1711
|
-
* Convert a class name +
|
|
1712
|
-
*
|
|
1713
|
-
* Two objects of *different* classes may share the same real-world ID,
|
|
1714
|
-
* so the graph path must incorporate the class to guarantee uniqueness.
|
|
1715
|
-
*
|
|
1716
|
-
* Format: `{className}_{id}` — deterministic, human-readable.
|
|
1776
|
+
* Convert a class name + application record ID into Granular's graph path.
|
|
1717
1777
|
*
|
|
1718
|
-
*
|
|
1719
|
-
*
|
|
1720
|
-
*
|
|
1778
|
+
* This mirrors the record-write path normalization used by the control plane.
|
|
1779
|
+
* Keep the original customer/system ID in `real_id`; graph paths are stable
|
|
1780
|
+
* internal addresses, not the source of truth for business identity.
|
|
1721
1781
|
*/
|
|
1722
1782
|
static toGraphPath(className: string, id: string): string;
|
|
1723
1783
|
/**
|
|
1724
|
-
*
|
|
1784
|
+
* Best-effort extraction of an ID-like suffix from a graph path.
|
|
1725
1785
|
*
|
|
1726
|
-
*
|
|
1727
|
-
*
|
|
1786
|
+
* Prefer the record's `real_id` field whenever exact customer/system IDs
|
|
1787
|
+
* matter, because graph path normalization is intentionally lossy.
|
|
1728
1788
|
*/
|
|
1729
1789
|
static extractIdFromGraphPath(graphPath: string, className: string): string;
|
|
1730
1790
|
/**
|
|
@@ -1752,6 +1812,7 @@ declare class Environment {
|
|
|
1752
1812
|
* ```
|
|
1753
1813
|
*/
|
|
1754
1814
|
graphql<T = any>(query: string, variables?: Record<string, any>): Promise<GraphQLResult<T>>;
|
|
1815
|
+
searchRecords(query: string, options?: RecordSearchOptions): Promise<RecordSearchResult[]>;
|
|
1755
1816
|
/**
|
|
1756
1817
|
* Define a relationship between two model types.
|
|
1757
1818
|
*
|
|
@@ -1961,10 +2022,7 @@ declare class Environment {
|
|
|
1961
2022
|
* need every row committed before the HTTP call returns. Use **`recordObjects`** when you need
|
|
1962
2023
|
* synchronous upserts and fine-grained chunk progress via **`onChunkComplete`**.
|
|
1963
2024
|
*/
|
|
1964
|
-
enqueueRecordImport(records: RecordObjectOptions[], options?:
|
|
1965
|
-
batchSize?: number;
|
|
1966
|
-
setupRunId?: string;
|
|
1967
|
-
}): Promise<RecordImport>;
|
|
2025
|
+
enqueueRecordImport(records: RecordObjectOptions[], options?: RecordImportOptions): Promise<RecordImport>;
|
|
1968
2026
|
/**
|
|
1969
2027
|
* List queued or completed record imports for this environment.
|
|
1970
2028
|
*/
|
|
@@ -1996,12 +2054,15 @@ declare class Environment {
|
|
|
1996
2054
|
*/
|
|
1997
2055
|
declare class EnvironmentSession extends Session {
|
|
1998
2056
|
readonly environment: Environment;
|
|
2057
|
+
private readonly sessionDataRoutePrefix;
|
|
1999
2058
|
/** The last known graph container status, updated by checkReadiness() or on heartbeat */
|
|
2000
2059
|
graphContainerStatus: {
|
|
2001
2060
|
lastKeepAliveAt: number;
|
|
2002
2061
|
status: "warming" | "hot" | "unknown";
|
|
2003
2062
|
} | null;
|
|
2004
|
-
constructor(client: WSClient, environment: Environment, clientId: string
|
|
2063
|
+
constructor(client: WSClient, environment: Environment, clientId: string, options?: {
|
|
2064
|
+
sessionDataRoutePrefix?: string;
|
|
2065
|
+
});
|
|
2005
2066
|
get environmentId(): string;
|
|
2006
2067
|
get sandboxId(): string;
|
|
2007
2068
|
get ontologyId(): string;
|
|
@@ -2059,11 +2120,21 @@ declare class EnvironmentSession extends Session {
|
|
|
2059
2120
|
list: (options?: SessionCollectionListOptions) => Promise<SessionCollectionListResult<SessionHeapList>>;
|
|
2060
2121
|
get: (name: string) => Promise<SessionHeapList>;
|
|
2061
2122
|
};
|
|
2123
|
+
variables: {
|
|
2124
|
+
list: (options?: SessionCollectionListOptions) => Promise<SessionCollectionListResult<SessionHeapVariable>>;
|
|
2125
|
+
get: (name: string) => Promise<SessionHeapVariable>;
|
|
2126
|
+
delete: (name: string) => Promise<{
|
|
2127
|
+
deleted: boolean;
|
|
2128
|
+
name: string;
|
|
2129
|
+
}>;
|
|
2130
|
+
};
|
|
2062
2131
|
};
|
|
2063
2132
|
get transcript(): {
|
|
2064
2133
|
list: (options?: SessionCollectionListOptions) => Promise<SessionCollectionListResult<SessionTranscriptEntry>>;
|
|
2065
2134
|
};
|
|
2066
2135
|
graphql<T = any>(query: string, variables?: Record<string, any>): Promise<GraphQLResult<T>>;
|
|
2136
|
+
searchRecords(query: string, options?: RecordSearchOptions): Promise<RecordSearchResult[]>;
|
|
2137
|
+
mentionRecord(input: RecordMentionInput): Promise<SessionHeapEntry>;
|
|
2067
2138
|
defineRelationship(options: DefineRelationshipOptions): Promise<RelationshipInfo>;
|
|
2068
2139
|
getRelationships(modelPath: string): Promise<RelationshipInfo[]>;
|
|
2069
2140
|
attach(modelPath: string, submodelPath: string, targetPath: string): Promise<void>;
|
|
@@ -2075,9 +2146,7 @@ declare class EnvironmentSession extends Session {
|
|
|
2075
2146
|
}>;
|
|
2076
2147
|
recordObject(options: RecordObjectOptions): Promise<RecordObjectResult>;
|
|
2077
2148
|
recordObjects(records: RecordObjectOptions[], options?: RecordObjectsOptions): Promise<RecordObjectResult[]>;
|
|
2078
|
-
enqueueRecordImport(records: RecordObjectOptions[], options?:
|
|
2079
|
-
batchSize?: number;
|
|
2080
|
-
}): Promise<RecordImport>;
|
|
2149
|
+
enqueueRecordImport(records: RecordObjectOptions[], options?: RecordImportOptions): Promise<RecordImport>;
|
|
2081
2150
|
listRecordImports(status?: RecordImportStatus): Promise<RecordImport[]>;
|
|
2082
2151
|
getRecordImportSummary(): Promise<EnvironmentRecordImportSummary>;
|
|
2083
2152
|
getAwaitingRecordCount(): Promise<number>;
|
|
@@ -2132,6 +2201,7 @@ declare class Granular {
|
|
|
2132
2201
|
private WebSocketCtor?;
|
|
2133
2202
|
private onUnexpectedClose?;
|
|
2134
2203
|
private onReconnectError?;
|
|
2204
|
+
private effectHostUrl?;
|
|
2135
2205
|
private debugHttp;
|
|
2136
2206
|
/** Sandbox-level effect registry: sandboxId → (effectKey@selector → ToolWithHandler) */
|
|
2137
2207
|
private sandboxEffects;
|
|
@@ -2205,6 +2275,16 @@ declare class Granular {
|
|
|
2205
2275
|
* `connect()` no longer opens a runtime session automatically.
|
|
2206
2276
|
*/
|
|
2207
2277
|
connect(options: ConnectOptions): Promise<Environment>;
|
|
2278
|
+
/**
|
|
2279
|
+
* Run a registered environment importer against an environment that was
|
|
2280
|
+
* opened outside this SDK instance, for example by a delegated browser flow.
|
|
2281
|
+
*
|
|
2282
|
+
* This uses the same setup-run and queued record-import plumbing as
|
|
2283
|
+
* `openEnvironment()`: importer stages, expected object counts, and queued
|
|
2284
|
+
* import counters remain visible through `environment.setup` and
|
|
2285
|
+
* `getRecordImportSummary()`.
|
|
2286
|
+
*/
|
|
2287
|
+
runEnvironmentImporterForEnvironment(environmentId: string, options?: RunEnvironmentImporterOptions): Promise<EnvironmentSetupSummary | null>;
|
|
2208
2288
|
private resolveRequestedTag;
|
|
2209
2289
|
private buildManagedEnvironmentName;
|
|
2210
2290
|
private matchesTagTrackedEnvironment;
|
|
@@ -2254,6 +2334,7 @@ declare class Granular {
|
|
|
2254
2334
|
}): Promise<EnvironmentSession>;
|
|
2255
2335
|
private resolveEnvironmentImporter;
|
|
2256
2336
|
private maybeRunEnvironmentImporter;
|
|
2337
|
+
private runEnvironmentImporter;
|
|
2257
2338
|
private bindEnvironmentHandle;
|
|
2258
2339
|
private bindWebSocketEnvironmentSession;
|
|
2259
2340
|
private activateEnvironment;
|
|
@@ -2305,7 +2386,7 @@ declare class Granular {
|
|
|
2305
2386
|
/**
|
|
2306
2387
|
* Ensure a permission profile exists for a sandbox, creating it if needed.
|
|
2307
2388
|
* If profileName matches an existing profile name, returns its ID.
|
|
2308
|
-
* Otherwise, creates a
|
|
2389
|
+
* Otherwise, creates a v1 source-profile file shape with an allow default.
|
|
2309
2390
|
*/
|
|
2310
2391
|
private ensurePermissionProfile;
|
|
2311
2392
|
/**
|
|
@@ -2329,7 +2410,7 @@ declare class Granular {
|
|
|
2329
2410
|
list: (sandboxId: string) => Promise<PermissionProfile[]>;
|
|
2330
2411
|
get: (sandboxId: string, profileId: string) => Promise<PermissionProfile>;
|
|
2331
2412
|
create: (sandboxId: string, data: CreatePermissionProfileData) => Promise<PermissionProfile>;
|
|
2332
|
-
delete: (
|
|
2413
|
+
delete: (_sandboxId: string, _profileId: string) => Promise<DeleteResponse>;
|
|
2333
2414
|
};
|
|
2334
2415
|
/**
|
|
2335
2416
|
* Environment management
|
|
@@ -2399,4 +2480,4 @@ declare class Granular {
|
|
|
2399
2480
|
private request;
|
|
2400
2481
|
}
|
|
2401
2482
|
|
|
2402
|
-
export { type SemanticVersionDiff as $, type AccessTokenProvider as A, type BuildPolicy as B, type ConnectOptions as C, type DomainState as D, type EndpointMode as E, type VersionTag as F, Granular as G, type EnvironmentData as H, type InstanceToolHandler as I, type CreateEnvironmentData as J, type EnvironmentListResponse as K, type Manifest as L, type ManifestEffectMetamodelSpec as M, type ManifestListResponse as N, OntologyHandle as O, type Prompt as P, type BuildStatus as Q, type ResolvedEffectBehaviors as R, type SessionHeapEntry as S, type ToolWithHandler as T, type User as U, type VersionTracking as V, WSClient as W, type Build as X, type Version as Y, type BuildListResponse as Z, type SemanticVersionDiffEntry as _, type EffectHandlerContext as a, type
|
|
2483
|
+
export { type SemanticVersionDiff as $, type AccessTokenProvider as A, type BuildPolicy as B, type ConnectOptions as C, type DomainState as D, type EndpointMode as E, type VersionTag as F, Granular as G, type EnvironmentData as H, type InstanceToolHandler as I, type CreateEnvironmentData as J, type EnvironmentListResponse as K, type Manifest as L, type ManifestEffectMetamodelSpec as M, type ManifestListResponse as N, OntologyHandle as O, type Prompt as P, type BuildStatus as Q, type ResolvedEffectBehaviors as R, type SessionHeapEntry as S, type ToolWithHandler as T, type User as U, type VersionTracking as V, WSClient as W, type Build as X, type Version as Y, type BuildListResponse as Z, type SemanticVersionDiffEntry as _, type EffectHandlerContext as a, type RecordImport as a$, type ResolvedEffectPostCondition as a0, type ResolvedEffectDryRun as a1, type ResolvedEffectReverse as a2, type ResolvedEffectApprovalRequired as a3, type EffectInvocationMode as a4, type EffectInvocationMetadata as a5, type EffectSchema as a6, type EffectWithHandler as a7, type PublishEffectsResult as a8, type EffectVersionSelector as a9, type RecordMentionInput as aA, type SessionDocumentResult as aB, type SessionCollectionListOptions as aC, type SessionJobListOptions as aD, type SessionCollectionListResult as aE, type WSDisconnectInfo as aF, type WSReconnectErrorInfo as aG, type WSClientOptions as aH, type RPCRequest as aI, type RPCResponse as aJ, type SyncMessage as aK, type RPCRequestFromServer as aL, type ToolInvokeParams as aM, type ToolResultParams as aN, type ModelRef as aO, type RelationshipInfo as aP, type DefineRelationshipOptions as aQ, type RecordObjectOptions as aR, type RecordObjectResult as aS, type RecordObjectsChunkInfo as aT, type RecordObjectsOptions as aU, type RecordImportWriteMode as aV, type RecordImportOptions as aW, type RecordImportStatus as aX, type RecordImportItemStatus as aY, type RecordImportStats as aZ, type RecordImportItem as a_, type ToolInfo as aa, type EffectInfo as ab, type ToolsChangedEvent as ac, type EffectsChangedEvent as ad, type EffectHandler as ae, type InstanceEffectHandler as af, type JobStatus as ag, type JobFeedbackSentiment as ah, type JobFeedbackToolCall as ai, type JobFeedbackMetadata as aj, type JobFeedbackInput as ak, type JobFeedbackRecord as al, type EnvironmentFeedbackRecord as am, type JobSubmitResult as an, type Job as ao, type ConversationMessageShowRefs as ap, type ConversationMessageInput as aq, type ConversationAppendResult as ar, type SessionConversationMessage as as, type SessionTimelineEvent as at, type SessionJobRecord as au, type SessionHeapFieldType as av, type SessionHeapFieldValue as aw, type SessionHeapVariable as ax, type RecordSearchResult as ay, type RecordSearchOptions as az, type SessionHeapList as b, type EnvironmentRecordImportSummary as b0, type EnvironmentSetupTriggerReason as b1, type RunEnvironmentImporterOptions as b2, type EnvironmentSetupLifecycleStatus as b3, type EnvironmentSetupSummary as b4, type EnvironmentImporterImportOptions as b5, type EnvironmentImporter as b6, type ManifestPropertySpec as b7, type ManifestValidationOperator as b8, type ManifestEnumRuleSpec as b9, type ManifestFilterBySpec as ba, type ManifestValidationRuleSpec as bb, type ManifestStateMachineStateSpec as bc, type ManifestStateMachineTransitionSpec as bd, type ManifestStateMachineSpec as be, type ManifestPostConditionSpec as bf, type ManifestDryRunSpec as bg, type ManifestReverseSpec as bh, type ManifestApprovalRequiredSpec as bi, type ManifestRelationshipDef as bj, type ManifestEffectSchema as bk, type ManifestEffectDeclaration as bl, type ManifestEventTypeDef as bm, type ManifestEventStreamDef as bn, type ManifestOperation as bo, type ManifestImport as bp, type ManifestVolume as bq, type ManifestContent as br, type GraphQLResult as bs, type APIError as bt, type DeleteResponse as bu, type StreamEvent as bv, type StreamSubscription as bw, type StreamStats as bx, type SessionHeapSnapshot as c, type SessionTranscriptEntry as d, Environment as e, EnvironmentSession as f, Session as g, type ToolSchema as h, type PublishToolsResult as i, type ToolHandler as j, type GranularOptions as k, type GranularAuth as l, type RecordUserOptions as m, type Subject as n, type OpenEnvironmentOptions as o, type CreateSessionOptions as p, type ConversationSessionInfo as q, type Sandbox as r, type CreateSandboxData as s, type SandboxListResponse as t, type PermissionRules as u, type PermissionProfile as v, type CreatePermissionProfileData as w, type PermissionProfileListResponse as x, type Assignment as y, type AssignmentListResponse as z };
|