@avallon-labs/sdk 50.4.0 → 51.0.0-staging.1135
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 +1463 -408
- package/dist/index.js +121 -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,13 @@ 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 passed: "passed";
|
|
2070
|
+
readonly failed: "failed";
|
|
2071
|
+
readonly error: "error";
|
|
2012
2072
|
};
|
|
2013
2073
|
|
|
2014
2074
|
/**
|
|
@@ -2018,14 +2078,29 @@ type ExtractorJobCreatedScope = {
|
|
|
2018
2078
|
* OpenAPI spec version: 1.0.0
|
|
2019
2079
|
*/
|
|
2020
2080
|
|
|
2021
|
-
|
|
2081
|
+
type CreateEvalBenchmarkEnvelopeDataRunsItem = {
|
|
2022
2082
|
id: string;
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2083
|
+
eval_id: string;
|
|
2084
|
+
/**
|
|
2085
|
+
* @minimum -9007199254740991
|
|
2086
|
+
* @maximum 9007199254740991
|
|
2087
|
+
*/
|
|
2088
|
+
target_version: number;
|
|
2089
|
+
status: CreateEvalBenchmarkEnvelopeDataRunsItemStatus;
|
|
2090
|
+
passed: boolean | null;
|
|
2091
|
+
reason: string | null;
|
|
2092
|
+
error: string | null;
|
|
2093
|
+
judge_model: string | null;
|
|
2094
|
+
judge_prompt_version: string | null;
|
|
2095
|
+
grading: CreateEvalBenchmarkEnvelopeDataRunsItemGrading;
|
|
2096
|
+
metrics: CreateEvalBenchmarkEnvelopeDataRunsItemMetrics;
|
|
2097
|
+
benchmark_id: string | null;
|
|
2098
|
+
configuration: CreateEvalBenchmarkEnvelopeDataRunsItemConfiguration;
|
|
2099
|
+
run_number: number | null;
|
|
2027
2100
|
created_at: string;
|
|
2028
|
-
|
|
2101
|
+
started_at: string | null;
|
|
2102
|
+
completed_at: string | null;
|
|
2103
|
+
};
|
|
2029
2104
|
|
|
2030
2105
|
/**
|
|
2031
2106
|
* Generated by orval 🍺
|
|
@@ -2033,11 +2108,25 @@ interface ExtractorJobCreated {
|
|
|
2033
2108
|
* Avallon API
|
|
2034
2109
|
* OpenAPI spec version: 1.0.0
|
|
2035
2110
|
*/
|
|
2111
|
+
type CreateEvalBenchmarkEnvelopeDataRunSummaryBaselineDurationSeconds = {
|
|
2112
|
+
mean: number;
|
|
2113
|
+
stddev: number;
|
|
2114
|
+
min: number;
|
|
2115
|
+
max: number;
|
|
2116
|
+
} | null;
|
|
2036
2117
|
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2118
|
+
/**
|
|
2119
|
+
* Generated by orval 🍺
|
|
2120
|
+
* Do not edit manually.
|
|
2121
|
+
* Avallon API
|
|
2122
|
+
* OpenAPI spec version: 1.0.0
|
|
2123
|
+
*/
|
|
2124
|
+
type CreateEvalBenchmarkEnvelopeDataRunSummaryBaselineFixtureMatchedRate = {
|
|
2125
|
+
mean: number;
|
|
2126
|
+
stddev: number;
|
|
2127
|
+
min: number;
|
|
2128
|
+
max: number;
|
|
2129
|
+
} | null;
|
|
2041
2130
|
|
|
2042
2131
|
/**
|
|
2043
2132
|
* Generated by orval 🍺
|
|
@@ -2045,11 +2134,12 @@ interface CreateExtractorJobEnvelope {
|
|
|
2045
2134
|
* Avallon API
|
|
2046
2135
|
* OpenAPI spec version: 1.0.0
|
|
2047
2136
|
*/
|
|
2048
|
-
type
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2137
|
+
type CreateEvalBenchmarkEnvelopeDataRunSummaryBaselinePassRate = {
|
|
2138
|
+
mean: number;
|
|
2139
|
+
stddev: number;
|
|
2140
|
+
min: number;
|
|
2141
|
+
max: number;
|
|
2142
|
+
} | null;
|
|
2053
2143
|
|
|
2054
2144
|
/**
|
|
2055
2145
|
* Generated by orval 🍺
|
|
@@ -2058,19 +2148,20 @@ declare const CreateExtractorWebhookBodyEnvironmentsItem: {
|
|
|
2058
2148
|
* OpenAPI spec version: 1.0.0
|
|
2059
2149
|
*/
|
|
2060
2150
|
|
|
2061
|
-
type
|
|
2151
|
+
type CreateEvalBenchmarkEnvelopeDataRunSummaryBaseline = {
|
|
2062
2152
|
/**
|
|
2063
|
-
* @
|
|
2064
|
-
* @
|
|
2153
|
+
* @minimum -9007199254740991
|
|
2154
|
+
* @maximum 9007199254740991
|
|
2065
2155
|
*/
|
|
2066
|
-
|
|
2067
|
-
/**
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2156
|
+
runs: number;
|
|
2157
|
+
/**
|
|
2158
|
+
* @minimum -9007199254740991
|
|
2159
|
+
* @maximum 9007199254740991
|
|
2160
|
+
*/
|
|
2161
|
+
graded_runs: number;
|
|
2162
|
+
pass_rate: CreateEvalBenchmarkEnvelopeDataRunSummaryBaselinePassRate;
|
|
2163
|
+
duration_seconds: CreateEvalBenchmarkEnvelopeDataRunSummaryBaselineDurationSeconds;
|
|
2164
|
+
fixture_matched_rate: CreateEvalBenchmarkEnvelopeDataRunSummaryBaselineFixtureMatchedRate;
|
|
2074
2165
|
};
|
|
2075
2166
|
|
|
2076
2167
|
/**
|
|
@@ -2079,11 +2170,12 @@ type CreateExtractorWebhookBody = {
|
|
|
2079
2170
|
* Avallon API
|
|
2080
2171
|
* OpenAPI spec version: 1.0.0
|
|
2081
2172
|
*/
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2173
|
+
type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidateDurationSeconds = {
|
|
2174
|
+
mean: number;
|
|
2175
|
+
stddev: number;
|
|
2176
|
+
min: number;
|
|
2177
|
+
max: number;
|
|
2178
|
+
} | null;
|
|
2087
2179
|
|
|
2088
2180
|
/**
|
|
2089
2181
|
* Generated by orval 🍺
|
|
@@ -2091,16 +2183,12 @@ interface CreateExtractorWebhookEnvelope {
|
|
|
2091
2183
|
* Avallon API
|
|
2092
2184
|
* OpenAPI spec version: 1.0.0
|
|
2093
2185
|
*/
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
* @maxLength 10000
|
|
2101
|
-
*/
|
|
2102
|
-
text: string;
|
|
2103
|
-
}
|
|
2186
|
+
type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidateFixtureMatchedRate = {
|
|
2187
|
+
mean: number;
|
|
2188
|
+
stddev: number;
|
|
2189
|
+
min: number;
|
|
2190
|
+
max: number;
|
|
2191
|
+
} | null;
|
|
2104
2192
|
|
|
2105
2193
|
/**
|
|
2106
2194
|
* Generated by orval 🍺
|
|
@@ -2108,14 +2196,12 @@ interface CreateFeedbackRequest {
|
|
|
2108
2196
|
* Avallon API
|
|
2109
2197
|
* OpenAPI spec version: 1.0.0
|
|
2110
2198
|
*/
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
readonly worker: "worker";
|
|
2118
|
-
};
|
|
2199
|
+
type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidatePassRate = {
|
|
2200
|
+
mean: number;
|
|
2201
|
+
stddev: number;
|
|
2202
|
+
min: number;
|
|
2203
|
+
max: number;
|
|
2204
|
+
} | null;
|
|
2119
2205
|
|
|
2120
2206
|
/**
|
|
2121
2207
|
* Generated by orval 🍺
|
|
@@ -2124,29 +2210,20 @@ declare const CreateInboxBodyProcessorType: {
|
|
|
2124
2210
|
* OpenAPI spec version: 1.0.0
|
|
2125
2211
|
*/
|
|
2126
2212
|
|
|
2127
|
-
type
|
|
2213
|
+
type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidate = {
|
|
2128
2214
|
/**
|
|
2129
|
-
* @
|
|
2130
|
-
* @
|
|
2215
|
+
* @minimum -9007199254740991
|
|
2216
|
+
* @maximum 9007199254740991
|
|
2131
2217
|
*/
|
|
2132
|
-
|
|
2218
|
+
runs: number;
|
|
2133
2219
|
/**
|
|
2134
|
-
*
|
|
2135
|
-
* @
|
|
2220
|
+
* @minimum -9007199254740991
|
|
2221
|
+
* @maximum 9007199254740991
|
|
2136
2222
|
*/
|
|
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;
|
|
2223
|
+
graded_runs: number;
|
|
2224
|
+
pass_rate: CreateEvalBenchmarkEnvelopeDataRunSummaryCandidatePassRate;
|
|
2225
|
+
duration_seconds: CreateEvalBenchmarkEnvelopeDataRunSummaryCandidateDurationSeconds;
|
|
2226
|
+
fixture_matched_rate: CreateEvalBenchmarkEnvelopeDataRunSummaryCandidateFixtureMatchedRate;
|
|
2150
2227
|
};
|
|
2151
2228
|
|
|
2152
2229
|
/**
|
|
@@ -2155,14 +2232,24 @@ type CreateInboxBody = {
|
|
|
2155
2232
|
* Avallon API
|
|
2156
2233
|
* OpenAPI spec version: 1.0.0
|
|
2157
2234
|
*/
|
|
2235
|
+
type CreateEvalBenchmarkEnvelopeDataRunSummaryDelta = {
|
|
2236
|
+
pass_rate: number | null;
|
|
2237
|
+
duration_seconds: number | null;
|
|
2238
|
+
fixture_matched_rate: number | null;
|
|
2239
|
+
};
|
|
2240
|
+
|
|
2158
2241
|
/**
|
|
2159
|
-
*
|
|
2242
|
+
* Generated by orval 🍺
|
|
2243
|
+
* Do not edit manually.
|
|
2244
|
+
* Avallon API
|
|
2245
|
+
* OpenAPI spec version: 1.0.0
|
|
2160
2246
|
*/
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
|
|
2247
|
+
|
|
2248
|
+
type CreateEvalBenchmarkEnvelopeDataRunSummary = {
|
|
2249
|
+
candidate: CreateEvalBenchmarkEnvelopeDataRunSummaryCandidate;
|
|
2250
|
+
baseline: CreateEvalBenchmarkEnvelopeDataRunSummaryBaseline;
|
|
2251
|
+
delta: CreateEvalBenchmarkEnvelopeDataRunSummaryDelta;
|
|
2252
|
+
} | null;
|
|
2166
2253
|
|
|
2167
2254
|
/**
|
|
2168
2255
|
* Generated by orval 🍺
|
|
@@ -2170,10 +2257,11 @@ type InboxAddresses = {
|
|
|
2170
2257
|
* Avallon API
|
|
2171
2258
|
* OpenAPI spec version: 1.0.0
|
|
2172
2259
|
*/
|
|
2173
|
-
type
|
|
2174
|
-
declare const
|
|
2175
|
-
readonly
|
|
2176
|
-
readonly
|
|
2260
|
+
type CreateEvalBenchmarkEnvelopeDataStatus = (typeof CreateEvalBenchmarkEnvelopeDataStatus)[keyof typeof CreateEvalBenchmarkEnvelopeDataStatus];
|
|
2261
|
+
declare const CreateEvalBenchmarkEnvelopeDataStatus: {
|
|
2262
|
+
readonly running: "running";
|
|
2263
|
+
readonly completed: "completed";
|
|
2264
|
+
readonly error: "error";
|
|
2177
2265
|
};
|
|
2178
2266
|
|
|
2179
2267
|
/**
|
|
@@ -2183,29 +2271,31 @@ declare const InboxProcessorType: {
|
|
|
2183
2271
|
* OpenAPI spec version: 1.0.0
|
|
2184
2272
|
*/
|
|
2185
2273
|
|
|
2186
|
-
|
|
2274
|
+
type CreateEvalBenchmarkEnvelopeData = {
|
|
2187
2275
|
id: string;
|
|
2188
|
-
|
|
2189
|
-
/** Mail sent to the test address runs the worker's test version instead of its live one. */
|
|
2190
|
-
addresses: InboxAddresses;
|
|
2276
|
+
eval_id: string;
|
|
2191
2277
|
/**
|
|
2192
|
-
*
|
|
2193
|
-
* @
|
|
2278
|
+
* @minimum -9007199254740991
|
|
2279
|
+
* @maximum 9007199254740991
|
|
2194
2280
|
*/
|
|
2195
|
-
|
|
2281
|
+
candidate_version: number;
|
|
2196
2282
|
/**
|
|
2197
|
-
*
|
|
2198
|
-
* @
|
|
2283
|
+
* @minimum -9007199254740991
|
|
2284
|
+
* @maximum 9007199254740991
|
|
2199
2285
|
*/
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2286
|
+
baseline_version: number;
|
|
2287
|
+
/**
|
|
2288
|
+
* @minimum -9007199254740991
|
|
2289
|
+
* @maximum 9007199254740991
|
|
2290
|
+
*/
|
|
2291
|
+
runs_per_configuration: number;
|
|
2292
|
+
status: CreateEvalBenchmarkEnvelopeDataStatus;
|
|
2293
|
+
run_summary: CreateEvalBenchmarkEnvelopeDataRunSummary;
|
|
2294
|
+
notes: string[] | null;
|
|
2295
|
+
runs: CreateEvalBenchmarkEnvelopeDataRunsItem[];
|
|
2206
2296
|
created_at: string;
|
|
2207
|
-
|
|
2208
|
-
}
|
|
2297
|
+
completed_at: string | null;
|
|
2298
|
+
};
|
|
2209
2299
|
|
|
2210
2300
|
/**
|
|
2211
2301
|
* Generated by orval 🍺
|
|
@@ -2214,8 +2304,8 @@ interface Inbox {
|
|
|
2214
2304
|
* OpenAPI spec version: 1.0.0
|
|
2215
2305
|
*/
|
|
2216
2306
|
|
|
2217
|
-
interface
|
|
2218
|
-
data:
|
|
2307
|
+
interface CreateEvalBenchmarkEnvelope {
|
|
2308
|
+
data: CreateEvalBenchmarkEnvelopeData;
|
|
2219
2309
|
message: string;
|
|
2220
2310
|
}
|
|
2221
2311
|
|
|
@@ -2225,10 +2315,8 @@ interface CreateInboxEnvelope {
|
|
|
2225
2315
|
* Avallon API
|
|
2226
2316
|
* OpenAPI spec version: 1.0.0
|
|
2227
2317
|
*/
|
|
2228
|
-
type
|
|
2229
|
-
|
|
2230
|
-
readonly live: "live";
|
|
2231
|
-
readonly test: "test";
|
|
2318
|
+
type CreateExtractorBodySchema = {
|
|
2319
|
+
[key: string]: unknown;
|
|
2232
2320
|
};
|
|
2233
2321
|
|
|
2234
2322
|
/**
|
|
@@ -2238,19 +2326,10 @@ declare const CreateInboxWebhookBodyEnvironmentsItem: {
|
|
|
2238
2326
|
* OpenAPI spec version: 1.0.0
|
|
2239
2327
|
*/
|
|
2240
2328
|
|
|
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;
|
|
2329
|
+
type CreateExtractorBody = {
|
|
2330
|
+
/** @minLength 1 */
|
|
2331
|
+
name: string;
|
|
2332
|
+
schema: CreateExtractorBodySchema;
|
|
2254
2333
|
};
|
|
2255
2334
|
|
|
2256
2335
|
/**
|
|
@@ -2259,11 +2338,9 @@ type CreateInboxWebhookBody = {
|
|
|
2259
2338
|
* Avallon API
|
|
2260
2339
|
* OpenAPI spec version: 1.0.0
|
|
2261
2340
|
*/
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
message: string;
|
|
2266
|
-
}
|
|
2341
|
+
type ExtractorCreatedSchema = {
|
|
2342
|
+
[key: string]: unknown;
|
|
2343
|
+
};
|
|
2267
2344
|
|
|
2268
2345
|
/**
|
|
2269
2346
|
* Generated by orval 🍺
|
|
@@ -2271,12 +2348,26 @@ interface CreateInboxWebhookEnvelope {
|
|
|
2271
2348
|
* Avallon API
|
|
2272
2349
|
* OpenAPI spec version: 1.0.0
|
|
2273
2350
|
*/
|
|
2351
|
+
|
|
2352
|
+
interface ExtractorCreated {
|
|
2353
|
+
id: string;
|
|
2354
|
+
name: string;
|
|
2355
|
+
version: number;
|
|
2356
|
+
schema: ExtractorCreatedSchema;
|
|
2357
|
+
created_at: string;
|
|
2358
|
+
}
|
|
2359
|
+
|
|
2274
2360
|
/**
|
|
2275
|
-
*
|
|
2361
|
+
* Generated by orval 🍺
|
|
2362
|
+
* Do not edit manually.
|
|
2363
|
+
* Avallon API
|
|
2364
|
+
* OpenAPI spec version: 1.0.0
|
|
2276
2365
|
*/
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2366
|
+
|
|
2367
|
+
interface CreateExtractorEnvelope {
|
|
2368
|
+
data: ExtractorCreated;
|
|
2369
|
+
message: string;
|
|
2370
|
+
}
|
|
2280
2371
|
|
|
2281
2372
|
/**
|
|
2282
2373
|
* Generated by orval 🍺
|
|
@@ -2284,22 +2375,8 @@ type CreateInformationRequestBodyMetadata = {
|
|
|
2284
2375
|
* Avallon API
|
|
2285
2376
|
* OpenAPI spec version: 1.0.0
|
|
2286
2377
|
*/
|
|
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;
|
|
2378
|
+
type CreateExtractorJobBodyScope = {
|
|
2379
|
+
[key: string]: string | number | boolean | null;
|
|
2303
2380
|
};
|
|
2304
2381
|
|
|
2305
2382
|
/**
|
|
@@ -2308,10 +2385,10 @@ type CreateInformationRequestBody = {
|
|
|
2308
2385
|
* Avallon API
|
|
2309
2386
|
* OpenAPI spec version: 1.0.0
|
|
2310
2387
|
*/
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2314
|
-
|
|
2388
|
+
|
|
2389
|
+
type CreateExtractorJobBody = {
|
|
2390
|
+
extractor_id: string;
|
|
2391
|
+
scope: CreateExtractorJobBodyScope;
|
|
2315
2392
|
};
|
|
2316
2393
|
|
|
2317
2394
|
/**
|
|
@@ -2320,7 +2397,7 @@ declare const InformationRequestEnvironment: {
|
|
|
2320
2397
|
* Avallon API
|
|
2321
2398
|
* OpenAPI spec version: 1.0.0
|
|
2322
2399
|
*/
|
|
2323
|
-
type
|
|
2400
|
+
type ExtractorJobCreatedScope = {
|
|
2324
2401
|
[key: string]: unknown;
|
|
2325
2402
|
};
|
|
2326
2403
|
|
|
@@ -2331,20 +2408,12 @@ type InformationRequestMetadata = {
|
|
|
2331
2408
|
* OpenAPI spec version: 1.0.0
|
|
2332
2409
|
*/
|
|
2333
2410
|
|
|
2334
|
-
interface
|
|
2411
|
+
interface ExtractorJobCreated {
|
|
2335
2412
|
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;
|
|
2413
|
+
extractor_id: string;
|
|
2414
|
+
extractor_version: number;
|
|
2415
|
+
scope: ExtractorJobCreatedScope;
|
|
2416
|
+
status: string;
|
|
2348
2417
|
created_at: string;
|
|
2349
2418
|
}
|
|
2350
2419
|
|
|
@@ -2355,8 +2424,8 @@ interface InformationRequest {
|
|
|
2355
2424
|
* OpenAPI spec version: 1.0.0
|
|
2356
2425
|
*/
|
|
2357
2426
|
|
|
2358
|
-
interface
|
|
2359
|
-
data:
|
|
2427
|
+
interface CreateExtractorJobEnvelope {
|
|
2428
|
+
data: ExtractorJobCreated;
|
|
2360
2429
|
message: string;
|
|
2361
2430
|
}
|
|
2362
2431
|
|
|
@@ -2366,8 +2435,8 @@ interface CreateInformationRequestEnvelope {
|
|
|
2366
2435
|
* Avallon API
|
|
2367
2436
|
* OpenAPI spec version: 1.0.0
|
|
2368
2437
|
*/
|
|
2369
|
-
type
|
|
2370
|
-
declare const
|
|
2438
|
+
type CreateExtractorWebhookBodyEnvironmentsItem = (typeof CreateExtractorWebhookBodyEnvironmentsItem)[keyof typeof CreateExtractorWebhookBodyEnvironmentsItem];
|
|
2439
|
+
declare const CreateExtractorWebhookBodyEnvironmentsItem: {
|
|
2371
2440
|
readonly live: "live";
|
|
2372
2441
|
readonly test: "test";
|
|
2373
2442
|
};
|
|
@@ -2379,7 +2448,7 @@ declare const CreateNotificationWebhookBodyEnvironmentsItem: {
|
|
|
2379
2448
|
* OpenAPI spec version: 1.0.0
|
|
2380
2449
|
*/
|
|
2381
2450
|
|
|
2382
|
-
type
|
|
2451
|
+
type CreateExtractorWebhookBody = {
|
|
2383
2452
|
/**
|
|
2384
2453
|
* @minLength 1
|
|
2385
2454
|
* @maxLength 256
|
|
@@ -2388,7 +2457,7 @@ type CreateNotificationWebhookBody = {
|
|
|
2388
2457
|
/** @maxLength 2048 */
|
|
2389
2458
|
url: string;
|
|
2390
2459
|
/** @minItems 1 */
|
|
2391
|
-
environments?:
|
|
2460
|
+
environments?: CreateExtractorWebhookBodyEnvironmentsItem[];
|
|
2392
2461
|
auth_header_name?: string | null;
|
|
2393
2462
|
auth_header_value?: string | null;
|
|
2394
2463
|
enabled?: boolean;
|
|
@@ -2401,7 +2470,7 @@ type CreateNotificationWebhookBody = {
|
|
|
2401
2470
|
* OpenAPI spec version: 1.0.0
|
|
2402
2471
|
*/
|
|
2403
2472
|
|
|
2404
|
-
interface
|
|
2473
|
+
interface CreateExtractorWebhookEnvelope {
|
|
2405
2474
|
data: Webhook;
|
|
2406
2475
|
message: string;
|
|
2407
2476
|
}
|
|
@@ -2412,11 +2481,16 @@ interface CreateNotificationWebhookEnvelope {
|
|
|
2412
2481
|
* Avallon API
|
|
2413
2482
|
* OpenAPI spec version: 1.0.0
|
|
2414
2483
|
*/
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2484
|
+
interface CreateFeedbackRequest {
|
|
2485
|
+
/** The message ID to attach feedback to */
|
|
2486
|
+
message_id: string;
|
|
2487
|
+
/**
|
|
2488
|
+
* Feedback content
|
|
2489
|
+
* @minLength 1
|
|
2490
|
+
* @maxLength 10000
|
|
2491
|
+
*/
|
|
2492
|
+
text: string;
|
|
2493
|
+
}
|
|
2420
2494
|
|
|
2421
2495
|
/**
|
|
2422
2496
|
* Generated by orval 🍺
|
|
@@ -2425,15 +2499,12 @@ declare const CreateScheduleBodyEnvironmentsItem: {
|
|
|
2425
2499
|
* OpenAPI spec version: 1.0.0
|
|
2426
2500
|
*/
|
|
2427
2501
|
/**
|
|
2428
|
-
*
|
|
2502
|
+
* Type of processor. Defaults to 'extractor' when extractor_id is used.
|
|
2429
2503
|
*/
|
|
2430
|
-
type
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
scope?: {
|
|
2435
|
-
[key: string]: string | number | boolean | null;
|
|
2436
|
-
} | null;
|
|
2504
|
+
type CreateInboxBodyProcessorType = (typeof CreateInboxBodyProcessorType)[keyof typeof CreateInboxBodyProcessorType];
|
|
2505
|
+
declare const CreateInboxBodyProcessorType: {
|
|
2506
|
+
readonly extractor: "extractor";
|
|
2507
|
+
readonly worker: "worker";
|
|
2437
2508
|
};
|
|
2438
2509
|
|
|
2439
2510
|
/**
|
|
@@ -2442,21 +2513,31 @@ type ScheduleAction = {
|
|
|
2442
2513
|
* Avallon API
|
|
2443
2514
|
* OpenAPI spec version: 1.0.0
|
|
2444
2515
|
*/
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
*/
|
|
2448
|
-
interface RecurrencePattern {
|
|
2516
|
+
|
|
2517
|
+
type CreateInboxBody = {
|
|
2449
2518
|
/**
|
|
2450
|
-
*
|
|
2451
|
-
* @
|
|
2452
|
-
* @maximum 59
|
|
2519
|
+
* @minLength 1
|
|
2520
|
+
* @maxLength 256
|
|
2453
2521
|
*/
|
|
2454
|
-
|
|
2455
|
-
/**
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2522
|
+
name: string;
|
|
2523
|
+
/**
|
|
2524
|
+
* Deprecated. Use processor_id instead.
|
|
2525
|
+
* @deprecated
|
|
2526
|
+
*/
|
|
2527
|
+
extractor_id?: string;
|
|
2528
|
+
/** ID of the processor (extractor or worker) to use. */
|
|
2529
|
+
processor_id?: string;
|
|
2530
|
+
/** Type of processor. Defaults to 'extractor' when extractor_id is used. */
|
|
2531
|
+
processor_type?: CreateInboxBodyProcessorType;
|
|
2532
|
+
attachment_password?: string | null;
|
|
2533
|
+
pdf_splitting_enabled?: boolean;
|
|
2534
|
+
/** Username for the live address. Generated when omitted. */
|
|
2535
|
+
username?: string;
|
|
2536
|
+
/** Username for the test address. Generated when omitted. */
|
|
2537
|
+
test_username?: string;
|
|
2538
|
+
/** 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. */
|
|
2539
|
+
allowed_sender_domains: string[] | null;
|
|
2540
|
+
};
|
|
2460
2541
|
|
|
2461
2542
|
/**
|
|
2462
2543
|
* Generated by orval 🍺
|
|
@@ -2464,24 +2545,25 @@ interface RecurrencePattern {
|
|
|
2464
2545
|
* Avallon API
|
|
2465
2546
|
* OpenAPI spec version: 1.0.0
|
|
2466
2547
|
*/
|
|
2548
|
+
/**
|
|
2549
|
+
* Mail sent to the test address runs the worker's test version instead of its live one.
|
|
2550
|
+
*/
|
|
2551
|
+
type InboxAddresses = {
|
|
2552
|
+
live: string;
|
|
2553
|
+
/** Null on inboxes created before test addresses existed. */
|
|
2554
|
+
test: string | null;
|
|
2555
|
+
};
|
|
2467
2556
|
|
|
2468
2557
|
/**
|
|
2469
|
-
*
|
|
2558
|
+
* Generated by orval 🍺
|
|
2559
|
+
* Do not edit manually.
|
|
2560
|
+
* Avallon API
|
|
2561
|
+
* OpenAPI spec version: 1.0.0
|
|
2470
2562
|
*/
|
|
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[];
|
|
2563
|
+
type InboxProcessorType = (typeof InboxProcessorType)[keyof typeof InboxProcessorType];
|
|
2564
|
+
declare const InboxProcessorType: {
|
|
2565
|
+
readonly extractor: "extractor";
|
|
2566
|
+
readonly worker: "worker";
|
|
2485
2567
|
};
|
|
2486
2568
|
|
|
2487
2569
|
/**
|
|
@@ -2491,20 +2573,29 @@ type ScheduleRule = {
|
|
|
2491
2573
|
* OpenAPI spec version: 1.0.0
|
|
2492
2574
|
*/
|
|
2493
2575
|
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
/**
|
|
2498
|
-
|
|
2576
|
+
interface Inbox {
|
|
2577
|
+
id: string;
|
|
2578
|
+
name: string;
|
|
2579
|
+
/** Mail sent to the test address runs the worker's test version instead of its live one. */
|
|
2580
|
+
addresses: InboxAddresses;
|
|
2499
2581
|
/**
|
|
2500
|
-
*
|
|
2501
|
-
* @
|
|
2502
|
-
* @maxLength 200
|
|
2582
|
+
* Deprecated. Use addresses.live instead.
|
|
2583
|
+
* @deprecated
|
|
2503
2584
|
*/
|
|
2504
|
-
|
|
2505
|
-
/**
|
|
2506
|
-
|
|
2507
|
-
|
|
2585
|
+
email_address: string;
|
|
2586
|
+
/**
|
|
2587
|
+
* Deprecated. Use processor_id instead.
|
|
2588
|
+
* @deprecated
|
|
2589
|
+
*/
|
|
2590
|
+
extractor_id: string;
|
|
2591
|
+
processor_id: string;
|
|
2592
|
+
processor_type: InboxProcessorType;
|
|
2593
|
+
has_password: boolean;
|
|
2594
|
+
pdf_splitting_enabled: boolean;
|
|
2595
|
+
allowed_sender_domains: string[] | null;
|
|
2596
|
+
created_at: string;
|
|
2597
|
+
updated_at: string;
|
|
2598
|
+
}
|
|
2508
2599
|
|
|
2509
2600
|
/**
|
|
2510
2601
|
* Generated by orval 🍺
|
|
@@ -2512,17 +2603,11 @@ type CreateScheduleBody = {
|
|
|
2512
2603
|
* Avallon API
|
|
2513
2604
|
* OpenAPI spec version: 1.0.0
|
|
2514
2605
|
*/
|
|
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
|
-
};
|
|
2606
|
+
|
|
2607
|
+
interface CreateInboxEnvelope {
|
|
2608
|
+
data: Inbox;
|
|
2609
|
+
message: string;
|
|
2610
|
+
}
|
|
2526
2611
|
|
|
2527
2612
|
/**
|
|
2528
2613
|
* Generated by orval 🍺
|
|
@@ -2530,8 +2615,8 @@ type ScheduleActionOutput = {
|
|
|
2530
2615
|
* Avallon API
|
|
2531
2616
|
* OpenAPI spec version: 1.0.0
|
|
2532
2617
|
*/
|
|
2533
|
-
type
|
|
2534
|
-
declare const
|
|
2618
|
+
type CreateInboxWebhookBodyEnvironmentsItem = (typeof CreateInboxWebhookBodyEnvironmentsItem)[keyof typeof CreateInboxWebhookBodyEnvironmentsItem];
|
|
2619
|
+
declare const CreateInboxWebhookBodyEnvironmentsItem: {
|
|
2535
2620
|
readonly live: "live";
|
|
2536
2621
|
readonly test: "test";
|
|
2537
2622
|
};
|
|
@@ -2542,12 +2627,317 @@ declare const ScheduleEnvironmentsItem: {
|
|
|
2542
2627
|
* Avallon API
|
|
2543
2628
|
* OpenAPI spec version: 1.0.0
|
|
2544
2629
|
*/
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
*/
|
|
2548
|
-
interface RecurrencePatternOutput {
|
|
2630
|
+
|
|
2631
|
+
type CreateInboxWebhookBody = {
|
|
2549
2632
|
/**
|
|
2550
|
-
*
|
|
2633
|
+
* @minLength 1
|
|
2634
|
+
* @maxLength 256
|
|
2635
|
+
*/
|
|
2636
|
+
name: string;
|
|
2637
|
+
/** @maxLength 2048 */
|
|
2638
|
+
url: string;
|
|
2639
|
+
/** @minItems 1 */
|
|
2640
|
+
environments?: CreateInboxWebhookBodyEnvironmentsItem[];
|
|
2641
|
+
auth_header_name?: string | null;
|
|
2642
|
+
auth_header_value?: string | null;
|
|
2643
|
+
enabled?: boolean;
|
|
2644
|
+
};
|
|
2645
|
+
|
|
2646
|
+
/**
|
|
2647
|
+
* Generated by orval 🍺
|
|
2648
|
+
* Do not edit manually.
|
|
2649
|
+
* Avallon API
|
|
2650
|
+
* OpenAPI spec version: 1.0.0
|
|
2651
|
+
*/
|
|
2652
|
+
|
|
2653
|
+
interface CreateInboxWebhookEnvelope {
|
|
2654
|
+
data: Webhook;
|
|
2655
|
+
message: string;
|
|
2656
|
+
}
|
|
2657
|
+
|
|
2658
|
+
/**
|
|
2659
|
+
* Generated by orval 🍺
|
|
2660
|
+
* Do not edit manually.
|
|
2661
|
+
* Avallon API
|
|
2662
|
+
* OpenAPI spec version: 1.0.0
|
|
2663
|
+
*/
|
|
2664
|
+
/**
|
|
2665
|
+
* Context to store alongside the question, for whoever picks it up.
|
|
2666
|
+
*/
|
|
2667
|
+
type CreateInformationRequestBodyMetadata = {
|
|
2668
|
+
[key: string]: unknown;
|
|
2669
|
+
};
|
|
2670
|
+
|
|
2671
|
+
/**
|
|
2672
|
+
* Generated by orval 🍺
|
|
2673
|
+
* Do not edit manually.
|
|
2674
|
+
* Avallon API
|
|
2675
|
+
* OpenAPI spec version: 1.0.0
|
|
2676
|
+
*/
|
|
2677
|
+
|
|
2678
|
+
type CreateInformationRequestBody = {
|
|
2679
|
+
/**
|
|
2680
|
+
* 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.
|
|
2681
|
+
* @minLength 1
|
|
2682
|
+
* @maxLength 120
|
|
2683
|
+
*/
|
|
2684
|
+
title: string;
|
|
2685
|
+
/**
|
|
2686
|
+
* 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.
|
|
2687
|
+
* @minLength 1
|
|
2688
|
+
* @maxLength 2000
|
|
2689
|
+
*/
|
|
2690
|
+
question: string;
|
|
2691
|
+
/** Context to store alongside the question, for whoever picks it up. */
|
|
2692
|
+
metadata?: CreateInformationRequestBodyMetadata;
|
|
2693
|
+
};
|
|
2694
|
+
|
|
2695
|
+
/**
|
|
2696
|
+
* Generated by orval 🍺
|
|
2697
|
+
* Do not edit manually.
|
|
2698
|
+
* Avallon API
|
|
2699
|
+
* OpenAPI spec version: 1.0.0
|
|
2700
|
+
*/
|
|
2701
|
+
type InformationRequestEnvironment = (typeof InformationRequestEnvironment)[keyof typeof InformationRequestEnvironment];
|
|
2702
|
+
declare const InformationRequestEnvironment: {
|
|
2703
|
+
readonly live: "live";
|
|
2704
|
+
readonly test: "test";
|
|
2705
|
+
};
|
|
2706
|
+
|
|
2707
|
+
/**
|
|
2708
|
+
* Generated by orval 🍺
|
|
2709
|
+
* Do not edit manually.
|
|
2710
|
+
* Avallon API
|
|
2711
|
+
* OpenAPI spec version: 1.0.0
|
|
2712
|
+
*/
|
|
2713
|
+
type InformationRequestMetadata = {
|
|
2714
|
+
[key: string]: unknown;
|
|
2715
|
+
};
|
|
2716
|
+
|
|
2717
|
+
/**
|
|
2718
|
+
* Generated by orval 🍺
|
|
2719
|
+
* Do not edit manually.
|
|
2720
|
+
* Avallon API
|
|
2721
|
+
* OpenAPI spec version: 1.0.0
|
|
2722
|
+
*/
|
|
2723
|
+
|
|
2724
|
+
interface InformationRequest {
|
|
2725
|
+
id: string;
|
|
2726
|
+
/** Short label the asker gave the question */
|
|
2727
|
+
title: string;
|
|
2728
|
+
/** What the asker needs to know */
|
|
2729
|
+
question: string;
|
|
2730
|
+
/** Null while the request is open */
|
|
2731
|
+
resolution: string | null;
|
|
2732
|
+
resolved_by: string | null;
|
|
2733
|
+
resolved_at: string | null;
|
|
2734
|
+
metadata: InformationRequestMetadata;
|
|
2735
|
+
environment: InformationRequestEnvironment;
|
|
2736
|
+
/** Actor that raised the request */
|
|
2737
|
+
created_by: string;
|
|
2738
|
+
created_at: string;
|
|
2739
|
+
}
|
|
2740
|
+
|
|
2741
|
+
/**
|
|
2742
|
+
* Generated by orval 🍺
|
|
2743
|
+
* Do not edit manually.
|
|
2744
|
+
* Avallon API
|
|
2745
|
+
* OpenAPI spec version: 1.0.0
|
|
2746
|
+
*/
|
|
2747
|
+
|
|
2748
|
+
interface CreateInformationRequestEnvelope {
|
|
2749
|
+
data: InformationRequest;
|
|
2750
|
+
message: string;
|
|
2751
|
+
}
|
|
2752
|
+
|
|
2753
|
+
/**
|
|
2754
|
+
* Generated by orval 🍺
|
|
2755
|
+
* Do not edit manually.
|
|
2756
|
+
* Avallon API
|
|
2757
|
+
* OpenAPI spec version: 1.0.0
|
|
2758
|
+
*/
|
|
2759
|
+
type CreateNotificationWebhookBodyEnvironmentsItem = (typeof CreateNotificationWebhookBodyEnvironmentsItem)[keyof typeof CreateNotificationWebhookBodyEnvironmentsItem];
|
|
2760
|
+
declare const CreateNotificationWebhookBodyEnvironmentsItem: {
|
|
2761
|
+
readonly live: "live";
|
|
2762
|
+
readonly test: "test";
|
|
2763
|
+
};
|
|
2764
|
+
|
|
2765
|
+
/**
|
|
2766
|
+
* Generated by orval 🍺
|
|
2767
|
+
* Do not edit manually.
|
|
2768
|
+
* Avallon API
|
|
2769
|
+
* OpenAPI spec version: 1.0.0
|
|
2770
|
+
*/
|
|
2771
|
+
|
|
2772
|
+
type CreateNotificationWebhookBody = {
|
|
2773
|
+
/**
|
|
2774
|
+
* @minLength 1
|
|
2775
|
+
* @maxLength 256
|
|
2776
|
+
*/
|
|
2777
|
+
name: string;
|
|
2778
|
+
/** @maxLength 2048 */
|
|
2779
|
+
url: string;
|
|
2780
|
+
/** @minItems 1 */
|
|
2781
|
+
environments?: CreateNotificationWebhookBodyEnvironmentsItem[];
|
|
2782
|
+
auth_header_name?: string | null;
|
|
2783
|
+
auth_header_value?: string | null;
|
|
2784
|
+
enabled?: boolean;
|
|
2785
|
+
};
|
|
2786
|
+
|
|
2787
|
+
/**
|
|
2788
|
+
* Generated by orval 🍺
|
|
2789
|
+
* Do not edit manually.
|
|
2790
|
+
* Avallon API
|
|
2791
|
+
* OpenAPI spec version: 1.0.0
|
|
2792
|
+
*/
|
|
2793
|
+
|
|
2794
|
+
interface CreateNotificationWebhookEnvelope {
|
|
2795
|
+
data: Webhook;
|
|
2796
|
+
message: string;
|
|
2797
|
+
}
|
|
2798
|
+
|
|
2799
|
+
/**
|
|
2800
|
+
* Generated by orval 🍺
|
|
2801
|
+
* Do not edit manually.
|
|
2802
|
+
* Avallon API
|
|
2803
|
+
* OpenAPI spec version: 1.0.0
|
|
2804
|
+
*/
|
|
2805
|
+
type CreateScheduleBodyEnvironmentsItem = (typeof CreateScheduleBodyEnvironmentsItem)[keyof typeof CreateScheduleBodyEnvironmentsItem];
|
|
2806
|
+
declare const CreateScheduleBodyEnvironmentsItem: {
|
|
2807
|
+
readonly live: "live";
|
|
2808
|
+
readonly test: "test";
|
|
2809
|
+
};
|
|
2810
|
+
|
|
2811
|
+
/**
|
|
2812
|
+
* Generated by orval 🍺
|
|
2813
|
+
* Do not edit manually.
|
|
2814
|
+
* Avallon API
|
|
2815
|
+
* OpenAPI spec version: 1.0.0
|
|
2816
|
+
*/
|
|
2817
|
+
/**
|
|
2818
|
+
* What the schedule does every time it fires
|
|
2819
|
+
*/
|
|
2820
|
+
type ScheduleAction = {
|
|
2821
|
+
type: "trigger_worker";
|
|
2822
|
+
worker_id: string;
|
|
2823
|
+
/** Scope of the runs this schedule creates. Omit or send null to run without artifacts. */
|
|
2824
|
+
scope?: {
|
|
2825
|
+
[key: string]: string | number | boolean | null;
|
|
2826
|
+
} | null;
|
|
2827
|
+
};
|
|
2828
|
+
|
|
2829
|
+
/**
|
|
2830
|
+
* Generated by orval 🍺
|
|
2831
|
+
* Do not edit manually.
|
|
2832
|
+
* Avallon API
|
|
2833
|
+
* OpenAPI spec version: 1.0.0
|
|
2834
|
+
*/
|
|
2835
|
+
/**
|
|
2836
|
+
* One set of local times a schedule fires at
|
|
2837
|
+
*/
|
|
2838
|
+
interface RecurrencePattern {
|
|
2839
|
+
/**
|
|
2840
|
+
* Minute, 0-59
|
|
2841
|
+
* @minimum 0
|
|
2842
|
+
* @maximum 59
|
|
2843
|
+
*/
|
|
2844
|
+
minute: number;
|
|
2845
|
+
/** Local hours the pattern may fire in. Omit or send null to fire every hour. */
|
|
2846
|
+
hours?: number[] | null;
|
|
2847
|
+
/** Local ISO-8601 weekdays the pattern may fire on. Omit or send null to fire every day. */
|
|
2848
|
+
weekdays?: number[] | null;
|
|
2849
|
+
}
|
|
2850
|
+
|
|
2851
|
+
/**
|
|
2852
|
+
* Generated by orval 🍺
|
|
2853
|
+
* Do not edit manually.
|
|
2854
|
+
* Avallon API
|
|
2855
|
+
* OpenAPI spec version: 1.0.0
|
|
2856
|
+
*/
|
|
2857
|
+
|
|
2858
|
+
/**
|
|
2859
|
+
* When the schedule fires
|
|
2860
|
+
*/
|
|
2861
|
+
type ScheduleRule = {
|
|
2862
|
+
type: "once";
|
|
2863
|
+
/** The moment it fires, in UTC, e.g. "2026-09-01T14:00:00Z" */
|
|
2864
|
+
at: string;
|
|
2865
|
+
} | {
|
|
2866
|
+
type: "recurring";
|
|
2867
|
+
/** IANA time zone identifier, e.g. "America/Chicago" */
|
|
2868
|
+
timezone: string;
|
|
2869
|
+
/**
|
|
2870
|
+
* The schedule fires whenever any of these patterns comes round, all read in the rule's time zone.
|
|
2871
|
+
* @minItems 1
|
|
2872
|
+
* @maxItems 10
|
|
2873
|
+
*/
|
|
2874
|
+
patterns: RecurrencePattern[];
|
|
2875
|
+
};
|
|
2876
|
+
|
|
2877
|
+
/**
|
|
2878
|
+
* Generated by orval 🍺
|
|
2879
|
+
* Do not edit manually.
|
|
2880
|
+
* Avallon API
|
|
2881
|
+
* OpenAPI spec version: 1.0.0
|
|
2882
|
+
*/
|
|
2883
|
+
|
|
2884
|
+
type CreateScheduleBody = {
|
|
2885
|
+
action: ScheduleAction;
|
|
2886
|
+
rule: ScheduleRule;
|
|
2887
|
+
/** 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. */
|
|
2888
|
+
environments?: CreateScheduleBodyEnvironmentsItem[];
|
|
2889
|
+
/**
|
|
2890
|
+
* Human-readable name, e.g. "Nightly claim sweep"
|
|
2891
|
+
* @minLength 1
|
|
2892
|
+
* @maxLength 200
|
|
2893
|
+
*/
|
|
2894
|
+
name?: string;
|
|
2895
|
+
/** Whether the schedule starts firing right away. Defaults to true. Must be omitted or true for `once` rules. */
|
|
2896
|
+
enabled?: boolean;
|
|
2897
|
+
};
|
|
2898
|
+
|
|
2899
|
+
/**
|
|
2900
|
+
* Generated by orval 🍺
|
|
2901
|
+
* Do not edit manually.
|
|
2902
|
+
* Avallon API
|
|
2903
|
+
* OpenAPI spec version: 1.0.0
|
|
2904
|
+
*/
|
|
2905
|
+
/**
|
|
2906
|
+
* What the schedule does every time it fires
|
|
2907
|
+
*/
|
|
2908
|
+
type ScheduleActionOutput = {
|
|
2909
|
+
type: "trigger_worker";
|
|
2910
|
+
worker_id: string;
|
|
2911
|
+
/** Scope of the runs this schedule creates. Omit or send null to run without artifacts. */
|
|
2912
|
+
scope?: {
|
|
2913
|
+
[key: string]: string | number | boolean | null;
|
|
2914
|
+
} | null;
|
|
2915
|
+
};
|
|
2916
|
+
|
|
2917
|
+
/**
|
|
2918
|
+
* Generated by orval 🍺
|
|
2919
|
+
* Do not edit manually.
|
|
2920
|
+
* Avallon API
|
|
2921
|
+
* OpenAPI spec version: 1.0.0
|
|
2922
|
+
*/
|
|
2923
|
+
type ScheduleEnvironmentsItem = (typeof ScheduleEnvironmentsItem)[keyof typeof ScheduleEnvironmentsItem];
|
|
2924
|
+
declare const ScheduleEnvironmentsItem: {
|
|
2925
|
+
readonly live: "live";
|
|
2926
|
+
readonly test: "test";
|
|
2927
|
+
};
|
|
2928
|
+
|
|
2929
|
+
/**
|
|
2930
|
+
* Generated by orval 🍺
|
|
2931
|
+
* Do not edit manually.
|
|
2932
|
+
* Avallon API
|
|
2933
|
+
* OpenAPI spec version: 1.0.0
|
|
2934
|
+
*/
|
|
2935
|
+
/**
|
|
2936
|
+
* One set of local times a schedule fires at
|
|
2937
|
+
*/
|
|
2938
|
+
interface RecurrencePatternOutput {
|
|
2939
|
+
/**
|
|
2940
|
+
* Minute, 0-59
|
|
2551
2941
|
* @minimum 0
|
|
2552
2942
|
* @maximum 59
|
|
2553
2943
|
*/
|
|
@@ -3341,6 +3731,15 @@ interface CreateWorkerEnvelope {
|
|
|
3341
3731
|
* OpenAPI spec version: 1.0.0
|
|
3342
3732
|
*/
|
|
3343
3733
|
type CreateWorkerEvalFromRunBodyGrader = {
|
|
3734
|
+
type: "prompt";
|
|
3735
|
+
/**
|
|
3736
|
+
* @minItems 1
|
|
3737
|
+
* @maxItems 50
|
|
3738
|
+
* @items.minLength 1
|
|
3739
|
+
* @items.maxLength 2000
|
|
3740
|
+
*/
|
|
3741
|
+
assertions: string[];
|
|
3742
|
+
} | {
|
|
3344
3743
|
type: "prompt";
|
|
3345
3744
|
/**
|
|
3346
3745
|
* @minLength 1
|
|
@@ -3398,6 +3797,8 @@ type CreateWorkerEvalFromRunEnvelopeDataFixture = {
|
|
|
3398
3797
|
*/
|
|
3399
3798
|
type CreateWorkerEvalFromRunEnvelopeDataGrader = {
|
|
3400
3799
|
type: "prompt";
|
|
3800
|
+
assertions: string[];
|
|
3801
|
+
/** Deprecated: assertions joined by newlines. Use assertions. */
|
|
3401
3802
|
criterion: string;
|
|
3402
3803
|
};
|
|
3403
3804
|
|
|
@@ -4468,7 +4869,270 @@ interface ExtractSummary {
|
|
|
4468
4869
|
* OpenAPI spec version: 1.0.0
|
|
4469
4870
|
*/
|
|
4470
4871
|
|
|
4471
|
-
type ExtractList = ExtractSummary[];
|
|
4872
|
+
type ExtractList = ExtractSummary[];
|
|
4873
|
+
|
|
4874
|
+
/**
|
|
4875
|
+
* Generated by orval 🍺
|
|
4876
|
+
* Do not edit manually.
|
|
4877
|
+
* Avallon API
|
|
4878
|
+
* OpenAPI spec version: 1.0.0
|
|
4879
|
+
*/
|
|
4880
|
+
type ExtractorSchema = {
|
|
4881
|
+
[key: string]: unknown;
|
|
4882
|
+
};
|
|
4883
|
+
|
|
4884
|
+
/**
|
|
4885
|
+
* Generated by orval 🍺
|
|
4886
|
+
* Do not edit manually.
|
|
4887
|
+
* Avallon API
|
|
4888
|
+
* OpenAPI spec version: 1.0.0
|
|
4889
|
+
*/
|
|
4890
|
+
|
|
4891
|
+
interface Extractor {
|
|
4892
|
+
id: string;
|
|
4893
|
+
name: string;
|
|
4894
|
+
version: number;
|
|
4895
|
+
schema: ExtractorSchema;
|
|
4896
|
+
created_at: string;
|
|
4897
|
+
updated_at: string;
|
|
4898
|
+
}
|
|
4899
|
+
|
|
4900
|
+
/**
|
|
4901
|
+
* Generated by orval 🍺
|
|
4902
|
+
* Do not edit manually.
|
|
4903
|
+
* Avallon API
|
|
4904
|
+
* OpenAPI spec version: 1.0.0
|
|
4905
|
+
*/
|
|
4906
|
+
/**
|
|
4907
|
+
* Job scope metadata (e.g. claim_id, email_id)
|
|
4908
|
+
*/
|
|
4909
|
+
type ExtractorJobScope = {
|
|
4910
|
+
[key: string]: unknown;
|
|
4911
|
+
};
|
|
4912
|
+
|
|
4913
|
+
/**
|
|
4914
|
+
* Generated by orval 🍺
|
|
4915
|
+
* Do not edit manually.
|
|
4916
|
+
* Avallon API
|
|
4917
|
+
* OpenAPI spec version: 1.0.0
|
|
4918
|
+
*/
|
|
4919
|
+
|
|
4920
|
+
interface ExtractorJob {
|
|
4921
|
+
/** Unique job identifier */
|
|
4922
|
+
id: string;
|
|
4923
|
+
/** ID of the extractor that created this job */
|
|
4924
|
+
extractor_id: string;
|
|
4925
|
+
/**
|
|
4926
|
+
* Version of the extractor at job creation time
|
|
4927
|
+
* @minimum -9007199254740991
|
|
4928
|
+
* @maximum 9007199254740991
|
|
4929
|
+
*/
|
|
4930
|
+
extractor_version: number;
|
|
4931
|
+
/** Name of the extractor */
|
|
4932
|
+
extractor_name: string;
|
|
4933
|
+
/** Current job status */
|
|
4934
|
+
status: string;
|
|
4935
|
+
/** Job scope metadata (e.g. claim_id, email_id) */
|
|
4936
|
+
scope: ExtractorJobScope;
|
|
4937
|
+
/** ISO 8601 timestamp when the job was created */
|
|
4938
|
+
created_at: string;
|
|
4939
|
+
/** ISO 8601 timestamp when processing started */
|
|
4940
|
+
started_at: string | null;
|
|
4941
|
+
/** ISO 8601 timestamp when processing finished */
|
|
4942
|
+
completed_at: string | null;
|
|
4943
|
+
/** Processing duration in milliseconds */
|
|
4944
|
+
processing_duration_ms: number | null;
|
|
4945
|
+
/** ID of the resulting extract, if completed */
|
|
4946
|
+
extract_id: string | null;
|
|
4947
|
+
error: string | null;
|
|
4948
|
+
}
|
|
4949
|
+
|
|
4950
|
+
/**
|
|
4951
|
+
* Generated by orval 🍺
|
|
4952
|
+
* Do not edit manually.
|
|
4953
|
+
* Avallon API
|
|
4954
|
+
* OpenAPI spec version: 1.0.0
|
|
4955
|
+
*/
|
|
4956
|
+
type ExtractorJobDetailScope = {
|
|
4957
|
+
[key: string]: unknown;
|
|
4958
|
+
};
|
|
4959
|
+
|
|
4960
|
+
/**
|
|
4961
|
+
* Generated by orval 🍺
|
|
4962
|
+
* Do not edit manually.
|
|
4963
|
+
* Avallon API
|
|
4964
|
+
* OpenAPI spec version: 1.0.0
|
|
4965
|
+
*/
|
|
4966
|
+
|
|
4967
|
+
interface ExtractorJobDetail {
|
|
4968
|
+
id: string;
|
|
4969
|
+
extractor_id: string;
|
|
4970
|
+
extractor_version: number;
|
|
4971
|
+
extractor_name: string;
|
|
4972
|
+
status: string;
|
|
4973
|
+
scope: ExtractorJobDetailScope;
|
|
4974
|
+
created_at: string;
|
|
4975
|
+
started_at: string | null;
|
|
4976
|
+
completed_at: string | null;
|
|
4977
|
+
processing_duration_ms: number | null;
|
|
4978
|
+
extract_id: string | null;
|
|
4979
|
+
error: string | null;
|
|
4980
|
+
}
|
|
4981
|
+
|
|
4982
|
+
/**
|
|
4983
|
+
* Generated by orval 🍺
|
|
4984
|
+
* Do not edit manually.
|
|
4985
|
+
* Avallon API
|
|
4986
|
+
* OpenAPI spec version: 1.0.0
|
|
4987
|
+
*/
|
|
4988
|
+
|
|
4989
|
+
type ExtractorJobList = ExtractorJob[];
|
|
4990
|
+
|
|
4991
|
+
/**
|
|
4992
|
+
* Generated by orval 🍺
|
|
4993
|
+
* Do not edit manually.
|
|
4994
|
+
* Avallon API
|
|
4995
|
+
* OpenAPI spec version: 1.0.0
|
|
4996
|
+
*/
|
|
4997
|
+
interface ExtractorSummary {
|
|
4998
|
+
id: string;
|
|
4999
|
+
name: string;
|
|
5000
|
+
version: number;
|
|
5001
|
+
created_at: string;
|
|
5002
|
+
updated_at: string;
|
|
5003
|
+
}
|
|
5004
|
+
|
|
5005
|
+
/**
|
|
5006
|
+
* Generated by orval 🍺
|
|
5007
|
+
* Do not edit manually.
|
|
5008
|
+
* Avallon API
|
|
5009
|
+
* OpenAPI spec version: 1.0.0
|
|
5010
|
+
*/
|
|
5011
|
+
|
|
5012
|
+
type ExtractorList = ExtractorSummary[];
|
|
5013
|
+
|
|
5014
|
+
/**
|
|
5015
|
+
* Generated by orval 🍺
|
|
5016
|
+
* Do not edit manually.
|
|
5017
|
+
* Avallon API
|
|
5018
|
+
* OpenAPI spec version: 1.0.0
|
|
5019
|
+
*/
|
|
5020
|
+
type ExtractorUpdatedSchema = {
|
|
5021
|
+
[key: string]: unknown;
|
|
5022
|
+
};
|
|
5023
|
+
|
|
5024
|
+
/**
|
|
5025
|
+
* Generated by orval 🍺
|
|
5026
|
+
* Do not edit manually.
|
|
5027
|
+
* Avallon API
|
|
5028
|
+
* OpenAPI spec version: 1.0.0
|
|
5029
|
+
*/
|
|
5030
|
+
|
|
5031
|
+
interface ExtractorUpdated {
|
|
5032
|
+
id: string;
|
|
5033
|
+
name: string;
|
|
5034
|
+
version: number;
|
|
5035
|
+
schema: ExtractorUpdatedSchema;
|
|
5036
|
+
created_at: string;
|
|
5037
|
+
}
|
|
5038
|
+
|
|
5039
|
+
/**
|
|
5040
|
+
* Generated by orval 🍺
|
|
5041
|
+
* Do not edit manually.
|
|
5042
|
+
* Avallon API
|
|
5043
|
+
* OpenAPI spec version: 1.0.0
|
|
5044
|
+
*/
|
|
5045
|
+
|
|
5046
|
+
type ExtractorWebhookList = Webhook[];
|
|
5047
|
+
|
|
5048
|
+
/**
|
|
5049
|
+
* Generated by orval 🍺
|
|
5050
|
+
* Do not edit manually.
|
|
5051
|
+
* Avallon API
|
|
5052
|
+
* OpenAPI spec version: 1.0.0
|
|
5053
|
+
*/
|
|
5054
|
+
|
|
5055
|
+
interface GetAnalyticsTimeSeriesEnvelope {
|
|
5056
|
+
data: AnalyticsTimeSeries[];
|
|
5057
|
+
message: string;
|
|
5058
|
+
}
|
|
5059
|
+
|
|
5060
|
+
/**
|
|
5061
|
+
* Generated by orval 🍺
|
|
5062
|
+
* Do not edit manually.
|
|
5063
|
+
* Avallon API
|
|
5064
|
+
* OpenAPI spec version: 1.0.0
|
|
5065
|
+
*/
|
|
5066
|
+
type GetAnalyticsTimeSeriesGranularity = (typeof GetAnalyticsTimeSeriesGranularity)[keyof typeof GetAnalyticsTimeSeriesGranularity];
|
|
5067
|
+
declare const GetAnalyticsTimeSeriesGranularity: {
|
|
5068
|
+
readonly day: "day";
|
|
5069
|
+
readonly week: "week";
|
|
5070
|
+
readonly month: "month";
|
|
5071
|
+
};
|
|
5072
|
+
|
|
5073
|
+
/**
|
|
5074
|
+
* Generated by orval 🍺
|
|
5075
|
+
* Do not edit manually.
|
|
5076
|
+
* Avallon API
|
|
5077
|
+
* OpenAPI spec version: 1.0.0
|
|
5078
|
+
*/
|
|
5079
|
+
type GetAnalyticsTimeSeriesGroupBy = (typeof GetAnalyticsTimeSeriesGroupBy)[keyof typeof GetAnalyticsTimeSeriesGroupBy];
|
|
5080
|
+
declare const GetAnalyticsTimeSeriesGroupBy: {
|
|
5081
|
+
readonly worker_id: "worker_id";
|
|
5082
|
+
};
|
|
5083
|
+
|
|
5084
|
+
/**
|
|
5085
|
+
* Generated by orval 🍺
|
|
5086
|
+
* Do not edit manually.
|
|
5087
|
+
* Avallon API
|
|
5088
|
+
* OpenAPI spec version: 1.0.0
|
|
5089
|
+
*/
|
|
5090
|
+
type GetAnalyticsTimeSeriesMetric = (typeof GetAnalyticsTimeSeriesMetric)[keyof typeof GetAnalyticsTimeSeriesMetric];
|
|
5091
|
+
declare const GetAnalyticsTimeSeriesMetric: {
|
|
5092
|
+
readonly worker_runs: "worker_runs";
|
|
5093
|
+
readonly documents: "documents";
|
|
5094
|
+
readonly pages: "pages";
|
|
5095
|
+
};
|
|
5096
|
+
|
|
5097
|
+
/**
|
|
5098
|
+
* Generated by orval 🍺
|
|
5099
|
+
* Do not edit manually.
|
|
5100
|
+
* Avallon API
|
|
5101
|
+
* OpenAPI spec version: 1.0.0
|
|
5102
|
+
*/
|
|
5103
|
+
|
|
5104
|
+
type GetAnalyticsTimeSeriesParams = {
|
|
5105
|
+
metric: GetAnalyticsTimeSeriesMetric;
|
|
5106
|
+
from: string;
|
|
5107
|
+
to: string;
|
|
5108
|
+
granularity?: GetAnalyticsTimeSeriesGranularity;
|
|
5109
|
+
group_by?: GetAnalyticsTimeSeriesGroupBy;
|
|
5110
|
+
timezone?: string;
|
|
5111
|
+
};
|
|
5112
|
+
|
|
5113
|
+
/**
|
|
5114
|
+
* Generated by orval 🍺
|
|
5115
|
+
* Do not edit manually.
|
|
5116
|
+
* Avallon API
|
|
5117
|
+
* OpenAPI spec version: 1.0.0
|
|
5118
|
+
*/
|
|
5119
|
+
|
|
5120
|
+
interface GetArtifactEnvelope {
|
|
5121
|
+
data: ArtifactDetail;
|
|
5122
|
+
message: string;
|
|
5123
|
+
}
|
|
5124
|
+
|
|
5125
|
+
/**
|
|
5126
|
+
* Generated by orval 🍺
|
|
5127
|
+
* Do not edit manually.
|
|
5128
|
+
* Avallon API
|
|
5129
|
+
* OpenAPI spec version: 1.0.0
|
|
5130
|
+
*/
|
|
5131
|
+
|
|
5132
|
+
interface GetArtifactMetadataKeysEnvelope {
|
|
5133
|
+
data: ArtifactMetadataKeys;
|
|
5134
|
+
message: string;
|
|
5135
|
+
}
|
|
4472
5136
|
|
|
4473
5137
|
/**
|
|
4474
5138
|
* Generated by orval 🍺
|
|
@@ -4476,8 +5140,12 @@ type ExtractList = ExtractSummary[];
|
|
|
4476
5140
|
* Avallon API
|
|
4477
5141
|
* OpenAPI spec version: 1.0.0
|
|
4478
5142
|
*/
|
|
4479
|
-
type
|
|
4480
|
-
|
|
5143
|
+
type GetArtifactMetadataKeysParams = {
|
|
5144
|
+
/**
|
|
5145
|
+
* @minimum 1
|
|
5146
|
+
* @maximum 500
|
|
5147
|
+
*/
|
|
5148
|
+
limit?: number;
|
|
4481
5149
|
};
|
|
4482
5150
|
|
|
4483
5151
|
/**
|
|
@@ -4487,13 +5155,9 @@ type ExtractorSchema = {
|
|
|
4487
5155
|
* OpenAPI spec version: 1.0.0
|
|
4488
5156
|
*/
|
|
4489
5157
|
|
|
4490
|
-
interface
|
|
4491
|
-
|
|
4492
|
-
|
|
4493
|
-
version: number;
|
|
4494
|
-
schema: ExtractorSchema;
|
|
4495
|
-
created_at: string;
|
|
4496
|
-
updated_at: string;
|
|
5158
|
+
interface GetArtifactStatusSummaryEnvelope {
|
|
5159
|
+
data: ArtifactStatusSummary;
|
|
5160
|
+
message: string;
|
|
4497
5161
|
}
|
|
4498
5162
|
|
|
4499
5163
|
/**
|
|
@@ -4502,11 +5166,13 @@ interface Extractor {
|
|
|
4502
5166
|
* Avallon API
|
|
4503
5167
|
* OpenAPI spec version: 1.0.0
|
|
4504
5168
|
*/
|
|
4505
|
-
|
|
4506
|
-
|
|
4507
|
-
|
|
4508
|
-
|
|
4509
|
-
|
|
5169
|
+
type GetArtifactStatusSummaryParams = {
|
|
5170
|
+
/**
|
|
5171
|
+
* 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.
|
|
5172
|
+
*/
|
|
5173
|
+
scope: {
|
|
5174
|
+
[key: string]: string;
|
|
5175
|
+
};
|
|
4510
5176
|
};
|
|
4511
5177
|
|
|
4512
5178
|
/**
|
|
@@ -4515,36 +5181,10 @@ type ExtractorJobScope = {
|
|
|
4515
5181
|
* Avallon API
|
|
4516
5182
|
* OpenAPI spec version: 1.0.0
|
|
4517
5183
|
*/
|
|
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
|
-
}
|
|
5184
|
+
type GetArtifactUploadUrlBody = {
|
|
5185
|
+
/** @minLength 1 */
|
|
5186
|
+
filename: string;
|
|
5187
|
+
};
|
|
4548
5188
|
|
|
4549
5189
|
/**
|
|
4550
5190
|
* Generated by orval 🍺
|
|
@@ -4552,8 +5192,10 @@ interface ExtractorJob {
|
|
|
4552
5192
|
* Avallon API
|
|
4553
5193
|
* OpenAPI spec version: 1.0.0
|
|
4554
5194
|
*/
|
|
4555
|
-
type
|
|
4556
|
-
|
|
5195
|
+
type GetArtifactUploadUrlEnvelopeData = {
|
|
5196
|
+
upload_url: string;
|
|
5197
|
+
file_url: string;
|
|
5198
|
+
expires_at: string;
|
|
4557
5199
|
};
|
|
4558
5200
|
|
|
4559
5201
|
/**
|
|
@@ -4563,19 +5205,9 @@ type ExtractorJobDetailScope = {
|
|
|
4563
5205
|
* OpenAPI spec version: 1.0.0
|
|
4564
5206
|
*/
|
|
4565
5207
|
|
|
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;
|
|
5208
|
+
interface GetArtifactUploadUrlEnvelope {
|
|
5209
|
+
data: GetArtifactUploadUrlEnvelopeData;
|
|
5210
|
+
message: string;
|
|
4579
5211
|
}
|
|
4580
5212
|
|
|
4581
5213
|
/**
|
|
@@ -4584,8 +5216,23 @@ interface ExtractorJobDetail {
|
|
|
4584
5216
|
* Avallon API
|
|
4585
5217
|
* OpenAPI spec version: 1.0.0
|
|
4586
5218
|
*/
|
|
5219
|
+
type GetBenchmarkEnvelopeDataRunsItemConfiguration = (typeof GetBenchmarkEnvelopeDataRunsItemConfiguration)[keyof typeof GetBenchmarkEnvelopeDataRunsItemConfiguration] | null;
|
|
5220
|
+
declare const GetBenchmarkEnvelopeDataRunsItemConfiguration: {
|
|
5221
|
+
readonly candidate: "candidate";
|
|
5222
|
+
readonly baseline: "baseline";
|
|
5223
|
+
};
|
|
4587
5224
|
|
|
4588
|
-
|
|
5225
|
+
/**
|
|
5226
|
+
* Generated by orval 🍺
|
|
5227
|
+
* Do not edit manually.
|
|
5228
|
+
* Avallon API
|
|
5229
|
+
* OpenAPI spec version: 1.0.0
|
|
5230
|
+
*/
|
|
5231
|
+
type GetBenchmarkEnvelopeDataRunsItemGradingExpectationsItem = {
|
|
5232
|
+
text: string;
|
|
5233
|
+
passed: boolean;
|
|
5234
|
+
evidence: string;
|
|
5235
|
+
};
|
|
4589
5236
|
|
|
4590
5237
|
/**
|
|
4591
5238
|
* Generated by orval 🍺
|
|
@@ -4593,13 +5240,24 @@ type ExtractorJobList = ExtractorJob[];
|
|
|
4593
5240
|
* Avallon API
|
|
4594
5241
|
* OpenAPI spec version: 1.0.0
|
|
4595
5242
|
*/
|
|
4596
|
-
|
|
4597
|
-
|
|
4598
|
-
|
|
4599
|
-
|
|
4600
|
-
|
|
4601
|
-
|
|
4602
|
-
|
|
5243
|
+
type GetBenchmarkEnvelopeDataRunsItemGradingSummary = {
|
|
5244
|
+
/**
|
|
5245
|
+
* @minimum -9007199254740991
|
|
5246
|
+
* @maximum 9007199254740991
|
|
5247
|
+
*/
|
|
5248
|
+
total: number;
|
|
5249
|
+
/**
|
|
5250
|
+
* @minimum -9007199254740991
|
|
5251
|
+
* @maximum 9007199254740991
|
|
5252
|
+
*/
|
|
5253
|
+
passed: number;
|
|
5254
|
+
/**
|
|
5255
|
+
* @minimum -9007199254740991
|
|
5256
|
+
* @maximum 9007199254740991
|
|
5257
|
+
*/
|
|
5258
|
+
failed: number;
|
|
5259
|
+
pass_rate: number;
|
|
5260
|
+
};
|
|
4603
5261
|
|
|
4604
5262
|
/**
|
|
4605
5263
|
* Generated by orval 🍺
|
|
@@ -4608,7 +5266,10 @@ interface ExtractorSummary {
|
|
|
4608
5266
|
* OpenAPI spec version: 1.0.0
|
|
4609
5267
|
*/
|
|
4610
5268
|
|
|
4611
|
-
type
|
|
5269
|
+
type GetBenchmarkEnvelopeDataRunsItemGrading = {
|
|
5270
|
+
expectations: GetBenchmarkEnvelopeDataRunsItemGradingExpectationsItem[];
|
|
5271
|
+
summary: GetBenchmarkEnvelopeDataRunsItemGradingSummary;
|
|
5272
|
+
} | null;
|
|
4612
5273
|
|
|
4613
5274
|
/**
|
|
4614
5275
|
* Generated by orval 🍺
|
|
@@ -4616,8 +5277,33 @@ type ExtractorList = ExtractorSummary[];
|
|
|
4616
5277
|
* Avallon API
|
|
4617
5278
|
* OpenAPI spec version: 1.0.0
|
|
4618
5279
|
*/
|
|
4619
|
-
type
|
|
4620
|
-
|
|
5280
|
+
type GetBenchmarkEnvelopeDataRunsItemMetricsFixtureHealth = {
|
|
5281
|
+
/**
|
|
5282
|
+
* @minimum -9007199254740991
|
|
5283
|
+
* @maximum 9007199254740991
|
|
5284
|
+
*/
|
|
5285
|
+
exact: number;
|
|
5286
|
+
/**
|
|
5287
|
+
* @minimum -9007199254740991
|
|
5288
|
+
* @maximum 9007199254740991
|
|
5289
|
+
*/
|
|
5290
|
+
partial: number;
|
|
5291
|
+
/**
|
|
5292
|
+
* @minimum -9007199254740991
|
|
5293
|
+
* @maximum 9007199254740991
|
|
5294
|
+
*/
|
|
5295
|
+
fifo: number;
|
|
5296
|
+
/**
|
|
5297
|
+
* @minimum -9007199254740991
|
|
5298
|
+
* @maximum 9007199254740991
|
|
5299
|
+
*/
|
|
5300
|
+
default: number;
|
|
5301
|
+
/**
|
|
5302
|
+
* @minimum -9007199254740991
|
|
5303
|
+
* @maximum 9007199254740991
|
|
5304
|
+
*/
|
|
5305
|
+
unavailable: number;
|
|
5306
|
+
matched_rate: number | null;
|
|
4621
5307
|
};
|
|
4622
5308
|
|
|
4623
5309
|
/**
|
|
@@ -4627,13 +5313,15 @@ type ExtractorUpdatedSchema = {
|
|
|
4627
5313
|
* OpenAPI spec version: 1.0.0
|
|
4628
5314
|
*/
|
|
4629
5315
|
|
|
4630
|
-
|
|
4631
|
-
|
|
4632
|
-
|
|
4633
|
-
|
|
4634
|
-
|
|
4635
|
-
|
|
4636
|
-
|
|
5316
|
+
type GetBenchmarkEnvelopeDataRunsItemMetrics = {
|
|
5317
|
+
duration_seconds: number | null;
|
|
5318
|
+
/**
|
|
5319
|
+
* @minimum -9007199254740991
|
|
5320
|
+
* @maximum 9007199254740991
|
|
5321
|
+
*/
|
|
5322
|
+
tool_calls: number;
|
|
5323
|
+
fixture_health: GetBenchmarkEnvelopeDataRunsItemMetricsFixtureHealth;
|
|
5324
|
+
} | null;
|
|
4637
5325
|
|
|
4638
5326
|
/**
|
|
4639
5327
|
* Generated by orval 🍺
|
|
@@ -4641,8 +5329,14 @@ interface ExtractorUpdated {
|
|
|
4641
5329
|
* Avallon API
|
|
4642
5330
|
* OpenAPI spec version: 1.0.0
|
|
4643
5331
|
*/
|
|
4644
|
-
|
|
4645
|
-
|
|
5332
|
+
type GetBenchmarkEnvelopeDataRunsItemStatus = (typeof GetBenchmarkEnvelopeDataRunsItemStatus)[keyof typeof GetBenchmarkEnvelopeDataRunsItemStatus];
|
|
5333
|
+
declare const GetBenchmarkEnvelopeDataRunsItemStatus: {
|
|
5334
|
+
readonly queued: "queued";
|
|
5335
|
+
readonly running: "running";
|
|
5336
|
+
readonly passed: "passed";
|
|
5337
|
+
readonly failed: "failed";
|
|
5338
|
+
readonly error: "error";
|
|
5339
|
+
};
|
|
4646
5340
|
|
|
4647
5341
|
/**
|
|
4648
5342
|
* Generated by orval 🍺
|
|
@@ -4651,10 +5345,29 @@ type ExtractorWebhookList = Webhook[];
|
|
|
4651
5345
|
* OpenAPI spec version: 1.0.0
|
|
4652
5346
|
*/
|
|
4653
5347
|
|
|
4654
|
-
|
|
4655
|
-
|
|
4656
|
-
|
|
4657
|
-
|
|
5348
|
+
type GetBenchmarkEnvelopeDataRunsItem = {
|
|
5349
|
+
id: string;
|
|
5350
|
+
eval_id: string;
|
|
5351
|
+
/**
|
|
5352
|
+
* @minimum -9007199254740991
|
|
5353
|
+
* @maximum 9007199254740991
|
|
5354
|
+
*/
|
|
5355
|
+
target_version: number;
|
|
5356
|
+
status: GetBenchmarkEnvelopeDataRunsItemStatus;
|
|
5357
|
+
passed: boolean | null;
|
|
5358
|
+
reason: string | null;
|
|
5359
|
+
error: string | null;
|
|
5360
|
+
judge_model: string | null;
|
|
5361
|
+
judge_prompt_version: string | null;
|
|
5362
|
+
grading: GetBenchmarkEnvelopeDataRunsItemGrading;
|
|
5363
|
+
metrics: GetBenchmarkEnvelopeDataRunsItemMetrics;
|
|
5364
|
+
benchmark_id: string | null;
|
|
5365
|
+
configuration: GetBenchmarkEnvelopeDataRunsItemConfiguration;
|
|
5366
|
+
run_number: number | null;
|
|
5367
|
+
created_at: string;
|
|
5368
|
+
started_at: string | null;
|
|
5369
|
+
completed_at: string | null;
|
|
5370
|
+
};
|
|
4658
5371
|
|
|
4659
5372
|
/**
|
|
4660
5373
|
* Generated by orval 🍺
|
|
@@ -4662,12 +5375,12 @@ interface GetAnalyticsTimeSeriesEnvelope {
|
|
|
4662
5375
|
* Avallon API
|
|
4663
5376
|
* OpenAPI spec version: 1.0.0
|
|
4664
5377
|
*/
|
|
4665
|
-
type
|
|
4666
|
-
|
|
4667
|
-
|
|
4668
|
-
|
|
4669
|
-
|
|
4670
|
-
};
|
|
5378
|
+
type GetBenchmarkEnvelopeDataRunSummaryBaselineDurationSeconds = {
|
|
5379
|
+
mean: number;
|
|
5380
|
+
stddev: number;
|
|
5381
|
+
min: number;
|
|
5382
|
+
max: number;
|
|
5383
|
+
} | null;
|
|
4671
5384
|
|
|
4672
5385
|
/**
|
|
4673
5386
|
* Generated by orval 🍺
|
|
@@ -4675,10 +5388,12 @@ declare const GetAnalyticsTimeSeriesGranularity: {
|
|
|
4675
5388
|
* Avallon API
|
|
4676
5389
|
* OpenAPI spec version: 1.0.0
|
|
4677
5390
|
*/
|
|
4678
|
-
type
|
|
4679
|
-
|
|
4680
|
-
|
|
4681
|
-
|
|
5391
|
+
type GetBenchmarkEnvelopeDataRunSummaryBaselineFixtureMatchedRate = {
|
|
5392
|
+
mean: number;
|
|
5393
|
+
stddev: number;
|
|
5394
|
+
min: number;
|
|
5395
|
+
max: number;
|
|
5396
|
+
} | null;
|
|
4682
5397
|
|
|
4683
5398
|
/**
|
|
4684
5399
|
* Generated by orval 🍺
|
|
@@ -4686,12 +5401,12 @@ declare const GetAnalyticsTimeSeriesGroupBy: {
|
|
|
4686
5401
|
* Avallon API
|
|
4687
5402
|
* OpenAPI spec version: 1.0.0
|
|
4688
5403
|
*/
|
|
4689
|
-
type
|
|
4690
|
-
|
|
4691
|
-
|
|
4692
|
-
|
|
4693
|
-
|
|
4694
|
-
};
|
|
5404
|
+
type GetBenchmarkEnvelopeDataRunSummaryBaselinePassRate = {
|
|
5405
|
+
mean: number;
|
|
5406
|
+
stddev: number;
|
|
5407
|
+
min: number;
|
|
5408
|
+
max: number;
|
|
5409
|
+
} | null;
|
|
4695
5410
|
|
|
4696
5411
|
/**
|
|
4697
5412
|
* Generated by orval 🍺
|
|
@@ -4700,13 +5415,20 @@ declare const GetAnalyticsTimeSeriesMetric: {
|
|
|
4700
5415
|
* OpenAPI spec version: 1.0.0
|
|
4701
5416
|
*/
|
|
4702
5417
|
|
|
4703
|
-
type
|
|
4704
|
-
|
|
4705
|
-
|
|
4706
|
-
|
|
4707
|
-
|
|
4708
|
-
|
|
4709
|
-
|
|
5418
|
+
type GetBenchmarkEnvelopeDataRunSummaryBaseline = {
|
|
5419
|
+
/**
|
|
5420
|
+
* @minimum -9007199254740991
|
|
5421
|
+
* @maximum 9007199254740991
|
|
5422
|
+
*/
|
|
5423
|
+
runs: number;
|
|
5424
|
+
/**
|
|
5425
|
+
* @minimum -9007199254740991
|
|
5426
|
+
* @maximum 9007199254740991
|
|
5427
|
+
*/
|
|
5428
|
+
graded_runs: number;
|
|
5429
|
+
pass_rate: GetBenchmarkEnvelopeDataRunSummaryBaselinePassRate;
|
|
5430
|
+
duration_seconds: GetBenchmarkEnvelopeDataRunSummaryBaselineDurationSeconds;
|
|
5431
|
+
fixture_matched_rate: GetBenchmarkEnvelopeDataRunSummaryBaselineFixtureMatchedRate;
|
|
4710
5432
|
};
|
|
4711
5433
|
|
|
4712
5434
|
/**
|
|
@@ -4715,11 +5437,12 @@ type GetAnalyticsTimeSeriesParams = {
|
|
|
4715
5437
|
* Avallon API
|
|
4716
5438
|
* OpenAPI spec version: 1.0.0
|
|
4717
5439
|
*/
|
|
4718
|
-
|
|
4719
|
-
|
|
4720
|
-
|
|
4721
|
-
|
|
4722
|
-
|
|
5440
|
+
type GetBenchmarkEnvelopeDataRunSummaryCandidateDurationSeconds = {
|
|
5441
|
+
mean: number;
|
|
5442
|
+
stddev: number;
|
|
5443
|
+
min: number;
|
|
5444
|
+
max: number;
|
|
5445
|
+
} | null;
|
|
4723
5446
|
|
|
4724
5447
|
/**
|
|
4725
5448
|
* Generated by orval 🍺
|
|
@@ -4727,11 +5450,25 @@ interface GetArtifactEnvelope {
|
|
|
4727
5450
|
* Avallon API
|
|
4728
5451
|
* OpenAPI spec version: 1.0.0
|
|
4729
5452
|
*/
|
|
5453
|
+
type GetBenchmarkEnvelopeDataRunSummaryCandidateFixtureMatchedRate = {
|
|
5454
|
+
mean: number;
|
|
5455
|
+
stddev: number;
|
|
5456
|
+
min: number;
|
|
5457
|
+
max: number;
|
|
5458
|
+
} | null;
|
|
4730
5459
|
|
|
4731
|
-
|
|
4732
|
-
|
|
4733
|
-
|
|
4734
|
-
|
|
5460
|
+
/**
|
|
5461
|
+
* Generated by orval 🍺
|
|
5462
|
+
* Do not edit manually.
|
|
5463
|
+
* Avallon API
|
|
5464
|
+
* OpenAPI spec version: 1.0.0
|
|
5465
|
+
*/
|
|
5466
|
+
type GetBenchmarkEnvelopeDataRunSummaryCandidatePassRate = {
|
|
5467
|
+
mean: number;
|
|
5468
|
+
stddev: number;
|
|
5469
|
+
min: number;
|
|
5470
|
+
max: number;
|
|
5471
|
+
} | null;
|
|
4735
5472
|
|
|
4736
5473
|
/**
|
|
4737
5474
|
* Generated by orval 🍺
|
|
@@ -4739,12 +5476,21 @@ interface GetArtifactMetadataKeysEnvelope {
|
|
|
4739
5476
|
* Avallon API
|
|
4740
5477
|
* OpenAPI spec version: 1.0.0
|
|
4741
5478
|
*/
|
|
4742
|
-
|
|
5479
|
+
|
|
5480
|
+
type GetBenchmarkEnvelopeDataRunSummaryCandidate = {
|
|
4743
5481
|
/**
|
|
4744
|
-
* @minimum
|
|
4745
|
-
* @maximum
|
|
5482
|
+
* @minimum -9007199254740991
|
|
5483
|
+
* @maximum 9007199254740991
|
|
5484
|
+
*/
|
|
5485
|
+
runs: number;
|
|
5486
|
+
/**
|
|
5487
|
+
* @minimum -9007199254740991
|
|
5488
|
+
* @maximum 9007199254740991
|
|
4746
5489
|
*/
|
|
4747
|
-
|
|
5490
|
+
graded_runs: number;
|
|
5491
|
+
pass_rate: GetBenchmarkEnvelopeDataRunSummaryCandidatePassRate;
|
|
5492
|
+
duration_seconds: GetBenchmarkEnvelopeDataRunSummaryCandidateDurationSeconds;
|
|
5493
|
+
fixture_matched_rate: GetBenchmarkEnvelopeDataRunSummaryCandidateFixtureMatchedRate;
|
|
4748
5494
|
};
|
|
4749
5495
|
|
|
4750
5496
|
/**
|
|
@@ -4753,11 +5499,11 @@ type GetArtifactMetadataKeysParams = {
|
|
|
4753
5499
|
* Avallon API
|
|
4754
5500
|
* OpenAPI spec version: 1.0.0
|
|
4755
5501
|
*/
|
|
4756
|
-
|
|
4757
|
-
|
|
4758
|
-
|
|
4759
|
-
|
|
4760
|
-
}
|
|
5502
|
+
type GetBenchmarkEnvelopeDataRunSummaryDelta = {
|
|
5503
|
+
pass_rate: number | null;
|
|
5504
|
+
duration_seconds: number | null;
|
|
5505
|
+
fixture_matched_rate: number | null;
|
|
5506
|
+
};
|
|
4761
5507
|
|
|
4762
5508
|
/**
|
|
4763
5509
|
* Generated by orval 🍺
|
|
@@ -4765,14 +5511,12 @@ interface GetArtifactStatusSummaryEnvelope {
|
|
|
4765
5511
|
* Avallon API
|
|
4766
5512
|
* OpenAPI spec version: 1.0.0
|
|
4767
5513
|
*/
|
|
4768
|
-
|
|
4769
|
-
|
|
4770
|
-
|
|
4771
|
-
|
|
4772
|
-
|
|
4773
|
-
|
|
4774
|
-
};
|
|
4775
|
-
};
|
|
5514
|
+
|
|
5515
|
+
type GetBenchmarkEnvelopeDataRunSummary = {
|
|
5516
|
+
candidate: GetBenchmarkEnvelopeDataRunSummaryCandidate;
|
|
5517
|
+
baseline: GetBenchmarkEnvelopeDataRunSummaryBaseline;
|
|
5518
|
+
delta: GetBenchmarkEnvelopeDataRunSummaryDelta;
|
|
5519
|
+
} | null;
|
|
4776
5520
|
|
|
4777
5521
|
/**
|
|
4778
5522
|
* Generated by orval 🍺
|
|
@@ -4780,9 +5524,11 @@ type GetArtifactStatusSummaryParams = {
|
|
|
4780
5524
|
* Avallon API
|
|
4781
5525
|
* OpenAPI spec version: 1.0.0
|
|
4782
5526
|
*/
|
|
4783
|
-
type
|
|
4784
|
-
|
|
4785
|
-
|
|
5527
|
+
type GetBenchmarkEnvelopeDataStatus = (typeof GetBenchmarkEnvelopeDataStatus)[keyof typeof GetBenchmarkEnvelopeDataStatus];
|
|
5528
|
+
declare const GetBenchmarkEnvelopeDataStatus: {
|
|
5529
|
+
readonly running: "running";
|
|
5530
|
+
readonly completed: "completed";
|
|
5531
|
+
readonly error: "error";
|
|
4786
5532
|
};
|
|
4787
5533
|
|
|
4788
5534
|
/**
|
|
@@ -4791,10 +5537,31 @@ type GetArtifactUploadUrlBody = {
|
|
|
4791
5537
|
* Avallon API
|
|
4792
5538
|
* OpenAPI spec version: 1.0.0
|
|
4793
5539
|
*/
|
|
4794
|
-
|
|
4795
|
-
|
|
4796
|
-
|
|
4797
|
-
|
|
5540
|
+
|
|
5541
|
+
type GetBenchmarkEnvelopeData = {
|
|
5542
|
+
id: string;
|
|
5543
|
+
eval_id: string;
|
|
5544
|
+
/**
|
|
5545
|
+
* @minimum -9007199254740991
|
|
5546
|
+
* @maximum 9007199254740991
|
|
5547
|
+
*/
|
|
5548
|
+
candidate_version: number;
|
|
5549
|
+
/**
|
|
5550
|
+
* @minimum -9007199254740991
|
|
5551
|
+
* @maximum 9007199254740991
|
|
5552
|
+
*/
|
|
5553
|
+
baseline_version: number;
|
|
5554
|
+
/**
|
|
5555
|
+
* @minimum -9007199254740991
|
|
5556
|
+
* @maximum 9007199254740991
|
|
5557
|
+
*/
|
|
5558
|
+
runs_per_configuration: number;
|
|
5559
|
+
status: GetBenchmarkEnvelopeDataStatus;
|
|
5560
|
+
run_summary: GetBenchmarkEnvelopeDataRunSummary;
|
|
5561
|
+
notes: string[] | null;
|
|
5562
|
+
runs: GetBenchmarkEnvelopeDataRunsItem[];
|
|
5563
|
+
created_at: string;
|
|
5564
|
+
completed_at: string | null;
|
|
4798
5565
|
};
|
|
4799
5566
|
|
|
4800
5567
|
/**
|
|
@@ -4804,8 +5571,8 @@ type GetArtifactUploadUrlEnvelopeData = {
|
|
|
4804
5571
|
* OpenAPI spec version: 1.0.0
|
|
4805
5572
|
*/
|
|
4806
5573
|
|
|
4807
|
-
interface
|
|
4808
|
-
data:
|
|
5574
|
+
interface GetBenchmarkEnvelope {
|
|
5575
|
+
data: GetBenchmarkEnvelopeData;
|
|
4809
5576
|
message: string;
|
|
4810
5577
|
}
|
|
4811
5578
|
|
|
@@ -4957,6 +5724,119 @@ interface GetEmailEnvelope {
|
|
|
4957
5724
|
message: string;
|
|
4958
5725
|
}
|
|
4959
5726
|
|
|
5727
|
+
/**
|
|
5728
|
+
* Generated by orval 🍺
|
|
5729
|
+
* Do not edit manually.
|
|
5730
|
+
* Avallon API
|
|
5731
|
+
* OpenAPI spec version: 1.0.0
|
|
5732
|
+
*/
|
|
5733
|
+
type GetEvalRunEnvelopeDataConfiguration = (typeof GetEvalRunEnvelopeDataConfiguration)[keyof typeof GetEvalRunEnvelopeDataConfiguration] | null;
|
|
5734
|
+
declare const GetEvalRunEnvelopeDataConfiguration: {
|
|
5735
|
+
readonly candidate: "candidate";
|
|
5736
|
+
readonly baseline: "baseline";
|
|
5737
|
+
};
|
|
5738
|
+
|
|
5739
|
+
/**
|
|
5740
|
+
* Generated by orval 🍺
|
|
5741
|
+
* Do not edit manually.
|
|
5742
|
+
* Avallon API
|
|
5743
|
+
* OpenAPI spec version: 1.0.0
|
|
5744
|
+
*/
|
|
5745
|
+
type GetEvalRunEnvelopeDataGradingExpectationsItem = {
|
|
5746
|
+
text: string;
|
|
5747
|
+
passed: boolean;
|
|
5748
|
+
evidence: string;
|
|
5749
|
+
};
|
|
5750
|
+
|
|
5751
|
+
/**
|
|
5752
|
+
* Generated by orval 🍺
|
|
5753
|
+
* Do not edit manually.
|
|
5754
|
+
* Avallon API
|
|
5755
|
+
* OpenAPI spec version: 1.0.0
|
|
5756
|
+
*/
|
|
5757
|
+
type GetEvalRunEnvelopeDataGradingSummary = {
|
|
5758
|
+
/**
|
|
5759
|
+
* @minimum -9007199254740991
|
|
5760
|
+
* @maximum 9007199254740991
|
|
5761
|
+
*/
|
|
5762
|
+
total: number;
|
|
5763
|
+
/**
|
|
5764
|
+
* @minimum -9007199254740991
|
|
5765
|
+
* @maximum 9007199254740991
|
|
5766
|
+
*/
|
|
5767
|
+
passed: number;
|
|
5768
|
+
/**
|
|
5769
|
+
* @minimum -9007199254740991
|
|
5770
|
+
* @maximum 9007199254740991
|
|
5771
|
+
*/
|
|
5772
|
+
failed: number;
|
|
5773
|
+
pass_rate: number;
|
|
5774
|
+
};
|
|
5775
|
+
|
|
5776
|
+
/**
|
|
5777
|
+
* Generated by orval 🍺
|
|
5778
|
+
* Do not edit manually.
|
|
5779
|
+
* Avallon API
|
|
5780
|
+
* OpenAPI spec version: 1.0.0
|
|
5781
|
+
*/
|
|
5782
|
+
|
|
5783
|
+
type GetEvalRunEnvelopeDataGrading = {
|
|
5784
|
+
expectations: GetEvalRunEnvelopeDataGradingExpectationsItem[];
|
|
5785
|
+
summary: GetEvalRunEnvelopeDataGradingSummary;
|
|
5786
|
+
} | null;
|
|
5787
|
+
|
|
5788
|
+
/**
|
|
5789
|
+
* Generated by orval 🍺
|
|
5790
|
+
* Do not edit manually.
|
|
5791
|
+
* Avallon API
|
|
5792
|
+
* OpenAPI spec version: 1.0.0
|
|
5793
|
+
*/
|
|
5794
|
+
type GetEvalRunEnvelopeDataMetricsFixtureHealth = {
|
|
5795
|
+
/**
|
|
5796
|
+
* @minimum -9007199254740991
|
|
5797
|
+
* @maximum 9007199254740991
|
|
5798
|
+
*/
|
|
5799
|
+
exact: number;
|
|
5800
|
+
/**
|
|
5801
|
+
* @minimum -9007199254740991
|
|
5802
|
+
* @maximum 9007199254740991
|
|
5803
|
+
*/
|
|
5804
|
+
partial: number;
|
|
5805
|
+
/**
|
|
5806
|
+
* @minimum -9007199254740991
|
|
5807
|
+
* @maximum 9007199254740991
|
|
5808
|
+
*/
|
|
5809
|
+
fifo: number;
|
|
5810
|
+
/**
|
|
5811
|
+
* @minimum -9007199254740991
|
|
5812
|
+
* @maximum 9007199254740991
|
|
5813
|
+
*/
|
|
5814
|
+
default: number;
|
|
5815
|
+
/**
|
|
5816
|
+
* @minimum -9007199254740991
|
|
5817
|
+
* @maximum 9007199254740991
|
|
5818
|
+
*/
|
|
5819
|
+
unavailable: number;
|
|
5820
|
+
matched_rate: number | null;
|
|
5821
|
+
};
|
|
5822
|
+
|
|
5823
|
+
/**
|
|
5824
|
+
* Generated by orval 🍺
|
|
5825
|
+
* Do not edit manually.
|
|
5826
|
+
* Avallon API
|
|
5827
|
+
* OpenAPI spec version: 1.0.0
|
|
5828
|
+
*/
|
|
5829
|
+
|
|
5830
|
+
type GetEvalRunEnvelopeDataMetrics = {
|
|
5831
|
+
duration_seconds: number | null;
|
|
5832
|
+
/**
|
|
5833
|
+
* @minimum -9007199254740991
|
|
5834
|
+
* @maximum 9007199254740991
|
|
5835
|
+
*/
|
|
5836
|
+
tool_calls: number;
|
|
5837
|
+
fixture_health: GetEvalRunEnvelopeDataMetricsFixtureHealth;
|
|
5838
|
+
} | null;
|
|
5839
|
+
|
|
4960
5840
|
/**
|
|
4961
5841
|
* Generated by orval 🍺
|
|
4962
5842
|
* Do not edit manually.
|
|
@@ -4994,6 +5874,11 @@ type GetEvalRunEnvelopeData = {
|
|
|
4994
5874
|
judge_model: string | null;
|
|
4995
5875
|
judge_prompt_version: string | null;
|
|
4996
5876
|
tool_trace: unknown | null;
|
|
5877
|
+
grading: GetEvalRunEnvelopeDataGrading;
|
|
5878
|
+
metrics: GetEvalRunEnvelopeDataMetrics;
|
|
5879
|
+
benchmark_id: string | null;
|
|
5880
|
+
configuration: GetEvalRunEnvelopeDataConfiguration;
|
|
5881
|
+
run_number: number | null;
|
|
4997
5882
|
created_at: string;
|
|
4998
5883
|
started_at: string | null;
|
|
4999
5884
|
completed_at: string | null;
|
|
@@ -9914,6 +10799,119 @@ type RunEvalBody = {
|
|
|
9914
10799
|
worker_version: number;
|
|
9915
10800
|
};
|
|
9916
10801
|
|
|
10802
|
+
/**
|
|
10803
|
+
* Generated by orval 🍺
|
|
10804
|
+
* Do not edit manually.
|
|
10805
|
+
* Avallon API
|
|
10806
|
+
* OpenAPI spec version: 1.0.0
|
|
10807
|
+
*/
|
|
10808
|
+
type RunEvalEnvelopeDataConfiguration = (typeof RunEvalEnvelopeDataConfiguration)[keyof typeof RunEvalEnvelopeDataConfiguration] | null;
|
|
10809
|
+
declare const RunEvalEnvelopeDataConfiguration: {
|
|
10810
|
+
readonly candidate: "candidate";
|
|
10811
|
+
readonly baseline: "baseline";
|
|
10812
|
+
};
|
|
10813
|
+
|
|
10814
|
+
/**
|
|
10815
|
+
* Generated by orval 🍺
|
|
10816
|
+
* Do not edit manually.
|
|
10817
|
+
* Avallon API
|
|
10818
|
+
* OpenAPI spec version: 1.0.0
|
|
10819
|
+
*/
|
|
10820
|
+
type RunEvalEnvelopeDataGradingExpectationsItem = {
|
|
10821
|
+
text: string;
|
|
10822
|
+
passed: boolean;
|
|
10823
|
+
evidence: string;
|
|
10824
|
+
};
|
|
10825
|
+
|
|
10826
|
+
/**
|
|
10827
|
+
* Generated by orval 🍺
|
|
10828
|
+
* Do not edit manually.
|
|
10829
|
+
* Avallon API
|
|
10830
|
+
* OpenAPI spec version: 1.0.0
|
|
10831
|
+
*/
|
|
10832
|
+
type RunEvalEnvelopeDataGradingSummary = {
|
|
10833
|
+
/**
|
|
10834
|
+
* @minimum -9007199254740991
|
|
10835
|
+
* @maximum 9007199254740991
|
|
10836
|
+
*/
|
|
10837
|
+
total: number;
|
|
10838
|
+
/**
|
|
10839
|
+
* @minimum -9007199254740991
|
|
10840
|
+
* @maximum 9007199254740991
|
|
10841
|
+
*/
|
|
10842
|
+
passed: number;
|
|
10843
|
+
/**
|
|
10844
|
+
* @minimum -9007199254740991
|
|
10845
|
+
* @maximum 9007199254740991
|
|
10846
|
+
*/
|
|
10847
|
+
failed: number;
|
|
10848
|
+
pass_rate: number;
|
|
10849
|
+
};
|
|
10850
|
+
|
|
10851
|
+
/**
|
|
10852
|
+
* Generated by orval 🍺
|
|
10853
|
+
* Do not edit manually.
|
|
10854
|
+
* Avallon API
|
|
10855
|
+
* OpenAPI spec version: 1.0.0
|
|
10856
|
+
*/
|
|
10857
|
+
|
|
10858
|
+
type RunEvalEnvelopeDataGrading = {
|
|
10859
|
+
expectations: RunEvalEnvelopeDataGradingExpectationsItem[];
|
|
10860
|
+
summary: RunEvalEnvelopeDataGradingSummary;
|
|
10861
|
+
} | null;
|
|
10862
|
+
|
|
10863
|
+
/**
|
|
10864
|
+
* Generated by orval 🍺
|
|
10865
|
+
* Do not edit manually.
|
|
10866
|
+
* Avallon API
|
|
10867
|
+
* OpenAPI spec version: 1.0.0
|
|
10868
|
+
*/
|
|
10869
|
+
type RunEvalEnvelopeDataMetricsFixtureHealth = {
|
|
10870
|
+
/**
|
|
10871
|
+
* @minimum -9007199254740991
|
|
10872
|
+
* @maximum 9007199254740991
|
|
10873
|
+
*/
|
|
10874
|
+
exact: number;
|
|
10875
|
+
/**
|
|
10876
|
+
* @minimum -9007199254740991
|
|
10877
|
+
* @maximum 9007199254740991
|
|
10878
|
+
*/
|
|
10879
|
+
partial: number;
|
|
10880
|
+
/**
|
|
10881
|
+
* @minimum -9007199254740991
|
|
10882
|
+
* @maximum 9007199254740991
|
|
10883
|
+
*/
|
|
10884
|
+
fifo: number;
|
|
10885
|
+
/**
|
|
10886
|
+
* @minimum -9007199254740991
|
|
10887
|
+
* @maximum 9007199254740991
|
|
10888
|
+
*/
|
|
10889
|
+
default: number;
|
|
10890
|
+
/**
|
|
10891
|
+
* @minimum -9007199254740991
|
|
10892
|
+
* @maximum 9007199254740991
|
|
10893
|
+
*/
|
|
10894
|
+
unavailable: number;
|
|
10895
|
+
matched_rate: number | null;
|
|
10896
|
+
};
|
|
10897
|
+
|
|
10898
|
+
/**
|
|
10899
|
+
* Generated by orval 🍺
|
|
10900
|
+
* Do not edit manually.
|
|
10901
|
+
* Avallon API
|
|
10902
|
+
* OpenAPI spec version: 1.0.0
|
|
10903
|
+
*/
|
|
10904
|
+
|
|
10905
|
+
type RunEvalEnvelopeDataMetrics = {
|
|
10906
|
+
duration_seconds: number | null;
|
|
10907
|
+
/**
|
|
10908
|
+
* @minimum -9007199254740991
|
|
10909
|
+
* @maximum 9007199254740991
|
|
10910
|
+
*/
|
|
10911
|
+
tool_calls: number;
|
|
10912
|
+
fixture_health: RunEvalEnvelopeDataMetricsFixtureHealth;
|
|
10913
|
+
} | null;
|
|
10914
|
+
|
|
9917
10915
|
/**
|
|
9918
10916
|
* Generated by orval 🍺
|
|
9919
10917
|
* Do not edit manually.
|
|
@@ -9951,6 +10949,11 @@ type RunEvalEnvelopeData = {
|
|
|
9951
10949
|
judge_model: string | null;
|
|
9952
10950
|
judge_prompt_version: string | null;
|
|
9953
10951
|
tool_trace: unknown | null;
|
|
10952
|
+
grading: RunEvalEnvelopeDataGrading;
|
|
10953
|
+
metrics: RunEvalEnvelopeDataMetrics;
|
|
10954
|
+
benchmark_id: string | null;
|
|
10955
|
+
configuration: RunEvalEnvelopeDataConfiguration;
|
|
10956
|
+
run_number: number | null;
|
|
9954
10957
|
created_at: string;
|
|
9955
10958
|
started_at: string | null;
|
|
9956
10959
|
completed_at: string | null;
|
|
@@ -13050,7 +14053,7 @@ type Awaited$h<O> = O extends AwaitedInput$h<infer T> ? T : never;
|
|
|
13050
14053
|
type SecondParameter$h<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
13051
14054
|
declare const getCreateWorkerEvalFromRunUrl: (workerRunId: string) => string;
|
|
13052
14055
|
/**
|
|
13053
|
-
* Snapshot a worker run's trigger and resolved artifacts, and record its MCP tool responses from telemetry for replay.
|
|
14056
|
+
* 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
14057
|
* @summary Create a worker eval from a run
|
|
13055
14058
|
*/
|
|
13056
14059
|
declare const createWorkerEvalFromRun: (workerRunId: string, createWorkerEvalFromRunBody?: CreateWorkerEvalFromRunBody, options?: Parameters<typeof customFetch>[1]) => Promise<CreateWorkerEvalFromRunEnvelope>;
|
|
@@ -13127,6 +14130,58 @@ declare const useGetEvalRun: <TError = ErrorType<ErrorResponse>>(evalRunId: stri
|
|
|
13127
14130
|
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
13128
14131
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
13129
14132
|
};
|
|
14133
|
+
declare const getCreateEvalBenchmarkUrl: (evalId: string) => string;
|
|
14134
|
+
/**
|
|
14135
|
+
* 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.
|
|
14136
|
+
* @summary Benchmark two worker versions on an eval
|
|
14137
|
+
*/
|
|
14138
|
+
declare const createEvalBenchmark: (evalId: string, createEvalBenchmarkBody?: CreateEvalBenchmarkBody, options?: Parameters<typeof customFetch>[1]) => Promise<CreateEvalBenchmarkEnvelope>;
|
|
14139
|
+
declare const getCreateEvalBenchmarkMutationFetcher: (evalId: string, options?: SecondParameter$h<typeof customFetch>) => (_: Key, { arg }: {
|
|
14140
|
+
arg: CreateEvalBenchmarkBody | undefined;
|
|
14141
|
+
}) => Promise<CreateEvalBenchmarkEnvelope>;
|
|
14142
|
+
declare const getCreateEvalBenchmarkMutationKey: (evalId: string) => readonly [`/v1/evals/${string}/benchmarks`];
|
|
14143
|
+
type CreateEvalBenchmarkMutationResult = NonNullable<Awaited$h<ReturnType<typeof createEvalBenchmark>>>;
|
|
14144
|
+
/**
|
|
14145
|
+
* @summary Benchmark two worker versions on an eval
|
|
14146
|
+
*/
|
|
14147
|
+
declare const useCreateEvalBenchmark: <TError = ErrorType<ErrorResponse>>(evalId: string, options?: {
|
|
14148
|
+
swr?: SWRMutationConfiguration<Awaited$h<ReturnType<typeof createEvalBenchmark>>, TError, Key, CreateEvalBenchmarkBody | undefined, Awaited$h<ReturnType<typeof createEvalBenchmark>>> & {
|
|
14149
|
+
swrKey?: string;
|
|
14150
|
+
};
|
|
14151
|
+
request?: SecondParameter$h<typeof customFetch>;
|
|
14152
|
+
}) => {
|
|
14153
|
+
isMutating: boolean;
|
|
14154
|
+
trigger: swr_mutation.TriggerWithOptionsArgs<CreateEvalBenchmarkEnvelope, TError, string | readonly [`/v1/evals/${string}/benchmarks`], CreateEvalBenchmarkBody | undefined>;
|
|
14155
|
+
reset: () => void;
|
|
14156
|
+
error: TError | undefined;
|
|
14157
|
+
data: CreateEvalBenchmarkEnvelope | undefined;
|
|
14158
|
+
swrKey: string | readonly [`/v1/evals/${string}/benchmarks`];
|
|
14159
|
+
};
|
|
14160
|
+
declare const getGetBenchmarkUrl: (benchmarkId: string) => string;
|
|
14161
|
+
/**
|
|
14162
|
+
* Get a benchmark with its per-run gradings and metrics, and once all runs finished, the per-configuration summary, delta, and analyzer notes.
|
|
14163
|
+
* @summary Get a benchmark
|
|
14164
|
+
*/
|
|
14165
|
+
declare const getBenchmark: (benchmarkId: string, options?: Parameters<typeof customFetch>[1]) => Promise<GetBenchmarkEnvelope>;
|
|
14166
|
+
declare const getGetBenchmarkKey: (benchmarkId: string) => readonly [`/v1/benchmarks/${string}`];
|
|
14167
|
+
type GetBenchmarkQueryResult = NonNullable<Awaited$h<ReturnType<typeof getBenchmark>>>;
|
|
14168
|
+
/**
|
|
14169
|
+
* @summary Get a benchmark
|
|
14170
|
+
*/
|
|
14171
|
+
declare const useGetBenchmark: <TError = ErrorType<ErrorResponse>>(benchmarkId: string, options?: {
|
|
14172
|
+
swr?: SWRConfiguration<Awaited$h<ReturnType<typeof getBenchmark>>, TError> & {
|
|
14173
|
+
swrKey?: Key;
|
|
14174
|
+
enabled?: boolean;
|
|
14175
|
+
};
|
|
14176
|
+
request?: SecondParameter$h<typeof customFetch>;
|
|
14177
|
+
}) => {
|
|
14178
|
+
data: GetBenchmarkEnvelope | undefined;
|
|
14179
|
+
error: TError | undefined;
|
|
14180
|
+
mutate: swr.KeyedMutator<GetBenchmarkEnvelope>;
|
|
14181
|
+
isValidating: boolean;
|
|
14182
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
14183
|
+
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
14184
|
+
};
|
|
13130
14185
|
|
|
13131
14186
|
type AwaitedInput$g<T> = PromiseLike<T> | T;
|
|
13132
14187
|
type Awaited$g<O> = O extends AwaitedInput$g<infer T> ? T : never;
|
|
@@ -16115,4 +17170,4 @@ declare const useGetWorkerVersionChangeSummary: <TError = ErrorType<ErrorRespons
|
|
|
16115
17170
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => Arguments);
|
|
16116
17171
|
};
|
|
16117
17172
|
|
|
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 };
|
|
17173
|
+
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 };
|