@avallon-labs/sdk 50.4.0 → 51.1.0-staging.1136
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1467 -408
- package/dist/index.js +125 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1925,8 +1925,22 @@ interface CreateChatEnvelope {
|
|
|
1925
1925
|
* Avallon API
|
|
1926
1926
|
* OpenAPI spec version: 1.0.0
|
|
1927
1927
|
*/
|
|
1928
|
-
type
|
|
1929
|
-
|
|
1928
|
+
type CreateEvalBenchmarkBody = {
|
|
1929
|
+
/**
|
|
1930
|
+
* @minimum 1
|
|
1931
|
+
* @maximum 9007199254740991
|
|
1932
|
+
*/
|
|
1933
|
+
candidate_version: number;
|
|
1934
|
+
/**
|
|
1935
|
+
* @minimum 1
|
|
1936
|
+
* @maximum 9007199254740991
|
|
1937
|
+
*/
|
|
1938
|
+
baseline_version: number;
|
|
1939
|
+
/**
|
|
1940
|
+
* @minimum 1
|
|
1941
|
+
* @maximum 5
|
|
1942
|
+
*/
|
|
1943
|
+
runs_per_configuration?: number;
|
|
1930
1944
|
};
|
|
1931
1945
|
|
|
1932
1946
|
/**
|
|
@@ -1935,11 +1949,10 @@ type CreateExtractorBodySchema = {
|
|
|
1935
1949
|
* Avallon API
|
|
1936
1950
|
* OpenAPI spec version: 1.0.0
|
|
1937
1951
|
*/
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
schema: CreateExtractorBodySchema;
|
|
1952
|
+
type CreateEvalBenchmarkEnvelopeDataRunsItemConfiguration = (typeof CreateEvalBenchmarkEnvelopeDataRunsItemConfiguration)[keyof typeof CreateEvalBenchmarkEnvelopeDataRunsItemConfiguration] | null;
|
|
1953
|
+
declare const CreateEvalBenchmarkEnvelopeDataRunsItemConfiguration: {
|
|
1954
|
+
readonly candidate: "candidate";
|
|
1955
|
+
readonly baseline: "baseline";
|
|
1943
1956
|
};
|
|
1944
1957
|
|
|
1945
1958
|
/**
|
|
@@ -1948,8 +1961,10 @@ type CreateExtractorBody = {
|
|
|
1948
1961
|
* Avallon API
|
|
1949
1962
|
* OpenAPI spec version: 1.0.0
|
|
1950
1963
|
*/
|
|
1951
|
-
type
|
|
1952
|
-
|
|
1964
|
+
type CreateEvalBenchmarkEnvelopeDataRunsItemGradingExpectationsItem = {
|
|
1965
|
+
text: string;
|
|
1966
|
+
passed: boolean;
|
|
1967
|
+
evidence: string;
|
|
1953
1968
|
};
|
|
1954
1969
|
|
|
1955
1970
|
/**
|
|
@@ -1958,14 +1973,24 @@ type ExtractorCreatedSchema = {
|
|
|
1958
1973
|
* Avallon API
|
|
1959
1974
|
* OpenAPI spec version: 1.0.0
|
|
1960
1975
|
*/
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1976
|
+
type CreateEvalBenchmarkEnvelopeDataRunsItemGradingSummary = {
|
|
1977
|
+
/**
|
|
1978
|
+
* @minimum -9007199254740991
|
|
1979
|
+
* @maximum 9007199254740991
|
|
1980
|
+
*/
|
|
1981
|
+
total: number;
|
|
1982
|
+
/**
|
|
1983
|
+
* @minimum -9007199254740991
|
|
1984
|
+
* @maximum 9007199254740991
|
|
1985
|
+
*/
|
|
1986
|
+
passed: number;
|
|
1987
|
+
/**
|
|
1988
|
+
* @minimum -9007199254740991
|
|
1989
|
+
* @maximum 9007199254740991
|
|
1990
|
+
*/
|
|
1991
|
+
failed: number;
|
|
1992
|
+
pass_rate: number;
|
|
1993
|
+
};
|
|
1969
1994
|
|
|
1970
1995
|
/**
|
|
1971
1996
|
* Generated by orval 🍺
|
|
@@ -1974,10 +1999,10 @@ interface ExtractorCreated {
|
|
|
1974
1999
|
* OpenAPI spec version: 1.0.0
|
|
1975
2000
|
*/
|
|
1976
2001
|
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
}
|
|
2002
|
+
type CreateEvalBenchmarkEnvelopeDataRunsItemGrading = {
|
|
2003
|
+
expectations: CreateEvalBenchmarkEnvelopeDataRunsItemGradingExpectationsItem[];
|
|
2004
|
+
summary: CreateEvalBenchmarkEnvelopeDataRunsItemGradingSummary;
|
|
2005
|
+
} | null;
|
|
1981
2006
|
|
|
1982
2007
|
/**
|
|
1983
2008
|
* Generated by orval 🍺
|
|
@@ -1985,8 +2010,33 @@ interface CreateExtractorEnvelope {
|
|
|
1985
2010
|
* Avallon API
|
|
1986
2011
|
* OpenAPI spec version: 1.0.0
|
|
1987
2012
|
*/
|
|
1988
|
-
type
|
|
1989
|
-
|
|
2013
|
+
type CreateEvalBenchmarkEnvelopeDataRunsItemMetricsFixtureHealth = {
|
|
2014
|
+
/**
|
|
2015
|
+
* @minimum -9007199254740991
|
|
2016
|
+
* @maximum 9007199254740991
|
|
2017
|
+
*/
|
|
2018
|
+
exact: number;
|
|
2019
|
+
/**
|
|
2020
|
+
* @minimum -9007199254740991
|
|
2021
|
+
* @maximum 9007199254740991
|
|
2022
|
+
*/
|
|
2023
|
+
partial: number;
|
|
2024
|
+
/**
|
|
2025
|
+
* @minimum -9007199254740991
|
|
2026
|
+
* @maximum 9007199254740991
|
|
2027
|
+
*/
|
|
2028
|
+
fifo: number;
|
|
2029
|
+
/**
|
|
2030
|
+
* @minimum -9007199254740991
|
|
2031
|
+
* @maximum 9007199254740991
|
|
2032
|
+
*/
|
|
2033
|
+
default: number;
|
|
2034
|
+
/**
|
|
2035
|
+
* @minimum -9007199254740991
|
|
2036
|
+
* @maximum 9007199254740991
|
|
2037
|
+
*/
|
|
2038
|
+
unavailable: number;
|
|
2039
|
+
matched_rate: number | null;
|
|
1990
2040
|
};
|
|
1991
2041
|
|
|
1992
2042
|
/**
|
|
@@ -1996,10 +2046,15 @@ type CreateExtractorJobBodyScope = {
|
|
|
1996
2046
|
* OpenAPI spec version: 1.0.0
|
|
1997
2047
|
*/
|
|
1998
2048
|
|
|
1999
|
-
type
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2049
|
+
type CreateEvalBenchmarkEnvelopeDataRunsItemMetrics = {
|
|
2050
|
+
duration_seconds: number | null;
|
|
2051
|
+
/**
|
|
2052
|
+
* @minimum -9007199254740991
|
|
2053
|
+
* @maximum 9007199254740991
|
|
2054
|
+
*/
|
|
2055
|
+
tool_calls: number;
|
|
2056
|
+
fixture_health: CreateEvalBenchmarkEnvelopeDataRunsItemMetricsFixtureHealth;
|
|
2057
|
+
} | null;
|
|
2003
2058
|
|
|
2004
2059
|
/**
|
|
2005
2060
|
* Generated by orval 🍺
|
|
@@ -2007,8 +2062,14 @@ type CreateExtractorJobBody = {
|
|
|
2007
2062
|
* Avallon API
|
|
2008
2063
|
* OpenAPI spec version: 1.0.0
|
|
2009
2064
|
*/
|
|
2010
|
-
type
|
|
2011
|
-
|
|
2065
|
+
type CreateEvalBenchmarkEnvelopeDataRunsItemStatus = (typeof CreateEvalBenchmarkEnvelopeDataRunsItemStatus)[keyof typeof CreateEvalBenchmarkEnvelopeDataRunsItemStatus];
|
|
2066
|
+
declare const CreateEvalBenchmarkEnvelopeDataRunsItemStatus: {
|
|
2067
|
+
readonly queued: "queued";
|
|
2068
|
+
readonly running: "running";
|
|
2069
|
+
readonly judging: "judging";
|
|
2070
|
+
readonly passed: "passed";
|
|
2071
|
+
readonly failed: "failed";
|
|
2072
|
+
readonly error: "error";
|
|
2012
2073
|
};
|
|
2013
2074
|
|
|
2014
2075
|
/**
|
|
@@ -2018,14 +2079,29 @@ type ExtractorJobCreatedScope = {
|
|
|
2018
2079
|
* OpenAPI spec version: 1.0.0
|
|
2019
2080
|
*/
|
|
2020
2081
|
|
|
2021
|
-
|
|
2082
|
+
type CreateEvalBenchmarkEnvelopeDataRunsItem = {
|
|
2022
2083
|
id: string;
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2084
|
+
eval_id: string;
|
|
2085
|
+
/**
|
|
2086
|
+
* @minimum -9007199254740991
|
|
2087
|
+
* @maximum 9007199254740991
|
|
2088
|
+
*/
|
|
2089
|
+
target_version: number;
|
|
2090
|
+
status: CreateEvalBenchmarkEnvelopeDataRunsItemStatus;
|
|
2091
|
+
passed: boolean | null;
|
|
2092
|
+
reason: string | null;
|
|
2093
|
+
error: string | null;
|
|
2094
|
+
judge_model: string | null;
|
|
2095
|
+
judge_prompt_version: string | null;
|
|
2096
|
+
grading: CreateEvalBenchmarkEnvelopeDataRunsItemGrading;
|
|
2097
|
+
metrics: CreateEvalBenchmarkEnvelopeDataRunsItemMetrics;
|
|
2098
|
+
benchmark_id: string | null;
|
|
2099
|
+
configuration: CreateEvalBenchmarkEnvelopeDataRunsItemConfiguration;
|
|
2100
|
+
run_number: number | null;
|
|
2027
2101
|
created_at: string;
|
|
2028
|
-
|
|
2102
|
+
started_at: string | null;
|
|
2103
|
+
completed_at: string | null;
|
|
2104
|
+
};
|
|
2029
2105
|
|
|
2030
2106
|
/**
|
|
2031
2107
|
* Generated by orval 🍺
|
|
@@ -2033,11 +2109,25 @@ interface ExtractorJobCreated {
|
|
|
2033
2109
|
* Avallon API
|
|
2034
2110
|
* OpenAPI spec version: 1.0.0
|
|
2035
2111
|
*/
|
|
2112
|
+
type CreateEvalBenchmarkEnvelopeDataRunSummaryBaselineDurationSeconds = {
|
|
2113
|
+
mean: number;
|
|
2114
|
+
stddev: number;
|
|
2115
|
+
min: number;
|
|
2116
|
+
max: number;
|
|
2117
|
+
} | null;
|
|
2036
2118
|
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2119
|
+
/**
|
|
2120
|
+
* Generated by orval 🍺
|
|
2121
|
+
* Do not edit manually.
|
|
2122
|
+
* Avallon API
|
|
2123
|
+
* OpenAPI spec version: 1.0.0
|
|
2124
|
+
*/
|
|
2125
|
+
type CreateEvalBenchmarkEnvelopeDataRunSummaryBaselineFixtureMatchedRate = {
|
|
2126
|
+
mean: number;
|
|
2127
|
+
stddev: number;
|
|
2128
|
+
min: number;
|
|
2129
|
+
max: number;
|
|
2130
|
+
} | null;
|
|
2041
2131
|
|
|
2042
2132
|
/**
|
|
2043
2133
|
* Generated by orval 🍺
|
|
@@ -2045,11 +2135,12 @@ interface CreateExtractorJobEnvelope {
|
|
|
2045
2135
|
* Avallon API
|
|
2046
2136
|
* OpenAPI spec version: 1.0.0
|
|
2047
2137
|
*/
|
|
2048
|
-
type
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2138
|
+
type CreateEvalBenchmarkEnvelopeDataRunSummaryBaselinePassRate = {
|
|
2139
|
+
mean: number;
|
|
2140
|
+
stddev: number;
|
|
2141
|
+
min: number;
|
|
2142
|
+
max: number;
|
|
2143
|
+
} | null;
|
|
2053
2144
|
|
|
2054
2145
|
/**
|
|
2055
2146
|
* Generated by orval 🍺
|
|
@@ -2058,19 +2149,20 @@ declare const CreateExtractorWebhookBodyEnvironmentsItem: {
|
|
|
2058
2149
|
* OpenAPI spec version: 1.0.0
|
|
2059
2150
|
*/
|
|
2060
2151
|
|
|
2061
|
-
type
|
|
2152
|
+
type CreateEvalBenchmarkEnvelopeDataRunSummaryBaseline = {
|
|
2062
2153
|
/**
|
|
2063
|
-
* @
|
|
2064
|
-
* @
|
|
2154
|
+
* @minimum -9007199254740991
|
|
2155
|
+
* @maximum 9007199254740991
|
|
2065
2156
|
*/
|
|
2066
|
-
|
|
2067
|
-
/**
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2157
|
+
runs: number;
|
|
2158
|
+
/**
|
|
2159
|
+
* @minimum -9007199254740991
|
|
2160
|
+
* @maximum 9007199254740991
|
|
2161
|
+
*/
|
|
2162
|
+
graded_runs: number;
|
|
2163
|
+
pass_rate: CreateEvalBenchmarkEnvelopeDataRunSummaryBaselinePassRate;
|
|
2164
|
+
duration_seconds: CreateEvalBenchmarkEnvelopeDataRunSummaryBaselineDurationSeconds;
|
|
2165
|
+
fixture_matched_rate: CreateEvalBenchmarkEnvelopeDataRunSummaryBaselineFixtureMatchedRate;
|
|
2074
2166
|
};
|
|
2075
2167
|
|
|
2076
2168
|
/**
|
|
@@ -2079,11 +2171,12 @@ type CreateExtractorWebhookBody = {
|
|
|
2079
2171
|
* Avallon API
|
|
2080
2172
|
* OpenAPI spec version: 1.0.0
|
|
2081
2173
|
*/
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2174
|
+
type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidateDurationSeconds = {
|
|
2175
|
+
mean: number;
|
|
2176
|
+
stddev: number;
|
|
2177
|
+
min: number;
|
|
2178
|
+
max: number;
|
|
2179
|
+
} | null;
|
|
2087
2180
|
|
|
2088
2181
|
/**
|
|
2089
2182
|
* Generated by orval 🍺
|
|
@@ -2091,16 +2184,12 @@ interface CreateExtractorWebhookEnvelope {
|
|
|
2091
2184
|
* Avallon API
|
|
2092
2185
|
* OpenAPI spec version: 1.0.0
|
|
2093
2186
|
*/
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
* @maxLength 10000
|
|
2101
|
-
*/
|
|
2102
|
-
text: string;
|
|
2103
|
-
}
|
|
2187
|
+
type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidateFixtureMatchedRate = {
|
|
2188
|
+
mean: number;
|
|
2189
|
+
stddev: number;
|
|
2190
|
+
min: number;
|
|
2191
|
+
max: number;
|
|
2192
|
+
} | null;
|
|
2104
2193
|
|
|
2105
2194
|
/**
|
|
2106
2195
|
* Generated by orval 🍺
|
|
@@ -2108,14 +2197,12 @@ interface CreateFeedbackRequest {
|
|
|
2108
2197
|
* Avallon API
|
|
2109
2198
|
* OpenAPI spec version: 1.0.0
|
|
2110
2199
|
*/
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
readonly worker: "worker";
|
|
2118
|
-
};
|
|
2200
|
+
type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidatePassRate = {
|
|
2201
|
+
mean: number;
|
|
2202
|
+
stddev: number;
|
|
2203
|
+
min: number;
|
|
2204
|
+
max: number;
|
|
2205
|
+
} | null;
|
|
2119
2206
|
|
|
2120
2207
|
/**
|
|
2121
2208
|
* Generated by orval 🍺
|
|
@@ -2124,29 +2211,20 @@ declare const CreateInboxBodyProcessorType: {
|
|
|
2124
2211
|
* OpenAPI spec version: 1.0.0
|
|
2125
2212
|
*/
|
|
2126
2213
|
|
|
2127
|
-
type
|
|
2214
|
+
type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidate = {
|
|
2128
2215
|
/**
|
|
2129
|
-
* @
|
|
2130
|
-
* @
|
|
2216
|
+
* @minimum -9007199254740991
|
|
2217
|
+
* @maximum 9007199254740991
|
|
2131
2218
|
*/
|
|
2132
|
-
|
|
2219
|
+
runs: number;
|
|
2133
2220
|
/**
|
|
2134
|
-
*
|
|
2135
|
-
* @
|
|
2221
|
+
* @minimum -9007199254740991
|
|
2222
|
+
* @maximum 9007199254740991
|
|
2136
2223
|
*/
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
processor_type?: CreateInboxBodyProcessorType;
|
|
2142
|
-
attachment_password?: string | null;
|
|
2143
|
-
pdf_splitting_enabled?: boolean;
|
|
2144
|
-
/** Username for the live address. Generated when omitted. */
|
|
2145
|
-
username?: string;
|
|
2146
|
-
/** Username for the test address. Generated when omitted. */
|
|
2147
|
-
test_username?: string;
|
|
2148
|
-
/** List of allowed sender domain patterns. When null, all senders are accepted. When set to an array, only emails from matching domains are processed. Supports wildcard patterns: '*.example.com' matches 'example.com' and all its subdomains. */
|
|
2149
|
-
allowed_sender_domains: string[] | null;
|
|
2224
|
+
graded_runs: number;
|
|
2225
|
+
pass_rate: CreateEvalBenchmarkEnvelopeDataRunSummaryCandidatePassRate;
|
|
2226
|
+
duration_seconds: CreateEvalBenchmarkEnvelopeDataRunSummaryCandidateDurationSeconds;
|
|
2227
|
+
fixture_matched_rate: CreateEvalBenchmarkEnvelopeDataRunSummaryCandidateFixtureMatchedRate;
|
|
2150
2228
|
};
|
|
2151
2229
|
|
|
2152
2230
|
/**
|
|
@@ -2155,14 +2233,24 @@ type CreateInboxBody = {
|
|
|
2155
2233
|
* Avallon API
|
|
2156
2234
|
* OpenAPI spec version: 1.0.0
|
|
2157
2235
|
*/
|
|
2236
|
+
type CreateEvalBenchmarkEnvelopeDataRunSummaryDelta = {
|
|
2237
|
+
pass_rate: number | null;
|
|
2238
|
+
duration_seconds: number | null;
|
|
2239
|
+
fixture_matched_rate: number | null;
|
|
2240
|
+
};
|
|
2241
|
+
|
|
2158
2242
|
/**
|
|
2159
|
-
*
|
|
2243
|
+
* Generated by orval 🍺
|
|
2244
|
+
* Do not edit manually.
|
|
2245
|
+
* Avallon API
|
|
2246
|
+
* OpenAPI spec version: 1.0.0
|
|
2160
2247
|
*/
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
|
|
2248
|
+
|
|
2249
|
+
type CreateEvalBenchmarkEnvelopeDataRunSummary = {
|
|
2250
|
+
candidate: CreateEvalBenchmarkEnvelopeDataRunSummaryCandidate;
|
|
2251
|
+
baseline: CreateEvalBenchmarkEnvelopeDataRunSummaryBaseline;
|
|
2252
|
+
delta: CreateEvalBenchmarkEnvelopeDataRunSummaryDelta;
|
|
2253
|
+
} | null;
|
|
2166
2254
|
|
|
2167
2255
|
/**
|
|
2168
2256
|
* Generated by orval 🍺
|
|
@@ -2170,10 +2258,11 @@ type InboxAddresses = {
|
|
|
2170
2258
|
* Avallon API
|
|
2171
2259
|
* OpenAPI spec version: 1.0.0
|
|
2172
2260
|
*/
|
|
2173
|
-
type
|
|
2174
|
-
declare const
|
|
2175
|
-
readonly
|
|
2176
|
-
readonly
|
|
2261
|
+
type CreateEvalBenchmarkEnvelopeDataStatus = (typeof CreateEvalBenchmarkEnvelopeDataStatus)[keyof typeof CreateEvalBenchmarkEnvelopeDataStatus];
|
|
2262
|
+
declare const CreateEvalBenchmarkEnvelopeDataStatus: {
|
|
2263
|
+
readonly running: "running";
|
|
2264
|
+
readonly completed: "completed";
|
|
2265
|
+
readonly error: "error";
|
|
2177
2266
|
};
|
|
2178
2267
|
|
|
2179
2268
|
/**
|
|
@@ -2183,29 +2272,31 @@ declare const InboxProcessorType: {
|
|
|
2183
2272
|
* OpenAPI spec version: 1.0.0
|
|
2184
2273
|
*/
|
|
2185
2274
|
|
|
2186
|
-
|
|
2275
|
+
type CreateEvalBenchmarkEnvelopeData = {
|
|
2187
2276
|
id: string;
|
|
2188
|
-
|
|
2189
|
-
/** Mail sent to the test address runs the worker's test version instead of its live one. */
|
|
2190
|
-
addresses: InboxAddresses;
|
|
2277
|
+
eval_id: string;
|
|
2191
2278
|
/**
|
|
2192
|
-
*
|
|
2193
|
-
* @
|
|
2279
|
+
* @minimum -9007199254740991
|
|
2280
|
+
* @maximum 9007199254740991
|
|
2194
2281
|
*/
|
|
2195
|
-
|
|
2282
|
+
candidate_version: number;
|
|
2196
2283
|
/**
|
|
2197
|
-
*
|
|
2198
|
-
* @
|
|
2284
|
+
* @minimum -9007199254740991
|
|
2285
|
+
* @maximum 9007199254740991
|
|
2199
2286
|
*/
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2287
|
+
baseline_version: number;
|
|
2288
|
+
/**
|
|
2289
|
+
* @minimum -9007199254740991
|
|
2290
|
+
* @maximum 9007199254740991
|
|
2291
|
+
*/
|
|
2292
|
+
runs_per_configuration: number;
|
|
2293
|
+
status: CreateEvalBenchmarkEnvelopeDataStatus;
|
|
2294
|
+
run_summary: CreateEvalBenchmarkEnvelopeDataRunSummary;
|
|
2295
|
+
notes: string[] | null;
|
|
2296
|
+
runs: CreateEvalBenchmarkEnvelopeDataRunsItem[];
|
|
2206
2297
|
created_at: string;
|
|
2207
|
-
|
|
2208
|
-
}
|
|
2298
|
+
completed_at: string | null;
|
|
2299
|
+
};
|
|
2209
2300
|
|
|
2210
2301
|
/**
|
|
2211
2302
|
* Generated by orval 🍺
|
|
@@ -2214,8 +2305,8 @@ interface Inbox {
|
|
|
2214
2305
|
* OpenAPI spec version: 1.0.0
|
|
2215
2306
|
*/
|
|
2216
2307
|
|
|
2217
|
-
interface
|
|
2218
|
-
data:
|
|
2308
|
+
interface CreateEvalBenchmarkEnvelope {
|
|
2309
|
+
data: CreateEvalBenchmarkEnvelopeData;
|
|
2219
2310
|
message: string;
|
|
2220
2311
|
}
|
|
2221
2312
|
|
|
@@ -2225,10 +2316,8 @@ interface CreateInboxEnvelope {
|
|
|
2225
2316
|
* Avallon API
|
|
2226
2317
|
* OpenAPI spec version: 1.0.0
|
|
2227
2318
|
*/
|
|
2228
|
-
type
|
|
2229
|
-
|
|
2230
|
-
readonly live: "live";
|
|
2231
|
-
readonly test: "test";
|
|
2319
|
+
type CreateExtractorBodySchema = {
|
|
2320
|
+
[key: string]: unknown;
|
|
2232
2321
|
};
|
|
2233
2322
|
|
|
2234
2323
|
/**
|
|
@@ -2238,19 +2327,10 @@ declare const CreateInboxWebhookBodyEnvironmentsItem: {
|
|
|
2238
2327
|
* OpenAPI spec version: 1.0.0
|
|
2239
2328
|
*/
|
|
2240
2329
|
|
|
2241
|
-
type
|
|
2242
|
-
/**
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
*/
|
|
2246
|
-
name: string;
|
|
2247
|
-
/** @maxLength 2048 */
|
|
2248
|
-
url: string;
|
|
2249
|
-
/** @minItems 1 */
|
|
2250
|
-
environments?: CreateInboxWebhookBodyEnvironmentsItem[];
|
|
2251
|
-
auth_header_name?: string | null;
|
|
2252
|
-
auth_header_value?: string | null;
|
|
2253
|
-
enabled?: boolean;
|
|
2330
|
+
type CreateExtractorBody = {
|
|
2331
|
+
/** @minLength 1 */
|
|
2332
|
+
name: string;
|
|
2333
|
+
schema: CreateExtractorBodySchema;
|
|
2254
2334
|
};
|
|
2255
2335
|
|
|
2256
2336
|
/**
|
|
@@ -2259,11 +2339,9 @@ type CreateInboxWebhookBody = {
|
|
|
2259
2339
|
* Avallon API
|
|
2260
2340
|
* OpenAPI spec version: 1.0.0
|
|
2261
2341
|
*/
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
message: string;
|
|
2266
|
-
}
|
|
2342
|
+
type ExtractorCreatedSchema = {
|
|
2343
|
+
[key: string]: unknown;
|
|
2344
|
+
};
|
|
2267
2345
|
|
|
2268
2346
|
/**
|
|
2269
2347
|
* Generated by orval 🍺
|
|
@@ -2271,12 +2349,26 @@ interface CreateInboxWebhookEnvelope {
|
|
|
2271
2349
|
* Avallon API
|
|
2272
2350
|
* OpenAPI spec version: 1.0.0
|
|
2273
2351
|
*/
|
|
2352
|
+
|
|
2353
|
+
interface ExtractorCreated {
|
|
2354
|
+
id: string;
|
|
2355
|
+
name: string;
|
|
2356
|
+
version: number;
|
|
2357
|
+
schema: ExtractorCreatedSchema;
|
|
2358
|
+
created_at: string;
|
|
2359
|
+
}
|
|
2360
|
+
|
|
2274
2361
|
/**
|
|
2275
|
-
*
|
|
2362
|
+
* Generated by orval 🍺
|
|
2363
|
+
* Do not edit manually.
|
|
2364
|
+
* Avallon API
|
|
2365
|
+
* OpenAPI spec version: 1.0.0
|
|
2276
2366
|
*/
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2367
|
+
|
|
2368
|
+
interface CreateExtractorEnvelope {
|
|
2369
|
+
data: ExtractorCreated;
|
|
2370
|
+
message: string;
|
|
2371
|
+
}
|
|
2280
2372
|
|
|
2281
2373
|
/**
|
|
2282
2374
|
* Generated by orval 🍺
|
|
@@ -2284,22 +2376,8 @@ type CreateInformationRequestBodyMetadata = {
|
|
|
2284
2376
|
* Avallon API
|
|
2285
2377
|
* OpenAPI spec version: 1.0.0
|
|
2286
2378
|
*/
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
/**
|
|
2290
|
-
* A short label for the question, so somebody scanning a queue of open requests can tell yours apart. Name what it is about, not what you need — no trailing punctuation.
|
|
2291
|
-
* @minLength 1
|
|
2292
|
-
* @maxLength 120
|
|
2293
|
-
*/
|
|
2294
|
-
title: string;
|
|
2295
|
-
/**
|
|
2296
|
-
* The single fact you need, as one question. Write it for a person who is not watching this run: say what you were doing, what you could not determine, and what would let you continue.
|
|
2297
|
-
* @minLength 1
|
|
2298
|
-
* @maxLength 2000
|
|
2299
|
-
*/
|
|
2300
|
-
question: string;
|
|
2301
|
-
/** Context to store alongside the question, for whoever picks it up. */
|
|
2302
|
-
metadata?: CreateInformationRequestBodyMetadata;
|
|
2379
|
+
type CreateExtractorJobBodyScope = {
|
|
2380
|
+
[key: string]: string | number | boolean | null;
|
|
2303
2381
|
};
|
|
2304
2382
|
|
|
2305
2383
|
/**
|
|
@@ -2308,10 +2386,10 @@ type CreateInformationRequestBody = {
|
|
|
2308
2386
|
* Avallon API
|
|
2309
2387
|
* OpenAPI spec version: 1.0.0
|
|
2310
2388
|
*/
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2314
|
-
|
|
2389
|
+
|
|
2390
|
+
type CreateExtractorJobBody = {
|
|
2391
|
+
extractor_id: string;
|
|
2392
|
+
scope: CreateExtractorJobBodyScope;
|
|
2315
2393
|
};
|
|
2316
2394
|
|
|
2317
2395
|
/**
|
|
@@ -2320,7 +2398,7 @@ declare const InformationRequestEnvironment: {
|
|
|
2320
2398
|
* Avallon API
|
|
2321
2399
|
* OpenAPI spec version: 1.0.0
|
|
2322
2400
|
*/
|
|
2323
|
-
type
|
|
2401
|
+
type ExtractorJobCreatedScope = {
|
|
2324
2402
|
[key: string]: unknown;
|
|
2325
2403
|
};
|
|
2326
2404
|
|
|
@@ -2331,20 +2409,12 @@ type InformationRequestMetadata = {
|
|
|
2331
2409
|
* OpenAPI spec version: 1.0.0
|
|
2332
2410
|
*/
|
|
2333
2411
|
|
|
2334
|
-
interface
|
|
2412
|
+
interface ExtractorJobCreated {
|
|
2335
2413
|
id: string;
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
/** Null while the request is open */
|
|
2341
|
-
resolution: string | null;
|
|
2342
|
-
resolved_by: string | null;
|
|
2343
|
-
resolved_at: string | null;
|
|
2344
|
-
metadata: InformationRequestMetadata;
|
|
2345
|
-
environment: InformationRequestEnvironment;
|
|
2346
|
-
/** Actor that raised the request */
|
|
2347
|
-
created_by: string;
|
|
2414
|
+
extractor_id: string;
|
|
2415
|
+
extractor_version: number;
|
|
2416
|
+
scope: ExtractorJobCreatedScope;
|
|
2417
|
+
status: string;
|
|
2348
2418
|
created_at: string;
|
|
2349
2419
|
}
|
|
2350
2420
|
|
|
@@ -2355,8 +2425,8 @@ interface InformationRequest {
|
|
|
2355
2425
|
* OpenAPI spec version: 1.0.0
|
|
2356
2426
|
*/
|
|
2357
2427
|
|
|
2358
|
-
interface
|
|
2359
|
-
data:
|
|
2428
|
+
interface CreateExtractorJobEnvelope {
|
|
2429
|
+
data: ExtractorJobCreated;
|
|
2360
2430
|
message: string;
|
|
2361
2431
|
}
|
|
2362
2432
|
|
|
@@ -2366,8 +2436,8 @@ interface CreateInformationRequestEnvelope {
|
|
|
2366
2436
|
* Avallon API
|
|
2367
2437
|
* OpenAPI spec version: 1.0.0
|
|
2368
2438
|
*/
|
|
2369
|
-
type
|
|
2370
|
-
declare const
|
|
2439
|
+
type CreateExtractorWebhookBodyEnvironmentsItem = (typeof CreateExtractorWebhookBodyEnvironmentsItem)[keyof typeof CreateExtractorWebhookBodyEnvironmentsItem];
|
|
2440
|
+
declare const CreateExtractorWebhookBodyEnvironmentsItem: {
|
|
2371
2441
|
readonly live: "live";
|
|
2372
2442
|
readonly test: "test";
|
|
2373
2443
|
};
|
|
@@ -2379,7 +2449,7 @@ declare const CreateNotificationWebhookBodyEnvironmentsItem: {
|
|
|
2379
2449
|
* OpenAPI spec version: 1.0.0
|
|
2380
2450
|
*/
|
|
2381
2451
|
|
|
2382
|
-
type
|
|
2452
|
+
type CreateExtractorWebhookBody = {
|
|
2383
2453
|
/**
|
|
2384
2454
|
* @minLength 1
|
|
2385
2455
|
* @maxLength 256
|
|
@@ -2388,7 +2458,7 @@ type CreateNotificationWebhookBody = {
|
|
|
2388
2458
|
/** @maxLength 2048 */
|
|
2389
2459
|
url: string;
|
|
2390
2460
|
/** @minItems 1 */
|
|
2391
|
-
environments?:
|
|
2461
|
+
environments?: CreateExtractorWebhookBodyEnvironmentsItem[];
|
|
2392
2462
|
auth_header_name?: string | null;
|
|
2393
2463
|
auth_header_value?: string | null;
|
|
2394
2464
|
enabled?: boolean;
|
|
@@ -2401,7 +2471,7 @@ type CreateNotificationWebhookBody = {
|
|
|
2401
2471
|
* OpenAPI spec version: 1.0.0
|
|
2402
2472
|
*/
|
|
2403
2473
|
|
|
2404
|
-
interface
|
|
2474
|
+
interface CreateExtractorWebhookEnvelope {
|
|
2405
2475
|
data: Webhook;
|
|
2406
2476
|
message: string;
|
|
2407
2477
|
}
|
|
@@ -2412,11 +2482,16 @@ interface CreateNotificationWebhookEnvelope {
|
|
|
2412
2482
|
* Avallon API
|
|
2413
2483
|
* OpenAPI spec version: 1.0.0
|
|
2414
2484
|
*/
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2485
|
+
interface CreateFeedbackRequest {
|
|
2486
|
+
/** The message ID to attach feedback to */
|
|
2487
|
+
message_id: string;
|
|
2488
|
+
/**
|
|
2489
|
+
* Feedback content
|
|
2490
|
+
* @minLength 1
|
|
2491
|
+
* @maxLength 10000
|
|
2492
|
+
*/
|
|
2493
|
+
text: string;
|
|
2494
|
+
}
|
|
2420
2495
|
|
|
2421
2496
|
/**
|
|
2422
2497
|
* Generated by orval 🍺
|
|
@@ -2425,15 +2500,12 @@ declare const CreateScheduleBodyEnvironmentsItem: {
|
|
|
2425
2500
|
* OpenAPI spec version: 1.0.0
|
|
2426
2501
|
*/
|
|
2427
2502
|
/**
|
|
2428
|
-
*
|
|
2503
|
+
* Type of processor. Defaults to 'extractor' when extractor_id is used.
|
|
2429
2504
|
*/
|
|
2430
|
-
type
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
scope?: {
|
|
2435
|
-
[key: string]: string | number | boolean | null;
|
|
2436
|
-
} | null;
|
|
2505
|
+
type CreateInboxBodyProcessorType = (typeof CreateInboxBodyProcessorType)[keyof typeof CreateInboxBodyProcessorType];
|
|
2506
|
+
declare const CreateInboxBodyProcessorType: {
|
|
2507
|
+
readonly extractor: "extractor";
|
|
2508
|
+
readonly worker: "worker";
|
|
2437
2509
|
};
|
|
2438
2510
|
|
|
2439
2511
|
/**
|
|
@@ -2442,21 +2514,31 @@ type ScheduleAction = {
|
|
|
2442
2514
|
* Avallon API
|
|
2443
2515
|
* OpenAPI spec version: 1.0.0
|
|
2444
2516
|
*/
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
*/
|
|
2448
|
-
interface RecurrencePattern {
|
|
2517
|
+
|
|
2518
|
+
type CreateInboxBody = {
|
|
2449
2519
|
/**
|
|
2450
|
-
*
|
|
2451
|
-
* @
|
|
2452
|
-
* @maximum 59
|
|
2520
|
+
* @minLength 1
|
|
2521
|
+
* @maxLength 256
|
|
2453
2522
|
*/
|
|
2454
|
-
|
|
2455
|
-
/**
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2523
|
+
name: string;
|
|
2524
|
+
/**
|
|
2525
|
+
* Deprecated. Use processor_id instead.
|
|
2526
|
+
* @deprecated
|
|
2527
|
+
*/
|
|
2528
|
+
extractor_id?: string;
|
|
2529
|
+
/** ID of the processor (extractor or worker) to use. */
|
|
2530
|
+
processor_id?: string;
|
|
2531
|
+
/** Type of processor. Defaults to 'extractor' when extractor_id is used. */
|
|
2532
|
+
processor_type?: CreateInboxBodyProcessorType;
|
|
2533
|
+
attachment_password?: string | null;
|
|
2534
|
+
pdf_splitting_enabled?: boolean;
|
|
2535
|
+
/** Username for the live address. Generated when omitted. */
|
|
2536
|
+
username?: string;
|
|
2537
|
+
/** Username for the test address. Generated when omitted. */
|
|
2538
|
+
test_username?: string;
|
|
2539
|
+
/** List of allowed sender domain patterns. When null, all senders are accepted. When set to an array, only emails from matching domains are processed. Supports wildcard patterns: '*.example.com' matches 'example.com' and all its subdomains. */
|
|
2540
|
+
allowed_sender_domains: string[] | null;
|
|
2541
|
+
};
|
|
2460
2542
|
|
|
2461
2543
|
/**
|
|
2462
2544
|
* Generated by orval 🍺
|
|
@@ -2464,24 +2546,25 @@ interface RecurrencePattern {
|
|
|
2464
2546
|
* Avallon API
|
|
2465
2547
|
* OpenAPI spec version: 1.0.0
|
|
2466
2548
|
*/
|
|
2549
|
+
/**
|
|
2550
|
+
* Mail sent to the test address runs the worker's test version instead of its live one.
|
|
2551
|
+
*/
|
|
2552
|
+
type InboxAddresses = {
|
|
2553
|
+
live: string;
|
|
2554
|
+
/** Null on inboxes created before test addresses existed. */
|
|
2555
|
+
test: string | null;
|
|
2556
|
+
};
|
|
2467
2557
|
|
|
2468
2558
|
/**
|
|
2469
|
-
*
|
|
2559
|
+
* Generated by orval 🍺
|
|
2560
|
+
* Do not edit manually.
|
|
2561
|
+
* Avallon API
|
|
2562
|
+
* OpenAPI spec version: 1.0.0
|
|
2470
2563
|
*/
|
|
2471
|
-
type
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
} | {
|
|
2476
|
-
type: "recurring";
|
|
2477
|
-
/** IANA time zone identifier, e.g. "America/Chicago" */
|
|
2478
|
-
timezone: string;
|
|
2479
|
-
/**
|
|
2480
|
-
* The schedule fires whenever any of these patterns comes round, all read in the rule's time zone.
|
|
2481
|
-
* @minItems 1
|
|
2482
|
-
* @maxItems 10
|
|
2483
|
-
*/
|
|
2484
|
-
patterns: RecurrencePattern[];
|
|
2564
|
+
type InboxProcessorType = (typeof InboxProcessorType)[keyof typeof InboxProcessorType];
|
|
2565
|
+
declare const InboxProcessorType: {
|
|
2566
|
+
readonly extractor: "extractor";
|
|
2567
|
+
readonly worker: "worker";
|
|
2485
2568
|
};
|
|
2486
2569
|
|
|
2487
2570
|
/**
|
|
@@ -2491,20 +2574,29 @@ type ScheduleRule = {
|
|
|
2491
2574
|
* OpenAPI spec version: 1.0.0
|
|
2492
2575
|
*/
|
|
2493
2576
|
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
/**
|
|
2498
|
-
|
|
2577
|
+
interface Inbox {
|
|
2578
|
+
id: string;
|
|
2579
|
+
name: string;
|
|
2580
|
+
/** Mail sent to the test address runs the worker's test version instead of its live one. */
|
|
2581
|
+
addresses: InboxAddresses;
|
|
2499
2582
|
/**
|
|
2500
|
-
*
|
|
2501
|
-
* @
|
|
2502
|
-
* @maxLength 200
|
|
2583
|
+
* Deprecated. Use addresses.live instead.
|
|
2584
|
+
* @deprecated
|
|
2503
2585
|
*/
|
|
2504
|
-
|
|
2505
|
-
/**
|
|
2506
|
-
|
|
2507
|
-
|
|
2586
|
+
email_address: string;
|
|
2587
|
+
/**
|
|
2588
|
+
* Deprecated. Use processor_id instead.
|
|
2589
|
+
* @deprecated
|
|
2590
|
+
*/
|
|
2591
|
+
extractor_id: string;
|
|
2592
|
+
processor_id: string;
|
|
2593
|
+
processor_type: InboxProcessorType;
|
|
2594
|
+
has_password: boolean;
|
|
2595
|
+
pdf_splitting_enabled: boolean;
|
|
2596
|
+
allowed_sender_domains: string[] | null;
|
|
2597
|
+
created_at: string;
|
|
2598
|
+
updated_at: string;
|
|
2599
|
+
}
|
|
2508
2600
|
|
|
2509
2601
|
/**
|
|
2510
2602
|
* Generated by orval 🍺
|
|
@@ -2512,17 +2604,11 @@ type CreateScheduleBody = {
|
|
|
2512
2604
|
* Avallon API
|
|
2513
2605
|
* OpenAPI spec version: 1.0.0
|
|
2514
2606
|
*/
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
worker_id: string;
|
|
2521
|
-
/** Scope of the runs this schedule creates. Omit or send null to run without artifacts. */
|
|
2522
|
-
scope?: {
|
|
2523
|
-
[key: string]: string | number | boolean | null;
|
|
2524
|
-
} | null;
|
|
2525
|
-
};
|
|
2607
|
+
|
|
2608
|
+
interface CreateInboxEnvelope {
|
|
2609
|
+
data: Inbox;
|
|
2610
|
+
message: string;
|
|
2611
|
+
}
|
|
2526
2612
|
|
|
2527
2613
|
/**
|
|
2528
2614
|
* Generated by orval 🍺
|
|
@@ -2530,8 +2616,8 @@ type ScheduleActionOutput = {
|
|
|
2530
2616
|
* Avallon API
|
|
2531
2617
|
* OpenAPI spec version: 1.0.0
|
|
2532
2618
|
*/
|
|
2533
|
-
type
|
|
2534
|
-
declare const
|
|
2619
|
+
type CreateInboxWebhookBodyEnvironmentsItem = (typeof CreateInboxWebhookBodyEnvironmentsItem)[keyof typeof CreateInboxWebhookBodyEnvironmentsItem];
|
|
2620
|
+
declare const CreateInboxWebhookBodyEnvironmentsItem: {
|
|
2535
2621
|
readonly live: "live";
|
|
2536
2622
|
readonly test: "test";
|
|
2537
2623
|
};
|
|
@@ -2542,12 +2628,317 @@ declare const ScheduleEnvironmentsItem: {
|
|
|
2542
2628
|
* Avallon API
|
|
2543
2629
|
* OpenAPI spec version: 1.0.0
|
|
2544
2630
|
*/
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
*/
|
|
2548
|
-
interface RecurrencePatternOutput {
|
|
2631
|
+
|
|
2632
|
+
type CreateInboxWebhookBody = {
|
|
2549
2633
|
/**
|
|
2550
|
-
*
|
|
2634
|
+
* @minLength 1
|
|
2635
|
+
* @maxLength 256
|
|
2636
|
+
*/
|
|
2637
|
+
name: string;
|
|
2638
|
+
/** @maxLength 2048 */
|
|
2639
|
+
url: string;
|
|
2640
|
+
/** @minItems 1 */
|
|
2641
|
+
environments?: CreateInboxWebhookBodyEnvironmentsItem[];
|
|
2642
|
+
auth_header_name?: string | null;
|
|
2643
|
+
auth_header_value?: string | null;
|
|
2644
|
+
enabled?: boolean;
|
|
2645
|
+
};
|
|
2646
|
+
|
|
2647
|
+
/**
|
|
2648
|
+
* Generated by orval 🍺
|
|
2649
|
+
* Do not edit manually.
|
|
2650
|
+
* Avallon API
|
|
2651
|
+
* OpenAPI spec version: 1.0.0
|
|
2652
|
+
*/
|
|
2653
|
+
|
|
2654
|
+
interface CreateInboxWebhookEnvelope {
|
|
2655
|
+
data: Webhook;
|
|
2656
|
+
message: string;
|
|
2657
|
+
}
|
|
2658
|
+
|
|
2659
|
+
/**
|
|
2660
|
+
* Generated by orval 🍺
|
|
2661
|
+
* Do not edit manually.
|
|
2662
|
+
* Avallon API
|
|
2663
|
+
* OpenAPI spec version: 1.0.0
|
|
2664
|
+
*/
|
|
2665
|
+
/**
|
|
2666
|
+
* Context to store alongside the question, for whoever picks it up.
|
|
2667
|
+
*/
|
|
2668
|
+
type CreateInformationRequestBodyMetadata = {
|
|
2669
|
+
[key: string]: unknown;
|
|
2670
|
+
};
|
|
2671
|
+
|
|
2672
|
+
/**
|
|
2673
|
+
* Generated by orval 🍺
|
|
2674
|
+
* Do not edit manually.
|
|
2675
|
+
* Avallon API
|
|
2676
|
+
* OpenAPI spec version: 1.0.0
|
|
2677
|
+
*/
|
|
2678
|
+
|
|
2679
|
+
type CreateInformationRequestBody = {
|
|
2680
|
+
/**
|
|
2681
|
+
* A short label for the question, so somebody scanning a queue of open requests can tell yours apart. Name what it is about, not what you need — no trailing punctuation.
|
|
2682
|
+
* @minLength 1
|
|
2683
|
+
* @maxLength 120
|
|
2684
|
+
*/
|
|
2685
|
+
title: string;
|
|
2686
|
+
/**
|
|
2687
|
+
* The single fact you need, as one question. Write it for a person who is not watching this run: say what you were doing, what you could not determine, and what would let you continue.
|
|
2688
|
+
* @minLength 1
|
|
2689
|
+
* @maxLength 2000
|
|
2690
|
+
*/
|
|
2691
|
+
question: string;
|
|
2692
|
+
/** Context to store alongside the question, for whoever picks it up. */
|
|
2693
|
+
metadata?: CreateInformationRequestBodyMetadata;
|
|
2694
|
+
};
|
|
2695
|
+
|
|
2696
|
+
/**
|
|
2697
|
+
* Generated by orval 🍺
|
|
2698
|
+
* Do not edit manually.
|
|
2699
|
+
* Avallon API
|
|
2700
|
+
* OpenAPI spec version: 1.0.0
|
|
2701
|
+
*/
|
|
2702
|
+
type InformationRequestEnvironment = (typeof InformationRequestEnvironment)[keyof typeof InformationRequestEnvironment];
|
|
2703
|
+
declare const InformationRequestEnvironment: {
|
|
2704
|
+
readonly live: "live";
|
|
2705
|
+
readonly test: "test";
|
|
2706
|
+
};
|
|
2707
|
+
|
|
2708
|
+
/**
|
|
2709
|
+
* Generated by orval 🍺
|
|
2710
|
+
* Do not edit manually.
|
|
2711
|
+
* Avallon API
|
|
2712
|
+
* OpenAPI spec version: 1.0.0
|
|
2713
|
+
*/
|
|
2714
|
+
type InformationRequestMetadata = {
|
|
2715
|
+
[key: string]: unknown;
|
|
2716
|
+
};
|
|
2717
|
+
|
|
2718
|
+
/**
|
|
2719
|
+
* Generated by orval 🍺
|
|
2720
|
+
* Do not edit manually.
|
|
2721
|
+
* Avallon API
|
|
2722
|
+
* OpenAPI spec version: 1.0.0
|
|
2723
|
+
*/
|
|
2724
|
+
|
|
2725
|
+
interface InformationRequest {
|
|
2726
|
+
id: string;
|
|
2727
|
+
/** Short label the asker gave the question */
|
|
2728
|
+
title: string;
|
|
2729
|
+
/** What the asker needs to know */
|
|
2730
|
+
question: string;
|
|
2731
|
+
/** Null while the request is open */
|
|
2732
|
+
resolution: string | null;
|
|
2733
|
+
resolved_by: string | null;
|
|
2734
|
+
resolved_at: string | null;
|
|
2735
|
+
metadata: InformationRequestMetadata;
|
|
2736
|
+
environment: InformationRequestEnvironment;
|
|
2737
|
+
/** Actor that raised the request */
|
|
2738
|
+
created_by: string;
|
|
2739
|
+
created_at: string;
|
|
2740
|
+
}
|
|
2741
|
+
|
|
2742
|
+
/**
|
|
2743
|
+
* Generated by orval 🍺
|
|
2744
|
+
* Do not edit manually.
|
|
2745
|
+
* Avallon API
|
|
2746
|
+
* OpenAPI spec version: 1.0.0
|
|
2747
|
+
*/
|
|
2748
|
+
|
|
2749
|
+
interface CreateInformationRequestEnvelope {
|
|
2750
|
+
data: InformationRequest;
|
|
2751
|
+
message: string;
|
|
2752
|
+
}
|
|
2753
|
+
|
|
2754
|
+
/**
|
|
2755
|
+
* Generated by orval 🍺
|
|
2756
|
+
* Do not edit manually.
|
|
2757
|
+
* Avallon API
|
|
2758
|
+
* OpenAPI spec version: 1.0.0
|
|
2759
|
+
*/
|
|
2760
|
+
type CreateNotificationWebhookBodyEnvironmentsItem = (typeof CreateNotificationWebhookBodyEnvironmentsItem)[keyof typeof CreateNotificationWebhookBodyEnvironmentsItem];
|
|
2761
|
+
declare const CreateNotificationWebhookBodyEnvironmentsItem: {
|
|
2762
|
+
readonly live: "live";
|
|
2763
|
+
readonly test: "test";
|
|
2764
|
+
};
|
|
2765
|
+
|
|
2766
|
+
/**
|
|
2767
|
+
* Generated by orval 🍺
|
|
2768
|
+
* Do not edit manually.
|
|
2769
|
+
* Avallon API
|
|
2770
|
+
* OpenAPI spec version: 1.0.0
|
|
2771
|
+
*/
|
|
2772
|
+
|
|
2773
|
+
type CreateNotificationWebhookBody = {
|
|
2774
|
+
/**
|
|
2775
|
+
* @minLength 1
|
|
2776
|
+
* @maxLength 256
|
|
2777
|
+
*/
|
|
2778
|
+
name: string;
|
|
2779
|
+
/** @maxLength 2048 */
|
|
2780
|
+
url: string;
|
|
2781
|
+
/** @minItems 1 */
|
|
2782
|
+
environments?: CreateNotificationWebhookBodyEnvironmentsItem[];
|
|
2783
|
+
auth_header_name?: string | null;
|
|
2784
|
+
auth_header_value?: string | null;
|
|
2785
|
+
enabled?: boolean;
|
|
2786
|
+
};
|
|
2787
|
+
|
|
2788
|
+
/**
|
|
2789
|
+
* Generated by orval 🍺
|
|
2790
|
+
* Do not edit manually.
|
|
2791
|
+
* Avallon API
|
|
2792
|
+
* OpenAPI spec version: 1.0.0
|
|
2793
|
+
*/
|
|
2794
|
+
|
|
2795
|
+
interface CreateNotificationWebhookEnvelope {
|
|
2796
|
+
data: Webhook;
|
|
2797
|
+
message: string;
|
|
2798
|
+
}
|
|
2799
|
+
|
|
2800
|
+
/**
|
|
2801
|
+
* Generated by orval 🍺
|
|
2802
|
+
* Do not edit manually.
|
|
2803
|
+
* Avallon API
|
|
2804
|
+
* OpenAPI spec version: 1.0.0
|
|
2805
|
+
*/
|
|
2806
|
+
type CreateScheduleBodyEnvironmentsItem = (typeof CreateScheduleBodyEnvironmentsItem)[keyof typeof CreateScheduleBodyEnvironmentsItem];
|
|
2807
|
+
declare const CreateScheduleBodyEnvironmentsItem: {
|
|
2808
|
+
readonly live: "live";
|
|
2809
|
+
readonly test: "test";
|
|
2810
|
+
};
|
|
2811
|
+
|
|
2812
|
+
/**
|
|
2813
|
+
* Generated by orval 🍺
|
|
2814
|
+
* Do not edit manually.
|
|
2815
|
+
* Avallon API
|
|
2816
|
+
* OpenAPI spec version: 1.0.0
|
|
2817
|
+
*/
|
|
2818
|
+
/**
|
|
2819
|
+
* What the schedule does every time it fires
|
|
2820
|
+
*/
|
|
2821
|
+
type ScheduleAction = {
|
|
2822
|
+
type: "trigger_worker";
|
|
2823
|
+
worker_id: string;
|
|
2824
|
+
/** Scope of the runs this schedule creates. Omit or send null to run without artifacts. */
|
|
2825
|
+
scope?: {
|
|
2826
|
+
[key: string]: string | number | boolean | null;
|
|
2827
|
+
} | null;
|
|
2828
|
+
};
|
|
2829
|
+
|
|
2830
|
+
/**
|
|
2831
|
+
* Generated by orval 🍺
|
|
2832
|
+
* Do not edit manually.
|
|
2833
|
+
* Avallon API
|
|
2834
|
+
* OpenAPI spec version: 1.0.0
|
|
2835
|
+
*/
|
|
2836
|
+
/**
|
|
2837
|
+
* One set of local times a schedule fires at
|
|
2838
|
+
*/
|
|
2839
|
+
interface RecurrencePattern {
|
|
2840
|
+
/**
|
|
2841
|
+
* Minute, 0-59
|
|
2842
|
+
* @minimum 0
|
|
2843
|
+
* @maximum 59
|
|
2844
|
+
*/
|
|
2845
|
+
minute: number;
|
|
2846
|
+
/** Local hours the pattern may fire in. Omit or send null to fire every hour. */
|
|
2847
|
+
hours?: number[] | null;
|
|
2848
|
+
/** Local ISO-8601 weekdays the pattern may fire on. Omit or send null to fire every day. */
|
|
2849
|
+
weekdays?: number[] | null;
|
|
2850
|
+
}
|
|
2851
|
+
|
|
2852
|
+
/**
|
|
2853
|
+
* Generated by orval 🍺
|
|
2854
|
+
* Do not edit manually.
|
|
2855
|
+
* Avallon API
|
|
2856
|
+
* OpenAPI spec version: 1.0.0
|
|
2857
|
+
*/
|
|
2858
|
+
|
|
2859
|
+
/**
|
|
2860
|
+
* When the schedule fires
|
|
2861
|
+
*/
|
|
2862
|
+
type ScheduleRule = {
|
|
2863
|
+
type: "once";
|
|
2864
|
+
/** The moment it fires, in UTC, e.g. "2026-09-01T14:00:00Z" */
|
|
2865
|
+
at: string;
|
|
2866
|
+
} | {
|
|
2867
|
+
type: "recurring";
|
|
2868
|
+
/** IANA time zone identifier, e.g. "America/Chicago" */
|
|
2869
|
+
timezone: string;
|
|
2870
|
+
/**
|
|
2871
|
+
* The schedule fires whenever any of these patterns comes round, all read in the rule's time zone.
|
|
2872
|
+
* @minItems 1
|
|
2873
|
+
* @maxItems 10
|
|
2874
|
+
*/
|
|
2875
|
+
patterns: RecurrencePattern[];
|
|
2876
|
+
};
|
|
2877
|
+
|
|
2878
|
+
/**
|
|
2879
|
+
* Generated by orval 🍺
|
|
2880
|
+
* Do not edit manually.
|
|
2881
|
+
* Avallon API
|
|
2882
|
+
* OpenAPI spec version: 1.0.0
|
|
2883
|
+
*/
|
|
2884
|
+
|
|
2885
|
+
type CreateScheduleBody = {
|
|
2886
|
+
action: ScheduleAction;
|
|
2887
|
+
rule: ScheduleRule;
|
|
2888
|
+
/** Environments the schedule fires in. `live` resolves the worker at its live version, `test` at its test version. Listing both fires every occurrence twice, once per version. */
|
|
2889
|
+
environments?: CreateScheduleBodyEnvironmentsItem[];
|
|
2890
|
+
/**
|
|
2891
|
+
* Human-readable name, e.g. "Nightly claim sweep"
|
|
2892
|
+
* @minLength 1
|
|
2893
|
+
* @maxLength 200
|
|
2894
|
+
*/
|
|
2895
|
+
name?: string;
|
|
2896
|
+
/** Whether the schedule starts firing right away. Defaults to true. Must be omitted or true for `once` rules. */
|
|
2897
|
+
enabled?: boolean;
|
|
2898
|
+
};
|
|
2899
|
+
|
|
2900
|
+
/**
|
|
2901
|
+
* Generated by orval 🍺
|
|
2902
|
+
* Do not edit manually.
|
|
2903
|
+
* Avallon API
|
|
2904
|
+
* OpenAPI spec version: 1.0.0
|
|
2905
|
+
*/
|
|
2906
|
+
/**
|
|
2907
|
+
* What the schedule does every time it fires
|
|
2908
|
+
*/
|
|
2909
|
+
type ScheduleActionOutput = {
|
|
2910
|
+
type: "trigger_worker";
|
|
2911
|
+
worker_id: string;
|
|
2912
|
+
/** Scope of the runs this schedule creates. Omit or send null to run without artifacts. */
|
|
2913
|
+
scope?: {
|
|
2914
|
+
[key: string]: string | number | boolean | null;
|
|
2915
|
+
} | null;
|
|
2916
|
+
};
|
|
2917
|
+
|
|
2918
|
+
/**
|
|
2919
|
+
* Generated by orval 🍺
|
|
2920
|
+
* Do not edit manually.
|
|
2921
|
+
* Avallon API
|
|
2922
|
+
* OpenAPI spec version: 1.0.0
|
|
2923
|
+
*/
|
|
2924
|
+
type ScheduleEnvironmentsItem = (typeof ScheduleEnvironmentsItem)[keyof typeof ScheduleEnvironmentsItem];
|
|
2925
|
+
declare const ScheduleEnvironmentsItem: {
|
|
2926
|
+
readonly live: "live";
|
|
2927
|
+
readonly test: "test";
|
|
2928
|
+
};
|
|
2929
|
+
|
|
2930
|
+
/**
|
|
2931
|
+
* Generated by orval 🍺
|
|
2932
|
+
* Do not edit manually.
|
|
2933
|
+
* Avallon API
|
|
2934
|
+
* OpenAPI spec version: 1.0.0
|
|
2935
|
+
*/
|
|
2936
|
+
/**
|
|
2937
|
+
* One set of local times a schedule fires at
|
|
2938
|
+
*/
|
|
2939
|
+
interface RecurrencePatternOutput {
|
|
2940
|
+
/**
|
|
2941
|
+
* Minute, 0-59
|
|
2551
2942
|
* @minimum 0
|
|
2552
2943
|
* @maximum 59
|
|
2553
2944
|
*/
|
|
@@ -3341,6 +3732,15 @@ interface CreateWorkerEnvelope {
|
|
|
3341
3732
|
* OpenAPI spec version: 1.0.0
|
|
3342
3733
|
*/
|
|
3343
3734
|
type CreateWorkerEvalFromRunBodyGrader = {
|
|
3735
|
+
type: "prompt";
|
|
3736
|
+
/**
|
|
3737
|
+
* @minItems 1
|
|
3738
|
+
* @maxItems 50
|
|
3739
|
+
* @items.minLength 1
|
|
3740
|
+
* @items.maxLength 2000
|
|
3741
|
+
*/
|
|
3742
|
+
assertions: string[];
|
|
3743
|
+
} | {
|
|
3344
3744
|
type: "prompt";
|
|
3345
3745
|
/**
|
|
3346
3746
|
* @minLength 1
|
|
@@ -3398,6 +3798,8 @@ type CreateWorkerEvalFromRunEnvelopeDataFixture = {
|
|
|
3398
3798
|
*/
|
|
3399
3799
|
type CreateWorkerEvalFromRunEnvelopeDataGrader = {
|
|
3400
3800
|
type: "prompt";
|
|
3801
|
+
assertions: string[];
|
|
3802
|
+
/** Deprecated: assertions joined by newlines. Use assertions. */
|
|
3401
3803
|
criterion: string;
|
|
3402
3804
|
};
|
|
3403
3805
|
|
|
@@ -4468,7 +4870,270 @@ interface ExtractSummary {
|
|
|
4468
4870
|
* OpenAPI spec version: 1.0.0
|
|
4469
4871
|
*/
|
|
4470
4872
|
|
|
4471
|
-
type ExtractList = ExtractSummary[];
|
|
4873
|
+
type ExtractList = ExtractSummary[];
|
|
4874
|
+
|
|
4875
|
+
/**
|
|
4876
|
+
* Generated by orval 🍺
|
|
4877
|
+
* Do not edit manually.
|
|
4878
|
+
* Avallon API
|
|
4879
|
+
* OpenAPI spec version: 1.0.0
|
|
4880
|
+
*/
|
|
4881
|
+
type ExtractorSchema = {
|
|
4882
|
+
[key: string]: unknown;
|
|
4883
|
+
};
|
|
4884
|
+
|
|
4885
|
+
/**
|
|
4886
|
+
* Generated by orval 🍺
|
|
4887
|
+
* Do not edit manually.
|
|
4888
|
+
* Avallon API
|
|
4889
|
+
* OpenAPI spec version: 1.0.0
|
|
4890
|
+
*/
|
|
4891
|
+
|
|
4892
|
+
interface Extractor {
|
|
4893
|
+
id: string;
|
|
4894
|
+
name: string;
|
|
4895
|
+
version: number;
|
|
4896
|
+
schema: ExtractorSchema;
|
|
4897
|
+
created_at: string;
|
|
4898
|
+
updated_at: string;
|
|
4899
|
+
}
|
|
4900
|
+
|
|
4901
|
+
/**
|
|
4902
|
+
* Generated by orval 🍺
|
|
4903
|
+
* Do not edit manually.
|
|
4904
|
+
* Avallon API
|
|
4905
|
+
* OpenAPI spec version: 1.0.0
|
|
4906
|
+
*/
|
|
4907
|
+
/**
|
|
4908
|
+
* Job scope metadata (e.g. claim_id, email_id)
|
|
4909
|
+
*/
|
|
4910
|
+
type ExtractorJobScope = {
|
|
4911
|
+
[key: string]: unknown;
|
|
4912
|
+
};
|
|
4913
|
+
|
|
4914
|
+
/**
|
|
4915
|
+
* Generated by orval 🍺
|
|
4916
|
+
* Do not edit manually.
|
|
4917
|
+
* Avallon API
|
|
4918
|
+
* OpenAPI spec version: 1.0.0
|
|
4919
|
+
*/
|
|
4920
|
+
|
|
4921
|
+
interface ExtractorJob {
|
|
4922
|
+
/** Unique job identifier */
|
|
4923
|
+
id: string;
|
|
4924
|
+
/** ID of the extractor that created this job */
|
|
4925
|
+
extractor_id: string;
|
|
4926
|
+
/**
|
|
4927
|
+
* Version of the extractor at job creation time
|
|
4928
|
+
* @minimum -9007199254740991
|
|
4929
|
+
* @maximum 9007199254740991
|
|
4930
|
+
*/
|
|
4931
|
+
extractor_version: number;
|
|
4932
|
+
/** Name of the extractor */
|
|
4933
|
+
extractor_name: string;
|
|
4934
|
+
/** Current job status */
|
|
4935
|
+
status: string;
|
|
4936
|
+
/** Job scope metadata (e.g. claim_id, email_id) */
|
|
4937
|
+
scope: ExtractorJobScope;
|
|
4938
|
+
/** ISO 8601 timestamp when the job was created */
|
|
4939
|
+
created_at: string;
|
|
4940
|
+
/** ISO 8601 timestamp when processing started */
|
|
4941
|
+
started_at: string | null;
|
|
4942
|
+
/** ISO 8601 timestamp when processing finished */
|
|
4943
|
+
completed_at: string | null;
|
|
4944
|
+
/** Processing duration in milliseconds */
|
|
4945
|
+
processing_duration_ms: number | null;
|
|
4946
|
+
/** ID of the resulting extract, if completed */
|
|
4947
|
+
extract_id: string | null;
|
|
4948
|
+
error: string | null;
|
|
4949
|
+
}
|
|
4950
|
+
|
|
4951
|
+
/**
|
|
4952
|
+
* Generated by orval 🍺
|
|
4953
|
+
* Do not edit manually.
|
|
4954
|
+
* Avallon API
|
|
4955
|
+
* OpenAPI spec version: 1.0.0
|
|
4956
|
+
*/
|
|
4957
|
+
type ExtractorJobDetailScope = {
|
|
4958
|
+
[key: string]: unknown;
|
|
4959
|
+
};
|
|
4960
|
+
|
|
4961
|
+
/**
|
|
4962
|
+
* Generated by orval 🍺
|
|
4963
|
+
* Do not edit manually.
|
|
4964
|
+
* Avallon API
|
|
4965
|
+
* OpenAPI spec version: 1.0.0
|
|
4966
|
+
*/
|
|
4967
|
+
|
|
4968
|
+
interface ExtractorJobDetail {
|
|
4969
|
+
id: string;
|
|
4970
|
+
extractor_id: string;
|
|
4971
|
+
extractor_version: number;
|
|
4972
|
+
extractor_name: string;
|
|
4973
|
+
status: string;
|
|
4974
|
+
scope: ExtractorJobDetailScope;
|
|
4975
|
+
created_at: string;
|
|
4976
|
+
started_at: string | null;
|
|
4977
|
+
completed_at: string | null;
|
|
4978
|
+
processing_duration_ms: number | null;
|
|
4979
|
+
extract_id: string | null;
|
|
4980
|
+
error: string | null;
|
|
4981
|
+
}
|
|
4982
|
+
|
|
4983
|
+
/**
|
|
4984
|
+
* Generated by orval 🍺
|
|
4985
|
+
* Do not edit manually.
|
|
4986
|
+
* Avallon API
|
|
4987
|
+
* OpenAPI spec version: 1.0.0
|
|
4988
|
+
*/
|
|
4989
|
+
|
|
4990
|
+
type ExtractorJobList = ExtractorJob[];
|
|
4991
|
+
|
|
4992
|
+
/**
|
|
4993
|
+
* Generated by orval 🍺
|
|
4994
|
+
* Do not edit manually.
|
|
4995
|
+
* Avallon API
|
|
4996
|
+
* OpenAPI spec version: 1.0.0
|
|
4997
|
+
*/
|
|
4998
|
+
interface ExtractorSummary {
|
|
4999
|
+
id: string;
|
|
5000
|
+
name: string;
|
|
5001
|
+
version: number;
|
|
5002
|
+
created_at: string;
|
|
5003
|
+
updated_at: string;
|
|
5004
|
+
}
|
|
5005
|
+
|
|
5006
|
+
/**
|
|
5007
|
+
* Generated by orval 🍺
|
|
5008
|
+
* Do not edit manually.
|
|
5009
|
+
* Avallon API
|
|
5010
|
+
* OpenAPI spec version: 1.0.0
|
|
5011
|
+
*/
|
|
5012
|
+
|
|
5013
|
+
type ExtractorList = ExtractorSummary[];
|
|
5014
|
+
|
|
5015
|
+
/**
|
|
5016
|
+
* Generated by orval 🍺
|
|
5017
|
+
* Do not edit manually.
|
|
5018
|
+
* Avallon API
|
|
5019
|
+
* OpenAPI spec version: 1.0.0
|
|
5020
|
+
*/
|
|
5021
|
+
type ExtractorUpdatedSchema = {
|
|
5022
|
+
[key: string]: unknown;
|
|
5023
|
+
};
|
|
5024
|
+
|
|
5025
|
+
/**
|
|
5026
|
+
* Generated by orval 🍺
|
|
5027
|
+
* Do not edit manually.
|
|
5028
|
+
* Avallon API
|
|
5029
|
+
* OpenAPI spec version: 1.0.0
|
|
5030
|
+
*/
|
|
5031
|
+
|
|
5032
|
+
interface ExtractorUpdated {
|
|
5033
|
+
id: string;
|
|
5034
|
+
name: string;
|
|
5035
|
+
version: number;
|
|
5036
|
+
schema: ExtractorUpdatedSchema;
|
|
5037
|
+
created_at: string;
|
|
5038
|
+
}
|
|
5039
|
+
|
|
5040
|
+
/**
|
|
5041
|
+
* Generated by orval 🍺
|
|
5042
|
+
* Do not edit manually.
|
|
5043
|
+
* Avallon API
|
|
5044
|
+
* OpenAPI spec version: 1.0.0
|
|
5045
|
+
*/
|
|
5046
|
+
|
|
5047
|
+
type ExtractorWebhookList = Webhook[];
|
|
5048
|
+
|
|
5049
|
+
/**
|
|
5050
|
+
* Generated by orval 🍺
|
|
5051
|
+
* Do not edit manually.
|
|
5052
|
+
* Avallon API
|
|
5053
|
+
* OpenAPI spec version: 1.0.0
|
|
5054
|
+
*/
|
|
5055
|
+
|
|
5056
|
+
interface GetAnalyticsTimeSeriesEnvelope {
|
|
5057
|
+
data: AnalyticsTimeSeries[];
|
|
5058
|
+
message: string;
|
|
5059
|
+
}
|
|
5060
|
+
|
|
5061
|
+
/**
|
|
5062
|
+
* Generated by orval 🍺
|
|
5063
|
+
* Do not edit manually.
|
|
5064
|
+
* Avallon API
|
|
5065
|
+
* OpenAPI spec version: 1.0.0
|
|
5066
|
+
*/
|
|
5067
|
+
type GetAnalyticsTimeSeriesGranularity = (typeof GetAnalyticsTimeSeriesGranularity)[keyof typeof GetAnalyticsTimeSeriesGranularity];
|
|
5068
|
+
declare const GetAnalyticsTimeSeriesGranularity: {
|
|
5069
|
+
readonly day: "day";
|
|
5070
|
+
readonly week: "week";
|
|
5071
|
+
readonly month: "month";
|
|
5072
|
+
};
|
|
5073
|
+
|
|
5074
|
+
/**
|
|
5075
|
+
* Generated by orval 🍺
|
|
5076
|
+
* Do not edit manually.
|
|
5077
|
+
* Avallon API
|
|
5078
|
+
* OpenAPI spec version: 1.0.0
|
|
5079
|
+
*/
|
|
5080
|
+
type GetAnalyticsTimeSeriesGroupBy = (typeof GetAnalyticsTimeSeriesGroupBy)[keyof typeof GetAnalyticsTimeSeriesGroupBy];
|
|
5081
|
+
declare const GetAnalyticsTimeSeriesGroupBy: {
|
|
5082
|
+
readonly worker_id: "worker_id";
|
|
5083
|
+
};
|
|
5084
|
+
|
|
5085
|
+
/**
|
|
5086
|
+
* Generated by orval 🍺
|
|
5087
|
+
* Do not edit manually.
|
|
5088
|
+
* Avallon API
|
|
5089
|
+
* OpenAPI spec version: 1.0.0
|
|
5090
|
+
*/
|
|
5091
|
+
type GetAnalyticsTimeSeriesMetric = (typeof GetAnalyticsTimeSeriesMetric)[keyof typeof GetAnalyticsTimeSeriesMetric];
|
|
5092
|
+
declare const GetAnalyticsTimeSeriesMetric: {
|
|
5093
|
+
readonly worker_runs: "worker_runs";
|
|
5094
|
+
readonly documents: "documents";
|
|
5095
|
+
readonly pages: "pages";
|
|
5096
|
+
};
|
|
5097
|
+
|
|
5098
|
+
/**
|
|
5099
|
+
* Generated by orval 🍺
|
|
5100
|
+
* Do not edit manually.
|
|
5101
|
+
* Avallon API
|
|
5102
|
+
* OpenAPI spec version: 1.0.0
|
|
5103
|
+
*/
|
|
5104
|
+
|
|
5105
|
+
type GetAnalyticsTimeSeriesParams = {
|
|
5106
|
+
metric: GetAnalyticsTimeSeriesMetric;
|
|
5107
|
+
from: string;
|
|
5108
|
+
to: string;
|
|
5109
|
+
granularity?: GetAnalyticsTimeSeriesGranularity;
|
|
5110
|
+
group_by?: GetAnalyticsTimeSeriesGroupBy;
|
|
5111
|
+
timezone?: string;
|
|
5112
|
+
};
|
|
5113
|
+
|
|
5114
|
+
/**
|
|
5115
|
+
* Generated by orval 🍺
|
|
5116
|
+
* Do not edit manually.
|
|
5117
|
+
* Avallon API
|
|
5118
|
+
* OpenAPI spec version: 1.0.0
|
|
5119
|
+
*/
|
|
5120
|
+
|
|
5121
|
+
interface GetArtifactEnvelope {
|
|
5122
|
+
data: ArtifactDetail;
|
|
5123
|
+
message: string;
|
|
5124
|
+
}
|
|
5125
|
+
|
|
5126
|
+
/**
|
|
5127
|
+
* Generated by orval 🍺
|
|
5128
|
+
* Do not edit manually.
|
|
5129
|
+
* Avallon API
|
|
5130
|
+
* OpenAPI spec version: 1.0.0
|
|
5131
|
+
*/
|
|
5132
|
+
|
|
5133
|
+
interface GetArtifactMetadataKeysEnvelope {
|
|
5134
|
+
data: ArtifactMetadataKeys;
|
|
5135
|
+
message: string;
|
|
5136
|
+
}
|
|
4472
5137
|
|
|
4473
5138
|
/**
|
|
4474
5139
|
* Generated by orval 🍺
|
|
@@ -4476,8 +5141,12 @@ type ExtractList = ExtractSummary[];
|
|
|
4476
5141
|
* Avallon API
|
|
4477
5142
|
* OpenAPI spec version: 1.0.0
|
|
4478
5143
|
*/
|
|
4479
|
-
type
|
|
4480
|
-
|
|
5144
|
+
type GetArtifactMetadataKeysParams = {
|
|
5145
|
+
/**
|
|
5146
|
+
* @minimum 1
|
|
5147
|
+
* @maximum 500
|
|
5148
|
+
*/
|
|
5149
|
+
limit?: number;
|
|
4481
5150
|
};
|
|
4482
5151
|
|
|
4483
5152
|
/**
|
|
@@ -4487,13 +5156,9 @@ type ExtractorSchema = {
|
|
|
4487
5156
|
* OpenAPI spec version: 1.0.0
|
|
4488
5157
|
*/
|
|
4489
5158
|
|
|
4490
|
-
interface
|
|
4491
|
-
|
|
4492
|
-
|
|
4493
|
-
version: number;
|
|
4494
|
-
schema: ExtractorSchema;
|
|
4495
|
-
created_at: string;
|
|
4496
|
-
updated_at: string;
|
|
5159
|
+
interface GetArtifactStatusSummaryEnvelope {
|
|
5160
|
+
data: ArtifactStatusSummary;
|
|
5161
|
+
message: string;
|
|
4497
5162
|
}
|
|
4498
5163
|
|
|
4499
5164
|
/**
|
|
@@ -4502,11 +5167,13 @@ interface Extractor {
|
|
|
4502
5167
|
* Avallon API
|
|
4503
5168
|
* OpenAPI spec version: 1.0.0
|
|
4504
5169
|
*/
|
|
4505
|
-
|
|
4506
|
-
|
|
4507
|
-
|
|
4508
|
-
|
|
4509
|
-
|
|
5170
|
+
type GetArtifactStatusSummaryParams = {
|
|
5171
|
+
/**
|
|
5172
|
+
* Scope to summarize, using bracket notation (e.g. scope[email_id]=abc-123). At least one key is required. Multiple keys are combined with AND logic.
|
|
5173
|
+
*/
|
|
5174
|
+
scope: {
|
|
5175
|
+
[key: string]: string;
|
|
5176
|
+
};
|
|
4510
5177
|
};
|
|
4511
5178
|
|
|
4512
5179
|
/**
|
|
@@ -4515,36 +5182,10 @@ type ExtractorJobScope = {
|
|
|
4515
5182
|
* Avallon API
|
|
4516
5183
|
* OpenAPI spec version: 1.0.0
|
|
4517
5184
|
*/
|
|
4518
|
-
|
|
4519
|
-
|
|
4520
|
-
|
|
4521
|
-
|
|
4522
|
-
/** ID of the extractor that created this job */
|
|
4523
|
-
extractor_id: string;
|
|
4524
|
-
/**
|
|
4525
|
-
* Version of the extractor at job creation time
|
|
4526
|
-
* @minimum -9007199254740991
|
|
4527
|
-
* @maximum 9007199254740991
|
|
4528
|
-
*/
|
|
4529
|
-
extractor_version: number;
|
|
4530
|
-
/** Name of the extractor */
|
|
4531
|
-
extractor_name: string;
|
|
4532
|
-
/** Current job status */
|
|
4533
|
-
status: string;
|
|
4534
|
-
/** Job scope metadata (e.g. claim_id, email_id) */
|
|
4535
|
-
scope: ExtractorJobScope;
|
|
4536
|
-
/** ISO 8601 timestamp when the job was created */
|
|
4537
|
-
created_at: string;
|
|
4538
|
-
/** ISO 8601 timestamp when processing started */
|
|
4539
|
-
started_at: string | null;
|
|
4540
|
-
/** ISO 8601 timestamp when processing finished */
|
|
4541
|
-
completed_at: string | null;
|
|
4542
|
-
/** Processing duration in milliseconds */
|
|
4543
|
-
processing_duration_ms: number | null;
|
|
4544
|
-
/** ID of the resulting extract, if completed */
|
|
4545
|
-
extract_id: string | null;
|
|
4546
|
-
error: string | null;
|
|
4547
|
-
}
|
|
5185
|
+
type GetArtifactUploadUrlBody = {
|
|
5186
|
+
/** @minLength 1 */
|
|
5187
|
+
filename: string;
|
|
5188
|
+
};
|
|
4548
5189
|
|
|
4549
5190
|
/**
|
|
4550
5191
|
* Generated by orval 🍺
|
|
@@ -4552,8 +5193,10 @@ interface ExtractorJob {
|
|
|
4552
5193
|
* Avallon API
|
|
4553
5194
|
* OpenAPI spec version: 1.0.0
|
|
4554
5195
|
*/
|
|
4555
|
-
type
|
|
4556
|
-
|
|
5196
|
+
type GetArtifactUploadUrlEnvelopeData = {
|
|
5197
|
+
upload_url: string;
|
|
5198
|
+
file_url: string;
|
|
5199
|
+
expires_at: string;
|
|
4557
5200
|
};
|
|
4558
5201
|
|
|
4559
5202
|
/**
|
|
@@ -4563,19 +5206,9 @@ type ExtractorJobDetailScope = {
|
|
|
4563
5206
|
* OpenAPI spec version: 1.0.0
|
|
4564
5207
|
*/
|
|
4565
5208
|
|
|
4566
|
-
interface
|
|
4567
|
-
|
|
4568
|
-
|
|
4569
|
-
extractor_version: number;
|
|
4570
|
-
extractor_name: string;
|
|
4571
|
-
status: string;
|
|
4572
|
-
scope: ExtractorJobDetailScope;
|
|
4573
|
-
created_at: string;
|
|
4574
|
-
started_at: string | null;
|
|
4575
|
-
completed_at: string | null;
|
|
4576
|
-
processing_duration_ms: number | null;
|
|
4577
|
-
extract_id: string | null;
|
|
4578
|
-
error: string | null;
|
|
5209
|
+
interface GetArtifactUploadUrlEnvelope {
|
|
5210
|
+
data: GetArtifactUploadUrlEnvelopeData;
|
|
5211
|
+
message: string;
|
|
4579
5212
|
}
|
|
4580
5213
|
|
|
4581
5214
|
/**
|
|
@@ -4584,8 +5217,23 @@ interface ExtractorJobDetail {
|
|
|
4584
5217
|
* Avallon API
|
|
4585
5218
|
* OpenAPI spec version: 1.0.0
|
|
4586
5219
|
*/
|
|
5220
|
+
type GetBenchmarkEnvelopeDataRunsItemConfiguration = (typeof GetBenchmarkEnvelopeDataRunsItemConfiguration)[keyof typeof GetBenchmarkEnvelopeDataRunsItemConfiguration] | null;
|
|
5221
|
+
declare const GetBenchmarkEnvelopeDataRunsItemConfiguration: {
|
|
5222
|
+
readonly candidate: "candidate";
|
|
5223
|
+
readonly baseline: "baseline";
|
|
5224
|
+
};
|
|
4587
5225
|
|
|
4588
|
-
|
|
5226
|
+
/**
|
|
5227
|
+
* Generated by orval 🍺
|
|
5228
|
+
* Do not edit manually.
|
|
5229
|
+
* Avallon API
|
|
5230
|
+
* OpenAPI spec version: 1.0.0
|
|
5231
|
+
*/
|
|
5232
|
+
type GetBenchmarkEnvelopeDataRunsItemGradingExpectationsItem = {
|
|
5233
|
+
text: string;
|
|
5234
|
+
passed: boolean;
|
|
5235
|
+
evidence: string;
|
|
5236
|
+
};
|
|
4589
5237
|
|
|
4590
5238
|
/**
|
|
4591
5239
|
* Generated by orval 🍺
|
|
@@ -4593,13 +5241,24 @@ type ExtractorJobList = ExtractorJob[];
|
|
|
4593
5241
|
* Avallon API
|
|
4594
5242
|
* OpenAPI spec version: 1.0.0
|
|
4595
5243
|
*/
|
|
4596
|
-
|
|
4597
|
-
|
|
4598
|
-
|
|
4599
|
-
|
|
4600
|
-
|
|
4601
|
-
|
|
4602
|
-
|
|
5244
|
+
type GetBenchmarkEnvelopeDataRunsItemGradingSummary = {
|
|
5245
|
+
/**
|
|
5246
|
+
* @minimum -9007199254740991
|
|
5247
|
+
* @maximum 9007199254740991
|
|
5248
|
+
*/
|
|
5249
|
+
total: number;
|
|
5250
|
+
/**
|
|
5251
|
+
* @minimum -9007199254740991
|
|
5252
|
+
* @maximum 9007199254740991
|
|
5253
|
+
*/
|
|
5254
|
+
passed: number;
|
|
5255
|
+
/**
|
|
5256
|
+
* @minimum -9007199254740991
|
|
5257
|
+
* @maximum 9007199254740991
|
|
5258
|
+
*/
|
|
5259
|
+
failed: number;
|
|
5260
|
+
pass_rate: number;
|
|
5261
|
+
};
|
|
4603
5262
|
|
|
4604
5263
|
/**
|
|
4605
5264
|
* Generated by orval 🍺
|
|
@@ -4608,7 +5267,10 @@ interface ExtractorSummary {
|
|
|
4608
5267
|
* OpenAPI spec version: 1.0.0
|
|
4609
5268
|
*/
|
|
4610
5269
|
|
|
4611
|
-
type
|
|
5270
|
+
type GetBenchmarkEnvelopeDataRunsItemGrading = {
|
|
5271
|
+
expectations: GetBenchmarkEnvelopeDataRunsItemGradingExpectationsItem[];
|
|
5272
|
+
summary: GetBenchmarkEnvelopeDataRunsItemGradingSummary;
|
|
5273
|
+
} | null;
|
|
4612
5274
|
|
|
4613
5275
|
/**
|
|
4614
5276
|
* Generated by orval 🍺
|
|
@@ -4616,8 +5278,33 @@ type ExtractorList = ExtractorSummary[];
|
|
|
4616
5278
|
* Avallon API
|
|
4617
5279
|
* OpenAPI spec version: 1.0.0
|
|
4618
5280
|
*/
|
|
4619
|
-
type
|
|
4620
|
-
|
|
5281
|
+
type GetBenchmarkEnvelopeDataRunsItemMetricsFixtureHealth = {
|
|
5282
|
+
/**
|
|
5283
|
+
* @minimum -9007199254740991
|
|
5284
|
+
* @maximum 9007199254740991
|
|
5285
|
+
*/
|
|
5286
|
+
exact: number;
|
|
5287
|
+
/**
|
|
5288
|
+
* @minimum -9007199254740991
|
|
5289
|
+
* @maximum 9007199254740991
|
|
5290
|
+
*/
|
|
5291
|
+
partial: number;
|
|
5292
|
+
/**
|
|
5293
|
+
* @minimum -9007199254740991
|
|
5294
|
+
* @maximum 9007199254740991
|
|
5295
|
+
*/
|
|
5296
|
+
fifo: number;
|
|
5297
|
+
/**
|
|
5298
|
+
* @minimum -9007199254740991
|
|
5299
|
+
* @maximum 9007199254740991
|
|
5300
|
+
*/
|
|
5301
|
+
default: number;
|
|
5302
|
+
/**
|
|
5303
|
+
* @minimum -9007199254740991
|
|
5304
|
+
* @maximum 9007199254740991
|
|
5305
|
+
*/
|
|
5306
|
+
unavailable: number;
|
|
5307
|
+
matched_rate: number | null;
|
|
4621
5308
|
};
|
|
4622
5309
|
|
|
4623
5310
|
/**
|
|
@@ -4627,13 +5314,15 @@ type ExtractorUpdatedSchema = {
|
|
|
4627
5314
|
* OpenAPI spec version: 1.0.0
|
|
4628
5315
|
*/
|
|
4629
5316
|
|
|
4630
|
-
|
|
4631
|
-
|
|
4632
|
-
|
|
4633
|
-
|
|
4634
|
-
|
|
4635
|
-
|
|
4636
|
-
|
|
5317
|
+
type GetBenchmarkEnvelopeDataRunsItemMetrics = {
|
|
5318
|
+
duration_seconds: number | null;
|
|
5319
|
+
/**
|
|
5320
|
+
* @minimum -9007199254740991
|
|
5321
|
+
* @maximum 9007199254740991
|
|
5322
|
+
*/
|
|
5323
|
+
tool_calls: number;
|
|
5324
|
+
fixture_health: GetBenchmarkEnvelopeDataRunsItemMetricsFixtureHealth;
|
|
5325
|
+
} | null;
|
|
4637
5326
|
|
|
4638
5327
|
/**
|
|
4639
5328
|
* Generated by orval 🍺
|
|
@@ -4641,8 +5330,15 @@ interface ExtractorUpdated {
|
|
|
4641
5330
|
* Avallon API
|
|
4642
5331
|
* OpenAPI spec version: 1.0.0
|
|
4643
5332
|
*/
|
|
4644
|
-
|
|
4645
|
-
|
|
5333
|
+
type GetBenchmarkEnvelopeDataRunsItemStatus = (typeof GetBenchmarkEnvelopeDataRunsItemStatus)[keyof typeof GetBenchmarkEnvelopeDataRunsItemStatus];
|
|
5334
|
+
declare const GetBenchmarkEnvelopeDataRunsItemStatus: {
|
|
5335
|
+
readonly queued: "queued";
|
|
5336
|
+
readonly running: "running";
|
|
5337
|
+
readonly judging: "judging";
|
|
5338
|
+
readonly passed: "passed";
|
|
5339
|
+
readonly failed: "failed";
|
|
5340
|
+
readonly error: "error";
|
|
5341
|
+
};
|
|
4646
5342
|
|
|
4647
5343
|
/**
|
|
4648
5344
|
* Generated by orval 🍺
|
|
@@ -4651,10 +5347,29 @@ type ExtractorWebhookList = Webhook[];
|
|
|
4651
5347
|
* OpenAPI spec version: 1.0.0
|
|
4652
5348
|
*/
|
|
4653
5349
|
|
|
4654
|
-
|
|
4655
|
-
|
|
4656
|
-
|
|
4657
|
-
|
|
5350
|
+
type GetBenchmarkEnvelopeDataRunsItem = {
|
|
5351
|
+
id: string;
|
|
5352
|
+
eval_id: string;
|
|
5353
|
+
/**
|
|
5354
|
+
* @minimum -9007199254740991
|
|
5355
|
+
* @maximum 9007199254740991
|
|
5356
|
+
*/
|
|
5357
|
+
target_version: number;
|
|
5358
|
+
status: GetBenchmarkEnvelopeDataRunsItemStatus;
|
|
5359
|
+
passed: boolean | null;
|
|
5360
|
+
reason: string | null;
|
|
5361
|
+
error: string | null;
|
|
5362
|
+
judge_model: string | null;
|
|
5363
|
+
judge_prompt_version: string | null;
|
|
5364
|
+
grading: GetBenchmarkEnvelopeDataRunsItemGrading;
|
|
5365
|
+
metrics: GetBenchmarkEnvelopeDataRunsItemMetrics;
|
|
5366
|
+
benchmark_id: string | null;
|
|
5367
|
+
configuration: GetBenchmarkEnvelopeDataRunsItemConfiguration;
|
|
5368
|
+
run_number: number | null;
|
|
5369
|
+
created_at: string;
|
|
5370
|
+
started_at: string | null;
|
|
5371
|
+
completed_at: string | null;
|
|
5372
|
+
};
|
|
4658
5373
|
|
|
4659
5374
|
/**
|
|
4660
5375
|
* Generated by orval 🍺
|
|
@@ -4662,12 +5377,12 @@ interface GetAnalyticsTimeSeriesEnvelope {
|
|
|
4662
5377
|
* Avallon API
|
|
4663
5378
|
* OpenAPI spec version: 1.0.0
|
|
4664
5379
|
*/
|
|
4665
|
-
type
|
|
4666
|
-
|
|
4667
|
-
|
|
4668
|
-
|
|
4669
|
-
|
|
4670
|
-
};
|
|
5380
|
+
type GetBenchmarkEnvelopeDataRunSummaryBaselineDurationSeconds = {
|
|
5381
|
+
mean: number;
|
|
5382
|
+
stddev: number;
|
|
5383
|
+
min: number;
|
|
5384
|
+
max: number;
|
|
5385
|
+
} | null;
|
|
4671
5386
|
|
|
4672
5387
|
/**
|
|
4673
5388
|
* Generated by orval 🍺
|
|
@@ -4675,10 +5390,12 @@ declare const GetAnalyticsTimeSeriesGranularity: {
|
|
|
4675
5390
|
* Avallon API
|
|
4676
5391
|
* OpenAPI spec version: 1.0.0
|
|
4677
5392
|
*/
|
|
4678
|
-
type
|
|
4679
|
-
|
|
4680
|
-
|
|
4681
|
-
|
|
5393
|
+
type GetBenchmarkEnvelopeDataRunSummaryBaselineFixtureMatchedRate = {
|
|
5394
|
+
mean: number;
|
|
5395
|
+
stddev: number;
|
|
5396
|
+
min: number;
|
|
5397
|
+
max: number;
|
|
5398
|
+
} | null;
|
|
4682
5399
|
|
|
4683
5400
|
/**
|
|
4684
5401
|
* Generated by orval 🍺
|
|
@@ -4686,12 +5403,12 @@ declare const GetAnalyticsTimeSeriesGroupBy: {
|
|
|
4686
5403
|
* Avallon API
|
|
4687
5404
|
* OpenAPI spec version: 1.0.0
|
|
4688
5405
|
*/
|
|
4689
|
-
type
|
|
4690
|
-
|
|
4691
|
-
|
|
4692
|
-
|
|
4693
|
-
|
|
4694
|
-
};
|
|
5406
|
+
type GetBenchmarkEnvelopeDataRunSummaryBaselinePassRate = {
|
|
5407
|
+
mean: number;
|
|
5408
|
+
stddev: number;
|
|
5409
|
+
min: number;
|
|
5410
|
+
max: number;
|
|
5411
|
+
} | null;
|
|
4695
5412
|
|
|
4696
5413
|
/**
|
|
4697
5414
|
* Generated by orval 🍺
|
|
@@ -4700,13 +5417,20 @@ declare const GetAnalyticsTimeSeriesMetric: {
|
|
|
4700
5417
|
* OpenAPI spec version: 1.0.0
|
|
4701
5418
|
*/
|
|
4702
5419
|
|
|
4703
|
-
type
|
|
4704
|
-
|
|
4705
|
-
|
|
4706
|
-
|
|
4707
|
-
|
|
4708
|
-
|
|
4709
|
-
|
|
5420
|
+
type GetBenchmarkEnvelopeDataRunSummaryBaseline = {
|
|
5421
|
+
/**
|
|
5422
|
+
* @minimum -9007199254740991
|
|
5423
|
+
* @maximum 9007199254740991
|
|
5424
|
+
*/
|
|
5425
|
+
runs: number;
|
|
5426
|
+
/**
|
|
5427
|
+
* @minimum -9007199254740991
|
|
5428
|
+
* @maximum 9007199254740991
|
|
5429
|
+
*/
|
|
5430
|
+
graded_runs: number;
|
|
5431
|
+
pass_rate: GetBenchmarkEnvelopeDataRunSummaryBaselinePassRate;
|
|
5432
|
+
duration_seconds: GetBenchmarkEnvelopeDataRunSummaryBaselineDurationSeconds;
|
|
5433
|
+
fixture_matched_rate: GetBenchmarkEnvelopeDataRunSummaryBaselineFixtureMatchedRate;
|
|
4710
5434
|
};
|
|
4711
5435
|
|
|
4712
5436
|
/**
|
|
@@ -4715,11 +5439,12 @@ type GetAnalyticsTimeSeriesParams = {
|
|
|
4715
5439
|
* Avallon API
|
|
4716
5440
|
* OpenAPI spec version: 1.0.0
|
|
4717
5441
|
*/
|
|
4718
|
-
|
|
4719
|
-
|
|
4720
|
-
|
|
4721
|
-
|
|
4722
|
-
|
|
5442
|
+
type GetBenchmarkEnvelopeDataRunSummaryCandidateDurationSeconds = {
|
|
5443
|
+
mean: number;
|
|
5444
|
+
stddev: number;
|
|
5445
|
+
min: number;
|
|
5446
|
+
max: number;
|
|
5447
|
+
} | null;
|
|
4723
5448
|
|
|
4724
5449
|
/**
|
|
4725
5450
|
* Generated by orval 🍺
|
|
@@ -4727,11 +5452,25 @@ interface GetArtifactEnvelope {
|
|
|
4727
5452
|
* Avallon API
|
|
4728
5453
|
* OpenAPI spec version: 1.0.0
|
|
4729
5454
|
*/
|
|
5455
|
+
type GetBenchmarkEnvelopeDataRunSummaryCandidateFixtureMatchedRate = {
|
|
5456
|
+
mean: number;
|
|
5457
|
+
stddev: number;
|
|
5458
|
+
min: number;
|
|
5459
|
+
max: number;
|
|
5460
|
+
} | null;
|
|
4730
5461
|
|
|
4731
|
-
|
|
4732
|
-
|
|
4733
|
-
|
|
4734
|
-
|
|
5462
|
+
/**
|
|
5463
|
+
* Generated by orval 🍺
|
|
5464
|
+
* Do not edit manually.
|
|
5465
|
+
* Avallon API
|
|
5466
|
+
* OpenAPI spec version: 1.0.0
|
|
5467
|
+
*/
|
|
5468
|
+
type GetBenchmarkEnvelopeDataRunSummaryCandidatePassRate = {
|
|
5469
|
+
mean: number;
|
|
5470
|
+
stddev: number;
|
|
5471
|
+
min: number;
|
|
5472
|
+
max: number;
|
|
5473
|
+
} | null;
|
|
4735
5474
|
|
|
4736
5475
|
/**
|
|
4737
5476
|
* Generated by orval 🍺
|
|
@@ -4739,12 +5478,21 @@ interface GetArtifactMetadataKeysEnvelope {
|
|
|
4739
5478
|
* Avallon API
|
|
4740
5479
|
* OpenAPI spec version: 1.0.0
|
|
4741
5480
|
*/
|
|
4742
|
-
|
|
5481
|
+
|
|
5482
|
+
type GetBenchmarkEnvelopeDataRunSummaryCandidate = {
|
|
4743
5483
|
/**
|
|
4744
|
-
* @minimum
|
|
4745
|
-
* @maximum
|
|
5484
|
+
* @minimum -9007199254740991
|
|
5485
|
+
* @maximum 9007199254740991
|
|
5486
|
+
*/
|
|
5487
|
+
runs: number;
|
|
5488
|
+
/**
|
|
5489
|
+
* @minimum -9007199254740991
|
|
5490
|
+
* @maximum 9007199254740991
|
|
4746
5491
|
*/
|
|
4747
|
-
|
|
5492
|
+
graded_runs: number;
|
|
5493
|
+
pass_rate: GetBenchmarkEnvelopeDataRunSummaryCandidatePassRate;
|
|
5494
|
+
duration_seconds: GetBenchmarkEnvelopeDataRunSummaryCandidateDurationSeconds;
|
|
5495
|
+
fixture_matched_rate: GetBenchmarkEnvelopeDataRunSummaryCandidateFixtureMatchedRate;
|
|
4748
5496
|
};
|
|
4749
5497
|
|
|
4750
5498
|
/**
|
|
@@ -4753,11 +5501,11 @@ type GetArtifactMetadataKeysParams = {
|
|
|
4753
5501
|
* Avallon API
|
|
4754
5502
|
* OpenAPI spec version: 1.0.0
|
|
4755
5503
|
*/
|
|
4756
|
-
|
|
4757
|
-
|
|
4758
|
-
|
|
4759
|
-
|
|
4760
|
-
}
|
|
5504
|
+
type GetBenchmarkEnvelopeDataRunSummaryDelta = {
|
|
5505
|
+
pass_rate: number | null;
|
|
5506
|
+
duration_seconds: number | null;
|
|
5507
|
+
fixture_matched_rate: number | null;
|
|
5508
|
+
};
|
|
4761
5509
|
|
|
4762
5510
|
/**
|
|
4763
5511
|
* Generated by orval 🍺
|
|
@@ -4765,14 +5513,12 @@ interface GetArtifactStatusSummaryEnvelope {
|
|
|
4765
5513
|
* Avallon API
|
|
4766
5514
|
* OpenAPI spec version: 1.0.0
|
|
4767
5515
|
*/
|
|
4768
|
-
|
|
4769
|
-
|
|
4770
|
-
|
|
4771
|
-
|
|
4772
|
-
|
|
4773
|
-
|
|
4774
|
-
};
|
|
4775
|
-
};
|
|
5516
|
+
|
|
5517
|
+
type GetBenchmarkEnvelopeDataRunSummary = {
|
|
5518
|
+
candidate: GetBenchmarkEnvelopeDataRunSummaryCandidate;
|
|
5519
|
+
baseline: GetBenchmarkEnvelopeDataRunSummaryBaseline;
|
|
5520
|
+
delta: GetBenchmarkEnvelopeDataRunSummaryDelta;
|
|
5521
|
+
} | null;
|
|
4776
5522
|
|
|
4777
5523
|
/**
|
|
4778
5524
|
* Generated by orval 🍺
|
|
@@ -4780,9 +5526,11 @@ type GetArtifactStatusSummaryParams = {
|
|
|
4780
5526
|
* Avallon API
|
|
4781
5527
|
* OpenAPI spec version: 1.0.0
|
|
4782
5528
|
*/
|
|
4783
|
-
type
|
|
4784
|
-
|
|
4785
|
-
|
|
5529
|
+
type GetBenchmarkEnvelopeDataStatus = (typeof GetBenchmarkEnvelopeDataStatus)[keyof typeof GetBenchmarkEnvelopeDataStatus];
|
|
5530
|
+
declare const GetBenchmarkEnvelopeDataStatus: {
|
|
5531
|
+
readonly running: "running";
|
|
5532
|
+
readonly completed: "completed";
|
|
5533
|
+
readonly error: "error";
|
|
4786
5534
|
};
|
|
4787
5535
|
|
|
4788
5536
|
/**
|
|
@@ -4791,10 +5539,31 @@ type GetArtifactUploadUrlBody = {
|
|
|
4791
5539
|
* Avallon API
|
|
4792
5540
|
* OpenAPI spec version: 1.0.0
|
|
4793
5541
|
*/
|
|
4794
|
-
|
|
4795
|
-
|
|
4796
|
-
|
|
4797
|
-
|
|
5542
|
+
|
|
5543
|
+
type GetBenchmarkEnvelopeData = {
|
|
5544
|
+
id: string;
|
|
5545
|
+
eval_id: string;
|
|
5546
|
+
/**
|
|
5547
|
+
* @minimum -9007199254740991
|
|
5548
|
+
* @maximum 9007199254740991
|
|
5549
|
+
*/
|
|
5550
|
+
candidate_version: number;
|
|
5551
|
+
/**
|
|
5552
|
+
* @minimum -9007199254740991
|
|
5553
|
+
* @maximum 9007199254740991
|
|
5554
|
+
*/
|
|
5555
|
+
baseline_version: number;
|
|
5556
|
+
/**
|
|
5557
|
+
* @minimum -9007199254740991
|
|
5558
|
+
* @maximum 9007199254740991
|
|
5559
|
+
*/
|
|
5560
|
+
runs_per_configuration: number;
|
|
5561
|
+
status: GetBenchmarkEnvelopeDataStatus;
|
|
5562
|
+
run_summary: GetBenchmarkEnvelopeDataRunSummary;
|
|
5563
|
+
notes: string[] | null;
|
|
5564
|
+
runs: GetBenchmarkEnvelopeDataRunsItem[];
|
|
5565
|
+
created_at: string;
|
|
5566
|
+
completed_at: string | null;
|
|
4798
5567
|
};
|
|
4799
5568
|
|
|
4800
5569
|
/**
|
|
@@ -4804,8 +5573,8 @@ type GetArtifactUploadUrlEnvelopeData = {
|
|
|
4804
5573
|
* OpenAPI spec version: 1.0.0
|
|
4805
5574
|
*/
|
|
4806
5575
|
|
|
4807
|
-
interface
|
|
4808
|
-
data:
|
|
5576
|
+
interface GetBenchmarkEnvelope {
|
|
5577
|
+
data: GetBenchmarkEnvelopeData;
|
|
4809
5578
|
message: string;
|
|
4810
5579
|
}
|
|
4811
5580
|
|
|
@@ -4957,6 +5726,119 @@ interface GetEmailEnvelope {
|
|
|
4957
5726
|
message: string;
|
|
4958
5727
|
}
|
|
4959
5728
|
|
|
5729
|
+
/**
|
|
5730
|
+
* Generated by orval 🍺
|
|
5731
|
+
* Do not edit manually.
|
|
5732
|
+
* Avallon API
|
|
5733
|
+
* OpenAPI spec version: 1.0.0
|
|
5734
|
+
*/
|
|
5735
|
+
type GetEvalRunEnvelopeDataConfiguration = (typeof GetEvalRunEnvelopeDataConfiguration)[keyof typeof GetEvalRunEnvelopeDataConfiguration] | null;
|
|
5736
|
+
declare const GetEvalRunEnvelopeDataConfiguration: {
|
|
5737
|
+
readonly candidate: "candidate";
|
|
5738
|
+
readonly baseline: "baseline";
|
|
5739
|
+
};
|
|
5740
|
+
|
|
5741
|
+
/**
|
|
5742
|
+
* Generated by orval 🍺
|
|
5743
|
+
* Do not edit manually.
|
|
5744
|
+
* Avallon API
|
|
5745
|
+
* OpenAPI spec version: 1.0.0
|
|
5746
|
+
*/
|
|
5747
|
+
type GetEvalRunEnvelopeDataGradingExpectationsItem = {
|
|
5748
|
+
text: string;
|
|
5749
|
+
passed: boolean;
|
|
5750
|
+
evidence: string;
|
|
5751
|
+
};
|
|
5752
|
+
|
|
5753
|
+
/**
|
|
5754
|
+
* Generated by orval 🍺
|
|
5755
|
+
* Do not edit manually.
|
|
5756
|
+
* Avallon API
|
|
5757
|
+
* OpenAPI spec version: 1.0.0
|
|
5758
|
+
*/
|
|
5759
|
+
type GetEvalRunEnvelopeDataGradingSummary = {
|
|
5760
|
+
/**
|
|
5761
|
+
* @minimum -9007199254740991
|
|
5762
|
+
* @maximum 9007199254740991
|
|
5763
|
+
*/
|
|
5764
|
+
total: number;
|
|
5765
|
+
/**
|
|
5766
|
+
* @minimum -9007199254740991
|
|
5767
|
+
* @maximum 9007199254740991
|
|
5768
|
+
*/
|
|
5769
|
+
passed: number;
|
|
5770
|
+
/**
|
|
5771
|
+
* @minimum -9007199254740991
|
|
5772
|
+
* @maximum 9007199254740991
|
|
5773
|
+
*/
|
|
5774
|
+
failed: number;
|
|
5775
|
+
pass_rate: number;
|
|
5776
|
+
};
|
|
5777
|
+
|
|
5778
|
+
/**
|
|
5779
|
+
* Generated by orval 🍺
|
|
5780
|
+
* Do not edit manually.
|
|
5781
|
+
* Avallon API
|
|
5782
|
+
* OpenAPI spec version: 1.0.0
|
|
5783
|
+
*/
|
|
5784
|
+
|
|
5785
|
+
type GetEvalRunEnvelopeDataGrading = {
|
|
5786
|
+
expectations: GetEvalRunEnvelopeDataGradingExpectationsItem[];
|
|
5787
|
+
summary: GetEvalRunEnvelopeDataGradingSummary;
|
|
5788
|
+
} | null;
|
|
5789
|
+
|
|
5790
|
+
/**
|
|
5791
|
+
* Generated by orval 🍺
|
|
5792
|
+
* Do not edit manually.
|
|
5793
|
+
* Avallon API
|
|
5794
|
+
* OpenAPI spec version: 1.0.0
|
|
5795
|
+
*/
|
|
5796
|
+
type GetEvalRunEnvelopeDataMetricsFixtureHealth = {
|
|
5797
|
+
/**
|
|
5798
|
+
* @minimum -9007199254740991
|
|
5799
|
+
* @maximum 9007199254740991
|
|
5800
|
+
*/
|
|
5801
|
+
exact: number;
|
|
5802
|
+
/**
|
|
5803
|
+
* @minimum -9007199254740991
|
|
5804
|
+
* @maximum 9007199254740991
|
|
5805
|
+
*/
|
|
5806
|
+
partial: number;
|
|
5807
|
+
/**
|
|
5808
|
+
* @minimum -9007199254740991
|
|
5809
|
+
* @maximum 9007199254740991
|
|
5810
|
+
*/
|
|
5811
|
+
fifo: number;
|
|
5812
|
+
/**
|
|
5813
|
+
* @minimum -9007199254740991
|
|
5814
|
+
* @maximum 9007199254740991
|
|
5815
|
+
*/
|
|
5816
|
+
default: number;
|
|
5817
|
+
/**
|
|
5818
|
+
* @minimum -9007199254740991
|
|
5819
|
+
* @maximum 9007199254740991
|
|
5820
|
+
*/
|
|
5821
|
+
unavailable: number;
|
|
5822
|
+
matched_rate: number | null;
|
|
5823
|
+
};
|
|
5824
|
+
|
|
5825
|
+
/**
|
|
5826
|
+
* Generated by orval 🍺
|
|
5827
|
+
* Do not edit manually.
|
|
5828
|
+
* Avallon API
|
|
5829
|
+
* OpenAPI spec version: 1.0.0
|
|
5830
|
+
*/
|
|
5831
|
+
|
|
5832
|
+
type GetEvalRunEnvelopeDataMetrics = {
|
|
5833
|
+
duration_seconds: number | null;
|
|
5834
|
+
/**
|
|
5835
|
+
* @minimum -9007199254740991
|
|
5836
|
+
* @maximum 9007199254740991
|
|
5837
|
+
*/
|
|
5838
|
+
tool_calls: number;
|
|
5839
|
+
fixture_health: GetEvalRunEnvelopeDataMetricsFixtureHealth;
|
|
5840
|
+
} | null;
|
|
5841
|
+
|
|
4960
5842
|
/**
|
|
4961
5843
|
* Generated by orval 🍺
|
|
4962
5844
|
* Do not edit manually.
|
|
@@ -4967,6 +5849,7 @@ type GetEvalRunEnvelopeDataStatus = (typeof GetEvalRunEnvelopeDataStatus)[keyof
|
|
|
4967
5849
|
declare const GetEvalRunEnvelopeDataStatus: {
|
|
4968
5850
|
readonly queued: "queued";
|
|
4969
5851
|
readonly running: "running";
|
|
5852
|
+
readonly judging: "judging";
|
|
4970
5853
|
readonly passed: "passed";
|
|
4971
5854
|
readonly failed: "failed";
|
|
4972
5855
|
readonly error: "error";
|
|
@@ -4994,6 +5877,11 @@ type GetEvalRunEnvelopeData = {
|
|
|
4994
5877
|
judge_model: string | null;
|
|
4995
5878
|
judge_prompt_version: string | null;
|
|
4996
5879
|
tool_trace: unknown | null;
|
|
5880
|
+
grading: GetEvalRunEnvelopeDataGrading;
|
|
5881
|
+
metrics: GetEvalRunEnvelopeDataMetrics;
|
|
5882
|
+
benchmark_id: string | null;
|
|
5883
|
+
configuration: GetEvalRunEnvelopeDataConfiguration;
|
|
5884
|
+
run_number: number | null;
|
|
4997
5885
|
created_at: string;
|
|
4998
5886
|
started_at: string | null;
|
|
4999
5887
|
completed_at: string | null;
|
|
@@ -9914,6 +10802,119 @@ type RunEvalBody = {
|
|
|
9914
10802
|
worker_version: number;
|
|
9915
10803
|
};
|
|
9916
10804
|
|
|
10805
|
+
/**
|
|
10806
|
+
* Generated by orval 🍺
|
|
10807
|
+
* Do not edit manually.
|
|
10808
|
+
* Avallon API
|
|
10809
|
+
* OpenAPI spec version: 1.0.0
|
|
10810
|
+
*/
|
|
10811
|
+
type RunEvalEnvelopeDataConfiguration = (typeof RunEvalEnvelopeDataConfiguration)[keyof typeof RunEvalEnvelopeDataConfiguration] | null;
|
|
10812
|
+
declare const RunEvalEnvelopeDataConfiguration: {
|
|
10813
|
+
readonly candidate: "candidate";
|
|
10814
|
+
readonly baseline: "baseline";
|
|
10815
|
+
};
|
|
10816
|
+
|
|
10817
|
+
/**
|
|
10818
|
+
* Generated by orval 🍺
|
|
10819
|
+
* Do not edit manually.
|
|
10820
|
+
* Avallon API
|
|
10821
|
+
* OpenAPI spec version: 1.0.0
|
|
10822
|
+
*/
|
|
10823
|
+
type RunEvalEnvelopeDataGradingExpectationsItem = {
|
|
10824
|
+
text: string;
|
|
10825
|
+
passed: boolean;
|
|
10826
|
+
evidence: string;
|
|
10827
|
+
};
|
|
10828
|
+
|
|
10829
|
+
/**
|
|
10830
|
+
* Generated by orval 🍺
|
|
10831
|
+
* Do not edit manually.
|
|
10832
|
+
* Avallon API
|
|
10833
|
+
* OpenAPI spec version: 1.0.0
|
|
10834
|
+
*/
|
|
10835
|
+
type RunEvalEnvelopeDataGradingSummary = {
|
|
10836
|
+
/**
|
|
10837
|
+
* @minimum -9007199254740991
|
|
10838
|
+
* @maximum 9007199254740991
|
|
10839
|
+
*/
|
|
10840
|
+
total: number;
|
|
10841
|
+
/**
|
|
10842
|
+
* @minimum -9007199254740991
|
|
10843
|
+
* @maximum 9007199254740991
|
|
10844
|
+
*/
|
|
10845
|
+
passed: number;
|
|
10846
|
+
/**
|
|
10847
|
+
* @minimum -9007199254740991
|
|
10848
|
+
* @maximum 9007199254740991
|
|
10849
|
+
*/
|
|
10850
|
+
failed: number;
|
|
10851
|
+
pass_rate: number;
|
|
10852
|
+
};
|
|
10853
|
+
|
|
10854
|
+
/**
|
|
10855
|
+
* Generated by orval 🍺
|
|
10856
|
+
* Do not edit manually.
|
|
10857
|
+
* Avallon API
|
|
10858
|
+
* OpenAPI spec version: 1.0.0
|
|
10859
|
+
*/
|
|
10860
|
+
|
|
10861
|
+
type RunEvalEnvelopeDataGrading = {
|
|
10862
|
+
expectations: RunEvalEnvelopeDataGradingExpectationsItem[];
|
|
10863
|
+
summary: RunEvalEnvelopeDataGradingSummary;
|
|
10864
|
+
} | null;
|
|
10865
|
+
|
|
10866
|
+
/**
|
|
10867
|
+
* Generated by orval 🍺
|
|
10868
|
+
* Do not edit manually.
|
|
10869
|
+
* Avallon API
|
|
10870
|
+
* OpenAPI spec version: 1.0.0
|
|
10871
|
+
*/
|
|
10872
|
+
type RunEvalEnvelopeDataMetricsFixtureHealth = {
|
|
10873
|
+
/**
|
|
10874
|
+
* @minimum -9007199254740991
|
|
10875
|
+
* @maximum 9007199254740991
|
|
10876
|
+
*/
|
|
10877
|
+
exact: number;
|
|
10878
|
+
/**
|
|
10879
|
+
* @minimum -9007199254740991
|
|
10880
|
+
* @maximum 9007199254740991
|
|
10881
|
+
*/
|
|
10882
|
+
partial: number;
|
|
10883
|
+
/**
|
|
10884
|
+
* @minimum -9007199254740991
|
|
10885
|
+
* @maximum 9007199254740991
|
|
10886
|
+
*/
|
|
10887
|
+
fifo: number;
|
|
10888
|
+
/**
|
|
10889
|
+
* @minimum -9007199254740991
|
|
10890
|
+
* @maximum 9007199254740991
|
|
10891
|
+
*/
|
|
10892
|
+
default: number;
|
|
10893
|
+
/**
|
|
10894
|
+
* @minimum -9007199254740991
|
|
10895
|
+
* @maximum 9007199254740991
|
|
10896
|
+
*/
|
|
10897
|
+
unavailable: number;
|
|
10898
|
+
matched_rate: number | null;
|
|
10899
|
+
};
|
|
10900
|
+
|
|
10901
|
+
/**
|
|
10902
|
+
* Generated by orval 🍺
|
|
10903
|
+
* Do not edit manually.
|
|
10904
|
+
* Avallon API
|
|
10905
|
+
* OpenAPI spec version: 1.0.0
|
|
10906
|
+
*/
|
|
10907
|
+
|
|
10908
|
+
type RunEvalEnvelopeDataMetrics = {
|
|
10909
|
+
duration_seconds: number | null;
|
|
10910
|
+
/**
|
|
10911
|
+
* @minimum -9007199254740991
|
|
10912
|
+
* @maximum 9007199254740991
|
|
10913
|
+
*/
|
|
10914
|
+
tool_calls: number;
|
|
10915
|
+
fixture_health: RunEvalEnvelopeDataMetricsFixtureHealth;
|
|
10916
|
+
} | null;
|
|
10917
|
+
|
|
9917
10918
|
/**
|
|
9918
10919
|
* Generated by orval 🍺
|
|
9919
10920
|
* Do not edit manually.
|
|
@@ -9924,6 +10925,7 @@ type RunEvalEnvelopeDataStatus = (typeof RunEvalEnvelopeDataStatus)[keyof typeof
|
|
|
9924
10925
|
declare const RunEvalEnvelopeDataStatus: {
|
|
9925
10926
|
readonly queued: "queued";
|
|
9926
10927
|
readonly running: "running";
|
|
10928
|
+
readonly judging: "judging";
|
|
9927
10929
|
readonly passed: "passed";
|
|
9928
10930
|
readonly failed: "failed";
|
|
9929
10931
|
readonly error: "error";
|
|
@@ -9951,6 +10953,11 @@ type RunEvalEnvelopeData = {
|
|
|
9951
10953
|
judge_model: string | null;
|
|
9952
10954
|
judge_prompt_version: string | null;
|
|
9953
10955
|
tool_trace: unknown | null;
|
|
10956
|
+
grading: RunEvalEnvelopeDataGrading;
|
|
10957
|
+
metrics: RunEvalEnvelopeDataMetrics;
|
|
10958
|
+
benchmark_id: string | null;
|
|
10959
|
+
configuration: RunEvalEnvelopeDataConfiguration;
|
|
10960
|
+
run_number: number | null;
|
|
9954
10961
|
created_at: string;
|
|
9955
10962
|
started_at: string | null;
|
|
9956
10963
|
completed_at: string | null;
|
|
@@ -13050,7 +14057,7 @@ type Awaited$h<O> = O extends AwaitedInput$h<infer T> ? T : never;
|
|
|
13050
14057
|
type SecondParameter$h<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
13051
14058
|
declare const getCreateWorkerEvalFromRunUrl: (workerRunId: string) => string;
|
|
13052
14059
|
/**
|
|
13053
|
-
* Snapshot a worker run's trigger and resolved artifacts, and record its MCP tool responses from telemetry for replay.
|
|
14060
|
+
* Snapshot a worker run's trigger and resolved artifacts, and record its MCP tool responses from telemetry for replay. Each assertion is graded PASS/FAIL independently on every run.
|
|
13054
14061
|
* @summary Create a worker eval from a run
|
|
13055
14062
|
*/
|
|
13056
14063
|
declare const createWorkerEvalFromRun: (workerRunId: string, createWorkerEvalFromRunBody?: CreateWorkerEvalFromRunBody, options?: Parameters<typeof customFetch>[1]) => Promise<CreateWorkerEvalFromRunEnvelope>;
|
|
@@ -13127,6 +14134,58 @@ declare const useGetEvalRun: <TError = ErrorType<ErrorResponse>>(evalRunId: stri
|
|
|
13127
14134
|
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
13128
14135
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
13129
14136
|
};
|
|
14137
|
+
declare const getCreateEvalBenchmarkUrl: (evalId: string) => string;
|
|
14138
|
+
/**
|
|
14139
|
+
* Queue runs_per_configuration trials of the eval against a candidate and a baseline worker version. When all trials finish, the benchmark reports mean ± stddev pass rate per configuration, the candidate-minus-baseline delta, and analyzer notes.
|
|
14140
|
+
* @summary Benchmark two worker versions on an eval
|
|
14141
|
+
*/
|
|
14142
|
+
declare const createEvalBenchmark: (evalId: string, createEvalBenchmarkBody?: CreateEvalBenchmarkBody, options?: Parameters<typeof customFetch>[1]) => Promise<CreateEvalBenchmarkEnvelope>;
|
|
14143
|
+
declare const getCreateEvalBenchmarkMutationFetcher: (evalId: string, options?: SecondParameter$h<typeof customFetch>) => (_: Key, { arg }: {
|
|
14144
|
+
arg: CreateEvalBenchmarkBody | undefined;
|
|
14145
|
+
}) => Promise<CreateEvalBenchmarkEnvelope>;
|
|
14146
|
+
declare const getCreateEvalBenchmarkMutationKey: (evalId: string) => readonly [`/v1/evals/${string}/benchmarks`];
|
|
14147
|
+
type CreateEvalBenchmarkMutationResult = NonNullable<Awaited$h<ReturnType<typeof createEvalBenchmark>>>;
|
|
14148
|
+
/**
|
|
14149
|
+
* @summary Benchmark two worker versions on an eval
|
|
14150
|
+
*/
|
|
14151
|
+
declare const useCreateEvalBenchmark: <TError = ErrorType<ErrorResponse>>(evalId: string, options?: {
|
|
14152
|
+
swr?: SWRMutationConfiguration<Awaited$h<ReturnType<typeof createEvalBenchmark>>, TError, Key, CreateEvalBenchmarkBody | undefined, Awaited$h<ReturnType<typeof createEvalBenchmark>>> & {
|
|
14153
|
+
swrKey?: string;
|
|
14154
|
+
};
|
|
14155
|
+
request?: SecondParameter$h<typeof customFetch>;
|
|
14156
|
+
}) => {
|
|
14157
|
+
isMutating: boolean;
|
|
14158
|
+
trigger: swr_mutation.TriggerWithOptionsArgs<CreateEvalBenchmarkEnvelope, TError, string | readonly [`/v1/evals/${string}/benchmarks`], CreateEvalBenchmarkBody | undefined>;
|
|
14159
|
+
reset: () => void;
|
|
14160
|
+
error: TError | undefined;
|
|
14161
|
+
data: CreateEvalBenchmarkEnvelope | undefined;
|
|
14162
|
+
swrKey: string | readonly [`/v1/evals/${string}/benchmarks`];
|
|
14163
|
+
};
|
|
14164
|
+
declare const getGetBenchmarkUrl: (benchmarkId: string) => string;
|
|
14165
|
+
/**
|
|
14166
|
+
* Get a benchmark with its per-run gradings and metrics, and once all runs finished, the per-configuration summary, delta, and analyzer notes.
|
|
14167
|
+
* @summary Get a benchmark
|
|
14168
|
+
*/
|
|
14169
|
+
declare const getBenchmark: (benchmarkId: string, options?: Parameters<typeof customFetch>[1]) => Promise<GetBenchmarkEnvelope>;
|
|
14170
|
+
declare const getGetBenchmarkKey: (benchmarkId: string) => readonly [`/v1/benchmarks/${string}`];
|
|
14171
|
+
type GetBenchmarkQueryResult = NonNullable<Awaited$h<ReturnType<typeof getBenchmark>>>;
|
|
14172
|
+
/**
|
|
14173
|
+
* @summary Get a benchmark
|
|
14174
|
+
*/
|
|
14175
|
+
declare const useGetBenchmark: <TError = ErrorType<ErrorResponse>>(benchmarkId: string, options?: {
|
|
14176
|
+
swr?: SWRConfiguration<Awaited$h<ReturnType<typeof getBenchmark>>, TError> & {
|
|
14177
|
+
swrKey?: Key;
|
|
14178
|
+
enabled?: boolean;
|
|
14179
|
+
};
|
|
14180
|
+
request?: SecondParameter$h<typeof customFetch>;
|
|
14181
|
+
}) => {
|
|
14182
|
+
data: GetBenchmarkEnvelope | undefined;
|
|
14183
|
+
error: TError | undefined;
|
|
14184
|
+
mutate: swr.KeyedMutator<GetBenchmarkEnvelope>;
|
|
14185
|
+
isValidating: boolean;
|
|
14186
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
14187
|
+
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
14188
|
+
};
|
|
13130
14189
|
|
|
13131
14190
|
type AwaitedInput$g<T> = PromiseLike<T> | T;
|
|
13132
14191
|
type Awaited$g<O> = O extends AwaitedInput$g<infer T> ? T : never;
|
|
@@ -16115,4 +17174,4 @@ declare const useGetWorkerVersionChangeSummary: <TError = ErrorType<ErrorRespons
|
|
|
16115
17174
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => Arguments);
|
|
16116
17175
|
};
|
|
16117
17176
|
|
|
16118
|
-
export { type AddCaseLinksBody, type AddCaseLinksBodyEntitiesItem, AddCaseLinksBodyEntitiesItemEntityType, type AddCaseLinksEnvelope, AddCaseLinksEnvironment, type AddCaseLinksMutationResult, type AddCaseLinksParams, type AddCaseLinksResponse, type AnalyticsTimeSeries, AnalyticsTimeSeriesGranularity, AnalyticsTimeSeriesGroupBy, AnalyticsTimeSeriesMetric, type AnalyticsTimeSeriesPointsItem, type ApiKey, type ApiKeyCreated, ApiKeyCreatedRole, type ApiKeyList, ApiKeyRole, type Artifact, type ArtifactCreated, type ArtifactCreatedItem, type ArtifactDetail, type ArtifactDetailData, type ArtifactDetailDataMetadata, ArtifactDetailDataStatus, type ArtifactList, type ArtifactMetadata, type ArtifactMetadataKeys, type ArtifactMetadataKeysData, type ArtifactMetadataKeysDataValues, ArtifactStatus, type ArtifactStatusSummary, type AuthTokens, type AvallonConfig, AvallonError, type Call, type CallAnalytics, type CallAnalyticsCallsOverTimeItem, type CallAnalyticsDurationDistributionItem, type CallAnalyticsEvaluationOverTimeItem, type CallAnalyticsMetricPerformanceItem, type CallAnalyticsScoreDistributionItem, type CallAnalyticsSummary, type CallDetail, CallDetailDirection, CallDetailEnvironment, type CallDetailEvaluation, type CallDetailMetadata, CallDirection, CallEnvironment, type CallEvaluation, type CallEvaluationMetricsItem, type CallEvaluationProperty, type CallList, type CallMessage, type CallMessageMetadata, type CallMessageToolArguments, type CallMessageToolResult, type CallMetadata, type CancelJobEnvelope, type CancelJobMutationResult, type CancelWorkerRunEnvelope, type CancelWorkerRunMutationResult, type CaseDetail, type CaseLink, CaseLinkEntityType, type CaseLinkList, type CaseList, type CaseSearchResult, type CaseSummary, CaseSummaryEnvironment, type ChatAgent, type ChatAgentCreated, type ChatAgentDetail, type ChatAgentList, type ChatAgentPrompt, type ChatAgentPromptUpdated, type ChatCreated, type ChatHistory, type ChatHistoryMessagesItem, ChatHistoryMessagesItemRole, type ChatList, type ChatListItem, type ChatMessage, type ChatMessageCreated, type ChatMessageCreatedMessage, type ChatMessageCreatedMessageContentItem, type ChatMessageList, type ChatMessagePart, ChatMessageRole, type CheckInboxAvailabilityEnvelope, type CheckInboxAvailabilityParams, type CheckInboxAvailabilityQueryResult, type CodeTool, type CodeToolCreated, type CodeToolCreatedTool, type CodeToolCreatedToolSchema, type CodeToolSchema, type CodeToolSummary, type CodeToolUpdated, type ConfirmationResponse, type CreateAgentWebhookBody, CreateAgentWebhookBodyEnvironmentsItem, type CreateAgentWebhookEnvelope, type CreateAgentWebhookMutationResult, type CreateApiKeyBody, CreateApiKeyBodyEnvironment, CreateApiKeyBodyRole, type CreateApiKeyEnvelope, type CreateApiKeyMutationResult, type CreateArtifactBody, type CreateArtifactBodyMetadata, type CreateArtifactBodyProcessingOptions, type CreateArtifactEnvelope, type CreateArtifactMutationResult, type CreateCallFeedbackEnvelope, type CreateCallFeedbackMutationResult, type CreateCaseBody, CreateCaseBodyEnvironment, type CreateCaseEnvelope, type CreateCaseMutationResult, type CreateCaseResponse, type CreateChatAgentBody, type CreateChatAgentEnvelope, type CreateChatAgentMutationResult, type CreateChatBody, type CreateChatEnvelope, type CreateChatMutationResult, type CreateExtractorBody, type CreateExtractorBodySchema, type CreateExtractorEnvelope, type CreateExtractorJobBody, type CreateExtractorJobBodyScope, type CreateExtractorJobEnvelope, type CreateExtractorJobMutationResult, type CreateExtractorMutationResult, type CreateExtractorWebhookBody, CreateExtractorWebhookBodyEnvironmentsItem, type CreateExtractorWebhookEnvelope, type CreateExtractorWebhookMutationResult, type CreateFeedbackRequest, type CreateInboxBody, CreateInboxBodyProcessorType, type CreateInboxEnvelope, type CreateInboxMutationResult, type CreateInboxWebhookBody, CreateInboxWebhookBodyEnvironmentsItem, type CreateInboxWebhookEnvelope, type CreateInboxWebhookMutationResult, type CreateInformationRequestBody, type CreateInformationRequestBodyMetadata, type CreateInformationRequestEnvelope, type CreateInformationRequestMutationResult, type CreateNotificationWebhookBody, CreateNotificationWebhookBodyEnvironmentsItem, type CreateNotificationWebhookEnvelope, type CreateNotificationWebhookMutationResult, type CreateScheduleBody, CreateScheduleBodyEnvironmentsItem, type CreateScheduleEnvelope, type CreateScheduleMutationResult, type CreateSecretBody, type CreateSecretEnvelope, type CreateSecretMutationResult, type CreateToolBody, type CreateToolEnvelope, type CreateToolMutationResult, type CreateVoiceAgentBody, CreateVoiceAgentBodyCallProcessorType, CreateVoiceAgentBodyDirection, CreateVoiceAgentBodyLanguage, CreateVoiceAgentBodyLlmModel, CreateVoiceAgentBodySttModel, CreateVoiceAgentBodyTtsModel, CreateVoiceAgentBodyTtsProvider, type CreateVoiceAgentEnvelope, type CreateVoiceAgentMutationResult, type CreateVoiceAgentResponse, type CreateWorkerBody, CreateWorkerBodyMcpType, type CreateWorkerEnvelope, type CreateWorkerEvalFromRunBody, type CreateWorkerEvalFromRunBodyGrader, type CreateWorkerEvalFromRunEnvelope, type CreateWorkerEvalFromRunEnvelopeData, type CreateWorkerEvalFromRunEnvelopeDataFixture, type CreateWorkerEvalFromRunEnvelopeDataFixtureScope, type CreateWorkerEvalFromRunEnvelopeDataGrader, type CreateWorkerEvalFromRunEnvelopeDataSource, CreateWorkerEvalFromRunEnvelopeDataSourceType, type CreateWorkerEvalFromRunEnvelopeDataTarget, CreateWorkerEvalFromRunEnvelopeDataTargetType, type CreateWorkerEvalFromRunEnvelopeDataToolMocksItem, type CreateWorkerEvalFromRunEnvelopeDataToolMocksItemInputSchema, type CreateWorkerEvalFromRunEnvelopeDataToolMocksItemMatch, type CreateWorkerEvalFromRunMutationResult, type CreateWorkerMutationResult, type CreateWorkerRunBody, CreateWorkerRunBodyEnvironment, type CreateWorkerRunBodyScope, type CreateWorkerRunEnvelope, type CreateWorkerRunMutationResult, type CreateWorkerWebhookBody, CreateWorkerWebhookBodyEnvironmentsItem, type CreateWorkerWebhookEnvelope, type CreateWorkerWebhookMutationResult, type DeleteArtifactEnvelope, type DeleteArtifactMutationResult, type DeleteArtifactResponse, type DeleteCallFeedbackEnvelope, type DeleteCallFeedbackMutationResult, type DeleteCaseEnvelope, DeleteCaseEnvironment, type DeleteCaseMutationResult, type DeleteCaseParams, type DeleteCaseResponse, type DeleteChatAgentEnvelope, type DeleteChatAgentMutationResult, type DeleteChatAgentResponse, type DeleteEmailEnvelope, type DeleteEmailMutationResult, type DeleteEmailResponse, type DeleteExtractorEnvelope, type DeleteExtractorMutationResult, type DeleteExtractorResponse, type DeleteInboxEnvelope, type DeleteInboxMutationResult, type DeleteInboxResponse, type DeleteScheduleEnvelope, type DeleteScheduleMutationResult, type DeleteScheduleResponse, type DeleteSecretEnvelope, type DeleteSecretMutationResult, type DeleteSecretResponse, type DeleteToolEnvelope, type DeleteToolMutationResult, type DeleteToolResponse, type DeleteVoiceAgentEnvelope, type DeleteVoiceAgentMutationResult, type DeleteVoiceAgentResponse, type DeleteWebhookEnvelope, type DeleteWebhookMutationResult, type DeleteWebhookResponse, type DeleteWorkerEnvelope, type DeleteWorkerMutationResult, type DeleteWorkerResponse, type Dispatch, DispatchEnvironment, type DispatchList, DispatchStatus, type DispatchTarget, DispatchTargetType, type DispatchTrigger, DispatchTriggerType, type Email, type EmailDetail, EmailDetailDirection, EmailDetailEnvironment, EmailDetailIgnoredReason, EmailDirection, EmailEnvironment, EmailIgnoredReason, type EmailList, type EmailReplyResult, EmailReplyResultValue, type EmailSendResult, type EmailThread, EmailThreadEnvironment, type EmailThreadList, type ErrorResponse, type ErrorResponseData, type ExecuteCodeBody, ExecuteCodeBodyEnvironment, type ExecuteCodeBodyParams, type ExecuteCodeEnvelope, type ExecuteCodeMutationResult, type Extract, type ExtractList, type ExtractProcessorScope, type ExtractSummary, type ExtractSummaryProcessorScope, type Extractor, type ExtractorCreated, type ExtractorCreatedSchema, type ExtractorJob, type ExtractorJobCreated, type ExtractorJobCreatedScope, type ExtractorJobDetail, type ExtractorJobDetailScope, type ExtractorJobList, type ExtractorJobScope, type ExtractorList, type ExtractorSchema, type ExtractorSummary, type ExtractorUpdated, type ExtractorUpdatedSchema, type ExtractorWebhookList, type Feedback, type GetAnalyticsTimeSeriesEnvelope, GetAnalyticsTimeSeriesGranularity, GetAnalyticsTimeSeriesGroupBy, GetAnalyticsTimeSeriesMetric, type GetAnalyticsTimeSeriesParams, type GetAnalyticsTimeSeriesQueryResult, type GetArtifactEnvelope, type GetArtifactMetadataKeysEnvelope, type GetArtifactMetadataKeysParams, type GetArtifactMetadataKeysQueryResult, type GetArtifactQueryResult, type GetArtifactStatusSummaryEnvelope, type GetArtifactStatusSummaryParams, type GetArtifactStatusSummaryQueryResult, type GetArtifactUploadUrlBody, type GetArtifactUploadUrlEnvelope, type GetArtifactUploadUrlEnvelopeData, type GetArtifactUploadUrlMutationResult, type GetCallAnalyticsEnvelope, type GetCallAnalyticsParams, type GetCallAnalyticsQueryResult, type GetCallEnvelope, type GetCallEvaluationEnvelope, type GetCallEvaluationQueryResult, type GetCallParams, type GetCallQueryResult, type GetCaseEnvelope, GetCaseEnvironment, type GetCaseParams, type GetCaseQueryResult, type GetChatAgentEnvelope, type GetChatAgentPromptEnvelope, type GetChatAgentPromptQueryResult, type GetChatAgentQueryResult, type GetChatEnvelope, type GetChatQueryResult, type GetEmailEnvelope, type GetEmailQueryResult, type GetEvalRunEnvelope, type GetEvalRunEnvelopeData, GetEvalRunEnvelopeDataStatus, type GetEvalRunQueryResult, type GetExtractCitationsEnvelope, type GetExtractCitationsEnvelopeData, type GetExtractCitationsEnvelopeDataChunks, type GetExtractCitationsEnvelopeDataChunksBoundingBox, type GetExtractCitationsQueryResult, type GetExtractEnvelope, type GetExtractQueryResult, type GetExtractorEnvelope, type GetExtractorJobEnvelope, type GetExtractorJobQueryResult, type GetExtractorJobResponse, type GetExtractorQueryResult, type GetExtractorResponse, type GetInformationRequestEnvelope, type GetInformationRequestQueryResult, type GetNotificationEnvelope, type GetNotificationQueryResult, GetOAuthUrlCodeChallengeMethod, type GetOAuthUrlEnvelope, type GetOAuthUrlParams, GetOAuthUrlProvider, type GetOAuthUrlQueryResult, type GetPartnerJwksQueryResult, type GetProfileEnvelope, type GetProfileQueryResult, type GetPublicChatAgentEnvelope, type GetPublicChatAgentQueryResult, type GetScheduleEnvelope, type GetScheduleQueryResult, type GetSecretEnvelope, type GetSecretQueryResult, type GetSessionTokenBody, type GetSessionTokenEnvelope, type GetSessionTokenEnvelopeData, type GetSessionTokenMutationResult, type GetToolEnvelope, type GetToolQueryResult, type GetToolResponse, type GetToolVersionChangeSummaryEnvelope, type GetToolVersionChangeSummaryQueryResult, type GetToolVersionEnvelope, type GetToolVersionQueryResult, type GetVoiceAgentEnvelope, type GetVoiceAgentPlaceholdersEnvelope, type GetVoiceAgentPlaceholdersQueryResult, type GetVoiceAgentPromptEnvelope, type GetVoiceAgentPromptParams, type GetVoiceAgentPromptQueryResult, type GetVoiceAgentQueryResult, type GetVoiceAgentResponse, type GetVoiceAgentVersionChangeSummaryEnvelope, type GetVoiceAgentVersionChangeSummaryQueryResult, type GetVoiceAgentVersionEnvelope, type GetVoiceAgentVersionQueryResult, type GetWebhookEnvelope, type GetWebhookQueryResult, type GetWorkerEnvelope, type GetWorkerPromptEnvelope, type GetWorkerPromptParams, type GetWorkerPromptQueryResult, type GetWorkerQueryResult, type GetWorkerRunEnvelope, type GetWorkerRunQueryResult, type GetWorkerRunResponse, type GetWorkerVersionChangeSummaryEnvelope, type GetWorkerVersionChangeSummaryQueryResult, type GetWorkerVersionEnvelope, type GetWorkerVersionQueryResult, type Inbox, type InboxAddresses, type InboxAvailability, type InboxList, InboxProcessorType, type InboxWebhookList, type InformationRequest, InformationRequestEnvironment, type InformationRequestList, type InformationRequestMetadata, type InviteTeamMemberBody, type InviteTeamMemberEnvelope, type InviteTeamMemberMutationResult, type ListAgentWebhooksEnvelope, ListAgentWebhooksEnvironment, type ListAgentWebhooksParams, type ListAgentWebhooksQueryResult, type ListApiKeysEnvelope, ListApiKeysIncludeRevoked, type ListApiKeysParams, type ListApiKeysQueryResult, type ListArtifactsEnvelope, type ListArtifactsEnvelopeMeta, ListArtifactsEnvironment, type ListArtifactsParams, type ListArtifactsQueryResult, ListArtifactsSortBy, ListArtifactsSortOrder, ListArtifactsStatus, type ListCallFeedbackEnvelope, type ListCallFeedbackEnvelopeMeta, type ListCallFeedbackParams, type ListCallFeedbackQueryResult, ListCallFeedbackSortBy, ListCallFeedbackSortOrder, ListCallsDirection, type ListCallsEnvelope, type ListCallsEnvelopeMeta, ListCallsEnvironment, type ListCallsParams, type ListCallsQueryResult, ListCallsSortBy, ListCallsSortOrder, ListCallsStatus, ListCaseLinksEntityType, type ListCaseLinksEnvelope, type ListCaseLinksEnvelopeMeta, ListCaseLinksEnvironment, type ListCaseLinksParams, type ListCaseLinksQueryResult, ListCaseLinksSortBy, ListCaseLinksSortOrder, type ListCasesEnvelope, type ListCasesEnvelopeMeta, ListCasesEnvironment, type ListCasesParams, type ListCasesQueryResult, ListCasesSortBy, ListCasesSortOrder, type ListChatAgentsEnvelope, type ListChatAgentsEnvelopeMeta, type ListChatAgentsParams, type ListChatAgentsQueryResult, ListChatAgentsSortBy, ListChatAgentsSortOrder, type ListChatMessagesEnvelope, type ListChatMessagesEnvelopeMeta, type ListChatMessagesParams, type ListChatMessagesQueryResult, ListChatMessagesSortBy, ListChatMessagesSortOrder, type ListChatsEnvelope, type ListChatsEnvelopeMeta, ListChatsEnvironment, type ListChatsParams, type ListChatsQueryResult, ListChatsSortBy, ListChatsSortOrder, type ListDispatchesEnvelope, type ListDispatchesEnvelopeMeta, type ListDispatchesParams, type ListDispatchesQueryResult, ListDispatchesSortBy, ListDispatchesSortOrder, ListDispatchesTriggerType, type ListEmailThreadsEnvelope, type ListEmailThreadsEnvelopeMeta, ListEmailThreadsEnvironment, type ListEmailThreadsParams, type ListEmailThreadsQueryResult, ListEmailThreadsSortBy, ListEmailThreadsSortOrder, type ListEmailsEnvelope, type ListEmailsEnvelopeMeta, ListEmailsEnvironment, type ListEmailsParams, type ListEmailsQueryResult, ListEmailsSortBy, ListEmailsSortOrder, type ListExtractorJobsEnvelope, type ListExtractorJobsEnvelopeMeta, type ListExtractorJobsParams, type ListExtractorJobsQueryResult, ListExtractorJobsSortBy, ListExtractorJobsSortOrder, ListExtractorJobsStatus, type ListExtractorsEnvelope, type ListExtractorsEnvelopeMeta, type ListExtractorsParams, type ListExtractorsQueryResult, ListExtractorsSortBy, ListExtractorsSortOrder, type ListExtractsEnvelope, type ListExtractsEnvelopeMeta, ListExtractsEnvironment, type ListExtractsParams, type ListExtractsQueryResult, ListExtractsSortBy, ListExtractsSortOrder, type ListInboxWebhooksEnvelope, ListInboxWebhooksEnvironment, type ListInboxWebhooksParams, type ListInboxWebhooksQueryResult, type ListInboxesEnvelope, type ListInboxesEnvelopeMeta, type ListInboxesParams, type ListInboxesQueryResult, ListInboxesSortBy, ListInboxesSortOrder, type ListInformationRequestsEnvelope, type ListInformationRequestsEnvelopeMeta, ListInformationRequestsEnvironment, type ListInformationRequestsParams, type ListInformationRequestsQueryResult, ListInformationRequestsResolved, ListInformationRequestsSortBy, ListInformationRequestsSortOrder, type ListJobsEnvelope, type ListJobsEnvelopeMeta, type ListJobsParams, type ListJobsQueryResult, ListJobsStatusItem, type ListNotificationWebhooksEnvelope, ListNotificationWebhooksEnvironment, type ListNotificationWebhooksParams, type ListNotificationWebhooksQueryResult, type ListNotificationsEnvelope, type ListNotificationsEnvelopeMeta, type ListNotificationsParams, type ListNotificationsQueryResult, ListNotificationsSortBy, ListNotificationsSortOrder, type ListSchedulesEnvelope, type ListSchedulesEnvelopeMeta, ListSchedulesEnvironment, type ListSchedulesParams, type ListSchedulesQueryResult, ListSchedulesRuleType, ListSchedulesSortBy, ListSchedulesSortOrder, type ListSecretsEnvelope, type ListSecretsEnvelopeMeta, type ListSecretsParams, type ListSecretsQueryResult, ListSecretsSortBy, ListSecretsSortOrder, type ListTeamInvitationsEnvelope, type ListTeamInvitationsQueryResult, type ListTeamInvitationsResponse, type ListTeamMembersEnvelope, type ListTeamMembersQueryResult, type ListTeamMembersResponse, type ListToolVersionsEnvelope, type ListToolVersionsEnvelopeMeta, type ListToolVersionsParams, type ListToolVersionsQueryResult, ListToolVersionsSortBy, ListToolVersionsSortOrder, type ListToolsEnvelope, type ListToolsParams, type ListToolsQueryResult, ListToolsSortBy, ListToolsSortOrder, type ListVoiceAgentVersionsEnvelope, type ListVoiceAgentVersionsEnvelopeMeta, type ListVoiceAgentVersionsParams, type ListVoiceAgentVersionsQueryResult, ListVoiceAgentVersionsSortBy, ListVoiceAgentVersionsSortOrder, type ListVoiceAgentsEnvelope, type ListVoiceAgentsParams, type ListVoiceAgentsQueryResult, type ListWebhookDeliveriesEnvelope, type ListWebhookDeliveriesEnvelopeMeta, type ListWebhookDeliveriesParams, type ListWebhookDeliveriesQueryResult, ListWebhookDeliveriesSortOrder, type ListWebhooksEnvelope, ListWebhooksEnvironment, type ListWebhooksParams, type ListWebhooksQueryResult, type ListWorkerModelsEnvelope, type ListWorkerModelsQueryResult, type ListWorkerRunMessagesEnvelope, type ListWorkerRunMessagesParams, type ListWorkerRunMessagesQueryResult, type ListWorkerRunsEnvelope, type ListWorkerRunsEnvelopeMeta, ListWorkerRunsEnvironment, type ListWorkerRunsParams, type ListWorkerRunsQueryResult, ListWorkerRunsSortBy, ListWorkerRunsSortOrder, ListWorkerRunsStatus, type ListWorkerVersionsEnvelope, type ListWorkerVersionsEnvelopeMeta, type ListWorkerVersionsParams, type ListWorkerVersionsQueryResult, ListWorkerVersionsSortBy, ListWorkerVersionsSortOrder, type ListWorkerWebhooksEnvelope, ListWorkerWebhooksEnvironment, type ListWorkerWebhooksParams, type ListWorkerWebhooksQueryResult, type ListWorkersEnvelope, type ListWorkersEnvelopeMeta, type ListWorkersParams, type ListWorkersQueryResult, ListWorkersSortBy, ListWorkersSortOrder, type Notification, type NotificationList, type NotificationWebhookList, type NotifyAdminBody, type NotifyAdminEnvelope, type NotifyAdminMutationResult, type OAuthUrl, type OutboundJob, OutboundJobEnvironment, type OutboundJobList, type OutboundJobMetadata, type OutboundJobPayload, OutboundJobStatus, type PartnerJwks, type PartnerJwksKeysItem, type PartnerLaunchEnvelope, type PartnerLaunchEnvelopeData, type PartnerLaunchMutationResult, type PartnerLaunchParams, type PostChatMessageBody, type PostChatMessageEnvelope, type PostChatMessageMutationResult, type Profile, ProfilePermissionsItem, ProfileRole, type ProfileTenant, type ProfileTenants, type PromoteToolVersionBody, type PromoteToolVersionEnvelope, type PromoteToolVersionMutationResult, type PromoteVoiceAgentVersionBody, PromoteVoiceAgentVersionBodyEnvironment, type PromoteVoiceAgentVersionEnvelope, type PromoteVoiceAgentVersionMutationResult, type PromoteWorkerVersionBody, type PromoteWorkerVersionEnvelope, type PromoteWorkerVersionMutationResult, type PromotedToolVersion, type PromotedVoiceAgentVersion, PromotedVoiceAgentVersionEnvironment, type PromotedWorkerVersion, type PublicChatAgent, type RecurrencePattern, type RecurrencePatternOutput, type RefreshTokenBody, type RefreshTokenEnvelope, type RefreshTokenMutationResult, type RemoveCaseLinkEnvelope, RemoveCaseLinkEnvironment, type RemoveCaseLinkMutationResult, type RemoveCaseLinkParams, type RemoveCaseLinkResponse, type RemoveMemberMutationResult, type ReplyToEmailBody, type ReplyToEmailBodyAttachmentsItem, type ReplyToEmailEnvelope, type ReplyToEmailMutationResult, type RequestPasswordResetBody, type RequestPasswordResetEnvelope, type RequestPasswordResetMutationResult, type RequestPasswordResetResponse, type ResendTeamInvitationEnvelope, type ResendTeamInvitationMutationResult, type ResetPasswordBody, type ResetPasswordEnvelope, type ResetPasswordMutationResult, type ResetPasswordResponse, type ResolveInformationRequestBody, type ResolveInformationRequestEnvelope, type ResolveInformationRequestMutationResult, type RevokeApiKeyEnvelope, type RevokeApiKeyMutationResult, type RevokeTeamInvitationMutationResult, type RunEvalBody, type RunEvalEnvelope, type RunEvalEnvelopeData, RunEvalEnvelopeDataStatus, type RunEvalMutationResult, type Schedule, type ScheduleAction, type ScheduleActionOutput, ScheduleEnvironmentsItem, type ScheduleJobBody, ScheduleJobBodyEnvironment, type ScheduleJobBodyMetadata, type ScheduleJobBodyPayload, type ScheduleJobEnvelope, type ScheduleJobMutationResult, type ScheduleList, type ScheduleRule, type ScheduleRuleOutput, type SearchCasesEnvelope, type SearchCasesEnvelopeMeta, type SearchCasesParams, type SearchCasesQueryResult, type Secret, type SecretList, type SendEmailBody, type SendEmailBodyAttachmentsItem, SendEmailBodyEnvironment, type SendEmailEnvelope, type SendEmailMutationResult, type SignInBody, type SignInEnvelope, type SignInMutationResult, type SignUpBody, type SignUpEnvelope, type SignUpMutationResult, type SignUpResponse, type TeamInvitation, TeamInvitationState, type TeamMember, TeamMemberRole, type TestWebhookBody, TestWebhookBodyEnvironment, type TestWebhookEnvelope, type TestWebhookMutationResult, ToolEnvironment, type ToolExecutionResult, type ToolExecutionResultError, type ToolExecutionResultTracesItem, type ToolList, type ToolVersion, type ToolVersionChangeSummary, type ToolVersionDetail, type ToolVersionDetailSchema, type ToolVersionList, type ToolVersions, type UpdateApiKeyBody, UpdateApiKeyBodyRole, type UpdateApiKeyEnvelope, type UpdateApiKeyMutationResult, type UpdateArtifactMetadataBody, type UpdateArtifactMetadataBodyMetadata, type UpdateArtifactMetadataEnvelope, type UpdateArtifactMetadataMutationResult, type UpdateCallControlsBody, type UpdateCallControlsEnvelope, type UpdateCallControlsMutationResult, type UpdateChatAgentEnvelope, type UpdateChatAgentMutationResult, type UpdateChatAgentPromptBody, type UpdateChatAgentPromptEnvelope, type UpdateChatAgentPromptMutationResult, type UpdateChatAgentRequest, type UpdateExtractorBody, type UpdateExtractorBodySchema, type UpdateExtractorEnvelope, type UpdateExtractorMutationResult, type UpdateInboxBody, type UpdateInboxBodyProcessor, UpdateInboxBodyProcessorType, type UpdateInboxEnvelope, type UpdateInboxMutationResult, type UpdateMemberRoleBody, UpdateMemberRoleBodyRole, type UpdateMemberRoleEnvelope, type UpdateMemberRoleMutationResult, type UpdateMemberRoleResponse, type UpdateScheduleBody, UpdateScheduleBodyEnvironmentsItem, type UpdateScheduleEnvelope, type UpdateScheduleMutationResult, type UpdateSecretBody, type UpdateSecretEnvelope, type UpdateSecretMutationResult, type UpdateToolBody, type UpdateToolEnvelope, type UpdateToolMutationResult, type UpdateVoiceAgentBody, UpdateVoiceAgentBodyCallProcessorType, UpdateVoiceAgentBodyNoiseCancellation, type UpdateVoiceAgentCallControlsResponse, type UpdateVoiceAgentEnvelope, type UpdateVoiceAgentModelsBody, UpdateVoiceAgentModelsBodyFallbackLlmModel, UpdateVoiceAgentModelsBodyFallbackSttModel, UpdateVoiceAgentModelsBodyFallbackTtsModel, UpdateVoiceAgentModelsBodyFallbackTtsProvider, UpdateVoiceAgentModelsBodyLanguage, UpdateVoiceAgentModelsBodyLlmModel, UpdateVoiceAgentModelsBodySttModel, UpdateVoiceAgentModelsBodyTtsModel, UpdateVoiceAgentModelsBodyTtsProvider, type UpdateVoiceAgentModelsEnvelope, type UpdateVoiceAgentModelsMutationResult, type UpdateVoiceAgentModelsResponse, type UpdateVoiceAgentMutationResult, type UpdateVoiceAgentPromptBody, type UpdateVoiceAgentPromptEnvelope, type UpdateVoiceAgentPromptMutationResult, type UpdateVoiceAgentResponse, type UpdateWebhookBody, type UpdateWebhookBodyAuth, UpdateWebhookBodyEnvironmentsItem, type UpdateWebhookEnvelope, type UpdateWebhookMutationResult, type UpdateWorkerBody, type UpdateWorkerBodySchema, type UpdateWorkerEnvelope, type UpdateWorkerMcpsBody, type UpdateWorkerMcpsEnvelope, type UpdateWorkerMcpsMutationResult, type UpdateWorkerMutationResult, type UpdateWorkerPromptBody, type UpdateWorkerPromptEnvelope, type UpdateWorkerPromptMutationResult, type UploadFileBody, type UploadFileBodyMetadata, type UploadFileBodyProcessingOptions, type UploadFileEnvelope, type UploadFileMutationResult, type UploadFileResponse, type VoiceAgent, VoiceAgentBackgroundSounds, VoiceAgentCallProcessorType, VoiceAgentDirection, VoiceAgentFallbackLlmModel, VoiceAgentFallbackSttModel, VoiceAgentFallbackTtsModel, VoiceAgentFallbackTtsProvider, VoiceAgentLanguage, type VoiceAgentList, VoiceAgentLlmModel, VoiceAgentNoiseCancellation, type VoiceAgentPlaceholders, type VoiceAgentPrompt, type VoiceAgentPromptUpdated, VoiceAgentSttModel, VoiceAgentTtsModel, VoiceAgentTtsProvider, type VoiceAgentVersion, VoiceAgentVersionActiveEnvironmentsItem, type VoiceAgentVersionChangeSummary, type VoiceAgentVersionDetail, VoiceAgentVersionDetailActiveEnvironmentsItem, VoiceAgentVersionDetailBackgroundSounds, VoiceAgentVersionDetailCallProcessorType, VoiceAgentVersionDetailDirection, VoiceAgentVersionDetailFallbackLlmModel, VoiceAgentVersionDetailFallbackSttModel, VoiceAgentVersionDetailFallbackTtsModel, VoiceAgentVersionDetailFallbackTtsProvider, VoiceAgentVersionDetailLanguage, VoiceAgentVersionDetailLlmModel, VoiceAgentVersionDetailNoiseCancellation, VoiceAgentVersionDetailSttModel, VoiceAgentVersionDetailTtsModel, VoiceAgentVersionDetailTtsProvider, type VoiceAgentVersionList, type VoiceAgentWebhookList, type VoiceAgentWithTestPhoneNumber, VoiceAgentWithTestPhoneNumberBackgroundSounds, VoiceAgentWithTestPhoneNumberCallProcessorType, VoiceAgentWithTestPhoneNumberDirection, VoiceAgentWithTestPhoneNumberFallbackLlmModel, VoiceAgentWithTestPhoneNumberFallbackSttModel, VoiceAgentWithTestPhoneNumberFallbackTtsModel, VoiceAgentWithTestPhoneNumberFallbackTtsProvider, VoiceAgentWithTestPhoneNumberLanguage, VoiceAgentWithTestPhoneNumberLlmModel, VoiceAgentWithTestPhoneNumberNoiseCancellation, VoiceAgentWithTestPhoneNumberSttModel, VoiceAgentWithTestPhoneNumberTtsModel, VoiceAgentWithTestPhoneNumberTtsProvider, type Webhook, type WebhookDelivery, type WebhookDeliveryList, WebhookEnvironmentsItem, type WebhookScope, type WebhookTestResult, type Worker, WorkerEnvironment, type WorkerExecuteToolBody, WorkerExecuteToolBodyEnvironment, type WorkerExecuteToolBodyParams, type WorkerExecuteToolEnvelope, type WorkerExecuteToolMutationResult, type WorkerGetToolEnvelope, type WorkerGetToolQueryResult, type WorkerList, type WorkerListToolsEnvelope, type WorkerListToolsParams, type WorkerListToolsQueryResult, WorkerListToolsSortBy, WorkerListToolsSortOrder, type WorkerMcp, WorkerMcpName, type WorkerMcpOutput, WorkerMcpOutputName, type WorkerModel, type WorkerModelList, type WorkerNotifyAdminResult, WorkerPermission, type WorkerPrompt, type WorkerPromptUpdated, type WorkerRun, type WorkerRunCreated, WorkerRunCreatedEnvironment, type WorkerRunCreatedScope, WorkerRunCreatedStatus, WorkerRunEnvironment, type WorkerRunList, type WorkerRunMessage, type WorkerRunMessageList, type WorkerRunMessageMessage, type WorkerRunScope, WorkerRunStatus, type WorkerSchema, type WorkerSummary, type WorkerVersion, type WorkerVersionChangeSummary, type WorkerVersionDetail, type WorkerVersionDetailSchema, type WorkerVersionList, type WorkerVersions, type WorkerWebhookList, addCaseLinks, cancelJob, cancelWorkerRun, checkInboxAvailability, configure, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, createCase, createChat, createChatAgent, createExtractor, createExtractorJob, createExtractorWebhook, createInbox, createInboxWebhook, createInformationRequest, createNotificationWebhook, createSchedule, createSecret, createTool, createVoiceAgent, createWorker, createWorkerEvalFromRun, createWorkerRun, createWorkerWebhook, deleteArtifact, deleteCallFeedback, deleteCase, deleteChatAgent, deleteEmail, deleteExtractor, deleteInbox, deleteSchedule, deleteSecret, deleteTool, deleteVoiceAgent, deleteWebhook, deleteWorker, executeCode, generateCodeChallenge, generateCodeVerifier, getAddCaseLinksMutationFetcher, getAddCaseLinksMutationKey, getAddCaseLinksUrl, getAnalyticsTimeSeries, getArtifact, getArtifactMetadataKeys, getArtifactStatusSummary, getArtifactUploadUrl, getCall, getCallAnalytics, getCallEvaluation, getCancelJobMutationFetcher, getCancelJobMutationKey, getCancelJobUrl, getCancelWorkerRunMutationFetcher, getCancelWorkerRunMutationKey, getCancelWorkerRunUrl, getCase, getChat, getChatAgent, getChatAgentPrompt, getCheckInboxAvailabilityKey, getCheckInboxAvailabilityUrl, getConfig, getCreateAgentWebhookMutationFetcher, getCreateAgentWebhookMutationKey, getCreateAgentWebhookUrl, getCreateApiKeyMutationFetcher, getCreateApiKeyMutationKey, getCreateApiKeyUrl, getCreateArtifactMutationFetcher, getCreateArtifactMutationKey, getCreateArtifactUrl, getCreateCallFeedbackMutationFetcher, getCreateCallFeedbackMutationKey, getCreateCallFeedbackUrl, getCreateCaseMutationFetcher, getCreateCaseMutationKey, getCreateCaseUrl, getCreateChatAgentMutationFetcher, getCreateChatAgentMutationKey, getCreateChatAgentUrl, getCreateChatMutationFetcher, getCreateChatMutationKey, getCreateChatUrl, getCreateExtractorJobMutationFetcher, getCreateExtractorJobMutationKey, getCreateExtractorJobUrl, getCreateExtractorMutationFetcher, getCreateExtractorMutationKey, getCreateExtractorUrl, getCreateExtractorWebhookMutationFetcher, getCreateExtractorWebhookMutationKey, getCreateExtractorWebhookUrl, getCreateInboxMutationFetcher, getCreateInboxMutationKey, getCreateInboxUrl, getCreateInboxWebhookMutationFetcher, getCreateInboxWebhookMutationKey, getCreateInboxWebhookUrl, getCreateInformationRequestMutationFetcher, getCreateInformationRequestMutationKey, getCreateInformationRequestUrl, getCreateNotificationWebhookMutationFetcher, getCreateNotificationWebhookMutationKey, getCreateNotificationWebhookUrl, getCreateScheduleMutationFetcher, getCreateScheduleMutationKey, getCreateScheduleUrl, getCreateSecretMutationFetcher, getCreateSecretMutationKey, getCreateSecretUrl, getCreateToolMutationFetcher, getCreateToolMutationKey, getCreateToolUrl, getCreateVoiceAgentMutationFetcher, getCreateVoiceAgentMutationKey, getCreateVoiceAgentUrl, getCreateWorkerEvalFromRunMutationFetcher, getCreateWorkerEvalFromRunMutationKey, getCreateWorkerEvalFromRunUrl, getCreateWorkerMutationFetcher, getCreateWorkerMutationKey, getCreateWorkerRunMutationFetcher, getCreateWorkerRunMutationKey, getCreateWorkerRunUrl, getCreateWorkerUrl, getCreateWorkerWebhookMutationFetcher, getCreateWorkerWebhookMutationKey, getCreateWorkerWebhookUrl, getDeleteArtifactMutationFetcher, getDeleteArtifactMutationKey, getDeleteArtifactUrl, getDeleteCallFeedbackMutationFetcher, getDeleteCallFeedbackMutationKey, getDeleteCallFeedbackUrl, getDeleteCaseMutationFetcher, getDeleteCaseMutationKey, getDeleteCaseUrl, getDeleteChatAgentMutationFetcher, getDeleteChatAgentMutationKey, getDeleteChatAgentUrl, getDeleteEmailMutationFetcher, getDeleteEmailMutationKey, getDeleteEmailUrl, getDeleteExtractorMutationFetcher, getDeleteExtractorMutationKey, getDeleteExtractorUrl, getDeleteInboxMutationFetcher, getDeleteInboxMutationKey, getDeleteInboxUrl, getDeleteScheduleMutationFetcher, getDeleteScheduleMutationKey, getDeleteScheduleUrl, getDeleteSecretMutationFetcher, getDeleteSecretMutationKey, getDeleteSecretUrl, getDeleteToolMutationFetcher, getDeleteToolMutationKey, getDeleteToolUrl, getDeleteVoiceAgentMutationFetcher, getDeleteVoiceAgentMutationKey, getDeleteVoiceAgentUrl, getDeleteWebhookMutationFetcher, getDeleteWebhookMutationKey, getDeleteWebhookUrl, getDeleteWorkerMutationFetcher, getDeleteWorkerMutationKey, getDeleteWorkerUrl, getEmail, getEvalRun, getExecuteCodeMutationFetcher, getExecuteCodeMutationKey, getExecuteCodeUrl, getExtract, getExtractCitations, getExtractor, getExtractorJob, getGetAnalyticsTimeSeriesKey, getGetAnalyticsTimeSeriesUrl, getGetArtifactKey, getGetArtifactMetadataKeysKey, getGetArtifactMetadataKeysUrl, getGetArtifactStatusSummaryKey, getGetArtifactStatusSummaryUrl, getGetArtifactUploadUrlMutationFetcher, getGetArtifactUploadUrlMutationKey, getGetArtifactUploadUrlUrl, getGetArtifactUrl, getGetCallAnalyticsKey, getGetCallAnalyticsUrl, getGetCallEvaluationKey, getGetCallEvaluationUrl, getGetCallKey, getGetCallUrl, getGetCaseKey, getGetCaseUrl, getGetChatAgentKey, getGetChatAgentPromptKey, getGetChatAgentPromptUrl, getGetChatAgentUrl, getGetChatKey, getGetChatUrl, getGetEmailKey, getGetEmailUrl, getGetEvalRunKey, getGetEvalRunUrl, getGetExtractCitationsKey, getGetExtractCitationsUrl, getGetExtractKey, getGetExtractUrl, getGetExtractorJobKey, getGetExtractorJobUrl, getGetExtractorKey, getGetExtractorUrl, getGetInformationRequestKey, getGetInformationRequestUrl, getGetNotificationKey, getGetNotificationUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetPartnerJwksKey, getGetPartnerJwksUrl, getGetProfileKey, getGetProfileUrl, getGetPublicChatAgentKey, getGetPublicChatAgentUrl, getGetScheduleKey, getGetScheduleUrl, getGetSecretKey, getGetSecretUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetToolVersionChangeSummaryKey, getGetToolVersionChangeSummaryUrl, getGetToolVersionKey, getGetToolVersionUrl, getGetVoiceAgentKey, getGetVoiceAgentPlaceholdersKey, getGetVoiceAgentPlaceholdersUrl, getGetVoiceAgentPromptKey, getGetVoiceAgentPromptUrl, getGetVoiceAgentUrl, getGetVoiceAgentVersionChangeSummaryKey, getGetVoiceAgentVersionChangeSummaryUrl, getGetVoiceAgentVersionKey, getGetVoiceAgentVersionUrl, getGetWebhookKey, getGetWebhookUrl, getGetWorkerKey, getGetWorkerPromptKey, getGetWorkerPromptUrl, getGetWorkerRunKey, getGetWorkerRunUrl, getGetWorkerUrl, getGetWorkerVersionChangeSummaryKey, getGetWorkerVersionChangeSummaryUrl, getGetWorkerVersionKey, getGetWorkerVersionUrl, getInformationRequest, getInviteTeamMemberMutationFetcher, getInviteTeamMemberMutationKey, getInviteTeamMemberUrl, getListAgentWebhooksKey, getListAgentWebhooksUrl, getListApiKeysKey, getListApiKeysUrl, getListArtifactsKey, getListArtifactsUrl, getListCallFeedbackKey, getListCallFeedbackUrl, getListCallsKey, getListCallsUrl, getListCaseLinksKey, getListCaseLinksUrl, getListCasesKey, getListCasesUrl, getListChatAgentsKey, getListChatAgentsUrl, getListChatMessagesKey, getListChatMessagesUrl, getListChatsKey, getListChatsUrl, getListDispatchesKey, getListDispatchesUrl, getListEmailThreadsKey, getListEmailThreadsUrl, getListEmailsKey, getListEmailsUrl, getListExtractorJobsKey, getListExtractorJobsUrl, getListExtractorsKey, getListExtractorsUrl, getListExtractsKey, getListExtractsUrl, getListInboxWebhooksKey, getListInboxWebhooksUrl, getListInboxesKey, getListInboxesUrl, getListInformationRequestsKey, getListInformationRequestsUrl, getListJobsKey, getListJobsUrl, getListNotificationWebhooksKey, getListNotificationWebhooksUrl, getListNotificationsKey, getListNotificationsUrl, getListSchedulesKey, getListSchedulesUrl, getListSecretsKey, getListSecretsUrl, getListTeamInvitationsKey, getListTeamInvitationsUrl, getListTeamMembersKey, getListTeamMembersUrl, getListToolVersionsKey, getListToolVersionsUrl, getListToolsKey, getListToolsUrl, getListVoiceAgentVersionsKey, getListVoiceAgentVersionsUrl, getListVoiceAgentsKey, getListVoiceAgentsUrl, getListWebhookDeliveriesKey, getListWebhookDeliveriesUrl, getListWebhooksKey, getListWebhooksUrl, getListWorkerModelsKey, getListWorkerModelsUrl, getListWorkerRunMessagesKey, getListWorkerRunMessagesUrl, getListWorkerRunsKey, getListWorkerRunsUrl, getListWorkerVersionsKey, getListWorkerVersionsUrl, getListWorkerWebhooksKey, getListWorkerWebhooksUrl, getListWorkersKey, getListWorkersUrl, getNotification, getNotifyAdminMutationFetcher, getNotifyAdminMutationKey, getNotifyAdminUrl, getOAuthUrl, getPartnerJwks, getPartnerLaunchMutationFetcher, getPartnerLaunchMutationKey, getPartnerLaunchUrl, getPostChatMessageMutationFetcher, getPostChatMessageMutationKey, getPostChatMessageUrl, getProfile, getPromoteToolVersionMutationFetcher, getPromoteToolVersionMutationKey, getPromoteToolVersionUrl, getPromoteVoiceAgentVersionMutationFetcher, getPromoteVoiceAgentVersionMutationKey, getPromoteVoiceAgentVersionUrl, getPromoteWorkerVersionMutationFetcher, getPromoteWorkerVersionMutationKey, getPromoteWorkerVersionUrl, getPublicChatAgent, getRefreshTokenMutationFetcher, getRefreshTokenMutationKey, getRefreshTokenUrl, getRemoveCaseLinkMutationFetcher, getRemoveCaseLinkMutationKey, getRemoveCaseLinkUrl, getRemoveMemberMutationFetcher, getRemoveMemberMutationKey, getRemoveMemberUrl, getReplyToEmailMutationFetcher, getReplyToEmailMutationKey, getReplyToEmailUrl, getRequestPasswordResetMutationFetcher, getRequestPasswordResetMutationKey, getRequestPasswordResetUrl, getResendTeamInvitationMutationFetcher, getResendTeamInvitationMutationKey, getResendTeamInvitationUrl, getResetPasswordMutationFetcher, getResetPasswordMutationKey, getResetPasswordUrl, getResolveInformationRequestMutationFetcher, getResolveInformationRequestMutationKey, getResolveInformationRequestUrl, getRevokeApiKeyMutationFetcher, getRevokeApiKeyMutationKey, getRevokeApiKeyUrl, getRevokeTeamInvitationMutationFetcher, getRevokeTeamInvitationMutationKey, getRevokeTeamInvitationUrl, getRunEvalMutationFetcher, getRunEvalMutationKey, getRunEvalUrl, getSchedule, getScheduleJobMutationFetcher, getScheduleJobMutationKey, getScheduleJobUrl, getSearchCasesKey, getSearchCasesUrl, getSecret, getSendEmailMutationFetcher, getSendEmailMutationKey, getSendEmailUrl, getSessionToken, getSignInMutationFetcher, getSignInMutationKey, getSignInUrl, getSignUpMutationFetcher, getSignUpMutationKey, getSignUpUrl, getTestWebhookMutationFetcher, getTestWebhookMutationKey, getTestWebhookUrl, getTool, getToolVersion, getToolVersionChangeSummary, getUpdateApiKeyMutationFetcher, getUpdateApiKeyMutationKey, getUpdateApiKeyUrl, getUpdateArtifactMetadataMutationFetcher, getUpdateArtifactMetadataMutationKey, getUpdateArtifactMetadataUrl, getUpdateCallControlsMutationFetcher, getUpdateCallControlsMutationKey, getUpdateCallControlsUrl, getUpdateChatAgentMutationFetcher, getUpdateChatAgentMutationKey, getUpdateChatAgentPromptMutationFetcher, getUpdateChatAgentPromptMutationKey, getUpdateChatAgentPromptUrl, getUpdateChatAgentUrl, getUpdateExtractorMutationFetcher, getUpdateExtractorMutationKey, getUpdateExtractorUrl, getUpdateInboxMutationFetcher, getUpdateInboxMutationKey, getUpdateInboxUrl, getUpdateMemberRoleMutationFetcher, getUpdateMemberRoleMutationKey, getUpdateMemberRoleUrl, getUpdateScheduleMutationFetcher, getUpdateScheduleMutationKey, getUpdateScheduleUrl, getUpdateSecretMutationFetcher, getUpdateSecretMutationKey, getUpdateSecretUrl, getUpdateToolMutationFetcher, getUpdateToolMutationKey, getUpdateToolUrl, getUpdateVoiceAgentModelsMutationFetcher, getUpdateVoiceAgentModelsMutationKey, getUpdateVoiceAgentModelsUrl, getUpdateVoiceAgentMutationFetcher, getUpdateVoiceAgentMutationKey, getUpdateVoiceAgentPromptMutationFetcher, getUpdateVoiceAgentPromptMutationKey, getUpdateVoiceAgentPromptUrl, getUpdateVoiceAgentUrl, getUpdateWebhookMutationFetcher, getUpdateWebhookMutationKey, getUpdateWebhookUrl, getUpdateWorkerMcpsMutationFetcher, getUpdateWorkerMcpsMutationKey, getUpdateWorkerMcpsUrl, getUpdateWorkerMutationFetcher, getUpdateWorkerMutationKey, getUpdateWorkerPromptMutationFetcher, getUpdateWorkerPromptMutationKey, getUpdateWorkerPromptUrl, getUpdateWorkerUrl, getUploadFileMutationFetcher, getUploadFileMutationKey, getUploadFileUrl, getVoiceAgent, getVoiceAgentPlaceholders, getVoiceAgentPrompt, getVoiceAgentVersion, getVoiceAgentVersionChangeSummary, getWebhook, getWorker, getWorkerExecuteToolMutationFetcher, getWorkerExecuteToolMutationKey, getWorkerExecuteToolUrl, getWorkerGetToolKey, getWorkerGetToolUrl, getWorkerListToolsKey, getWorkerListToolsUrl, getWorkerPrompt, getWorkerRun, getWorkerVersion, getWorkerVersionChangeSummary, inviteTeamMember, listAgentWebhooks, listApiKeys, listArtifacts, listCallFeedback, listCalls, listCaseLinks, listCases, listChatAgents, listChatMessages, listChats, listDispatches, listEmailThreads, listEmails, listExtractorJobs, listExtractors, listExtracts, listInboxWebhooks, listInboxes, listInformationRequests, listJobs, listNotificationWebhooks, listNotifications, listSchedules, listSecrets, listTeamInvitations, listTeamMembers, listToolVersions, listTools, listVoiceAgentVersions, listVoiceAgents, listWebhookDeliveries, listWebhooks, listWorkerModels, listWorkerRunMessages, listWorkerRuns, listWorkerVersions, listWorkerWebhooks, listWorkers, notifyAdmin, partnerLaunch, postChatMessage, promoteToolVersion, promoteVoiceAgentVersion, promoteWorkerVersion, refreshToken, removeCaseLink, removeMember, replyToEmail, requestPasswordReset, resendTeamInvitation, resetPassword, resolveInformationRequest, revokeApiKey, revokeTeamInvitation, runEval, scheduleJob, searchCases, sendEmail, signIn, signUp, testWebhook, updateApiKey, updateArtifactMetadata, updateCallControls, updateChatAgent, updateChatAgentPrompt, updateExtractor, updateInbox, updateMemberRole, updateSchedule, updateSecret, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateVoiceAgentPrompt, updateWebhook, updateWorker, updateWorkerMcps, updateWorkerPrompt, uploadFile, useAddCaseLinks, useCancelJob, useCancelWorkerRun, useCheckInboxAvailability, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateCase, useCreateChat, useCreateChatAgent, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateInbox, useCreateInboxWebhook, useCreateInformationRequest, useCreateNotificationWebhook, useCreateSchedule, useCreateSecret, useCreateTool, useCreateVoiceAgent, useCreateWorker, useCreateWorkerEvalFromRun, useCreateWorkerRun, useCreateWorkerWebhook, useDeleteArtifact, useDeleteCallFeedback, useDeleteCase, useDeleteChatAgent, useDeleteEmail, useDeleteExtractor, useDeleteInbox, useDeleteSchedule, useDeleteSecret, useDeleteTool, useDeleteVoiceAgent, useDeleteWebhook, useDeleteWorker, useExecuteCode, useGetAnalyticsTimeSeries, useGetArtifact, useGetArtifactMetadataKeys, useGetArtifactStatusSummary, useGetArtifactUploadUrl, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetCase, useGetChat, useGetChatAgent, useGetChatAgentPrompt, useGetEmail, useGetEvalRun, useGetExtract, useGetExtractCitations, useGetExtractor, useGetExtractorJob, useGetInformationRequest, useGetNotification, useGetOAuthUrl, useGetPartnerJwks, useGetProfile, useGetPublicChatAgent, useGetSchedule, useGetSecret, useGetSessionToken, useGetTool, useGetToolVersion, useGetToolVersionChangeSummary, useGetVoiceAgent, useGetVoiceAgentPlaceholders, useGetVoiceAgentPrompt, useGetVoiceAgentVersion, useGetVoiceAgentVersionChangeSummary, useGetWebhook, useGetWorker, useGetWorkerPrompt, useGetWorkerRun, useGetWorkerVersion, useGetWorkerVersionChangeSummary, useInviteTeamMember, useListAgentWebhooks, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListCaseLinks, useListCases, useListChatAgents, useListChatMessages, useListChats, useListDispatches, useListEmailThreads, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListInboxWebhooks, useListInboxes, useListInformationRequests, useListJobs, useListNotificationWebhooks, useListNotifications, useListSchedules, useListSecrets, useListTeamInvitations, useListTeamMembers, useListToolVersions, useListTools, useListVoiceAgentVersions, useListVoiceAgents, useListWebhookDeliveries, useListWebhooks, useListWorkerModels, useListWorkerRunMessages, useListWorkerRuns, useListWorkerVersions, useListWorkerWebhooks, useListWorkers, useNotifyAdmin, usePartnerLaunch, usePostChatMessage, usePromoteToolVersion, usePromoteVoiceAgentVersion, usePromoteWorkerVersion, useRefreshToken, useRemoveCaseLink, useRemoveMember, useReplyToEmail, useRequestPasswordReset, useResendTeamInvitation, useResetPassword, useResolveInformationRequest, useRevokeApiKey, useRevokeTeamInvitation, useRunEval, useScheduleJob, useSearchCases, useSendEmail, useSignIn, useSignUp, useTestWebhook, useUpdateApiKey, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateChatAgent, useUpdateChatAgentPrompt, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateSchedule, useUpdateSecret, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateVoiceAgentPrompt, useUpdateWebhook, useUpdateWorker, useUpdateWorkerMcps, useUpdateWorkerPrompt, useUploadFile, useWorkerExecuteTool, useWorkerGetTool, useWorkerListTools, workerExecuteTool, workerGetTool, workerListTools };
|
|
17177
|
+
export { type AddCaseLinksBody, type AddCaseLinksBodyEntitiesItem, AddCaseLinksBodyEntitiesItemEntityType, type AddCaseLinksEnvelope, AddCaseLinksEnvironment, type AddCaseLinksMutationResult, type AddCaseLinksParams, type AddCaseLinksResponse, type AnalyticsTimeSeries, AnalyticsTimeSeriesGranularity, AnalyticsTimeSeriesGroupBy, AnalyticsTimeSeriesMetric, type AnalyticsTimeSeriesPointsItem, type ApiKey, type ApiKeyCreated, ApiKeyCreatedRole, type ApiKeyList, ApiKeyRole, type Artifact, type ArtifactCreated, type ArtifactCreatedItem, type ArtifactDetail, type ArtifactDetailData, type ArtifactDetailDataMetadata, ArtifactDetailDataStatus, type ArtifactList, type ArtifactMetadata, type ArtifactMetadataKeys, type ArtifactMetadataKeysData, type ArtifactMetadataKeysDataValues, ArtifactStatus, type ArtifactStatusSummary, type AuthTokens, type AvallonConfig, AvallonError, type Call, type CallAnalytics, type CallAnalyticsCallsOverTimeItem, type CallAnalyticsDurationDistributionItem, type CallAnalyticsEvaluationOverTimeItem, type CallAnalyticsMetricPerformanceItem, type CallAnalyticsScoreDistributionItem, type CallAnalyticsSummary, type CallDetail, CallDetailDirection, CallDetailEnvironment, type CallDetailEvaluation, type CallDetailMetadata, CallDirection, CallEnvironment, type CallEvaluation, type CallEvaluationMetricsItem, type CallEvaluationProperty, type CallList, type CallMessage, type CallMessageMetadata, type CallMessageToolArguments, type CallMessageToolResult, type CallMetadata, type CancelJobEnvelope, type CancelJobMutationResult, type CancelWorkerRunEnvelope, type CancelWorkerRunMutationResult, type CaseDetail, type CaseLink, CaseLinkEntityType, type CaseLinkList, type CaseList, type CaseSearchResult, type CaseSummary, CaseSummaryEnvironment, type ChatAgent, type ChatAgentCreated, type ChatAgentDetail, type ChatAgentList, type ChatAgentPrompt, type ChatAgentPromptUpdated, type ChatCreated, type ChatHistory, type ChatHistoryMessagesItem, ChatHistoryMessagesItemRole, type ChatList, type ChatListItem, type ChatMessage, type ChatMessageCreated, type ChatMessageCreatedMessage, type ChatMessageCreatedMessageContentItem, type ChatMessageList, type ChatMessagePart, ChatMessageRole, type CheckInboxAvailabilityEnvelope, type CheckInboxAvailabilityParams, type CheckInboxAvailabilityQueryResult, type CodeTool, type CodeToolCreated, type CodeToolCreatedTool, type CodeToolCreatedToolSchema, type CodeToolSchema, type CodeToolSummary, type CodeToolUpdated, type ConfirmationResponse, type CreateAgentWebhookBody, CreateAgentWebhookBodyEnvironmentsItem, type CreateAgentWebhookEnvelope, type CreateAgentWebhookMutationResult, type CreateApiKeyBody, CreateApiKeyBodyEnvironment, CreateApiKeyBodyRole, type CreateApiKeyEnvelope, type CreateApiKeyMutationResult, type CreateArtifactBody, type CreateArtifactBodyMetadata, type CreateArtifactBodyProcessingOptions, type CreateArtifactEnvelope, type CreateArtifactMutationResult, type CreateCallFeedbackEnvelope, type CreateCallFeedbackMutationResult, type CreateCaseBody, CreateCaseBodyEnvironment, type CreateCaseEnvelope, type CreateCaseMutationResult, type CreateCaseResponse, type CreateChatAgentBody, type CreateChatAgentEnvelope, type CreateChatAgentMutationResult, type CreateChatBody, type CreateChatEnvelope, type CreateChatMutationResult, type CreateEvalBenchmarkBody, type CreateEvalBenchmarkEnvelope, type CreateEvalBenchmarkEnvelopeData, type CreateEvalBenchmarkEnvelopeDataRunSummary, type CreateEvalBenchmarkEnvelopeDataRunSummaryBaseline, type CreateEvalBenchmarkEnvelopeDataRunSummaryBaselineDurationSeconds, type CreateEvalBenchmarkEnvelopeDataRunSummaryBaselineFixtureMatchedRate, type CreateEvalBenchmarkEnvelopeDataRunSummaryBaselinePassRate, type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidate, type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidateDurationSeconds, type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidateFixtureMatchedRate, type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidatePassRate, type CreateEvalBenchmarkEnvelopeDataRunSummaryDelta, type CreateEvalBenchmarkEnvelopeDataRunsItem, CreateEvalBenchmarkEnvelopeDataRunsItemConfiguration, type CreateEvalBenchmarkEnvelopeDataRunsItemGrading, type CreateEvalBenchmarkEnvelopeDataRunsItemGradingExpectationsItem, type CreateEvalBenchmarkEnvelopeDataRunsItemGradingSummary, type CreateEvalBenchmarkEnvelopeDataRunsItemMetrics, type CreateEvalBenchmarkEnvelopeDataRunsItemMetricsFixtureHealth, CreateEvalBenchmarkEnvelopeDataRunsItemStatus, CreateEvalBenchmarkEnvelopeDataStatus, type CreateEvalBenchmarkMutationResult, type CreateExtractorBody, type CreateExtractorBodySchema, type CreateExtractorEnvelope, type CreateExtractorJobBody, type CreateExtractorJobBodyScope, type CreateExtractorJobEnvelope, type CreateExtractorJobMutationResult, type CreateExtractorMutationResult, type CreateExtractorWebhookBody, CreateExtractorWebhookBodyEnvironmentsItem, type CreateExtractorWebhookEnvelope, type CreateExtractorWebhookMutationResult, type CreateFeedbackRequest, type CreateInboxBody, CreateInboxBodyProcessorType, type CreateInboxEnvelope, type CreateInboxMutationResult, type CreateInboxWebhookBody, CreateInboxWebhookBodyEnvironmentsItem, type CreateInboxWebhookEnvelope, type CreateInboxWebhookMutationResult, type CreateInformationRequestBody, type CreateInformationRequestBodyMetadata, type CreateInformationRequestEnvelope, type CreateInformationRequestMutationResult, type CreateNotificationWebhookBody, CreateNotificationWebhookBodyEnvironmentsItem, type CreateNotificationWebhookEnvelope, type CreateNotificationWebhookMutationResult, type CreateScheduleBody, CreateScheduleBodyEnvironmentsItem, type CreateScheduleEnvelope, type CreateScheduleMutationResult, type CreateSecretBody, type CreateSecretEnvelope, type CreateSecretMutationResult, type CreateToolBody, type CreateToolEnvelope, type CreateToolMutationResult, type CreateVoiceAgentBody, CreateVoiceAgentBodyCallProcessorType, CreateVoiceAgentBodyDirection, CreateVoiceAgentBodyLanguage, CreateVoiceAgentBodyLlmModel, CreateVoiceAgentBodySttModel, CreateVoiceAgentBodyTtsModel, CreateVoiceAgentBodyTtsProvider, type CreateVoiceAgentEnvelope, type CreateVoiceAgentMutationResult, type CreateVoiceAgentResponse, type CreateWorkerBody, CreateWorkerBodyMcpType, type CreateWorkerEnvelope, type CreateWorkerEvalFromRunBody, type CreateWorkerEvalFromRunBodyGrader, type CreateWorkerEvalFromRunEnvelope, type CreateWorkerEvalFromRunEnvelopeData, type CreateWorkerEvalFromRunEnvelopeDataFixture, type CreateWorkerEvalFromRunEnvelopeDataFixtureScope, type CreateWorkerEvalFromRunEnvelopeDataGrader, type CreateWorkerEvalFromRunEnvelopeDataSource, CreateWorkerEvalFromRunEnvelopeDataSourceType, type CreateWorkerEvalFromRunEnvelopeDataTarget, CreateWorkerEvalFromRunEnvelopeDataTargetType, type CreateWorkerEvalFromRunEnvelopeDataToolMocksItem, type CreateWorkerEvalFromRunEnvelopeDataToolMocksItemInputSchema, type CreateWorkerEvalFromRunEnvelopeDataToolMocksItemMatch, type CreateWorkerEvalFromRunMutationResult, type CreateWorkerMutationResult, type CreateWorkerRunBody, CreateWorkerRunBodyEnvironment, type CreateWorkerRunBodyScope, type CreateWorkerRunEnvelope, type CreateWorkerRunMutationResult, type CreateWorkerWebhookBody, CreateWorkerWebhookBodyEnvironmentsItem, type CreateWorkerWebhookEnvelope, type CreateWorkerWebhookMutationResult, type DeleteArtifactEnvelope, type DeleteArtifactMutationResult, type DeleteArtifactResponse, type DeleteCallFeedbackEnvelope, type DeleteCallFeedbackMutationResult, type DeleteCaseEnvelope, DeleteCaseEnvironment, type DeleteCaseMutationResult, type DeleteCaseParams, type DeleteCaseResponse, type DeleteChatAgentEnvelope, type DeleteChatAgentMutationResult, type DeleteChatAgentResponse, type DeleteEmailEnvelope, type DeleteEmailMutationResult, type DeleteEmailResponse, type DeleteExtractorEnvelope, type DeleteExtractorMutationResult, type DeleteExtractorResponse, type DeleteInboxEnvelope, type DeleteInboxMutationResult, type DeleteInboxResponse, type DeleteScheduleEnvelope, type DeleteScheduleMutationResult, type DeleteScheduleResponse, type DeleteSecretEnvelope, type DeleteSecretMutationResult, type DeleteSecretResponse, type DeleteToolEnvelope, type DeleteToolMutationResult, type DeleteToolResponse, type DeleteVoiceAgentEnvelope, type DeleteVoiceAgentMutationResult, type DeleteVoiceAgentResponse, type DeleteWebhookEnvelope, type DeleteWebhookMutationResult, type DeleteWebhookResponse, type DeleteWorkerEnvelope, type DeleteWorkerMutationResult, type DeleteWorkerResponse, type Dispatch, DispatchEnvironment, type DispatchList, DispatchStatus, type DispatchTarget, DispatchTargetType, type DispatchTrigger, DispatchTriggerType, type Email, type EmailDetail, EmailDetailDirection, EmailDetailEnvironment, EmailDetailIgnoredReason, EmailDirection, EmailEnvironment, EmailIgnoredReason, type EmailList, type EmailReplyResult, EmailReplyResultValue, type EmailSendResult, type EmailThread, EmailThreadEnvironment, type EmailThreadList, type ErrorResponse, type ErrorResponseData, type ExecuteCodeBody, ExecuteCodeBodyEnvironment, type ExecuteCodeBodyParams, type ExecuteCodeEnvelope, type ExecuteCodeMutationResult, type Extract, type ExtractList, type ExtractProcessorScope, type ExtractSummary, type ExtractSummaryProcessorScope, type Extractor, type ExtractorCreated, type ExtractorCreatedSchema, type ExtractorJob, type ExtractorJobCreated, type ExtractorJobCreatedScope, type ExtractorJobDetail, type ExtractorJobDetailScope, type ExtractorJobList, type ExtractorJobScope, type ExtractorList, type ExtractorSchema, type ExtractorSummary, type ExtractorUpdated, type ExtractorUpdatedSchema, type ExtractorWebhookList, type Feedback, type GetAnalyticsTimeSeriesEnvelope, GetAnalyticsTimeSeriesGranularity, GetAnalyticsTimeSeriesGroupBy, GetAnalyticsTimeSeriesMetric, type GetAnalyticsTimeSeriesParams, type GetAnalyticsTimeSeriesQueryResult, type GetArtifactEnvelope, type GetArtifactMetadataKeysEnvelope, type GetArtifactMetadataKeysParams, type GetArtifactMetadataKeysQueryResult, type GetArtifactQueryResult, type GetArtifactStatusSummaryEnvelope, type GetArtifactStatusSummaryParams, type GetArtifactStatusSummaryQueryResult, type GetArtifactUploadUrlBody, type GetArtifactUploadUrlEnvelope, type GetArtifactUploadUrlEnvelopeData, type GetArtifactUploadUrlMutationResult, type GetBenchmarkEnvelope, type GetBenchmarkEnvelopeData, type GetBenchmarkEnvelopeDataRunSummary, type GetBenchmarkEnvelopeDataRunSummaryBaseline, type GetBenchmarkEnvelopeDataRunSummaryBaselineDurationSeconds, type GetBenchmarkEnvelopeDataRunSummaryBaselineFixtureMatchedRate, type GetBenchmarkEnvelopeDataRunSummaryBaselinePassRate, type GetBenchmarkEnvelopeDataRunSummaryCandidate, type GetBenchmarkEnvelopeDataRunSummaryCandidateDurationSeconds, type GetBenchmarkEnvelopeDataRunSummaryCandidateFixtureMatchedRate, type GetBenchmarkEnvelopeDataRunSummaryCandidatePassRate, type GetBenchmarkEnvelopeDataRunSummaryDelta, type GetBenchmarkEnvelopeDataRunsItem, GetBenchmarkEnvelopeDataRunsItemConfiguration, type GetBenchmarkEnvelopeDataRunsItemGrading, type GetBenchmarkEnvelopeDataRunsItemGradingExpectationsItem, type GetBenchmarkEnvelopeDataRunsItemGradingSummary, type GetBenchmarkEnvelopeDataRunsItemMetrics, type GetBenchmarkEnvelopeDataRunsItemMetricsFixtureHealth, GetBenchmarkEnvelopeDataRunsItemStatus, GetBenchmarkEnvelopeDataStatus, type GetBenchmarkQueryResult, type GetCallAnalyticsEnvelope, type GetCallAnalyticsParams, type GetCallAnalyticsQueryResult, type GetCallEnvelope, type GetCallEvaluationEnvelope, type GetCallEvaluationQueryResult, type GetCallParams, type GetCallQueryResult, type GetCaseEnvelope, GetCaseEnvironment, type GetCaseParams, type GetCaseQueryResult, type GetChatAgentEnvelope, type GetChatAgentPromptEnvelope, type GetChatAgentPromptQueryResult, type GetChatAgentQueryResult, type GetChatEnvelope, type GetChatQueryResult, type GetEmailEnvelope, type GetEmailQueryResult, type GetEvalRunEnvelope, type GetEvalRunEnvelopeData, GetEvalRunEnvelopeDataConfiguration, type GetEvalRunEnvelopeDataGrading, type GetEvalRunEnvelopeDataGradingExpectationsItem, type GetEvalRunEnvelopeDataGradingSummary, type GetEvalRunEnvelopeDataMetrics, type GetEvalRunEnvelopeDataMetricsFixtureHealth, GetEvalRunEnvelopeDataStatus, type GetEvalRunQueryResult, type GetExtractCitationsEnvelope, type GetExtractCitationsEnvelopeData, type GetExtractCitationsEnvelopeDataChunks, type GetExtractCitationsEnvelopeDataChunksBoundingBox, type GetExtractCitationsQueryResult, type GetExtractEnvelope, type GetExtractQueryResult, type GetExtractorEnvelope, type GetExtractorJobEnvelope, type GetExtractorJobQueryResult, type GetExtractorJobResponse, type GetExtractorQueryResult, type GetExtractorResponse, type GetInformationRequestEnvelope, type GetInformationRequestQueryResult, type GetNotificationEnvelope, type GetNotificationQueryResult, GetOAuthUrlCodeChallengeMethod, type GetOAuthUrlEnvelope, type GetOAuthUrlParams, GetOAuthUrlProvider, type GetOAuthUrlQueryResult, type GetPartnerJwksQueryResult, type GetProfileEnvelope, type GetProfileQueryResult, type GetPublicChatAgentEnvelope, type GetPublicChatAgentQueryResult, type GetScheduleEnvelope, type GetScheduleQueryResult, type GetSecretEnvelope, type GetSecretQueryResult, type GetSessionTokenBody, type GetSessionTokenEnvelope, type GetSessionTokenEnvelopeData, type GetSessionTokenMutationResult, type GetToolEnvelope, type GetToolQueryResult, type GetToolResponse, type GetToolVersionChangeSummaryEnvelope, type GetToolVersionChangeSummaryQueryResult, type GetToolVersionEnvelope, type GetToolVersionQueryResult, type GetVoiceAgentEnvelope, type GetVoiceAgentPlaceholdersEnvelope, type GetVoiceAgentPlaceholdersQueryResult, type GetVoiceAgentPromptEnvelope, type GetVoiceAgentPromptParams, type GetVoiceAgentPromptQueryResult, type GetVoiceAgentQueryResult, type GetVoiceAgentResponse, type GetVoiceAgentVersionChangeSummaryEnvelope, type GetVoiceAgentVersionChangeSummaryQueryResult, type GetVoiceAgentVersionEnvelope, type GetVoiceAgentVersionQueryResult, type GetWebhookEnvelope, type GetWebhookQueryResult, type GetWorkerEnvelope, type GetWorkerPromptEnvelope, type GetWorkerPromptParams, type GetWorkerPromptQueryResult, type GetWorkerQueryResult, type GetWorkerRunEnvelope, type GetWorkerRunQueryResult, type GetWorkerRunResponse, type GetWorkerVersionChangeSummaryEnvelope, type GetWorkerVersionChangeSummaryQueryResult, type GetWorkerVersionEnvelope, type GetWorkerVersionQueryResult, type Inbox, type InboxAddresses, type InboxAvailability, type InboxList, InboxProcessorType, type InboxWebhookList, type InformationRequest, InformationRequestEnvironment, type InformationRequestList, type InformationRequestMetadata, type InviteTeamMemberBody, type InviteTeamMemberEnvelope, type InviteTeamMemberMutationResult, type ListAgentWebhooksEnvelope, ListAgentWebhooksEnvironment, type ListAgentWebhooksParams, type ListAgentWebhooksQueryResult, type ListApiKeysEnvelope, ListApiKeysIncludeRevoked, type ListApiKeysParams, type ListApiKeysQueryResult, type ListArtifactsEnvelope, type ListArtifactsEnvelopeMeta, ListArtifactsEnvironment, type ListArtifactsParams, type ListArtifactsQueryResult, ListArtifactsSortBy, ListArtifactsSortOrder, ListArtifactsStatus, type ListCallFeedbackEnvelope, type ListCallFeedbackEnvelopeMeta, type ListCallFeedbackParams, type ListCallFeedbackQueryResult, ListCallFeedbackSortBy, ListCallFeedbackSortOrder, ListCallsDirection, type ListCallsEnvelope, type ListCallsEnvelopeMeta, ListCallsEnvironment, type ListCallsParams, type ListCallsQueryResult, ListCallsSortBy, ListCallsSortOrder, ListCallsStatus, ListCaseLinksEntityType, type ListCaseLinksEnvelope, type ListCaseLinksEnvelopeMeta, ListCaseLinksEnvironment, type ListCaseLinksParams, type ListCaseLinksQueryResult, ListCaseLinksSortBy, ListCaseLinksSortOrder, type ListCasesEnvelope, type ListCasesEnvelopeMeta, ListCasesEnvironment, type ListCasesParams, type ListCasesQueryResult, ListCasesSortBy, ListCasesSortOrder, type ListChatAgentsEnvelope, type ListChatAgentsEnvelopeMeta, type ListChatAgentsParams, type ListChatAgentsQueryResult, ListChatAgentsSortBy, ListChatAgentsSortOrder, type ListChatMessagesEnvelope, type ListChatMessagesEnvelopeMeta, type ListChatMessagesParams, type ListChatMessagesQueryResult, ListChatMessagesSortBy, ListChatMessagesSortOrder, type ListChatsEnvelope, type ListChatsEnvelopeMeta, ListChatsEnvironment, type ListChatsParams, type ListChatsQueryResult, ListChatsSortBy, ListChatsSortOrder, type ListDispatchesEnvelope, type ListDispatchesEnvelopeMeta, type ListDispatchesParams, type ListDispatchesQueryResult, ListDispatchesSortBy, ListDispatchesSortOrder, ListDispatchesTriggerType, type ListEmailThreadsEnvelope, type ListEmailThreadsEnvelopeMeta, ListEmailThreadsEnvironment, type ListEmailThreadsParams, type ListEmailThreadsQueryResult, ListEmailThreadsSortBy, ListEmailThreadsSortOrder, type ListEmailsEnvelope, type ListEmailsEnvelopeMeta, ListEmailsEnvironment, type ListEmailsParams, type ListEmailsQueryResult, ListEmailsSortBy, ListEmailsSortOrder, type ListExtractorJobsEnvelope, type ListExtractorJobsEnvelopeMeta, type ListExtractorJobsParams, type ListExtractorJobsQueryResult, ListExtractorJobsSortBy, ListExtractorJobsSortOrder, ListExtractorJobsStatus, type ListExtractorsEnvelope, type ListExtractorsEnvelopeMeta, type ListExtractorsParams, type ListExtractorsQueryResult, ListExtractorsSortBy, ListExtractorsSortOrder, type ListExtractsEnvelope, type ListExtractsEnvelopeMeta, ListExtractsEnvironment, type ListExtractsParams, type ListExtractsQueryResult, ListExtractsSortBy, ListExtractsSortOrder, type ListInboxWebhooksEnvelope, ListInboxWebhooksEnvironment, type ListInboxWebhooksParams, type ListInboxWebhooksQueryResult, type ListInboxesEnvelope, type ListInboxesEnvelopeMeta, type ListInboxesParams, type ListInboxesQueryResult, ListInboxesSortBy, ListInboxesSortOrder, type ListInformationRequestsEnvelope, type ListInformationRequestsEnvelopeMeta, ListInformationRequestsEnvironment, type ListInformationRequestsParams, type ListInformationRequestsQueryResult, ListInformationRequestsResolved, ListInformationRequestsSortBy, ListInformationRequestsSortOrder, type ListJobsEnvelope, type ListJobsEnvelopeMeta, type ListJobsParams, type ListJobsQueryResult, ListJobsStatusItem, type ListNotificationWebhooksEnvelope, ListNotificationWebhooksEnvironment, type ListNotificationWebhooksParams, type ListNotificationWebhooksQueryResult, type ListNotificationsEnvelope, type ListNotificationsEnvelopeMeta, type ListNotificationsParams, type ListNotificationsQueryResult, ListNotificationsSortBy, ListNotificationsSortOrder, type ListSchedulesEnvelope, type ListSchedulesEnvelopeMeta, ListSchedulesEnvironment, type ListSchedulesParams, type ListSchedulesQueryResult, ListSchedulesRuleType, ListSchedulesSortBy, ListSchedulesSortOrder, type ListSecretsEnvelope, type ListSecretsEnvelopeMeta, type ListSecretsParams, type ListSecretsQueryResult, ListSecretsSortBy, ListSecretsSortOrder, type ListTeamInvitationsEnvelope, type ListTeamInvitationsQueryResult, type ListTeamInvitationsResponse, type ListTeamMembersEnvelope, type ListTeamMembersQueryResult, type ListTeamMembersResponse, type ListToolVersionsEnvelope, type ListToolVersionsEnvelopeMeta, type ListToolVersionsParams, type ListToolVersionsQueryResult, ListToolVersionsSortBy, ListToolVersionsSortOrder, type ListToolsEnvelope, type ListToolsParams, type ListToolsQueryResult, ListToolsSortBy, ListToolsSortOrder, type ListVoiceAgentVersionsEnvelope, type ListVoiceAgentVersionsEnvelopeMeta, type ListVoiceAgentVersionsParams, type ListVoiceAgentVersionsQueryResult, ListVoiceAgentVersionsSortBy, ListVoiceAgentVersionsSortOrder, type ListVoiceAgentsEnvelope, type ListVoiceAgentsParams, type ListVoiceAgentsQueryResult, type ListWebhookDeliveriesEnvelope, type ListWebhookDeliveriesEnvelopeMeta, type ListWebhookDeliveriesParams, type ListWebhookDeliveriesQueryResult, ListWebhookDeliveriesSortOrder, type ListWebhooksEnvelope, ListWebhooksEnvironment, type ListWebhooksParams, type ListWebhooksQueryResult, type ListWorkerModelsEnvelope, type ListWorkerModelsQueryResult, type ListWorkerRunMessagesEnvelope, type ListWorkerRunMessagesParams, type ListWorkerRunMessagesQueryResult, type ListWorkerRunsEnvelope, type ListWorkerRunsEnvelopeMeta, ListWorkerRunsEnvironment, type ListWorkerRunsParams, type ListWorkerRunsQueryResult, ListWorkerRunsSortBy, ListWorkerRunsSortOrder, ListWorkerRunsStatus, type ListWorkerVersionsEnvelope, type ListWorkerVersionsEnvelopeMeta, type ListWorkerVersionsParams, type ListWorkerVersionsQueryResult, ListWorkerVersionsSortBy, ListWorkerVersionsSortOrder, type ListWorkerWebhooksEnvelope, ListWorkerWebhooksEnvironment, type ListWorkerWebhooksParams, type ListWorkerWebhooksQueryResult, type ListWorkersEnvelope, type ListWorkersEnvelopeMeta, type ListWorkersParams, type ListWorkersQueryResult, ListWorkersSortBy, ListWorkersSortOrder, type Notification, type NotificationList, type NotificationWebhookList, type NotifyAdminBody, type NotifyAdminEnvelope, type NotifyAdminMutationResult, type OAuthUrl, type OutboundJob, OutboundJobEnvironment, type OutboundJobList, type OutboundJobMetadata, type OutboundJobPayload, OutboundJobStatus, type PartnerJwks, type PartnerJwksKeysItem, type PartnerLaunchEnvelope, type PartnerLaunchEnvelopeData, type PartnerLaunchMutationResult, type PartnerLaunchParams, type PostChatMessageBody, type PostChatMessageEnvelope, type PostChatMessageMutationResult, type Profile, ProfilePermissionsItem, ProfileRole, type ProfileTenant, type ProfileTenants, type PromoteToolVersionBody, type PromoteToolVersionEnvelope, type PromoteToolVersionMutationResult, type PromoteVoiceAgentVersionBody, PromoteVoiceAgentVersionBodyEnvironment, type PromoteVoiceAgentVersionEnvelope, type PromoteVoiceAgentVersionMutationResult, type PromoteWorkerVersionBody, type PromoteWorkerVersionEnvelope, type PromoteWorkerVersionMutationResult, type PromotedToolVersion, type PromotedVoiceAgentVersion, PromotedVoiceAgentVersionEnvironment, type PromotedWorkerVersion, type PublicChatAgent, type RecurrencePattern, type RecurrencePatternOutput, type RefreshTokenBody, type RefreshTokenEnvelope, type RefreshTokenMutationResult, type RemoveCaseLinkEnvelope, RemoveCaseLinkEnvironment, type RemoveCaseLinkMutationResult, type RemoveCaseLinkParams, type RemoveCaseLinkResponse, type RemoveMemberMutationResult, type ReplyToEmailBody, type ReplyToEmailBodyAttachmentsItem, type ReplyToEmailEnvelope, type ReplyToEmailMutationResult, type RequestPasswordResetBody, type RequestPasswordResetEnvelope, type RequestPasswordResetMutationResult, type RequestPasswordResetResponse, type ResendTeamInvitationEnvelope, type ResendTeamInvitationMutationResult, type ResetPasswordBody, type ResetPasswordEnvelope, type ResetPasswordMutationResult, type ResetPasswordResponse, type ResolveInformationRequestBody, type ResolveInformationRequestEnvelope, type ResolveInformationRequestMutationResult, type RevokeApiKeyEnvelope, type RevokeApiKeyMutationResult, type RevokeTeamInvitationMutationResult, type RunEvalBody, type RunEvalEnvelope, type RunEvalEnvelopeData, RunEvalEnvelopeDataConfiguration, type RunEvalEnvelopeDataGrading, type RunEvalEnvelopeDataGradingExpectationsItem, type RunEvalEnvelopeDataGradingSummary, type RunEvalEnvelopeDataMetrics, type RunEvalEnvelopeDataMetricsFixtureHealth, RunEvalEnvelopeDataStatus, type RunEvalMutationResult, type Schedule, type ScheduleAction, type ScheduleActionOutput, ScheduleEnvironmentsItem, type ScheduleJobBody, ScheduleJobBodyEnvironment, type ScheduleJobBodyMetadata, type ScheduleJobBodyPayload, type ScheduleJobEnvelope, type ScheduleJobMutationResult, type ScheduleList, type ScheduleRule, type ScheduleRuleOutput, type SearchCasesEnvelope, type SearchCasesEnvelopeMeta, type SearchCasesParams, type SearchCasesQueryResult, type Secret, type SecretList, type SendEmailBody, type SendEmailBodyAttachmentsItem, SendEmailBodyEnvironment, type SendEmailEnvelope, type SendEmailMutationResult, type SignInBody, type SignInEnvelope, type SignInMutationResult, type SignUpBody, type SignUpEnvelope, type SignUpMutationResult, type SignUpResponse, type TeamInvitation, TeamInvitationState, type TeamMember, TeamMemberRole, type TestWebhookBody, TestWebhookBodyEnvironment, type TestWebhookEnvelope, type TestWebhookMutationResult, ToolEnvironment, type ToolExecutionResult, type ToolExecutionResultError, type ToolExecutionResultTracesItem, type ToolList, type ToolVersion, type ToolVersionChangeSummary, type ToolVersionDetail, type ToolVersionDetailSchema, type ToolVersionList, type ToolVersions, type UpdateApiKeyBody, UpdateApiKeyBodyRole, type UpdateApiKeyEnvelope, type UpdateApiKeyMutationResult, type UpdateArtifactMetadataBody, type UpdateArtifactMetadataBodyMetadata, type UpdateArtifactMetadataEnvelope, type UpdateArtifactMetadataMutationResult, type UpdateCallControlsBody, type UpdateCallControlsEnvelope, type UpdateCallControlsMutationResult, type UpdateChatAgentEnvelope, type UpdateChatAgentMutationResult, type UpdateChatAgentPromptBody, type UpdateChatAgentPromptEnvelope, type UpdateChatAgentPromptMutationResult, type UpdateChatAgentRequest, type UpdateExtractorBody, type UpdateExtractorBodySchema, type UpdateExtractorEnvelope, type UpdateExtractorMutationResult, type UpdateInboxBody, type UpdateInboxBodyProcessor, UpdateInboxBodyProcessorType, type UpdateInboxEnvelope, type UpdateInboxMutationResult, type UpdateMemberRoleBody, UpdateMemberRoleBodyRole, type UpdateMemberRoleEnvelope, type UpdateMemberRoleMutationResult, type UpdateMemberRoleResponse, type UpdateScheduleBody, UpdateScheduleBodyEnvironmentsItem, type UpdateScheduleEnvelope, type UpdateScheduleMutationResult, type UpdateSecretBody, type UpdateSecretEnvelope, type UpdateSecretMutationResult, type UpdateToolBody, type UpdateToolEnvelope, type UpdateToolMutationResult, type UpdateVoiceAgentBody, UpdateVoiceAgentBodyCallProcessorType, UpdateVoiceAgentBodyNoiseCancellation, type UpdateVoiceAgentCallControlsResponse, type UpdateVoiceAgentEnvelope, type UpdateVoiceAgentModelsBody, UpdateVoiceAgentModelsBodyFallbackLlmModel, UpdateVoiceAgentModelsBodyFallbackSttModel, UpdateVoiceAgentModelsBodyFallbackTtsModel, UpdateVoiceAgentModelsBodyFallbackTtsProvider, UpdateVoiceAgentModelsBodyLanguage, UpdateVoiceAgentModelsBodyLlmModel, UpdateVoiceAgentModelsBodySttModel, UpdateVoiceAgentModelsBodyTtsModel, UpdateVoiceAgentModelsBodyTtsProvider, type UpdateVoiceAgentModelsEnvelope, type UpdateVoiceAgentModelsMutationResult, type UpdateVoiceAgentModelsResponse, type UpdateVoiceAgentMutationResult, type UpdateVoiceAgentPromptBody, type UpdateVoiceAgentPromptEnvelope, type UpdateVoiceAgentPromptMutationResult, type UpdateVoiceAgentResponse, type UpdateWebhookBody, type UpdateWebhookBodyAuth, UpdateWebhookBodyEnvironmentsItem, type UpdateWebhookEnvelope, type UpdateWebhookMutationResult, type UpdateWorkerBody, type UpdateWorkerBodySchema, type UpdateWorkerEnvelope, type UpdateWorkerMcpsBody, type UpdateWorkerMcpsEnvelope, type UpdateWorkerMcpsMutationResult, type UpdateWorkerMutationResult, type UpdateWorkerPromptBody, type UpdateWorkerPromptEnvelope, type UpdateWorkerPromptMutationResult, type UploadFileBody, type UploadFileBodyMetadata, type UploadFileBodyProcessingOptions, type UploadFileEnvelope, type UploadFileMutationResult, type UploadFileResponse, type VoiceAgent, VoiceAgentBackgroundSounds, VoiceAgentCallProcessorType, VoiceAgentDirection, VoiceAgentFallbackLlmModel, VoiceAgentFallbackSttModel, VoiceAgentFallbackTtsModel, VoiceAgentFallbackTtsProvider, VoiceAgentLanguage, type VoiceAgentList, VoiceAgentLlmModel, VoiceAgentNoiseCancellation, type VoiceAgentPlaceholders, type VoiceAgentPrompt, type VoiceAgentPromptUpdated, VoiceAgentSttModel, VoiceAgentTtsModel, VoiceAgentTtsProvider, type VoiceAgentVersion, VoiceAgentVersionActiveEnvironmentsItem, type VoiceAgentVersionChangeSummary, type VoiceAgentVersionDetail, VoiceAgentVersionDetailActiveEnvironmentsItem, VoiceAgentVersionDetailBackgroundSounds, VoiceAgentVersionDetailCallProcessorType, VoiceAgentVersionDetailDirection, VoiceAgentVersionDetailFallbackLlmModel, VoiceAgentVersionDetailFallbackSttModel, VoiceAgentVersionDetailFallbackTtsModel, VoiceAgentVersionDetailFallbackTtsProvider, VoiceAgentVersionDetailLanguage, VoiceAgentVersionDetailLlmModel, VoiceAgentVersionDetailNoiseCancellation, VoiceAgentVersionDetailSttModel, VoiceAgentVersionDetailTtsModel, VoiceAgentVersionDetailTtsProvider, type VoiceAgentVersionList, type VoiceAgentWebhookList, type VoiceAgentWithTestPhoneNumber, VoiceAgentWithTestPhoneNumberBackgroundSounds, VoiceAgentWithTestPhoneNumberCallProcessorType, VoiceAgentWithTestPhoneNumberDirection, VoiceAgentWithTestPhoneNumberFallbackLlmModel, VoiceAgentWithTestPhoneNumberFallbackSttModel, VoiceAgentWithTestPhoneNumberFallbackTtsModel, VoiceAgentWithTestPhoneNumberFallbackTtsProvider, VoiceAgentWithTestPhoneNumberLanguage, VoiceAgentWithTestPhoneNumberLlmModel, VoiceAgentWithTestPhoneNumberNoiseCancellation, VoiceAgentWithTestPhoneNumberSttModel, VoiceAgentWithTestPhoneNumberTtsModel, VoiceAgentWithTestPhoneNumberTtsProvider, type Webhook, type WebhookDelivery, type WebhookDeliveryList, WebhookEnvironmentsItem, type WebhookScope, type WebhookTestResult, type Worker, WorkerEnvironment, type WorkerExecuteToolBody, WorkerExecuteToolBodyEnvironment, type WorkerExecuteToolBodyParams, type WorkerExecuteToolEnvelope, type WorkerExecuteToolMutationResult, type WorkerGetToolEnvelope, type WorkerGetToolQueryResult, type WorkerList, type WorkerListToolsEnvelope, type WorkerListToolsParams, type WorkerListToolsQueryResult, WorkerListToolsSortBy, WorkerListToolsSortOrder, type WorkerMcp, WorkerMcpName, type WorkerMcpOutput, WorkerMcpOutputName, type WorkerModel, type WorkerModelList, type WorkerNotifyAdminResult, WorkerPermission, type WorkerPrompt, type WorkerPromptUpdated, type WorkerRun, type WorkerRunCreated, WorkerRunCreatedEnvironment, type WorkerRunCreatedScope, WorkerRunCreatedStatus, WorkerRunEnvironment, type WorkerRunList, type WorkerRunMessage, type WorkerRunMessageList, type WorkerRunMessageMessage, type WorkerRunScope, WorkerRunStatus, type WorkerSchema, type WorkerSummary, type WorkerVersion, type WorkerVersionChangeSummary, type WorkerVersionDetail, type WorkerVersionDetailSchema, type WorkerVersionList, type WorkerVersions, type WorkerWebhookList, addCaseLinks, cancelJob, cancelWorkerRun, checkInboxAvailability, configure, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, createCase, createChat, createChatAgent, createEvalBenchmark, createExtractor, createExtractorJob, createExtractorWebhook, createInbox, createInboxWebhook, createInformationRequest, createNotificationWebhook, createSchedule, createSecret, createTool, createVoiceAgent, createWorker, createWorkerEvalFromRun, createWorkerRun, createWorkerWebhook, deleteArtifact, deleteCallFeedback, deleteCase, deleteChatAgent, deleteEmail, deleteExtractor, deleteInbox, deleteSchedule, deleteSecret, deleteTool, deleteVoiceAgent, deleteWebhook, deleteWorker, executeCode, generateCodeChallenge, generateCodeVerifier, getAddCaseLinksMutationFetcher, getAddCaseLinksMutationKey, getAddCaseLinksUrl, getAnalyticsTimeSeries, getArtifact, getArtifactMetadataKeys, getArtifactStatusSummary, getArtifactUploadUrl, getBenchmark, getCall, getCallAnalytics, getCallEvaluation, getCancelJobMutationFetcher, getCancelJobMutationKey, getCancelJobUrl, getCancelWorkerRunMutationFetcher, getCancelWorkerRunMutationKey, getCancelWorkerRunUrl, getCase, getChat, getChatAgent, getChatAgentPrompt, getCheckInboxAvailabilityKey, getCheckInboxAvailabilityUrl, getConfig, getCreateAgentWebhookMutationFetcher, getCreateAgentWebhookMutationKey, getCreateAgentWebhookUrl, getCreateApiKeyMutationFetcher, getCreateApiKeyMutationKey, getCreateApiKeyUrl, getCreateArtifactMutationFetcher, getCreateArtifactMutationKey, getCreateArtifactUrl, getCreateCallFeedbackMutationFetcher, getCreateCallFeedbackMutationKey, getCreateCallFeedbackUrl, getCreateCaseMutationFetcher, getCreateCaseMutationKey, getCreateCaseUrl, getCreateChatAgentMutationFetcher, getCreateChatAgentMutationKey, getCreateChatAgentUrl, getCreateChatMutationFetcher, getCreateChatMutationKey, getCreateChatUrl, getCreateEvalBenchmarkMutationFetcher, getCreateEvalBenchmarkMutationKey, getCreateEvalBenchmarkUrl, getCreateExtractorJobMutationFetcher, getCreateExtractorJobMutationKey, getCreateExtractorJobUrl, getCreateExtractorMutationFetcher, getCreateExtractorMutationKey, getCreateExtractorUrl, getCreateExtractorWebhookMutationFetcher, getCreateExtractorWebhookMutationKey, getCreateExtractorWebhookUrl, getCreateInboxMutationFetcher, getCreateInboxMutationKey, getCreateInboxUrl, getCreateInboxWebhookMutationFetcher, getCreateInboxWebhookMutationKey, getCreateInboxWebhookUrl, getCreateInformationRequestMutationFetcher, getCreateInformationRequestMutationKey, getCreateInformationRequestUrl, getCreateNotificationWebhookMutationFetcher, getCreateNotificationWebhookMutationKey, getCreateNotificationWebhookUrl, getCreateScheduleMutationFetcher, getCreateScheduleMutationKey, getCreateScheduleUrl, getCreateSecretMutationFetcher, getCreateSecretMutationKey, getCreateSecretUrl, getCreateToolMutationFetcher, getCreateToolMutationKey, getCreateToolUrl, getCreateVoiceAgentMutationFetcher, getCreateVoiceAgentMutationKey, getCreateVoiceAgentUrl, getCreateWorkerEvalFromRunMutationFetcher, getCreateWorkerEvalFromRunMutationKey, getCreateWorkerEvalFromRunUrl, getCreateWorkerMutationFetcher, getCreateWorkerMutationKey, getCreateWorkerRunMutationFetcher, getCreateWorkerRunMutationKey, getCreateWorkerRunUrl, getCreateWorkerUrl, getCreateWorkerWebhookMutationFetcher, getCreateWorkerWebhookMutationKey, getCreateWorkerWebhookUrl, getDeleteArtifactMutationFetcher, getDeleteArtifactMutationKey, getDeleteArtifactUrl, getDeleteCallFeedbackMutationFetcher, getDeleteCallFeedbackMutationKey, getDeleteCallFeedbackUrl, getDeleteCaseMutationFetcher, getDeleteCaseMutationKey, getDeleteCaseUrl, getDeleteChatAgentMutationFetcher, getDeleteChatAgentMutationKey, getDeleteChatAgentUrl, getDeleteEmailMutationFetcher, getDeleteEmailMutationKey, getDeleteEmailUrl, getDeleteExtractorMutationFetcher, getDeleteExtractorMutationKey, getDeleteExtractorUrl, getDeleteInboxMutationFetcher, getDeleteInboxMutationKey, getDeleteInboxUrl, getDeleteScheduleMutationFetcher, getDeleteScheduleMutationKey, getDeleteScheduleUrl, getDeleteSecretMutationFetcher, getDeleteSecretMutationKey, getDeleteSecretUrl, getDeleteToolMutationFetcher, getDeleteToolMutationKey, getDeleteToolUrl, getDeleteVoiceAgentMutationFetcher, getDeleteVoiceAgentMutationKey, getDeleteVoiceAgentUrl, getDeleteWebhookMutationFetcher, getDeleteWebhookMutationKey, getDeleteWebhookUrl, getDeleteWorkerMutationFetcher, getDeleteWorkerMutationKey, getDeleteWorkerUrl, getEmail, getEvalRun, getExecuteCodeMutationFetcher, getExecuteCodeMutationKey, getExecuteCodeUrl, getExtract, getExtractCitations, getExtractor, getExtractorJob, getGetAnalyticsTimeSeriesKey, getGetAnalyticsTimeSeriesUrl, getGetArtifactKey, getGetArtifactMetadataKeysKey, getGetArtifactMetadataKeysUrl, getGetArtifactStatusSummaryKey, getGetArtifactStatusSummaryUrl, getGetArtifactUploadUrlMutationFetcher, getGetArtifactUploadUrlMutationKey, getGetArtifactUploadUrlUrl, getGetArtifactUrl, getGetBenchmarkKey, getGetBenchmarkUrl, getGetCallAnalyticsKey, getGetCallAnalyticsUrl, getGetCallEvaluationKey, getGetCallEvaluationUrl, getGetCallKey, getGetCallUrl, getGetCaseKey, getGetCaseUrl, getGetChatAgentKey, getGetChatAgentPromptKey, getGetChatAgentPromptUrl, getGetChatAgentUrl, getGetChatKey, getGetChatUrl, getGetEmailKey, getGetEmailUrl, getGetEvalRunKey, getGetEvalRunUrl, getGetExtractCitationsKey, getGetExtractCitationsUrl, getGetExtractKey, getGetExtractUrl, getGetExtractorJobKey, getGetExtractorJobUrl, getGetExtractorKey, getGetExtractorUrl, getGetInformationRequestKey, getGetInformationRequestUrl, getGetNotificationKey, getGetNotificationUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetPartnerJwksKey, getGetPartnerJwksUrl, getGetProfileKey, getGetProfileUrl, getGetPublicChatAgentKey, getGetPublicChatAgentUrl, getGetScheduleKey, getGetScheduleUrl, getGetSecretKey, getGetSecretUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetToolVersionChangeSummaryKey, getGetToolVersionChangeSummaryUrl, getGetToolVersionKey, getGetToolVersionUrl, getGetVoiceAgentKey, getGetVoiceAgentPlaceholdersKey, getGetVoiceAgentPlaceholdersUrl, getGetVoiceAgentPromptKey, getGetVoiceAgentPromptUrl, getGetVoiceAgentUrl, getGetVoiceAgentVersionChangeSummaryKey, getGetVoiceAgentVersionChangeSummaryUrl, getGetVoiceAgentVersionKey, getGetVoiceAgentVersionUrl, getGetWebhookKey, getGetWebhookUrl, getGetWorkerKey, getGetWorkerPromptKey, getGetWorkerPromptUrl, getGetWorkerRunKey, getGetWorkerRunUrl, getGetWorkerUrl, getGetWorkerVersionChangeSummaryKey, getGetWorkerVersionChangeSummaryUrl, getGetWorkerVersionKey, getGetWorkerVersionUrl, getInformationRequest, getInviteTeamMemberMutationFetcher, getInviteTeamMemberMutationKey, getInviteTeamMemberUrl, getListAgentWebhooksKey, getListAgentWebhooksUrl, getListApiKeysKey, getListApiKeysUrl, getListArtifactsKey, getListArtifactsUrl, getListCallFeedbackKey, getListCallFeedbackUrl, getListCallsKey, getListCallsUrl, getListCaseLinksKey, getListCaseLinksUrl, getListCasesKey, getListCasesUrl, getListChatAgentsKey, getListChatAgentsUrl, getListChatMessagesKey, getListChatMessagesUrl, getListChatsKey, getListChatsUrl, getListDispatchesKey, getListDispatchesUrl, getListEmailThreadsKey, getListEmailThreadsUrl, getListEmailsKey, getListEmailsUrl, getListExtractorJobsKey, getListExtractorJobsUrl, getListExtractorsKey, getListExtractorsUrl, getListExtractsKey, getListExtractsUrl, getListInboxWebhooksKey, getListInboxWebhooksUrl, getListInboxesKey, getListInboxesUrl, getListInformationRequestsKey, getListInformationRequestsUrl, getListJobsKey, getListJobsUrl, getListNotificationWebhooksKey, getListNotificationWebhooksUrl, getListNotificationsKey, getListNotificationsUrl, getListSchedulesKey, getListSchedulesUrl, getListSecretsKey, getListSecretsUrl, getListTeamInvitationsKey, getListTeamInvitationsUrl, getListTeamMembersKey, getListTeamMembersUrl, getListToolVersionsKey, getListToolVersionsUrl, getListToolsKey, getListToolsUrl, getListVoiceAgentVersionsKey, getListVoiceAgentVersionsUrl, getListVoiceAgentsKey, getListVoiceAgentsUrl, getListWebhookDeliveriesKey, getListWebhookDeliveriesUrl, getListWebhooksKey, getListWebhooksUrl, getListWorkerModelsKey, getListWorkerModelsUrl, getListWorkerRunMessagesKey, getListWorkerRunMessagesUrl, getListWorkerRunsKey, getListWorkerRunsUrl, getListWorkerVersionsKey, getListWorkerVersionsUrl, getListWorkerWebhooksKey, getListWorkerWebhooksUrl, getListWorkersKey, getListWorkersUrl, getNotification, getNotifyAdminMutationFetcher, getNotifyAdminMutationKey, getNotifyAdminUrl, getOAuthUrl, getPartnerJwks, getPartnerLaunchMutationFetcher, getPartnerLaunchMutationKey, getPartnerLaunchUrl, getPostChatMessageMutationFetcher, getPostChatMessageMutationKey, getPostChatMessageUrl, getProfile, getPromoteToolVersionMutationFetcher, getPromoteToolVersionMutationKey, getPromoteToolVersionUrl, getPromoteVoiceAgentVersionMutationFetcher, getPromoteVoiceAgentVersionMutationKey, getPromoteVoiceAgentVersionUrl, getPromoteWorkerVersionMutationFetcher, getPromoteWorkerVersionMutationKey, getPromoteWorkerVersionUrl, getPublicChatAgent, getRefreshTokenMutationFetcher, getRefreshTokenMutationKey, getRefreshTokenUrl, getRemoveCaseLinkMutationFetcher, getRemoveCaseLinkMutationKey, getRemoveCaseLinkUrl, getRemoveMemberMutationFetcher, getRemoveMemberMutationKey, getRemoveMemberUrl, getReplyToEmailMutationFetcher, getReplyToEmailMutationKey, getReplyToEmailUrl, getRequestPasswordResetMutationFetcher, getRequestPasswordResetMutationKey, getRequestPasswordResetUrl, getResendTeamInvitationMutationFetcher, getResendTeamInvitationMutationKey, getResendTeamInvitationUrl, getResetPasswordMutationFetcher, getResetPasswordMutationKey, getResetPasswordUrl, getResolveInformationRequestMutationFetcher, getResolveInformationRequestMutationKey, getResolveInformationRequestUrl, getRevokeApiKeyMutationFetcher, getRevokeApiKeyMutationKey, getRevokeApiKeyUrl, getRevokeTeamInvitationMutationFetcher, getRevokeTeamInvitationMutationKey, getRevokeTeamInvitationUrl, getRunEvalMutationFetcher, getRunEvalMutationKey, getRunEvalUrl, getSchedule, getScheduleJobMutationFetcher, getScheduleJobMutationKey, getScheduleJobUrl, getSearchCasesKey, getSearchCasesUrl, getSecret, getSendEmailMutationFetcher, getSendEmailMutationKey, getSendEmailUrl, getSessionToken, getSignInMutationFetcher, getSignInMutationKey, getSignInUrl, getSignUpMutationFetcher, getSignUpMutationKey, getSignUpUrl, getTestWebhookMutationFetcher, getTestWebhookMutationKey, getTestWebhookUrl, getTool, getToolVersion, getToolVersionChangeSummary, getUpdateApiKeyMutationFetcher, getUpdateApiKeyMutationKey, getUpdateApiKeyUrl, getUpdateArtifactMetadataMutationFetcher, getUpdateArtifactMetadataMutationKey, getUpdateArtifactMetadataUrl, getUpdateCallControlsMutationFetcher, getUpdateCallControlsMutationKey, getUpdateCallControlsUrl, getUpdateChatAgentMutationFetcher, getUpdateChatAgentMutationKey, getUpdateChatAgentPromptMutationFetcher, getUpdateChatAgentPromptMutationKey, getUpdateChatAgentPromptUrl, getUpdateChatAgentUrl, getUpdateExtractorMutationFetcher, getUpdateExtractorMutationKey, getUpdateExtractorUrl, getUpdateInboxMutationFetcher, getUpdateInboxMutationKey, getUpdateInboxUrl, getUpdateMemberRoleMutationFetcher, getUpdateMemberRoleMutationKey, getUpdateMemberRoleUrl, getUpdateScheduleMutationFetcher, getUpdateScheduleMutationKey, getUpdateScheduleUrl, getUpdateSecretMutationFetcher, getUpdateSecretMutationKey, getUpdateSecretUrl, getUpdateToolMutationFetcher, getUpdateToolMutationKey, getUpdateToolUrl, getUpdateVoiceAgentModelsMutationFetcher, getUpdateVoiceAgentModelsMutationKey, getUpdateVoiceAgentModelsUrl, getUpdateVoiceAgentMutationFetcher, getUpdateVoiceAgentMutationKey, getUpdateVoiceAgentPromptMutationFetcher, getUpdateVoiceAgentPromptMutationKey, getUpdateVoiceAgentPromptUrl, getUpdateVoiceAgentUrl, getUpdateWebhookMutationFetcher, getUpdateWebhookMutationKey, getUpdateWebhookUrl, getUpdateWorkerMcpsMutationFetcher, getUpdateWorkerMcpsMutationKey, getUpdateWorkerMcpsUrl, getUpdateWorkerMutationFetcher, getUpdateWorkerMutationKey, getUpdateWorkerPromptMutationFetcher, getUpdateWorkerPromptMutationKey, getUpdateWorkerPromptUrl, getUpdateWorkerUrl, getUploadFileMutationFetcher, getUploadFileMutationKey, getUploadFileUrl, getVoiceAgent, getVoiceAgentPlaceholders, getVoiceAgentPrompt, getVoiceAgentVersion, getVoiceAgentVersionChangeSummary, getWebhook, getWorker, getWorkerExecuteToolMutationFetcher, getWorkerExecuteToolMutationKey, getWorkerExecuteToolUrl, getWorkerGetToolKey, getWorkerGetToolUrl, getWorkerListToolsKey, getWorkerListToolsUrl, getWorkerPrompt, getWorkerRun, getWorkerVersion, getWorkerVersionChangeSummary, inviteTeamMember, listAgentWebhooks, listApiKeys, listArtifacts, listCallFeedback, listCalls, listCaseLinks, listCases, listChatAgents, listChatMessages, listChats, listDispatches, listEmailThreads, listEmails, listExtractorJobs, listExtractors, listExtracts, listInboxWebhooks, listInboxes, listInformationRequests, listJobs, listNotificationWebhooks, listNotifications, listSchedules, listSecrets, listTeamInvitations, listTeamMembers, listToolVersions, listTools, listVoiceAgentVersions, listVoiceAgents, listWebhookDeliveries, listWebhooks, listWorkerModels, listWorkerRunMessages, listWorkerRuns, listWorkerVersions, listWorkerWebhooks, listWorkers, notifyAdmin, partnerLaunch, postChatMessage, promoteToolVersion, promoteVoiceAgentVersion, promoteWorkerVersion, refreshToken, removeCaseLink, removeMember, replyToEmail, requestPasswordReset, resendTeamInvitation, resetPassword, resolveInformationRequest, revokeApiKey, revokeTeamInvitation, runEval, scheduleJob, searchCases, sendEmail, signIn, signUp, testWebhook, updateApiKey, updateArtifactMetadata, updateCallControls, updateChatAgent, updateChatAgentPrompt, updateExtractor, updateInbox, updateMemberRole, updateSchedule, updateSecret, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateVoiceAgentPrompt, updateWebhook, updateWorker, updateWorkerMcps, updateWorkerPrompt, uploadFile, useAddCaseLinks, useCancelJob, useCancelWorkerRun, useCheckInboxAvailability, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateCase, useCreateChat, useCreateChatAgent, useCreateEvalBenchmark, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateInbox, useCreateInboxWebhook, useCreateInformationRequest, useCreateNotificationWebhook, useCreateSchedule, useCreateSecret, useCreateTool, useCreateVoiceAgent, useCreateWorker, useCreateWorkerEvalFromRun, useCreateWorkerRun, useCreateWorkerWebhook, useDeleteArtifact, useDeleteCallFeedback, useDeleteCase, useDeleteChatAgent, useDeleteEmail, useDeleteExtractor, useDeleteInbox, useDeleteSchedule, useDeleteSecret, useDeleteTool, useDeleteVoiceAgent, useDeleteWebhook, useDeleteWorker, useExecuteCode, useGetAnalyticsTimeSeries, useGetArtifact, useGetArtifactMetadataKeys, useGetArtifactStatusSummary, useGetArtifactUploadUrl, useGetBenchmark, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetCase, useGetChat, useGetChatAgent, useGetChatAgentPrompt, useGetEmail, useGetEvalRun, useGetExtract, useGetExtractCitations, useGetExtractor, useGetExtractorJob, useGetInformationRequest, useGetNotification, useGetOAuthUrl, useGetPartnerJwks, useGetProfile, useGetPublicChatAgent, useGetSchedule, useGetSecret, useGetSessionToken, useGetTool, useGetToolVersion, useGetToolVersionChangeSummary, useGetVoiceAgent, useGetVoiceAgentPlaceholders, useGetVoiceAgentPrompt, useGetVoiceAgentVersion, useGetVoiceAgentVersionChangeSummary, useGetWebhook, useGetWorker, useGetWorkerPrompt, useGetWorkerRun, useGetWorkerVersion, useGetWorkerVersionChangeSummary, useInviteTeamMember, useListAgentWebhooks, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListCaseLinks, useListCases, useListChatAgents, useListChatMessages, useListChats, useListDispatches, useListEmailThreads, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListInboxWebhooks, useListInboxes, useListInformationRequests, useListJobs, useListNotificationWebhooks, useListNotifications, useListSchedules, useListSecrets, useListTeamInvitations, useListTeamMembers, useListToolVersions, useListTools, useListVoiceAgentVersions, useListVoiceAgents, useListWebhookDeliveries, useListWebhooks, useListWorkerModels, useListWorkerRunMessages, useListWorkerRuns, useListWorkerVersions, useListWorkerWebhooks, useListWorkers, useNotifyAdmin, usePartnerLaunch, usePostChatMessage, usePromoteToolVersion, usePromoteVoiceAgentVersion, usePromoteWorkerVersion, useRefreshToken, useRemoveCaseLink, useRemoveMember, useReplyToEmail, useRequestPasswordReset, useResendTeamInvitation, useResetPassword, useResolveInformationRequest, useRevokeApiKey, useRevokeTeamInvitation, useRunEval, useScheduleJob, useSearchCases, useSendEmail, useSignIn, useSignUp, useTestWebhook, useUpdateApiKey, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateChatAgent, useUpdateChatAgentPrompt, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateSchedule, useUpdateSecret, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateVoiceAgentPrompt, useUpdateWebhook, useUpdateWorker, useUpdateWorkerMcps, useUpdateWorkerPrompt, useUploadFile, useWorkerExecuteTool, useWorkerGetTool, useWorkerListTools, workerExecuteTool, workerGetTool, workerListTools };
|