@avallon-labs/sdk 37.2.0 → 37.4.0-staging.937
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 +401 -203
- package/dist/index.js +144 -70
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -107,6 +107,7 @@ declare const AddCaseLinksBodyEntitiesItemEntityType: {
|
|
|
107
107
|
readonly chat: "chat";
|
|
108
108
|
readonly email: "email";
|
|
109
109
|
readonly extract: "extract";
|
|
110
|
+
readonly schedule: "schedule";
|
|
110
111
|
readonly worker_run: "worker_run";
|
|
111
112
|
};
|
|
112
113
|
|
|
@@ -150,6 +151,7 @@ declare const CaseLinkEntityType: {
|
|
|
150
151
|
readonly chat: "chat";
|
|
151
152
|
readonly email: "email";
|
|
152
153
|
readonly extract: "extract";
|
|
154
|
+
readonly schedule: "schedule";
|
|
153
155
|
readonly worker_run: "worker_run";
|
|
154
156
|
};
|
|
155
157
|
|
|
@@ -2305,6 +2307,95 @@ interface DeleteWorkerResponse {
|
|
|
2305
2307
|
[key: string]: unknown;
|
|
2306
2308
|
}
|
|
2307
2309
|
|
|
2310
|
+
/**
|
|
2311
|
+
* Generated by orval v8.1.0 🍺
|
|
2312
|
+
* Do not edit manually.
|
|
2313
|
+
* Avallon API
|
|
2314
|
+
* OpenAPI spec version: 1.0.0
|
|
2315
|
+
*/
|
|
2316
|
+
type DispatchStatus = (typeof DispatchStatus)[keyof typeof DispatchStatus];
|
|
2317
|
+
declare const DispatchStatus: {
|
|
2318
|
+
readonly pending: "pending";
|
|
2319
|
+
readonly dispatched: "dispatched";
|
|
2320
|
+
readonly abandoned: "abandoned";
|
|
2321
|
+
};
|
|
2322
|
+
|
|
2323
|
+
/**
|
|
2324
|
+
* Generated by orval v8.1.0 🍺
|
|
2325
|
+
* Do not edit manually.
|
|
2326
|
+
* Avallon API
|
|
2327
|
+
* OpenAPI spec version: 1.0.0
|
|
2328
|
+
*/
|
|
2329
|
+
type DispatchTargetType = (typeof DispatchTargetType)[keyof typeof DispatchTargetType];
|
|
2330
|
+
declare const DispatchTargetType: {
|
|
2331
|
+
readonly worker_run: "worker_run";
|
|
2332
|
+
};
|
|
2333
|
+
|
|
2334
|
+
/**
|
|
2335
|
+
* Generated by orval v8.1.0 🍺
|
|
2336
|
+
* Do not edit manually.
|
|
2337
|
+
* Avallon API
|
|
2338
|
+
* OpenAPI spec version: 1.0.0
|
|
2339
|
+
*/
|
|
2340
|
+
|
|
2341
|
+
interface DispatchTarget {
|
|
2342
|
+
type: DispatchTargetType;
|
|
2343
|
+
id: string;
|
|
2344
|
+
}
|
|
2345
|
+
|
|
2346
|
+
/**
|
|
2347
|
+
* Generated by orval v8.1.0 🍺
|
|
2348
|
+
* Do not edit manually.
|
|
2349
|
+
* Avallon API
|
|
2350
|
+
* OpenAPI spec version: 1.0.0
|
|
2351
|
+
*/
|
|
2352
|
+
type DispatchTriggerType = (typeof DispatchTriggerType)[keyof typeof DispatchTriggerType];
|
|
2353
|
+
declare const DispatchTriggerType: {
|
|
2354
|
+
readonly schedule: "schedule";
|
|
2355
|
+
};
|
|
2356
|
+
|
|
2357
|
+
/**
|
|
2358
|
+
* Generated by orval v8.1.0 🍺
|
|
2359
|
+
* Do not edit manually.
|
|
2360
|
+
* Avallon API
|
|
2361
|
+
* OpenAPI spec version: 1.0.0
|
|
2362
|
+
*/
|
|
2363
|
+
|
|
2364
|
+
interface DispatchTrigger {
|
|
2365
|
+
type: DispatchTriggerType;
|
|
2366
|
+
id: string;
|
|
2367
|
+
}
|
|
2368
|
+
|
|
2369
|
+
/**
|
|
2370
|
+
* Generated by orval v8.1.0 🍺
|
|
2371
|
+
* Do not edit manually.
|
|
2372
|
+
* Avallon API
|
|
2373
|
+
* OpenAPI spec version: 1.0.0
|
|
2374
|
+
*/
|
|
2375
|
+
|
|
2376
|
+
interface Dispatch {
|
|
2377
|
+
id: string;
|
|
2378
|
+
trigger: DispatchTrigger;
|
|
2379
|
+
target: DispatchTarget | null;
|
|
2380
|
+
due_at: string;
|
|
2381
|
+
expires_at: string;
|
|
2382
|
+
status: DispatchStatus;
|
|
2383
|
+
/**
|
|
2384
|
+
* @minimum -9007199254740991
|
|
2385
|
+
* @maximum 9007199254740991
|
|
2386
|
+
*/
|
|
2387
|
+
attempts: number;
|
|
2388
|
+
}
|
|
2389
|
+
|
|
2390
|
+
/**
|
|
2391
|
+
* Generated by orval v8.1.0 🍺
|
|
2392
|
+
* Do not edit manually.
|
|
2393
|
+
* Avallon API
|
|
2394
|
+
* OpenAPI spec version: 1.0.0
|
|
2395
|
+
*/
|
|
2396
|
+
|
|
2397
|
+
type DispatchList = Dispatch[];
|
|
2398
|
+
|
|
2308
2399
|
/**
|
|
2309
2400
|
* Generated by orval v8.1.0 🍺
|
|
2310
2401
|
* Do not edit manually.
|
|
@@ -3753,6 +3844,7 @@ declare const ListCaseLinksEntityType: {
|
|
|
3753
3844
|
readonly chat: "chat";
|
|
3754
3845
|
readonly email: "email";
|
|
3755
3846
|
readonly extract: "extract";
|
|
3847
|
+
readonly schedule: "schedule";
|
|
3756
3848
|
readonly worker_run: "worker_run";
|
|
3757
3849
|
};
|
|
3758
3850
|
|
|
@@ -4001,6 +4093,69 @@ type ListChatsParams = {
|
|
|
4001
4093
|
sort_order?: ListChatsSortOrder;
|
|
4002
4094
|
};
|
|
4003
4095
|
|
|
4096
|
+
/**
|
|
4097
|
+
* Generated by orval v8.1.0 🍺
|
|
4098
|
+
* Do not edit manually.
|
|
4099
|
+
* Avallon API
|
|
4100
|
+
* OpenAPI spec version: 1.0.0
|
|
4101
|
+
*/
|
|
4102
|
+
type ListDispatchesSortBy = (typeof ListDispatchesSortBy)[keyof typeof ListDispatchesSortBy];
|
|
4103
|
+
declare const ListDispatchesSortBy: {
|
|
4104
|
+
readonly due_at: "due_at";
|
|
4105
|
+
};
|
|
4106
|
+
|
|
4107
|
+
/**
|
|
4108
|
+
* Generated by orval v8.1.0 🍺
|
|
4109
|
+
* Do not edit manually.
|
|
4110
|
+
* Avallon API
|
|
4111
|
+
* OpenAPI spec version: 1.0.0
|
|
4112
|
+
*/
|
|
4113
|
+
type ListDispatchesSortOrder = (typeof ListDispatchesSortOrder)[keyof typeof ListDispatchesSortOrder];
|
|
4114
|
+
declare const ListDispatchesSortOrder: {
|
|
4115
|
+
readonly asc: "asc";
|
|
4116
|
+
readonly desc: "desc";
|
|
4117
|
+
};
|
|
4118
|
+
|
|
4119
|
+
/**
|
|
4120
|
+
* Generated by orval v8.1.0 🍺
|
|
4121
|
+
* Do not edit manually.
|
|
4122
|
+
* Avallon API
|
|
4123
|
+
* OpenAPI spec version: 1.0.0
|
|
4124
|
+
*/
|
|
4125
|
+
type ListDispatchesTriggerType = (typeof ListDispatchesTriggerType)[keyof typeof ListDispatchesTriggerType];
|
|
4126
|
+
declare const ListDispatchesTriggerType: {
|
|
4127
|
+
readonly schedule: "schedule";
|
|
4128
|
+
};
|
|
4129
|
+
|
|
4130
|
+
/**
|
|
4131
|
+
* Generated by orval v8.1.0 🍺
|
|
4132
|
+
* Do not edit manually.
|
|
4133
|
+
* Avallon API
|
|
4134
|
+
* OpenAPI spec version: 1.0.0
|
|
4135
|
+
*/
|
|
4136
|
+
|
|
4137
|
+
type ListDispatchesParams = {
|
|
4138
|
+
/**
|
|
4139
|
+
* Only dispatches produced by this kind of trigger
|
|
4140
|
+
*/
|
|
4141
|
+
trigger_type?: ListDispatchesTriggerType;
|
|
4142
|
+
/**
|
|
4143
|
+
* Only dispatches produced by this trigger. Requires `trigger_type`.
|
|
4144
|
+
*/
|
|
4145
|
+
trigger_id?: string;
|
|
4146
|
+
/**
|
|
4147
|
+
* @minimum 1
|
|
4148
|
+
* @maximum 100
|
|
4149
|
+
*/
|
|
4150
|
+
count?: number;
|
|
4151
|
+
/**
|
|
4152
|
+
* @minimum 0
|
|
4153
|
+
*/
|
|
4154
|
+
offset?: number;
|
|
4155
|
+
sort_by?: ListDispatchesSortBy;
|
|
4156
|
+
sort_order?: ListDispatchesSortOrder;
|
|
4157
|
+
};
|
|
4158
|
+
|
|
4004
4159
|
/**
|
|
4005
4160
|
* Generated by orval v8.1.0 🍺
|
|
4006
4161
|
* Do not edit manually.
|
|
@@ -6810,9 +6965,9 @@ interface WorkerToolList {
|
|
|
6810
6965
|
|
|
6811
6966
|
type WorkerWebhookList = Webhook[];
|
|
6812
6967
|
|
|
6813
|
-
type AwaitedInput$
|
|
6814
|
-
type Awaited$
|
|
6815
|
-
type SecondParameter$
|
|
6968
|
+
type AwaitedInput$p<T> = PromiseLike<T> | T;
|
|
6969
|
+
type Awaited$p<O> = O extends AwaitedInput$p<infer T> ? T : never;
|
|
6970
|
+
type SecondParameter$p<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
6816
6971
|
/**
|
|
6817
6972
|
* Retrieve a tenant-scoped time series for a single processing-volume metric.
|
|
6818
6973
|
|
|
@@ -6824,16 +6979,16 @@ Pick a `metric` (worker runs, documents, or pages), a date range, a bucket `gran
|
|
|
6824
6979
|
declare const getGetAnalyticsTimeSeriesUrl: (params: GetAnalyticsTimeSeriesParams) => string;
|
|
6825
6980
|
declare const getAnalyticsTimeSeries: (params: GetAnalyticsTimeSeriesParams, options?: RequestInit) => Promise<AnalyticsTimeSeries[]>;
|
|
6826
6981
|
declare const getGetAnalyticsTimeSeriesKey: (params: GetAnalyticsTimeSeriesParams) => readonly ["/v1/analytics/timeseries", ...GetAnalyticsTimeSeriesParams[]];
|
|
6827
|
-
type GetAnalyticsTimeSeriesQueryResult = NonNullable<Awaited$
|
|
6982
|
+
type GetAnalyticsTimeSeriesQueryResult = NonNullable<Awaited$p<ReturnType<typeof getAnalyticsTimeSeries>>>;
|
|
6828
6983
|
/**
|
|
6829
6984
|
* @summary Get analytics time series
|
|
6830
6985
|
*/
|
|
6831
6986
|
declare const useGetAnalyticsTimeSeries: <TError = ErrorType<ErrorResponse>>(params: GetAnalyticsTimeSeriesParams, options?: {
|
|
6832
|
-
swr?: SWRConfiguration<Awaited$
|
|
6987
|
+
swr?: SWRConfiguration<Awaited$p<ReturnType<typeof getAnalyticsTimeSeries>>, TError> & {
|
|
6833
6988
|
swrKey?: Key;
|
|
6834
6989
|
enabled?: boolean;
|
|
6835
6990
|
};
|
|
6836
|
-
request?: SecondParameter$
|
|
6991
|
+
request?: SecondParameter$p<typeof customFetch>;
|
|
6837
6992
|
}) => {
|
|
6838
6993
|
data: AnalyticsTimeSeries[] | undefined;
|
|
6839
6994
|
error: TError | undefined;
|
|
@@ -6843,9 +6998,9 @@ declare const useGetAnalyticsTimeSeries: <TError = ErrorType<ErrorResponse>>(par
|
|
|
6843
6998
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
6844
6999
|
};
|
|
6845
7000
|
|
|
6846
|
-
type AwaitedInput$
|
|
6847
|
-
type Awaited$
|
|
6848
|
-
type SecondParameter$
|
|
7001
|
+
type AwaitedInput$o<T> = PromiseLike<T> | T;
|
|
7002
|
+
type Awaited$o<O> = O extends AwaitedInput$o<infer T> ? T : never;
|
|
7003
|
+
type SecondParameter$o<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
6849
7004
|
/**
|
|
6850
7005
|
* List all API keys for your tenant.
|
|
6851
7006
|
|
|
@@ -6857,16 +7012,16 @@ By default, revoked keys are excluded. Set `include_revoked=true` to include the
|
|
|
6857
7012
|
declare const getListApiKeysUrl: (params?: ListApiKeysParams) => string;
|
|
6858
7013
|
declare const listApiKeys: (params?: ListApiKeysParams, options?: RequestInit) => Promise<ApiKeyList>;
|
|
6859
7014
|
declare const getListApiKeysKey: (params?: ListApiKeysParams) => readonly ["/platform/api-keys", ...ListApiKeysParams[]];
|
|
6860
|
-
type ListApiKeysQueryResult = NonNullable<Awaited$
|
|
7015
|
+
type ListApiKeysQueryResult = NonNullable<Awaited$o<ReturnType<typeof listApiKeys>>>;
|
|
6861
7016
|
/**
|
|
6862
7017
|
* @summary List API keys
|
|
6863
7018
|
*/
|
|
6864
7019
|
declare const useListApiKeys: <TError = ErrorType<ErrorResponse>>(params?: ListApiKeysParams, options?: {
|
|
6865
|
-
swr?: SWRConfiguration<Awaited$
|
|
7020
|
+
swr?: SWRConfiguration<Awaited$o<ReturnType<typeof listApiKeys>>, TError> & {
|
|
6866
7021
|
swrKey?: Key;
|
|
6867
7022
|
enabled?: boolean;
|
|
6868
7023
|
};
|
|
6869
|
-
request?: SecondParameter$
|
|
7024
|
+
request?: SecondParameter$o<typeof customFetch>;
|
|
6870
7025
|
}) => {
|
|
6871
7026
|
data: ApiKeyList | undefined;
|
|
6872
7027
|
error: TError | undefined;
|
|
@@ -6885,19 +7040,19 @@ Keys are scoped to an environment (`test` or `live`) and optionally accept an ex
|
|
|
6885
7040
|
*/
|
|
6886
7041
|
declare const getCreateApiKeyUrl: () => string;
|
|
6887
7042
|
declare const createApiKey: (createApiKeyBody: CreateApiKeyBody, options?: RequestInit) => Promise<ApiKeyCreated>;
|
|
6888
|
-
declare const getCreateApiKeyMutationFetcher: (options?: SecondParameter$
|
|
7043
|
+
declare const getCreateApiKeyMutationFetcher: (options?: SecondParameter$o<typeof customFetch>) => (_: Key, { arg }: {
|
|
6889
7044
|
arg: CreateApiKeyBody;
|
|
6890
7045
|
}) => Promise<ApiKeyCreated>;
|
|
6891
7046
|
declare const getCreateApiKeyMutationKey: () => readonly ["/platform/api-keys"];
|
|
6892
|
-
type CreateApiKeyMutationResult = NonNullable<Awaited$
|
|
7047
|
+
type CreateApiKeyMutationResult = NonNullable<Awaited$o<ReturnType<typeof createApiKey>>>;
|
|
6893
7048
|
/**
|
|
6894
7049
|
* @summary Create an API key
|
|
6895
7050
|
*/
|
|
6896
7051
|
declare const useCreateApiKey: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
6897
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
7052
|
+
swr?: SWRMutationConfiguration<Awaited$o<ReturnType<typeof createApiKey>>, TError, Key, CreateApiKeyBody, Awaited$o<ReturnType<typeof createApiKey>>> & {
|
|
6898
7053
|
swrKey?: string;
|
|
6899
7054
|
};
|
|
6900
|
-
request?: SecondParameter$
|
|
7055
|
+
request?: SecondParameter$o<typeof customFetch>;
|
|
6901
7056
|
}) => {
|
|
6902
7057
|
isMutating: boolean;
|
|
6903
7058
|
trigger: swr_mutation.TriggerWithArgs<ApiKeyCreated, TError, string | readonly ["/platform/api-keys"], CreateApiKeyBody>;
|
|
@@ -6916,19 +7071,19 @@ Returns 409 if the key is already revoked, 404 if the key does not exist.
|
|
|
6916
7071
|
*/
|
|
6917
7072
|
declare const getRevokeApiKeyUrl: (id: string) => string;
|
|
6918
7073
|
declare const revokeApiKey: (id: string, options?: RequestInit) => Promise<ConfirmationResponse>;
|
|
6919
|
-
declare const getRevokeApiKeyMutationFetcher: (id: string, options?: SecondParameter$
|
|
7074
|
+
declare const getRevokeApiKeyMutationFetcher: (id: string, options?: SecondParameter$o<typeof customFetch>) => (_: Key, __: {
|
|
6920
7075
|
arg: Arguments;
|
|
6921
7076
|
}) => Promise<ConfirmationResponse>;
|
|
6922
7077
|
declare const getRevokeApiKeyMutationKey: (id: string) => readonly [`/platform/api-keys/${string}/revoke`];
|
|
6923
|
-
type RevokeApiKeyMutationResult = NonNullable<Awaited$
|
|
7078
|
+
type RevokeApiKeyMutationResult = NonNullable<Awaited$o<ReturnType<typeof revokeApiKey>>>;
|
|
6924
7079
|
/**
|
|
6925
7080
|
* @summary Revoke an API key
|
|
6926
7081
|
*/
|
|
6927
7082
|
declare const useRevokeApiKey: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
|
|
6928
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
7083
|
+
swr?: SWRMutationConfiguration<Awaited$o<ReturnType<typeof revokeApiKey>>, TError, Key, Arguments, Awaited$o<ReturnType<typeof revokeApiKey>>> & {
|
|
6929
7084
|
swrKey?: string;
|
|
6930
7085
|
};
|
|
6931
|
-
request?: SecondParameter$
|
|
7086
|
+
request?: SecondParameter$o<typeof customFetch>;
|
|
6932
7087
|
}) => {
|
|
6933
7088
|
isMutating: boolean;
|
|
6934
7089
|
trigger: swr_mutation.TriggerWithOptionsArgs<ConfirmationResponse, TError, string | readonly [`/platform/api-keys/${string}/revoke`], Arguments>;
|
|
@@ -6945,19 +7100,19 @@ The caller's role caps the maximum role they can grant — an `admin` cannot pro
|
|
|
6945
7100
|
*/
|
|
6946
7101
|
declare const getUpdateApiKeyUrl: (id: string) => string;
|
|
6947
7102
|
declare const updateApiKey: (id: string, updateApiKeyBody: UpdateApiKeyBody, options?: RequestInit) => Promise<ApiKey>;
|
|
6948
|
-
declare const getUpdateApiKeyMutationFetcher: (id: string, options?: SecondParameter$
|
|
7103
|
+
declare const getUpdateApiKeyMutationFetcher: (id: string, options?: SecondParameter$o<typeof customFetch>) => (_: Key, { arg }: {
|
|
6949
7104
|
arg: UpdateApiKeyBody;
|
|
6950
7105
|
}) => Promise<ApiKey>;
|
|
6951
7106
|
declare const getUpdateApiKeyMutationKey: (id: string) => readonly [`/platform/api-keys/${string}`];
|
|
6952
|
-
type UpdateApiKeyMutationResult = NonNullable<Awaited$
|
|
7107
|
+
type UpdateApiKeyMutationResult = NonNullable<Awaited$o<ReturnType<typeof updateApiKey>>>;
|
|
6953
7108
|
/**
|
|
6954
7109
|
* @summary Update API key
|
|
6955
7110
|
*/
|
|
6956
7111
|
declare const useUpdateApiKey: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
|
|
6957
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
7112
|
+
swr?: SWRMutationConfiguration<Awaited$o<ReturnType<typeof updateApiKey>>, TError, Key, UpdateApiKeyBody, Awaited$o<ReturnType<typeof updateApiKey>>> & {
|
|
6958
7113
|
swrKey?: string;
|
|
6959
7114
|
};
|
|
6960
|
-
request?: SecondParameter$
|
|
7115
|
+
request?: SecondParameter$o<typeof customFetch>;
|
|
6961
7116
|
}) => {
|
|
6962
7117
|
isMutating: boolean;
|
|
6963
7118
|
trigger: swr_mutation.TriggerWithArgs<ApiKey, TError, string | readonly [`/platform/api-keys/${string}`], UpdateApiKeyBody>;
|
|
@@ -6967,9 +7122,9 @@ declare const useUpdateApiKey: <TError = ErrorType<ErrorResponse>>(id: string, o
|
|
|
6967
7122
|
swrKey: string | readonly [`/platform/api-keys/${string}`];
|
|
6968
7123
|
};
|
|
6969
7124
|
|
|
6970
|
-
type AwaitedInput$
|
|
6971
|
-
type Awaited$
|
|
6972
|
-
type SecondParameter$
|
|
7125
|
+
type AwaitedInput$n<T> = PromiseLike<T> | T;
|
|
7126
|
+
type Awaited$n<O> = O extends AwaitedInput$n<infer T> ? T : never;
|
|
7127
|
+
type SecondParameter$n<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
6973
7128
|
/**
|
|
6974
7129
|
* Upload a document as a base64-encoded artifact for processing.
|
|
6975
7130
|
|
|
@@ -6985,19 +7140,19 @@ Maximum file size is approximately 6.75MB (base64 encoded). The API Gateway has
|
|
|
6985
7140
|
*/
|
|
6986
7141
|
declare const getCreateArtifactUrl: () => string;
|
|
6987
7142
|
declare const createArtifact: (createArtifactBody: CreateArtifactBody, options?: RequestInit) => Promise<ArtifactCreated>;
|
|
6988
|
-
declare const getCreateArtifactMutationFetcher: (options?: SecondParameter$
|
|
7143
|
+
declare const getCreateArtifactMutationFetcher: (options?: SecondParameter$n<typeof customFetch>) => (_: Key, { arg }: {
|
|
6989
7144
|
arg: CreateArtifactBody;
|
|
6990
7145
|
}) => Promise<ArtifactCreated>;
|
|
6991
7146
|
declare const getCreateArtifactMutationKey: () => readonly ["/v1/artifacts"];
|
|
6992
|
-
type CreateArtifactMutationResult = NonNullable<Awaited$
|
|
7147
|
+
type CreateArtifactMutationResult = NonNullable<Awaited$n<ReturnType<typeof createArtifact>>>;
|
|
6993
7148
|
/**
|
|
6994
7149
|
* @summary Create artifact
|
|
6995
7150
|
*/
|
|
6996
7151
|
declare const useCreateArtifact: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
6997
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
7152
|
+
swr?: SWRMutationConfiguration<Awaited$n<ReturnType<typeof createArtifact>>, TError, Key, CreateArtifactBody, Awaited$n<ReturnType<typeof createArtifact>>> & {
|
|
6998
7153
|
swrKey?: string;
|
|
6999
7154
|
};
|
|
7000
|
-
request?: SecondParameter$
|
|
7155
|
+
request?: SecondParameter$n<typeof customFetch>;
|
|
7001
7156
|
}) => {
|
|
7002
7157
|
isMutating: boolean;
|
|
7003
7158
|
trigger: swr_mutation.TriggerWithArgs<ArtifactCreated, TError, string | readonly ["/v1/artifacts"], CreateArtifactBody>;
|
|
@@ -7021,16 +7176,16 @@ Multiple metadata filters can be combined (AND logic).
|
|
|
7021
7176
|
declare const getListArtifactsUrl: (params?: ListArtifactsParams) => string;
|
|
7022
7177
|
declare const listArtifacts: (params?: ListArtifactsParams, options?: RequestInit) => Promise<ArtifactList>;
|
|
7023
7178
|
declare const getListArtifactsKey: (params?: ListArtifactsParams) => readonly ["/v1/artifacts", ...ListArtifactsParams[]];
|
|
7024
|
-
type ListArtifactsQueryResult = NonNullable<Awaited$
|
|
7179
|
+
type ListArtifactsQueryResult = NonNullable<Awaited$n<ReturnType<typeof listArtifacts>>>;
|
|
7025
7180
|
/**
|
|
7026
7181
|
* @summary List artifacts
|
|
7027
7182
|
*/
|
|
7028
7183
|
declare const useListArtifacts: <TError = ErrorType<ErrorResponse>>(params?: ListArtifactsParams, options?: {
|
|
7029
|
-
swr?: SWRConfiguration<Awaited$
|
|
7184
|
+
swr?: SWRConfiguration<Awaited$n<ReturnType<typeof listArtifacts>>, TError> & {
|
|
7030
7185
|
swrKey?: Key;
|
|
7031
7186
|
enabled?: boolean;
|
|
7032
7187
|
};
|
|
7033
|
-
request?: SecondParameter$
|
|
7188
|
+
request?: SecondParameter$n<typeof customFetch>;
|
|
7034
7189
|
}) => {
|
|
7035
7190
|
data: ArtifactList | undefined;
|
|
7036
7191
|
error: TError | undefined;
|
|
@@ -7048,16 +7203,16 @@ The response always includes `content_with_chunkids_md`: the parsed content anno
|
|
|
7048
7203
|
declare const getGetArtifactUrl: (id: string) => string;
|
|
7049
7204
|
declare const getArtifact: (id: string, options?: RequestInit) => Promise<ArtifactDetail>;
|
|
7050
7205
|
declare const getGetArtifactKey: (id: string) => readonly [`/v1/artifacts/${string}`];
|
|
7051
|
-
type GetArtifactQueryResult = NonNullable<Awaited$
|
|
7206
|
+
type GetArtifactQueryResult = NonNullable<Awaited$n<ReturnType<typeof getArtifact>>>;
|
|
7052
7207
|
/**
|
|
7053
7208
|
* @summary Get artifact
|
|
7054
7209
|
*/
|
|
7055
7210
|
declare const useGetArtifact: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
|
|
7056
|
-
swr?: SWRConfiguration<Awaited$
|
|
7211
|
+
swr?: SWRConfiguration<Awaited$n<ReturnType<typeof getArtifact>>, TError> & {
|
|
7057
7212
|
swrKey?: Key;
|
|
7058
7213
|
enabled?: boolean;
|
|
7059
7214
|
};
|
|
7060
|
-
request?: SecondParameter$
|
|
7215
|
+
request?: SecondParameter$n<typeof customFetch>;
|
|
7061
7216
|
}) => {
|
|
7062
7217
|
data: ArtifactDetail | undefined;
|
|
7063
7218
|
error: TError | undefined;
|
|
@@ -7072,19 +7227,19 @@ declare const useGetArtifact: <TError = ErrorType<ErrorResponse>>(id: string, op
|
|
|
7072
7227
|
*/
|
|
7073
7228
|
declare const getDeleteArtifactUrl: (id: string) => string;
|
|
7074
7229
|
declare const deleteArtifact: (id: string, options?: RequestInit) => Promise<DeleteArtifactResponse>;
|
|
7075
|
-
declare const getDeleteArtifactMutationFetcher: (id: string, options?: SecondParameter$
|
|
7230
|
+
declare const getDeleteArtifactMutationFetcher: (id: string, options?: SecondParameter$n<typeof customFetch>) => (_: Key, __: {
|
|
7076
7231
|
arg: Arguments;
|
|
7077
7232
|
}) => Promise<DeleteArtifactResponse>;
|
|
7078
7233
|
declare const getDeleteArtifactMutationKey: (id: string) => readonly [`/v1/artifacts/${string}`];
|
|
7079
|
-
type DeleteArtifactMutationResult = NonNullable<Awaited$
|
|
7234
|
+
type DeleteArtifactMutationResult = NonNullable<Awaited$n<ReturnType<typeof deleteArtifact>>>;
|
|
7080
7235
|
/**
|
|
7081
7236
|
* @summary Delete artifact
|
|
7082
7237
|
*/
|
|
7083
7238
|
declare const useDeleteArtifact: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
|
|
7084
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
7239
|
+
swr?: SWRMutationConfiguration<Awaited$n<ReturnType<typeof deleteArtifact>>, TError, Key, Arguments, Awaited$n<ReturnType<typeof deleteArtifact>>> & {
|
|
7085
7240
|
swrKey?: string;
|
|
7086
7241
|
};
|
|
7087
|
-
request?: SecondParameter$
|
|
7242
|
+
request?: SecondParameter$n<typeof customFetch>;
|
|
7088
7243
|
}) => {
|
|
7089
7244
|
isMutating: boolean;
|
|
7090
7245
|
trigger: swr_mutation.TriggerWithOptionsArgs<DeleteArtifactResponse, TError, string | readonly [`/v1/artifacts/${string}`], Arguments>;
|
|
@@ -7100,16 +7255,16 @@ declare const useDeleteArtifact: <TError = ErrorType<ErrorResponse>>(id: string,
|
|
|
7100
7255
|
declare const getGetArtifactMetadataKeysUrl: (params?: GetArtifactMetadataKeysParams) => string;
|
|
7101
7256
|
declare const getArtifactMetadataKeys: (params?: GetArtifactMetadataKeysParams, options?: RequestInit) => Promise<ArtifactMetadataKeys>;
|
|
7102
7257
|
declare const getGetArtifactMetadataKeysKey: (params?: GetArtifactMetadataKeysParams) => readonly ["/v1/artifacts/metadata/keys", ...GetArtifactMetadataKeysParams[]];
|
|
7103
|
-
type GetArtifactMetadataKeysQueryResult = NonNullable<Awaited$
|
|
7258
|
+
type GetArtifactMetadataKeysQueryResult = NonNullable<Awaited$n<ReturnType<typeof getArtifactMetadataKeys>>>;
|
|
7104
7259
|
/**
|
|
7105
7260
|
* @summary Get artifact metadata keys
|
|
7106
7261
|
*/
|
|
7107
7262
|
declare const useGetArtifactMetadataKeys: <TError = ErrorType<ErrorResponse>>(params?: GetArtifactMetadataKeysParams, options?: {
|
|
7108
|
-
swr?: SWRConfiguration<Awaited$
|
|
7263
|
+
swr?: SWRConfiguration<Awaited$n<ReturnType<typeof getArtifactMetadataKeys>>, TError> & {
|
|
7109
7264
|
swrKey?: Key;
|
|
7110
7265
|
enabled?: boolean;
|
|
7111
7266
|
};
|
|
7112
|
-
request?: SecondParameter$
|
|
7267
|
+
request?: SecondParameter$n<typeof customFetch>;
|
|
7113
7268
|
}) => {
|
|
7114
7269
|
data: ArtifactMetadataKeys | undefined;
|
|
7115
7270
|
error: TError | undefined;
|
|
@@ -7127,16 +7282,16 @@ Define the scope with bracket notation (e.g. `scope[email_id]=abc-123`). At leas
|
|
|
7127
7282
|
declare const getGetArtifactStatusSummaryUrl: (params: GetArtifactStatusSummaryParams) => string;
|
|
7128
7283
|
declare const getArtifactStatusSummary: (params: GetArtifactStatusSummaryParams, options?: RequestInit) => Promise<ArtifactStatusSummary>;
|
|
7129
7284
|
declare const getGetArtifactStatusSummaryKey: (params: GetArtifactStatusSummaryParams) => readonly ["/v1/artifacts/status-summary", ...GetArtifactStatusSummaryParams[]];
|
|
7130
|
-
type GetArtifactStatusSummaryQueryResult = NonNullable<Awaited$
|
|
7285
|
+
type GetArtifactStatusSummaryQueryResult = NonNullable<Awaited$n<ReturnType<typeof getArtifactStatusSummary>>>;
|
|
7131
7286
|
/**
|
|
7132
7287
|
* @summary Get artifact status summary
|
|
7133
7288
|
*/
|
|
7134
7289
|
declare const useGetArtifactStatusSummary: <TError = ErrorType<ErrorResponse>>(params: GetArtifactStatusSummaryParams, options?: {
|
|
7135
|
-
swr?: SWRConfiguration<Awaited$
|
|
7290
|
+
swr?: SWRConfiguration<Awaited$n<ReturnType<typeof getArtifactStatusSummary>>, TError> & {
|
|
7136
7291
|
swrKey?: Key;
|
|
7137
7292
|
enabled?: boolean;
|
|
7138
7293
|
};
|
|
7139
|
-
request?: SecondParameter$
|
|
7294
|
+
request?: SecondParameter$n<typeof customFetch>;
|
|
7140
7295
|
}) => {
|
|
7141
7296
|
data: ArtifactStatusSummary | undefined;
|
|
7142
7297
|
error: TError | undefined;
|
|
@@ -7151,19 +7306,19 @@ declare const useGetArtifactStatusSummary: <TError = ErrorType<ErrorResponse>>(p
|
|
|
7151
7306
|
*/
|
|
7152
7307
|
declare const getGetArtifactUploadUrlUrl: () => string;
|
|
7153
7308
|
declare const getArtifactUploadUrl: (getArtifactUploadUrlBody: GetArtifactUploadUrlBody, options?: RequestInit) => Promise<GetArtifactUploadUrl200>;
|
|
7154
|
-
declare const getGetArtifactUploadUrlMutationFetcher: (options?: SecondParameter$
|
|
7309
|
+
declare const getGetArtifactUploadUrlMutationFetcher: (options?: SecondParameter$n<typeof customFetch>) => (_: Key, { arg }: {
|
|
7155
7310
|
arg: GetArtifactUploadUrlBody;
|
|
7156
7311
|
}) => Promise<GetArtifactUploadUrl200>;
|
|
7157
7312
|
declare const getGetArtifactUploadUrlMutationKey: () => readonly ["/v1/artifacts/get-upload-url"];
|
|
7158
|
-
type GetArtifactUploadUrlMutationResult = NonNullable<Awaited$
|
|
7313
|
+
type GetArtifactUploadUrlMutationResult = NonNullable<Awaited$n<ReturnType<typeof getArtifactUploadUrl>>>;
|
|
7159
7314
|
/**
|
|
7160
7315
|
* @summary Request a pre-signed URL for direct large file upload
|
|
7161
7316
|
*/
|
|
7162
7317
|
declare const useGetArtifactUploadUrl: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
7163
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
7318
|
+
swr?: SWRMutationConfiguration<Awaited$n<ReturnType<typeof getArtifactUploadUrl>>, TError, Key, GetArtifactUploadUrlBody, Awaited$n<ReturnType<typeof getArtifactUploadUrl>>> & {
|
|
7164
7319
|
swrKey?: string;
|
|
7165
7320
|
};
|
|
7166
|
-
request?: SecondParameter$
|
|
7321
|
+
request?: SecondParameter$n<typeof customFetch>;
|
|
7167
7322
|
}) => {
|
|
7168
7323
|
isMutating: boolean;
|
|
7169
7324
|
trigger: swr_mutation.TriggerWithArgs<GetArtifactUploadUrl200, TError, string | readonly ["/v1/artifacts/get-upload-url"], GetArtifactUploadUrlBody>;
|
|
@@ -7178,19 +7333,19 @@ declare const useGetArtifactUploadUrl: <TError = ErrorType<ErrorResponse>>(optio
|
|
|
7178
7333
|
*/
|
|
7179
7334
|
declare const getUpdateArtifactMetadataUrl: (id: string) => string;
|
|
7180
7335
|
declare const updateArtifactMetadata: (id: string, updateArtifactMetadataBody: UpdateArtifactMetadataBody, options?: RequestInit) => Promise<ArtifactDetail>;
|
|
7181
|
-
declare const getUpdateArtifactMetadataMutationFetcher: (id: string, options?: SecondParameter$
|
|
7336
|
+
declare const getUpdateArtifactMetadataMutationFetcher: (id: string, options?: SecondParameter$n<typeof customFetch>) => (_: Key, { arg }: {
|
|
7182
7337
|
arg: UpdateArtifactMetadataBody;
|
|
7183
7338
|
}) => Promise<ArtifactDetail>;
|
|
7184
7339
|
declare const getUpdateArtifactMetadataMutationKey: (id: string) => readonly [`/v1/artifacts/${string}/metadata`];
|
|
7185
|
-
type UpdateArtifactMetadataMutationResult = NonNullable<Awaited$
|
|
7340
|
+
type UpdateArtifactMetadataMutationResult = NonNullable<Awaited$n<ReturnType<typeof updateArtifactMetadata>>>;
|
|
7186
7341
|
/**
|
|
7187
7342
|
* @summary Update artifact metadata
|
|
7188
7343
|
*/
|
|
7189
7344
|
declare const useUpdateArtifactMetadata: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
|
|
7190
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
7345
|
+
swr?: SWRMutationConfiguration<Awaited$n<ReturnType<typeof updateArtifactMetadata>>, TError, Key, UpdateArtifactMetadataBody, Awaited$n<ReturnType<typeof updateArtifactMetadata>>> & {
|
|
7191
7346
|
swrKey?: string;
|
|
7192
7347
|
};
|
|
7193
|
-
request?: SecondParameter$
|
|
7348
|
+
request?: SecondParameter$n<typeof customFetch>;
|
|
7194
7349
|
}) => {
|
|
7195
7350
|
isMutating: boolean;
|
|
7196
7351
|
trigger: swr_mutation.TriggerWithArgs<ArtifactDetail, TError, string | readonly [`/v1/artifacts/${string}/metadata`], UpdateArtifactMetadataBody>;
|
|
@@ -7207,19 +7362,19 @@ This endpoint returns an upload id that can be used to find the created artifact
|
|
|
7207
7362
|
*/
|
|
7208
7363
|
declare const getUploadFileUrl: () => string;
|
|
7209
7364
|
declare const uploadFile: (uploadFileBody: UploadFileBody, options?: RequestInit) => Promise<UploadFileResponse>;
|
|
7210
|
-
declare const getUploadFileMutationFetcher: (options?: SecondParameter$
|
|
7365
|
+
declare const getUploadFileMutationFetcher: (options?: SecondParameter$n<typeof customFetch>) => (_: Key, { arg }: {
|
|
7211
7366
|
arg: UploadFileBody;
|
|
7212
7367
|
}) => Promise<UploadFileResponse>;
|
|
7213
7368
|
declare const getUploadFileMutationKey: () => readonly ["/v1/upload-file"];
|
|
7214
|
-
type UploadFileMutationResult = NonNullable<Awaited$
|
|
7369
|
+
type UploadFileMutationResult = NonNullable<Awaited$n<ReturnType<typeof uploadFile>>>;
|
|
7215
7370
|
/**
|
|
7216
7371
|
* @summary Upload a file for processing
|
|
7217
7372
|
*/
|
|
7218
7373
|
declare const useUploadFile: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
7219
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
7374
|
+
swr?: SWRMutationConfiguration<Awaited$n<ReturnType<typeof uploadFile>>, TError, Key, UploadFileBody, Awaited$n<ReturnType<typeof uploadFile>>> & {
|
|
7220
7375
|
swrKey?: string;
|
|
7221
7376
|
};
|
|
7222
|
-
request?: SecondParameter$
|
|
7377
|
+
request?: SecondParameter$n<typeof customFetch>;
|
|
7223
7378
|
}) => {
|
|
7224
7379
|
isMutating: boolean;
|
|
7225
7380
|
trigger: swr_mutation.TriggerWithArgs<UploadFileResponse, TError, string | readonly ["/v1/upload-file"], UploadFileBody>;
|
|
@@ -7229,28 +7384,28 @@ declare const useUploadFile: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
7229
7384
|
swrKey: string | readonly ["/v1/upload-file"];
|
|
7230
7385
|
};
|
|
7231
7386
|
|
|
7232
|
-
type AwaitedInput$
|
|
7233
|
-
type Awaited$
|
|
7234
|
-
type SecondParameter$
|
|
7387
|
+
type AwaitedInput$m<T> = PromiseLike<T> | T;
|
|
7388
|
+
type Awaited$m<O> = O extends AwaitedInput$m<infer T> ? T : never;
|
|
7389
|
+
type SecondParameter$m<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
7235
7390
|
/**
|
|
7236
7391
|
* Create a new user account with email and password. When the response includes a pending_authentication_token, the account requires email verification: complete it via sign-in (type: email_otp) with the emailed one-time password and this token.
|
|
7237
7392
|
* @summary Sign up
|
|
7238
7393
|
*/
|
|
7239
7394
|
declare const getSignUpUrl: () => string;
|
|
7240
7395
|
declare const signUp: (signUpBody: SignUpBody, options?: RequestInit) => Promise<SignUpResponse>;
|
|
7241
|
-
declare const getSignUpMutationFetcher: (options?: SecondParameter$
|
|
7396
|
+
declare const getSignUpMutationFetcher: (options?: SecondParameter$m<typeof customFetchNoAuth>) => (_: Key, { arg }: {
|
|
7242
7397
|
arg: SignUpBody;
|
|
7243
7398
|
}) => Promise<SignUpResponse>;
|
|
7244
7399
|
declare const getSignUpMutationKey: () => readonly ["/v1/auth/sign-up"];
|
|
7245
|
-
type SignUpMutationResult = NonNullable<Awaited$
|
|
7400
|
+
type SignUpMutationResult = NonNullable<Awaited$m<ReturnType<typeof signUp>>>;
|
|
7246
7401
|
/**
|
|
7247
7402
|
* @summary Sign up
|
|
7248
7403
|
*/
|
|
7249
7404
|
declare const useSignUp: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
7250
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
7405
|
+
swr?: SWRMutationConfiguration<Awaited$m<ReturnType<typeof signUp>>, TError, Key, SignUpBody, Awaited$m<ReturnType<typeof signUp>>> & {
|
|
7251
7406
|
swrKey?: string;
|
|
7252
7407
|
};
|
|
7253
|
-
request?: SecondParameter$
|
|
7408
|
+
request?: SecondParameter$m<typeof customFetchNoAuth>;
|
|
7254
7409
|
}) => {
|
|
7255
7410
|
isMutating: boolean;
|
|
7256
7411
|
trigger: swr_mutation.TriggerWithArgs<SignUpResponse, TError, string | readonly ["/v1/auth/sign-up"], SignUpBody>;
|
|
@@ -7269,19 +7424,19 @@ declare const useSignUp: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
7269
7424
|
*/
|
|
7270
7425
|
declare const getSignInUrl: () => string;
|
|
7271
7426
|
declare const signIn: (signInBody: SignInBody, options?: RequestInit) => Promise<AuthTokens>;
|
|
7272
|
-
declare const getSignInMutationFetcher: (options?: SecondParameter$
|
|
7427
|
+
declare const getSignInMutationFetcher: (options?: SecondParameter$m<typeof customFetchNoAuth>) => (_: Key, { arg }: {
|
|
7273
7428
|
arg: SignInBody;
|
|
7274
7429
|
}) => Promise<AuthTokens>;
|
|
7275
7430
|
declare const getSignInMutationKey: () => readonly ["/v1/auth/sign-in"];
|
|
7276
|
-
type SignInMutationResult = NonNullable<Awaited$
|
|
7431
|
+
type SignInMutationResult = NonNullable<Awaited$m<ReturnType<typeof signIn>>>;
|
|
7277
7432
|
/**
|
|
7278
7433
|
* @summary Sign in
|
|
7279
7434
|
*/
|
|
7280
7435
|
declare const useSignIn: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
7281
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
7436
|
+
swr?: SWRMutationConfiguration<Awaited$m<ReturnType<typeof signIn>>, TError, Key, SignInBody, Awaited$m<ReturnType<typeof signIn>>> & {
|
|
7282
7437
|
swrKey?: string;
|
|
7283
7438
|
};
|
|
7284
|
-
request?: SecondParameter$
|
|
7439
|
+
request?: SecondParameter$m<typeof customFetchNoAuth>;
|
|
7285
7440
|
}) => {
|
|
7286
7441
|
isMutating: boolean;
|
|
7287
7442
|
trigger: swr_mutation.TriggerWithArgs<AuthTokens, TError, string | readonly ["/v1/auth/sign-in"], SignInBody>;
|
|
@@ -7296,19 +7451,19 @@ declare const useSignIn: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
7296
7451
|
*/
|
|
7297
7452
|
declare const getRefreshTokenUrl: () => string;
|
|
7298
7453
|
declare const refreshToken: (refreshTokenBody: RefreshTokenBody, options?: RequestInit) => Promise<AuthTokens>;
|
|
7299
|
-
declare const getRefreshTokenMutationFetcher: (options?: SecondParameter$
|
|
7454
|
+
declare const getRefreshTokenMutationFetcher: (options?: SecondParameter$m<typeof customFetchNoAuth>) => (_: Key, { arg }: {
|
|
7300
7455
|
arg: RefreshTokenBody;
|
|
7301
7456
|
}) => Promise<AuthTokens>;
|
|
7302
7457
|
declare const getRefreshTokenMutationKey: () => readonly ["/v1/auth/refresh-token"];
|
|
7303
|
-
type RefreshTokenMutationResult = NonNullable<Awaited$
|
|
7458
|
+
type RefreshTokenMutationResult = NonNullable<Awaited$m<ReturnType<typeof refreshToken>>>;
|
|
7304
7459
|
/**
|
|
7305
7460
|
* @summary Refresh authentication token
|
|
7306
7461
|
*/
|
|
7307
7462
|
declare const useRefreshToken: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
7308
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
7463
|
+
swr?: SWRMutationConfiguration<Awaited$m<ReturnType<typeof refreshToken>>, TError, Key, RefreshTokenBody, Awaited$m<ReturnType<typeof refreshToken>>> & {
|
|
7309
7464
|
swrKey?: string;
|
|
7310
7465
|
};
|
|
7311
|
-
request?: SecondParameter$
|
|
7466
|
+
request?: SecondParameter$m<typeof customFetchNoAuth>;
|
|
7312
7467
|
}) => {
|
|
7313
7468
|
isMutating: boolean;
|
|
7314
7469
|
trigger: swr_mutation.TriggerWithArgs<AuthTokens, TError, string | readonly ["/v1/auth/refresh-token"], RefreshTokenBody>;
|
|
@@ -7328,16 +7483,16 @@ For enterprise SSO, pass `provider=sso` together with the user's `email`; the em
|
|
|
7328
7483
|
declare const getGetOAuthUrlUrl: (params: GetOAuthUrlParams) => string;
|
|
7329
7484
|
declare const getOAuthUrl: (params: GetOAuthUrlParams, options?: RequestInit) => Promise<OAuthUrl>;
|
|
7330
7485
|
declare const getGetOAuthUrlKey: (params: GetOAuthUrlParams) => readonly ["/v1/auth/oauth-url", ...GetOAuthUrlParams[]];
|
|
7331
|
-
type GetOAuthUrlQueryResult = NonNullable<Awaited$
|
|
7486
|
+
type GetOAuthUrlQueryResult = NonNullable<Awaited$m<ReturnType<typeof getOAuthUrl>>>;
|
|
7332
7487
|
/**
|
|
7333
7488
|
* @summary Get OAuth sign-in URL
|
|
7334
7489
|
*/
|
|
7335
7490
|
declare const useGetOAuthUrl: <TError = ErrorType<ErrorResponse>>(params: GetOAuthUrlParams, options?: {
|
|
7336
|
-
swr?: SWRConfiguration<Awaited$
|
|
7491
|
+
swr?: SWRConfiguration<Awaited$m<ReturnType<typeof getOAuthUrl>>, TError> & {
|
|
7337
7492
|
swrKey?: Key;
|
|
7338
7493
|
enabled?: boolean;
|
|
7339
7494
|
};
|
|
7340
|
-
request?: SecondParameter$
|
|
7495
|
+
request?: SecondParameter$m<typeof customFetchNoAuth>;
|
|
7341
7496
|
}) => {
|
|
7342
7497
|
data: OAuthUrl | undefined;
|
|
7343
7498
|
error: TError | undefined;
|
|
@@ -7357,19 +7512,19 @@ declare const useGetOAuthUrl: <TError = ErrorType<ErrorResponse>>(params: GetOAu
|
|
|
7357
7512
|
*/
|
|
7358
7513
|
declare const getGetSessionTokenUrl: () => string;
|
|
7359
7514
|
declare const getSessionToken: (getSessionTokenBody: GetSessionTokenBody, options?: RequestInit) => Promise<GetSessionToken200>;
|
|
7360
|
-
declare const getGetSessionTokenMutationFetcher: (options?: SecondParameter$
|
|
7515
|
+
declare const getGetSessionTokenMutationFetcher: (options?: SecondParameter$m<typeof customFetchNoAuth>) => (_: Key, { arg }: {
|
|
7361
7516
|
arg: GetSessionTokenBody;
|
|
7362
7517
|
}) => Promise<GetSessionToken200>;
|
|
7363
7518
|
declare const getGetSessionTokenMutationKey: () => readonly ["/v1/auth/session"];
|
|
7364
|
-
type GetSessionTokenMutationResult = NonNullable<Awaited$
|
|
7519
|
+
type GetSessionTokenMutationResult = NonNullable<Awaited$m<ReturnType<typeof getSessionToken>>>;
|
|
7365
7520
|
/**
|
|
7366
7521
|
* @summary Create or switch tenant session
|
|
7367
7522
|
*/
|
|
7368
7523
|
declare const useGetSessionToken: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
7369
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
7524
|
+
swr?: SWRMutationConfiguration<Awaited$m<ReturnType<typeof getSessionToken>>, TError, Key, GetSessionTokenBody, Awaited$m<ReturnType<typeof getSessionToken>>> & {
|
|
7370
7525
|
swrKey?: string;
|
|
7371
7526
|
};
|
|
7372
|
-
request?: SecondParameter$
|
|
7527
|
+
request?: SecondParameter$m<typeof customFetchNoAuth>;
|
|
7373
7528
|
}) => {
|
|
7374
7529
|
isMutating: boolean;
|
|
7375
7530
|
trigger: swr_mutation.TriggerWithArgs<GetSessionToken200, TError, string | readonly ["/v1/auth/session"], GetSessionTokenBody>;
|
|
@@ -7385,16 +7540,16 @@ declare const useGetSessionToken: <TError = ErrorType<ErrorResponse>>(options?:
|
|
|
7385
7540
|
declare const getGetPartnerJwksUrl: (partner: string) => string;
|
|
7386
7541
|
declare const getPartnerJwks: (partner: string, options?: RequestInit) => Promise<PartnerJwks>;
|
|
7387
7542
|
declare const getGetPartnerJwksKey: (partner: string) => readonly [`/.well-known/partners/${string}/jwks.json`];
|
|
7388
|
-
type GetPartnerJwksQueryResult = NonNullable<Awaited$
|
|
7543
|
+
type GetPartnerJwksQueryResult = NonNullable<Awaited$m<ReturnType<typeof getPartnerJwks>>>;
|
|
7389
7544
|
/**
|
|
7390
7545
|
* @summary Get partner JWKS
|
|
7391
7546
|
*/
|
|
7392
7547
|
declare const useGetPartnerJwks: <TError = ErrorType<ErrorResponse>>(partner: string, options?: {
|
|
7393
|
-
swr?: SWRConfiguration<Awaited$
|
|
7548
|
+
swr?: SWRConfiguration<Awaited$m<ReturnType<typeof getPartnerJwks>>, TError> & {
|
|
7394
7549
|
swrKey?: Key;
|
|
7395
7550
|
enabled?: boolean;
|
|
7396
7551
|
};
|
|
7397
|
-
request?: SecondParameter$
|
|
7552
|
+
request?: SecondParameter$m<typeof customFetchNoAuth>;
|
|
7398
7553
|
}) => {
|
|
7399
7554
|
data: PartnerJwks | undefined;
|
|
7400
7555
|
error: TError | undefined;
|
|
@@ -7409,19 +7564,19 @@ declare const useGetPartnerJwks: <TError = ErrorType<ErrorResponse>>(partner: st
|
|
|
7409
7564
|
*/
|
|
7410
7565
|
declare const getPartnerLaunchUrl: (params?: PartnerLaunchParams) => string;
|
|
7411
7566
|
declare const partnerLaunch: (params?: PartnerLaunchParams, options?: RequestInit) => Promise<unknown>;
|
|
7412
|
-
declare const getPartnerLaunchMutationFetcher: (params?: PartnerLaunchParams, options?: SecondParameter$
|
|
7567
|
+
declare const getPartnerLaunchMutationFetcher: (params?: PartnerLaunchParams, options?: SecondParameter$m<typeof customFetchNoAuth>) => (_: Key, __: {
|
|
7413
7568
|
arg: Arguments;
|
|
7414
7569
|
}) => Promise<unknown>;
|
|
7415
7570
|
declare const getPartnerLaunchMutationKey: (params?: PartnerLaunchParams) => readonly ["/v1/auth/partner-launch", ...PartnerLaunchParams[]];
|
|
7416
|
-
type PartnerLaunchMutationResult = NonNullable<Awaited$
|
|
7571
|
+
type PartnerLaunchMutationResult = NonNullable<Awaited$m<ReturnType<typeof partnerLaunch>>>;
|
|
7417
7572
|
/**
|
|
7418
7573
|
* @summary Partner launch (SSO)
|
|
7419
7574
|
*/
|
|
7420
7575
|
declare const usePartnerLaunch: <TError = ErrorType<PartnerLaunch302 | ErrorResponse>>(params?: PartnerLaunchParams, options?: {
|
|
7421
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
7576
|
+
swr?: SWRMutationConfiguration<Awaited$m<ReturnType<typeof partnerLaunch>>, TError, Key, Arguments, Awaited$m<ReturnType<typeof partnerLaunch>>> & {
|
|
7422
7577
|
swrKey?: string;
|
|
7423
7578
|
};
|
|
7424
|
-
request?: SecondParameter$
|
|
7579
|
+
request?: SecondParameter$m<typeof customFetchNoAuth>;
|
|
7425
7580
|
}) => {
|
|
7426
7581
|
isMutating: boolean;
|
|
7427
7582
|
trigger: swr_mutation.TriggerWithOptionsArgs<unknown, TError, string | readonly ["/v1/auth/partner-launch", ...PartnerLaunchParams[]], Arguments>;
|
|
@@ -7431,28 +7586,28 @@ declare const usePartnerLaunch: <TError = ErrorType<PartnerLaunch302 | ErrorResp
|
|
|
7431
7586
|
swrKey: string | readonly ["/v1/auth/partner-launch", ...PartnerLaunchParams[]];
|
|
7432
7587
|
};
|
|
7433
7588
|
|
|
7434
|
-
type AwaitedInput$
|
|
7435
|
-
type Awaited$
|
|
7436
|
-
type SecondParameter$
|
|
7589
|
+
type AwaitedInput$l<T> = PromiseLike<T> | T;
|
|
7590
|
+
type Awaited$l<O> = O extends AwaitedInput$l<infer T> ? T : never;
|
|
7591
|
+
type SecondParameter$l<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
7437
7592
|
/**
|
|
7438
7593
|
* Create feedback for a specific message in a call. Requires user (JWT) authentication; the author is derived from the authenticated user's profile and API-key callers are rejected.
|
|
7439
7594
|
* @summary Create feedback on a call message
|
|
7440
7595
|
*/
|
|
7441
7596
|
declare const getCreateCallFeedbackUrl: (id: string) => string;
|
|
7442
7597
|
declare const createCallFeedback: (id: string, createFeedbackRequest: CreateFeedbackRequest, options?: RequestInit) => Promise<Feedback>;
|
|
7443
|
-
declare const getCreateCallFeedbackMutationFetcher: (id: string, options?: SecondParameter$
|
|
7598
|
+
declare const getCreateCallFeedbackMutationFetcher: (id: string, options?: SecondParameter$l<typeof customFetch>) => (_: Key, { arg }: {
|
|
7444
7599
|
arg: CreateFeedbackRequest;
|
|
7445
7600
|
}) => Promise<Feedback>;
|
|
7446
7601
|
declare const getCreateCallFeedbackMutationKey: (id: string) => readonly [`/v1/calls/${string}/feedback`];
|
|
7447
|
-
type CreateCallFeedbackMutationResult = NonNullable<Awaited$
|
|
7602
|
+
type CreateCallFeedbackMutationResult = NonNullable<Awaited$l<ReturnType<typeof createCallFeedback>>>;
|
|
7448
7603
|
/**
|
|
7449
7604
|
* @summary Create feedback on a call message
|
|
7450
7605
|
*/
|
|
7451
7606
|
declare const useCreateCallFeedback: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
|
|
7452
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
7607
|
+
swr?: SWRMutationConfiguration<Awaited$l<ReturnType<typeof createCallFeedback>>, TError, Key, CreateFeedbackRequest, Awaited$l<ReturnType<typeof createCallFeedback>>> & {
|
|
7453
7608
|
swrKey?: string;
|
|
7454
7609
|
};
|
|
7455
|
-
request?: SecondParameter$
|
|
7610
|
+
request?: SecondParameter$l<typeof customFetch>;
|
|
7456
7611
|
}) => {
|
|
7457
7612
|
isMutating: boolean;
|
|
7458
7613
|
trigger: swr_mutation.TriggerWithArgs<Feedback, TError, string | readonly [`/v1/calls/${string}/feedback`], CreateFeedbackRequest>;
|
|
@@ -7468,16 +7623,16 @@ declare const useCreateCallFeedback: <TError = ErrorType<ErrorResponse>>(id: str
|
|
|
7468
7623
|
declare const getListCallFeedbackUrl: (id: string, params?: ListCallFeedbackParams) => string;
|
|
7469
7624
|
declare const listCallFeedback: (id: string, params?: ListCallFeedbackParams, options?: RequestInit) => Promise<Feedback[]>;
|
|
7470
7625
|
declare const getListCallFeedbackKey: (id: string, params?: ListCallFeedbackParams) => readonly [`/v1/calls/${string}/feedback`, ...ListCallFeedbackParams[]];
|
|
7471
|
-
type ListCallFeedbackQueryResult = NonNullable<Awaited$
|
|
7626
|
+
type ListCallFeedbackQueryResult = NonNullable<Awaited$l<ReturnType<typeof listCallFeedback>>>;
|
|
7472
7627
|
/**
|
|
7473
7628
|
* @summary List feedback for a call
|
|
7474
7629
|
*/
|
|
7475
7630
|
declare const useListCallFeedback: <TError = ErrorType<ErrorResponse>>(id: string, params?: ListCallFeedbackParams, options?: {
|
|
7476
|
-
swr?: SWRConfiguration<Awaited$
|
|
7631
|
+
swr?: SWRConfiguration<Awaited$l<ReturnType<typeof listCallFeedback>>, TError> & {
|
|
7477
7632
|
swrKey?: Key;
|
|
7478
7633
|
enabled?: boolean;
|
|
7479
7634
|
};
|
|
7480
|
-
request?: SecondParameter$
|
|
7635
|
+
request?: SecondParameter$l<typeof customFetch>;
|
|
7481
7636
|
}) => {
|
|
7482
7637
|
data: Feedback[] | undefined;
|
|
7483
7638
|
error: TError | undefined;
|
|
@@ -7492,19 +7647,19 @@ declare const useListCallFeedback: <TError = ErrorType<ErrorResponse>>(id: strin
|
|
|
7492
7647
|
*/
|
|
7493
7648
|
declare const getDeleteCallFeedbackUrl: (id: string, feedbackId: string) => string;
|
|
7494
7649
|
declare const deleteCallFeedback: (id: string, feedbackId: string, options?: RequestInit) => Promise<null>;
|
|
7495
|
-
declare const getDeleteCallFeedbackMutationFetcher: (id: string, feedbackId: string, options?: SecondParameter$
|
|
7650
|
+
declare const getDeleteCallFeedbackMutationFetcher: (id: string, feedbackId: string, options?: SecondParameter$l<typeof customFetch>) => (_: Key, __: {
|
|
7496
7651
|
arg: Arguments;
|
|
7497
7652
|
}) => Promise<null>;
|
|
7498
7653
|
declare const getDeleteCallFeedbackMutationKey: (id: string, feedbackId: string) => readonly [`/v1/calls/${string}/feedback/${string}`];
|
|
7499
|
-
type DeleteCallFeedbackMutationResult = NonNullable<Awaited$
|
|
7654
|
+
type DeleteCallFeedbackMutationResult = NonNullable<Awaited$l<ReturnType<typeof deleteCallFeedback>>>;
|
|
7500
7655
|
/**
|
|
7501
7656
|
* @summary Delete feedback
|
|
7502
7657
|
*/
|
|
7503
7658
|
declare const useDeleteCallFeedback: <TError = ErrorType<ErrorResponse>>(id: string, feedbackId: string, options?: {
|
|
7504
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
7659
|
+
swr?: SWRMutationConfiguration<Awaited$l<ReturnType<typeof deleteCallFeedback>>, TError, Key, Arguments, Awaited$l<ReturnType<typeof deleteCallFeedback>>> & {
|
|
7505
7660
|
swrKey?: string;
|
|
7506
7661
|
};
|
|
7507
|
-
request?: SecondParameter$
|
|
7662
|
+
request?: SecondParameter$l<typeof customFetch>;
|
|
7508
7663
|
}) => {
|
|
7509
7664
|
isMutating: boolean;
|
|
7510
7665
|
trigger: swr_mutation.TriggerWithOptionsArgs<null, TError, string | readonly [`/v1/calls/${string}/feedback/${string}`], Arguments>;
|
|
@@ -7514,9 +7669,9 @@ declare const useDeleteCallFeedback: <TError = ErrorType<ErrorResponse>>(id: str
|
|
|
7514
7669
|
swrKey: string | readonly [`/v1/calls/${string}/feedback/${string}`];
|
|
7515
7670
|
};
|
|
7516
7671
|
|
|
7517
|
-
type AwaitedInput$
|
|
7518
|
-
type Awaited$
|
|
7519
|
-
type SecondParameter$
|
|
7672
|
+
type AwaitedInput$k<T> = PromiseLike<T> | T;
|
|
7673
|
+
type Awaited$k<O> = O extends AwaitedInput$k<infer T> ? T : never;
|
|
7674
|
+
type SecondParameter$k<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
7520
7675
|
/**
|
|
7521
7676
|
* List all calls, with pagination, filtering, and sorting.
|
|
7522
7677
|
|
|
@@ -7536,16 +7691,16 @@ Multiple metadata filters can be combined (AND logic).
|
|
|
7536
7691
|
declare const getListCallsUrl: (params?: ListCallsParams) => string;
|
|
7537
7692
|
declare const listCalls: (params?: ListCallsParams, options?: RequestInit) => Promise<CallList>;
|
|
7538
7693
|
declare const getListCallsKey: (params?: ListCallsParams) => readonly ["/v1/calls", ...ListCallsParams[]];
|
|
7539
|
-
type ListCallsQueryResult = NonNullable<Awaited$
|
|
7694
|
+
type ListCallsQueryResult = NonNullable<Awaited$k<ReturnType<typeof listCalls>>>;
|
|
7540
7695
|
/**
|
|
7541
7696
|
* @summary List calls
|
|
7542
7697
|
*/
|
|
7543
7698
|
declare const useListCalls: <TError = ErrorType<ErrorResponse>>(params?: ListCallsParams, options?: {
|
|
7544
|
-
swr?: SWRConfiguration<Awaited$
|
|
7699
|
+
swr?: SWRConfiguration<Awaited$k<ReturnType<typeof listCalls>>, TError> & {
|
|
7545
7700
|
swrKey?: Key;
|
|
7546
7701
|
enabled?: boolean;
|
|
7547
7702
|
};
|
|
7548
|
-
request?: SecondParameter$
|
|
7703
|
+
request?: SecondParameter$k<typeof customFetch>;
|
|
7549
7704
|
}) => {
|
|
7550
7705
|
data: CallList | undefined;
|
|
7551
7706
|
error: TError | undefined;
|
|
@@ -7563,16 +7718,16 @@ Set `include_messages=true` to include the full message transcript.
|
|
|
7563
7718
|
declare const getGetCallUrl: (id: string, params?: GetCallParams) => string;
|
|
7564
7719
|
declare const getCall: (id: string, params?: GetCallParams, options?: RequestInit) => Promise<CallDetail>;
|
|
7565
7720
|
declare const getGetCallKey: (id: string, params?: GetCallParams) => readonly [`/v1/calls/${string}`, ...GetCallParams[]];
|
|
7566
|
-
type GetCallQueryResult = NonNullable<Awaited$
|
|
7721
|
+
type GetCallQueryResult = NonNullable<Awaited$k<ReturnType<typeof getCall>>>;
|
|
7567
7722
|
/**
|
|
7568
7723
|
* @summary Get call
|
|
7569
7724
|
*/
|
|
7570
7725
|
declare const useGetCall: <TError = ErrorType<ErrorResponse>>(id: string, params?: GetCallParams, options?: {
|
|
7571
|
-
swr?: SWRConfiguration<Awaited$
|
|
7726
|
+
swr?: SWRConfiguration<Awaited$k<ReturnType<typeof getCall>>, TError> & {
|
|
7572
7727
|
swrKey?: Key;
|
|
7573
7728
|
enabled?: boolean;
|
|
7574
7729
|
};
|
|
7575
|
-
request?: SecondParameter$
|
|
7730
|
+
request?: SecondParameter$k<typeof customFetch>;
|
|
7576
7731
|
}) => {
|
|
7577
7732
|
data: CallDetail | undefined;
|
|
7578
7733
|
error: TError | undefined;
|
|
@@ -7588,16 +7743,16 @@ declare const useGetCall: <TError = ErrorType<ErrorResponse>>(id: string, params
|
|
|
7588
7743
|
declare const getGetCallEvaluationUrl: (id: string) => string;
|
|
7589
7744
|
declare const getCallEvaluation: (id: string, options?: RequestInit) => Promise<CallEvaluation>;
|
|
7590
7745
|
declare const getGetCallEvaluationKey: (id: string) => readonly [`/v1/calls/${string}/evaluation`];
|
|
7591
|
-
type GetCallEvaluationQueryResult = NonNullable<Awaited$
|
|
7746
|
+
type GetCallEvaluationQueryResult = NonNullable<Awaited$k<ReturnType<typeof getCallEvaluation>>>;
|
|
7592
7747
|
/**
|
|
7593
7748
|
* @summary Get call evaluation
|
|
7594
7749
|
*/
|
|
7595
7750
|
declare const useGetCallEvaluation: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
|
|
7596
|
-
swr?: SWRConfiguration<Awaited$
|
|
7751
|
+
swr?: SWRConfiguration<Awaited$k<ReturnType<typeof getCallEvaluation>>, TError> & {
|
|
7597
7752
|
swrKey?: Key;
|
|
7598
7753
|
enabled?: boolean;
|
|
7599
7754
|
};
|
|
7600
|
-
request?: SecondParameter$
|
|
7755
|
+
request?: SecondParameter$k<typeof customFetch>;
|
|
7601
7756
|
}) => {
|
|
7602
7757
|
data: CallEvaluation | undefined;
|
|
7603
7758
|
error: TError | undefined;
|
|
@@ -7615,16 +7770,16 @@ Includes summary statistics, call volume over time, evaluation scores, score and
|
|
|
7615
7770
|
declare const getGetCallAnalyticsUrl: (params: GetCallAnalyticsParams) => string;
|
|
7616
7771
|
declare const getCallAnalytics: (params: GetCallAnalyticsParams, options?: RequestInit) => Promise<CallAnalytics>;
|
|
7617
7772
|
declare const getGetCallAnalyticsKey: (params: GetCallAnalyticsParams) => readonly ["/v1/calls/analytics", ...GetCallAnalyticsParams[]];
|
|
7618
|
-
type GetCallAnalyticsQueryResult = NonNullable<Awaited$
|
|
7773
|
+
type GetCallAnalyticsQueryResult = NonNullable<Awaited$k<ReturnType<typeof getCallAnalytics>>>;
|
|
7619
7774
|
/**
|
|
7620
7775
|
* @summary Get call analytics
|
|
7621
7776
|
*/
|
|
7622
7777
|
declare const useGetCallAnalytics: <TError = ErrorType<ErrorResponse>>(params: GetCallAnalyticsParams, options?: {
|
|
7623
|
-
swr?: SWRConfiguration<Awaited$
|
|
7778
|
+
swr?: SWRConfiguration<Awaited$k<ReturnType<typeof getCallAnalytics>>, TError> & {
|
|
7624
7779
|
swrKey?: Key;
|
|
7625
7780
|
enabled?: boolean;
|
|
7626
7781
|
};
|
|
7627
|
-
request?: SecondParameter$
|
|
7782
|
+
request?: SecondParameter$k<typeof customFetch>;
|
|
7628
7783
|
}) => {
|
|
7629
7784
|
data: CallAnalytics | undefined;
|
|
7630
7785
|
error: TError | undefined;
|
|
@@ -7634,9 +7789,9 @@ declare const useGetCallAnalytics: <TError = ErrorType<ErrorResponse>>(params: G
|
|
|
7634
7789
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
7635
7790
|
};
|
|
7636
7791
|
|
|
7637
|
-
type AwaitedInput$
|
|
7638
|
-
type Awaited$
|
|
7639
|
-
type SecondParameter$
|
|
7792
|
+
type AwaitedInput$j<T> = PromiseLike<T> | T;
|
|
7793
|
+
type Awaited$j<O> = O extends AwaitedInput$j<infer T> ? T : never;
|
|
7794
|
+
type SecondParameter$j<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
7640
7795
|
/**
|
|
7641
7796
|
* List all cases for the current tenant, paginated, filterable, and sortable.
|
|
7642
7797
|
* @summary List cases
|
|
@@ -7644,16 +7799,16 @@ type SecondParameter$i<T extends (...args: never) => unknown> = Parameters<T>[1]
|
|
|
7644
7799
|
declare const getListCasesUrl: (params?: ListCasesParams) => string;
|
|
7645
7800
|
declare const listCases: (params?: ListCasesParams, options?: RequestInit) => Promise<CaseList>;
|
|
7646
7801
|
declare const getListCasesKey: (params?: ListCasesParams) => readonly ["/v1/cases", ...ListCasesParams[]];
|
|
7647
|
-
type ListCasesQueryResult = NonNullable<Awaited$
|
|
7802
|
+
type ListCasesQueryResult = NonNullable<Awaited$j<ReturnType<typeof listCases>>>;
|
|
7648
7803
|
/**
|
|
7649
7804
|
* @summary List cases
|
|
7650
7805
|
*/
|
|
7651
7806
|
declare const useListCases: <TError = ErrorType<ErrorResponse>>(params?: ListCasesParams, options?: {
|
|
7652
|
-
swr?: SWRConfiguration<Awaited$
|
|
7807
|
+
swr?: SWRConfiguration<Awaited$j<ReturnType<typeof listCases>>, TError> & {
|
|
7653
7808
|
swrKey?: Key;
|
|
7654
7809
|
enabled?: boolean;
|
|
7655
7810
|
};
|
|
7656
|
-
request?: SecondParameter$
|
|
7811
|
+
request?: SecondParameter$j<typeof customFetch>;
|
|
7657
7812
|
}) => {
|
|
7658
7813
|
data: CaseList | undefined;
|
|
7659
7814
|
error: TError | undefined;
|
|
@@ -7670,19 +7825,19 @@ Case ids are tenant-scoped opaque keys (e.g. "clm-1", "STD-001") and are normali
|
|
|
7670
7825
|
*/
|
|
7671
7826
|
declare const getCreateCaseUrl: () => string;
|
|
7672
7827
|
declare const createCase: (createCaseBody: CreateCaseBody, options?: RequestInit) => Promise<CreateCaseResponse>;
|
|
7673
|
-
declare const getCreateCaseMutationFetcher: (options?: SecondParameter$
|
|
7828
|
+
declare const getCreateCaseMutationFetcher: (options?: SecondParameter$j<typeof customFetch>) => (_: Key, { arg }: {
|
|
7674
7829
|
arg: CreateCaseBody;
|
|
7675
7830
|
}) => Promise<CreateCaseResponse>;
|
|
7676
7831
|
declare const getCreateCaseMutationKey: () => readonly ["/v1/cases"];
|
|
7677
|
-
type CreateCaseMutationResult = NonNullable<Awaited$
|
|
7832
|
+
type CreateCaseMutationResult = NonNullable<Awaited$j<ReturnType<typeof createCase>>>;
|
|
7678
7833
|
/**
|
|
7679
7834
|
* @summary Create case
|
|
7680
7835
|
*/
|
|
7681
7836
|
declare const useCreateCase: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
7682
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
7837
|
+
swr?: SWRMutationConfiguration<Awaited$j<ReturnType<typeof createCase>>, TError, Key, CreateCaseBody, Awaited$j<ReturnType<typeof createCase>>> & {
|
|
7683
7838
|
swrKey?: string;
|
|
7684
7839
|
};
|
|
7685
|
-
request?: SecondParameter$
|
|
7840
|
+
request?: SecondParameter$j<typeof customFetch>;
|
|
7686
7841
|
}) => {
|
|
7687
7842
|
isMutating: boolean;
|
|
7688
7843
|
trigger: swr_mutation.TriggerWithArgs<CreateCaseResponse, TError, string | readonly ["/v1/cases"], CreateCaseBody>;
|
|
@@ -7698,16 +7853,16 @@ declare const useCreateCase: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
7698
7853
|
declare const getSearchCasesUrl: (params: SearchCasesParams) => string;
|
|
7699
7854
|
declare const searchCases: (params: SearchCasesParams, options?: RequestInit) => Promise<CaseSearchResult>;
|
|
7700
7855
|
declare const getSearchCasesKey: (params: SearchCasesParams) => readonly ["/v1/cases/search", ...SearchCasesParams[]];
|
|
7701
|
-
type SearchCasesQueryResult = NonNullable<Awaited$
|
|
7856
|
+
type SearchCasesQueryResult = NonNullable<Awaited$j<ReturnType<typeof searchCases>>>;
|
|
7702
7857
|
/**
|
|
7703
7858
|
* @summary Search cases
|
|
7704
7859
|
*/
|
|
7705
7860
|
declare const useSearchCases: <TError = ErrorType<ErrorResponse>>(params: SearchCasesParams, options?: {
|
|
7706
|
-
swr?: SWRConfiguration<Awaited$
|
|
7861
|
+
swr?: SWRConfiguration<Awaited$j<ReturnType<typeof searchCases>>, TError> & {
|
|
7707
7862
|
swrKey?: Key;
|
|
7708
7863
|
enabled?: boolean;
|
|
7709
7864
|
};
|
|
7710
|
-
request?: SecondParameter$
|
|
7865
|
+
request?: SecondParameter$j<typeof customFetch>;
|
|
7711
7866
|
}) => {
|
|
7712
7867
|
data: CaseSearchResult | undefined;
|
|
7713
7868
|
error: TError | undefined;
|
|
@@ -7726,16 +7881,16 @@ e.g. `GET /v1/worker-runs?case_id=…` and `GET /v1/artifacts?metadata[case_id]=
|
|
|
7726
7881
|
declare const getGetCaseUrl: (id: string) => string;
|
|
7727
7882
|
declare const getCase: (id: string, options?: RequestInit) => Promise<CaseDetail>;
|
|
7728
7883
|
declare const getGetCaseKey: (id: string) => readonly [`/v1/cases/${string}`];
|
|
7729
|
-
type GetCaseQueryResult = NonNullable<Awaited$
|
|
7884
|
+
type GetCaseQueryResult = NonNullable<Awaited$j<ReturnType<typeof getCase>>>;
|
|
7730
7885
|
/**
|
|
7731
7886
|
* @summary Get case
|
|
7732
7887
|
*/
|
|
7733
7888
|
declare const useGetCase: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
|
|
7734
|
-
swr?: SWRConfiguration<Awaited$
|
|
7889
|
+
swr?: SWRConfiguration<Awaited$j<ReturnType<typeof getCase>>, TError> & {
|
|
7735
7890
|
swrKey?: Key;
|
|
7736
7891
|
enabled?: boolean;
|
|
7737
7892
|
};
|
|
7738
|
-
request?: SecondParameter$
|
|
7893
|
+
request?: SecondParameter$j<typeof customFetch>;
|
|
7739
7894
|
}) => {
|
|
7740
7895
|
data: CaseDetail | undefined;
|
|
7741
7896
|
error: TError | undefined;
|
|
@@ -7745,26 +7900,26 @@ declare const useGetCase: <TError = ErrorType<ErrorResponse>>(id: string, option
|
|
|
7745
7900
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => Arguments);
|
|
7746
7901
|
};
|
|
7747
7902
|
/**
|
|
7748
|
-
* Link one or more entities (artifacts, calls, chats, emails, extracts, worker runs) to a case.
|
|
7903
|
+
* Link one or more entities (artifacts, calls, chats, emails, extracts, schedules, worker runs) to a case.
|
|
7749
7904
|
|
|
7750
7905
|
The case and every entity must already exist in the tenant — unknown ids return 404 and nothing is created. Adding is idempotent: re-linking an already linked entity returns the existing link with its original `created_at`.
|
|
7751
7906
|
* @summary Add case links
|
|
7752
7907
|
*/
|
|
7753
7908
|
declare const getAddCaseLinksUrl: (id: string) => string;
|
|
7754
7909
|
declare const addCaseLinks: (id: string, addCaseLinksBody: AddCaseLinksBody, options?: RequestInit) => Promise<AddCaseLinksResponse>;
|
|
7755
|
-
declare const getAddCaseLinksMutationFetcher: (id: string, options?: SecondParameter$
|
|
7910
|
+
declare const getAddCaseLinksMutationFetcher: (id: string, options?: SecondParameter$j<typeof customFetch>) => (_: Key, { arg }: {
|
|
7756
7911
|
arg: AddCaseLinksBody;
|
|
7757
7912
|
}) => Promise<AddCaseLinksResponse>;
|
|
7758
7913
|
declare const getAddCaseLinksMutationKey: (id: string) => readonly [`/v1/cases/${string}/links`];
|
|
7759
|
-
type AddCaseLinksMutationResult = NonNullable<Awaited$
|
|
7914
|
+
type AddCaseLinksMutationResult = NonNullable<Awaited$j<ReturnType<typeof addCaseLinks>>>;
|
|
7760
7915
|
/**
|
|
7761
7916
|
* @summary Add case links
|
|
7762
7917
|
*/
|
|
7763
7918
|
declare const useAddCaseLinks: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
|
|
7764
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
7919
|
+
swr?: SWRMutationConfiguration<Awaited$j<ReturnType<typeof addCaseLinks>>, TError, Key, AddCaseLinksBody, Awaited$j<ReturnType<typeof addCaseLinks>>> & {
|
|
7765
7920
|
swrKey?: string;
|
|
7766
7921
|
};
|
|
7767
|
-
request?: SecondParameter$
|
|
7922
|
+
request?: SecondParameter$j<typeof customFetch>;
|
|
7768
7923
|
}) => {
|
|
7769
7924
|
isMutating: boolean;
|
|
7770
7925
|
trigger: swr_mutation.TriggerWithArgs<AddCaseLinksResponse, TError, string | readonly [`/v1/cases/${string}/links`], AddCaseLinksBody>;
|
|
@@ -7780,16 +7935,16 @@ declare const useAddCaseLinks: <TError = ErrorType<ErrorResponse>>(id: string, o
|
|
|
7780
7935
|
declare const getListCaseLinksUrl: (id: string, params?: ListCaseLinksParams) => string;
|
|
7781
7936
|
declare const listCaseLinks: (id: string, params?: ListCaseLinksParams, options?: RequestInit) => Promise<CaseLinkList>;
|
|
7782
7937
|
declare const getListCaseLinksKey: (id: string, params?: ListCaseLinksParams) => readonly [`/v1/cases/${string}/links`, ...ListCaseLinksParams[]];
|
|
7783
|
-
type ListCaseLinksQueryResult = NonNullable<Awaited$
|
|
7938
|
+
type ListCaseLinksQueryResult = NonNullable<Awaited$j<ReturnType<typeof listCaseLinks>>>;
|
|
7784
7939
|
/**
|
|
7785
7940
|
* @summary List case links
|
|
7786
7941
|
*/
|
|
7787
7942
|
declare const useListCaseLinks: <TError = ErrorType<ErrorResponse>>(id: string, params?: ListCaseLinksParams, options?: {
|
|
7788
|
-
swr?: SWRConfiguration<Awaited$
|
|
7943
|
+
swr?: SWRConfiguration<Awaited$j<ReturnType<typeof listCaseLinks>>, TError> & {
|
|
7789
7944
|
swrKey?: Key;
|
|
7790
7945
|
enabled?: boolean;
|
|
7791
7946
|
};
|
|
7792
|
-
request?: SecondParameter$
|
|
7947
|
+
request?: SecondParameter$j<typeof customFetch>;
|
|
7793
7948
|
}) => {
|
|
7794
7949
|
data: CaseLinkList | undefined;
|
|
7795
7950
|
error: TError | undefined;
|
|
@@ -7802,52 +7957,52 @@ declare const useListCaseLinks: <TError = ErrorType<ErrorResponse>>(id: string,
|
|
|
7802
7957
|
* Remove the link between a case and an entity. Removal is idempotent: removing a link that does not exist succeeds without effect.
|
|
7803
7958
|
* @summary Remove case link
|
|
7804
7959
|
*/
|
|
7805
|
-
declare const getRemoveCaseLinkUrl: (id: string, entityType: "artifact" | "call" | "chat" | "email" | "extract" | "worker_run", entityId: string) => string;
|
|
7806
|
-
declare const removeCaseLink: (id: string, entityType: "artifact" | "call" | "chat" | "email" | "extract" | "worker_run", entityId: string, options?: RequestInit) => Promise<RemoveCaseLinkResponse>;
|
|
7807
|
-
declare const getRemoveCaseLinkMutationFetcher: (id: string, entityType: "artifact" | "call" | "chat" | "email" | "extract" | "worker_run", entityId: string, options?: SecondParameter$
|
|
7960
|
+
declare const getRemoveCaseLinkUrl: (id: string, entityType: "artifact" | "call" | "chat" | "email" | "extract" | "schedule" | "worker_run", entityId: string) => string;
|
|
7961
|
+
declare const removeCaseLink: (id: string, entityType: "artifact" | "call" | "chat" | "email" | "extract" | "schedule" | "worker_run", entityId: string, options?: RequestInit) => Promise<RemoveCaseLinkResponse>;
|
|
7962
|
+
declare const getRemoveCaseLinkMutationFetcher: (id: string, entityType: "artifact" | "call" | "chat" | "email" | "extract" | "schedule" | "worker_run", entityId: string, options?: SecondParameter$j<typeof customFetch>) => (_: Key, __: {
|
|
7808
7963
|
arg: Arguments;
|
|
7809
7964
|
}) => Promise<RemoveCaseLinkResponse>;
|
|
7810
|
-
declare const getRemoveCaseLinkMutationKey: (id: string, entityType: "artifact" | "call" | "chat" | "email" | "extract" | "worker_run", entityId: string) => readonly [`/v1/cases/${string}/links/artifact/${string}` | `/v1/cases/${string}/links/call/${string}` | `/v1/cases/${string}/links/chat/${string}` | `/v1/cases/${string}/links/email/${string}` | `/v1/cases/${string}/links/extract/${string}` | `/v1/cases/${string}/links/worker_run/${string}`];
|
|
7811
|
-
type RemoveCaseLinkMutationResult = NonNullable<Awaited$
|
|
7965
|
+
declare const getRemoveCaseLinkMutationKey: (id: string, entityType: "artifact" | "call" | "chat" | "email" | "extract" | "schedule" | "worker_run", entityId: string) => readonly [`/v1/cases/${string}/links/artifact/${string}` | `/v1/cases/${string}/links/call/${string}` | `/v1/cases/${string}/links/chat/${string}` | `/v1/cases/${string}/links/email/${string}` | `/v1/cases/${string}/links/extract/${string}` | `/v1/cases/${string}/links/schedule/${string}` | `/v1/cases/${string}/links/worker_run/${string}`];
|
|
7966
|
+
type RemoveCaseLinkMutationResult = NonNullable<Awaited$j<ReturnType<typeof removeCaseLink>>>;
|
|
7812
7967
|
/**
|
|
7813
7968
|
* @summary Remove case link
|
|
7814
7969
|
*/
|
|
7815
|
-
declare const useRemoveCaseLink: <TError = ErrorType<ErrorResponse>>(id: string, entityType: "artifact" | "call" | "chat" | "email" | "extract" | "worker_run", entityId: string, options?: {
|
|
7816
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
7970
|
+
declare const useRemoveCaseLink: <TError = ErrorType<ErrorResponse>>(id: string, entityType: "artifact" | "call" | "chat" | "email" | "extract" | "schedule" | "worker_run", entityId: string, options?: {
|
|
7971
|
+
swr?: SWRMutationConfiguration<Awaited$j<ReturnType<typeof removeCaseLink>>, TError, Key, Arguments, Awaited$j<ReturnType<typeof removeCaseLink>>> & {
|
|
7817
7972
|
swrKey?: string;
|
|
7818
7973
|
};
|
|
7819
|
-
request?: SecondParameter$
|
|
7974
|
+
request?: SecondParameter$j<typeof customFetch>;
|
|
7820
7975
|
}) => {
|
|
7821
7976
|
isMutating: boolean;
|
|
7822
|
-
trigger: swr_mutation.TriggerWithOptionsArgs<RemoveCaseLinkResponse, TError, string | readonly [`/v1/cases/${string}/links/artifact/${string}` | `/v1/cases/${string}/links/call/${string}` | `/v1/cases/${string}/links/chat/${string}` | `/v1/cases/${string}/links/email/${string}` | `/v1/cases/${string}/links/extract/${string}` | `/v1/cases/${string}/links/worker_run/${string}`], Arguments>;
|
|
7977
|
+
trigger: swr_mutation.TriggerWithOptionsArgs<RemoveCaseLinkResponse, TError, string | readonly [`/v1/cases/${string}/links/artifact/${string}` | `/v1/cases/${string}/links/call/${string}` | `/v1/cases/${string}/links/chat/${string}` | `/v1/cases/${string}/links/email/${string}` | `/v1/cases/${string}/links/extract/${string}` | `/v1/cases/${string}/links/schedule/${string}` | `/v1/cases/${string}/links/worker_run/${string}`], Arguments>;
|
|
7823
7978
|
reset: () => void;
|
|
7824
7979
|
data: RemoveCaseLinkResponse | undefined;
|
|
7825
7980
|
error: TError | undefined;
|
|
7826
|
-
swrKey: string | readonly [`/v1/cases/${string}/links/artifact/${string}` | `/v1/cases/${string}/links/call/${string}` | `/v1/cases/${string}/links/chat/${string}` | `/v1/cases/${string}/links/email/${string}` | `/v1/cases/${string}/links/extract/${string}` | `/v1/cases/${string}/links/worker_run/${string}`];
|
|
7981
|
+
swrKey: string | readonly [`/v1/cases/${string}/links/artifact/${string}` | `/v1/cases/${string}/links/call/${string}` | `/v1/cases/${string}/links/chat/${string}` | `/v1/cases/${string}/links/email/${string}` | `/v1/cases/${string}/links/extract/${string}` | `/v1/cases/${string}/links/schedule/${string}` | `/v1/cases/${string}/links/worker_run/${string}`];
|
|
7827
7982
|
};
|
|
7828
7983
|
|
|
7829
|
-
type AwaitedInput$
|
|
7830
|
-
type Awaited$
|
|
7831
|
-
type SecondParameter$
|
|
7984
|
+
type AwaitedInput$i<T> = PromiseLike<T> | T;
|
|
7985
|
+
type Awaited$i<O> = O extends AwaitedInput$i<infer T> ? T : never;
|
|
7986
|
+
type SecondParameter$i<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
7832
7987
|
/**
|
|
7833
7988
|
* Create a new chat agent with a name and prompt.
|
|
7834
7989
|
* @summary Create chat agent
|
|
7835
7990
|
*/
|
|
7836
7991
|
declare const getCreateChatAgentUrl: () => string;
|
|
7837
7992
|
declare const createChatAgent: (createChatAgentBody: CreateChatAgentBody, options?: RequestInit) => Promise<ChatAgentCreated>;
|
|
7838
|
-
declare const getCreateChatAgentMutationFetcher: (options?: SecondParameter$
|
|
7993
|
+
declare const getCreateChatAgentMutationFetcher: (options?: SecondParameter$i<typeof customFetch>) => (_: Key, { arg }: {
|
|
7839
7994
|
arg: CreateChatAgentBody;
|
|
7840
7995
|
}) => Promise<ChatAgentCreated>;
|
|
7841
7996
|
declare const getCreateChatAgentMutationKey: () => readonly ["/v1/chat-agents"];
|
|
7842
|
-
type CreateChatAgentMutationResult = NonNullable<Awaited$
|
|
7997
|
+
type CreateChatAgentMutationResult = NonNullable<Awaited$i<ReturnType<typeof createChatAgent>>>;
|
|
7843
7998
|
/**
|
|
7844
7999
|
* @summary Create chat agent
|
|
7845
8000
|
*/
|
|
7846
8001
|
declare const useCreateChatAgent: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
7847
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
8002
|
+
swr?: SWRMutationConfiguration<Awaited$i<ReturnType<typeof createChatAgent>>, TError, Key, CreateChatAgentBody, Awaited$i<ReturnType<typeof createChatAgent>>> & {
|
|
7848
8003
|
swrKey?: string;
|
|
7849
8004
|
};
|
|
7850
|
-
request?: SecondParameter$
|
|
8005
|
+
request?: SecondParameter$i<typeof customFetch>;
|
|
7851
8006
|
}) => {
|
|
7852
8007
|
isMutating: boolean;
|
|
7853
8008
|
trigger: swr_mutation.TriggerWithArgs<ChatAgentCreated, TError, string | readonly ["/v1/chat-agents"], CreateChatAgentBody>;
|
|
@@ -7863,16 +8018,16 @@ declare const useCreateChatAgent: <TError = ErrorType<ErrorResponse>>(options?:
|
|
|
7863
8018
|
declare const getListChatAgentsUrl: (params?: ListChatAgentsParams) => string;
|
|
7864
8019
|
declare const listChatAgents: (params?: ListChatAgentsParams, options?: RequestInit) => Promise<ChatAgentList>;
|
|
7865
8020
|
declare const getListChatAgentsKey: (params?: ListChatAgentsParams) => readonly ["/v1/chat-agents", ...ListChatAgentsParams[]];
|
|
7866
|
-
type ListChatAgentsQueryResult = NonNullable<Awaited$
|
|
8021
|
+
type ListChatAgentsQueryResult = NonNullable<Awaited$i<ReturnType<typeof listChatAgents>>>;
|
|
7867
8022
|
/**
|
|
7868
8023
|
* @summary List chat agents
|
|
7869
8024
|
*/
|
|
7870
8025
|
declare const useListChatAgents: <TError = ErrorType<ErrorResponse>>(params?: ListChatAgentsParams, options?: {
|
|
7871
|
-
swr?: SWRConfiguration<Awaited$
|
|
8026
|
+
swr?: SWRConfiguration<Awaited$i<ReturnType<typeof listChatAgents>>, TError> & {
|
|
7872
8027
|
swrKey?: Key;
|
|
7873
8028
|
enabled?: boolean;
|
|
7874
8029
|
};
|
|
7875
|
-
request?: SecondParameter$
|
|
8030
|
+
request?: SecondParameter$i<typeof customFetch>;
|
|
7876
8031
|
}) => {
|
|
7877
8032
|
data: ChatAgentList | undefined;
|
|
7878
8033
|
error: TError | undefined;
|
|
@@ -7888,16 +8043,16 @@ declare const useListChatAgents: <TError = ErrorType<ErrorResponse>>(params?: Li
|
|
|
7888
8043
|
declare const getGetChatAgentUrl: (chatAgentId: string) => string;
|
|
7889
8044
|
declare const getChatAgent: (chatAgentId: string, options?: RequestInit) => Promise<ChatAgentDetail>;
|
|
7890
8045
|
declare const getGetChatAgentKey: (chatAgentId: string) => readonly [`/v1/chat-agents/${string}`];
|
|
7891
|
-
type GetChatAgentQueryResult = NonNullable<Awaited$
|
|
8046
|
+
type GetChatAgentQueryResult = NonNullable<Awaited$i<ReturnType<typeof getChatAgent>>>;
|
|
7892
8047
|
/**
|
|
7893
8048
|
* @summary Get chat agent
|
|
7894
8049
|
*/
|
|
7895
8050
|
declare const useGetChatAgent: <TError = ErrorType<ErrorResponse>>(chatAgentId: string, options?: {
|
|
7896
|
-
swr?: SWRConfiguration<Awaited$
|
|
8051
|
+
swr?: SWRConfiguration<Awaited$i<ReturnType<typeof getChatAgent>>, TError> & {
|
|
7897
8052
|
swrKey?: Key;
|
|
7898
8053
|
enabled?: boolean;
|
|
7899
8054
|
};
|
|
7900
|
-
request?: SecondParameter$
|
|
8055
|
+
request?: SecondParameter$i<typeof customFetch>;
|
|
7901
8056
|
}) => {
|
|
7902
8057
|
data: ChatAgentDetail | undefined;
|
|
7903
8058
|
error: TError | undefined;
|
|
@@ -7912,19 +8067,19 @@ declare const useGetChatAgent: <TError = ErrorType<ErrorResponse>>(chatAgentId:
|
|
|
7912
8067
|
*/
|
|
7913
8068
|
declare const getUpdateChatAgentUrl: (chatAgentId: string) => string;
|
|
7914
8069
|
declare const updateChatAgent: (chatAgentId: string, updateChatAgentRequest: UpdateChatAgentRequest, options?: RequestInit) => Promise<ChatAgent>;
|
|
7915
|
-
declare const getUpdateChatAgentMutationFetcher: (chatAgentId: string, options?: SecondParameter$
|
|
8070
|
+
declare const getUpdateChatAgentMutationFetcher: (chatAgentId: string, options?: SecondParameter$i<typeof customFetch>) => (_: Key, { arg }: {
|
|
7916
8071
|
arg: UpdateChatAgentRequest;
|
|
7917
8072
|
}) => Promise<ChatAgent>;
|
|
7918
8073
|
declare const getUpdateChatAgentMutationKey: (chatAgentId: string) => readonly [`/v1/chat-agents/${string}`];
|
|
7919
|
-
type UpdateChatAgentMutationResult = NonNullable<Awaited$
|
|
8074
|
+
type UpdateChatAgentMutationResult = NonNullable<Awaited$i<ReturnType<typeof updateChatAgent>>>;
|
|
7920
8075
|
/**
|
|
7921
8076
|
* @summary Update chat agent
|
|
7922
8077
|
*/
|
|
7923
8078
|
declare const useUpdateChatAgent: <TError = ErrorType<ErrorResponse>>(chatAgentId: string, options?: {
|
|
7924
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
8079
|
+
swr?: SWRMutationConfiguration<Awaited$i<ReturnType<typeof updateChatAgent>>, TError, Key, UpdateChatAgentRequest, Awaited$i<ReturnType<typeof updateChatAgent>>> & {
|
|
7925
8080
|
swrKey?: string;
|
|
7926
8081
|
};
|
|
7927
|
-
request?: SecondParameter$
|
|
8082
|
+
request?: SecondParameter$i<typeof customFetch>;
|
|
7928
8083
|
}) => {
|
|
7929
8084
|
isMutating: boolean;
|
|
7930
8085
|
trigger: swr_mutation.TriggerWithArgs<ChatAgent, TError, string | readonly [`/v1/chat-agents/${string}`], UpdateChatAgentRequest>;
|
|
@@ -7939,19 +8094,19 @@ declare const useUpdateChatAgent: <TError = ErrorType<ErrorResponse>>(chatAgentI
|
|
|
7939
8094
|
*/
|
|
7940
8095
|
declare const getDeleteChatAgentUrl: (chatAgentId: string) => string;
|
|
7941
8096
|
declare const deleteChatAgent: (chatAgentId: string, options?: RequestInit) => Promise<DeleteChatAgentResponse>;
|
|
7942
|
-
declare const getDeleteChatAgentMutationFetcher: (chatAgentId: string, options?: SecondParameter$
|
|
8097
|
+
declare const getDeleteChatAgentMutationFetcher: (chatAgentId: string, options?: SecondParameter$i<typeof customFetch>) => (_: Key, __: {
|
|
7943
8098
|
arg: Arguments;
|
|
7944
8099
|
}) => Promise<DeleteChatAgentResponse>;
|
|
7945
8100
|
declare const getDeleteChatAgentMutationKey: (chatAgentId: string) => readonly [`/v1/chat-agents/${string}`];
|
|
7946
|
-
type DeleteChatAgentMutationResult = NonNullable<Awaited$
|
|
8101
|
+
type DeleteChatAgentMutationResult = NonNullable<Awaited$i<ReturnType<typeof deleteChatAgent>>>;
|
|
7947
8102
|
/**
|
|
7948
8103
|
* @summary Delete chat agent
|
|
7949
8104
|
*/
|
|
7950
8105
|
declare const useDeleteChatAgent: <TError = ErrorType<ErrorResponse>>(chatAgentId: string, options?: {
|
|
7951
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
8106
|
+
swr?: SWRMutationConfiguration<Awaited$i<ReturnType<typeof deleteChatAgent>>, TError, Key, Arguments, Awaited$i<ReturnType<typeof deleteChatAgent>>> & {
|
|
7952
8107
|
swrKey?: string;
|
|
7953
8108
|
};
|
|
7954
|
-
request?: SecondParameter$
|
|
8109
|
+
request?: SecondParameter$i<typeof customFetch>;
|
|
7955
8110
|
}) => {
|
|
7956
8111
|
isMutating: boolean;
|
|
7957
8112
|
trigger: swr_mutation.TriggerWithOptionsArgs<DeleteChatAgentResponse, TError, string | readonly [`/v1/chat-agents/${string}`], Arguments>;
|
|
@@ -7967,16 +8122,16 @@ declare const useDeleteChatAgent: <TError = ErrorType<ErrorResponse>>(chatAgentI
|
|
|
7967
8122
|
declare const getGetChatAgentPromptUrl: (chatAgentId: string) => string;
|
|
7968
8123
|
declare const getChatAgentPrompt: (chatAgentId: string, options?: RequestInit) => Promise<ChatAgentPrompt>;
|
|
7969
8124
|
declare const getGetChatAgentPromptKey: (chatAgentId: string) => readonly [`/v1/chat-agents/${string}/prompt`];
|
|
7970
|
-
type GetChatAgentPromptQueryResult = NonNullable<Awaited$
|
|
8125
|
+
type GetChatAgentPromptQueryResult = NonNullable<Awaited$i<ReturnType<typeof getChatAgentPrompt>>>;
|
|
7971
8126
|
/**
|
|
7972
8127
|
* @summary Get chat agent prompt
|
|
7973
8128
|
*/
|
|
7974
8129
|
declare const useGetChatAgentPrompt: <TError = ErrorType<ErrorResponse>>(chatAgentId: string, options?: {
|
|
7975
|
-
swr?: SWRConfiguration<Awaited$
|
|
8130
|
+
swr?: SWRConfiguration<Awaited$i<ReturnType<typeof getChatAgentPrompt>>, TError> & {
|
|
7976
8131
|
swrKey?: Key;
|
|
7977
8132
|
enabled?: boolean;
|
|
7978
8133
|
};
|
|
7979
|
-
request?: SecondParameter$
|
|
8134
|
+
request?: SecondParameter$i<typeof customFetch>;
|
|
7980
8135
|
}) => {
|
|
7981
8136
|
data: ChatAgentPrompt | undefined;
|
|
7982
8137
|
error: TError | undefined;
|
|
@@ -7991,19 +8146,19 @@ declare const useGetChatAgentPrompt: <TError = ErrorType<ErrorResponse>>(chatAge
|
|
|
7991
8146
|
*/
|
|
7992
8147
|
declare const getUpdateChatAgentPromptUrl: (chatAgentId: string) => string;
|
|
7993
8148
|
declare const updateChatAgentPrompt: (chatAgentId: string, updateChatAgentPromptBody: UpdateChatAgentPromptBody, options?: RequestInit) => Promise<ChatAgentPromptUpdated>;
|
|
7994
|
-
declare const getUpdateChatAgentPromptMutationFetcher: (chatAgentId: string, options?: SecondParameter$
|
|
8149
|
+
declare const getUpdateChatAgentPromptMutationFetcher: (chatAgentId: string, options?: SecondParameter$i<typeof customFetch>) => (_: Key, { arg }: {
|
|
7995
8150
|
arg: UpdateChatAgentPromptBody;
|
|
7996
8151
|
}) => Promise<ChatAgentPromptUpdated>;
|
|
7997
8152
|
declare const getUpdateChatAgentPromptMutationKey: (chatAgentId: string) => readonly [`/v1/chat-agents/${string}/prompt`];
|
|
7998
|
-
type UpdateChatAgentPromptMutationResult = NonNullable<Awaited$
|
|
8153
|
+
type UpdateChatAgentPromptMutationResult = NonNullable<Awaited$i<ReturnType<typeof updateChatAgentPrompt>>>;
|
|
7999
8154
|
/**
|
|
8000
8155
|
* @summary Update chat agent prompt
|
|
8001
8156
|
*/
|
|
8002
8157
|
declare const useUpdateChatAgentPrompt: <TError = ErrorType<ErrorResponse>>(chatAgentId: string, options?: {
|
|
8003
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
8158
|
+
swr?: SWRMutationConfiguration<Awaited$i<ReturnType<typeof updateChatAgentPrompt>>, TError, Key, UpdateChatAgentPromptBody, Awaited$i<ReturnType<typeof updateChatAgentPrompt>>> & {
|
|
8004
8159
|
swrKey?: string;
|
|
8005
8160
|
};
|
|
8006
|
-
request?: SecondParameter$
|
|
8161
|
+
request?: SecondParameter$i<typeof customFetch>;
|
|
8007
8162
|
}) => {
|
|
8008
8163
|
isMutating: boolean;
|
|
8009
8164
|
trigger: swr_mutation.TriggerWithArgs<ChatAgentPromptUpdated, TError, string | readonly [`/v1/chat-agents/${string}/prompt`], UpdateChatAgentPromptBody>;
|
|
@@ -8013,28 +8168,28 @@ declare const useUpdateChatAgentPrompt: <TError = ErrorType<ErrorResponse>>(chat
|
|
|
8013
8168
|
swrKey: string | readonly [`/v1/chat-agents/${string}/prompt`];
|
|
8014
8169
|
};
|
|
8015
8170
|
|
|
8016
|
-
type AwaitedInput$
|
|
8017
|
-
type Awaited$
|
|
8018
|
-
type SecondParameter$
|
|
8171
|
+
type AwaitedInput$h<T> = PromiseLike<T> | T;
|
|
8172
|
+
type Awaited$h<O> = O extends AwaitedInput$h<infer T> ? T : never;
|
|
8173
|
+
type SecondParameter$h<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
8019
8174
|
/**
|
|
8020
8175
|
* Create a new chat against an existing chat agent. The chat agent's tenant becomes the owner of the chat.
|
|
8021
8176
|
* @summary Create a chat
|
|
8022
8177
|
*/
|
|
8023
8178
|
declare const getCreateChatUrl: () => string;
|
|
8024
8179
|
declare const createChat: (createChatBody: CreateChatBody, options?: RequestInit) => Promise<ChatCreated>;
|
|
8025
|
-
declare const getCreateChatMutationFetcher: (options?: SecondParameter$
|
|
8180
|
+
declare const getCreateChatMutationFetcher: (options?: SecondParameter$h<typeof customFetch>) => (_: Key, { arg }: {
|
|
8026
8181
|
arg: CreateChatBody;
|
|
8027
8182
|
}) => Promise<ChatCreated>;
|
|
8028
8183
|
declare const getCreateChatMutationKey: () => readonly ["/public/v1/chats"];
|
|
8029
|
-
type CreateChatMutationResult = NonNullable<Awaited$
|
|
8184
|
+
type CreateChatMutationResult = NonNullable<Awaited$h<ReturnType<typeof createChat>>>;
|
|
8030
8185
|
/**
|
|
8031
8186
|
* @summary Create a chat
|
|
8032
8187
|
*/
|
|
8033
8188
|
declare const useCreateChat: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
8034
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
8189
|
+
swr?: SWRMutationConfiguration<Awaited$h<ReturnType<typeof createChat>>, TError, Key, CreateChatBody, Awaited$h<ReturnType<typeof createChat>>> & {
|
|
8035
8190
|
swrKey?: string;
|
|
8036
8191
|
};
|
|
8037
|
-
request?: SecondParameter$
|
|
8192
|
+
request?: SecondParameter$h<typeof customFetch>;
|
|
8038
8193
|
}) => {
|
|
8039
8194
|
isMutating: boolean;
|
|
8040
8195
|
trigger: swr_mutation.TriggerWithArgs<ChatCreated, TError, string | readonly ["/public/v1/chats"], CreateChatBody>;
|
|
@@ -8053,16 +8208,16 @@ For compatibility this endpoint is also available using the following (deprecate
|
|
|
8053
8208
|
declare const getGetChatUrl: (chatId: string) => string;
|
|
8054
8209
|
declare const getChat: (chatId: string, options?: RequestInit) => Promise<ChatHistory>;
|
|
8055
8210
|
declare const getGetChatKey: (chatId: string) => readonly [`/public/v1/chats/${string}`];
|
|
8056
|
-
type GetChatQueryResult = NonNullable<Awaited$
|
|
8211
|
+
type GetChatQueryResult = NonNullable<Awaited$h<ReturnType<typeof getChat>>>;
|
|
8057
8212
|
/**
|
|
8058
8213
|
* @summary Get a chat
|
|
8059
8214
|
*/
|
|
8060
8215
|
declare const useGetChat: <TError = ErrorType<ErrorResponse>>(chatId: string, options?: {
|
|
8061
|
-
swr?: SWRConfiguration<Awaited$
|
|
8216
|
+
swr?: SWRConfiguration<Awaited$h<ReturnType<typeof getChat>>, TError> & {
|
|
8062
8217
|
swrKey?: Key;
|
|
8063
8218
|
enabled?: boolean;
|
|
8064
8219
|
};
|
|
8065
|
-
request?: SecondParameter$
|
|
8220
|
+
request?: SecondParameter$h<typeof customFetch>;
|
|
8066
8221
|
}) => {
|
|
8067
8222
|
data: ChatHistory | undefined;
|
|
8068
8223
|
error: TError | undefined;
|
|
@@ -8078,16 +8233,16 @@ declare const useGetChat: <TError = ErrorType<ErrorResponse>>(chatId: string, op
|
|
|
8078
8233
|
declare const getGetPublicChatAgentUrl: (chatAgentId: string) => string;
|
|
8079
8234
|
declare const getPublicChatAgent: (chatAgentId: string, options?: RequestInit) => Promise<PublicChatAgent>;
|
|
8080
8235
|
declare const getGetPublicChatAgentKey: (chatAgentId: string) => readonly [`/public/v1/chat-agents/${string}`];
|
|
8081
|
-
type GetPublicChatAgentQueryResult = NonNullable<Awaited$
|
|
8236
|
+
type GetPublicChatAgentQueryResult = NonNullable<Awaited$h<ReturnType<typeof getPublicChatAgent>>>;
|
|
8082
8237
|
/**
|
|
8083
8238
|
* @summary Get a chat agent (public)
|
|
8084
8239
|
*/
|
|
8085
8240
|
declare const useGetPublicChatAgent: <TError = ErrorType<ErrorResponse>>(chatAgentId: string, options?: {
|
|
8086
|
-
swr?: SWRConfiguration<Awaited$
|
|
8241
|
+
swr?: SWRConfiguration<Awaited$h<ReturnType<typeof getPublicChatAgent>>, TError> & {
|
|
8087
8242
|
swrKey?: Key;
|
|
8088
8243
|
enabled?: boolean;
|
|
8089
8244
|
};
|
|
8090
|
-
request?: SecondParameter$
|
|
8245
|
+
request?: SecondParameter$h<typeof customFetch>;
|
|
8091
8246
|
}) => {
|
|
8092
8247
|
data: PublicChatAgent | undefined;
|
|
8093
8248
|
error: TError | undefined;
|
|
@@ -8105,19 +8260,19 @@ For compatibility this endpoint is also available using the following (deprecate
|
|
|
8105
8260
|
*/
|
|
8106
8261
|
declare const getPostChatMessageUrl: (chatId: string) => string;
|
|
8107
8262
|
declare const postChatMessage: (chatId: string, postChatMessageBody: PostChatMessageBody, options?: RequestInit) => Promise<ChatMessageCreated>;
|
|
8108
|
-
declare const getPostChatMessageMutationFetcher: (chatId: string, options?: SecondParameter$
|
|
8263
|
+
declare const getPostChatMessageMutationFetcher: (chatId: string, options?: SecondParameter$h<typeof customFetch>) => (_: Key, { arg }: {
|
|
8109
8264
|
arg: PostChatMessageBody;
|
|
8110
8265
|
}) => Promise<ChatMessageCreated>;
|
|
8111
8266
|
declare const getPostChatMessageMutationKey: (chatId: string) => readonly [`/public/v1/chats/${string}/messages`];
|
|
8112
|
-
type PostChatMessageMutationResult = NonNullable<Awaited$
|
|
8267
|
+
type PostChatMessageMutationResult = NonNullable<Awaited$h<ReturnType<typeof postChatMessage>>>;
|
|
8113
8268
|
/**
|
|
8114
8269
|
* @summary Post a message to a chat
|
|
8115
8270
|
*/
|
|
8116
8271
|
declare const usePostChatMessage: <TError = ErrorType<ErrorResponse>>(chatId: string, options?: {
|
|
8117
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
8272
|
+
swr?: SWRMutationConfiguration<Awaited$h<ReturnType<typeof postChatMessage>>, TError, Key, PostChatMessageBody, Awaited$h<ReturnType<typeof postChatMessage>>> & {
|
|
8118
8273
|
swrKey?: string;
|
|
8119
8274
|
};
|
|
8120
|
-
request?: SecondParameter$
|
|
8275
|
+
request?: SecondParameter$h<typeof customFetch>;
|
|
8121
8276
|
}) => {
|
|
8122
8277
|
isMutating: boolean;
|
|
8123
8278
|
trigger: swr_mutation.TriggerWithArgs<ChatMessageCreated, TError, string | readonly [`/public/v1/chats/${string}/messages`], PostChatMessageBody>;
|
|
@@ -8133,16 +8288,16 @@ declare const usePostChatMessage: <TError = ErrorType<ErrorResponse>>(chatId: st
|
|
|
8133
8288
|
declare const getListChatsUrl: (params?: ListChatsParams) => string;
|
|
8134
8289
|
declare const listChats: (params?: ListChatsParams, options?: RequestInit) => Promise<ChatList>;
|
|
8135
8290
|
declare const getListChatsKey: (params?: ListChatsParams) => readonly ["/v1/chats", ...ListChatsParams[]];
|
|
8136
|
-
type ListChatsQueryResult = NonNullable<Awaited$
|
|
8291
|
+
type ListChatsQueryResult = NonNullable<Awaited$h<ReturnType<typeof listChats>>>;
|
|
8137
8292
|
/**
|
|
8138
8293
|
* @summary List chats
|
|
8139
8294
|
*/
|
|
8140
8295
|
declare const useListChats: <TError = ErrorType<ErrorResponse>>(params?: ListChatsParams, options?: {
|
|
8141
|
-
swr?: SWRConfiguration<Awaited$
|
|
8296
|
+
swr?: SWRConfiguration<Awaited$h<ReturnType<typeof listChats>>, TError> & {
|
|
8142
8297
|
swrKey?: Key;
|
|
8143
8298
|
enabled?: boolean;
|
|
8144
8299
|
};
|
|
8145
|
-
request?: SecondParameter$
|
|
8300
|
+
request?: SecondParameter$h<typeof customFetch>;
|
|
8146
8301
|
}) => {
|
|
8147
8302
|
data: ChatList | undefined;
|
|
8148
8303
|
error: TError | undefined;
|
|
@@ -8158,16 +8313,16 @@ declare const useListChats: <TError = ErrorType<ErrorResponse>>(params?: ListCha
|
|
|
8158
8313
|
declare const getListChatMessagesUrl: (chatId: string, params?: ListChatMessagesParams) => string;
|
|
8159
8314
|
declare const listChatMessages: (chatId: string, params?: ListChatMessagesParams, options?: RequestInit) => Promise<ChatMessageList>;
|
|
8160
8315
|
declare const getListChatMessagesKey: (chatId: string, params?: ListChatMessagesParams) => readonly [`/v1/chats/${string}/messages`, ...ListChatMessagesParams[]];
|
|
8161
|
-
type ListChatMessagesQueryResult = NonNullable<Awaited$
|
|
8316
|
+
type ListChatMessagesQueryResult = NonNullable<Awaited$h<ReturnType<typeof listChatMessages>>>;
|
|
8162
8317
|
/**
|
|
8163
8318
|
* @summary List chat messages
|
|
8164
8319
|
*/
|
|
8165
8320
|
declare const useListChatMessages: <TError = ErrorType<ErrorResponse>>(chatId: string, params?: ListChatMessagesParams, options?: {
|
|
8166
|
-
swr?: SWRConfiguration<Awaited$
|
|
8321
|
+
swr?: SWRConfiguration<Awaited$h<ReturnType<typeof listChatMessages>>, TError> & {
|
|
8167
8322
|
swrKey?: Key;
|
|
8168
8323
|
enabled?: boolean;
|
|
8169
8324
|
};
|
|
8170
|
-
request?: SecondParameter$
|
|
8325
|
+
request?: SecondParameter$h<typeof customFetch>;
|
|
8171
8326
|
}) => {
|
|
8172
8327
|
data: ChatMessageList | undefined;
|
|
8173
8328
|
error: TError | undefined;
|
|
@@ -8177,6 +8332,49 @@ declare const useListChatMessages: <TError = ErrorType<ErrorResponse>>(chatId: s
|
|
|
8177
8332
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
8178
8333
|
};
|
|
8179
8334
|
|
|
8335
|
+
type AwaitedInput$g<T> = PromiseLike<T> | T;
|
|
8336
|
+
type Awaited$g<O> = O extends AwaitedInput$g<infer T> ? T : never;
|
|
8337
|
+
type SecondParameter$g<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
8338
|
+
/**
|
|
8339
|
+
* List the organization's dispatches, newest occurrence first.
|
|
8340
|
+
|
|
8341
|
+
A dispatch is one occurrence of a trigger: every time a schedule fires, it produces exactly one dispatch, which is then carried out. Listing them shows what a trigger has actually done, including occurrences that never produced a worker run.
|
|
8342
|
+
|
|
8343
|
+
- `pending` — not carried out yet: waiting to be picked up, in flight, or waiting on a retry after an earlier pickup did not complete.
|
|
8344
|
+
- `dispatched` — carried out.
|
|
8345
|
+
- `abandoned` — gave up, because the occurrence passed its `expires_at` deadline before it could be carried out.
|
|
8346
|
+
|
|
8347
|
+
`attempts` counts how many times the occurrence has been picked up, not how many times it failed: a dispatch carried out on the first pickup ends at `attempts: 1`, and a higher count means earlier pickups did not complete.
|
|
8348
|
+
|
|
8349
|
+
`target` is what the occurrence produced — today always a worker run. It is null until the dispatch is carried out, and stays null on one that was abandoned.
|
|
8350
|
+
|
|
8351
|
+
Narrow to one trigger with `trigger_type` and `trigger_id` — for a schedule, `trigger_id` is the schedule's ID. `trigger_id` requires `trigger_type`.
|
|
8352
|
+
|
|
8353
|
+
Requires the `schedules:read` permission.
|
|
8354
|
+
* @summary List dispatches
|
|
8355
|
+
*/
|
|
8356
|
+
declare const getListDispatchesUrl: (params?: ListDispatchesParams) => string;
|
|
8357
|
+
declare const listDispatches: (params?: ListDispatchesParams, options?: RequestInit) => Promise<DispatchList>;
|
|
8358
|
+
declare const getListDispatchesKey: (params?: ListDispatchesParams) => readonly ["/v1/dispatches", ...ListDispatchesParams[]];
|
|
8359
|
+
type ListDispatchesQueryResult = NonNullable<Awaited$g<ReturnType<typeof listDispatches>>>;
|
|
8360
|
+
/**
|
|
8361
|
+
* @summary List dispatches
|
|
8362
|
+
*/
|
|
8363
|
+
declare const useListDispatches: <TError = ErrorType<ErrorResponse>>(params?: ListDispatchesParams, options?: {
|
|
8364
|
+
swr?: SWRConfiguration<Awaited$g<ReturnType<typeof listDispatches>>, TError> & {
|
|
8365
|
+
swrKey?: Key;
|
|
8366
|
+
enabled?: boolean;
|
|
8367
|
+
};
|
|
8368
|
+
request?: SecondParameter$g<typeof customFetch>;
|
|
8369
|
+
}) => {
|
|
8370
|
+
data: DispatchList | undefined;
|
|
8371
|
+
error: TError | undefined;
|
|
8372
|
+
mutate: swr.KeyedMutator<DispatchList>;
|
|
8373
|
+
isValidating: boolean;
|
|
8374
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
8375
|
+
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
8376
|
+
};
|
|
8377
|
+
|
|
8180
8378
|
type AwaitedInput$f<T> = PromiseLike<T> | T;
|
|
8181
8379
|
type Awaited$f<O> = O extends AwaitedInput$f<infer T> ? T : never;
|
|
8182
8380
|
type SecondParameter$f<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
@@ -10927,4 +11125,4 @@ declare const useUpdateWorkerMcps: <TError = ErrorType<ErrorResponse>>(workerId:
|
|
|
10927
11125
|
swrKey: string | readonly [`/v1/workers/${string}/mcps`];
|
|
10928
11126
|
};
|
|
10929
11127
|
|
|
10930
|
-
export { type AddCaseLinksBody, type AddCaseLinksBodyEntitiesItem, AddCaseLinksBodyEntitiesItemEntityType, type AddCaseLinksMutationResult, type AddCaseLinksResponse, type AddToolsToVoiceAgentBody, type AddToolsToVoiceAgentMutationResult, type AddToolsToVoiceAgentResponse, type AnalyticsTimeSeries, AnalyticsTimeSeriesGranularity, 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, type CallDetailEvaluation, type CallDetailMetadata, CallDirection, type CallEvaluation, type CallEvaluationMetricsItem, type CallEvaluationProperty, type CallList, type CallMessage, type CallMessageMetadata, type CallMessageToolArguments, type CallMessageToolResult, type CallMetadata, type CancelJobMutationResult, type CancelWorkerRunMutationResult, type CaseDetail, type CaseLink, CaseLinkEntityType, type CaseLinkList, type CaseList, type CaseSearchResult, type CaseSummary, 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 CheckInboxAvailabilityParams, type CheckInboxAvailabilityQueryResult, type CodeTool, type CodeToolCreated, type CodeToolCreatedTool, type CodeToolCreatedToolSchema, type CodeToolSchema, type CodeToolSummary, type CodeToolUpdated, type CodeToolUpdatedTool, type CodeToolUpdatedToolSchema, type ConfirmationResponse, type CreateAgentWebhookBody, type CreateAgentWebhookMutationResult, type CreateApiKeyBody, CreateApiKeyBodyEnvironment, CreateApiKeyBodyRole, type CreateApiKeyMutationResult, type CreateArtifactBody, type CreateArtifactBodyMetadata, type CreateArtifactBodyProcessingOptions, type CreateArtifactMutationResult, type CreateCallFeedbackMutationResult, type CreateCaseBody, type CreateCaseMutationResult, type CreateCaseResponse, type CreateChatAgentBody, type CreateChatAgentMutationResult, type CreateChatBody, type CreateChatMutationResult, type CreateEmailBody, CreateEmailBodyDirection, type CreateEmailMutationResult, type CreateExtractorBody, type CreateExtractorBodySchema, type CreateExtractorJobBody, type CreateExtractorJobBodyScope, type CreateExtractorJobMutationResult, type CreateExtractorMutationResult, type CreateExtractorWebhookBody, type CreateExtractorWebhookMutationResult, type CreateFeedbackRequest, type CreateInboxBody, CreateInboxBodyProcessorType, type CreateInboxMutationResult, type CreateInboxWebhookBody, type CreateInboxWebhookMutationResult, type CreateScheduleBody, type CreateScheduleMutationResult, type CreateSecretBody, type CreateSecretMutationResult, type CreateToolBody, type CreateToolMutationResult, type CreateVoiceAgentBody, CreateVoiceAgentBodyCallProcessorType, CreateVoiceAgentBodyDirection, CreateVoiceAgentBodyLanguage, CreateVoiceAgentBodyLlmModel, CreateVoiceAgentBodySttModel, CreateVoiceAgentBodyTtsModel, CreateVoiceAgentBodyTtsProvider, type CreateVoiceAgentMutationResult, type CreateVoiceAgentResponse, type CreateWorkerBody, type CreateWorkerMutationResult, type CreateWorkerRunBody, type CreateWorkerRunBodyScope, type CreateWorkerRunMutationResult, type CreateWorkerWebhookBody, type CreateWorkerWebhookMutationResult, type DeleteArtifactMutationResult, type DeleteArtifactResponse, type DeleteCallFeedbackMutationResult, type DeleteChatAgentMutationResult, type DeleteChatAgentResponse, type DeleteEmailMutationResult, type DeleteEmailResponse, type DeleteExtractorMutationResult, type DeleteExtractorResponse, type DeleteInboxMutationResult, type DeleteInboxResponse, type DeleteScheduleMutationResult, type DeleteScheduleResponse, type DeleteSecretMutationResult, type DeleteSecretResponse, type DeleteToolMutationResult, type DeleteToolResponse, type DeleteToolsFromVoiceAgentBody, type DeleteToolsFromVoiceAgentMutationResult, type DeleteToolsFromVoiceAgentResponse, type DeleteVoiceAgentMutationResult, type DeleteVoiceAgentResponse, type DeleteWebhookMutationResult, type DeleteWebhookResponse, type DeleteWorkerMutationResult, type DeleteWorkerResponse, type Email, type EmailCreated, EmailCreatedDirection, type EmailDetail, EmailDetailDirection, EmailDirection, type EmailList, type EmailReplyResult, EmailReplyResultValue, type EmailSendResult, type EmailThread, type EmailThreadList, type ErrorResponse, type ErrorResponseData, type ExecuteCodeBody, type ExecuteCodeBodyParams, 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, GetAnalyticsTimeSeriesGranularity, GetAnalyticsTimeSeriesGroupBy, GetAnalyticsTimeSeriesMetric, type GetAnalyticsTimeSeriesParams, type GetAnalyticsTimeSeriesQueryResult, type GetArtifactMetadataKeysParams, type GetArtifactMetadataKeysQueryResult, type GetArtifactQueryResult, type GetArtifactStatusSummaryParams, type GetArtifactStatusSummaryQueryResult, type GetArtifactUploadUrl200, type GetArtifactUploadUrlBody, type GetArtifactUploadUrlMutationResult, type GetCallAnalyticsParams, type GetCallAnalyticsQueryResult, type GetCallEvaluationQueryResult, type GetCallParams, type GetCallQueryResult, type GetCaseQueryResult, type GetChatAgentPromptQueryResult, type GetChatAgentQueryResult, type GetChatQueryResult, type GetEmailQueryResult, type GetExtractCitations200, type GetExtractCitations200Chunks, type GetExtractCitations200ChunksBoundingBox, type GetExtractCitationsQueryResult, type GetExtractQueryResult, type GetExtractorJobQueryResult, type GetExtractorJobResponse, type GetExtractorQueryResult, type GetExtractorResponse, GetOAuthUrlCodeChallengeMethod, type GetOAuthUrlParams, GetOAuthUrlProvider, type GetOAuthUrlQueryResult, type GetPartnerJwksQueryResult, type GetProfileQueryResult, type GetPublicChatAgentQueryResult, type GetScheduleQueryResult, type GetSecretQueryResult, type GetSessionToken200, type GetSessionTokenBody, type GetSessionTokenMutationResult, type GetToolQueryResult, type GetToolResponse, type GetVoiceAgentPlaceholdersQueryResult, type GetVoiceAgentPromptParams, type GetVoiceAgentPromptQueryResult, type GetVoiceAgentQueryResult, type GetVoiceAgentResponse, type GetVoiceAgentVersionChangeSummaryQueryResult, type GetVoiceAgentVersionQueryResult, type GetWebhookQueryResult, type GetWorkerPromptQueryResult, type GetWorkerQueryResult, type GetWorkerRunQueryResult, type GetWorkerRunResponse, type GetWorkerToolResponse, type Inbox, type InboxAvailability, type InboxList, InboxProcessorType, type InboxWebhookList, type InviteTeamMemberBody, type InviteTeamMemberMutationResult, type ListAgentWebhooksQueryResult, ListApiKeysIncludeRevoked, type ListApiKeysParams, type ListApiKeysQueryResult, type ListArtifactsParams, type ListArtifactsQueryResult, ListArtifactsSortBy, ListArtifactsSortOrder, ListArtifactsStatus, type ListCallFeedbackParams, type ListCallFeedbackQueryResult, ListCallFeedbackSortBy, ListCallFeedbackSortOrder, ListCallsDirection, type ListCallsParams, type ListCallsQueryResult, ListCallsSortBy, ListCallsSortOrder, ListCallsStatus, ListCaseLinksEntityType, type ListCaseLinksParams, type ListCaseLinksQueryResult, ListCaseLinksSortBy, ListCaseLinksSortOrder, type ListCasesParams, type ListCasesQueryResult, ListCasesSortBy, ListCasesSortOrder, type ListChatAgentsParams, type ListChatAgentsQueryResult, ListChatAgentsSortBy, ListChatAgentsSortOrder, type ListChatMessagesParams, type ListChatMessagesQueryResult, ListChatMessagesSortBy, ListChatMessagesSortOrder, type ListChatsParams, type ListChatsQueryResult, ListChatsSortBy, ListChatsSortOrder, type ListEmailThreadsParams, type ListEmailThreadsQueryResult, ListEmailThreadsSortBy, ListEmailThreadsSortOrder, type ListEmailsParams, type ListEmailsQueryResult, ListEmailsSortBy, ListEmailsSortOrder, type ListExtractorJobsParams, type ListExtractorJobsQueryResult, ListExtractorJobsSortBy, ListExtractorJobsSortOrder, ListExtractorJobsStatus, type ListExtractorsParams, type ListExtractorsQueryResult, ListExtractorsSortBy, ListExtractorsSortOrder, type ListExtractsParams, type ListExtractsQueryResult, ListExtractsSortBy, ListExtractsSortOrder, type ListInboxWebhooksQueryResult, type ListInboxesParams, type ListInboxesQueryResult, ListInboxesSortBy, ListInboxesSortOrder, type ListJobsParams, type ListJobsQueryResult, ListJobsStatusItem, type ListSchedulesParams, type ListSchedulesQueryResult, ListSchedulesRuleType, ListSchedulesSortBy, ListSchedulesSortOrder, type ListSecretsParams, type ListSecretsQueryResult, ListSecretsSortBy, ListSecretsSortOrder, type ListTeamInvitationsQueryResult, type ListTeamInvitationsResponse, type ListTeamMembersQueryResult, type ListTeamMembersResponse, type ListToolsParams, type ListToolsQueryResult, ListToolsSortBy, ListToolsSortOrder, type ListVoiceAgentVersionsParams, type ListVoiceAgentVersionsQueryResult, ListVoiceAgentVersionsSortBy, ListVoiceAgentVersionsSortOrder, type ListVoiceAgentsParams, type ListVoiceAgentsQueryResult, type ListWebhookDeliveriesParams, type ListWebhookDeliveriesQueryResult, ListWebhookDeliveriesSortOrder, type ListWebhooksQueryResult, type ListWorkerModelsQueryResult, type ListWorkerRunMessagesParams, type ListWorkerRunMessagesQueryResult, type ListWorkerRunsParams, type ListWorkerRunsQueryResult, ListWorkerRunsSortBy, ListWorkerRunsSortOrder, ListWorkerRunsStatus, type ListWorkerWebhooksQueryResult, type ListWorkersParams, type ListWorkersQueryResult, ListWorkersSortBy, ListWorkersSortOrder, type OAuthUrl, type OutboundJob, OutboundJobEnvironment, type OutboundJobList, type OutboundJobMetadata, type OutboundJobPayload, OutboundJobStatus, type PartnerJwks, type PartnerJwksKeysItem, type PartnerLaunch302, type PartnerLaunchMutationResult, type PartnerLaunchParams, type PostChatMessageBody, type PostChatMessageMutationResult, type Profile, ProfilePermissionsItem, ProfileRole, type ProfileTenant, type ProfileTenants, type PromoteVoiceAgentVersionBody, PromoteVoiceAgentVersionBodyEnvironment, type PromoteVoiceAgentVersionMutationResult, type PromotedVoiceAgentVersion, PromotedVoiceAgentVersionEnvironment, type PublicChatAgent, type RefreshTokenBody, type RefreshTokenMutationResult, type RemoveCaseLinkMutationResult, type RemoveCaseLinkResponse, type RemoveMemberMutationResult, type RemoveMemberResponse, type ReplyToEmailBody, type ReplyToEmailBodyAttachmentsItem, type ReplyToEmailMutationResult, type ResendTeamInvitationMutationResult, type RevokeApiKeyMutationResult, type RevokeTeamInvitationMutationResult, type RevokeTeamInvitationResponse, type Schedule, type ScheduleAction, type ScheduleActionOutput, type ScheduleJobBody, ScheduleJobBodyEnvironment, type ScheduleJobBodyMetadata, type ScheduleJobBodyPayload, type ScheduleJobMutationResult, type ScheduleList, type ScheduleRule, type ScheduleRuleOutput, type SearchCasesParams, type SearchCasesQueryResult, type Secret, type SecretList, type SendEmailBody, type SendEmailBodyAttachmentsItem, type SendEmailMutationResult, type SignInBody, type SignInMutationResult, type SignUpBody, type SignUpMutationResult, type SignUpResponse, type TeamInvitation, TeamInvitationState, type TeamMember, TeamMemberRole, type TestWebhookMutationResult, type ToolExecutionResult, type ToolExecutionResultError, type ToolExecutionResultTracesItem, type ToolList, type UpdateApiKeyBody, UpdateApiKeyBodyRole, type UpdateApiKeyMutationResult, type UpdateArtifactMetadataBody, type UpdateArtifactMetadataBodyMetadata, type UpdateArtifactMetadataMutationResult, type UpdateCallControlsBody, type UpdateCallControlsMutationResult, type UpdateChatAgentMutationResult, type UpdateChatAgentPromptBody, type UpdateChatAgentPromptMutationResult, type UpdateChatAgentRequest, type UpdateExtractorBody, type UpdateExtractorBodySchema, type UpdateExtractorMutationResult, type UpdateInboxBody, type UpdateInboxBodyProcessor, UpdateInboxBodyProcessorType, type UpdateInboxMutationResult, type UpdateMemberRoleBody, UpdateMemberRoleBodyRole, type UpdateMemberRoleMutationResult, type UpdateMemberRoleResponse, type UpdateScheduleBody, type UpdateScheduleMutationResult, type UpdateSecretBody, type UpdateSecretMutationResult, type UpdateToolBody, type UpdateToolMutationResult, type UpdateVoiceAgentBody, UpdateVoiceAgentBodyCallProcessorType, type UpdateVoiceAgentCallControlsResponse, type UpdateVoiceAgentModelsBody, UpdateVoiceAgentModelsBodyLanguage, UpdateVoiceAgentModelsBodyLlmModel, UpdateVoiceAgentModelsBodySttModel, UpdateVoiceAgentModelsBodyTtsModel, UpdateVoiceAgentModelsBodyTtsProvider, type UpdateVoiceAgentModelsMutationResult, type UpdateVoiceAgentModelsResponse, type UpdateVoiceAgentMutationResult, type UpdateVoiceAgentPromptBody, type UpdateVoiceAgentPromptMutationResult, type UpdateVoiceAgentResponse, type UpdateWorkerBody, type UpdateWorkerBodySchema, type UpdateWorkerMcpsBody, type UpdateWorkerMcpsMutationResult, type UpdateWorkerMutationResult, type UpdateWorkerPromptBody, type UpdateWorkerPromptMutationResult, type UpdateWorkerRunScopeBody, type UpdateWorkerRunScopeBodyScope, type UpdateWorkerRunScopeMutationResult, type UploadFileBody, type UploadFileBodyMetadata, type UploadFileBodyProcessingOptions, type UploadFileMutationResult, type UploadFileResponse, type VoiceAgent, VoiceAgentBackgroundSounds, VoiceAgentDirection, VoiceAgentLanguage, type VoiceAgentList, VoiceAgentLlmModel, VoiceAgentNoiseCancellation, type VoiceAgentPlaceholders, type VoiceAgentPrompt, type VoiceAgentPromptUpdated, VoiceAgentSttModel, VoiceAgentTtsModel, VoiceAgentTtsProvider, type VoiceAgentVersion, VoiceAgentVersionActiveEnvironmentsItem, type VoiceAgentVersionChangeSummary, type VoiceAgentVersionDetail, VoiceAgentVersionDetailActiveEnvironmentsItem, VoiceAgentVersionDetailBackgroundSounds, VoiceAgentVersionDetailDirection, VoiceAgentVersionDetailLanguage, VoiceAgentVersionDetailLlmModel, VoiceAgentVersionDetailNoiseCancellation, VoiceAgentVersionDetailSttModel, VoiceAgentVersionDetailTtsModel, VoiceAgentVersionDetailTtsProvider, type VoiceAgentVersionList, type VoiceAgentWebhookList, type VoiceAgentWithTestPhoneNumber, VoiceAgentWithTestPhoneNumberBackgroundSounds, VoiceAgentWithTestPhoneNumberDirection, VoiceAgentWithTestPhoneNumberLanguage, VoiceAgentWithTestPhoneNumberLlmModel, VoiceAgentWithTestPhoneNumberNoiseCancellation, VoiceAgentWithTestPhoneNumberSttModel, VoiceAgentWithTestPhoneNumberTtsModel, VoiceAgentWithTestPhoneNumberTtsProvider, type Webhook, type WebhookDelivery, type WebhookDeliveryList, type WebhookScope, type WebhookTestResult, type Worker, type WorkerExecuteToolBody, type WorkerExecuteToolBodyParams, type WorkerExecuteToolMutationResult, type WorkerGetToolQueryResult, type WorkerList, type WorkerListToolsQueryResult, type WorkerMcp, WorkerMcpName, type WorkerMcpOutput, WorkerMcpOutputName, type WorkerModel, type WorkerModelList, type WorkerPrompt, type WorkerPromptUpdated, type WorkerRun, type WorkerRunCreated, type WorkerRunCreatedScope, type WorkerRunList, type WorkerRunMessage, type WorkerRunMessageList, type WorkerRunMessageMessage, type WorkerRunScope, type WorkerSchema, type WorkerSummary, type WorkerTool, type WorkerToolExecutionResult, type WorkerToolExecutionResultError, type WorkerToolList, type WorkerToolSchema, type WorkerToolSummary, type WorkerWebhookList, addCaseLinks, addToolsToVoiceAgent, cancelJob, cancelWorkerRun, checkInboxAvailability, configure, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, createCase, createChat, createChatAgent, createEmail, createExtractor, createExtractorJob, createExtractorWebhook, createInbox, createInboxWebhook, createSchedule, createSecret, createTool, createVoiceAgent, createWorker, createWorkerRun, createWorkerWebhook, deleteArtifact, deleteCallFeedback, deleteChatAgent, deleteEmail, deleteExtractor, deleteInbox, deleteSchedule, deleteSecret, deleteTool, deleteToolsFromVoiceAgent, deleteVoiceAgent, deleteWebhook, deleteWorker, executeCode, generateCodeChallenge, generateCodeVerifier, getAddCaseLinksMutationFetcher, getAddCaseLinksMutationKey, getAddCaseLinksUrl, getAddToolsToVoiceAgentMutationFetcher, getAddToolsToVoiceAgentMutationKey, getAddToolsToVoiceAgentUrl, 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, getCreateEmailMutationFetcher, getCreateEmailMutationKey, getCreateEmailUrl, getCreateExtractorJobMutationFetcher, getCreateExtractorJobMutationKey, getCreateExtractorJobUrl, getCreateExtractorMutationFetcher, getCreateExtractorMutationKey, getCreateExtractorUrl, getCreateExtractorWebhookMutationFetcher, getCreateExtractorWebhookMutationKey, getCreateExtractorWebhookUrl, getCreateInboxMutationFetcher, getCreateInboxMutationKey, getCreateInboxUrl, getCreateInboxWebhookMutationFetcher, getCreateInboxWebhookMutationKey, getCreateInboxWebhookUrl, getCreateScheduleMutationFetcher, getCreateScheduleMutationKey, getCreateScheduleUrl, getCreateSecretMutationFetcher, getCreateSecretMutationKey, getCreateSecretUrl, getCreateToolMutationFetcher, getCreateToolMutationKey, getCreateToolUrl, getCreateVoiceAgentMutationFetcher, getCreateVoiceAgentMutationKey, getCreateVoiceAgentUrl, getCreateWorkerMutationFetcher, getCreateWorkerMutationKey, getCreateWorkerRunMutationFetcher, getCreateWorkerRunMutationKey, getCreateWorkerRunUrl, getCreateWorkerUrl, getCreateWorkerWebhookMutationFetcher, getCreateWorkerWebhookMutationKey, getCreateWorkerWebhookUrl, getDeleteArtifactMutationFetcher, getDeleteArtifactMutationKey, getDeleteArtifactUrl, getDeleteCallFeedbackMutationFetcher, getDeleteCallFeedbackMutationKey, getDeleteCallFeedbackUrl, getDeleteChatAgentMutationFetcher, getDeleteChatAgentMutationKey, getDeleteChatAgentUrl, getDeleteEmailMutationFetcher, getDeleteEmailMutationKey, getDeleteEmailUrl, getDeleteExtractorMutationFetcher, getDeleteExtractorMutationKey, getDeleteExtractorUrl, getDeleteInboxMutationFetcher, getDeleteInboxMutationKey, getDeleteInboxUrl, getDeleteScheduleMutationFetcher, getDeleteScheduleMutationKey, getDeleteScheduleUrl, getDeleteSecretMutationFetcher, getDeleteSecretMutationKey, getDeleteSecretUrl, getDeleteToolMutationFetcher, getDeleteToolMutationKey, getDeleteToolUrl, getDeleteToolsFromVoiceAgentMutationFetcher, getDeleteToolsFromVoiceAgentMutationKey, getDeleteToolsFromVoiceAgentUrl, getDeleteVoiceAgentMutationFetcher, getDeleteVoiceAgentMutationKey, getDeleteVoiceAgentUrl, getDeleteWebhookMutationFetcher, getDeleteWebhookMutationKey, getDeleteWebhookUrl, getDeleteWorkerMutationFetcher, getDeleteWorkerMutationKey, getDeleteWorkerUrl, getEmail, 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, getGetExtractCitationsKey, getGetExtractCitationsUrl, getGetExtractKey, getGetExtractUrl, getGetExtractorJobKey, getGetExtractorJobUrl, getGetExtractorKey, getGetExtractorUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetPartnerJwksKey, getGetPartnerJwksUrl, getGetProfileKey, getGetProfileUrl, getGetPublicChatAgentKey, getGetPublicChatAgentUrl, getGetScheduleKey, getGetScheduleUrl, getGetSecretKey, getGetSecretUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetVoiceAgentKey, getGetVoiceAgentPlaceholdersKey, getGetVoiceAgentPlaceholdersUrl, getGetVoiceAgentPromptKey, getGetVoiceAgentPromptUrl, getGetVoiceAgentUrl, getGetVoiceAgentVersionChangeSummaryKey, getGetVoiceAgentVersionChangeSummaryUrl, getGetVoiceAgentVersionKey, getGetVoiceAgentVersionUrl, getGetWebhookKey, getGetWebhookUrl, getGetWorkerKey, getGetWorkerPromptKey, getGetWorkerPromptUrl, getGetWorkerRunKey, getGetWorkerRunUrl, getGetWorkerUrl, getInviteTeamMemberMutationFetcher, getInviteTeamMemberMutationKey, getInviteTeamMemberUrl, getListAgentWebhooksKey, getListAgentWebhooksUrl, getListApiKeysKey, getListApiKeysUrl, getListArtifactsKey, getListArtifactsUrl, getListCallFeedbackKey, getListCallFeedbackUrl, getListCallsKey, getListCallsUrl, getListCaseLinksKey, getListCaseLinksUrl, getListCasesKey, getListCasesUrl, getListChatAgentsKey, getListChatAgentsUrl, getListChatMessagesKey, getListChatMessagesUrl, getListChatsKey, getListChatsUrl, getListEmailThreadsKey, getListEmailThreadsUrl, getListEmailsKey, getListEmailsUrl, getListExtractorJobsKey, getListExtractorJobsUrl, getListExtractorsKey, getListExtractorsUrl, getListExtractsKey, getListExtractsUrl, getListInboxWebhooksKey, getListInboxWebhooksUrl, getListInboxesKey, getListInboxesUrl, getListJobsKey, getListJobsUrl, getListSchedulesKey, getListSchedulesUrl, getListSecretsKey, getListSecretsUrl, getListTeamInvitationsKey, getListTeamInvitationsUrl, getListTeamMembersKey, getListTeamMembersUrl, getListToolsKey, getListToolsUrl, getListVoiceAgentVersionsKey, getListVoiceAgentVersionsUrl, getListVoiceAgentsKey, getListVoiceAgentsUrl, getListWebhookDeliveriesKey, getListWebhookDeliveriesUrl, getListWebhooksKey, getListWebhooksUrl, getListWorkerModelsKey, getListWorkerModelsUrl, getListWorkerRunMessagesKey, getListWorkerRunMessagesUrl, getListWorkerRunsKey, getListWorkerRunsUrl, getListWorkerWebhooksKey, getListWorkerWebhooksUrl, getListWorkersKey, getListWorkersUrl, getOAuthUrl, getPartnerJwks, getPartnerLaunchMutationFetcher, getPartnerLaunchMutationKey, getPartnerLaunchUrl, getPostChatMessageMutationFetcher, getPostChatMessageMutationKey, getPostChatMessageUrl, getProfile, getPromoteVoiceAgentVersionMutationFetcher, getPromoteVoiceAgentVersionMutationKey, getPromoteVoiceAgentVersionUrl, getPublicChatAgent, getRefreshTokenMutationFetcher, getRefreshTokenMutationKey, getRefreshTokenUrl, getRemoveCaseLinkMutationFetcher, getRemoveCaseLinkMutationKey, getRemoveCaseLinkUrl, getRemoveMemberMutationFetcher, getRemoveMemberMutationKey, getRemoveMemberUrl, getReplyToEmailMutationFetcher, getReplyToEmailMutationKey, getReplyToEmailUrl, getResendTeamInvitationMutationFetcher, getResendTeamInvitationMutationKey, getResendTeamInvitationUrl, getRevokeApiKeyMutationFetcher, getRevokeApiKeyMutationKey, getRevokeApiKeyUrl, getRevokeTeamInvitationMutationFetcher, getRevokeTeamInvitationMutationKey, getRevokeTeamInvitationUrl, getSchedule, getScheduleJobMutationFetcher, getScheduleJobMutationKey, getScheduleJobUrl, getSearchCasesKey, getSearchCasesUrl, getSecret, getSendEmailMutationFetcher, getSendEmailMutationKey, getSendEmailUrl, getSessionToken, getSignInMutationFetcher, getSignInMutationKey, getSignInUrl, getSignUpMutationFetcher, getSignUpMutationKey, getSignUpUrl, getTestWebhookMutationFetcher, getTestWebhookMutationKey, getTestWebhookUrl, getTool, 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, getUpdateWorkerMcpsMutationFetcher, getUpdateWorkerMcpsMutationKey, getUpdateWorkerMcpsUrl, getUpdateWorkerMutationFetcher, getUpdateWorkerMutationKey, getUpdateWorkerPromptMutationFetcher, getUpdateWorkerPromptMutationKey, getUpdateWorkerPromptUrl, getUpdateWorkerRunScopeMutationFetcher, getUpdateWorkerRunScopeMutationKey, getUpdateWorkerRunScopeUrl, getUpdateWorkerUrl, getUploadFileMutationFetcher, getUploadFileMutationKey, getUploadFileUrl, getVoiceAgent, getVoiceAgentPlaceholders, getVoiceAgentPrompt, getVoiceAgentVersion, getVoiceAgentVersionChangeSummary, getWebhook, getWorker, getWorkerExecuteToolMutationFetcher, getWorkerExecuteToolMutationKey, getWorkerExecuteToolUrl, getWorkerGetToolKey, getWorkerGetToolUrl, getWorkerListToolsKey, getWorkerListToolsUrl, getWorkerPrompt, getWorkerRun, inviteTeamMember, listAgentWebhooks, listApiKeys, listArtifacts, listCallFeedback, listCalls, listCaseLinks, listCases, listChatAgents, listChatMessages, listChats, listEmailThreads, listEmails, listExtractorJobs, listExtractors, listExtracts, listInboxWebhooks, listInboxes, listJobs, listSchedules, listSecrets, listTeamInvitations, listTeamMembers, listTools, listVoiceAgentVersions, listVoiceAgents, listWebhookDeliveries, listWebhooks, listWorkerModels, listWorkerRunMessages, listWorkerRuns, listWorkerWebhooks, listWorkers, partnerLaunch, postChatMessage, promoteVoiceAgentVersion, refreshToken, removeCaseLink, removeMember, replyToEmail, resendTeamInvitation, revokeApiKey, revokeTeamInvitation, scheduleJob, searchCases, sendEmail, signIn, signUp, testWebhook, updateApiKey, updateArtifactMetadata, updateCallControls, updateChatAgent, updateChatAgentPrompt, updateExtractor, updateInbox, updateMemberRole, updateSchedule, updateSecret, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateVoiceAgentPrompt, updateWorker, updateWorkerMcps, updateWorkerPrompt, updateWorkerRunScope, uploadFile, useAddCaseLinks, useAddToolsToVoiceAgent, useCancelJob, useCancelWorkerRun, useCheckInboxAvailability, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateCase, useCreateChat, useCreateChatAgent, useCreateEmail, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateInbox, useCreateInboxWebhook, useCreateSchedule, useCreateSecret, useCreateTool, useCreateVoiceAgent, useCreateWorker, useCreateWorkerRun, useCreateWorkerWebhook, useDeleteArtifact, useDeleteCallFeedback, useDeleteChatAgent, useDeleteEmail, useDeleteExtractor, useDeleteInbox, useDeleteSchedule, useDeleteSecret, useDeleteTool, useDeleteToolsFromVoiceAgent, useDeleteVoiceAgent, useDeleteWebhook, useDeleteWorker, useExecuteCode, useGetAnalyticsTimeSeries, useGetArtifact, useGetArtifactMetadataKeys, useGetArtifactStatusSummary, useGetArtifactUploadUrl, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetCase, useGetChat, useGetChatAgent, useGetChatAgentPrompt, useGetEmail, useGetExtract, useGetExtractCitations, useGetExtractor, useGetExtractorJob, useGetOAuthUrl, useGetPartnerJwks, useGetProfile, useGetPublicChatAgent, useGetSchedule, useGetSecret, useGetSessionToken, useGetTool, useGetVoiceAgent, useGetVoiceAgentPlaceholders, useGetVoiceAgentPrompt, useGetVoiceAgentVersion, useGetVoiceAgentVersionChangeSummary, useGetWebhook, useGetWorker, useGetWorkerPrompt, useGetWorkerRun, useInviteTeamMember, useListAgentWebhooks, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListCaseLinks, useListCases, useListChatAgents, useListChatMessages, useListChats, useListEmailThreads, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListInboxWebhooks, useListInboxes, useListJobs, useListSchedules, useListSecrets, useListTeamInvitations, useListTeamMembers, useListTools, useListVoiceAgentVersions, useListVoiceAgents, useListWebhookDeliveries, useListWebhooks, useListWorkerModels, useListWorkerRunMessages, useListWorkerRuns, useListWorkerWebhooks, useListWorkers, usePartnerLaunch, usePostChatMessage, usePromoteVoiceAgentVersion, useRefreshToken, useRemoveCaseLink, useRemoveMember, useReplyToEmail, useResendTeamInvitation, useRevokeApiKey, useRevokeTeamInvitation, useScheduleJob, useSearchCases, useSendEmail, useSignIn, useSignUp, useTestWebhook, useUpdateApiKey, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateChatAgent, useUpdateChatAgentPrompt, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateSchedule, useUpdateSecret, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateVoiceAgentPrompt, useUpdateWorker, useUpdateWorkerMcps, useUpdateWorkerPrompt, useUpdateWorkerRunScope, useUploadFile, useWorkerExecuteTool, useWorkerGetTool, useWorkerListTools, workerExecuteTool, workerGetTool, workerListTools };
|
|
11128
|
+
export { type AddCaseLinksBody, type AddCaseLinksBodyEntitiesItem, AddCaseLinksBodyEntitiesItemEntityType, type AddCaseLinksMutationResult, type AddCaseLinksResponse, type AddToolsToVoiceAgentBody, type AddToolsToVoiceAgentMutationResult, type AddToolsToVoiceAgentResponse, type AnalyticsTimeSeries, AnalyticsTimeSeriesGranularity, 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, type CallDetailEvaluation, type CallDetailMetadata, CallDirection, type CallEvaluation, type CallEvaluationMetricsItem, type CallEvaluationProperty, type CallList, type CallMessage, type CallMessageMetadata, type CallMessageToolArguments, type CallMessageToolResult, type CallMetadata, type CancelJobMutationResult, type CancelWorkerRunMutationResult, type CaseDetail, type CaseLink, CaseLinkEntityType, type CaseLinkList, type CaseList, type CaseSearchResult, type CaseSummary, 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 CheckInboxAvailabilityParams, type CheckInboxAvailabilityQueryResult, type CodeTool, type CodeToolCreated, type CodeToolCreatedTool, type CodeToolCreatedToolSchema, type CodeToolSchema, type CodeToolSummary, type CodeToolUpdated, type CodeToolUpdatedTool, type CodeToolUpdatedToolSchema, type ConfirmationResponse, type CreateAgentWebhookBody, type CreateAgentWebhookMutationResult, type CreateApiKeyBody, CreateApiKeyBodyEnvironment, CreateApiKeyBodyRole, type CreateApiKeyMutationResult, type CreateArtifactBody, type CreateArtifactBodyMetadata, type CreateArtifactBodyProcessingOptions, type CreateArtifactMutationResult, type CreateCallFeedbackMutationResult, type CreateCaseBody, type CreateCaseMutationResult, type CreateCaseResponse, type CreateChatAgentBody, type CreateChatAgentMutationResult, type CreateChatBody, type CreateChatMutationResult, type CreateEmailBody, CreateEmailBodyDirection, type CreateEmailMutationResult, type CreateExtractorBody, type CreateExtractorBodySchema, type CreateExtractorJobBody, type CreateExtractorJobBodyScope, type CreateExtractorJobMutationResult, type CreateExtractorMutationResult, type CreateExtractorWebhookBody, type CreateExtractorWebhookMutationResult, type CreateFeedbackRequest, type CreateInboxBody, CreateInboxBodyProcessorType, type CreateInboxMutationResult, type CreateInboxWebhookBody, type CreateInboxWebhookMutationResult, type CreateScheduleBody, type CreateScheduleMutationResult, type CreateSecretBody, type CreateSecretMutationResult, type CreateToolBody, type CreateToolMutationResult, type CreateVoiceAgentBody, CreateVoiceAgentBodyCallProcessorType, CreateVoiceAgentBodyDirection, CreateVoiceAgentBodyLanguage, CreateVoiceAgentBodyLlmModel, CreateVoiceAgentBodySttModel, CreateVoiceAgentBodyTtsModel, CreateVoiceAgentBodyTtsProvider, type CreateVoiceAgentMutationResult, type CreateVoiceAgentResponse, type CreateWorkerBody, type CreateWorkerMutationResult, type CreateWorkerRunBody, type CreateWorkerRunBodyScope, type CreateWorkerRunMutationResult, type CreateWorkerWebhookBody, type CreateWorkerWebhookMutationResult, type DeleteArtifactMutationResult, type DeleteArtifactResponse, type DeleteCallFeedbackMutationResult, type DeleteChatAgentMutationResult, type DeleteChatAgentResponse, type DeleteEmailMutationResult, type DeleteEmailResponse, type DeleteExtractorMutationResult, type DeleteExtractorResponse, type DeleteInboxMutationResult, type DeleteInboxResponse, type DeleteScheduleMutationResult, type DeleteScheduleResponse, type DeleteSecretMutationResult, type DeleteSecretResponse, type DeleteToolMutationResult, type DeleteToolResponse, type DeleteToolsFromVoiceAgentBody, type DeleteToolsFromVoiceAgentMutationResult, type DeleteToolsFromVoiceAgentResponse, type DeleteVoiceAgentMutationResult, type DeleteVoiceAgentResponse, type DeleteWebhookMutationResult, type DeleteWebhookResponse, type DeleteWorkerMutationResult, type DeleteWorkerResponse, type Dispatch, type DispatchList, DispatchStatus, type DispatchTarget, DispatchTargetType, type DispatchTrigger, DispatchTriggerType, type Email, type EmailCreated, EmailCreatedDirection, type EmailDetail, EmailDetailDirection, EmailDirection, type EmailList, type EmailReplyResult, EmailReplyResultValue, type EmailSendResult, type EmailThread, type EmailThreadList, type ErrorResponse, type ErrorResponseData, type ExecuteCodeBody, type ExecuteCodeBodyParams, 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, GetAnalyticsTimeSeriesGranularity, GetAnalyticsTimeSeriesGroupBy, GetAnalyticsTimeSeriesMetric, type GetAnalyticsTimeSeriesParams, type GetAnalyticsTimeSeriesQueryResult, type GetArtifactMetadataKeysParams, type GetArtifactMetadataKeysQueryResult, type GetArtifactQueryResult, type GetArtifactStatusSummaryParams, type GetArtifactStatusSummaryQueryResult, type GetArtifactUploadUrl200, type GetArtifactUploadUrlBody, type GetArtifactUploadUrlMutationResult, type GetCallAnalyticsParams, type GetCallAnalyticsQueryResult, type GetCallEvaluationQueryResult, type GetCallParams, type GetCallQueryResult, type GetCaseQueryResult, type GetChatAgentPromptQueryResult, type GetChatAgentQueryResult, type GetChatQueryResult, type GetEmailQueryResult, type GetExtractCitations200, type GetExtractCitations200Chunks, type GetExtractCitations200ChunksBoundingBox, type GetExtractCitationsQueryResult, type GetExtractQueryResult, type GetExtractorJobQueryResult, type GetExtractorJobResponse, type GetExtractorQueryResult, type GetExtractorResponse, GetOAuthUrlCodeChallengeMethod, type GetOAuthUrlParams, GetOAuthUrlProvider, type GetOAuthUrlQueryResult, type GetPartnerJwksQueryResult, type GetProfileQueryResult, type GetPublicChatAgentQueryResult, type GetScheduleQueryResult, type GetSecretQueryResult, type GetSessionToken200, type GetSessionTokenBody, type GetSessionTokenMutationResult, type GetToolQueryResult, type GetToolResponse, type GetVoiceAgentPlaceholdersQueryResult, type GetVoiceAgentPromptParams, type GetVoiceAgentPromptQueryResult, type GetVoiceAgentQueryResult, type GetVoiceAgentResponse, type GetVoiceAgentVersionChangeSummaryQueryResult, type GetVoiceAgentVersionQueryResult, type GetWebhookQueryResult, type GetWorkerPromptQueryResult, type GetWorkerQueryResult, type GetWorkerRunQueryResult, type GetWorkerRunResponse, type GetWorkerToolResponse, type Inbox, type InboxAvailability, type InboxList, InboxProcessorType, type InboxWebhookList, type InviteTeamMemberBody, type InviteTeamMemberMutationResult, type ListAgentWebhooksQueryResult, ListApiKeysIncludeRevoked, type ListApiKeysParams, type ListApiKeysQueryResult, type ListArtifactsParams, type ListArtifactsQueryResult, ListArtifactsSortBy, ListArtifactsSortOrder, ListArtifactsStatus, type ListCallFeedbackParams, type ListCallFeedbackQueryResult, ListCallFeedbackSortBy, ListCallFeedbackSortOrder, ListCallsDirection, type ListCallsParams, type ListCallsQueryResult, ListCallsSortBy, ListCallsSortOrder, ListCallsStatus, ListCaseLinksEntityType, type ListCaseLinksParams, type ListCaseLinksQueryResult, ListCaseLinksSortBy, ListCaseLinksSortOrder, type ListCasesParams, type ListCasesQueryResult, ListCasesSortBy, ListCasesSortOrder, type ListChatAgentsParams, type ListChatAgentsQueryResult, ListChatAgentsSortBy, ListChatAgentsSortOrder, type ListChatMessagesParams, type ListChatMessagesQueryResult, ListChatMessagesSortBy, ListChatMessagesSortOrder, type ListChatsParams, type ListChatsQueryResult, ListChatsSortBy, ListChatsSortOrder, type ListDispatchesParams, type ListDispatchesQueryResult, ListDispatchesSortBy, ListDispatchesSortOrder, ListDispatchesTriggerType, type ListEmailThreadsParams, type ListEmailThreadsQueryResult, ListEmailThreadsSortBy, ListEmailThreadsSortOrder, type ListEmailsParams, type ListEmailsQueryResult, ListEmailsSortBy, ListEmailsSortOrder, type ListExtractorJobsParams, type ListExtractorJobsQueryResult, ListExtractorJobsSortBy, ListExtractorJobsSortOrder, ListExtractorJobsStatus, type ListExtractorsParams, type ListExtractorsQueryResult, ListExtractorsSortBy, ListExtractorsSortOrder, type ListExtractsParams, type ListExtractsQueryResult, ListExtractsSortBy, ListExtractsSortOrder, type ListInboxWebhooksQueryResult, type ListInboxesParams, type ListInboxesQueryResult, ListInboxesSortBy, ListInboxesSortOrder, type ListJobsParams, type ListJobsQueryResult, ListJobsStatusItem, type ListSchedulesParams, type ListSchedulesQueryResult, ListSchedulesRuleType, ListSchedulesSortBy, ListSchedulesSortOrder, type ListSecretsParams, type ListSecretsQueryResult, ListSecretsSortBy, ListSecretsSortOrder, type ListTeamInvitationsQueryResult, type ListTeamInvitationsResponse, type ListTeamMembersQueryResult, type ListTeamMembersResponse, type ListToolsParams, type ListToolsQueryResult, ListToolsSortBy, ListToolsSortOrder, type ListVoiceAgentVersionsParams, type ListVoiceAgentVersionsQueryResult, ListVoiceAgentVersionsSortBy, ListVoiceAgentVersionsSortOrder, type ListVoiceAgentsParams, type ListVoiceAgentsQueryResult, type ListWebhookDeliveriesParams, type ListWebhookDeliveriesQueryResult, ListWebhookDeliveriesSortOrder, type ListWebhooksQueryResult, type ListWorkerModelsQueryResult, type ListWorkerRunMessagesParams, type ListWorkerRunMessagesQueryResult, type ListWorkerRunsParams, type ListWorkerRunsQueryResult, ListWorkerRunsSortBy, ListWorkerRunsSortOrder, ListWorkerRunsStatus, type ListWorkerWebhooksQueryResult, type ListWorkersParams, type ListWorkersQueryResult, ListWorkersSortBy, ListWorkersSortOrder, type OAuthUrl, type OutboundJob, OutboundJobEnvironment, type OutboundJobList, type OutboundJobMetadata, type OutboundJobPayload, OutboundJobStatus, type PartnerJwks, type PartnerJwksKeysItem, type PartnerLaunch302, type PartnerLaunchMutationResult, type PartnerLaunchParams, type PostChatMessageBody, type PostChatMessageMutationResult, type Profile, ProfilePermissionsItem, ProfileRole, type ProfileTenant, type ProfileTenants, type PromoteVoiceAgentVersionBody, PromoteVoiceAgentVersionBodyEnvironment, type PromoteVoiceAgentVersionMutationResult, type PromotedVoiceAgentVersion, PromotedVoiceAgentVersionEnvironment, type PublicChatAgent, type RefreshTokenBody, type RefreshTokenMutationResult, type RemoveCaseLinkMutationResult, type RemoveCaseLinkResponse, type RemoveMemberMutationResult, type RemoveMemberResponse, type ReplyToEmailBody, type ReplyToEmailBodyAttachmentsItem, type ReplyToEmailMutationResult, type ResendTeamInvitationMutationResult, type RevokeApiKeyMutationResult, type RevokeTeamInvitationMutationResult, type RevokeTeamInvitationResponse, type Schedule, type ScheduleAction, type ScheduleActionOutput, type ScheduleJobBody, ScheduleJobBodyEnvironment, type ScheduleJobBodyMetadata, type ScheduleJobBodyPayload, type ScheduleJobMutationResult, type ScheduleList, type ScheduleRule, type ScheduleRuleOutput, type SearchCasesParams, type SearchCasesQueryResult, type Secret, type SecretList, type SendEmailBody, type SendEmailBodyAttachmentsItem, type SendEmailMutationResult, type SignInBody, type SignInMutationResult, type SignUpBody, type SignUpMutationResult, type SignUpResponse, type TeamInvitation, TeamInvitationState, type TeamMember, TeamMemberRole, type TestWebhookMutationResult, type ToolExecutionResult, type ToolExecutionResultError, type ToolExecutionResultTracesItem, type ToolList, type UpdateApiKeyBody, UpdateApiKeyBodyRole, type UpdateApiKeyMutationResult, type UpdateArtifactMetadataBody, type UpdateArtifactMetadataBodyMetadata, type UpdateArtifactMetadataMutationResult, type UpdateCallControlsBody, type UpdateCallControlsMutationResult, type UpdateChatAgentMutationResult, type UpdateChatAgentPromptBody, type UpdateChatAgentPromptMutationResult, type UpdateChatAgentRequest, type UpdateExtractorBody, type UpdateExtractorBodySchema, type UpdateExtractorMutationResult, type UpdateInboxBody, type UpdateInboxBodyProcessor, UpdateInboxBodyProcessorType, type UpdateInboxMutationResult, type UpdateMemberRoleBody, UpdateMemberRoleBodyRole, type UpdateMemberRoleMutationResult, type UpdateMemberRoleResponse, type UpdateScheduleBody, type UpdateScheduleMutationResult, type UpdateSecretBody, type UpdateSecretMutationResult, type UpdateToolBody, type UpdateToolMutationResult, type UpdateVoiceAgentBody, UpdateVoiceAgentBodyCallProcessorType, type UpdateVoiceAgentCallControlsResponse, type UpdateVoiceAgentModelsBody, UpdateVoiceAgentModelsBodyLanguage, UpdateVoiceAgentModelsBodyLlmModel, UpdateVoiceAgentModelsBodySttModel, UpdateVoiceAgentModelsBodyTtsModel, UpdateVoiceAgentModelsBodyTtsProvider, type UpdateVoiceAgentModelsMutationResult, type UpdateVoiceAgentModelsResponse, type UpdateVoiceAgentMutationResult, type UpdateVoiceAgentPromptBody, type UpdateVoiceAgentPromptMutationResult, type UpdateVoiceAgentResponse, type UpdateWorkerBody, type UpdateWorkerBodySchema, type UpdateWorkerMcpsBody, type UpdateWorkerMcpsMutationResult, type UpdateWorkerMutationResult, type UpdateWorkerPromptBody, type UpdateWorkerPromptMutationResult, type UpdateWorkerRunScopeBody, type UpdateWorkerRunScopeBodyScope, type UpdateWorkerRunScopeMutationResult, type UploadFileBody, type UploadFileBodyMetadata, type UploadFileBodyProcessingOptions, type UploadFileMutationResult, type UploadFileResponse, type VoiceAgent, VoiceAgentBackgroundSounds, VoiceAgentDirection, VoiceAgentLanguage, type VoiceAgentList, VoiceAgentLlmModel, VoiceAgentNoiseCancellation, type VoiceAgentPlaceholders, type VoiceAgentPrompt, type VoiceAgentPromptUpdated, VoiceAgentSttModel, VoiceAgentTtsModel, VoiceAgentTtsProvider, type VoiceAgentVersion, VoiceAgentVersionActiveEnvironmentsItem, type VoiceAgentVersionChangeSummary, type VoiceAgentVersionDetail, VoiceAgentVersionDetailActiveEnvironmentsItem, VoiceAgentVersionDetailBackgroundSounds, VoiceAgentVersionDetailDirection, VoiceAgentVersionDetailLanguage, VoiceAgentVersionDetailLlmModel, VoiceAgentVersionDetailNoiseCancellation, VoiceAgentVersionDetailSttModel, VoiceAgentVersionDetailTtsModel, VoiceAgentVersionDetailTtsProvider, type VoiceAgentVersionList, type VoiceAgentWebhookList, type VoiceAgentWithTestPhoneNumber, VoiceAgentWithTestPhoneNumberBackgroundSounds, VoiceAgentWithTestPhoneNumberDirection, VoiceAgentWithTestPhoneNumberLanguage, VoiceAgentWithTestPhoneNumberLlmModel, VoiceAgentWithTestPhoneNumberNoiseCancellation, VoiceAgentWithTestPhoneNumberSttModel, VoiceAgentWithTestPhoneNumberTtsModel, VoiceAgentWithTestPhoneNumberTtsProvider, type Webhook, type WebhookDelivery, type WebhookDeliveryList, type WebhookScope, type WebhookTestResult, type Worker, type WorkerExecuteToolBody, type WorkerExecuteToolBodyParams, type WorkerExecuteToolMutationResult, type WorkerGetToolQueryResult, type WorkerList, type WorkerListToolsQueryResult, type WorkerMcp, WorkerMcpName, type WorkerMcpOutput, WorkerMcpOutputName, type WorkerModel, type WorkerModelList, type WorkerPrompt, type WorkerPromptUpdated, type WorkerRun, type WorkerRunCreated, type WorkerRunCreatedScope, type WorkerRunList, type WorkerRunMessage, type WorkerRunMessageList, type WorkerRunMessageMessage, type WorkerRunScope, type WorkerSchema, type WorkerSummary, type WorkerTool, type WorkerToolExecutionResult, type WorkerToolExecutionResultError, type WorkerToolList, type WorkerToolSchema, type WorkerToolSummary, type WorkerWebhookList, addCaseLinks, addToolsToVoiceAgent, cancelJob, cancelWorkerRun, checkInboxAvailability, configure, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, createCase, createChat, createChatAgent, createEmail, createExtractor, createExtractorJob, createExtractorWebhook, createInbox, createInboxWebhook, createSchedule, createSecret, createTool, createVoiceAgent, createWorker, createWorkerRun, createWorkerWebhook, deleteArtifact, deleteCallFeedback, deleteChatAgent, deleteEmail, deleteExtractor, deleteInbox, deleteSchedule, deleteSecret, deleteTool, deleteToolsFromVoiceAgent, deleteVoiceAgent, deleteWebhook, deleteWorker, executeCode, generateCodeChallenge, generateCodeVerifier, getAddCaseLinksMutationFetcher, getAddCaseLinksMutationKey, getAddCaseLinksUrl, getAddToolsToVoiceAgentMutationFetcher, getAddToolsToVoiceAgentMutationKey, getAddToolsToVoiceAgentUrl, 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, getCreateEmailMutationFetcher, getCreateEmailMutationKey, getCreateEmailUrl, getCreateExtractorJobMutationFetcher, getCreateExtractorJobMutationKey, getCreateExtractorJobUrl, getCreateExtractorMutationFetcher, getCreateExtractorMutationKey, getCreateExtractorUrl, getCreateExtractorWebhookMutationFetcher, getCreateExtractorWebhookMutationKey, getCreateExtractorWebhookUrl, getCreateInboxMutationFetcher, getCreateInboxMutationKey, getCreateInboxUrl, getCreateInboxWebhookMutationFetcher, getCreateInboxWebhookMutationKey, getCreateInboxWebhookUrl, getCreateScheduleMutationFetcher, getCreateScheduleMutationKey, getCreateScheduleUrl, getCreateSecretMutationFetcher, getCreateSecretMutationKey, getCreateSecretUrl, getCreateToolMutationFetcher, getCreateToolMutationKey, getCreateToolUrl, getCreateVoiceAgentMutationFetcher, getCreateVoiceAgentMutationKey, getCreateVoiceAgentUrl, getCreateWorkerMutationFetcher, getCreateWorkerMutationKey, getCreateWorkerRunMutationFetcher, getCreateWorkerRunMutationKey, getCreateWorkerRunUrl, getCreateWorkerUrl, getCreateWorkerWebhookMutationFetcher, getCreateWorkerWebhookMutationKey, getCreateWorkerWebhookUrl, getDeleteArtifactMutationFetcher, getDeleteArtifactMutationKey, getDeleteArtifactUrl, getDeleteCallFeedbackMutationFetcher, getDeleteCallFeedbackMutationKey, getDeleteCallFeedbackUrl, getDeleteChatAgentMutationFetcher, getDeleteChatAgentMutationKey, getDeleteChatAgentUrl, getDeleteEmailMutationFetcher, getDeleteEmailMutationKey, getDeleteEmailUrl, getDeleteExtractorMutationFetcher, getDeleteExtractorMutationKey, getDeleteExtractorUrl, getDeleteInboxMutationFetcher, getDeleteInboxMutationKey, getDeleteInboxUrl, getDeleteScheduleMutationFetcher, getDeleteScheduleMutationKey, getDeleteScheduleUrl, getDeleteSecretMutationFetcher, getDeleteSecretMutationKey, getDeleteSecretUrl, getDeleteToolMutationFetcher, getDeleteToolMutationKey, getDeleteToolUrl, getDeleteToolsFromVoiceAgentMutationFetcher, getDeleteToolsFromVoiceAgentMutationKey, getDeleteToolsFromVoiceAgentUrl, getDeleteVoiceAgentMutationFetcher, getDeleteVoiceAgentMutationKey, getDeleteVoiceAgentUrl, getDeleteWebhookMutationFetcher, getDeleteWebhookMutationKey, getDeleteWebhookUrl, getDeleteWorkerMutationFetcher, getDeleteWorkerMutationKey, getDeleteWorkerUrl, getEmail, 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, getGetExtractCitationsKey, getGetExtractCitationsUrl, getGetExtractKey, getGetExtractUrl, getGetExtractorJobKey, getGetExtractorJobUrl, getGetExtractorKey, getGetExtractorUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetPartnerJwksKey, getGetPartnerJwksUrl, getGetProfileKey, getGetProfileUrl, getGetPublicChatAgentKey, getGetPublicChatAgentUrl, getGetScheduleKey, getGetScheduleUrl, getGetSecretKey, getGetSecretUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetVoiceAgentKey, getGetVoiceAgentPlaceholdersKey, getGetVoiceAgentPlaceholdersUrl, getGetVoiceAgentPromptKey, getGetVoiceAgentPromptUrl, getGetVoiceAgentUrl, getGetVoiceAgentVersionChangeSummaryKey, getGetVoiceAgentVersionChangeSummaryUrl, getGetVoiceAgentVersionKey, getGetVoiceAgentVersionUrl, getGetWebhookKey, getGetWebhookUrl, getGetWorkerKey, getGetWorkerPromptKey, getGetWorkerPromptUrl, getGetWorkerRunKey, getGetWorkerRunUrl, getGetWorkerUrl, 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, getListJobsKey, getListJobsUrl, getListSchedulesKey, getListSchedulesUrl, getListSecretsKey, getListSecretsUrl, getListTeamInvitationsKey, getListTeamInvitationsUrl, getListTeamMembersKey, getListTeamMembersUrl, getListToolsKey, getListToolsUrl, getListVoiceAgentVersionsKey, getListVoiceAgentVersionsUrl, getListVoiceAgentsKey, getListVoiceAgentsUrl, getListWebhookDeliveriesKey, getListWebhookDeliveriesUrl, getListWebhooksKey, getListWebhooksUrl, getListWorkerModelsKey, getListWorkerModelsUrl, getListWorkerRunMessagesKey, getListWorkerRunMessagesUrl, getListWorkerRunsKey, getListWorkerRunsUrl, getListWorkerWebhooksKey, getListWorkerWebhooksUrl, getListWorkersKey, getListWorkersUrl, getOAuthUrl, getPartnerJwks, getPartnerLaunchMutationFetcher, getPartnerLaunchMutationKey, getPartnerLaunchUrl, getPostChatMessageMutationFetcher, getPostChatMessageMutationKey, getPostChatMessageUrl, getProfile, getPromoteVoiceAgentVersionMutationFetcher, getPromoteVoiceAgentVersionMutationKey, getPromoteVoiceAgentVersionUrl, getPublicChatAgent, getRefreshTokenMutationFetcher, getRefreshTokenMutationKey, getRefreshTokenUrl, getRemoveCaseLinkMutationFetcher, getRemoveCaseLinkMutationKey, getRemoveCaseLinkUrl, getRemoveMemberMutationFetcher, getRemoveMemberMutationKey, getRemoveMemberUrl, getReplyToEmailMutationFetcher, getReplyToEmailMutationKey, getReplyToEmailUrl, getResendTeamInvitationMutationFetcher, getResendTeamInvitationMutationKey, getResendTeamInvitationUrl, getRevokeApiKeyMutationFetcher, getRevokeApiKeyMutationKey, getRevokeApiKeyUrl, getRevokeTeamInvitationMutationFetcher, getRevokeTeamInvitationMutationKey, getRevokeTeamInvitationUrl, getSchedule, getScheduleJobMutationFetcher, getScheduleJobMutationKey, getScheduleJobUrl, getSearchCasesKey, getSearchCasesUrl, getSecret, getSendEmailMutationFetcher, getSendEmailMutationKey, getSendEmailUrl, getSessionToken, getSignInMutationFetcher, getSignInMutationKey, getSignInUrl, getSignUpMutationFetcher, getSignUpMutationKey, getSignUpUrl, getTestWebhookMutationFetcher, getTestWebhookMutationKey, getTestWebhookUrl, getTool, 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, getUpdateWorkerMcpsMutationFetcher, getUpdateWorkerMcpsMutationKey, getUpdateWorkerMcpsUrl, getUpdateWorkerMutationFetcher, getUpdateWorkerMutationKey, getUpdateWorkerPromptMutationFetcher, getUpdateWorkerPromptMutationKey, getUpdateWorkerPromptUrl, getUpdateWorkerRunScopeMutationFetcher, getUpdateWorkerRunScopeMutationKey, getUpdateWorkerRunScopeUrl, getUpdateWorkerUrl, getUploadFileMutationFetcher, getUploadFileMutationKey, getUploadFileUrl, getVoiceAgent, getVoiceAgentPlaceholders, getVoiceAgentPrompt, getVoiceAgentVersion, getVoiceAgentVersionChangeSummary, getWebhook, getWorker, getWorkerExecuteToolMutationFetcher, getWorkerExecuteToolMutationKey, getWorkerExecuteToolUrl, getWorkerGetToolKey, getWorkerGetToolUrl, getWorkerListToolsKey, getWorkerListToolsUrl, getWorkerPrompt, getWorkerRun, inviteTeamMember, listAgentWebhooks, listApiKeys, listArtifacts, listCallFeedback, listCalls, listCaseLinks, listCases, listChatAgents, listChatMessages, listChats, listDispatches, listEmailThreads, listEmails, listExtractorJobs, listExtractors, listExtracts, listInboxWebhooks, listInboxes, listJobs, listSchedules, listSecrets, listTeamInvitations, listTeamMembers, listTools, listVoiceAgentVersions, listVoiceAgents, listWebhookDeliveries, listWebhooks, listWorkerModels, listWorkerRunMessages, listWorkerRuns, listWorkerWebhooks, listWorkers, partnerLaunch, postChatMessage, promoteVoiceAgentVersion, refreshToken, removeCaseLink, removeMember, replyToEmail, resendTeamInvitation, revokeApiKey, revokeTeamInvitation, scheduleJob, searchCases, sendEmail, signIn, signUp, testWebhook, updateApiKey, updateArtifactMetadata, updateCallControls, updateChatAgent, updateChatAgentPrompt, updateExtractor, updateInbox, updateMemberRole, updateSchedule, updateSecret, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateVoiceAgentPrompt, updateWorker, updateWorkerMcps, updateWorkerPrompt, updateWorkerRunScope, uploadFile, useAddCaseLinks, useAddToolsToVoiceAgent, useCancelJob, useCancelWorkerRun, useCheckInboxAvailability, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateCase, useCreateChat, useCreateChatAgent, useCreateEmail, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateInbox, useCreateInboxWebhook, useCreateSchedule, useCreateSecret, useCreateTool, useCreateVoiceAgent, useCreateWorker, useCreateWorkerRun, useCreateWorkerWebhook, useDeleteArtifact, useDeleteCallFeedback, useDeleteChatAgent, useDeleteEmail, useDeleteExtractor, useDeleteInbox, useDeleteSchedule, useDeleteSecret, useDeleteTool, useDeleteToolsFromVoiceAgent, useDeleteVoiceAgent, useDeleteWebhook, useDeleteWorker, useExecuteCode, useGetAnalyticsTimeSeries, useGetArtifact, useGetArtifactMetadataKeys, useGetArtifactStatusSummary, useGetArtifactUploadUrl, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetCase, useGetChat, useGetChatAgent, useGetChatAgentPrompt, useGetEmail, useGetExtract, useGetExtractCitations, useGetExtractor, useGetExtractorJob, useGetOAuthUrl, useGetPartnerJwks, useGetProfile, useGetPublicChatAgent, useGetSchedule, useGetSecret, useGetSessionToken, useGetTool, useGetVoiceAgent, useGetVoiceAgentPlaceholders, useGetVoiceAgentPrompt, useGetVoiceAgentVersion, useGetVoiceAgentVersionChangeSummary, useGetWebhook, useGetWorker, useGetWorkerPrompt, useGetWorkerRun, useInviteTeamMember, useListAgentWebhooks, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListCaseLinks, useListCases, useListChatAgents, useListChatMessages, useListChats, useListDispatches, useListEmailThreads, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListInboxWebhooks, useListInboxes, useListJobs, useListSchedules, useListSecrets, useListTeamInvitations, useListTeamMembers, useListTools, useListVoiceAgentVersions, useListVoiceAgents, useListWebhookDeliveries, useListWebhooks, useListWorkerModels, useListWorkerRunMessages, useListWorkerRuns, useListWorkerWebhooks, useListWorkers, usePartnerLaunch, usePostChatMessage, usePromoteVoiceAgentVersion, useRefreshToken, useRemoveCaseLink, useRemoveMember, useReplyToEmail, useResendTeamInvitation, useRevokeApiKey, useRevokeTeamInvitation, useScheduleJob, useSearchCases, useSendEmail, useSignIn, useSignUp, useTestWebhook, useUpdateApiKey, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateChatAgent, useUpdateChatAgentPrompt, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateSchedule, useUpdateSecret, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateVoiceAgentPrompt, useUpdateWorker, useUpdateWorkerMcps, useUpdateWorkerPrompt, useUpdateWorkerRunScope, useUploadFile, useWorkerExecuteTool, useWorkerGetTool, useWorkerListTools, workerExecuteTool, workerGetTool, workerListTools };
|