plato-sandbox-sdk 1.1.44 → 1.1.46
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/chronos/index.d.mts +237 -1
- package/dist/chronos/index.d.ts +237 -1
- package/dist/chronos/index.js +135 -0
- package/dist/chronos/index.mjs +3 -1
- package/dist/{chunk-BCP2NTUP.mjs → chunk-W7PZVWXN.mjs} +135 -0
- package/dist/index.d.mts +14 -3
- package/dist/index.d.ts +14 -3
- package/dist/index.js +134 -0
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/chronos/api/experiments.ts +95 -0
- package/src/chronos/api/index.ts +1 -0
- package/src/chronos/api/otel.ts +12 -0
- package/src/chronos/api/sessions.ts +37 -0
- package/src/chronos/api/slack.ts +39 -0
- package/src/chronos/api/workspace_repos.ts +30 -0
- package/src/chronos/client.ts +3 -0
- package/src/chronos/models/ChildWorldConfig.ts +17 -0
- package/src/chronos/models/CreateTestRunRequest.ts +18 -0
- package/src/chronos/models/ExperimentLaunchConfig.ts +3 -1
- package/src/chronos/models/ExperimentTestRunResponse.ts +27 -0
- package/src/chronos/models/ExperimentVersionResponse.ts +3 -1
- package/src/chronos/models/FullLineageNode.ts +18 -0
- package/src/chronos/models/FullLineageResponse.ts +14 -0
- package/src/chronos/models/LaunchJobRequest.ts +3 -1
- package/src/chronos/models/LinkPlatoSessionRequest.ts +11 -0
- package/src/chronos/models/SendSlackMessageRequest.ts +10 -0
- package/src/chronos/models/SendSlackMessageResponse.ts +10 -0
- package/src/chronos/models/SessionMetricsResponse.ts +2 -0
- package/src/chronos/models/SessionStoredWorldConfig.ts +2 -1
- package/src/chronos/models/TestRunListResponse.ts +12 -0
- package/src/chronos/models/UpdateTestRunRequest.ts +14 -0
- package/src/chronos/models/index.ts +10 -0
package/dist/chronos/index.d.mts
CHANGED
|
@@ -674,6 +674,22 @@ interface ChildSessionSummary {
|
|
|
674
674
|
archived_at?: string | null;
|
|
675
675
|
}
|
|
676
676
|
|
|
677
|
+
/**
|
|
678
|
+
* ChildWorldConfig
|
|
679
|
+
* Structured child world config used in launch requests and stored sessions.
|
|
680
|
+
*
|
|
681
|
+
* Auto-generated - do not edit
|
|
682
|
+
*/
|
|
683
|
+
|
|
684
|
+
interface ChildWorldConfig {
|
|
685
|
+
mode?: string | null;
|
|
686
|
+
package?: string | null;
|
|
687
|
+
world_name?: string | null;
|
|
688
|
+
config?: Record<string, JsonValue> | null;
|
|
689
|
+
runtime?: Record<string, JsonValue> | null;
|
|
690
|
+
tags?: string[] | null;
|
|
691
|
+
}
|
|
692
|
+
|
|
677
693
|
/**
|
|
678
694
|
* ChronosApiDatasetsFoldersListResponse
|
|
679
695
|
*
|
|
@@ -1201,6 +1217,24 @@ interface CreateStepResponse {
|
|
|
1201
1217
|
manifest_hash: string;
|
|
1202
1218
|
}
|
|
1203
1219
|
|
|
1220
|
+
/**
|
|
1221
|
+
* CreateTestRunRequest
|
|
1222
|
+
* Register a sub-experiment test run for an experiment version.
|
|
1223
|
+
*
|
|
1224
|
+
* Auto-generated - do not edit
|
|
1225
|
+
*/
|
|
1226
|
+
interface CreateTestRunRequest {
|
|
1227
|
+
session_public_id: string;
|
|
1228
|
+
hypothesis_id: string;
|
|
1229
|
+
hypothesis_statement?: string | null;
|
|
1230
|
+
test_plan_name: string;
|
|
1231
|
+
isolation_strategy?: string | null;
|
|
1232
|
+
expected_outcome?: string | null;
|
|
1233
|
+
config_overrides?: Record<string, unknown> | null;
|
|
1234
|
+
git_link?: string | null;
|
|
1235
|
+
commit_sha?: string | null;
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1204
1238
|
/**
|
|
1205
1239
|
* CreateWorkspaceRefRequest
|
|
1206
1240
|
* Record an input or output workspace ref for a session.
|
|
@@ -1618,6 +1652,8 @@ metadata field for experiment-specific data.
|
|
|
1618
1652
|
|
|
1619
1653
|
interface ExperimentLaunchConfig {
|
|
1620
1654
|
world?: WorldConfigOutput | null;
|
|
1655
|
+
/** Inline/session child world configs passed through to the world runner */
|
|
1656
|
+
child_worlds?: Record<string, ChildWorldConfig> | null;
|
|
1621
1657
|
/** Tags for organizing/filtering sessions */
|
|
1622
1658
|
tags?: string[] | null;
|
|
1623
1659
|
/** Allow prerelease versions (dev, alpha, beta, rc) for packages */
|
|
@@ -1657,6 +1693,32 @@ interface ExperimentSessionSummary {
|
|
|
1657
1693
|
created_by?: UserInfo | null;
|
|
1658
1694
|
}
|
|
1659
1695
|
|
|
1696
|
+
/**
|
|
1697
|
+
* ExperimentTestRunResponse
|
|
1698
|
+
* Response model for a sub-experiment test run.
|
|
1699
|
+
*
|
|
1700
|
+
* Auto-generated - do not edit
|
|
1701
|
+
*/
|
|
1702
|
+
|
|
1703
|
+
interface ExperimentTestRunResponse {
|
|
1704
|
+
public_id: string;
|
|
1705
|
+
session_public_id: string;
|
|
1706
|
+
hypothesis_id: string;
|
|
1707
|
+
hypothesis_statement?: string | null;
|
|
1708
|
+
test_plan_name: string;
|
|
1709
|
+
isolation_strategy?: string | null;
|
|
1710
|
+
expected_outcome?: string | null;
|
|
1711
|
+
status: string;
|
|
1712
|
+
exit_code?: number | null;
|
|
1713
|
+
result_summary?: string | null;
|
|
1714
|
+
config_overrides?: Record<string, unknown> | null;
|
|
1715
|
+
git_link?: string | null;
|
|
1716
|
+
commit_sha?: string | null;
|
|
1717
|
+
session_status?: string | null;
|
|
1718
|
+
created_at: string;
|
|
1719
|
+
created_by?: UserInfo | null;
|
|
1720
|
+
}
|
|
1721
|
+
|
|
1660
1722
|
/**
|
|
1661
1723
|
* ExperimentVersionResponse
|
|
1662
1724
|
* Full experiment version payload for the frontend.
|
|
@@ -1676,8 +1738,10 @@ interface ExperimentVersionResponse {
|
|
|
1676
1738
|
created_at: string;
|
|
1677
1739
|
created_by?: UserInfo | null;
|
|
1678
1740
|
attached_session_count?: number | null;
|
|
1741
|
+
test_run_count?: number | null;
|
|
1679
1742
|
config_json?: ExperimentLaunchConfig | null;
|
|
1680
1743
|
attached_sessions?: ExperimentSessionSummary[] | null;
|
|
1744
|
+
test_runs?: ExperimentTestRunResponse[] | null;
|
|
1681
1745
|
}
|
|
1682
1746
|
|
|
1683
1747
|
/**
|
|
@@ -1709,6 +1773,37 @@ interface FindOrCreateReviewBody {
|
|
|
1709
1773
|
session_id: string;
|
|
1710
1774
|
}
|
|
1711
1775
|
|
|
1776
|
+
/**
|
|
1777
|
+
* FullLineageNode
|
|
1778
|
+
* A session node in the full lineage tree.
|
|
1779
|
+
*
|
|
1780
|
+
* Auto-generated - do not edit
|
|
1781
|
+
*/
|
|
1782
|
+
interface FullLineageNode {
|
|
1783
|
+
session_public_id: string;
|
|
1784
|
+
status?: string | null;
|
|
1785
|
+
total_cost_usd?: number | null;
|
|
1786
|
+
created_at?: string | null;
|
|
1787
|
+
world_name?: string | null;
|
|
1788
|
+
workspace: string;
|
|
1789
|
+
ref_public_id?: string | null;
|
|
1790
|
+
step_name?: string | null;
|
|
1791
|
+
children?: FullLineageNode[] | null;
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1794
|
+
/**
|
|
1795
|
+
* FullLineageResponse
|
|
1796
|
+
* Full session lineage tree across all workspaces, with costs.
|
|
1797
|
+
*
|
|
1798
|
+
* Auto-generated - do not edit
|
|
1799
|
+
*/
|
|
1800
|
+
|
|
1801
|
+
interface FullLineageResponse {
|
|
1802
|
+
roots: FullLineageNode[];
|
|
1803
|
+
total_cost_usd: number;
|
|
1804
|
+
session_count: number;
|
|
1805
|
+
}
|
|
1806
|
+
|
|
1712
1807
|
/**
|
|
1713
1808
|
* HTTPValidationError
|
|
1714
1809
|
*
|
|
@@ -1948,6 +2043,8 @@ interface LaunchHillclimbRunResponse {
|
|
|
1948
2043
|
interface LaunchJobRequest {
|
|
1949
2044
|
/** World package, image, and configuration */
|
|
1950
2045
|
world: WorldConfigInput;
|
|
2046
|
+
/** Inline/session child world configs passed through to the world runner */
|
|
2047
|
+
child_worlds?: Record<string, ChildWorldConfig> | null;
|
|
1951
2048
|
/** Tags for organizing/filtering sessions */
|
|
1952
2049
|
tags?: string[] | null;
|
|
1953
2050
|
/** Allow prerelease versions (dev, alpha, beta, rc) for packages */
|
|
@@ -1975,6 +2072,17 @@ interface LaunchJobResponse {
|
|
|
1975
2072
|
status: string;
|
|
1976
2073
|
}
|
|
1977
2074
|
|
|
2075
|
+
/**
|
|
2076
|
+
* LinkPlatoSessionRequest
|
|
2077
|
+
* Request to link a Plato session to an existing Chronos session.
|
|
2078
|
+
*
|
|
2079
|
+
* Auto-generated - do not edit
|
|
2080
|
+
*/
|
|
2081
|
+
interface LinkPlatoSessionRequest {
|
|
2082
|
+
/** Plato session ID to link */
|
|
2083
|
+
plato_session_id: string;
|
|
2084
|
+
}
|
|
2085
|
+
|
|
1978
2086
|
/**
|
|
1979
2087
|
* LiveLogsResponse
|
|
1980
2088
|
* Response for live session logs from VM.
|
|
@@ -2539,6 +2647,26 @@ interface ScreenshotResponse {
|
|
|
2539
2647
|
s3_url?: string | null;
|
|
2540
2648
|
}
|
|
2541
2649
|
|
|
2650
|
+
/**
|
|
2651
|
+
* SendSlackMessageRequest
|
|
2652
|
+
*
|
|
2653
|
+
* Auto-generated - do not edit
|
|
2654
|
+
*/
|
|
2655
|
+
interface SendSlackMessageRequest {
|
|
2656
|
+
/** The message to send to Slack */
|
|
2657
|
+
message: string;
|
|
2658
|
+
}
|
|
2659
|
+
|
|
2660
|
+
/**
|
|
2661
|
+
* SendSlackMessageResponse
|
|
2662
|
+
*
|
|
2663
|
+
* Auto-generated - do not edit
|
|
2664
|
+
*/
|
|
2665
|
+
interface SendSlackMessageResponse {
|
|
2666
|
+
success: boolean;
|
|
2667
|
+
detail: string;
|
|
2668
|
+
}
|
|
2669
|
+
|
|
2542
2670
|
/**
|
|
2543
2671
|
* ServiceStatuses
|
|
2544
2672
|
* Status of connected services.
|
|
@@ -2708,6 +2836,8 @@ interface SessionLogsStreamEvent {
|
|
|
2708
2836
|
interface SessionMetricsResponse {
|
|
2709
2837
|
session_id: string;
|
|
2710
2838
|
data_points: OTelMetricDataPoint[];
|
|
2839
|
+
has_more?: boolean | null;
|
|
2840
|
+
cursor?: string | null;
|
|
2711
2841
|
}
|
|
2712
2842
|
|
|
2713
2843
|
/**
|
|
@@ -2944,6 +3074,7 @@ interface SessionStoredWorldConfig {
|
|
|
2944
3074
|
package?: string | null;
|
|
2945
3075
|
version?: string | null;
|
|
2946
3076
|
config?: Record<string, JsonValue> | null;
|
|
3077
|
+
child_worlds?: Record<string, ChildWorldConfig> | null;
|
|
2947
3078
|
runtime?: Record<string, JsonValue> | null;
|
|
2948
3079
|
preview?: Record<string, JsonValue> | null;
|
|
2949
3080
|
}
|
|
@@ -3167,6 +3298,17 @@ interface TargetSessionRef {
|
|
|
3167
3298
|
target_session_url?: string | null;
|
|
3168
3299
|
}
|
|
3169
3300
|
|
|
3301
|
+
/**
|
|
3302
|
+
* TestRunListResponse
|
|
3303
|
+
* List of test runs for an experiment version.
|
|
3304
|
+
*
|
|
3305
|
+
* Auto-generated - do not edit
|
|
3306
|
+
*/
|
|
3307
|
+
|
|
3308
|
+
interface TestRunListResponse {
|
|
3309
|
+
test_runs: ExperimentTestRunResponse[];
|
|
3310
|
+
}
|
|
3311
|
+
|
|
3170
3312
|
/**
|
|
3171
3313
|
* TokenSummaryRecord
|
|
3172
3314
|
*
|
|
@@ -3483,6 +3625,20 @@ interface UpdateTagsRequest {
|
|
|
3483
3625
|
tags: string[];
|
|
3484
3626
|
}
|
|
3485
3627
|
|
|
3628
|
+
/**
|
|
3629
|
+
* UpdateTestRunRequest
|
|
3630
|
+
* Update a test run status and result.
|
|
3631
|
+
*
|
|
3632
|
+
* Auto-generated - do not edit
|
|
3633
|
+
*/
|
|
3634
|
+
interface UpdateTestRunRequest {
|
|
3635
|
+
status?: string | null;
|
|
3636
|
+
exit_code?: number | null;
|
|
3637
|
+
result_summary?: string | null;
|
|
3638
|
+
git_link?: string | null;
|
|
3639
|
+
commit_sha?: string | null;
|
|
3640
|
+
}
|
|
3641
|
+
|
|
3486
3642
|
/**
|
|
3487
3643
|
* UpsertIterationRequest
|
|
3488
3644
|
* Upsert an iteration record. Keyed by (run_id, iteration).
|
|
@@ -4783,6 +4939,20 @@ interface RunExperimentTargetReviewsParams {
|
|
|
4783
4939
|
specIndex?: number;
|
|
4784
4940
|
xApiKey?: string;
|
|
4785
4941
|
}
|
|
4942
|
+
interface ListExperimentTestRunsParams {
|
|
4943
|
+
versionPublicId: string;
|
|
4944
|
+
xApiKey?: string;
|
|
4945
|
+
}
|
|
4946
|
+
interface CreateExperimentTestRunParams {
|
|
4947
|
+
versionPublicId: string;
|
|
4948
|
+
xApiKey?: string;
|
|
4949
|
+
body: CreateTestRunRequest;
|
|
4950
|
+
}
|
|
4951
|
+
interface UpdateExperimentTestRunParams {
|
|
4952
|
+
publicId: string;
|
|
4953
|
+
xApiKey?: string;
|
|
4954
|
+
body: UpdateTestRunRequest;
|
|
4955
|
+
}
|
|
4786
4956
|
declare class ExperimentsApi {
|
|
4787
4957
|
private client;
|
|
4788
4958
|
constructor(client: ApiClient);
|
|
@@ -4860,6 +5030,21 @@ declare class ExperimentsApi {
|
|
|
4860
5030
|
target_session_id set to the given session.
|
|
4861
5031
|
*/
|
|
4862
5032
|
runExperimentTargetReviews(params: RunExperimentTargetReviewsParams, options?: RequestOptions): Promise<RunReviewsResponse>;
|
|
5033
|
+
/**
|
|
5034
|
+
* List Test Runs
|
|
5035
|
+
* List test runs for an experiment version.
|
|
5036
|
+
*/
|
|
5037
|
+
listExperimentTestRuns(params: ListExperimentTestRunsParams, options?: RequestOptions): Promise<TestRunListResponse>;
|
|
5038
|
+
/**
|
|
5039
|
+
* Create Test Run
|
|
5040
|
+
* Register a sub-experiment test run for a specific experiment version.
|
|
5041
|
+
*/
|
|
5042
|
+
createExperimentTestRun(params: CreateExperimentTestRunParams, options?: RequestOptions): Promise<ExperimentTestRunResponse>;
|
|
5043
|
+
/**
|
|
5044
|
+
* Update Test Run
|
|
5045
|
+
* Update a test run's status and result.
|
|
5046
|
+
*/
|
|
5047
|
+
updateExperimentTestRun(params: UpdateExperimentTestRunParams, options?: RequestOptions): Promise<ExperimentTestRunResponse>;
|
|
4863
5048
|
}
|
|
4864
5049
|
|
|
4865
5050
|
/**
|
|
@@ -5102,6 +5287,10 @@ declare class JobsApi {
|
|
|
5102
5287
|
interface GetSessionMetricsApiOtelSessionsSessionIdMetricsGetParams {
|
|
5103
5288
|
sessionId: string;
|
|
5104
5289
|
envAlias?: string;
|
|
5290
|
+
/** Opaque cursor (batch ID) for pagination */
|
|
5291
|
+
cursor?: string;
|
|
5292
|
+
/** Max number of batches to process */
|
|
5293
|
+
limit?: number;
|
|
5105
5294
|
xApiKey?: string;
|
|
5106
5295
|
}
|
|
5107
5296
|
interface GetSessionTracesApiOtelSessionsSessionIdTracesGetParams {
|
|
@@ -5147,6 +5336,8 @@ declare class OtelApi {
|
|
|
5147
5336
|
* Get stored OTLP metrics for a session.
|
|
5148
5337
|
|
|
5149
5338
|
Returns raw metric data points, optionally filtered by env_alias.
|
|
5339
|
+
Uses cursor-based pagination over metric batches to avoid loading
|
|
5340
|
+
all data into memory at once.
|
|
5150
5341
|
*/
|
|
5151
5342
|
getSessionMetricsApiOtelSessionsSessionIdMetricsGet(params: GetSessionMetricsApiOtelSessionsSessionIdMetricsGetParams, options?: RequestOptions): Promise<SessionMetricsResponse>;
|
|
5152
5343
|
/**
|
|
@@ -5393,6 +5584,8 @@ interface ListSessionsParams {
|
|
|
5393
5584
|
worldVersion?: string;
|
|
5394
5585
|
/** When true, show ONLY archived sessions. When false (default), exclude archived sessions. */
|
|
5395
5586
|
archivedOnly?: boolean;
|
|
5587
|
+
/** Filter to sessions linked to experiments in this folder. Use '__none__' for unfiled experiments. */
|
|
5588
|
+
experimentFolder?: string;
|
|
5396
5589
|
xApiKey?: string;
|
|
5397
5590
|
}
|
|
5398
5591
|
interface CreateSessionParams {
|
|
@@ -5472,6 +5665,11 @@ interface CompleteSessionParams {
|
|
|
5472
5665
|
xApiKey?: string;
|
|
5473
5666
|
body: CompleteSessionRequest;
|
|
5474
5667
|
}
|
|
5668
|
+
interface LinkPlatoSessionParams {
|
|
5669
|
+
publicId: string;
|
|
5670
|
+
xApiKey?: string;
|
|
5671
|
+
body: LinkPlatoSessionRequest;
|
|
5672
|
+
}
|
|
5475
5673
|
interface GetSessionLogsParams {
|
|
5476
5674
|
publicId: string;
|
|
5477
5675
|
limit?: number;
|
|
@@ -5683,6 +5881,14 @@ declare class SessionsApi {
|
|
|
5683
5881
|
Also closes the Plato session to release VM resources.
|
|
5684
5882
|
*/
|
|
5685
5883
|
completeSession(params: CompleteSessionParams, options?: RequestOptions): Promise<SessionResponse>;
|
|
5884
|
+
/**
|
|
5885
|
+
* Link Plato Session
|
|
5886
|
+
* Link a Plato session to an existing Chronos session.
|
|
5887
|
+
|
|
5888
|
+
Used by dev/test runners that create the Chronos session first (for OTel),
|
|
5889
|
+
then create the Plato session separately.
|
|
5890
|
+
*/
|
|
5891
|
+
linkPlatoSession(params: LinkPlatoSessionParams, options?: RequestOptions): Promise<SessionResponse>;
|
|
5686
5892
|
/**
|
|
5687
5893
|
* Get Session Logs
|
|
5688
5894
|
* Get logs/events for a session with cursor-based pagination.
|
|
@@ -5839,6 +6045,26 @@ declare class SettingsApi {
|
|
|
5839
6045
|
slackLookupByEmail(params: SlackLookupByEmailParams, options?: RequestOptions): Promise<SlackLookupResponse>;
|
|
5840
6046
|
}
|
|
5841
6047
|
|
|
6048
|
+
/**
|
|
6049
|
+
* slack API
|
|
6050
|
+
*
|
|
6051
|
+
* Auto-generated - do not edit
|
|
6052
|
+
*/
|
|
6053
|
+
|
|
6054
|
+
interface SendSlackMessageParams {
|
|
6055
|
+
xApiKey?: string;
|
|
6056
|
+
body: SendSlackMessageRequest;
|
|
6057
|
+
}
|
|
6058
|
+
declare class SlackApi {
|
|
6059
|
+
private client;
|
|
6060
|
+
constructor(client: ApiClient);
|
|
6061
|
+
/**
|
|
6062
|
+
* Send Slack Message
|
|
6063
|
+
* Send a custom Slack message tagged with the authenticated user.
|
|
6064
|
+
*/
|
|
6065
|
+
sendSlackMessage(params: SendSlackMessageParams, options?: RequestOptions): Promise<SendSlackMessageResponse>;
|
|
6066
|
+
}
|
|
6067
|
+
|
|
5842
6068
|
/**
|
|
5843
6069
|
* starred_checkpoints API
|
|
5844
6070
|
*
|
|
@@ -5990,6 +6216,10 @@ interface GetSessionLineageParams {
|
|
|
5990
6216
|
workspace: string;
|
|
5991
6217
|
xApiKey?: string;
|
|
5992
6218
|
}
|
|
6219
|
+
interface GetSessionFullLineageParams {
|
|
6220
|
+
sessionPublicId: string;
|
|
6221
|
+
xApiKey?: string;
|
|
6222
|
+
}
|
|
5993
6223
|
interface GetDownstreamSessionsParams {
|
|
5994
6224
|
refPublicId: string;
|
|
5995
6225
|
xApiKey?: string;
|
|
@@ -6117,6 +6347,11 @@ declare class WorkspaceReposApi {
|
|
|
6117
6347
|
* Walk backward through source_ref links to build session lineage for a workspace.
|
|
6118
6348
|
*/
|
|
6119
6349
|
getSessionLineage(params: GetSessionLineageParams, options?: RequestOptions): Promise<SessionLineageResponse>;
|
|
6350
|
+
/**
|
|
6351
|
+
* Get Session Full Lineage
|
|
6352
|
+
* Build a full lineage tree across all workspaces for a session, including costs.
|
|
6353
|
+
*/
|
|
6354
|
+
getSessionFullLineage(params: GetSessionFullLineageParams, options?: RequestOptions): Promise<FullLineageResponse>;
|
|
6120
6355
|
/**
|
|
6121
6356
|
* Get Downstream Sessions
|
|
6122
6357
|
* Find all sessions that consumed (forked/resumed from) a given workspace ref.
|
|
@@ -6296,6 +6531,7 @@ declare class ChronosClient {
|
|
|
6296
6531
|
readonly savedFilters: SavedFiltersApi;
|
|
6297
6532
|
readonly sessions: SessionsApi;
|
|
6298
6533
|
readonly settings: SettingsApi;
|
|
6534
|
+
readonly slack: SlackApi;
|
|
6299
6535
|
readonly starredCheckpoints: StarredCheckpointsApi;
|
|
6300
6536
|
readonly status: StatusApi;
|
|
6301
6537
|
readonly workspaceRepos: WorkspaceReposApi;
|
|
@@ -6307,4 +6543,4 @@ declare class ChronosClient {
|
|
|
6307
6543
|
getApiClient(): ApiClient;
|
|
6308
6544
|
}
|
|
6309
6545
|
|
|
6310
|
-
export { type ActiveAnalysis, type AddSessionsRequest, AdminApi, type AgentArtifactPath, type AgentCostRecord, type AgentCreate, type AgentInfo, type AgentIssue, type AgentListResponse, type AgentLookupResponse, type AgentResponse, type AgentSchemaResponse, type AgentStep, type AgentStepMetrics, type AgentTrace, type AgentTrajectory, type AgentVersionInfo, type AgentVersionsResponse, AgentsApi, type AnalysisProvenance, type AnalysisRecordInput, type AnalysisRecordOutput, type AnalyzerSessionRef, type AnchorSessionResponse, type AnnotationListResponse, type AnnotationMetricsResponse, type AnnotationResponse, type AnnotationTarget, AnnotationsApi, type AppConfigResponse, type Artifact, type AssignmentListResponse, type AssignmentPreviewItem, type AssignmentPreviewResponse, type AssignmentResponse, AssignmentsApi, type AuditEventCountsResponse, type AuditEventInput, type AuditEventResponse, type AuditEventsListResponse, type AuditSummaryEntry, type AuditSummaryResponse, AuthApi, type AuthSessionResponse, type AuthStatusResponse, type BatchCreateAssignmentsBody, type BranchInfo, type BranchListResponse, BrowserApi, type BulkRefAuditEventsRequest, type CheckpointListItem, type CheckpointListResponse, CheckpointsApi, type ChildSessionSummary, ApiClient as ChronosApiClient, type ChronosApiDatasetsFoldersListResponse, type ChronosApiDatasetsRenameFolderRequest, type ChronosApiDatasetsRenameFolderResponse, ApiError as ChronosApiError, type ChronosApiExperimentsFoldersListResponse, type ChronosApiExperimentsRenameFolderRequest, type ChronosApiExperimentsRenameFolderResponse, type ApiRequest as ChronosApiRequest, ChronosClient, type ClientConfig as ChronosClientConfig, type RequestOptions as ChronosRequestOptions, type ClaudeCodeOAuthRefreshRequest, type ClearDbResult, type CloseSessionResponse, type CompleteSessionRequest, type CompressionArtifactInventory, type CompressionArtifactRecord, type CompressionChunkRecord, type CompressionClusterRef, type CompressionCoverageInput, type CompressionCoverageOutput, type CompressionManifestInput, type CompressionManifestOutput, type CompressionMetrics, type CompressionNoteCounts, type CompressionRunRecordInput, type CompressionRunRecordOutput, type CopyAnnotationsRequest, type CostAnalysisRecordInput, type CostAnalysisRecordOutput, type CreateAnchorSessionRequest, type CreateAnnotationRequest, type CreateAssignmentBody, type CreateBranchRequest, type CreateBranchResponse, type CreateDatasetRequest, type CreateReviewRequest, type CreateSessionRequest, type CreateSessionResponse, type CreateStepFile, type CreateStepRequest, type CreateStepResponse, type CreateWorkspaceRefRequest, type CreatorsListResponse, type DVCManifestEntry, type DailyUsageBucketResponse, type DatasetColumn, type DatasetColumnType, type DatasetDetailResponse, type DatasetFileCreateRequest, type DatasetFileListResponse, type DatasetFileResponse, type DatasetFileUpdateRequest, type DatasetResponse, type DatasetSessionSummary, type DatasetVersionCreateRequest, type DatasetVersionResponse, type DatasetVersionUpdateRequest, DatasetsApi, DefaultApi, type DeleteSessionResult, type DirectoryListing, type DownstreamSessionEntry, type DownstreamSessionsResponse, type EnvInfo, type EnvInfoResponse, EventsApi, type ExperimentFileCreateRequest, type ExperimentFileListResponse, type ExperimentFileResponse, type ExperimentFileUpdateRequest, type ExperimentFileVersionCreateRequest, type ExperimentFileVersionUpdateRequest, type ExperimentLaunchConfig, type ExperimentSessionCountResponse, type ExperimentSessionSummary, type ExperimentVersionResponse, ExperimentsApi, type FeatureFlagCheckResult, type FeedbackWidget, type FindOrCreateReviewBody, type HTTPValidationError, HillclimbApi, type HillclimbIterationResponse, type HillclimbRunDetailResponse, type HillclimbRunResponse, type IssueReference, type IterationOutcome, type IterationSessionIcon, type IterationSessionResponse, JobsApi, type JsonValue, type LaunchExperimentRequest, type LaunchExperimentResponse, type LaunchExperimentSessionResult, type LaunchHillclimbRunRequest, type LaunchHillclimbRunResponse, type LaunchJobRequest, type LaunchJobResponse, type LiveLogsResponse, type LogCoverageRuleSet, type LogScopePartitioning, type LogsDownloadResponse, type ModelRef, type NavigateAnchorSessionRequest, type OAuthRefreshResponse, type OTelMetricDataPoint, type OTelSpanListResponse, type OTelSpanSchema, type OTelTraceResponse, OtelApi, type PageScopeConfig, type PerAgentReport, type PlatoUser, type PreservationRuleSet, type PreviewLaunchConfig, type PreviewResponse, type PromoteBranchRequest, type PublishedNoteRecord, type RegistryAgentListResponse, type RegistryAgentSchemaResponse, type RegistryAgentVersionInfo, type RegistryAgentVersionsResponse, RegistryApi, type RegistryWorldInfo, type RenderWidget, type RerunPreviewResponse, type RerunWithConfigRequest, type RetryConfig, type ReviewIssue, type ReviewListResponse, type ReviewResponse, type ReviewWidgetSchemaResponse, ReviewsApi, type RouteScopeConfig, type RunLifecycle, type RunProgress, type RunReviewsResponse, type SSOLoginRequest, type SavedFilterCreate, type SavedFilterListResponse, type SavedFilterResponse, SavedFiltersApi, type SavedSessionFilters, type ScreenshotResponse, type ServiceStatuses, type SessionCheckpointInfoResponse, type SessionCostEntry, type SessionCostSummaryResponse, type SessionCreator, type SessionEnvsResponse, type SessionLaunchConfig, type SessionLineageEntry, type SessionLineageResponse, type SessionListResponse, type SessionLogsResponse, type SessionLogsStreamEvent, type SessionMetricsResponse, type SessionNoteUserRef, type SessionNotesPayloadInput, type SessionNotesPayloadOutput, type SessionResponse, type SessionReviewReportInput, type SessionReviewReportOutput, type SessionReviewerNotesInput, type SessionReviewerNotesOutput, type SessionReviewerRunRecordInput, type SessionReviewerRunRecordOutput, type SessionReviewerSpanNote, type SessionStatusResponse, type SessionStoredWorldConfig, type SessionSummary, type SessionToolSummary, type SessionTrajectory, type SessionWorldInfo, SessionsApi, type SettingResponse, SettingsApi, type SlackLookupResponse, type StarredCheckpointCreate, type StarredCheckpointListResponse, type StarredCheckpointResponse, type StarredCheckpointUpdate, StarredCheckpointsApi, StatusApi, type StatusResponse, type SyncAllResult, type SyncResult, type TagsListResponse, type TargetReviewSpec, type TargetSessionRef, type TokenSummaryRecord, type ToolStat, type ToolUsageCount, type TrajectoryAgentInfo, type TrajectoryMetrics, type TrajectoryObservation, type TrajectoryObservationResult, type TrajectorySandboxInfo, type TrajectoryToolCall, type TrajectoryWorldInfo, type UpdateAnnotationRequest, type UpdateAssignmentBody, type UpdateDatasetRequest, type UpdateFileRequest, type UpdateFileResponse, type UpdateNotesRequest, type UpdateReviewRequest, type UpdateRunRequest, type UpdateSettingRequest, type UpdateSpanNoteRequest, type UpdateStatusRequest, type UpdateTagsRequest, type UpsertIterationRequest, type UpsertIterationSessionRequest, type UsageStatsResponse, type UserInfo, type UserLeaderboardEntry, type UserWorldStatsEntry, type VMResources, type ValidationError, type VersionResponse, type WorkspaceFilesResponse, type WorkspaceRefEntry, type WorkspaceRefResponse, type WorkspaceRefSearchResponse, type WorkspaceRefSearchResult, type WorkspaceRefsListResponse, type WorkspaceRepoCredentialsResponse, type WorkspaceRepoListItem, type WorkspaceRepoListResponse, type WorkspaceRepoResolveRequest, type WorkspaceRepoResolveResponse, type WorkspaceRepoSizeResponse, WorkspaceReposApi, type WorkspaceSnapshotInfo, type WorldCatalogDetailResponse, type WorldCatalogEntry, type WorldCatalogResponse, type WorldConfigAgentEntry, type WorldConfigInput, type WorldConfigNamedEntry, type WorldConfigOutput, type WorldConfigSchema, type WorldCreate, type WorldLeaderboardEntry, type WorldListResponse, type WorldResponse, type WorldRuntimeConfig, type WorldSchemaResponse, type WorldStep, type WorldVersionsResponse, WorldsApi };
|
|
6546
|
+
export { type ActiveAnalysis, type AddSessionsRequest, AdminApi, type AgentArtifactPath, type AgentCostRecord, type AgentCreate, type AgentInfo, type AgentIssue, type AgentListResponse, type AgentLookupResponse, type AgentResponse, type AgentSchemaResponse, type AgentStep, type AgentStepMetrics, type AgentTrace, type AgentTrajectory, type AgentVersionInfo, type AgentVersionsResponse, AgentsApi, type AnalysisProvenance, type AnalysisRecordInput, type AnalysisRecordOutput, type AnalyzerSessionRef, type AnchorSessionResponse, type AnnotationListResponse, type AnnotationMetricsResponse, type AnnotationResponse, type AnnotationTarget, AnnotationsApi, type AppConfigResponse, type Artifact, type AssignmentListResponse, type AssignmentPreviewItem, type AssignmentPreviewResponse, type AssignmentResponse, AssignmentsApi, type AuditEventCountsResponse, type AuditEventInput, type AuditEventResponse, type AuditEventsListResponse, type AuditSummaryEntry, type AuditSummaryResponse, AuthApi, type AuthSessionResponse, type AuthStatusResponse, type BatchCreateAssignmentsBody, type BranchInfo, type BranchListResponse, BrowserApi, type BulkRefAuditEventsRequest, type CheckpointListItem, type CheckpointListResponse, CheckpointsApi, type ChildSessionSummary, type ChildWorldConfig, ApiClient as ChronosApiClient, type ChronosApiDatasetsFoldersListResponse, type ChronosApiDatasetsRenameFolderRequest, type ChronosApiDatasetsRenameFolderResponse, ApiError as ChronosApiError, type ChronosApiExperimentsFoldersListResponse, type ChronosApiExperimentsRenameFolderRequest, type ChronosApiExperimentsRenameFolderResponse, type ApiRequest as ChronosApiRequest, ChronosClient, type ClientConfig as ChronosClientConfig, type RequestOptions as ChronosRequestOptions, type ClaudeCodeOAuthRefreshRequest, type ClearDbResult, type CloseSessionResponse, type CompleteSessionRequest, type CompressionArtifactInventory, type CompressionArtifactRecord, type CompressionChunkRecord, type CompressionClusterRef, type CompressionCoverageInput, type CompressionCoverageOutput, type CompressionManifestInput, type CompressionManifestOutput, type CompressionMetrics, type CompressionNoteCounts, type CompressionRunRecordInput, type CompressionRunRecordOutput, type CopyAnnotationsRequest, type CostAnalysisRecordInput, type CostAnalysisRecordOutput, type CreateAnchorSessionRequest, type CreateAnnotationRequest, type CreateAssignmentBody, type CreateBranchRequest, type CreateBranchResponse, type CreateDatasetRequest, type CreateReviewRequest, type CreateSessionRequest, type CreateSessionResponse, type CreateStepFile, type CreateStepRequest, type CreateStepResponse, type CreateTestRunRequest, type CreateWorkspaceRefRequest, type CreatorsListResponse, type DVCManifestEntry, type DailyUsageBucketResponse, type DatasetColumn, type DatasetColumnType, type DatasetDetailResponse, type DatasetFileCreateRequest, type DatasetFileListResponse, type DatasetFileResponse, type DatasetFileUpdateRequest, type DatasetResponse, type DatasetSessionSummary, type DatasetVersionCreateRequest, type DatasetVersionResponse, type DatasetVersionUpdateRequest, DatasetsApi, DefaultApi, type DeleteSessionResult, type DirectoryListing, type DownstreamSessionEntry, type DownstreamSessionsResponse, type EnvInfo, type EnvInfoResponse, EventsApi, type ExperimentFileCreateRequest, type ExperimentFileListResponse, type ExperimentFileResponse, type ExperimentFileUpdateRequest, type ExperimentFileVersionCreateRequest, type ExperimentFileVersionUpdateRequest, type ExperimentLaunchConfig, type ExperimentSessionCountResponse, type ExperimentSessionSummary, type ExperimentTestRunResponse, type ExperimentVersionResponse, ExperimentsApi, type FeatureFlagCheckResult, type FeedbackWidget, type FindOrCreateReviewBody, type FullLineageNode, type FullLineageResponse, type HTTPValidationError, HillclimbApi, type HillclimbIterationResponse, type HillclimbRunDetailResponse, type HillclimbRunResponse, type IssueReference, type IterationOutcome, type IterationSessionIcon, type IterationSessionResponse, JobsApi, type JsonValue, type LaunchExperimentRequest, type LaunchExperimentResponse, type LaunchExperimentSessionResult, type LaunchHillclimbRunRequest, type LaunchHillclimbRunResponse, type LaunchJobRequest, type LaunchJobResponse, type LinkPlatoSessionRequest, type LiveLogsResponse, type LogCoverageRuleSet, type LogScopePartitioning, type LogsDownloadResponse, type ModelRef, type NavigateAnchorSessionRequest, type OAuthRefreshResponse, type OTelMetricDataPoint, type OTelSpanListResponse, type OTelSpanSchema, type OTelTraceResponse, OtelApi, type PageScopeConfig, type PerAgentReport, type PlatoUser, type PreservationRuleSet, type PreviewLaunchConfig, type PreviewResponse, type PromoteBranchRequest, type PublishedNoteRecord, type RegistryAgentListResponse, type RegistryAgentSchemaResponse, type RegistryAgentVersionInfo, type RegistryAgentVersionsResponse, RegistryApi, type RegistryWorldInfo, type RenderWidget, type RerunPreviewResponse, type RerunWithConfigRequest, type RetryConfig, type ReviewIssue, type ReviewListResponse, type ReviewResponse, type ReviewWidgetSchemaResponse, ReviewsApi, type RouteScopeConfig, type RunLifecycle, type RunProgress, type RunReviewsResponse, type SSOLoginRequest, type SavedFilterCreate, type SavedFilterListResponse, type SavedFilterResponse, SavedFiltersApi, type SavedSessionFilters, type ScreenshotResponse, type SendSlackMessageRequest, type SendSlackMessageResponse, type ServiceStatuses, type SessionCheckpointInfoResponse, type SessionCostEntry, type SessionCostSummaryResponse, type SessionCreator, type SessionEnvsResponse, type SessionLaunchConfig, type SessionLineageEntry, type SessionLineageResponse, type SessionListResponse, type SessionLogsResponse, type SessionLogsStreamEvent, type SessionMetricsResponse, type SessionNoteUserRef, type SessionNotesPayloadInput, type SessionNotesPayloadOutput, type SessionResponse, type SessionReviewReportInput, type SessionReviewReportOutput, type SessionReviewerNotesInput, type SessionReviewerNotesOutput, type SessionReviewerRunRecordInput, type SessionReviewerRunRecordOutput, type SessionReviewerSpanNote, type SessionStatusResponse, type SessionStoredWorldConfig, type SessionSummary, type SessionToolSummary, type SessionTrajectory, type SessionWorldInfo, SessionsApi, type SettingResponse, SettingsApi, SlackApi, type SlackLookupResponse, type StarredCheckpointCreate, type StarredCheckpointListResponse, type StarredCheckpointResponse, type StarredCheckpointUpdate, StarredCheckpointsApi, StatusApi, type StatusResponse, type SyncAllResult, type SyncResult, type TagsListResponse, type TargetReviewSpec, type TargetSessionRef, type TestRunListResponse, type TokenSummaryRecord, type ToolStat, type ToolUsageCount, type TrajectoryAgentInfo, type TrajectoryMetrics, type TrajectoryObservation, type TrajectoryObservationResult, type TrajectorySandboxInfo, type TrajectoryToolCall, type TrajectoryWorldInfo, type UpdateAnnotationRequest, type UpdateAssignmentBody, type UpdateDatasetRequest, type UpdateFileRequest, type UpdateFileResponse, type UpdateNotesRequest, type UpdateReviewRequest, type UpdateRunRequest, type UpdateSettingRequest, type UpdateSpanNoteRequest, type UpdateStatusRequest, type UpdateTagsRequest, type UpdateTestRunRequest, type UpsertIterationRequest, type UpsertIterationSessionRequest, type UsageStatsResponse, type UserInfo, type UserLeaderboardEntry, type UserWorldStatsEntry, type VMResources, type ValidationError, type VersionResponse, type WorkspaceFilesResponse, type WorkspaceRefEntry, type WorkspaceRefResponse, type WorkspaceRefSearchResponse, type WorkspaceRefSearchResult, type WorkspaceRefsListResponse, type WorkspaceRepoCredentialsResponse, type WorkspaceRepoListItem, type WorkspaceRepoListResponse, type WorkspaceRepoResolveRequest, type WorkspaceRepoResolveResponse, type WorkspaceRepoSizeResponse, WorkspaceReposApi, type WorkspaceSnapshotInfo, type WorldCatalogDetailResponse, type WorldCatalogEntry, type WorldCatalogResponse, type WorldConfigAgentEntry, type WorldConfigInput, type WorldConfigNamedEntry, type WorldConfigOutput, type WorldConfigSchema, type WorldCreate, type WorldLeaderboardEntry, type WorldListResponse, type WorldResponse, type WorldRuntimeConfig, type WorldSchemaResponse, type WorldStep, type WorldVersionsResponse, WorldsApi };
|