@runtypelabs/sdk 7.3.1 → 8.0.1
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.cjs +8 -21
- package/dist/index.d.cts +303 -152
- package/dist/index.d.ts +303 -152
- package/dist/index.mjs +8 -21
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2722,6 +2722,24 @@ interface paths {
|
|
|
2722
2722
|
"application/json": components["schemas"]["Error"];
|
|
2723
2723
|
};
|
|
2724
2724
|
};
|
|
2725
|
+
/** @description Organization model configuration needs configuration */
|
|
2726
|
+
409: {
|
|
2727
|
+
headers: {
|
|
2728
|
+
[name: string]: unknown;
|
|
2729
|
+
};
|
|
2730
|
+
content: {
|
|
2731
|
+
"application/json": {
|
|
2732
|
+
candidateCount: number;
|
|
2733
|
+
/** @enum {string} */
|
|
2734
|
+
code: "ORGANIZATION_MODEL_CONFIG_NEEDS_CONFIGURATION";
|
|
2735
|
+
configId: string;
|
|
2736
|
+
details: string;
|
|
2737
|
+
error: string;
|
|
2738
|
+
modelId: string;
|
|
2739
|
+
provider: string;
|
|
2740
|
+
};
|
|
2741
|
+
};
|
|
2742
|
+
};
|
|
2725
2743
|
/** @description Internal server error */
|
|
2726
2744
|
500: {
|
|
2727
2745
|
headers: {
|
|
@@ -2748,7 +2766,7 @@ interface paths {
|
|
|
2748
2766
|
};
|
|
2749
2767
|
/**
|
|
2750
2768
|
* List agent executions
|
|
2751
|
-
* @description List execution history for an agent with cursor pagination. Supports cross-agent subagent drill-down via parentExecutionId or executionId filters.
|
|
2769
|
+
* @description List execution history for an agent with cursor pagination. Rows include `finalOutput` by default; pass `view=compact` for the lighter projection that omits it and previews long strings. Supports cross-agent subagent drill-down via parentExecutionId or executionId filters.
|
|
2752
2770
|
*/
|
|
2753
2771
|
get: {
|
|
2754
2772
|
parameters: {
|
|
@@ -2762,6 +2780,8 @@ interface paths {
|
|
|
2762
2780
|
to?: string;
|
|
2763
2781
|
parentExecutionId?: string;
|
|
2764
2782
|
executionId?: string;
|
|
2783
|
+
/** @description Response representation. `full` (default) preserves complete values and includes each row's `finalOutput`; `compact` omits `finalOutput` and shortens every remaining string value longer than 100 characters to a 100-character preview followed by `…`. */
|
|
2784
|
+
view?: "full" | "compact";
|
|
2765
2785
|
};
|
|
2766
2786
|
header?: never;
|
|
2767
2787
|
path: {
|
|
@@ -2789,6 +2809,8 @@ interface paths {
|
|
|
2789
2809
|
/** @enum {string} */
|
|
2790
2810
|
executionMode: "attached" | "detached";
|
|
2791
2811
|
expiresAt: string | null;
|
|
2812
|
+
/** @description The run's final output. Present by default; omitted when `view=compact`. */
|
|
2813
|
+
finalOutput?: unknown;
|
|
2792
2814
|
id: string;
|
|
2793
2815
|
inputMessages?: unknown;
|
|
2794
2816
|
iterations: number | null;
|
|
@@ -18500,6 +18522,21 @@ interface paths {
|
|
|
18500
18522
|
"application/json": components["schemas"]["Error"];
|
|
18501
18523
|
};
|
|
18502
18524
|
};
|
|
18525
|
+
/** @description Organization model configuration already migrated */
|
|
18526
|
+
409: {
|
|
18527
|
+
headers: {
|
|
18528
|
+
[name: string]: unknown;
|
|
18529
|
+
};
|
|
18530
|
+
content: {
|
|
18531
|
+
"application/json": {
|
|
18532
|
+
/** @enum {string} */
|
|
18533
|
+
code: "ORGANIZATION_MODEL_CONFIG_MIGRATED";
|
|
18534
|
+
configId: string;
|
|
18535
|
+
details: string;
|
|
18536
|
+
error: string;
|
|
18537
|
+
};
|
|
18538
|
+
};
|
|
18539
|
+
};
|
|
18503
18540
|
/** @description Internal server error */
|
|
18504
18541
|
500: {
|
|
18505
18542
|
headers: {
|
|
@@ -18556,6 +18593,21 @@ interface paths {
|
|
|
18556
18593
|
"application/json": components["schemas"]["Error"];
|
|
18557
18594
|
};
|
|
18558
18595
|
};
|
|
18596
|
+
/** @description Organization model configuration already migrated */
|
|
18597
|
+
409: {
|
|
18598
|
+
headers: {
|
|
18599
|
+
[name: string]: unknown;
|
|
18600
|
+
};
|
|
18601
|
+
content: {
|
|
18602
|
+
"application/json": {
|
|
18603
|
+
/** @enum {string} */
|
|
18604
|
+
code: "ORGANIZATION_MODEL_CONFIG_MIGRATED";
|
|
18605
|
+
configId: string;
|
|
18606
|
+
details: string;
|
|
18607
|
+
error: string;
|
|
18608
|
+
};
|
|
18609
|
+
};
|
|
18610
|
+
};
|
|
18559
18611
|
};
|
|
18560
18612
|
};
|
|
18561
18613
|
options?: never;
|
|
@@ -18799,7 +18851,7 @@ interface paths {
|
|
|
18799
18851
|
};
|
|
18800
18852
|
/**
|
|
18801
18853
|
* List connected integration accounts
|
|
18802
|
-
* @description List
|
|
18854
|
+
* @description List connected integration accounts available in the caller's active personal or organization scope. Use an integration ID to pin a tool instance to a specific connection, e.g. a Granola tool's toolConfigs integrationId.
|
|
18803
18855
|
*/
|
|
18804
18856
|
get: {
|
|
18805
18857
|
parameters: {
|
|
@@ -18823,7 +18875,10 @@ interface paths {
|
|
|
18823
18875
|
connections: {
|
|
18824
18876
|
accountName: string;
|
|
18825
18877
|
createdAt: string;
|
|
18878
|
+
/** @enum {string} */
|
|
18879
|
+
environment?: "development" | "production";
|
|
18826
18880
|
integrationId: string;
|
|
18881
|
+
isDefault?: boolean;
|
|
18827
18882
|
metadata?: {
|
|
18828
18883
|
[key: string]: unknown;
|
|
18829
18884
|
};
|
|
@@ -21927,6 +21982,22 @@ interface paths {
|
|
|
21927
21982
|
"application/json": components["schemas"]["Error"];
|
|
21928
21983
|
};
|
|
21929
21984
|
};
|
|
21985
|
+
/** @description The organization credential has moved to the normalized connection plane. The legacy route refuses the mutation and identifies whether the blocking authority is a connection or provider policy. */
|
|
21986
|
+
409: {
|
|
21987
|
+
headers: {
|
|
21988
|
+
[name: string]: unknown;
|
|
21989
|
+
};
|
|
21990
|
+
content: {
|
|
21991
|
+
"application/json": {
|
|
21992
|
+
authorityId: string;
|
|
21993
|
+
/** @enum {string} */
|
|
21994
|
+
authorityType: "connection" | "policy";
|
|
21995
|
+
/** @enum {string} */
|
|
21996
|
+
code: "ORGANIZATION_CONNECTION_MIGRATED";
|
|
21997
|
+
error: string;
|
|
21998
|
+
};
|
|
21999
|
+
};
|
|
22000
|
+
};
|
|
21930
22001
|
/** @description Internal server error */
|
|
21931
22002
|
500: {
|
|
21932
22003
|
headers: {
|
|
@@ -22005,6 +22076,22 @@ interface paths {
|
|
|
22005
22076
|
"application/json": components["schemas"]["Error"];
|
|
22006
22077
|
};
|
|
22007
22078
|
};
|
|
22079
|
+
/** @description The organization credential has moved to the normalized connection plane. The legacy route refuses the mutation and identifies whether the blocking authority is a connection or provider policy. */
|
|
22080
|
+
409: {
|
|
22081
|
+
headers: {
|
|
22082
|
+
[name: string]: unknown;
|
|
22083
|
+
};
|
|
22084
|
+
content: {
|
|
22085
|
+
"application/json": {
|
|
22086
|
+
authorityId: string;
|
|
22087
|
+
/** @enum {string} */
|
|
22088
|
+
authorityType: "connection" | "policy";
|
|
22089
|
+
/** @enum {string} */
|
|
22090
|
+
code: "ORGANIZATION_CONNECTION_MIGRATED";
|
|
22091
|
+
error: string;
|
|
22092
|
+
};
|
|
22093
|
+
};
|
|
22094
|
+
};
|
|
22008
22095
|
/** @description Internal server error */
|
|
22009
22096
|
500: {
|
|
22010
22097
|
headers: {
|
|
@@ -22293,7 +22380,7 @@ interface paths {
|
|
|
22293
22380
|
flowId?: string;
|
|
22294
22381
|
/** @description Filter by agent ID */
|
|
22295
22382
|
agentId?: string;
|
|
22296
|
-
/** @description Filter by execution ID */
|
|
22383
|
+
/** @description Filter by runtime execution_id / executionSessionId (for example exec_... or otel-...), not the aex_... agent-execution row ID */
|
|
22297
22384
|
executionId?: string;
|
|
22298
22385
|
/** @description Filter by surface ID */
|
|
22299
22386
|
surfaceId?: string;
|
|
@@ -22472,7 +22559,7 @@ interface paths {
|
|
|
22472
22559
|
flowId?: string;
|
|
22473
22560
|
/** @description Filter by agent ID */
|
|
22474
22561
|
agentId?: string;
|
|
22475
|
-
/** @description Filter by execution ID */
|
|
22562
|
+
/** @description Filter by runtime execution_id / executionSessionId (for example exec_... or otel-...), not the aex_... agent-execution row ID */
|
|
22476
22563
|
executionId?: string;
|
|
22477
22564
|
/** @description Filter by surface ID */
|
|
22478
22565
|
surfaceId?: string;
|
|
@@ -22657,7 +22744,7 @@ interface paths {
|
|
|
22657
22744
|
query?: never;
|
|
22658
22745
|
header?: never;
|
|
22659
22746
|
path: {
|
|
22660
|
-
/** @description
|
|
22747
|
+
/** @description Runtime execution_id / executionSessionId to trace (for example exec_... or otel-...), not the aex_... agent-execution row ID */
|
|
22661
22748
|
executionId: string;
|
|
22662
22749
|
};
|
|
22663
22750
|
cookie?: never;
|
|
@@ -24865,8 +24952,15 @@ interface paths {
|
|
|
24865
24952
|
"application/json": {
|
|
24866
24953
|
data: {
|
|
24867
24954
|
configScope?: string;
|
|
24955
|
+
/**
|
|
24956
|
+
* @description Organization configuration readiness. `needs_configuration` means conflicting legacy teammate settings were preserved and execution fails closed until an authorized actor deliberately updates the canonical row.
|
|
24957
|
+
* @enum {string}
|
|
24958
|
+
*/
|
|
24959
|
+
configurationStatus?: "ready" | "needs_configuration";
|
|
24868
24960
|
costPer1kTokens?: number;
|
|
24869
24961
|
createdAt: string;
|
|
24962
|
+
/** @description Nullable creation provenance for organization-owned model configurations; never authorization or execution authority. */
|
|
24963
|
+
createdByUserId?: string | null;
|
|
24870
24964
|
creator?: string;
|
|
24871
24965
|
creatorDisplayName?: string | null;
|
|
24872
24966
|
displayName?: string;
|
|
@@ -24877,6 +24971,8 @@ interface paths {
|
|
|
24877
24971
|
/** @enum {string} */
|
|
24878
24972
|
keyStatus?: "platform" | "custom" | "needs_setup";
|
|
24879
24973
|
maxOutputTokens?: number;
|
|
24974
|
+
/** @description Number of preserved legacy candidates considered during organization migration. Candidate settings remain internal. */
|
|
24975
|
+
migrationCandidateCount?: number;
|
|
24880
24976
|
modelId: string;
|
|
24881
24977
|
/** @description Normalized organization-owned connection reference. Null for platform selection, personal credentials, and providers that have not migrated. */
|
|
24882
24978
|
organizationConnectionId?: string | null;
|
|
@@ -24900,7 +24996,8 @@ interface paths {
|
|
|
24900
24996
|
supportsSearch?: boolean;
|
|
24901
24997
|
supportsStreaming?: boolean;
|
|
24902
24998
|
updatedAt: string;
|
|
24903
|
-
|
|
24999
|
+
/** @description Legacy actor owner for personal/compatibility rows. Null for organization-owned model configurations. */
|
|
25000
|
+
userId: string | null;
|
|
24904
25001
|
}[];
|
|
24905
25002
|
total: number;
|
|
24906
25003
|
};
|
|
@@ -24952,7 +25049,7 @@ interface paths {
|
|
|
24952
25049
|
"application/json": {
|
|
24953
25050
|
modelId: string;
|
|
24954
25051
|
/** @enum {string} */
|
|
24955
|
-
provider: "model" | "runtype" | "mock" | "modelsocket" | "mixlayer" | "openai" | "anthropic" | "google" | "xai" | "
|
|
25052
|
+
provider: "model" | "runtype" | "mock" | "modelsocket" | "mixlayer" | "openai" | "anthropic" | "google" | "xai" | "vertex" | "vertex-anthropic" | "bedrock" | "tinfoil" | "vercel" | "generic-openai";
|
|
24956
25053
|
/** @description Credential selector: `platform`, a provider-key ID, or an organization-connection ID. For migrated model providers this stores the model reference without changing organization-wide credential policy. */
|
|
24957
25054
|
providerKeyId?: string;
|
|
24958
25055
|
/** @default {} */
|
|
@@ -24965,7 +25062,7 @@ interface paths {
|
|
|
24965
25062
|
modelMapping?: string;
|
|
24966
25063
|
};
|
|
24967
25064
|
/** @enum {string} */
|
|
24968
|
-
executorProvider?: "openai" | "anthropic" | "google" | "xai" | "
|
|
25065
|
+
executorProvider?: "openai" | "anthropic" | "google" | "xai" | "vertex" | "vertex-anthropic" | "bedrock" | "tinfoil" | "vercel" | "generic-openai";
|
|
24969
25066
|
inputCostPer1kTokens: number;
|
|
24970
25067
|
/** @default 4096 */
|
|
24971
25068
|
maxOutputTokens?: number;
|
|
@@ -24997,8 +25094,15 @@ interface paths {
|
|
|
24997
25094
|
content: {
|
|
24998
25095
|
"application/json": {
|
|
24999
25096
|
configScope?: string;
|
|
25097
|
+
/**
|
|
25098
|
+
* @description Organization configuration readiness. `needs_configuration` means conflicting legacy teammate settings were preserved and execution fails closed until an authorized actor deliberately updates the canonical row.
|
|
25099
|
+
* @enum {string}
|
|
25100
|
+
*/
|
|
25101
|
+
configurationStatus?: "ready" | "needs_configuration";
|
|
25000
25102
|
costPer1kTokens?: number;
|
|
25001
25103
|
createdAt: string;
|
|
25104
|
+
/** @description Nullable creation provenance for organization-owned model configurations; never authorization or execution authority. */
|
|
25105
|
+
createdByUserId?: string | null;
|
|
25002
25106
|
creator?: string;
|
|
25003
25107
|
creatorDisplayName?: string | null;
|
|
25004
25108
|
displayName?: string;
|
|
@@ -25009,6 +25113,8 @@ interface paths {
|
|
|
25009
25113
|
/** @enum {string} */
|
|
25010
25114
|
keyStatus?: "platform" | "custom" | "needs_setup";
|
|
25011
25115
|
maxOutputTokens?: number;
|
|
25116
|
+
/** @description Number of preserved legacy candidates considered during organization migration. Candidate settings remain internal. */
|
|
25117
|
+
migrationCandidateCount?: number;
|
|
25012
25118
|
modelId: string;
|
|
25013
25119
|
/** @description Normalized organization-owned connection reference. Null for platform selection, personal credentials, and providers that have not migrated. */
|
|
25014
25120
|
organizationConnectionId?: string | null;
|
|
@@ -25032,7 +25138,8 @@ interface paths {
|
|
|
25032
25138
|
supportsSearch?: boolean;
|
|
25033
25139
|
supportsStreaming?: boolean;
|
|
25034
25140
|
updatedAt: string;
|
|
25035
|
-
|
|
25141
|
+
/** @description Legacy actor owner for personal/compatibility rows. Null for organization-owned model configurations. */
|
|
25142
|
+
userId: string | null;
|
|
25036
25143
|
};
|
|
25037
25144
|
};
|
|
25038
25145
|
};
|
|
@@ -25072,6 +25179,30 @@ interface paths {
|
|
|
25072
25179
|
"application/json": components["schemas"]["Error"];
|
|
25073
25180
|
};
|
|
25074
25181
|
};
|
|
25182
|
+
/** @description Organization model configuration migration conflict */
|
|
25183
|
+
409: {
|
|
25184
|
+
headers: {
|
|
25185
|
+
[name: string]: unknown;
|
|
25186
|
+
};
|
|
25187
|
+
content: {
|
|
25188
|
+
"application/json": {
|
|
25189
|
+
/** @enum {string} */
|
|
25190
|
+
code: "ORGANIZATION_MODEL_CONFIG_MIGRATED";
|
|
25191
|
+
configId: string;
|
|
25192
|
+
details: string;
|
|
25193
|
+
error: string;
|
|
25194
|
+
} | {
|
|
25195
|
+
candidateCount: number;
|
|
25196
|
+
/** @enum {string} */
|
|
25197
|
+
code: "ORGANIZATION_MODEL_CONFIG_NEEDS_CONFIGURATION";
|
|
25198
|
+
configId: string;
|
|
25199
|
+
details: string;
|
|
25200
|
+
error: string;
|
|
25201
|
+
modelId: string;
|
|
25202
|
+
provider: string;
|
|
25203
|
+
};
|
|
25204
|
+
};
|
|
25205
|
+
};
|
|
25075
25206
|
/** @description Internal server error */
|
|
25076
25207
|
500: {
|
|
25077
25208
|
headers: {
|
|
@@ -25537,7 +25668,7 @@ interface paths {
|
|
|
25537
25668
|
modelMapping?: string;
|
|
25538
25669
|
};
|
|
25539
25670
|
/** @enum {string} */
|
|
25540
|
-
executorProvider?: "openai" | "anthropic" | "google" | "xai" | "
|
|
25671
|
+
executorProvider?: "openai" | "anthropic" | "google" | "xai" | "vertex" | "vertex-anthropic" | "bedrock" | "tinfoil" | "vercel" | "generic-openai";
|
|
25541
25672
|
inputCostPer1kTokens: number;
|
|
25542
25673
|
/** @default 4096 */
|
|
25543
25674
|
maxOutputTokens?: number;
|
|
@@ -25569,8 +25700,15 @@ interface paths {
|
|
|
25569
25700
|
content: {
|
|
25570
25701
|
"application/json": {
|
|
25571
25702
|
configScope?: string;
|
|
25703
|
+
/**
|
|
25704
|
+
* @description Organization configuration readiness. `needs_configuration` means conflicting legacy teammate settings were preserved and execution fails closed until an authorized actor deliberately updates the canonical row.
|
|
25705
|
+
* @enum {string}
|
|
25706
|
+
*/
|
|
25707
|
+
configurationStatus?: "ready" | "needs_configuration";
|
|
25572
25708
|
costPer1kTokens?: number;
|
|
25573
25709
|
createdAt: string;
|
|
25710
|
+
/** @description Nullable creation provenance for organization-owned model configurations; never authorization or execution authority. */
|
|
25711
|
+
createdByUserId?: string | null;
|
|
25574
25712
|
creator?: string;
|
|
25575
25713
|
creatorDisplayName?: string | null;
|
|
25576
25714
|
displayName?: string;
|
|
@@ -25581,6 +25719,8 @@ interface paths {
|
|
|
25581
25719
|
/** @enum {string} */
|
|
25582
25720
|
keyStatus?: "platform" | "custom" | "needs_setup";
|
|
25583
25721
|
maxOutputTokens?: number;
|
|
25722
|
+
/** @description Number of preserved legacy candidates considered during organization migration. Candidate settings remain internal. */
|
|
25723
|
+
migrationCandidateCount?: number;
|
|
25584
25724
|
modelId: string;
|
|
25585
25725
|
/** @description Normalized organization-owned connection reference. Null for platform selection, personal credentials, and providers that have not migrated. */
|
|
25586
25726
|
organizationConnectionId?: string | null;
|
|
@@ -25604,7 +25744,8 @@ interface paths {
|
|
|
25604
25744
|
supportsSearch?: boolean;
|
|
25605
25745
|
supportsStreaming?: boolean;
|
|
25606
25746
|
updatedAt: string;
|
|
25607
|
-
|
|
25747
|
+
/** @description Legacy actor owner for personal/compatibility rows. Null for organization-owned model configurations. */
|
|
25748
|
+
userId: string | null;
|
|
25608
25749
|
};
|
|
25609
25750
|
};
|
|
25610
25751
|
};
|
|
@@ -25644,6 +25785,30 @@ interface paths {
|
|
|
25644
25785
|
"application/json": components["schemas"]["Error"];
|
|
25645
25786
|
};
|
|
25646
25787
|
};
|
|
25788
|
+
/** @description Organization model configuration migration conflict */
|
|
25789
|
+
409: {
|
|
25790
|
+
headers: {
|
|
25791
|
+
[name: string]: unknown;
|
|
25792
|
+
};
|
|
25793
|
+
content: {
|
|
25794
|
+
"application/json": {
|
|
25795
|
+
/** @enum {string} */
|
|
25796
|
+
code: "ORGANIZATION_MODEL_CONFIG_MIGRATED";
|
|
25797
|
+
configId: string;
|
|
25798
|
+
details: string;
|
|
25799
|
+
error: string;
|
|
25800
|
+
} | {
|
|
25801
|
+
candidateCount: number;
|
|
25802
|
+
/** @enum {string} */
|
|
25803
|
+
code: "ORGANIZATION_MODEL_CONFIG_NEEDS_CONFIGURATION";
|
|
25804
|
+
configId: string;
|
|
25805
|
+
details: string;
|
|
25806
|
+
error: string;
|
|
25807
|
+
modelId: string;
|
|
25808
|
+
provider: string;
|
|
25809
|
+
};
|
|
25810
|
+
};
|
|
25811
|
+
};
|
|
25647
25812
|
/** @description Internal server error */
|
|
25648
25813
|
500: {
|
|
25649
25814
|
headers: {
|
|
@@ -25714,6 +25879,30 @@ interface paths {
|
|
|
25714
25879
|
"application/json": components["schemas"]["Error"];
|
|
25715
25880
|
};
|
|
25716
25881
|
};
|
|
25882
|
+
/** @description Organization model configuration migration conflict */
|
|
25883
|
+
409: {
|
|
25884
|
+
headers: {
|
|
25885
|
+
[name: string]: unknown;
|
|
25886
|
+
};
|
|
25887
|
+
content: {
|
|
25888
|
+
"application/json": {
|
|
25889
|
+
/** @enum {string} */
|
|
25890
|
+
code: "ORGANIZATION_MODEL_CONFIG_MIGRATED";
|
|
25891
|
+
configId: string;
|
|
25892
|
+
details: string;
|
|
25893
|
+
error: string;
|
|
25894
|
+
} | {
|
|
25895
|
+
candidateCount: number;
|
|
25896
|
+
/** @enum {string} */
|
|
25897
|
+
code: "ORGANIZATION_MODEL_CONFIG_NEEDS_CONFIGURATION";
|
|
25898
|
+
configId: string;
|
|
25899
|
+
details: string;
|
|
25900
|
+
error: string;
|
|
25901
|
+
modelId: string;
|
|
25902
|
+
provider: string;
|
|
25903
|
+
};
|
|
25904
|
+
};
|
|
25905
|
+
};
|
|
25717
25906
|
/** @description Internal server error */
|
|
25718
25907
|
500: {
|
|
25719
25908
|
headers: {
|
|
@@ -25767,8 +25956,15 @@ interface paths {
|
|
|
25767
25956
|
"application/json": {
|
|
25768
25957
|
data: {
|
|
25769
25958
|
configScope?: string;
|
|
25959
|
+
/**
|
|
25960
|
+
* @description Organization configuration readiness. `needs_configuration` means conflicting legacy teammate settings were preserved and execution fails closed until an authorized actor deliberately updates the canonical row.
|
|
25961
|
+
* @enum {string}
|
|
25962
|
+
*/
|
|
25963
|
+
configurationStatus?: "ready" | "needs_configuration";
|
|
25770
25964
|
costPer1kTokens?: number;
|
|
25771
25965
|
createdAt: string;
|
|
25966
|
+
/** @description Nullable creation provenance for organization-owned model configurations; never authorization or execution authority. */
|
|
25967
|
+
createdByUserId?: string | null;
|
|
25772
25968
|
creator?: string;
|
|
25773
25969
|
creatorDisplayName?: string | null;
|
|
25774
25970
|
displayName?: string;
|
|
@@ -25779,6 +25975,8 @@ interface paths {
|
|
|
25779
25975
|
/** @enum {string} */
|
|
25780
25976
|
keyStatus?: "platform" | "custom" | "needs_setup";
|
|
25781
25977
|
maxOutputTokens?: number;
|
|
25978
|
+
/** @description Number of preserved legacy candidates considered during organization migration. Candidate settings remain internal. */
|
|
25979
|
+
migrationCandidateCount?: number;
|
|
25782
25980
|
modelId: string;
|
|
25783
25981
|
/** @description Normalized organization-owned connection reference. Null for platform selection, personal credentials, and providers that have not migrated. */
|
|
25784
25982
|
organizationConnectionId?: string | null;
|
|
@@ -25802,7 +26000,8 @@ interface paths {
|
|
|
25802
26000
|
supportsSearch?: boolean;
|
|
25803
26001
|
supportsStreaming?: boolean;
|
|
25804
26002
|
updatedAt: string;
|
|
25805
|
-
|
|
26003
|
+
/** @description Legacy actor owner for personal/compatibility rows. Null for organization-owned model configurations. */
|
|
26004
|
+
userId: string | null;
|
|
25806
26005
|
};
|
|
25807
26006
|
message: string;
|
|
25808
26007
|
success: boolean;
|
|
@@ -25845,6 +26044,30 @@ interface paths {
|
|
|
25845
26044
|
"application/json": components["schemas"]["Error"];
|
|
25846
26045
|
};
|
|
25847
26046
|
};
|
|
26047
|
+
/** @description Organization model configuration migration conflict */
|
|
26048
|
+
409: {
|
|
26049
|
+
headers: {
|
|
26050
|
+
[name: string]: unknown;
|
|
26051
|
+
};
|
|
26052
|
+
content: {
|
|
26053
|
+
"application/json": {
|
|
26054
|
+
/** @enum {string} */
|
|
26055
|
+
code: "ORGANIZATION_MODEL_CONFIG_MIGRATED";
|
|
26056
|
+
configId: string;
|
|
26057
|
+
details: string;
|
|
26058
|
+
error: string;
|
|
26059
|
+
} | {
|
|
26060
|
+
candidateCount: number;
|
|
26061
|
+
/** @enum {string} */
|
|
26062
|
+
code: "ORGANIZATION_MODEL_CONFIG_NEEDS_CONFIGURATION";
|
|
26063
|
+
configId: string;
|
|
26064
|
+
details: string;
|
|
26065
|
+
error: string;
|
|
26066
|
+
modelId: string;
|
|
26067
|
+
provider: string;
|
|
26068
|
+
};
|
|
26069
|
+
};
|
|
26070
|
+
};
|
|
25848
26071
|
/** @description Internal server error */
|
|
25849
26072
|
500: {
|
|
25850
26073
|
headers: {
|
|
@@ -25940,6 +26163,30 @@ interface paths {
|
|
|
25940
26163
|
"application/json": components["schemas"]["Error"];
|
|
25941
26164
|
};
|
|
25942
26165
|
};
|
|
26166
|
+
/** @description Organization model configuration migration conflict */
|
|
26167
|
+
409: {
|
|
26168
|
+
headers: {
|
|
26169
|
+
[name: string]: unknown;
|
|
26170
|
+
};
|
|
26171
|
+
content: {
|
|
26172
|
+
"application/json": {
|
|
26173
|
+
/** @enum {string} */
|
|
26174
|
+
code: "ORGANIZATION_MODEL_CONFIG_MIGRATED";
|
|
26175
|
+
configId: string;
|
|
26176
|
+
details: string;
|
|
26177
|
+
error: string;
|
|
26178
|
+
} | {
|
|
26179
|
+
candidateCount: number;
|
|
26180
|
+
/** @enum {string} */
|
|
26181
|
+
code: "ORGANIZATION_MODEL_CONFIG_NEEDS_CONFIGURATION";
|
|
26182
|
+
configId: string;
|
|
26183
|
+
details: string;
|
|
26184
|
+
error: string;
|
|
26185
|
+
modelId: string;
|
|
26186
|
+
provider: string;
|
|
26187
|
+
};
|
|
26188
|
+
};
|
|
26189
|
+
};
|
|
25943
26190
|
/** @description Internal server error */
|
|
25944
26191
|
500: {
|
|
25945
26192
|
headers: {
|
|
@@ -32808,7 +33055,7 @@ interface paths {
|
|
|
32808
33055
|
put?: never;
|
|
32809
33056
|
/**
|
|
32810
33057
|
* Create a provider key
|
|
32811
|
-
* @description Creates a provider credential for the active account. In an organization, Braintrust and migrated model providers (currently OpenAI, Anthropic, Google, and
|
|
33058
|
+
* @description Creates a provider credential for the active account. In an organization, Braintrust and migrated model providers (currently OpenAI, Anthropic, Google, xAI, Mixlayer, Vercel AI Gateway, Tinfoil, Amazon Bedrock, Vertex AI, Vertex AI (Claude), and generic-openai) create organization-owned connections and return connection IDs. For OpenAI, Anthropic, Google, and xAI, isDefault=true selects organization BYOK authority; false stores the connection without changing custody. Mixlayer, Vercel AI Gateway, Tinfoil, Amazon Bedrock, Vertex AI, Vertex AI (Claude), and generic-openai creates are always storage-only; use the organization-policy endpoint to select one explicitly. Personal accounts and providers that have not migrated retain provider-key ownership. Requires BYOK entitlement.
|
|
32812
33059
|
*/
|
|
32813
33060
|
post: {
|
|
32814
33061
|
parameters: {
|
|
@@ -32825,7 +33072,7 @@ interface paths {
|
|
|
32825
33072
|
isDefault?: boolean;
|
|
32826
33073
|
name: string;
|
|
32827
33074
|
/** @enum {string} */
|
|
32828
|
-
provider: "openai" | "anthropic" | "google" | "xai" | "
|
|
33075
|
+
provider: "openai" | "anthropic" | "google" | "xai" | "mixlayer" | "vertex" | "vertex-anthropic" | "bedrock" | "weaviate" | "vectorize" | "browser-rendering" | "tinfoil" | "vercel" | "generic-openai" | "braintrust";
|
|
32829
33076
|
settings?: {
|
|
32830
33077
|
[key: string]: unknown;
|
|
32831
33078
|
};
|
|
@@ -33021,10 +33268,15 @@ interface paths {
|
|
|
33021
33268
|
content: {
|
|
33022
33269
|
"application/json": {
|
|
33023
33270
|
/** @enum {string} */
|
|
33024
|
-
provider: "openai" | "anthropic" | "google" | "xai";
|
|
33025
|
-
selection:
|
|
33271
|
+
provider: "openai" | "anthropic" | "google" | "xai" | "mixlayer" | "vercel" | "tinfoil" | "bedrock" | "generic-openai" | "vertex" | "vertex-anthropic";
|
|
33272
|
+
selection: {
|
|
33026
33273
|
connectionId: string;
|
|
33027
33274
|
};
|
|
33275
|
+
} | {
|
|
33276
|
+
/** @enum {string} */
|
|
33277
|
+
provider: "openai" | "anthropic" | "google" | "xai" | "mixlayer" | "vercel";
|
|
33278
|
+
/** @enum {string} */
|
|
33279
|
+
selection: "platform";
|
|
33028
33280
|
};
|
|
33029
33281
|
};
|
|
33030
33282
|
};
|
|
@@ -33126,6 +33378,8 @@ interface paths {
|
|
|
33126
33378
|
};
|
|
33127
33379
|
content: {
|
|
33128
33380
|
"application/json": {
|
|
33381
|
+
/** @enum {string|null} */
|
|
33382
|
+
organizationPolicy?: "organization-byok-required" | "organization-byok-with-platform-fallback" | "platform-managed" | null;
|
|
33129
33383
|
providerKeys: {
|
|
33130
33384
|
createdAt: string;
|
|
33131
33385
|
id: string;
|
|
@@ -33254,7 +33508,7 @@ interface paths {
|
|
|
33254
33508
|
"application/json": components["schemas"]["Error"];
|
|
33255
33509
|
};
|
|
33256
33510
|
};
|
|
33257
|
-
/** @description
|
|
33511
|
+
/** @description Credential or model inventory moved during mixed-version rollout */
|
|
33258
33512
|
409: {
|
|
33259
33513
|
headers: {
|
|
33260
33514
|
[name: string]: unknown;
|
|
@@ -33265,6 +33519,12 @@ interface paths {
|
|
|
33265
33519
|
code: "ORGANIZATION_CONNECTION_MIGRATED";
|
|
33266
33520
|
error: string;
|
|
33267
33521
|
replacementId: string;
|
|
33522
|
+
} | {
|
|
33523
|
+
/** @enum {string} */
|
|
33524
|
+
code: "ORGANIZATION_MODEL_CONFIG_MIGRATED";
|
|
33525
|
+
configId: string;
|
|
33526
|
+
details: string;
|
|
33527
|
+
error: string;
|
|
33268
33528
|
};
|
|
33269
33529
|
};
|
|
33270
33530
|
};
|
|
@@ -33426,14 +33686,14 @@ interface paths {
|
|
|
33426
33686
|
put?: never;
|
|
33427
33687
|
/**
|
|
33428
33688
|
* Discover models from existing key
|
|
33429
|
-
* @description Discover available models from an existing generic-openai provider key.
|
|
33689
|
+
* @description Discover available models from an existing generic-openai provider key or organization connection.
|
|
33430
33690
|
*/
|
|
33431
33691
|
post: {
|
|
33432
33692
|
parameters: {
|
|
33433
33693
|
query?: never;
|
|
33434
33694
|
header?: never;
|
|
33435
33695
|
path: {
|
|
33436
|
-
/** @description Provider key ID */
|
|
33696
|
+
/** @description Provider key or organization connection ID */
|
|
33437
33697
|
id: string;
|
|
33438
33698
|
};
|
|
33439
33699
|
cookie?: never;
|
|
@@ -33527,14 +33787,14 @@ interface paths {
|
|
|
33527
33787
|
put?: never;
|
|
33528
33788
|
/**
|
|
33529
33789
|
* Sync models for a provider key
|
|
33530
|
-
* @description Sync and upsert model configurations for a generic-openai provider key.
|
|
33790
|
+
* @description Sync and upsert model configurations for a generic-openai provider key or organization connection.
|
|
33531
33791
|
*/
|
|
33532
33792
|
post: {
|
|
33533
33793
|
parameters: {
|
|
33534
33794
|
query?: never;
|
|
33535
33795
|
header?: never;
|
|
33536
33796
|
path: {
|
|
33537
|
-
/** @description Provider key ID */
|
|
33797
|
+
/** @description Provider key or organization connection ID */
|
|
33538
33798
|
id: string;
|
|
33539
33799
|
};
|
|
33540
33800
|
cookie?: never;
|
|
@@ -33612,7 +33872,7 @@ interface paths {
|
|
|
33612
33872
|
"application/json": components["schemas"]["Error"];
|
|
33613
33873
|
};
|
|
33614
33874
|
};
|
|
33615
|
-
/** @description Organization connection is managed by a newer Worker */
|
|
33875
|
+
/** @description Organization connection or model inventory is managed by a newer Worker */
|
|
33616
33876
|
409: {
|
|
33617
33877
|
headers: {
|
|
33618
33878
|
[name: string]: unknown;
|
|
@@ -33623,6 +33883,12 @@ interface paths {
|
|
|
33623
33883
|
code: "ORGANIZATION_CONNECTION_MIGRATED";
|
|
33624
33884
|
error: string;
|
|
33625
33885
|
replacementId: string;
|
|
33886
|
+
} | {
|
|
33887
|
+
/** @enum {string} */
|
|
33888
|
+
code: "ORGANIZATION_MODEL_CONFIG_MIGRATED";
|
|
33889
|
+
configId: string;
|
|
33890
|
+
details: string;
|
|
33891
|
+
error: string;
|
|
33626
33892
|
};
|
|
33627
33893
|
};
|
|
33628
33894
|
};
|
|
@@ -40981,80 +41247,6 @@ interface paths {
|
|
|
40981
41247
|
patch?: never;
|
|
40982
41248
|
trace?: never;
|
|
40983
41249
|
};
|
|
40984
|
-
"/v1/skills/scan": {
|
|
40985
|
-
parameters: {
|
|
40986
|
-
query?: never;
|
|
40987
|
-
header?: never;
|
|
40988
|
-
path?: never;
|
|
40989
|
-
cookie?: never;
|
|
40990
|
-
};
|
|
40991
|
-
get?: never;
|
|
40992
|
-
put?: never;
|
|
40993
|
-
/**
|
|
40994
|
-
* Scan a skill for malicious patterns
|
|
40995
|
-
* @description Statically scan a SKILL.md string (`markdown`) or structured manifest (`frontmatter` + `body`) and return a two-tier verdict (warning when suspected malicious, error when high-confidence malicious). Does not persist or gate.
|
|
40996
|
-
*/
|
|
40997
|
-
post: {
|
|
40998
|
-
parameters: {
|
|
40999
|
-
query?: never;
|
|
41000
|
-
header?: never;
|
|
41001
|
-
path?: never;
|
|
41002
|
-
cookie?: never;
|
|
41003
|
-
};
|
|
41004
|
-
requestBody?: {
|
|
41005
|
-
content: {
|
|
41006
|
-
"application/json": {
|
|
41007
|
-
[key: string]: unknown;
|
|
41008
|
-
};
|
|
41009
|
-
};
|
|
41010
|
-
};
|
|
41011
|
-
responses: {
|
|
41012
|
-
/** @description Scan verdict */
|
|
41013
|
-
200: {
|
|
41014
|
-
headers: {
|
|
41015
|
-
[name: string]: unknown;
|
|
41016
|
-
};
|
|
41017
|
-
content: {
|
|
41018
|
-
"application/json": {
|
|
41019
|
-
[key: string]: unknown;
|
|
41020
|
-
};
|
|
41021
|
-
};
|
|
41022
|
-
};
|
|
41023
|
-
/** @description Invalid manifest */
|
|
41024
|
-
400: {
|
|
41025
|
-
headers: {
|
|
41026
|
-
[name: string]: unknown;
|
|
41027
|
-
};
|
|
41028
|
-
content: {
|
|
41029
|
-
"application/json": components["schemas"]["Error"];
|
|
41030
|
-
};
|
|
41031
|
-
};
|
|
41032
|
-
/** @description Unauthorized */
|
|
41033
|
-
401: {
|
|
41034
|
-
headers: {
|
|
41035
|
-
[name: string]: unknown;
|
|
41036
|
-
};
|
|
41037
|
-
content: {
|
|
41038
|
-
"application/json": components["schemas"]["Error"];
|
|
41039
|
-
};
|
|
41040
|
-
};
|
|
41041
|
-
/** @description Insufficient permissions */
|
|
41042
|
-
403: {
|
|
41043
|
-
headers: {
|
|
41044
|
-
[name: string]: unknown;
|
|
41045
|
-
};
|
|
41046
|
-
content: {
|
|
41047
|
-
"application/json": components["schemas"]["Error"];
|
|
41048
|
-
};
|
|
41049
|
-
};
|
|
41050
|
-
};
|
|
41051
|
-
};
|
|
41052
|
-
delete?: never;
|
|
41053
|
-
options?: never;
|
|
41054
|
-
head?: never;
|
|
41055
|
-
patch?: never;
|
|
41056
|
-
trace?: never;
|
|
41057
|
-
};
|
|
41058
41250
|
"/v1/skills/{id}": {
|
|
41059
41251
|
parameters: {
|
|
41060
41252
|
query?: never;
|
|
@@ -43612,7 +43804,6 @@ interface paths {
|
|
|
43612
43804
|
enableRuntown: boolean;
|
|
43613
43805
|
enableRuntypeApps: boolean;
|
|
43614
43806
|
enableSelfServeOauthClients: boolean;
|
|
43615
|
-
enableSkillScanner: boolean;
|
|
43616
43807
|
enableVoice: boolean;
|
|
43617
43808
|
enableWorkspaceModel: boolean;
|
|
43618
43809
|
workspaceModelEligible: boolean;
|
|
@@ -47609,6 +47800,10 @@ interface ApiKey {
|
|
|
47609
47800
|
}
|
|
47610
47801
|
interface ModelConfig {
|
|
47611
47802
|
id: string;
|
|
47803
|
+
/** Legacy actor owner. Null for organization-owned model configurations. */
|
|
47804
|
+
userId?: string | null;
|
|
47805
|
+
/** Nullable creation provenance; never authorization or execution authority. */
|
|
47806
|
+
createdByUserId?: string | null;
|
|
47612
47807
|
provider: string;
|
|
47613
47808
|
modelId: string;
|
|
47614
47809
|
displayName?: string;
|
|
@@ -47634,6 +47829,10 @@ interface ModelConfig {
|
|
|
47634
47829
|
providerKeyId?: string | null;
|
|
47635
47830
|
/** Normalized organization-owned connection reference; null for platform and personal credentials. */
|
|
47636
47831
|
organizationConnectionId?: string | null;
|
|
47832
|
+
/** Organization conflict readiness; unresolved rows fail closed at execution. */
|
|
47833
|
+
configurationStatus?: 'ready' | 'needs_configuration';
|
|
47834
|
+
/** Count of preserved legacy candidates; candidate contents remain internal. */
|
|
47835
|
+
migrationCandidateCount?: number;
|
|
47637
47836
|
requiresIntegration?: string;
|
|
47638
47837
|
apiKey?: string;
|
|
47639
47838
|
scope?: 'personal' | 'organization';
|
|
@@ -51243,43 +51442,6 @@ interface SkillManifestInput {
|
|
|
51243
51442
|
}
|
|
51244
51443
|
/** A skill create/update payload — either a SKILL.md string or a manifest. */
|
|
51245
51444
|
type SkillWriteInput = SkillMarkdownInput | SkillManifestInput;
|
|
51246
|
-
/** Per-finding tier surfaced to the user. */
|
|
51247
|
-
interface SkillScanFinding {
|
|
51248
|
-
ruleId: string;
|
|
51249
|
-
category: string | null;
|
|
51250
|
-
severity: 'LOW' | 'MEDIUM' | 'HIGH' | 'CRITICAL';
|
|
51251
|
-
confidence: number;
|
|
51252
|
-
tier: 'warning' | 'error';
|
|
51253
|
-
hardBlock: boolean;
|
|
51254
|
-
message: string;
|
|
51255
|
-
file: string;
|
|
51256
|
-
startLine: number;
|
|
51257
|
-
remediation: string | null;
|
|
51258
|
-
}
|
|
51259
|
-
/** Two-tier verdict over a skill scan. `tier` is authoritative. */
|
|
51260
|
-
interface SkillScanVerdict {
|
|
51261
|
-
tier: 'clean' | 'warning' | 'error';
|
|
51262
|
-
riskScore: number;
|
|
51263
|
-
riskSeverity: 'LOW' | 'MEDIUM' | 'HIGH' | 'CRITICAL';
|
|
51264
|
-
recommendation: 'SAFE' | 'CAUTION' | 'DO_NOT_INSTALL';
|
|
51265
|
-
errors: SkillScanFinding[];
|
|
51266
|
-
warnings: SkillScanFinding[];
|
|
51267
|
-
summary: string;
|
|
51268
|
-
scannerVersion: string;
|
|
51269
|
-
verdictVersion: number;
|
|
51270
|
-
}
|
|
51271
|
-
/** The `POST /v1/skills/scan` response. */
|
|
51272
|
-
interface SkillScanResult {
|
|
51273
|
-
status: 'passed' | 'warning' | 'blocked' | 'scanner_error';
|
|
51274
|
-
verdict: SkillScanVerdict;
|
|
51275
|
-
reportBody: string;
|
|
51276
|
-
scannerVersion: string;
|
|
51277
|
-
completedAt: string;
|
|
51278
|
-
error?: {
|
|
51279
|
-
code: string;
|
|
51280
|
-
message: string;
|
|
51281
|
-
};
|
|
51282
|
-
}
|
|
51283
51445
|
/** Options for binding a skill to an agent. */
|
|
51284
51446
|
interface BindSkillInput {
|
|
51285
51447
|
agentId: string;
|
|
@@ -51440,19 +51602,6 @@ declare class SkillsNamespace {
|
|
|
51440
51602
|
* ```
|
|
51441
51603
|
*/
|
|
51442
51604
|
publishVersion(skillId: string, versionId: string): Promise<void>;
|
|
51443
|
-
/**
|
|
51444
|
-
* Statically scan a SKILL.md document for malicious patterns and return a
|
|
51445
|
-
* two-tier verdict — `warning` when a skill appears suspicious (low–medium
|
|
51446
|
-
* confidence), `error` when high-confidence malicious. Does not persist or
|
|
51447
|
-
* gate; use it as a "scan before save" affordance.
|
|
51448
|
-
*
|
|
51449
|
-
* @example
|
|
51450
|
-
* ```typescript
|
|
51451
|
-
* const { verdict } = await Runtype.skills.scan(skillMarkdown)
|
|
51452
|
-
* if (verdict.tier === 'error') console.warn(verdict.summary)
|
|
51453
|
-
* ```
|
|
51454
|
-
*/
|
|
51455
|
-
scan(markdown: string): Promise<SkillScanResult>;
|
|
51456
51605
|
/**
|
|
51457
51606
|
* Import a single SKILL.md document. The imported skill lands with
|
|
51458
51607
|
* `trustLevel: 'imported'` and a draft version.
|
|
@@ -53726,15 +53875,17 @@ declare class ProviderKeysEndpoint {
|
|
|
53726
53875
|
models: DiscoveredModel[];
|
|
53727
53876
|
}>;
|
|
53728
53877
|
/**
|
|
53729
|
-
* Discover models from the endpoint of an existing generic-openai provider
|
|
53878
|
+
* Discover models from the endpoint of an existing generic-openai provider
|
|
53879
|
+
* key or organization connection.
|
|
53730
53880
|
*/
|
|
53731
53881
|
discoverModelsForKey(id: string): Promise<{
|
|
53732
53882
|
models: DiscoveredModel[];
|
|
53733
53883
|
}>;
|
|
53734
53884
|
/**
|
|
53735
|
-
* Set the discrete model list for a generic-openai provider key
|
|
53736
|
-
* discovered models, or a hand-authored
|
|
53737
|
-
* `/v1/models`. An empty array removes all
|
|
53885
|
+
* Set the discrete model list for a generic-openai provider key or
|
|
53886
|
+
* organization connection. Pass the discovered models, or a hand-authored
|
|
53887
|
+
* list when the endpoint has no `/v1/models`. An empty array removes all
|
|
53888
|
+
* models for that credential.
|
|
53738
53889
|
*/
|
|
53739
53890
|
syncModels(id: string, models: ProviderKeyModel[]): Promise<{
|
|
53740
53891
|
success: boolean;
|
|
@@ -57657,4 +57808,4 @@ declare function getLikelySupportingCandidatePaths(bestCandidatePath: string | u
|
|
|
57657
57808
|
declare function getDefaultPlanPath(taskName: string): string;
|
|
57658
57809
|
declare function sanitizeTaskSlug(taskName: string): string;
|
|
57659
57810
|
|
|
57660
|
-
export { type AIGrader, type Agent, type AgentApprovalCompleteEvent, type AgentApprovalStartEvent, type AgentCompleteEvent, type AgentDefinition, type AgentDefinitionConfig, AgentDriftError, type AgentElicitation, type AgentElicitationRequest, AgentEnsureConflictError, type AgentErrorEvent, type AgentEvent, type AgentEventType, type AgentExecuteRequest, type AgentExecuteResponse, type AgentIterationCompleteEvent, type AgentIterationStartEvent, type AgentMediaEvent, type AgentMessage, type AgentPausedEvent, type AgentPingEvent, type AgentPullResult, type AgentReflectionEvent, type AgentRuntimeToolDefinition, type AgentStartEvent, type AgentStreamCallbacks, type AgentStreamEvent, type AgentSubagentConfig, type AgentToolCompleteEvent, type AgentToolDeltaEvent, type AgentToolInputCompleteEvent, type AgentToolInputDeltaEvent, type AgentToolStartEvent, type AgentTurnCompleteEvent, type AgentTurnDeltaEvent, type AgentTurnStartEvent, type AgentVersionDetail, type AgentVersionListItem, type AgentVersionPublishResponse, AgentVersionsEndpoint, type AgentVersionsListResponse, AgentsEndpoint, AgentsNamespace, AnalyticsEndpoint, type ApiClient, type ApiKey, ApiKeysEndpoint, type ApiResponse, type ApplyGeneratedProposalOptions, type ApplyGeneratedProposalResult, type AssetReferenceContentPart, type AttachRuntimeToolsOptions, type BaseAgentEvent, BatchBuilder, type BatchClient, type BatchListParams, type BatchOptions, type BatchRequest, type BatchResult, type BatchScheduleConfig, type BatchStatus, BatchesNamespace, BillingEndpoint, type BillingSpendAnalyticsParams, type BindSkillInput, type BuiltInGraderId, type BuiltInTool, type BulkEditCondition, type BulkEditRequest, type BulkEditResponse, type BulkEditResult, type CanonicalDispatchMessageContent, type CanonicalDispatchRequest, type CaseExpected, ChatEndpoint, type CheckGrader, type ClaudeManagedEvalOverrideValues, ClientBatchBuilder, type ClientConfig, type ClientConversation, ClientEvalBuilder, ClientFlowBuilder, type ClientToken, type ClientTokenConfig, type ClientTokenEnvironment, type ClientTokenVersionPin, ClientTokensEndpoint, type ClientToolDefinition, type ClientWidgetTheme, type CollectionMeta, CollectionsEndpoint, type ConditionalGetResult, type ConditionalStepConfig$1 as ConditionalStepConfig, type ContextErrorHandling, type ContextFallback, ContextTemplatesEndpoint, type Conversation, type ConversationListItem, type ConversationListParams, type ConversationMessage, type ConversationSource, ConversationsEndpoint, type ConversationsListResponse, type CreateApiKeyRequest, type CreateClientTokenRequest, type CreateClientTokenResponse, type CreateCollectionRequest, type CreateConversationRequest, type CreateEvalSuiteInput, type CreateFlowRequest, type CreateModelConfigRequest, type CreatePromptData, type CreatePromptRequest, type CreateProviderKeyRequest, type CreateRecordRequest, type CreateScheduleRequest, type CreateSecretRequest, type CreateToolRequest, type CurrentBilledSpendResponse, type CurrentBilledSpendSource, type CustomMCPServer, type CustomMCPServerAuth, type CustomToolConfig, DEFAULT_RECOVERY_AFTER_EMPTY_SESSIONS, DEFAULT_STALL_STOP_AFTER, type DecomposeCriteriaResult, type DefineAgentInput, type DefineEvalCaseInput, type DefineEvalInput, type DefineFlowInput, type DefineProductInput, type DefineSkillInput, type DefineSurfaceInput, type DefineToolInput, type DeployCfSandboxRequest, type DeployCfSandboxResponse, type DeploySandboxRequest, type DeploySandboxResponse, type DiscoveredModel, type DispatchAgentInput, type DispatchApprovalContinuationResponse, type DispatchApproveRequest, type DispatchApproveResponse, type DispatchClient, type DispatchContinuationRequest, type DispatchContinuationResponse, type DispatchDetachedApprovalResponse, DispatchEndpoint, type DispatchEnvironment, type DispatchEvent, type DispatchFlowInput, type DispatchMessageContent, type DispatchOptions$1 as DispatchOptions, type DispatchRequest, type DispatchResponse, type DispatchResumeRequest, type DispatchResumeResponse, type EndUserUsageQuery, type EndUserUsageResponse, type EnsureAgentConverged, type EnsureAgentOptions, type EnsureAgentPlan, type EnsureAgentResult, type EnsureEvalResult, type EnsureFlowConverged, type EnsureFlowOptions, type EnsureFlowPlan, type EnsureFlowResult, type EnsureFpoOptions, type EnsureFpoResult, type EnsureProductConverged, type EnsureProductOptions, type EnsureProductPlan, type EnsureProductResult, type EnsureSkillConverged, type EnsureSkillOptions, type EnsureSkillPlan, type EnsureSkillResult, type EnsureSurfaceConverged, type EnsureSurfaceOptions, type EnsureSurfacePlan, type EnsureSurfaceResult, type EnsureToolConverged, type EnsureToolOptions, type EnsureToolPlan, type EnsureToolResult, type ErrorHandlingMode, EvalBuilder, type EvalCaseDefinition, type EvalCaseInput, type EvalCaseProposal, type EvalCaseProposalAccepted, type EvalCaseProposalListResult, type EvalCasesGenerated, type EvalClient, type EvalDefinition, EvalEndpoint, type EvalListParams, type EvalMessage, type EvalOptions, type EvalOverrideValues, type EvalProposalSource, type EvalProposalStatus, type EvalProposedCase, type EvalPullResult, type EvalRecord, type EvalRequest, type EvalResult, type EvalRunCaseScores, type EvalRunConfig, type EvalRunScores, EvalRunner, type EvalStatus, type EvalSuiteCase, type EvalSuiteCaseInput, type EvalSuiteCoverage, type EvalSuiteDetail, type EvalSuiteLatestRun, type EvalSuiteListResult, type EvalSuiteRunQueued, type EvalSuiteRunResult, type EvalSuiteSummary, EvalSuitesNamespace, type EvalTarget, EvalsNamespace, type ExecuteToolRequest, type ExecuteToolResponse, type ExecutionStreamEvent, type ExternalAgentContext, type ExternalToolConfig, type FallbackFailEvent, type FallbackStartEvent, type FallbackSuccessEvent, type FallbackTrigger, type FallbackTriggerType, type FallbacksExhaustedEvent, type FallbacksInitiatedEvent, type FetchUrlStepConfig$1 as FetchUrlStepConfig, type FieldFormat, type FileContentPart, type Flow, type FlowAttachment, FlowBuilder, type FlowCompleteEvent, type FlowConfig$1 as FlowConfig, type FlowDefinition, type FlowDefinitionStep, FlowDriftError, FlowEnsureConflictError, type FlowErrorEvent, type FlowFallback, type FlowInlineEvalInput, type FlowListItem, type FlowPausedEvent, type FlowPullResult, FlowResult, type FlowStartEvent, type FlowStep, type FlowStepDefinition, type FlowStepType, FlowStepsEndpoint, type FlowStreamEvent, type FlowSummary, type FlowToolConfig, type FlowValidationClient, type FlowValidationIssue, type FlowValidationResult, type FlowVersionDetail, type FlowVersionListItem, type FlowVersionPublishResponse, FlowVersionsEndpoint, type FlowVersionsListResponse, FlowsEndpoint, FlowsNamespace, type FpoEntityOutcome, type FpoInput, type GenerateEmbeddingStepConfig$1 as GenerateEmbeddingStepConfig, type GenerateEvalCasesInput, type GeneratedRuntimeToolGateDecision, type GeneratedRuntimeToolGateOptions, type GetRecordStepConfig$1 as GetRecordStepConfig, type Gradeable, type GraderConfig, type GraderOutcome, type GraderSeverity, type HumanVerdict, type ImageContentPart, type InferCollectionSchemaResponse, type Integration, type IntegrationTool, IntegrationsEndpoint, type IntegrationsListResponse, type JSONSchema, type JsonArray, type JsonObject, type JsonPrimitive, type JsonValue, LEDGER_ARTIFACT_LINE_PREFIX, type ListCollectionsResponse, type ListConversationsResponse, type ListParams, type ListRecordsStepConfig$1 as ListRecordsStepConfig, type LocalToolConfig, type LocalToolDefinition, type LocalToolExecutionCompleteEvent, type LocalToolExecutionLoopSnapshotSlice, type LocalToolExecutionStartEvent, type LogEntry, type LogQueryParams, type LogQueryResponse, type LogQueryResult, type LogStatsParams, type LogStatsResponse, type LogStatsResult, LogsEndpoint, type Message$1 as Message, type MessageContent, type MessageFallback, type Metadata, type ModelConfig, ModelConfigsEndpoint, type ModelFallback, type ModelOverride, type ModelUsageDetail, type ModelUsageQueryParams, type ModelUsageResponse, type ModelUsageSummary, type ModelUsageTimeSeries, type PaginationResponse, type PersistedGraderOutcome, type ProductDefinition, ProductDriftError, ProductEnsureConflictError, type ProductPullResult, ProductsNamespace, type Prompt$1 as Prompt, type PromptErrorHandling, type PromptFallback, type PromptListParams, type PromptStepConfig$1 as PromptStepConfig, PromptsEndpoint, PromptsNamespace, type ProviderApiKey, type ProviderKeyModel, ProviderKeysEndpoint, type PullFpoResult, RUNTYPE_CLIENT_KIND, type ReasoningConfig, type ReasoningContentPart, type ReasoningValue, type RecordCollection, type RecordCollectionWithHistory, type RecordCollections, type RecordConfig$1 as RecordConfig, type RecordCostAggregation, type RecordCostModelBreakdown, type RecordFilter, type RecordFilterCondition, type RecordFilterGroup, type RecordFilterOperator, type RecordListItem, type RecordListParams, type RecordStepResult, type RecordStepResultsParams, type RecordStepResultsResponse, type RecordWriteResponse, RecordsEndpoint, type RetrieveRecordStepConfig$1 as RetrieveRecordStepConfig, type RetryFallback, type RunEvalCaseResult, type RunEvalInput, type RunEvalResult, type RunTaskContextBudgetBreakdown, type RunTaskContextCompactionEvent, type RunTaskContextCompactionStrategy, type RunTaskContextNoticeEvent, type RunTaskContextSummaryEntry, type RunTaskContinuation, type RunTaskOffloadRecorder, type RunTaskOnContextCompaction, type RunTaskOnContextNotice, type RunTaskOnSession, type RunTaskOptions, type RunTaskResult, type RunTaskResumeState, type RunTaskSessionSummary, type RunTaskState, type RunTaskStateSlice, type RunTaskStatus, type RunTaskToolTraceSlice, type RuntimeCustomToolConfig, type RuntimeExternalToolConfig, type RuntimeFlowToolConfig, type RuntimeLocalToolConfig, type RuntimeSubagentToolConfig, type RuntimeTool, type RuntimeToolConfig, Runtype, type AgentSkillBinding as RuntypeAgentSkillBinding, RuntypeApiError, RuntypeClient, type ConditionalStepConfig as RuntypeConditionalStepConfig, type RuntypeConfig, type FetchUrlStepConfig as RuntypeFetchUrlStepConfig, RuntypeFlowBuilder, type FlowConfig as RuntypeFlowConfig, type GenerateEmbeddingStepConfig as RuntypeGenerateEmbeddingStepConfig, type GetRecordStepConfig as RuntypeGetRecordStepConfig, type ListRecordsStepConfig as RuntypeListRecordsStepConfig, type Message as RuntypeMessage, type ModelOverride$1 as RuntypeModelOverride, type Prompt as RuntypePrompt, type PromptStepConfig as RuntypePromptStepConfig, type RuntypeRecord, type RecordConfig as RuntypeRecordConfig, type RetrieveRecordStepConfig as RuntypeRetrieveRecordStepConfig, type SearchStepConfig as RuntypeSearchStepConfig, type SendEmailStepConfig as RuntypeSendEmailStepConfig, type SendEventStepConfig as RuntypeSendEventStepConfig, type SendStreamStepConfig as RuntypeSendStreamStepConfig, type SetVariableStepConfig as RuntypeSetVariableStepConfig, type Skill as RuntypeSkill, type SkillCapabilities as RuntypeSkillCapabilities, type SkillFrontmatter as RuntypeSkillFrontmatter, type SkillManifest as RuntypeSkillManifest, type SkillProposal as RuntypeSkillProposal, type SkillRuntypeExtensions as RuntypeSkillRuntypeExtensions, type SkillScanFinding as RuntypeSkillScanFinding, type SkillScanResult as RuntypeSkillScanResult, type SkillScanVerdict as RuntypeSkillScanVerdict, type SkillVersion as RuntypeSkillVersion, type TransformDataStepConfig as RuntypeTransformDataStepConfig, type UpsertFlowConfig as RuntypeUpsertFlowConfig, type UpsertRecordStepConfig as RuntypeUpsertRecordStepConfig, type VectorSearchStepConfig as RuntypeVectorSearchStepConfig, type WaitUntilStepConfig as RuntypeWaitUntilStepConfig, SDK_USER_AGENT, SDK_VERSION, STEP_FIELD_REGISTRY, STEP_TYPE_TO_METHOD, type Schedule, type ScheduleExecutionOptions, type ScheduleListParams, type ScheduleMessage, type ScheduleMessageSet, type ScheduleMessages, type ScheduleMutationResponse, type ScheduleRun, type ScheduleRunNowResponse, type ScheduleStatusResponse, type ScheduleTarget, type ScheduleTrigger, SchedulesEndpoint, type SearchStepConfig$1 as SearchStepConfig, type Secret, type SecretCheckResponse, type SecretDeleteResponse, type SecretSetupUrlRequest, type SecretSetupUrlResponse, SecretsEndpoint, type SelectOrganizationProviderCredentialRequest, type SelectOrganizationProviderCredentialResponse, type SendEmailStepConfig$1 as SendEmailStepConfig, type SendEventStepConfig$1 as SendEventStepConfig, type SendStreamStepConfig$1 as SendStreamStepConfig, type SetVariableStepConfig$1 as SetVariableStepConfig, type SkillDefinition, SkillDriftError, SkillEnsureConflictError, type SkillListPage, type SkillListPagination, type SkillListParams, type SkillManifestInput, type SkillMarkdownInput, type SkillOrigin, type SkillProposalStatus, SkillProposalsNamespace, type SkillPullResult, type SkillStatus, type SkillTrustLevel, type SkillVersionStatus, type SkillWithVersion, type SkillWriteInput, SkillsNamespace, type SlackInstallRequest, type SlackManifestRequest, type SlackManifestResponse, type SlackOAuthStartRequest, type SlackOAuthStartResponse, type StepCompleteEvent, type StepDeltaEvent, type StepFallback, type StepFieldMeta, type StepStartEvent, type StepWaitingLocalEvent, type StreamCallbacks, type StreamConsumeOptions, type StreamEvent, type StreamEventOf, type SubagentToolConfig, type Surface, type SurfaceDefinition, type SurfaceDefinitionEnvironment, type SurfaceDefinitionStatus, type SurfaceDefinitionType, SurfaceDriftError, SurfaceEnsureConflictError, type SurfaceListParams, type SurfacePullResult, SurfacesEndpoint, SurfacesNamespace, type TextContentPart, type Tool, type ToolApprovalGrant, ToolApprovalGrantsEndpoint, type ToolConfig, type ToolDefinition, type ToolDefinitionType, ToolDriftError, ToolEnsureConflictError, type ToolPullResult, type ToolWithValidation, type ToolsConfig, ToolsEndpoint, ToolsNamespace, type TransformDataStepConfig$1 as TransformDataStepConfig, type TypedCreateRecordRequest, type TypedRecordListItem, type TypedRecordWriteResponse, TypedRecordsScope, type TypedRuntypeRecord, UNIFIED_EVENTS_QUERY, type UpdateClientTokenRequest, type UpdateCollectionRequest, type UpdateCollectionResponse, type UpdateConversationRequest, type UpdateEvalCaseInput, type UpdateEvalSuiteInput, type UpdateFlowRequest, type UpdatePromptData, type UpdateProviderKeyRequest, type UpdateScheduleRequest, type UpdateSecretRequest, type UpdateToolRequest, type UpdatedFlow, type UpsertFlowConfig$1 as UpsertFlowConfig, type UpsertOptions, type UpsertRecordStepConfig$1 as UpsertRecordStepConfig, type UserProfile, UsersEndpoint, type ValidateExistingRecordsResponse, type VectorSearchStepConfig$1 as VectorSearchStepConfig, type VersionType, type WaitUntilStepConfig$1 as WaitUntilStepConfig, type WorkflowCompileDeps, type WorkflowCompletionCriteriaConfig, type WorkflowConfig, type WorkflowConfigFactory, type WorkflowContext, type WorkflowDefinition, type WorkflowHookEntry, type WorkflowHookKind, type WorkflowHookRef, type WorkflowHookSignatures, type WorkflowMilestoneConfig, type WorkflowPhase, type WorkflowPolicyConfig, type WorkflowRecoveryConfig, type WorkflowSlot, type WorkflowStallPolicy, applyGeneratedRuntimeToolProposalToDispatchRequest, attachRuntimeToolsToDispatchRequest, buildEmptySessionNudge, buildGeneratedRuntimeToolGateOutput, buildLedgerOffloadReference, buildPolicyGuidance, buildSendViewOffloadMarker, calledTool, compileWorkflowConfig, completed, computeAgentContentHash, computeEvalContentHash, computeFlowContentHash, computeFpoContentHash, computeProductContentHash, computeSkillContentHash, computeSurfaceContentHash, computeToolContentHash, contains, cost, createAgentEventTranslator, createClient, createExternalTool, createFlowEventTranslator, defaultWorkflow, defaultWorkflowConfig, defineAgent, defineEval, defineFlow, defineFpo, definePlaybook, defineProduct, defineSkill, defineSurface, defineTool, deployWorkflow, ensureDefaultWorkflowHooks, ensureEval, ensureFpo, evaluateGeneratedRuntimeToolProposal, extractDeclaredToolResultChars, gameWorkflow, getDefaultPlanPath, getLikelySupportingCandidatePaths, interpolateWorkflowTemplate, isDiscoveryToolName, isMarathonArtifactPath, isPreservationSensitiveTask, isUnifiedEventType, isWorkflowHookRef, jsonField, judge, judges, latency, length, listWorkflowHooks, matchesExpected, maxToolCalls, noError, normalizeAgentDefinition, normalizeCandidatePath, normalizeFpoDefinition, normalizeProductDefinition, normalizeSkillDefinition, normalizeSurfaceDefinition, normalizeToolDefinition, notCalledTool, notContains, parseFinalBuffer, parseLedgerArtifactRelativePath, parseOffloadedOutputId, parseSSEChunk, processStream, pullEval, pullFpo, ranStep, regex, registerWorkflowHook, resolveStallStopAfter, resolveWorkflowHook, runEvalSuite, sanitizeTaskSlug, shouldInjectEmptySessionNudge, shouldRequestModelEscalation, stepOrder, streamEvents, toolOrder, unregisterWorkflowHook, usedNoTools, validJson, withUnifiedEvents };
|
|
57811
|
+
export { type AIGrader, type Agent, type AgentApprovalCompleteEvent, type AgentApprovalStartEvent, type AgentCompleteEvent, type AgentDefinition, type AgentDefinitionConfig, AgentDriftError, type AgentElicitation, type AgentElicitationRequest, AgentEnsureConflictError, type AgentErrorEvent, type AgentEvent, type AgentEventType, type AgentExecuteRequest, type AgentExecuteResponse, type AgentIterationCompleteEvent, type AgentIterationStartEvent, type AgentMediaEvent, type AgentMessage, type AgentPausedEvent, type AgentPingEvent, type AgentPullResult, type AgentReflectionEvent, type AgentRuntimeToolDefinition, type AgentStartEvent, type AgentStreamCallbacks, type AgentStreamEvent, type AgentSubagentConfig, type AgentToolCompleteEvent, type AgentToolDeltaEvent, type AgentToolInputCompleteEvent, type AgentToolInputDeltaEvent, type AgentToolStartEvent, type AgentTurnCompleteEvent, type AgentTurnDeltaEvent, type AgentTurnStartEvent, type AgentVersionDetail, type AgentVersionListItem, type AgentVersionPublishResponse, AgentVersionsEndpoint, type AgentVersionsListResponse, AgentsEndpoint, AgentsNamespace, AnalyticsEndpoint, type ApiClient, type ApiKey, ApiKeysEndpoint, type ApiResponse, type ApplyGeneratedProposalOptions, type ApplyGeneratedProposalResult, type AssetReferenceContentPart, type AttachRuntimeToolsOptions, type BaseAgentEvent, BatchBuilder, type BatchClient, type BatchListParams, type BatchOptions, type BatchRequest, type BatchResult, type BatchScheduleConfig, type BatchStatus, BatchesNamespace, BillingEndpoint, type BillingSpendAnalyticsParams, type BindSkillInput, type BuiltInGraderId, type BuiltInTool, type BulkEditCondition, type BulkEditRequest, type BulkEditResponse, type BulkEditResult, type CanonicalDispatchMessageContent, type CanonicalDispatchRequest, type CaseExpected, ChatEndpoint, type CheckGrader, type ClaudeManagedEvalOverrideValues, ClientBatchBuilder, type ClientConfig, type ClientConversation, ClientEvalBuilder, ClientFlowBuilder, type ClientToken, type ClientTokenConfig, type ClientTokenEnvironment, type ClientTokenVersionPin, ClientTokensEndpoint, type ClientToolDefinition, type ClientWidgetTheme, type CollectionMeta, CollectionsEndpoint, type ConditionalGetResult, type ConditionalStepConfig$1 as ConditionalStepConfig, type ContextErrorHandling, type ContextFallback, ContextTemplatesEndpoint, type Conversation, type ConversationListItem, type ConversationListParams, type ConversationMessage, type ConversationSource, ConversationsEndpoint, type ConversationsListResponse, type CreateApiKeyRequest, type CreateClientTokenRequest, type CreateClientTokenResponse, type CreateCollectionRequest, type CreateConversationRequest, type CreateEvalSuiteInput, type CreateFlowRequest, type CreateModelConfigRequest, type CreatePromptData, type CreatePromptRequest, type CreateProviderKeyRequest, type CreateRecordRequest, type CreateScheduleRequest, type CreateSecretRequest, type CreateToolRequest, type CurrentBilledSpendResponse, type CurrentBilledSpendSource, type CustomMCPServer, type CustomMCPServerAuth, type CustomToolConfig, DEFAULT_RECOVERY_AFTER_EMPTY_SESSIONS, DEFAULT_STALL_STOP_AFTER, type DecomposeCriteriaResult, type DefineAgentInput, type DefineEvalCaseInput, type DefineEvalInput, type DefineFlowInput, type DefineProductInput, type DefineSkillInput, type DefineSurfaceInput, type DefineToolInput, type DeployCfSandboxRequest, type DeployCfSandboxResponse, type DeploySandboxRequest, type DeploySandboxResponse, type DiscoveredModel, type DispatchAgentInput, type DispatchApprovalContinuationResponse, type DispatchApproveRequest, type DispatchApproveResponse, type DispatchClient, type DispatchContinuationRequest, type DispatchContinuationResponse, type DispatchDetachedApprovalResponse, DispatchEndpoint, type DispatchEnvironment, type DispatchEvent, type DispatchFlowInput, type DispatchMessageContent, type DispatchOptions$1 as DispatchOptions, type DispatchRequest, type DispatchResponse, type DispatchResumeRequest, type DispatchResumeResponse, type EndUserUsageQuery, type EndUserUsageResponse, type EnsureAgentConverged, type EnsureAgentOptions, type EnsureAgentPlan, type EnsureAgentResult, type EnsureEvalResult, type EnsureFlowConverged, type EnsureFlowOptions, type EnsureFlowPlan, type EnsureFlowResult, type EnsureFpoOptions, type EnsureFpoResult, type EnsureProductConverged, type EnsureProductOptions, type EnsureProductPlan, type EnsureProductResult, type EnsureSkillConverged, type EnsureSkillOptions, type EnsureSkillPlan, type EnsureSkillResult, type EnsureSurfaceConverged, type EnsureSurfaceOptions, type EnsureSurfacePlan, type EnsureSurfaceResult, type EnsureToolConverged, type EnsureToolOptions, type EnsureToolPlan, type EnsureToolResult, type ErrorHandlingMode, EvalBuilder, type EvalCaseDefinition, type EvalCaseInput, type EvalCaseProposal, type EvalCaseProposalAccepted, type EvalCaseProposalListResult, type EvalCasesGenerated, type EvalClient, type EvalDefinition, EvalEndpoint, type EvalListParams, type EvalMessage, type EvalOptions, type EvalOverrideValues, type EvalProposalSource, type EvalProposalStatus, type EvalProposedCase, type EvalPullResult, type EvalRecord, type EvalRequest, type EvalResult, type EvalRunCaseScores, type EvalRunConfig, type EvalRunScores, EvalRunner, type EvalStatus, type EvalSuiteCase, type EvalSuiteCaseInput, type EvalSuiteCoverage, type EvalSuiteDetail, type EvalSuiteLatestRun, type EvalSuiteListResult, type EvalSuiteRunQueued, type EvalSuiteRunResult, type EvalSuiteSummary, EvalSuitesNamespace, type EvalTarget, EvalsNamespace, type ExecuteToolRequest, type ExecuteToolResponse, type ExecutionStreamEvent, type ExternalAgentContext, type ExternalToolConfig, type FallbackFailEvent, type FallbackStartEvent, type FallbackSuccessEvent, type FallbackTrigger, type FallbackTriggerType, type FallbacksExhaustedEvent, type FallbacksInitiatedEvent, type FetchUrlStepConfig$1 as FetchUrlStepConfig, type FieldFormat, type FileContentPart, type Flow, type FlowAttachment, FlowBuilder, type FlowCompleteEvent, type FlowConfig$1 as FlowConfig, type FlowDefinition, type FlowDefinitionStep, FlowDriftError, FlowEnsureConflictError, type FlowErrorEvent, type FlowFallback, type FlowInlineEvalInput, type FlowListItem, type FlowPausedEvent, type FlowPullResult, FlowResult, type FlowStartEvent, type FlowStep, type FlowStepDefinition, type FlowStepType, FlowStepsEndpoint, type FlowStreamEvent, type FlowSummary, type FlowToolConfig, type FlowValidationClient, type FlowValidationIssue, type FlowValidationResult, type FlowVersionDetail, type FlowVersionListItem, type FlowVersionPublishResponse, FlowVersionsEndpoint, type FlowVersionsListResponse, FlowsEndpoint, FlowsNamespace, type FpoEntityOutcome, type FpoInput, type GenerateEmbeddingStepConfig$1 as GenerateEmbeddingStepConfig, type GenerateEvalCasesInput, type GeneratedRuntimeToolGateDecision, type GeneratedRuntimeToolGateOptions, type GetRecordStepConfig$1 as GetRecordStepConfig, type Gradeable, type GraderConfig, type GraderOutcome, type GraderSeverity, type HumanVerdict, type ImageContentPart, type InferCollectionSchemaResponse, type Integration, type IntegrationTool, IntegrationsEndpoint, type IntegrationsListResponse, type JSONSchema, type JsonArray, type JsonObject, type JsonPrimitive, type JsonValue, LEDGER_ARTIFACT_LINE_PREFIX, type ListCollectionsResponse, type ListConversationsResponse, type ListParams, type ListRecordsStepConfig$1 as ListRecordsStepConfig, type LocalToolConfig, type LocalToolDefinition, type LocalToolExecutionCompleteEvent, type LocalToolExecutionLoopSnapshotSlice, type LocalToolExecutionStartEvent, type LogEntry, type LogQueryParams, type LogQueryResponse, type LogQueryResult, type LogStatsParams, type LogStatsResponse, type LogStatsResult, LogsEndpoint, type Message$1 as Message, type MessageContent, type MessageFallback, type Metadata, type ModelConfig, ModelConfigsEndpoint, type ModelFallback, type ModelOverride, type ModelUsageDetail, type ModelUsageQueryParams, type ModelUsageResponse, type ModelUsageSummary, type ModelUsageTimeSeries, type PaginationResponse, type PersistedGraderOutcome, type ProductDefinition, ProductDriftError, ProductEnsureConflictError, type ProductPullResult, ProductsNamespace, type Prompt$1 as Prompt, type PromptErrorHandling, type PromptFallback, type PromptListParams, type PromptStepConfig$1 as PromptStepConfig, PromptsEndpoint, PromptsNamespace, type ProviderApiKey, type ProviderKeyModel, ProviderKeysEndpoint, type PullFpoResult, RUNTYPE_CLIENT_KIND, type ReasoningConfig, type ReasoningContentPart, type ReasoningValue, type RecordCollection, type RecordCollectionWithHistory, type RecordCollections, type RecordConfig$1 as RecordConfig, type RecordCostAggregation, type RecordCostModelBreakdown, type RecordFilter, type RecordFilterCondition, type RecordFilterGroup, type RecordFilterOperator, type RecordListItem, type RecordListParams, type RecordStepResult, type RecordStepResultsParams, type RecordStepResultsResponse, type RecordWriteResponse, RecordsEndpoint, type RetrieveRecordStepConfig$1 as RetrieveRecordStepConfig, type RetryFallback, type RunEvalCaseResult, type RunEvalInput, type RunEvalResult, type RunTaskContextBudgetBreakdown, type RunTaskContextCompactionEvent, type RunTaskContextCompactionStrategy, type RunTaskContextNoticeEvent, type RunTaskContextSummaryEntry, type RunTaskContinuation, type RunTaskOffloadRecorder, type RunTaskOnContextCompaction, type RunTaskOnContextNotice, type RunTaskOnSession, type RunTaskOptions, type RunTaskResult, type RunTaskResumeState, type RunTaskSessionSummary, type RunTaskState, type RunTaskStateSlice, type RunTaskStatus, type RunTaskToolTraceSlice, type RuntimeCustomToolConfig, type RuntimeExternalToolConfig, type RuntimeFlowToolConfig, type RuntimeLocalToolConfig, type RuntimeSubagentToolConfig, type RuntimeTool, type RuntimeToolConfig, Runtype, type AgentSkillBinding as RuntypeAgentSkillBinding, RuntypeApiError, RuntypeClient, type ConditionalStepConfig as RuntypeConditionalStepConfig, type RuntypeConfig, type FetchUrlStepConfig as RuntypeFetchUrlStepConfig, RuntypeFlowBuilder, type FlowConfig as RuntypeFlowConfig, type GenerateEmbeddingStepConfig as RuntypeGenerateEmbeddingStepConfig, type GetRecordStepConfig as RuntypeGetRecordStepConfig, type ListRecordsStepConfig as RuntypeListRecordsStepConfig, type Message as RuntypeMessage, type ModelOverride$1 as RuntypeModelOverride, type Prompt as RuntypePrompt, type PromptStepConfig as RuntypePromptStepConfig, type RuntypeRecord, type RecordConfig as RuntypeRecordConfig, type RetrieveRecordStepConfig as RuntypeRetrieveRecordStepConfig, type SearchStepConfig as RuntypeSearchStepConfig, type SendEmailStepConfig as RuntypeSendEmailStepConfig, type SendEventStepConfig as RuntypeSendEventStepConfig, type SendStreamStepConfig as RuntypeSendStreamStepConfig, type SetVariableStepConfig as RuntypeSetVariableStepConfig, type Skill as RuntypeSkill, type SkillCapabilities as RuntypeSkillCapabilities, type SkillFrontmatter as RuntypeSkillFrontmatter, type SkillManifest as RuntypeSkillManifest, type SkillProposal as RuntypeSkillProposal, type SkillRuntypeExtensions as RuntypeSkillRuntypeExtensions, type SkillVersion as RuntypeSkillVersion, type TransformDataStepConfig as RuntypeTransformDataStepConfig, type UpsertFlowConfig as RuntypeUpsertFlowConfig, type UpsertRecordStepConfig as RuntypeUpsertRecordStepConfig, type VectorSearchStepConfig as RuntypeVectorSearchStepConfig, type WaitUntilStepConfig as RuntypeWaitUntilStepConfig, SDK_USER_AGENT, SDK_VERSION, STEP_FIELD_REGISTRY, STEP_TYPE_TO_METHOD, type Schedule, type ScheduleExecutionOptions, type ScheduleListParams, type ScheduleMessage, type ScheduleMessageSet, type ScheduleMessages, type ScheduleMutationResponse, type ScheduleRun, type ScheduleRunNowResponse, type ScheduleStatusResponse, type ScheduleTarget, type ScheduleTrigger, SchedulesEndpoint, type SearchStepConfig$1 as SearchStepConfig, type Secret, type SecretCheckResponse, type SecretDeleteResponse, type SecretSetupUrlRequest, type SecretSetupUrlResponse, SecretsEndpoint, type SelectOrganizationProviderCredentialRequest, type SelectOrganizationProviderCredentialResponse, type SendEmailStepConfig$1 as SendEmailStepConfig, type SendEventStepConfig$1 as SendEventStepConfig, type SendStreamStepConfig$1 as SendStreamStepConfig, type SetVariableStepConfig$1 as SetVariableStepConfig, type SkillDefinition, SkillDriftError, SkillEnsureConflictError, type SkillListPage, type SkillListPagination, type SkillListParams, type SkillManifestInput, type SkillMarkdownInput, type SkillOrigin, type SkillProposalStatus, SkillProposalsNamespace, type SkillPullResult, type SkillStatus, type SkillTrustLevel, type SkillVersionStatus, type SkillWithVersion, type SkillWriteInput, SkillsNamespace, type SlackInstallRequest, type SlackManifestRequest, type SlackManifestResponse, type SlackOAuthStartRequest, type SlackOAuthStartResponse, type StepCompleteEvent, type StepDeltaEvent, type StepFallback, type StepFieldMeta, type StepStartEvent, type StepWaitingLocalEvent, type StreamCallbacks, type StreamConsumeOptions, type StreamEvent, type StreamEventOf, type SubagentToolConfig, type Surface, type SurfaceDefinition, type SurfaceDefinitionEnvironment, type SurfaceDefinitionStatus, type SurfaceDefinitionType, SurfaceDriftError, SurfaceEnsureConflictError, type SurfaceListParams, type SurfacePullResult, SurfacesEndpoint, SurfacesNamespace, type TextContentPart, type Tool, type ToolApprovalGrant, ToolApprovalGrantsEndpoint, type ToolConfig, type ToolDefinition, type ToolDefinitionType, ToolDriftError, ToolEnsureConflictError, type ToolPullResult, type ToolWithValidation, type ToolsConfig, ToolsEndpoint, ToolsNamespace, type TransformDataStepConfig$1 as TransformDataStepConfig, type TypedCreateRecordRequest, type TypedRecordListItem, type TypedRecordWriteResponse, TypedRecordsScope, type TypedRuntypeRecord, UNIFIED_EVENTS_QUERY, type UpdateClientTokenRequest, type UpdateCollectionRequest, type UpdateCollectionResponse, type UpdateConversationRequest, type UpdateEvalCaseInput, type UpdateEvalSuiteInput, type UpdateFlowRequest, type UpdatePromptData, type UpdateProviderKeyRequest, type UpdateScheduleRequest, type UpdateSecretRequest, type UpdateToolRequest, type UpdatedFlow, type UpsertFlowConfig$1 as UpsertFlowConfig, type UpsertOptions, type UpsertRecordStepConfig$1 as UpsertRecordStepConfig, type UserProfile, UsersEndpoint, type ValidateExistingRecordsResponse, type VectorSearchStepConfig$1 as VectorSearchStepConfig, type VersionType, type WaitUntilStepConfig$1 as WaitUntilStepConfig, type WorkflowCompileDeps, type WorkflowCompletionCriteriaConfig, type WorkflowConfig, type WorkflowConfigFactory, type WorkflowContext, type WorkflowDefinition, type WorkflowHookEntry, type WorkflowHookKind, type WorkflowHookRef, type WorkflowHookSignatures, type WorkflowMilestoneConfig, type WorkflowPhase, type WorkflowPolicyConfig, type WorkflowRecoveryConfig, type WorkflowSlot, type WorkflowStallPolicy, applyGeneratedRuntimeToolProposalToDispatchRequest, attachRuntimeToolsToDispatchRequest, buildEmptySessionNudge, buildGeneratedRuntimeToolGateOutput, buildLedgerOffloadReference, buildPolicyGuidance, buildSendViewOffloadMarker, calledTool, compileWorkflowConfig, completed, computeAgentContentHash, computeEvalContentHash, computeFlowContentHash, computeFpoContentHash, computeProductContentHash, computeSkillContentHash, computeSurfaceContentHash, computeToolContentHash, contains, cost, createAgentEventTranslator, createClient, createExternalTool, createFlowEventTranslator, defaultWorkflow, defaultWorkflowConfig, defineAgent, defineEval, defineFlow, defineFpo, definePlaybook, defineProduct, defineSkill, defineSurface, defineTool, deployWorkflow, ensureDefaultWorkflowHooks, ensureEval, ensureFpo, evaluateGeneratedRuntimeToolProposal, extractDeclaredToolResultChars, gameWorkflow, getDefaultPlanPath, getLikelySupportingCandidatePaths, interpolateWorkflowTemplate, isDiscoveryToolName, isMarathonArtifactPath, isPreservationSensitiveTask, isUnifiedEventType, isWorkflowHookRef, jsonField, judge, judges, latency, length, listWorkflowHooks, matchesExpected, maxToolCalls, noError, normalizeAgentDefinition, normalizeCandidatePath, normalizeFpoDefinition, normalizeProductDefinition, normalizeSkillDefinition, normalizeSurfaceDefinition, normalizeToolDefinition, notCalledTool, notContains, parseFinalBuffer, parseLedgerArtifactRelativePath, parseOffloadedOutputId, parseSSEChunk, processStream, pullEval, pullFpo, ranStep, regex, registerWorkflowHook, resolveStallStopAfter, resolveWorkflowHook, runEvalSuite, sanitizeTaskSlug, shouldInjectEmptySessionNudge, shouldRequestModelEscalation, stepOrder, streamEvents, toolOrder, unregisterWorkflowHook, usedNoTools, validJson, withUnifiedEvents };
|