@avallon-labs/sdk 51.1.0 → 51.3.0-staging.1139
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 +548 -443
- package/dist/index.js +237 -171
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6179,6 +6179,7 @@ declare const ProfilePermissionsItem: {
|
|
|
6179
6179
|
readonly "secrets:write": "secrets:write";
|
|
6180
6180
|
readonly "schedules:read": "schedules:read";
|
|
6181
6181
|
readonly "schedules:write": "schedules:write";
|
|
6182
|
+
readonly "tenants:write": "tenants:write";
|
|
6182
6183
|
};
|
|
6183
6184
|
|
|
6184
6185
|
/**
|
|
@@ -6328,6 +6329,30 @@ interface GetSessionTokenEnvelope {
|
|
|
6328
6329
|
message: string;
|
|
6329
6330
|
}
|
|
6330
6331
|
|
|
6332
|
+
/**
|
|
6333
|
+
* Generated by orval 🍺
|
|
6334
|
+
* Do not edit manually.
|
|
6335
|
+
* Avallon API
|
|
6336
|
+
* OpenAPI spec version: 1.0.0
|
|
6337
|
+
*/
|
|
6338
|
+
interface TenantSettings {
|
|
6339
|
+
id: string;
|
|
6340
|
+
name: string;
|
|
6341
|
+
approval_gates_enabled: boolean;
|
|
6342
|
+
}
|
|
6343
|
+
|
|
6344
|
+
/**
|
|
6345
|
+
* Generated by orval 🍺
|
|
6346
|
+
* Do not edit manually.
|
|
6347
|
+
* Avallon API
|
|
6348
|
+
* OpenAPI spec version: 1.0.0
|
|
6349
|
+
*/
|
|
6350
|
+
|
|
6351
|
+
interface GetTenantSettingsEnvelope {
|
|
6352
|
+
data: TenantSettings;
|
|
6353
|
+
message: string;
|
|
6354
|
+
}
|
|
6355
|
+
|
|
6331
6356
|
/**
|
|
6332
6357
|
* Generated by orval 🍺
|
|
6333
6358
|
* Do not edit manually.
|
|
@@ -11551,6 +11576,7 @@ interface UpdateInboxEnvelope {
|
|
|
11551
11576
|
type UpdateMemberRoleBodyRole = (typeof UpdateMemberRoleBodyRole)[keyof typeof UpdateMemberRoleBodyRole];
|
|
11552
11577
|
declare const UpdateMemberRoleBodyRole: {
|
|
11553
11578
|
readonly admin: "admin";
|
|
11579
|
+
readonly avallon_admin: "avallon_admin";
|
|
11554
11580
|
readonly member: "member";
|
|
11555
11581
|
};
|
|
11556
11582
|
|
|
@@ -11664,6 +11690,29 @@ interface UpdateSecretEnvelope {
|
|
|
11664
11690
|
message: string;
|
|
11665
11691
|
}
|
|
11666
11692
|
|
|
11693
|
+
/**
|
|
11694
|
+
* Generated by orval 🍺
|
|
11695
|
+
* Do not edit manually.
|
|
11696
|
+
* Avallon API
|
|
11697
|
+
* OpenAPI spec version: 1.0.0
|
|
11698
|
+
*/
|
|
11699
|
+
type UpdateTenantSettingsBody = {
|
|
11700
|
+
/** When true, a worker version can only be promoted to live by someone who did not author any version between the current live version and the candidate. */
|
|
11701
|
+
approval_gates_enabled: boolean;
|
|
11702
|
+
};
|
|
11703
|
+
|
|
11704
|
+
/**
|
|
11705
|
+
* Generated by orval 🍺
|
|
11706
|
+
* Do not edit manually.
|
|
11707
|
+
* Avallon API
|
|
11708
|
+
* OpenAPI spec version: 1.0.0
|
|
11709
|
+
*/
|
|
11710
|
+
|
|
11711
|
+
interface UpdateTenantSettingsEnvelope {
|
|
11712
|
+
data: TenantSettings;
|
|
11713
|
+
message: string;
|
|
11714
|
+
}
|
|
11715
|
+
|
|
11667
11716
|
/**
|
|
11668
11717
|
* Generated by orval 🍺
|
|
11669
11718
|
* Do not edit manually.
|
|
@@ -12374,9 +12423,9 @@ type WorkerListToolsParams = {
|
|
|
12374
12423
|
sort_order?: WorkerListToolsSortOrder;
|
|
12375
12424
|
};
|
|
12376
12425
|
|
|
12377
|
-
type AwaitedInput$
|
|
12378
|
-
type Awaited$
|
|
12379
|
-
type SecondParameter$
|
|
12426
|
+
type AwaitedInput$t<T> = PromiseLike<T> | T;
|
|
12427
|
+
type Awaited$t<O> = O extends AwaitedInput$t<infer T> ? T : never;
|
|
12428
|
+
type SecondParameter$t<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
12380
12429
|
declare const getGetAnalyticsTimeSeriesUrl: (params: GetAnalyticsTimeSeriesParams) => string;
|
|
12381
12430
|
/**
|
|
12382
12431
|
* Retrieve a tenant-scoped time series for a single processing-volume metric.
|
|
@@ -12388,16 +12437,16 @@ declare const getGetAnalyticsTimeSeriesUrl: (params: GetAnalyticsTimeSeriesParam
|
|
|
12388
12437
|
*/
|
|
12389
12438
|
declare const getAnalyticsTimeSeries: (params: GetAnalyticsTimeSeriesParams, options?: Parameters<typeof customFetch>[1]) => Promise<GetAnalyticsTimeSeriesEnvelope>;
|
|
12390
12439
|
declare const getGetAnalyticsTimeSeriesKey: (params: GetAnalyticsTimeSeriesParams) => readonly ["/v1/analytics/timeseries", ...GetAnalyticsTimeSeriesParams[]];
|
|
12391
|
-
type GetAnalyticsTimeSeriesQueryResult = NonNullable<Awaited$
|
|
12440
|
+
type GetAnalyticsTimeSeriesQueryResult = NonNullable<Awaited$t<ReturnType<typeof getAnalyticsTimeSeries>>>;
|
|
12392
12441
|
/**
|
|
12393
12442
|
* @summary Get analytics time series
|
|
12394
12443
|
*/
|
|
12395
12444
|
declare const useGetAnalyticsTimeSeries: <TError = ErrorType<ErrorResponse>>(params: GetAnalyticsTimeSeriesParams, options?: {
|
|
12396
|
-
swr?: SWRConfiguration<Awaited$
|
|
12445
|
+
swr?: SWRConfiguration<Awaited$t<ReturnType<typeof getAnalyticsTimeSeries>>, TError> & {
|
|
12397
12446
|
swrKey?: Key;
|
|
12398
12447
|
enabled?: boolean;
|
|
12399
12448
|
};
|
|
12400
|
-
request?: SecondParameter$
|
|
12449
|
+
request?: SecondParameter$t<typeof customFetch>;
|
|
12401
12450
|
}) => {
|
|
12402
12451
|
data: GetAnalyticsTimeSeriesEnvelope | undefined;
|
|
12403
12452
|
error: TError | undefined;
|
|
@@ -12407,9 +12456,9 @@ declare const useGetAnalyticsTimeSeries: <TError = ErrorType<ErrorResponse>>(par
|
|
|
12407
12456
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
12408
12457
|
};
|
|
12409
12458
|
|
|
12410
|
-
type AwaitedInput$
|
|
12411
|
-
type Awaited$
|
|
12412
|
-
type SecondParameter$
|
|
12459
|
+
type AwaitedInput$s<T> = PromiseLike<T> | T;
|
|
12460
|
+
type Awaited$s<O> = O extends AwaitedInput$s<infer T> ? T : never;
|
|
12461
|
+
type SecondParameter$s<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
12413
12462
|
declare const getListApiKeysUrl: (params?: ListApiKeysParams) => string;
|
|
12414
12463
|
/**
|
|
12415
12464
|
* List all API keys for your tenant.
|
|
@@ -12421,16 +12470,16 @@ declare const getListApiKeysUrl: (params?: ListApiKeysParams) => string;
|
|
|
12421
12470
|
*/
|
|
12422
12471
|
declare const listApiKeys: (params?: ListApiKeysParams, options?: Parameters<typeof customFetch>[1]) => Promise<ListApiKeysEnvelope>;
|
|
12423
12472
|
declare const getListApiKeysKey: (params?: ListApiKeysParams) => readonly ["/platform/api-keys", ...ListApiKeysParams[]];
|
|
12424
|
-
type ListApiKeysQueryResult = NonNullable<Awaited$
|
|
12473
|
+
type ListApiKeysQueryResult = NonNullable<Awaited$s<ReturnType<typeof listApiKeys>>>;
|
|
12425
12474
|
/**
|
|
12426
12475
|
* @summary List API keys
|
|
12427
12476
|
*/
|
|
12428
12477
|
declare const useListApiKeys: <TError = ErrorType<ErrorResponse>>(params?: ListApiKeysParams, options?: {
|
|
12429
|
-
swr?: SWRConfiguration<Awaited$
|
|
12478
|
+
swr?: SWRConfiguration<Awaited$s<ReturnType<typeof listApiKeys>>, TError> & {
|
|
12430
12479
|
swrKey?: Key;
|
|
12431
12480
|
enabled?: boolean;
|
|
12432
12481
|
};
|
|
12433
|
-
request?: SecondParameter$
|
|
12482
|
+
request?: SecondParameter$s<typeof customFetch>;
|
|
12434
12483
|
}) => {
|
|
12435
12484
|
data: ListApiKeysEnvelope | undefined;
|
|
12436
12485
|
error: TError | undefined;
|
|
@@ -12449,19 +12498,19 @@ declare const getCreateApiKeyUrl: () => string;
|
|
|
12449
12498
|
* @summary Create an API key
|
|
12450
12499
|
*/
|
|
12451
12500
|
declare const createApiKey: (createApiKeyBody?: CreateApiKeyBody, options?: Parameters<typeof customFetch>[1]) => Promise<CreateApiKeyEnvelope>;
|
|
12452
|
-
declare const getCreateApiKeyMutationFetcher: (options?: SecondParameter$
|
|
12501
|
+
declare const getCreateApiKeyMutationFetcher: (options?: SecondParameter$s<typeof customFetch>) => (_: Key, { arg }: {
|
|
12453
12502
|
arg: CreateApiKeyBody | undefined;
|
|
12454
12503
|
}) => Promise<CreateApiKeyEnvelope>;
|
|
12455
12504
|
declare const getCreateApiKeyMutationKey: () => readonly ["/platform/api-keys"];
|
|
12456
|
-
type CreateApiKeyMutationResult = NonNullable<Awaited$
|
|
12505
|
+
type CreateApiKeyMutationResult = NonNullable<Awaited$s<ReturnType<typeof createApiKey>>>;
|
|
12457
12506
|
/**
|
|
12458
12507
|
* @summary Create an API key
|
|
12459
12508
|
*/
|
|
12460
12509
|
declare const useCreateApiKey: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
12461
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
12510
|
+
swr?: SWRMutationConfiguration<Awaited$s<ReturnType<typeof createApiKey>>, TError, Key, CreateApiKeyBody | undefined, Awaited$s<ReturnType<typeof createApiKey>>> & {
|
|
12462
12511
|
swrKey?: string;
|
|
12463
12512
|
};
|
|
12464
|
-
request?: SecondParameter$
|
|
12513
|
+
request?: SecondParameter$s<typeof customFetch>;
|
|
12465
12514
|
}) => {
|
|
12466
12515
|
isMutating: boolean;
|
|
12467
12516
|
trigger: swr_mutation.TriggerWithOptionsArgs<CreateApiKeyEnvelope, TError, string | readonly ["/platform/api-keys"], CreateApiKeyBody | undefined>;
|
|
@@ -12480,19 +12529,19 @@ declare const getRevokeApiKeyUrl: (id: string) => string;
|
|
|
12480
12529
|
* @summary Revoke an API key
|
|
12481
12530
|
*/
|
|
12482
12531
|
declare const revokeApiKey: (id: string, options?: Parameters<typeof customFetch>[1]) => Promise<RevokeApiKeyEnvelope>;
|
|
12483
|
-
declare const getRevokeApiKeyMutationFetcher: (id: string, options?: SecondParameter$
|
|
12532
|
+
declare const getRevokeApiKeyMutationFetcher: (id: string, options?: SecondParameter$s<typeof customFetch>) => (_: Key, __: {
|
|
12484
12533
|
arg: Arguments;
|
|
12485
12534
|
}) => Promise<RevokeApiKeyEnvelope>;
|
|
12486
12535
|
declare const getRevokeApiKeyMutationKey: (id: string) => readonly [`/platform/api-keys/${string}/revoke`];
|
|
12487
|
-
type RevokeApiKeyMutationResult = NonNullable<Awaited$
|
|
12536
|
+
type RevokeApiKeyMutationResult = NonNullable<Awaited$s<ReturnType<typeof revokeApiKey>>>;
|
|
12488
12537
|
/**
|
|
12489
12538
|
* @summary Revoke an API key
|
|
12490
12539
|
*/
|
|
12491
12540
|
declare const useRevokeApiKey: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
|
|
12492
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
12541
|
+
swr?: SWRMutationConfiguration<Awaited$s<ReturnType<typeof revokeApiKey>>, TError, Key, Arguments, Awaited$s<ReturnType<typeof revokeApiKey>>> & {
|
|
12493
12542
|
swrKey?: string;
|
|
12494
12543
|
};
|
|
12495
|
-
request?: SecondParameter$
|
|
12544
|
+
request?: SecondParameter$s<typeof customFetch>;
|
|
12496
12545
|
}) => {
|
|
12497
12546
|
isMutating: boolean;
|
|
12498
12547
|
trigger: swr_mutation.TriggerWithOptionsArgs<RevokeApiKeyEnvelope, TError, string | readonly [`/platform/api-keys/${string}/revoke`], Arguments>;
|
|
@@ -12509,19 +12558,19 @@ declare const getUpdateApiKeyUrl: (id: string) => string;
|
|
|
12509
12558
|
* @summary Update API key
|
|
12510
12559
|
*/
|
|
12511
12560
|
declare const updateApiKey: (id: string, updateApiKeyBody?: UpdateApiKeyBody, options?: Parameters<typeof customFetch>[1]) => Promise<UpdateApiKeyEnvelope>;
|
|
12512
|
-
declare const getUpdateApiKeyMutationFetcher: (id: string, options?: SecondParameter$
|
|
12561
|
+
declare const getUpdateApiKeyMutationFetcher: (id: string, options?: SecondParameter$s<typeof customFetch>) => (_: Key, { arg }: {
|
|
12513
12562
|
arg: UpdateApiKeyBody | undefined;
|
|
12514
12563
|
}) => Promise<UpdateApiKeyEnvelope>;
|
|
12515
12564
|
declare const getUpdateApiKeyMutationKey: (id: string) => readonly [`/platform/api-keys/${string}`];
|
|
12516
|
-
type UpdateApiKeyMutationResult = NonNullable<Awaited$
|
|
12565
|
+
type UpdateApiKeyMutationResult = NonNullable<Awaited$s<ReturnType<typeof updateApiKey>>>;
|
|
12517
12566
|
/**
|
|
12518
12567
|
* @summary Update API key
|
|
12519
12568
|
*/
|
|
12520
12569
|
declare const useUpdateApiKey: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
|
|
12521
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
12570
|
+
swr?: SWRMutationConfiguration<Awaited$s<ReturnType<typeof updateApiKey>>, TError, Key, UpdateApiKeyBody | undefined, Awaited$s<ReturnType<typeof updateApiKey>>> & {
|
|
12522
12571
|
swrKey?: string;
|
|
12523
12572
|
};
|
|
12524
|
-
request?: SecondParameter$
|
|
12573
|
+
request?: SecondParameter$s<typeof customFetch>;
|
|
12525
12574
|
}) => {
|
|
12526
12575
|
isMutating: boolean;
|
|
12527
12576
|
trigger: swr_mutation.TriggerWithOptionsArgs<UpdateApiKeyEnvelope, TError, string | readonly [`/platform/api-keys/${string}`], UpdateApiKeyBody | undefined>;
|
|
@@ -12531,9 +12580,9 @@ declare const useUpdateApiKey: <TError = ErrorType<ErrorResponse>>(id: string, o
|
|
|
12531
12580
|
swrKey: string | readonly [`/platform/api-keys/${string}`];
|
|
12532
12581
|
};
|
|
12533
12582
|
|
|
12534
|
-
type AwaitedInput$
|
|
12535
|
-
type Awaited$
|
|
12536
|
-
type SecondParameter$
|
|
12583
|
+
type AwaitedInput$r<T> = PromiseLike<T> | T;
|
|
12584
|
+
type Awaited$r<O> = O extends AwaitedInput$r<infer T> ? T : never;
|
|
12585
|
+
type SecondParameter$r<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
12537
12586
|
declare const getCreateArtifactUrl: () => string;
|
|
12538
12587
|
/**
|
|
12539
12588
|
* Upload a document as a base64-encoded artifact for processing.
|
|
@@ -12549,19 +12598,19 @@ declare const getCreateArtifactUrl: () => string;
|
|
|
12549
12598
|
* @summary Create artifact
|
|
12550
12599
|
*/
|
|
12551
12600
|
declare const createArtifact: (createArtifactBody?: CreateArtifactBody, options?: Parameters<typeof customFetch>[1]) => Promise<CreateArtifactEnvelope>;
|
|
12552
|
-
declare const getCreateArtifactMutationFetcher: (options?: SecondParameter$
|
|
12601
|
+
declare const getCreateArtifactMutationFetcher: (options?: SecondParameter$r<typeof customFetch>) => (_: Key, { arg }: {
|
|
12553
12602
|
arg: CreateArtifactBody | undefined;
|
|
12554
12603
|
}) => Promise<CreateArtifactEnvelope>;
|
|
12555
12604
|
declare const getCreateArtifactMutationKey: () => readonly ["/v1/artifacts"];
|
|
12556
|
-
type CreateArtifactMutationResult = NonNullable<Awaited$
|
|
12605
|
+
type CreateArtifactMutationResult = NonNullable<Awaited$r<ReturnType<typeof createArtifact>>>;
|
|
12557
12606
|
/**
|
|
12558
12607
|
* @summary Create artifact
|
|
12559
12608
|
*/
|
|
12560
12609
|
declare const useCreateArtifact: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
12561
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
12610
|
+
swr?: SWRMutationConfiguration<Awaited$r<ReturnType<typeof createArtifact>>, TError, Key, CreateArtifactBody | undefined, Awaited$r<ReturnType<typeof createArtifact>>> & {
|
|
12562
12611
|
swrKey?: string;
|
|
12563
12612
|
};
|
|
12564
|
-
request?: SecondParameter$
|
|
12613
|
+
request?: SecondParameter$r<typeof customFetch>;
|
|
12565
12614
|
}) => {
|
|
12566
12615
|
isMutating: boolean;
|
|
12567
12616
|
trigger: swr_mutation.TriggerWithOptionsArgs<CreateArtifactEnvelope, TError, string | readonly ["/v1/artifacts"], CreateArtifactBody | undefined>;
|
|
@@ -12591,16 +12640,16 @@ declare const getListArtifactsUrl: (params?: ListArtifactsParams) => string;
|
|
|
12591
12640
|
*/
|
|
12592
12641
|
declare const listArtifacts: (params?: ListArtifactsParams, options?: Parameters<typeof customFetch>[1]) => Promise<ListArtifactsEnvelope>;
|
|
12593
12642
|
declare const getListArtifactsKey: (params?: ListArtifactsParams) => readonly ["/v1/artifacts", ...ListArtifactsParams[]];
|
|
12594
|
-
type ListArtifactsQueryResult = NonNullable<Awaited$
|
|
12643
|
+
type ListArtifactsQueryResult = NonNullable<Awaited$r<ReturnType<typeof listArtifacts>>>;
|
|
12595
12644
|
/**
|
|
12596
12645
|
* @summary List artifacts
|
|
12597
12646
|
*/
|
|
12598
12647
|
declare const useListArtifacts: <TError = ErrorType<ErrorResponse>>(params?: ListArtifactsParams, options?: {
|
|
12599
|
-
swr?: SWRConfiguration<Awaited$
|
|
12648
|
+
swr?: SWRConfiguration<Awaited$r<ReturnType<typeof listArtifacts>>, TError> & {
|
|
12600
12649
|
swrKey?: Key;
|
|
12601
12650
|
enabled?: boolean;
|
|
12602
12651
|
};
|
|
12603
|
-
request?: SecondParameter$
|
|
12652
|
+
request?: SecondParameter$r<typeof customFetch>;
|
|
12604
12653
|
}) => {
|
|
12605
12654
|
data: ListArtifactsEnvelope | undefined;
|
|
12606
12655
|
error: TError | undefined;
|
|
@@ -12618,16 +12667,16 @@ declare const getGetArtifactUrl: (id: string) => string;
|
|
|
12618
12667
|
*/
|
|
12619
12668
|
declare const getArtifact: (id: string, options?: Parameters<typeof customFetch>[1]) => Promise<GetArtifactEnvelope>;
|
|
12620
12669
|
declare const getGetArtifactKey: (id: string) => readonly [`/v1/artifacts/${string}`];
|
|
12621
|
-
type GetArtifactQueryResult = NonNullable<Awaited$
|
|
12670
|
+
type GetArtifactQueryResult = NonNullable<Awaited$r<ReturnType<typeof getArtifact>>>;
|
|
12622
12671
|
/**
|
|
12623
12672
|
* @summary Get artifact
|
|
12624
12673
|
*/
|
|
12625
12674
|
declare const useGetArtifact: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
|
|
12626
|
-
swr?: SWRConfiguration<Awaited$
|
|
12675
|
+
swr?: SWRConfiguration<Awaited$r<ReturnType<typeof getArtifact>>, TError> & {
|
|
12627
12676
|
swrKey?: Key;
|
|
12628
12677
|
enabled?: boolean;
|
|
12629
12678
|
};
|
|
12630
|
-
request?: SecondParameter$
|
|
12679
|
+
request?: SecondParameter$r<typeof customFetch>;
|
|
12631
12680
|
}) => {
|
|
12632
12681
|
data: GetArtifactEnvelope | undefined;
|
|
12633
12682
|
error: TError | undefined;
|
|
@@ -12642,19 +12691,19 @@ declare const getDeleteArtifactUrl: (id: string) => string;
|
|
|
12642
12691
|
* @summary Delete artifact
|
|
12643
12692
|
*/
|
|
12644
12693
|
declare const deleteArtifact: (id: string, options?: Parameters<typeof customFetch>[1]) => Promise<DeleteArtifactEnvelope>;
|
|
12645
|
-
declare const getDeleteArtifactMutationFetcher: (id: string, options?: SecondParameter$
|
|
12694
|
+
declare const getDeleteArtifactMutationFetcher: (id: string, options?: SecondParameter$r<typeof customFetch>) => (_: Key, __: {
|
|
12646
12695
|
arg: Arguments;
|
|
12647
12696
|
}) => Promise<DeleteArtifactEnvelope>;
|
|
12648
12697
|
declare const getDeleteArtifactMutationKey: (id: string) => readonly [`/v1/artifacts/${string}`];
|
|
12649
|
-
type DeleteArtifactMutationResult = NonNullable<Awaited$
|
|
12698
|
+
type DeleteArtifactMutationResult = NonNullable<Awaited$r<ReturnType<typeof deleteArtifact>>>;
|
|
12650
12699
|
/**
|
|
12651
12700
|
* @summary Delete artifact
|
|
12652
12701
|
*/
|
|
12653
12702
|
declare const useDeleteArtifact: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
|
|
12654
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
12703
|
+
swr?: SWRMutationConfiguration<Awaited$r<ReturnType<typeof deleteArtifact>>, TError, Key, Arguments, Awaited$r<ReturnType<typeof deleteArtifact>>> & {
|
|
12655
12704
|
swrKey?: string;
|
|
12656
12705
|
};
|
|
12657
|
-
request?: SecondParameter$
|
|
12706
|
+
request?: SecondParameter$r<typeof customFetch>;
|
|
12658
12707
|
}) => {
|
|
12659
12708
|
isMutating: boolean;
|
|
12660
12709
|
trigger: swr_mutation.TriggerWithOptionsArgs<DeleteArtifactEnvelope, TError, string | readonly [`/v1/artifacts/${string}`], Arguments>;
|
|
@@ -12670,16 +12719,16 @@ declare const getGetArtifactMetadataKeysUrl: (params?: GetArtifactMetadataKeysPa
|
|
|
12670
12719
|
*/
|
|
12671
12720
|
declare const getArtifactMetadataKeys: (params?: GetArtifactMetadataKeysParams, options?: Parameters<typeof customFetch>[1]) => Promise<GetArtifactMetadataKeysEnvelope>;
|
|
12672
12721
|
declare const getGetArtifactMetadataKeysKey: (params?: GetArtifactMetadataKeysParams) => readonly ["/v1/artifacts/metadata/keys", ...GetArtifactMetadataKeysParams[]];
|
|
12673
|
-
type GetArtifactMetadataKeysQueryResult = NonNullable<Awaited$
|
|
12722
|
+
type GetArtifactMetadataKeysQueryResult = NonNullable<Awaited$r<ReturnType<typeof getArtifactMetadataKeys>>>;
|
|
12674
12723
|
/**
|
|
12675
12724
|
* @summary Get artifact metadata keys
|
|
12676
12725
|
*/
|
|
12677
12726
|
declare const useGetArtifactMetadataKeys: <TError = ErrorType<ErrorResponse>>(params?: GetArtifactMetadataKeysParams, options?: {
|
|
12678
|
-
swr?: SWRConfiguration<Awaited$
|
|
12727
|
+
swr?: SWRConfiguration<Awaited$r<ReturnType<typeof getArtifactMetadataKeys>>, TError> & {
|
|
12679
12728
|
swrKey?: Key;
|
|
12680
12729
|
enabled?: boolean;
|
|
12681
12730
|
};
|
|
12682
|
-
request?: SecondParameter$
|
|
12731
|
+
request?: SecondParameter$r<typeof customFetch>;
|
|
12683
12732
|
}) => {
|
|
12684
12733
|
data: GetArtifactMetadataKeysEnvelope | undefined;
|
|
12685
12734
|
error: TError | undefined;
|
|
@@ -12697,16 +12746,16 @@ declare const getGetArtifactStatusSummaryUrl: (params: GetArtifactStatusSummaryP
|
|
|
12697
12746
|
*/
|
|
12698
12747
|
declare const getArtifactStatusSummary: (params: GetArtifactStatusSummaryParams, options?: Parameters<typeof customFetch>[1]) => Promise<GetArtifactStatusSummaryEnvelope>;
|
|
12699
12748
|
declare const getGetArtifactStatusSummaryKey: (params: GetArtifactStatusSummaryParams) => readonly ["/v1/artifacts/status-summary", ...GetArtifactStatusSummaryParams[]];
|
|
12700
|
-
type GetArtifactStatusSummaryQueryResult = NonNullable<Awaited$
|
|
12749
|
+
type GetArtifactStatusSummaryQueryResult = NonNullable<Awaited$r<ReturnType<typeof getArtifactStatusSummary>>>;
|
|
12701
12750
|
/**
|
|
12702
12751
|
* @summary Get artifact status summary
|
|
12703
12752
|
*/
|
|
12704
12753
|
declare const useGetArtifactStatusSummary: <TError = ErrorType<ErrorResponse>>(params: GetArtifactStatusSummaryParams, options?: {
|
|
12705
|
-
swr?: SWRConfiguration<Awaited$
|
|
12754
|
+
swr?: SWRConfiguration<Awaited$r<ReturnType<typeof getArtifactStatusSummary>>, TError> & {
|
|
12706
12755
|
swrKey?: Key;
|
|
12707
12756
|
enabled?: boolean;
|
|
12708
12757
|
};
|
|
12709
|
-
request?: SecondParameter$
|
|
12758
|
+
request?: SecondParameter$r<typeof customFetch>;
|
|
12710
12759
|
}) => {
|
|
12711
12760
|
data: GetArtifactStatusSummaryEnvelope | undefined;
|
|
12712
12761
|
error: TError | undefined;
|
|
@@ -12721,19 +12770,19 @@ declare const getGetArtifactUploadUrlUrl: () => string;
|
|
|
12721
12770
|
* @summary Request a pre-signed URL for direct large file upload
|
|
12722
12771
|
*/
|
|
12723
12772
|
declare const getArtifactUploadUrl: (getArtifactUploadUrlBody?: GetArtifactUploadUrlBody, options?: Parameters<typeof customFetch>[1]) => Promise<GetArtifactUploadUrlEnvelope>;
|
|
12724
|
-
declare const getGetArtifactUploadUrlMutationFetcher: (options?: SecondParameter$
|
|
12773
|
+
declare const getGetArtifactUploadUrlMutationFetcher: (options?: SecondParameter$r<typeof customFetch>) => (_: Key, { arg }: {
|
|
12725
12774
|
arg: GetArtifactUploadUrlBody | undefined;
|
|
12726
12775
|
}) => Promise<GetArtifactUploadUrlEnvelope>;
|
|
12727
12776
|
declare const getGetArtifactUploadUrlMutationKey: () => readonly ["/v1/artifacts/get-upload-url"];
|
|
12728
|
-
type GetArtifactUploadUrlMutationResult = NonNullable<Awaited$
|
|
12777
|
+
type GetArtifactUploadUrlMutationResult = NonNullable<Awaited$r<ReturnType<typeof getArtifactUploadUrl>>>;
|
|
12729
12778
|
/**
|
|
12730
12779
|
* @summary Request a pre-signed URL for direct large file upload
|
|
12731
12780
|
*/
|
|
12732
12781
|
declare const useGetArtifactUploadUrl: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
12733
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
12782
|
+
swr?: SWRMutationConfiguration<Awaited$r<ReturnType<typeof getArtifactUploadUrl>>, TError, Key, GetArtifactUploadUrlBody | undefined, Awaited$r<ReturnType<typeof getArtifactUploadUrl>>> & {
|
|
12734
12783
|
swrKey?: string;
|
|
12735
12784
|
};
|
|
12736
|
-
request?: SecondParameter$
|
|
12785
|
+
request?: SecondParameter$r<typeof customFetch>;
|
|
12737
12786
|
}) => {
|
|
12738
12787
|
isMutating: boolean;
|
|
12739
12788
|
trigger: swr_mutation.TriggerWithOptionsArgs<GetArtifactUploadUrlEnvelope, TError, string | readonly ["/v1/artifacts/get-upload-url"], GetArtifactUploadUrlBody | undefined>;
|
|
@@ -12748,19 +12797,19 @@ declare const getUpdateArtifactMetadataUrl: (id: string) => string;
|
|
|
12748
12797
|
* @summary Update artifact metadata
|
|
12749
12798
|
*/
|
|
12750
12799
|
declare const updateArtifactMetadata: (id: string, updateArtifactMetadataBody?: UpdateArtifactMetadataBody, options?: Parameters<typeof customFetch>[1]) => Promise<UpdateArtifactMetadataEnvelope>;
|
|
12751
|
-
declare const getUpdateArtifactMetadataMutationFetcher: (id: string, options?: SecondParameter$
|
|
12800
|
+
declare const getUpdateArtifactMetadataMutationFetcher: (id: string, options?: SecondParameter$r<typeof customFetch>) => (_: Key, { arg }: {
|
|
12752
12801
|
arg: UpdateArtifactMetadataBody | undefined;
|
|
12753
12802
|
}) => Promise<UpdateArtifactMetadataEnvelope>;
|
|
12754
12803
|
declare const getUpdateArtifactMetadataMutationKey: (id: string) => readonly [`/v1/artifacts/${string}/metadata`];
|
|
12755
|
-
type UpdateArtifactMetadataMutationResult = NonNullable<Awaited$
|
|
12804
|
+
type UpdateArtifactMetadataMutationResult = NonNullable<Awaited$r<ReturnType<typeof updateArtifactMetadata>>>;
|
|
12756
12805
|
/**
|
|
12757
12806
|
* @summary Update artifact metadata
|
|
12758
12807
|
*/
|
|
12759
12808
|
declare const useUpdateArtifactMetadata: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
|
|
12760
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
12809
|
+
swr?: SWRMutationConfiguration<Awaited$r<ReturnType<typeof updateArtifactMetadata>>, TError, Key, UpdateArtifactMetadataBody | undefined, Awaited$r<ReturnType<typeof updateArtifactMetadata>>> & {
|
|
12761
12810
|
swrKey?: string;
|
|
12762
12811
|
};
|
|
12763
|
-
request?: SecondParameter$
|
|
12812
|
+
request?: SecondParameter$r<typeof customFetch>;
|
|
12764
12813
|
}) => {
|
|
12765
12814
|
isMutating: boolean;
|
|
12766
12815
|
trigger: swr_mutation.TriggerWithOptionsArgs<UpdateArtifactMetadataEnvelope, TError, string | readonly [`/v1/artifacts/${string}/metadata`], UpdateArtifactMetadataBody | undefined>;
|
|
@@ -12777,19 +12826,19 @@ declare const getUploadFileUrl: () => string;
|
|
|
12777
12826
|
* @summary Upload a file for processing
|
|
12778
12827
|
*/
|
|
12779
12828
|
declare const uploadFile: (uploadFileBody?: UploadFileBody, options?: Parameters<typeof customFetch>[1]) => Promise<UploadFileEnvelope>;
|
|
12780
|
-
declare const getUploadFileMutationFetcher: (options?: SecondParameter$
|
|
12829
|
+
declare const getUploadFileMutationFetcher: (options?: SecondParameter$r<typeof customFetch>) => (_: Key, { arg }: {
|
|
12781
12830
|
arg: UploadFileBody | undefined;
|
|
12782
12831
|
}) => Promise<UploadFileEnvelope>;
|
|
12783
12832
|
declare const getUploadFileMutationKey: () => readonly ["/v1/upload-file"];
|
|
12784
|
-
type UploadFileMutationResult = NonNullable<Awaited$
|
|
12833
|
+
type UploadFileMutationResult = NonNullable<Awaited$r<ReturnType<typeof uploadFile>>>;
|
|
12785
12834
|
/**
|
|
12786
12835
|
* @summary Upload a file for processing
|
|
12787
12836
|
*/
|
|
12788
12837
|
declare const useUploadFile: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
12789
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
12838
|
+
swr?: SWRMutationConfiguration<Awaited$r<ReturnType<typeof uploadFile>>, TError, Key, UploadFileBody | undefined, Awaited$r<ReturnType<typeof uploadFile>>> & {
|
|
12790
12839
|
swrKey?: string;
|
|
12791
12840
|
};
|
|
12792
|
-
request?: SecondParameter$
|
|
12841
|
+
request?: SecondParameter$r<typeof customFetch>;
|
|
12793
12842
|
}) => {
|
|
12794
12843
|
isMutating: boolean;
|
|
12795
12844
|
trigger: swr_mutation.TriggerWithOptionsArgs<UploadFileEnvelope, TError, string | readonly ["/v1/upload-file"], UploadFileBody | undefined>;
|
|
@@ -12799,28 +12848,28 @@ declare const useUploadFile: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
12799
12848
|
swrKey: string | readonly ["/v1/upload-file"];
|
|
12800
12849
|
};
|
|
12801
12850
|
|
|
12802
|
-
type AwaitedInput$
|
|
12803
|
-
type Awaited$
|
|
12804
|
-
type SecondParameter$
|
|
12851
|
+
type AwaitedInput$q<T> = PromiseLike<T> | T;
|
|
12852
|
+
type Awaited$q<O> = O extends AwaitedInput$q<infer T> ? T : never;
|
|
12853
|
+
type SecondParameter$q<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
12805
12854
|
declare const getSignUpUrl: () => string;
|
|
12806
12855
|
/**
|
|
12807
12856
|
* 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.
|
|
12808
12857
|
* @summary Sign up
|
|
12809
12858
|
*/
|
|
12810
12859
|
declare const signUp: (signUpBody?: SignUpBody, options?: Parameters<typeof customFetchNoAuth>[1]) => Promise<SignUpEnvelope>;
|
|
12811
|
-
declare const getSignUpMutationFetcher: (options?: SecondParameter$
|
|
12860
|
+
declare const getSignUpMutationFetcher: (options?: SecondParameter$q<typeof customFetchNoAuth>) => (_: Key, { arg }: {
|
|
12812
12861
|
arg: SignUpBody | undefined;
|
|
12813
12862
|
}) => Promise<SignUpEnvelope>;
|
|
12814
12863
|
declare const getSignUpMutationKey: () => readonly ["/v1/auth/sign-up"];
|
|
12815
|
-
type SignUpMutationResult = NonNullable<Awaited$
|
|
12864
|
+
type SignUpMutationResult = NonNullable<Awaited$q<ReturnType<typeof signUp>>>;
|
|
12816
12865
|
/**
|
|
12817
12866
|
* @summary Sign up
|
|
12818
12867
|
*/
|
|
12819
12868
|
declare const useSignUp: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
12820
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
12869
|
+
swr?: SWRMutationConfiguration<Awaited$q<ReturnType<typeof signUp>>, TError, Key, SignUpBody | undefined, Awaited$q<ReturnType<typeof signUp>>> & {
|
|
12821
12870
|
swrKey?: string;
|
|
12822
12871
|
};
|
|
12823
|
-
request?: SecondParameter$
|
|
12872
|
+
request?: SecondParameter$q<typeof customFetchNoAuth>;
|
|
12824
12873
|
}) => {
|
|
12825
12874
|
isMutating: boolean;
|
|
12826
12875
|
trigger: swr_mutation.TriggerWithOptionsArgs<SignUpEnvelope, TError, string | readonly ["/v1/auth/sign-up"], SignUpBody | undefined>;
|
|
@@ -12839,19 +12888,19 @@ declare const getSignInUrl: () => string;
|
|
|
12839
12888
|
* @summary Sign in
|
|
12840
12889
|
*/
|
|
12841
12890
|
declare const signIn: (signInBody?: SignInBody, options?: Parameters<typeof customFetchNoAuth>[1]) => Promise<SignInEnvelope>;
|
|
12842
|
-
declare const getSignInMutationFetcher: (options?: SecondParameter$
|
|
12891
|
+
declare const getSignInMutationFetcher: (options?: SecondParameter$q<typeof customFetchNoAuth>) => (_: Key, { arg }: {
|
|
12843
12892
|
arg: SignInBody | undefined;
|
|
12844
12893
|
}) => Promise<SignInEnvelope>;
|
|
12845
12894
|
declare const getSignInMutationKey: () => readonly ["/v1/auth/sign-in"];
|
|
12846
|
-
type SignInMutationResult = NonNullable<Awaited$
|
|
12895
|
+
type SignInMutationResult = NonNullable<Awaited$q<ReturnType<typeof signIn>>>;
|
|
12847
12896
|
/**
|
|
12848
12897
|
* @summary Sign in
|
|
12849
12898
|
*/
|
|
12850
12899
|
declare const useSignIn: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
12851
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
12900
|
+
swr?: SWRMutationConfiguration<Awaited$q<ReturnType<typeof signIn>>, TError, Key, SignInBody | undefined, Awaited$q<ReturnType<typeof signIn>>> & {
|
|
12852
12901
|
swrKey?: string;
|
|
12853
12902
|
};
|
|
12854
|
-
request?: SecondParameter$
|
|
12903
|
+
request?: SecondParameter$q<typeof customFetchNoAuth>;
|
|
12855
12904
|
}) => {
|
|
12856
12905
|
isMutating: boolean;
|
|
12857
12906
|
trigger: swr_mutation.TriggerWithOptionsArgs<SignInEnvelope, TError, string | readonly ["/v1/auth/sign-in"], SignInBody | undefined>;
|
|
@@ -12866,19 +12915,19 @@ declare const getRequestPasswordResetUrl: () => string;
|
|
|
12866
12915
|
* @summary Request password reset
|
|
12867
12916
|
*/
|
|
12868
12917
|
declare const requestPasswordReset: (requestPasswordResetBody?: RequestPasswordResetBody, options?: Parameters<typeof customFetchNoAuth>[1]) => Promise<RequestPasswordResetEnvelope>;
|
|
12869
|
-
declare const getRequestPasswordResetMutationFetcher: (options?: SecondParameter$
|
|
12918
|
+
declare const getRequestPasswordResetMutationFetcher: (options?: SecondParameter$q<typeof customFetchNoAuth>) => (_: Key, { arg }: {
|
|
12870
12919
|
arg: RequestPasswordResetBody | undefined;
|
|
12871
12920
|
}) => Promise<RequestPasswordResetEnvelope>;
|
|
12872
12921
|
declare const getRequestPasswordResetMutationKey: () => readonly ["/v1/auth/request-password-reset"];
|
|
12873
|
-
type RequestPasswordResetMutationResult = NonNullable<Awaited$
|
|
12922
|
+
type RequestPasswordResetMutationResult = NonNullable<Awaited$q<ReturnType<typeof requestPasswordReset>>>;
|
|
12874
12923
|
/**
|
|
12875
12924
|
* @summary Request password reset
|
|
12876
12925
|
*/
|
|
12877
12926
|
declare const useRequestPasswordReset: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
12878
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
12927
|
+
swr?: SWRMutationConfiguration<Awaited$q<ReturnType<typeof requestPasswordReset>>, TError, Key, RequestPasswordResetBody | undefined, Awaited$q<ReturnType<typeof requestPasswordReset>>> & {
|
|
12879
12928
|
swrKey?: string;
|
|
12880
12929
|
};
|
|
12881
|
-
request?: SecondParameter$
|
|
12930
|
+
request?: SecondParameter$q<typeof customFetchNoAuth>;
|
|
12882
12931
|
}) => {
|
|
12883
12932
|
isMutating: boolean;
|
|
12884
12933
|
trigger: swr_mutation.TriggerWithOptionsArgs<RequestPasswordResetEnvelope, TError, string | readonly ["/v1/auth/request-password-reset"], RequestPasswordResetBody | undefined>;
|
|
@@ -12893,19 +12942,19 @@ declare const getResetPasswordUrl: () => string;
|
|
|
12893
12942
|
* @summary Reset password
|
|
12894
12943
|
*/
|
|
12895
12944
|
declare const resetPassword: (resetPasswordBody?: ResetPasswordBody, options?: Parameters<typeof customFetchNoAuth>[1]) => Promise<ResetPasswordEnvelope>;
|
|
12896
|
-
declare const getResetPasswordMutationFetcher: (options?: SecondParameter$
|
|
12945
|
+
declare const getResetPasswordMutationFetcher: (options?: SecondParameter$q<typeof customFetchNoAuth>) => (_: Key, { arg }: {
|
|
12897
12946
|
arg: ResetPasswordBody | undefined;
|
|
12898
12947
|
}) => Promise<ResetPasswordEnvelope>;
|
|
12899
12948
|
declare const getResetPasswordMutationKey: () => readonly ["/v1/auth/reset-password"];
|
|
12900
|
-
type ResetPasswordMutationResult = NonNullable<Awaited$
|
|
12949
|
+
type ResetPasswordMutationResult = NonNullable<Awaited$q<ReturnType<typeof resetPassword>>>;
|
|
12901
12950
|
/**
|
|
12902
12951
|
* @summary Reset password
|
|
12903
12952
|
*/
|
|
12904
12953
|
declare const useResetPassword: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
12905
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
12954
|
+
swr?: SWRMutationConfiguration<Awaited$q<ReturnType<typeof resetPassword>>, TError, Key, ResetPasswordBody | undefined, Awaited$q<ReturnType<typeof resetPassword>>> & {
|
|
12906
12955
|
swrKey?: string;
|
|
12907
12956
|
};
|
|
12908
|
-
request?: SecondParameter$
|
|
12957
|
+
request?: SecondParameter$q<typeof customFetchNoAuth>;
|
|
12909
12958
|
}) => {
|
|
12910
12959
|
isMutating: boolean;
|
|
12911
12960
|
trigger: swr_mutation.TriggerWithOptionsArgs<ResetPasswordEnvelope, TError, string | readonly ["/v1/auth/reset-password"], ResetPasswordBody | undefined>;
|
|
@@ -12920,19 +12969,19 @@ declare const getRefreshTokenUrl: () => string;
|
|
|
12920
12969
|
* @summary Refresh authentication token
|
|
12921
12970
|
*/
|
|
12922
12971
|
declare const refreshToken: (refreshTokenBody?: RefreshTokenBody, options?: Parameters<typeof customFetchNoAuth>[1]) => Promise<RefreshTokenEnvelope>;
|
|
12923
|
-
declare const getRefreshTokenMutationFetcher: (options?: SecondParameter$
|
|
12972
|
+
declare const getRefreshTokenMutationFetcher: (options?: SecondParameter$q<typeof customFetchNoAuth>) => (_: Key, { arg }: {
|
|
12924
12973
|
arg: RefreshTokenBody | undefined;
|
|
12925
12974
|
}) => Promise<RefreshTokenEnvelope>;
|
|
12926
12975
|
declare const getRefreshTokenMutationKey: () => readonly ["/v1/auth/refresh-token"];
|
|
12927
|
-
type RefreshTokenMutationResult = NonNullable<Awaited$
|
|
12976
|
+
type RefreshTokenMutationResult = NonNullable<Awaited$q<ReturnType<typeof refreshToken>>>;
|
|
12928
12977
|
/**
|
|
12929
12978
|
* @summary Refresh authentication token
|
|
12930
12979
|
*/
|
|
12931
12980
|
declare const useRefreshToken: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
12932
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
12981
|
+
swr?: SWRMutationConfiguration<Awaited$q<ReturnType<typeof refreshToken>>, TError, Key, RefreshTokenBody | undefined, Awaited$q<ReturnType<typeof refreshToken>>> & {
|
|
12933
12982
|
swrKey?: string;
|
|
12934
12983
|
};
|
|
12935
|
-
request?: SecondParameter$
|
|
12984
|
+
request?: SecondParameter$q<typeof customFetchNoAuth>;
|
|
12936
12985
|
}) => {
|
|
12937
12986
|
isMutating: boolean;
|
|
12938
12987
|
trigger: swr_mutation.TriggerWithOptionsArgs<RefreshTokenEnvelope, TError, string | readonly ["/v1/auth/refresh-token"], RefreshTokenBody | undefined>;
|
|
@@ -12952,16 +13001,16 @@ declare const getGetOAuthUrlUrl: (params: GetOAuthUrlParams) => string;
|
|
|
12952
13001
|
*/
|
|
12953
13002
|
declare const getOAuthUrl: (params: GetOAuthUrlParams, options?: Parameters<typeof customFetchNoAuth>[1]) => Promise<GetOAuthUrlEnvelope>;
|
|
12954
13003
|
declare const getGetOAuthUrlKey: (params: GetOAuthUrlParams) => readonly ["/v1/auth/oauth-url", ...GetOAuthUrlParams[]];
|
|
12955
|
-
type GetOAuthUrlQueryResult = NonNullable<Awaited$
|
|
13004
|
+
type GetOAuthUrlQueryResult = NonNullable<Awaited$q<ReturnType<typeof getOAuthUrl>>>;
|
|
12956
13005
|
/**
|
|
12957
13006
|
* @summary Get OAuth sign-in URL
|
|
12958
13007
|
*/
|
|
12959
13008
|
declare const useGetOAuthUrl: <TError = ErrorType<ErrorResponse>>(params: GetOAuthUrlParams, options?: {
|
|
12960
|
-
swr?: SWRConfiguration<Awaited$
|
|
13009
|
+
swr?: SWRConfiguration<Awaited$q<ReturnType<typeof getOAuthUrl>>, TError> & {
|
|
12961
13010
|
swrKey?: Key;
|
|
12962
13011
|
enabled?: boolean;
|
|
12963
13012
|
};
|
|
12964
|
-
request?: SecondParameter$
|
|
13013
|
+
request?: SecondParameter$q<typeof customFetchNoAuth>;
|
|
12965
13014
|
}) => {
|
|
12966
13015
|
data: GetOAuthUrlEnvelope | undefined;
|
|
12967
13016
|
error: TError | undefined;
|
|
@@ -12980,19 +13029,19 @@ declare const getGetSessionTokenUrl: () => string;
|
|
|
12980
13029
|
* @summary Create or switch tenant session
|
|
12981
13030
|
*/
|
|
12982
13031
|
declare const getSessionToken: (getSessionTokenBody?: GetSessionTokenBody, options?: Parameters<typeof customFetchNoAuth>[1]) => Promise<GetSessionTokenEnvelope>;
|
|
12983
|
-
declare const getGetSessionTokenMutationFetcher: (options?: SecondParameter$
|
|
13032
|
+
declare const getGetSessionTokenMutationFetcher: (options?: SecondParameter$q<typeof customFetchNoAuth>) => (_: Key, { arg }: {
|
|
12984
13033
|
arg: GetSessionTokenBody | undefined;
|
|
12985
13034
|
}) => Promise<GetSessionTokenEnvelope>;
|
|
12986
13035
|
declare const getGetSessionTokenMutationKey: () => readonly ["/v1/auth/session"];
|
|
12987
|
-
type GetSessionTokenMutationResult = NonNullable<Awaited$
|
|
13036
|
+
type GetSessionTokenMutationResult = NonNullable<Awaited$q<ReturnType<typeof getSessionToken>>>;
|
|
12988
13037
|
/**
|
|
12989
13038
|
* @summary Create or switch tenant session
|
|
12990
13039
|
*/
|
|
12991
13040
|
declare const useGetSessionToken: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
12992
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
13041
|
+
swr?: SWRMutationConfiguration<Awaited$q<ReturnType<typeof getSessionToken>>, TError, Key, GetSessionTokenBody | undefined, Awaited$q<ReturnType<typeof getSessionToken>>> & {
|
|
12993
13042
|
swrKey?: string;
|
|
12994
13043
|
};
|
|
12995
|
-
request?: SecondParameter$
|
|
13044
|
+
request?: SecondParameter$q<typeof customFetchNoAuth>;
|
|
12996
13045
|
}) => {
|
|
12997
13046
|
isMutating: boolean;
|
|
12998
13047
|
trigger: swr_mutation.TriggerWithOptionsArgs<GetSessionTokenEnvelope, TError, string | readonly ["/v1/auth/session"], GetSessionTokenBody | undefined>;
|
|
@@ -13008,16 +13057,16 @@ declare const getGetPartnerJwksUrl: (partner: string) => string;
|
|
|
13008
13057
|
*/
|
|
13009
13058
|
declare const getPartnerJwks: (partner: string, options?: Parameters<typeof customFetchNoAuth>[1]) => Promise<PartnerJwks>;
|
|
13010
13059
|
declare const getGetPartnerJwksKey: (partner: string) => readonly [`/.well-known/partners/${string}/jwks.json`];
|
|
13011
|
-
type GetPartnerJwksQueryResult = NonNullable<Awaited$
|
|
13060
|
+
type GetPartnerJwksQueryResult = NonNullable<Awaited$q<ReturnType<typeof getPartnerJwks>>>;
|
|
13012
13061
|
/**
|
|
13013
13062
|
* @summary Get partner JWKS
|
|
13014
13063
|
*/
|
|
13015
13064
|
declare const useGetPartnerJwks: <TError = ErrorType<ErrorResponse>>(partner: string, options?: {
|
|
13016
|
-
swr?: SWRConfiguration<Awaited$
|
|
13065
|
+
swr?: SWRConfiguration<Awaited$q<ReturnType<typeof getPartnerJwks>>, TError> & {
|
|
13017
13066
|
swrKey?: Key;
|
|
13018
13067
|
enabled?: boolean;
|
|
13019
13068
|
};
|
|
13020
|
-
request?: SecondParameter$
|
|
13069
|
+
request?: SecondParameter$q<typeof customFetchNoAuth>;
|
|
13021
13070
|
}) => {
|
|
13022
13071
|
data: PartnerJwks | undefined;
|
|
13023
13072
|
error: TError | undefined;
|
|
@@ -13032,19 +13081,19 @@ declare const getPartnerLaunchUrl: (params?: PartnerLaunchParams) => string;
|
|
|
13032
13081
|
* @summary Partner launch (SSO)
|
|
13033
13082
|
*/
|
|
13034
13083
|
declare const partnerLaunch: (params?: PartnerLaunchParams, options?: Parameters<typeof customFetchNoAuth>[1]) => Promise<unknown>;
|
|
13035
|
-
declare const getPartnerLaunchMutationFetcher: (params?: PartnerLaunchParams, options?: SecondParameter$
|
|
13084
|
+
declare const getPartnerLaunchMutationFetcher: (params?: PartnerLaunchParams, options?: SecondParameter$q<typeof customFetchNoAuth>) => (_: Key, __: {
|
|
13036
13085
|
arg: Arguments;
|
|
13037
13086
|
}) => Promise<unknown>;
|
|
13038
13087
|
declare const getPartnerLaunchMutationKey: (params?: PartnerLaunchParams) => readonly ["/v1/auth/partner-launch", ...PartnerLaunchParams[]];
|
|
13039
|
-
type PartnerLaunchMutationResult = NonNullable<Awaited$
|
|
13088
|
+
type PartnerLaunchMutationResult = NonNullable<Awaited$q<ReturnType<typeof partnerLaunch>>>;
|
|
13040
13089
|
/**
|
|
13041
13090
|
* @summary Partner launch (SSO)
|
|
13042
13091
|
*/
|
|
13043
13092
|
declare const usePartnerLaunch: <TError = ErrorType<PartnerLaunchEnvelope | ErrorResponse>>(params?: PartnerLaunchParams, options?: {
|
|
13044
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
13093
|
+
swr?: SWRMutationConfiguration<Awaited$q<ReturnType<typeof partnerLaunch>>, TError, Key, Arguments, Awaited$q<ReturnType<typeof partnerLaunch>>> & {
|
|
13045
13094
|
swrKey?: string;
|
|
13046
13095
|
};
|
|
13047
|
-
request?: SecondParameter$
|
|
13096
|
+
request?: SecondParameter$q<typeof customFetchNoAuth>;
|
|
13048
13097
|
}) => {
|
|
13049
13098
|
isMutating: boolean;
|
|
13050
13099
|
trigger: swr_mutation.TriggerWithOptionsArgs<unknown, TError, string | readonly ["/v1/auth/partner-launch", ...PartnerLaunchParams[]], Arguments>;
|
|
@@ -13054,28 +13103,28 @@ declare const usePartnerLaunch: <TError = ErrorType<PartnerLaunchEnvelope | Erro
|
|
|
13054
13103
|
swrKey: string | readonly ["/v1/auth/partner-launch", ...PartnerLaunchParams[]];
|
|
13055
13104
|
};
|
|
13056
13105
|
|
|
13057
|
-
type AwaitedInput$
|
|
13058
|
-
type Awaited$
|
|
13059
|
-
type SecondParameter$
|
|
13106
|
+
type AwaitedInput$p<T> = PromiseLike<T> | T;
|
|
13107
|
+
type Awaited$p<O> = O extends AwaitedInput$p<infer T> ? T : never;
|
|
13108
|
+
type SecondParameter$p<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
13060
13109
|
declare const getCreateCallFeedbackUrl: (id: string) => string;
|
|
13061
13110
|
/**
|
|
13062
13111
|
* 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.
|
|
13063
13112
|
* @summary Create feedback on a call message
|
|
13064
13113
|
*/
|
|
13065
13114
|
declare const createCallFeedback: (id: string, createFeedbackRequest?: CreateFeedbackRequest, options?: Parameters<typeof customFetch>[1]) => Promise<CreateCallFeedbackEnvelope>;
|
|
13066
|
-
declare const getCreateCallFeedbackMutationFetcher: (id: string, options?: SecondParameter$
|
|
13115
|
+
declare const getCreateCallFeedbackMutationFetcher: (id: string, options?: SecondParameter$p<typeof customFetch>) => (_: Key, { arg }: {
|
|
13067
13116
|
arg: CreateFeedbackRequest | undefined;
|
|
13068
13117
|
}) => Promise<CreateCallFeedbackEnvelope>;
|
|
13069
13118
|
declare const getCreateCallFeedbackMutationKey: (id: string) => readonly [`/v1/calls/${string}/feedback`];
|
|
13070
|
-
type CreateCallFeedbackMutationResult = NonNullable<Awaited$
|
|
13119
|
+
type CreateCallFeedbackMutationResult = NonNullable<Awaited$p<ReturnType<typeof createCallFeedback>>>;
|
|
13071
13120
|
/**
|
|
13072
13121
|
* @summary Create feedback on a call message
|
|
13073
13122
|
*/
|
|
13074
13123
|
declare const useCreateCallFeedback: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
|
|
13075
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
13124
|
+
swr?: SWRMutationConfiguration<Awaited$p<ReturnType<typeof createCallFeedback>>, TError, Key, CreateFeedbackRequest | undefined, Awaited$p<ReturnType<typeof createCallFeedback>>> & {
|
|
13076
13125
|
swrKey?: string;
|
|
13077
13126
|
};
|
|
13078
|
-
request?: SecondParameter$
|
|
13127
|
+
request?: SecondParameter$p<typeof customFetch>;
|
|
13079
13128
|
}) => {
|
|
13080
13129
|
isMutating: boolean;
|
|
13081
13130
|
trigger: swr_mutation.TriggerWithOptionsArgs<CreateCallFeedbackEnvelope, TError, string | readonly [`/v1/calls/${string}/feedback`], CreateFeedbackRequest | undefined>;
|
|
@@ -13091,16 +13140,16 @@ declare const getListCallFeedbackUrl: (id: string, params?: ListCallFeedbackPara
|
|
|
13091
13140
|
*/
|
|
13092
13141
|
declare const listCallFeedback: (id: string, params?: ListCallFeedbackParams, options?: Parameters<typeof customFetch>[1]) => Promise<ListCallFeedbackEnvelope>;
|
|
13093
13142
|
declare const getListCallFeedbackKey: (id: string, params?: ListCallFeedbackParams) => readonly [`/v1/calls/${string}/feedback`, ...ListCallFeedbackParams[]];
|
|
13094
|
-
type ListCallFeedbackQueryResult = NonNullable<Awaited$
|
|
13143
|
+
type ListCallFeedbackQueryResult = NonNullable<Awaited$p<ReturnType<typeof listCallFeedback>>>;
|
|
13095
13144
|
/**
|
|
13096
13145
|
* @summary List feedback for a call
|
|
13097
13146
|
*/
|
|
13098
13147
|
declare const useListCallFeedback: <TError = ErrorType<ErrorResponse>>(id: string, params?: ListCallFeedbackParams, options?: {
|
|
13099
|
-
swr?: SWRConfiguration<Awaited$
|
|
13148
|
+
swr?: SWRConfiguration<Awaited$p<ReturnType<typeof listCallFeedback>>, TError> & {
|
|
13100
13149
|
swrKey?: Key;
|
|
13101
13150
|
enabled?: boolean;
|
|
13102
13151
|
};
|
|
13103
|
-
request?: SecondParameter$
|
|
13152
|
+
request?: SecondParameter$p<typeof customFetch>;
|
|
13104
13153
|
}) => {
|
|
13105
13154
|
data: ListCallFeedbackEnvelope | undefined;
|
|
13106
13155
|
error: TError | undefined;
|
|
@@ -13115,19 +13164,19 @@ declare const getDeleteCallFeedbackUrl: (id: string, feedbackId: string) => stri
|
|
|
13115
13164
|
* @summary Delete feedback
|
|
13116
13165
|
*/
|
|
13117
13166
|
declare const deleteCallFeedback: (id: string, feedbackId: string, options?: Parameters<typeof customFetch>[1]) => Promise<DeleteCallFeedbackEnvelope>;
|
|
13118
|
-
declare const getDeleteCallFeedbackMutationFetcher: (id: string, feedbackId: string, options?: SecondParameter$
|
|
13167
|
+
declare const getDeleteCallFeedbackMutationFetcher: (id: string, feedbackId: string, options?: SecondParameter$p<typeof customFetch>) => (_: Key, __: {
|
|
13119
13168
|
arg: Arguments;
|
|
13120
13169
|
}) => Promise<DeleteCallFeedbackEnvelope>;
|
|
13121
13170
|
declare const getDeleteCallFeedbackMutationKey: (id: string, feedbackId: string) => readonly [`/v1/calls/${string}/feedback/${string}`];
|
|
13122
|
-
type DeleteCallFeedbackMutationResult = NonNullable<Awaited$
|
|
13171
|
+
type DeleteCallFeedbackMutationResult = NonNullable<Awaited$p<ReturnType<typeof deleteCallFeedback>>>;
|
|
13123
13172
|
/**
|
|
13124
13173
|
* @summary Delete feedback
|
|
13125
13174
|
*/
|
|
13126
13175
|
declare const useDeleteCallFeedback: <TError = ErrorType<ErrorResponse>>(id: string, feedbackId: string, options?: {
|
|
13127
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
13176
|
+
swr?: SWRMutationConfiguration<Awaited$p<ReturnType<typeof deleteCallFeedback>>, TError, Key, Arguments, Awaited$p<ReturnType<typeof deleteCallFeedback>>> & {
|
|
13128
13177
|
swrKey?: string;
|
|
13129
13178
|
};
|
|
13130
|
-
request?: SecondParameter$
|
|
13179
|
+
request?: SecondParameter$p<typeof customFetch>;
|
|
13131
13180
|
}) => {
|
|
13132
13181
|
isMutating: boolean;
|
|
13133
13182
|
trigger: swr_mutation.TriggerWithOptionsArgs<DeleteCallFeedbackEnvelope, TError, string | readonly [`/v1/calls/${string}/feedback/${string}`], Arguments>;
|
|
@@ -13137,9 +13186,9 @@ declare const useDeleteCallFeedback: <TError = ErrorType<ErrorResponse>>(id: str
|
|
|
13137
13186
|
swrKey: string | readonly [`/v1/calls/${string}/feedback/${string}`];
|
|
13138
13187
|
};
|
|
13139
13188
|
|
|
13140
|
-
type AwaitedInput$
|
|
13141
|
-
type Awaited$
|
|
13142
|
-
type SecondParameter$
|
|
13189
|
+
type AwaitedInput$o<T> = PromiseLike<T> | T;
|
|
13190
|
+
type Awaited$o<O> = O extends AwaitedInput$o<infer T> ? T : never;
|
|
13191
|
+
type SecondParameter$o<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
13143
13192
|
declare const getListCallsUrl: (params?: ListCallsParams) => string;
|
|
13144
13193
|
/**
|
|
13145
13194
|
* List all calls, with pagination, filtering, and sorting.
|
|
@@ -13165,16 +13214,16 @@ declare const getListCallsUrl: (params?: ListCallsParams) => string;
|
|
|
13165
13214
|
*/
|
|
13166
13215
|
declare const listCalls: (params?: ListCallsParams, options?: Parameters<typeof customFetch>[1]) => Promise<ListCallsEnvelope>;
|
|
13167
13216
|
declare const getListCallsKey: (params?: ListCallsParams) => readonly ["/v1/calls", ...ListCallsParams[]];
|
|
13168
|
-
type ListCallsQueryResult = NonNullable<Awaited$
|
|
13217
|
+
type ListCallsQueryResult = NonNullable<Awaited$o<ReturnType<typeof listCalls>>>;
|
|
13169
13218
|
/**
|
|
13170
13219
|
* @summary List calls
|
|
13171
13220
|
*/
|
|
13172
13221
|
declare const useListCalls: <TError = ErrorType<ErrorResponse>>(params?: ListCallsParams, options?: {
|
|
13173
|
-
swr?: SWRConfiguration<Awaited$
|
|
13222
|
+
swr?: SWRConfiguration<Awaited$o<ReturnType<typeof listCalls>>, TError> & {
|
|
13174
13223
|
swrKey?: Key;
|
|
13175
13224
|
enabled?: boolean;
|
|
13176
13225
|
};
|
|
13177
|
-
request?: SecondParameter$
|
|
13226
|
+
request?: SecondParameter$o<typeof customFetch>;
|
|
13178
13227
|
}) => {
|
|
13179
13228
|
data: ListCallsEnvelope | undefined;
|
|
13180
13229
|
error: TError | undefined;
|
|
@@ -13192,16 +13241,16 @@ declare const getGetCallUrl: (id: string, params?: GetCallParams) => string;
|
|
|
13192
13241
|
*/
|
|
13193
13242
|
declare const getCall: (id: string, params?: GetCallParams, options?: Parameters<typeof customFetch>[1]) => Promise<GetCallEnvelope>;
|
|
13194
13243
|
declare const getGetCallKey: (id: string, params?: GetCallParams) => readonly [`/v1/calls/${string}`, ...GetCallParams[]];
|
|
13195
|
-
type GetCallQueryResult = NonNullable<Awaited$
|
|
13244
|
+
type GetCallQueryResult = NonNullable<Awaited$o<ReturnType<typeof getCall>>>;
|
|
13196
13245
|
/**
|
|
13197
13246
|
* @summary Get call
|
|
13198
13247
|
*/
|
|
13199
13248
|
declare const useGetCall: <TError = ErrorType<ErrorResponse>>(id: string, params?: GetCallParams, options?: {
|
|
13200
|
-
swr?: SWRConfiguration<Awaited$
|
|
13249
|
+
swr?: SWRConfiguration<Awaited$o<ReturnType<typeof getCall>>, TError> & {
|
|
13201
13250
|
swrKey?: Key;
|
|
13202
13251
|
enabled?: boolean;
|
|
13203
13252
|
};
|
|
13204
|
-
request?: SecondParameter$
|
|
13253
|
+
request?: SecondParameter$o<typeof customFetch>;
|
|
13205
13254
|
}) => {
|
|
13206
13255
|
data: GetCallEnvelope | undefined;
|
|
13207
13256
|
error: TError | undefined;
|
|
@@ -13217,16 +13266,16 @@ declare const getGetCallEvaluationUrl: (id: string) => string;
|
|
|
13217
13266
|
*/
|
|
13218
13267
|
declare const getCallEvaluation: (id: string, options?: Parameters<typeof customFetch>[1]) => Promise<GetCallEvaluationEnvelope>;
|
|
13219
13268
|
declare const getGetCallEvaluationKey: (id: string) => readonly [`/v1/calls/${string}/evaluation`];
|
|
13220
|
-
type GetCallEvaluationQueryResult = NonNullable<Awaited$
|
|
13269
|
+
type GetCallEvaluationQueryResult = NonNullable<Awaited$o<ReturnType<typeof getCallEvaluation>>>;
|
|
13221
13270
|
/**
|
|
13222
13271
|
* @summary Get call evaluation
|
|
13223
13272
|
*/
|
|
13224
13273
|
declare const useGetCallEvaluation: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
|
|
13225
|
-
swr?: SWRConfiguration<Awaited$
|
|
13274
|
+
swr?: SWRConfiguration<Awaited$o<ReturnType<typeof getCallEvaluation>>, TError> & {
|
|
13226
13275
|
swrKey?: Key;
|
|
13227
13276
|
enabled?: boolean;
|
|
13228
13277
|
};
|
|
13229
|
-
request?: SecondParameter$
|
|
13278
|
+
request?: SecondParameter$o<typeof customFetch>;
|
|
13230
13279
|
}) => {
|
|
13231
13280
|
data: GetCallEvaluationEnvelope | undefined;
|
|
13232
13281
|
error: TError | undefined;
|
|
@@ -13244,16 +13293,16 @@ declare const getGetCallAnalyticsUrl: (params: GetCallAnalyticsParams) => string
|
|
|
13244
13293
|
*/
|
|
13245
13294
|
declare const getCallAnalytics: (params: GetCallAnalyticsParams, options?: Parameters<typeof customFetch>[1]) => Promise<GetCallAnalyticsEnvelope>;
|
|
13246
13295
|
declare const getGetCallAnalyticsKey: (params: GetCallAnalyticsParams) => readonly ["/v1/calls/analytics", ...GetCallAnalyticsParams[]];
|
|
13247
|
-
type GetCallAnalyticsQueryResult = NonNullable<Awaited$
|
|
13296
|
+
type GetCallAnalyticsQueryResult = NonNullable<Awaited$o<ReturnType<typeof getCallAnalytics>>>;
|
|
13248
13297
|
/**
|
|
13249
13298
|
* @summary Get call analytics
|
|
13250
13299
|
*/
|
|
13251
13300
|
declare const useGetCallAnalytics: <TError = ErrorType<ErrorResponse>>(params: GetCallAnalyticsParams, options?: {
|
|
13252
|
-
swr?: SWRConfiguration<Awaited$
|
|
13301
|
+
swr?: SWRConfiguration<Awaited$o<ReturnType<typeof getCallAnalytics>>, TError> & {
|
|
13253
13302
|
swrKey?: Key;
|
|
13254
13303
|
enabled?: boolean;
|
|
13255
13304
|
};
|
|
13256
|
-
request?: SecondParameter$
|
|
13305
|
+
request?: SecondParameter$o<typeof customFetch>;
|
|
13257
13306
|
}) => {
|
|
13258
13307
|
data: GetCallAnalyticsEnvelope | undefined;
|
|
13259
13308
|
error: TError | undefined;
|
|
@@ -13263,9 +13312,9 @@ declare const useGetCallAnalytics: <TError = ErrorType<ErrorResponse>>(params: G
|
|
|
13263
13312
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
13264
13313
|
};
|
|
13265
13314
|
|
|
13266
|
-
type AwaitedInput$
|
|
13267
|
-
type Awaited$
|
|
13268
|
-
type SecondParameter$
|
|
13315
|
+
type AwaitedInput$n<T> = PromiseLike<T> | T;
|
|
13316
|
+
type Awaited$n<O> = O extends AwaitedInput$n<infer T> ? T : never;
|
|
13317
|
+
type SecondParameter$n<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
13269
13318
|
declare const getListCasesUrl: (params?: ListCasesParams) => string;
|
|
13270
13319
|
/**
|
|
13271
13320
|
* List all cases for the current tenant, paginated, filterable, and sortable.
|
|
@@ -13273,16 +13322,16 @@ declare const getListCasesUrl: (params?: ListCasesParams) => string;
|
|
|
13273
13322
|
*/
|
|
13274
13323
|
declare const listCases: (params?: ListCasesParams, options?: Parameters<typeof customFetch>[1]) => Promise<ListCasesEnvelope>;
|
|
13275
13324
|
declare const getListCasesKey: (params?: ListCasesParams) => readonly ["/v1/cases", ...ListCasesParams[]];
|
|
13276
|
-
type ListCasesQueryResult = NonNullable<Awaited$
|
|
13325
|
+
type ListCasesQueryResult = NonNullable<Awaited$n<ReturnType<typeof listCases>>>;
|
|
13277
13326
|
/**
|
|
13278
13327
|
* @summary List cases
|
|
13279
13328
|
*/
|
|
13280
13329
|
declare const useListCases: <TError = ErrorType<ErrorResponse>>(params?: ListCasesParams, options?: {
|
|
13281
|
-
swr?: SWRConfiguration<Awaited$
|
|
13330
|
+
swr?: SWRConfiguration<Awaited$n<ReturnType<typeof listCases>>, TError> & {
|
|
13282
13331
|
swrKey?: Key;
|
|
13283
13332
|
enabled?: boolean;
|
|
13284
13333
|
};
|
|
13285
|
-
request?: SecondParameter$
|
|
13334
|
+
request?: SecondParameter$n<typeof customFetch>;
|
|
13286
13335
|
}) => {
|
|
13287
13336
|
data: ListCasesEnvelope | undefined;
|
|
13288
13337
|
error: TError | undefined;
|
|
@@ -13299,19 +13348,19 @@ declare const getCreateCaseUrl: () => string;
|
|
|
13299
13348
|
* @summary Create case
|
|
13300
13349
|
*/
|
|
13301
13350
|
declare const createCase: (createCaseBody?: CreateCaseBody, options?: Parameters<typeof customFetch>[1]) => Promise<CreateCaseEnvelope>;
|
|
13302
|
-
declare const getCreateCaseMutationFetcher: (options?: SecondParameter$
|
|
13351
|
+
declare const getCreateCaseMutationFetcher: (options?: SecondParameter$n<typeof customFetch>) => (_: Key, { arg }: {
|
|
13303
13352
|
arg: CreateCaseBody | undefined;
|
|
13304
13353
|
}) => Promise<CreateCaseEnvelope>;
|
|
13305
13354
|
declare const getCreateCaseMutationKey: () => readonly ["/v1/cases"];
|
|
13306
|
-
type CreateCaseMutationResult = NonNullable<Awaited$
|
|
13355
|
+
type CreateCaseMutationResult = NonNullable<Awaited$n<ReturnType<typeof createCase>>>;
|
|
13307
13356
|
/**
|
|
13308
13357
|
* @summary Create case
|
|
13309
13358
|
*/
|
|
13310
13359
|
declare const useCreateCase: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
13311
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
13360
|
+
swr?: SWRMutationConfiguration<Awaited$n<ReturnType<typeof createCase>>, TError, Key, CreateCaseBody | undefined, Awaited$n<ReturnType<typeof createCase>>> & {
|
|
13312
13361
|
swrKey?: string;
|
|
13313
13362
|
};
|
|
13314
|
-
request?: SecondParameter$
|
|
13363
|
+
request?: SecondParameter$n<typeof customFetch>;
|
|
13315
13364
|
}) => {
|
|
13316
13365
|
isMutating: boolean;
|
|
13317
13366
|
trigger: swr_mutation.TriggerWithOptionsArgs<CreateCaseEnvelope, TError, string | readonly ["/v1/cases"], CreateCaseBody | undefined>;
|
|
@@ -13327,16 +13376,16 @@ declare const getSearchCasesUrl: (params: SearchCasesParams) => string;
|
|
|
13327
13376
|
*/
|
|
13328
13377
|
declare const searchCases: (params: SearchCasesParams, options?: Parameters<typeof customFetch>[1]) => Promise<SearchCasesEnvelope>;
|
|
13329
13378
|
declare const getSearchCasesKey: (params: SearchCasesParams) => readonly ["/v1/cases/search", ...SearchCasesParams[]];
|
|
13330
|
-
type SearchCasesQueryResult = NonNullable<Awaited$
|
|
13379
|
+
type SearchCasesQueryResult = NonNullable<Awaited$n<ReturnType<typeof searchCases>>>;
|
|
13331
13380
|
/**
|
|
13332
13381
|
* @summary Search cases
|
|
13333
13382
|
*/
|
|
13334
13383
|
declare const useSearchCases: <TError = ErrorType<ErrorResponse>>(params: SearchCasesParams, options?: {
|
|
13335
|
-
swr?: SWRConfiguration<Awaited$
|
|
13384
|
+
swr?: SWRConfiguration<Awaited$n<ReturnType<typeof searchCases>>, TError> & {
|
|
13336
13385
|
swrKey?: Key;
|
|
13337
13386
|
enabled?: boolean;
|
|
13338
13387
|
};
|
|
13339
|
-
request?: SecondParameter$
|
|
13388
|
+
request?: SecondParameter$n<typeof customFetch>;
|
|
13340
13389
|
}) => {
|
|
13341
13390
|
data: SearchCasesEnvelope | undefined;
|
|
13342
13391
|
error: TError | undefined;
|
|
@@ -13355,16 +13404,16 @@ declare const getGetCaseUrl: (id: string, params?: GetCaseParams) => string;
|
|
|
13355
13404
|
*/
|
|
13356
13405
|
declare const getCase: (id: string, params?: GetCaseParams, options?: Parameters<typeof customFetch>[1]) => Promise<GetCaseEnvelope>;
|
|
13357
13406
|
declare const getGetCaseKey: (id: string, params?: GetCaseParams) => readonly [`/v1/cases/${string}`, ...GetCaseParams[]];
|
|
13358
|
-
type GetCaseQueryResult = NonNullable<Awaited$
|
|
13407
|
+
type GetCaseQueryResult = NonNullable<Awaited$n<ReturnType<typeof getCase>>>;
|
|
13359
13408
|
/**
|
|
13360
13409
|
* @summary Get case
|
|
13361
13410
|
*/
|
|
13362
13411
|
declare const useGetCase: <TError = ErrorType<ErrorResponse>>(id: string, params?: GetCaseParams, options?: {
|
|
13363
|
-
swr?: SWRConfiguration<Awaited$
|
|
13412
|
+
swr?: SWRConfiguration<Awaited$n<ReturnType<typeof getCase>>, TError> & {
|
|
13364
13413
|
swrKey?: Key;
|
|
13365
13414
|
enabled?: boolean;
|
|
13366
13415
|
};
|
|
13367
|
-
request?: SecondParameter$
|
|
13416
|
+
request?: SecondParameter$n<typeof customFetch>;
|
|
13368
13417
|
}) => {
|
|
13369
13418
|
data: GetCaseEnvelope | undefined;
|
|
13370
13419
|
error: TError | undefined;
|
|
@@ -13383,19 +13432,19 @@ declare const getDeleteCaseUrl: (id: string, params?: DeleteCaseParams) => strin
|
|
|
13383
13432
|
* @summary Delete case
|
|
13384
13433
|
*/
|
|
13385
13434
|
declare const deleteCase: (id: string, params?: DeleteCaseParams, options?: Parameters<typeof customFetch>[1]) => Promise<DeleteCaseEnvelope>;
|
|
13386
|
-
declare const getDeleteCaseMutationFetcher: (id: string, params?: DeleteCaseParams, options?: SecondParameter$
|
|
13435
|
+
declare const getDeleteCaseMutationFetcher: (id: string, params?: DeleteCaseParams, options?: SecondParameter$n<typeof customFetch>) => (_: Key, __: {
|
|
13387
13436
|
arg: Arguments;
|
|
13388
13437
|
}) => Promise<DeleteCaseEnvelope>;
|
|
13389
13438
|
declare const getDeleteCaseMutationKey: (id: string, params?: DeleteCaseParams) => readonly [`/v1/cases/${string}`, ...DeleteCaseParams[]];
|
|
13390
|
-
type DeleteCaseMutationResult = NonNullable<Awaited$
|
|
13439
|
+
type DeleteCaseMutationResult = NonNullable<Awaited$n<ReturnType<typeof deleteCase>>>;
|
|
13391
13440
|
/**
|
|
13392
13441
|
* @summary Delete case
|
|
13393
13442
|
*/
|
|
13394
13443
|
declare const useDeleteCase: <TError = ErrorType<ErrorResponse>>(id: string, params?: DeleteCaseParams, options?: {
|
|
13395
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
13444
|
+
swr?: SWRMutationConfiguration<Awaited$n<ReturnType<typeof deleteCase>>, TError, Key, Arguments, Awaited$n<ReturnType<typeof deleteCase>>> & {
|
|
13396
13445
|
swrKey?: string;
|
|
13397
13446
|
};
|
|
13398
|
-
request?: SecondParameter$
|
|
13447
|
+
request?: SecondParameter$n<typeof customFetch>;
|
|
13399
13448
|
}) => {
|
|
13400
13449
|
isMutating: boolean;
|
|
13401
13450
|
trigger: swr_mutation.TriggerWithOptionsArgs<DeleteCaseEnvelope, TError, string | readonly [`/v1/cases/${string}`, ...DeleteCaseParams[]], Arguments>;
|
|
@@ -13412,19 +13461,19 @@ declare const getAddCaseLinksUrl: (id: string, params?: AddCaseLinksParams) => s
|
|
|
13412
13461
|
* @summary Add case links
|
|
13413
13462
|
*/
|
|
13414
13463
|
declare const addCaseLinks: (id: string, addCaseLinksBody?: AddCaseLinksBody, params?: AddCaseLinksParams, options?: Parameters<typeof customFetch>[1]) => Promise<AddCaseLinksEnvelope>;
|
|
13415
|
-
declare const getAddCaseLinksMutationFetcher: (id: string, params?: AddCaseLinksParams, options?: SecondParameter$
|
|
13464
|
+
declare const getAddCaseLinksMutationFetcher: (id: string, params?: AddCaseLinksParams, options?: SecondParameter$n<typeof customFetch>) => (_: Key, { arg }: {
|
|
13416
13465
|
arg: AddCaseLinksBody | undefined;
|
|
13417
13466
|
}) => Promise<AddCaseLinksEnvelope>;
|
|
13418
13467
|
declare const getAddCaseLinksMutationKey: (id: string, params?: AddCaseLinksParams) => readonly [`/v1/cases/${string}/links`, ...AddCaseLinksParams[]];
|
|
13419
|
-
type AddCaseLinksMutationResult = NonNullable<Awaited$
|
|
13468
|
+
type AddCaseLinksMutationResult = NonNullable<Awaited$n<ReturnType<typeof addCaseLinks>>>;
|
|
13420
13469
|
/**
|
|
13421
13470
|
* @summary Add case links
|
|
13422
13471
|
*/
|
|
13423
13472
|
declare const useAddCaseLinks: <TError = ErrorType<ErrorResponse>>(id: string, params?: AddCaseLinksParams, options?: {
|
|
13424
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
13473
|
+
swr?: SWRMutationConfiguration<Awaited$n<ReturnType<typeof addCaseLinks>>, TError, Key, AddCaseLinksBody | undefined, Awaited$n<ReturnType<typeof addCaseLinks>>> & {
|
|
13425
13474
|
swrKey?: string;
|
|
13426
13475
|
};
|
|
13427
|
-
request?: SecondParameter$
|
|
13476
|
+
request?: SecondParameter$n<typeof customFetch>;
|
|
13428
13477
|
}) => {
|
|
13429
13478
|
isMutating: boolean;
|
|
13430
13479
|
trigger: swr_mutation.TriggerWithOptionsArgs<AddCaseLinksEnvelope, TError, string | readonly [`/v1/cases/${string}/links`, ...AddCaseLinksParams[]], AddCaseLinksBody | undefined>;
|
|
@@ -13440,16 +13489,16 @@ declare const getListCaseLinksUrl: (id: string, params?: ListCaseLinksParams) =>
|
|
|
13440
13489
|
*/
|
|
13441
13490
|
declare const listCaseLinks: (id: string, params?: ListCaseLinksParams, options?: Parameters<typeof customFetch>[1]) => Promise<ListCaseLinksEnvelope>;
|
|
13442
13491
|
declare const getListCaseLinksKey: (id: string, params?: ListCaseLinksParams) => readonly [`/v1/cases/${string}/links`, ...ListCaseLinksParams[]];
|
|
13443
|
-
type ListCaseLinksQueryResult = NonNullable<Awaited$
|
|
13492
|
+
type ListCaseLinksQueryResult = NonNullable<Awaited$n<ReturnType<typeof listCaseLinks>>>;
|
|
13444
13493
|
/**
|
|
13445
13494
|
* @summary List case links
|
|
13446
13495
|
*/
|
|
13447
13496
|
declare const useListCaseLinks: <TError = ErrorType<ErrorResponse>>(id: string, params?: ListCaseLinksParams, options?: {
|
|
13448
|
-
swr?: SWRConfiguration<Awaited$
|
|
13497
|
+
swr?: SWRConfiguration<Awaited$n<ReturnType<typeof listCaseLinks>>, TError> & {
|
|
13449
13498
|
swrKey?: Key;
|
|
13450
13499
|
enabled?: boolean;
|
|
13451
13500
|
};
|
|
13452
|
-
request?: SecondParameter$
|
|
13501
|
+
request?: SecondParameter$n<typeof customFetch>;
|
|
13453
13502
|
}) => {
|
|
13454
13503
|
data: ListCaseLinksEnvelope | undefined;
|
|
13455
13504
|
error: TError | undefined;
|
|
@@ -13464,19 +13513,19 @@ declare const getRemoveCaseLinkUrl: (id: string, entityType: "artifact" | "call"
|
|
|
13464
13513
|
* @summary Remove case link
|
|
13465
13514
|
*/
|
|
13466
13515
|
declare const removeCaseLink: (id: string, entityType: "artifact" | "call" | "chat" | "email" | "extract" | "information_request" | "schedule" | "worker_run", entityId: string, params?: RemoveCaseLinkParams, options?: Parameters<typeof customFetch>[1]) => Promise<RemoveCaseLinkEnvelope>;
|
|
13467
|
-
declare const getRemoveCaseLinkMutationFetcher: (id: string, entityType: "artifact" | "call" | "chat" | "email" | "extract" | "information_request" | "schedule" | "worker_run", entityId: string, params?: RemoveCaseLinkParams, options?: SecondParameter$
|
|
13516
|
+
declare const getRemoveCaseLinkMutationFetcher: (id: string, entityType: "artifact" | "call" | "chat" | "email" | "extract" | "information_request" | "schedule" | "worker_run", entityId: string, params?: RemoveCaseLinkParams, options?: SecondParameter$n<typeof customFetch>) => (_: Key, __: {
|
|
13468
13517
|
arg: Arguments;
|
|
13469
13518
|
}) => Promise<RemoveCaseLinkEnvelope>;
|
|
13470
13519
|
declare const getRemoveCaseLinkMutationKey: (id: string, entityType: "artifact" | "call" | "chat" | "email" | "extract" | "information_request" | "schedule" | "worker_run", entityId: string, params?: RemoveCaseLinkParams) => 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/information_request/${string}` | `/v1/cases/${string}/links/schedule/${string}` | `/v1/cases/${string}/links/worker_run/${string}`, ...RemoveCaseLinkParams[]];
|
|
13471
|
-
type RemoveCaseLinkMutationResult = NonNullable<Awaited$
|
|
13520
|
+
type RemoveCaseLinkMutationResult = NonNullable<Awaited$n<ReturnType<typeof removeCaseLink>>>;
|
|
13472
13521
|
/**
|
|
13473
13522
|
* @summary Remove case link
|
|
13474
13523
|
*/
|
|
13475
13524
|
declare const useRemoveCaseLink: <TError = ErrorType<ErrorResponse>>(id: string, entityType: "artifact" | "call" | "chat" | "email" | "extract" | "information_request" | "schedule" | "worker_run", entityId: string, params?: RemoveCaseLinkParams, options?: {
|
|
13476
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
13525
|
+
swr?: SWRMutationConfiguration<Awaited$n<ReturnType<typeof removeCaseLink>>, TError, Key, Arguments, Awaited$n<ReturnType<typeof removeCaseLink>>> & {
|
|
13477
13526
|
swrKey?: string;
|
|
13478
13527
|
};
|
|
13479
|
-
request?: SecondParameter$
|
|
13528
|
+
request?: SecondParameter$n<typeof customFetch>;
|
|
13480
13529
|
}) => {
|
|
13481
13530
|
isMutating: boolean;
|
|
13482
13531
|
trigger: swr_mutation.TriggerWithOptionsArgs<RemoveCaseLinkEnvelope, 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/information_request/${string}` | `/v1/cases/${string}/links/schedule/${string}` | `/v1/cases/${string}/links/worker_run/${string}`, ...RemoveCaseLinkParams[]], Arguments>;
|
|
@@ -13486,28 +13535,28 @@ declare const useRemoveCaseLink: <TError = ErrorType<ErrorResponse>>(id: string,
|
|
|
13486
13535
|
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/information_request/${string}` | `/v1/cases/${string}/links/schedule/${string}` | `/v1/cases/${string}/links/worker_run/${string}`, ...RemoveCaseLinkParams[]];
|
|
13487
13536
|
};
|
|
13488
13537
|
|
|
13489
|
-
type AwaitedInput$
|
|
13490
|
-
type Awaited$
|
|
13491
|
-
type SecondParameter$
|
|
13538
|
+
type AwaitedInput$m<T> = PromiseLike<T> | T;
|
|
13539
|
+
type Awaited$m<O> = O extends AwaitedInput$m<infer T> ? T : never;
|
|
13540
|
+
type SecondParameter$m<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
13492
13541
|
declare const getCreateChatAgentUrl: () => string;
|
|
13493
13542
|
/**
|
|
13494
13543
|
* Create a new chat agent with a name and prompt.
|
|
13495
13544
|
* @summary Create chat agent
|
|
13496
13545
|
*/
|
|
13497
13546
|
declare const createChatAgent: (createChatAgentBody?: CreateChatAgentBody, options?: Parameters<typeof customFetch>[1]) => Promise<CreateChatAgentEnvelope>;
|
|
13498
|
-
declare const getCreateChatAgentMutationFetcher: (options?: SecondParameter$
|
|
13547
|
+
declare const getCreateChatAgentMutationFetcher: (options?: SecondParameter$m<typeof customFetch>) => (_: Key, { arg }: {
|
|
13499
13548
|
arg: CreateChatAgentBody | undefined;
|
|
13500
13549
|
}) => Promise<CreateChatAgentEnvelope>;
|
|
13501
13550
|
declare const getCreateChatAgentMutationKey: () => readonly ["/v1/chat-agents"];
|
|
13502
|
-
type CreateChatAgentMutationResult = NonNullable<Awaited$
|
|
13551
|
+
type CreateChatAgentMutationResult = NonNullable<Awaited$m<ReturnType<typeof createChatAgent>>>;
|
|
13503
13552
|
/**
|
|
13504
13553
|
* @summary Create chat agent
|
|
13505
13554
|
*/
|
|
13506
13555
|
declare const useCreateChatAgent: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
13507
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
13556
|
+
swr?: SWRMutationConfiguration<Awaited$m<ReturnType<typeof createChatAgent>>, TError, Key, CreateChatAgentBody | undefined, Awaited$m<ReturnType<typeof createChatAgent>>> & {
|
|
13508
13557
|
swrKey?: string;
|
|
13509
13558
|
};
|
|
13510
|
-
request?: SecondParameter$
|
|
13559
|
+
request?: SecondParameter$m<typeof customFetch>;
|
|
13511
13560
|
}) => {
|
|
13512
13561
|
isMutating: boolean;
|
|
13513
13562
|
trigger: swr_mutation.TriggerWithOptionsArgs<CreateChatAgentEnvelope, TError, string | readonly ["/v1/chat-agents"], CreateChatAgentBody | undefined>;
|
|
@@ -13523,16 +13572,16 @@ declare const getListChatAgentsUrl: (params?: ListChatAgentsParams) => string;
|
|
|
13523
13572
|
*/
|
|
13524
13573
|
declare const listChatAgents: (params?: ListChatAgentsParams, options?: Parameters<typeof customFetch>[1]) => Promise<ListChatAgentsEnvelope>;
|
|
13525
13574
|
declare const getListChatAgentsKey: (params?: ListChatAgentsParams) => readonly ["/v1/chat-agents", ...ListChatAgentsParams[]];
|
|
13526
|
-
type ListChatAgentsQueryResult = NonNullable<Awaited$
|
|
13575
|
+
type ListChatAgentsQueryResult = NonNullable<Awaited$m<ReturnType<typeof listChatAgents>>>;
|
|
13527
13576
|
/**
|
|
13528
13577
|
* @summary List chat agents
|
|
13529
13578
|
*/
|
|
13530
13579
|
declare const useListChatAgents: <TError = ErrorType<ErrorResponse>>(params?: ListChatAgentsParams, options?: {
|
|
13531
|
-
swr?: SWRConfiguration<Awaited$
|
|
13580
|
+
swr?: SWRConfiguration<Awaited$m<ReturnType<typeof listChatAgents>>, TError> & {
|
|
13532
13581
|
swrKey?: Key;
|
|
13533
13582
|
enabled?: boolean;
|
|
13534
13583
|
};
|
|
13535
|
-
request?: SecondParameter$
|
|
13584
|
+
request?: SecondParameter$m<typeof customFetch>;
|
|
13536
13585
|
}) => {
|
|
13537
13586
|
data: ListChatAgentsEnvelope | undefined;
|
|
13538
13587
|
error: TError | undefined;
|
|
@@ -13548,16 +13597,16 @@ declare const getGetChatAgentUrl: (chatAgentId: string) => string;
|
|
|
13548
13597
|
*/
|
|
13549
13598
|
declare const getChatAgent: (chatAgentId: string, options?: Parameters<typeof customFetch>[1]) => Promise<GetChatAgentEnvelope>;
|
|
13550
13599
|
declare const getGetChatAgentKey: (chatAgentId: string) => readonly [`/v1/chat-agents/${string}`];
|
|
13551
|
-
type GetChatAgentQueryResult = NonNullable<Awaited$
|
|
13600
|
+
type GetChatAgentQueryResult = NonNullable<Awaited$m<ReturnType<typeof getChatAgent>>>;
|
|
13552
13601
|
/**
|
|
13553
13602
|
* @summary Get chat agent
|
|
13554
13603
|
*/
|
|
13555
13604
|
declare const useGetChatAgent: <TError = ErrorType<ErrorResponse>>(chatAgentId: string, options?: {
|
|
13556
|
-
swr?: SWRConfiguration<Awaited$
|
|
13605
|
+
swr?: SWRConfiguration<Awaited$m<ReturnType<typeof getChatAgent>>, TError> & {
|
|
13557
13606
|
swrKey?: Key;
|
|
13558
13607
|
enabled?: boolean;
|
|
13559
13608
|
};
|
|
13560
|
-
request?: SecondParameter$
|
|
13609
|
+
request?: SecondParameter$m<typeof customFetch>;
|
|
13561
13610
|
}) => {
|
|
13562
13611
|
data: GetChatAgentEnvelope | undefined;
|
|
13563
13612
|
error: TError | undefined;
|
|
@@ -13572,19 +13621,19 @@ declare const getUpdateChatAgentUrl: (chatAgentId: string) => string;
|
|
|
13572
13621
|
* @summary Update chat agent
|
|
13573
13622
|
*/
|
|
13574
13623
|
declare const updateChatAgent: (chatAgentId: string, updateChatAgentRequest?: UpdateChatAgentRequest, options?: Parameters<typeof customFetch>[1]) => Promise<UpdateChatAgentEnvelope>;
|
|
13575
|
-
declare const getUpdateChatAgentMutationFetcher: (chatAgentId: string, options?: SecondParameter$
|
|
13624
|
+
declare const getUpdateChatAgentMutationFetcher: (chatAgentId: string, options?: SecondParameter$m<typeof customFetch>) => (_: Key, { arg }: {
|
|
13576
13625
|
arg: UpdateChatAgentRequest | undefined;
|
|
13577
13626
|
}) => Promise<UpdateChatAgentEnvelope>;
|
|
13578
13627
|
declare const getUpdateChatAgentMutationKey: (chatAgentId: string) => readonly [`/v1/chat-agents/${string}`];
|
|
13579
|
-
type UpdateChatAgentMutationResult = NonNullable<Awaited$
|
|
13628
|
+
type UpdateChatAgentMutationResult = NonNullable<Awaited$m<ReturnType<typeof updateChatAgent>>>;
|
|
13580
13629
|
/**
|
|
13581
13630
|
* @summary Update chat agent
|
|
13582
13631
|
*/
|
|
13583
13632
|
declare const useUpdateChatAgent: <TError = ErrorType<ErrorResponse>>(chatAgentId: string, options?: {
|
|
13584
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
13633
|
+
swr?: SWRMutationConfiguration<Awaited$m<ReturnType<typeof updateChatAgent>>, TError, Key, UpdateChatAgentRequest | undefined, Awaited$m<ReturnType<typeof updateChatAgent>>> & {
|
|
13585
13634
|
swrKey?: string;
|
|
13586
13635
|
};
|
|
13587
|
-
request?: SecondParameter$
|
|
13636
|
+
request?: SecondParameter$m<typeof customFetch>;
|
|
13588
13637
|
}) => {
|
|
13589
13638
|
isMutating: boolean;
|
|
13590
13639
|
trigger: swr_mutation.TriggerWithOptionsArgs<UpdateChatAgentEnvelope, TError, string | readonly [`/v1/chat-agents/${string}`], UpdateChatAgentRequest | undefined>;
|
|
@@ -13599,19 +13648,19 @@ declare const getDeleteChatAgentUrl: (chatAgentId: string) => string;
|
|
|
13599
13648
|
* @summary Delete chat agent
|
|
13600
13649
|
*/
|
|
13601
13650
|
declare const deleteChatAgent: (chatAgentId: string, options?: Parameters<typeof customFetch>[1]) => Promise<DeleteChatAgentEnvelope>;
|
|
13602
|
-
declare const getDeleteChatAgentMutationFetcher: (chatAgentId: string, options?: SecondParameter$
|
|
13651
|
+
declare const getDeleteChatAgentMutationFetcher: (chatAgentId: string, options?: SecondParameter$m<typeof customFetch>) => (_: Key, __: {
|
|
13603
13652
|
arg: Arguments;
|
|
13604
13653
|
}) => Promise<DeleteChatAgentEnvelope>;
|
|
13605
13654
|
declare const getDeleteChatAgentMutationKey: (chatAgentId: string) => readonly [`/v1/chat-agents/${string}`];
|
|
13606
|
-
type DeleteChatAgentMutationResult = NonNullable<Awaited$
|
|
13655
|
+
type DeleteChatAgentMutationResult = NonNullable<Awaited$m<ReturnType<typeof deleteChatAgent>>>;
|
|
13607
13656
|
/**
|
|
13608
13657
|
* @summary Delete chat agent
|
|
13609
13658
|
*/
|
|
13610
13659
|
declare const useDeleteChatAgent: <TError = ErrorType<ErrorResponse>>(chatAgentId: string, options?: {
|
|
13611
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
13660
|
+
swr?: SWRMutationConfiguration<Awaited$m<ReturnType<typeof deleteChatAgent>>, TError, Key, Arguments, Awaited$m<ReturnType<typeof deleteChatAgent>>> & {
|
|
13612
13661
|
swrKey?: string;
|
|
13613
13662
|
};
|
|
13614
|
-
request?: SecondParameter$
|
|
13663
|
+
request?: SecondParameter$m<typeof customFetch>;
|
|
13615
13664
|
}) => {
|
|
13616
13665
|
isMutating: boolean;
|
|
13617
13666
|
trigger: swr_mutation.TriggerWithOptionsArgs<DeleteChatAgentEnvelope, TError, string | readonly [`/v1/chat-agents/${string}`], Arguments>;
|
|
@@ -13627,16 +13676,16 @@ declare const getGetChatAgentPromptUrl: (chatAgentId: string) => string;
|
|
|
13627
13676
|
*/
|
|
13628
13677
|
declare const getChatAgentPrompt: (chatAgentId: string, options?: Parameters<typeof customFetch>[1]) => Promise<GetChatAgentPromptEnvelope>;
|
|
13629
13678
|
declare const getGetChatAgentPromptKey: (chatAgentId: string) => readonly [`/v1/chat-agents/${string}/prompt`];
|
|
13630
|
-
type GetChatAgentPromptQueryResult = NonNullable<Awaited$
|
|
13679
|
+
type GetChatAgentPromptQueryResult = NonNullable<Awaited$m<ReturnType<typeof getChatAgentPrompt>>>;
|
|
13631
13680
|
/**
|
|
13632
13681
|
* @summary Get chat agent prompt
|
|
13633
13682
|
*/
|
|
13634
13683
|
declare const useGetChatAgentPrompt: <TError = ErrorType<ErrorResponse>>(chatAgentId: string, options?: {
|
|
13635
|
-
swr?: SWRConfiguration<Awaited$
|
|
13684
|
+
swr?: SWRConfiguration<Awaited$m<ReturnType<typeof getChatAgentPrompt>>, TError> & {
|
|
13636
13685
|
swrKey?: Key;
|
|
13637
13686
|
enabled?: boolean;
|
|
13638
13687
|
};
|
|
13639
|
-
request?: SecondParameter$
|
|
13688
|
+
request?: SecondParameter$m<typeof customFetch>;
|
|
13640
13689
|
}) => {
|
|
13641
13690
|
data: GetChatAgentPromptEnvelope | undefined;
|
|
13642
13691
|
error: TError | undefined;
|
|
@@ -13651,19 +13700,19 @@ declare const getUpdateChatAgentPromptUrl: (chatAgentId: string) => string;
|
|
|
13651
13700
|
* @summary Update chat agent prompt
|
|
13652
13701
|
*/
|
|
13653
13702
|
declare const updateChatAgentPrompt: (chatAgentId: string, updateChatAgentPromptBody?: UpdateChatAgentPromptBody, options?: Parameters<typeof customFetch>[1]) => Promise<UpdateChatAgentPromptEnvelope>;
|
|
13654
|
-
declare const getUpdateChatAgentPromptMutationFetcher: (chatAgentId: string, options?: SecondParameter$
|
|
13703
|
+
declare const getUpdateChatAgentPromptMutationFetcher: (chatAgentId: string, options?: SecondParameter$m<typeof customFetch>) => (_: Key, { arg }: {
|
|
13655
13704
|
arg: UpdateChatAgentPromptBody | undefined;
|
|
13656
13705
|
}) => Promise<UpdateChatAgentPromptEnvelope>;
|
|
13657
13706
|
declare const getUpdateChatAgentPromptMutationKey: (chatAgentId: string) => readonly [`/v1/chat-agents/${string}/prompt`];
|
|
13658
|
-
type UpdateChatAgentPromptMutationResult = NonNullable<Awaited$
|
|
13707
|
+
type UpdateChatAgentPromptMutationResult = NonNullable<Awaited$m<ReturnType<typeof updateChatAgentPrompt>>>;
|
|
13659
13708
|
/**
|
|
13660
13709
|
* @summary Update chat agent prompt
|
|
13661
13710
|
*/
|
|
13662
13711
|
declare const useUpdateChatAgentPrompt: <TError = ErrorType<ErrorResponse>>(chatAgentId: string, options?: {
|
|
13663
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
13712
|
+
swr?: SWRMutationConfiguration<Awaited$m<ReturnType<typeof updateChatAgentPrompt>>, TError, Key, UpdateChatAgentPromptBody | undefined, Awaited$m<ReturnType<typeof updateChatAgentPrompt>>> & {
|
|
13664
13713
|
swrKey?: string;
|
|
13665
13714
|
};
|
|
13666
|
-
request?: SecondParameter$
|
|
13715
|
+
request?: SecondParameter$m<typeof customFetch>;
|
|
13667
13716
|
}) => {
|
|
13668
13717
|
isMutating: boolean;
|
|
13669
13718
|
trigger: swr_mutation.TriggerWithOptionsArgs<UpdateChatAgentPromptEnvelope, TError, string | readonly [`/v1/chat-agents/${string}/prompt`], UpdateChatAgentPromptBody | undefined>;
|
|
@@ -13673,28 +13722,28 @@ declare const useUpdateChatAgentPrompt: <TError = ErrorType<ErrorResponse>>(chat
|
|
|
13673
13722
|
swrKey: string | readonly [`/v1/chat-agents/${string}/prompt`];
|
|
13674
13723
|
};
|
|
13675
13724
|
|
|
13676
|
-
type AwaitedInput$
|
|
13677
|
-
type Awaited$
|
|
13678
|
-
type SecondParameter$
|
|
13725
|
+
type AwaitedInput$l<T> = PromiseLike<T> | T;
|
|
13726
|
+
type Awaited$l<O> = O extends AwaitedInput$l<infer T> ? T : never;
|
|
13727
|
+
type SecondParameter$l<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
13679
13728
|
declare const getCreateChatUrl: () => string;
|
|
13680
13729
|
/**
|
|
13681
13730
|
* Create a new chat against an existing chat agent. The chat agent's tenant becomes the owner of the chat.
|
|
13682
13731
|
* @summary Create a chat
|
|
13683
13732
|
*/
|
|
13684
13733
|
declare const createChat: (createChatBody?: CreateChatBody, options?: Parameters<typeof customFetch>[1]) => Promise<CreateChatEnvelope>;
|
|
13685
|
-
declare const getCreateChatMutationFetcher: (options?: SecondParameter$
|
|
13734
|
+
declare const getCreateChatMutationFetcher: (options?: SecondParameter$l<typeof customFetch>) => (_: Key, { arg }: {
|
|
13686
13735
|
arg: CreateChatBody | undefined;
|
|
13687
13736
|
}) => Promise<CreateChatEnvelope>;
|
|
13688
13737
|
declare const getCreateChatMutationKey: () => readonly ["/public/v1/chats"];
|
|
13689
|
-
type CreateChatMutationResult = NonNullable<Awaited$
|
|
13738
|
+
type CreateChatMutationResult = NonNullable<Awaited$l<ReturnType<typeof createChat>>>;
|
|
13690
13739
|
/**
|
|
13691
13740
|
* @summary Create a chat
|
|
13692
13741
|
*/
|
|
13693
13742
|
declare const useCreateChat: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
13694
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
13743
|
+
swr?: SWRMutationConfiguration<Awaited$l<ReturnType<typeof createChat>>, TError, Key, CreateChatBody | undefined, Awaited$l<ReturnType<typeof createChat>>> & {
|
|
13695
13744
|
swrKey?: string;
|
|
13696
13745
|
};
|
|
13697
|
-
request?: SecondParameter$
|
|
13746
|
+
request?: SecondParameter$l<typeof customFetch>;
|
|
13698
13747
|
}) => {
|
|
13699
13748
|
isMutating: boolean;
|
|
13700
13749
|
trigger: swr_mutation.TriggerWithOptionsArgs<CreateChatEnvelope, TError, string | readonly ["/public/v1/chats"], CreateChatBody | undefined>;
|
|
@@ -13713,16 +13762,16 @@ declare const getGetChatUrl: (chatId: string) => string;
|
|
|
13713
13762
|
*/
|
|
13714
13763
|
declare const getChat: (chatId: string, options?: Parameters<typeof customFetch>[1]) => Promise<GetChatEnvelope>;
|
|
13715
13764
|
declare const getGetChatKey: (chatId: string) => readonly [`/public/v1/chats/${string}`];
|
|
13716
|
-
type GetChatQueryResult = NonNullable<Awaited$
|
|
13765
|
+
type GetChatQueryResult = NonNullable<Awaited$l<ReturnType<typeof getChat>>>;
|
|
13717
13766
|
/**
|
|
13718
13767
|
* @summary Get a chat
|
|
13719
13768
|
*/
|
|
13720
13769
|
declare const useGetChat: <TError = ErrorType<ErrorResponse>>(chatId: string, options?: {
|
|
13721
|
-
swr?: SWRConfiguration<Awaited$
|
|
13770
|
+
swr?: SWRConfiguration<Awaited$l<ReturnType<typeof getChat>>, TError> & {
|
|
13722
13771
|
swrKey?: Key;
|
|
13723
13772
|
enabled?: boolean;
|
|
13724
13773
|
};
|
|
13725
|
-
request?: SecondParameter$
|
|
13774
|
+
request?: SecondParameter$l<typeof customFetch>;
|
|
13726
13775
|
}) => {
|
|
13727
13776
|
data: GetChatEnvelope | undefined;
|
|
13728
13777
|
error: TError | undefined;
|
|
@@ -13738,16 +13787,16 @@ declare const getGetPublicChatAgentUrl: (chatAgentId: string) => string;
|
|
|
13738
13787
|
*/
|
|
13739
13788
|
declare const getPublicChatAgent: (chatAgentId: string, options?: Parameters<typeof customFetch>[1]) => Promise<GetPublicChatAgentEnvelope>;
|
|
13740
13789
|
declare const getGetPublicChatAgentKey: (chatAgentId: string) => readonly [`/public/v1/chat-agents/${string}`];
|
|
13741
|
-
type GetPublicChatAgentQueryResult = NonNullable<Awaited$
|
|
13790
|
+
type GetPublicChatAgentQueryResult = NonNullable<Awaited$l<ReturnType<typeof getPublicChatAgent>>>;
|
|
13742
13791
|
/**
|
|
13743
13792
|
* @summary Get a chat agent (public)
|
|
13744
13793
|
*/
|
|
13745
13794
|
declare const useGetPublicChatAgent: <TError = ErrorType<ErrorResponse>>(chatAgentId: string, options?: {
|
|
13746
|
-
swr?: SWRConfiguration<Awaited$
|
|
13795
|
+
swr?: SWRConfiguration<Awaited$l<ReturnType<typeof getPublicChatAgent>>, TError> & {
|
|
13747
13796
|
swrKey?: Key;
|
|
13748
13797
|
enabled?: boolean;
|
|
13749
13798
|
};
|
|
13750
|
-
request?: SecondParameter$
|
|
13799
|
+
request?: SecondParameter$l<typeof customFetch>;
|
|
13751
13800
|
}) => {
|
|
13752
13801
|
data: GetPublicChatAgentEnvelope | undefined;
|
|
13753
13802
|
error: TError | undefined;
|
|
@@ -13765,19 +13814,19 @@ declare const getPostChatMessageUrl: (chatId: string) => string;
|
|
|
13765
13814
|
* @summary Post a message to a chat
|
|
13766
13815
|
*/
|
|
13767
13816
|
declare const postChatMessage: (chatId: string, postChatMessageBody?: PostChatMessageBody, options?: Parameters<typeof customFetch>[1]) => Promise<PostChatMessageEnvelope>;
|
|
13768
|
-
declare const getPostChatMessageMutationFetcher: (chatId: string, options?: SecondParameter$
|
|
13817
|
+
declare const getPostChatMessageMutationFetcher: (chatId: string, options?: SecondParameter$l<typeof customFetch>) => (_: Key, { arg }: {
|
|
13769
13818
|
arg: PostChatMessageBody | undefined;
|
|
13770
13819
|
}) => Promise<PostChatMessageEnvelope>;
|
|
13771
13820
|
declare const getPostChatMessageMutationKey: (chatId: string) => readonly [`/public/v1/chats/${string}/messages`];
|
|
13772
|
-
type PostChatMessageMutationResult = NonNullable<Awaited$
|
|
13821
|
+
type PostChatMessageMutationResult = NonNullable<Awaited$l<ReturnType<typeof postChatMessage>>>;
|
|
13773
13822
|
/**
|
|
13774
13823
|
* @summary Post a message to a chat
|
|
13775
13824
|
*/
|
|
13776
13825
|
declare const usePostChatMessage: <TError = ErrorType<ErrorResponse>>(chatId: string, options?: {
|
|
13777
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
13826
|
+
swr?: SWRMutationConfiguration<Awaited$l<ReturnType<typeof postChatMessage>>, TError, Key, PostChatMessageBody | undefined, Awaited$l<ReturnType<typeof postChatMessage>>> & {
|
|
13778
13827
|
swrKey?: string;
|
|
13779
13828
|
};
|
|
13780
|
-
request?: SecondParameter$
|
|
13829
|
+
request?: SecondParameter$l<typeof customFetch>;
|
|
13781
13830
|
}) => {
|
|
13782
13831
|
isMutating: boolean;
|
|
13783
13832
|
trigger: swr_mutation.TriggerWithOptionsArgs<PostChatMessageEnvelope, TError, string | readonly [`/public/v1/chats/${string}/messages`], PostChatMessageBody | undefined>;
|
|
@@ -13793,16 +13842,16 @@ declare const getListChatsUrl: (params?: ListChatsParams) => string;
|
|
|
13793
13842
|
*/
|
|
13794
13843
|
declare const listChats: (params?: ListChatsParams, options?: Parameters<typeof customFetch>[1]) => Promise<ListChatsEnvelope>;
|
|
13795
13844
|
declare const getListChatsKey: (params?: ListChatsParams) => readonly ["/v1/chats", ...ListChatsParams[]];
|
|
13796
|
-
type ListChatsQueryResult = NonNullable<Awaited$
|
|
13845
|
+
type ListChatsQueryResult = NonNullable<Awaited$l<ReturnType<typeof listChats>>>;
|
|
13797
13846
|
/**
|
|
13798
13847
|
* @summary List chats
|
|
13799
13848
|
*/
|
|
13800
13849
|
declare const useListChats: <TError = ErrorType<ErrorResponse>>(params?: ListChatsParams, options?: {
|
|
13801
|
-
swr?: SWRConfiguration<Awaited$
|
|
13850
|
+
swr?: SWRConfiguration<Awaited$l<ReturnType<typeof listChats>>, TError> & {
|
|
13802
13851
|
swrKey?: Key;
|
|
13803
13852
|
enabled?: boolean;
|
|
13804
13853
|
};
|
|
13805
|
-
request?: SecondParameter$
|
|
13854
|
+
request?: SecondParameter$l<typeof customFetch>;
|
|
13806
13855
|
}) => {
|
|
13807
13856
|
data: ListChatsEnvelope | undefined;
|
|
13808
13857
|
error: TError | undefined;
|
|
@@ -13818,16 +13867,16 @@ declare const getListChatMessagesUrl: (chatId: string, params?: ListChatMessages
|
|
|
13818
13867
|
*/
|
|
13819
13868
|
declare const listChatMessages: (chatId: string, params?: ListChatMessagesParams, options?: Parameters<typeof customFetch>[1]) => Promise<ListChatMessagesEnvelope>;
|
|
13820
13869
|
declare const getListChatMessagesKey: (chatId: string, params?: ListChatMessagesParams) => readonly [`/v1/chats/${string}/messages`, ...ListChatMessagesParams[]];
|
|
13821
|
-
type ListChatMessagesQueryResult = NonNullable<Awaited$
|
|
13870
|
+
type ListChatMessagesQueryResult = NonNullable<Awaited$l<ReturnType<typeof listChatMessages>>>;
|
|
13822
13871
|
/**
|
|
13823
13872
|
* @summary List chat messages
|
|
13824
13873
|
*/
|
|
13825
13874
|
declare const useListChatMessages: <TError = ErrorType<ErrorResponse>>(chatId: string, params?: ListChatMessagesParams, options?: {
|
|
13826
|
-
swr?: SWRConfiguration<Awaited$
|
|
13875
|
+
swr?: SWRConfiguration<Awaited$l<ReturnType<typeof listChatMessages>>, TError> & {
|
|
13827
13876
|
swrKey?: Key;
|
|
13828
13877
|
enabled?: boolean;
|
|
13829
13878
|
};
|
|
13830
|
-
request?: SecondParameter$
|
|
13879
|
+
request?: SecondParameter$l<typeof customFetch>;
|
|
13831
13880
|
}) => {
|
|
13832
13881
|
data: ListChatMessagesEnvelope | undefined;
|
|
13833
13882
|
error: TError | undefined;
|
|
@@ -13837,9 +13886,9 @@ declare const useListChatMessages: <TError = ErrorType<ErrorResponse>>(chatId: s
|
|
|
13837
13886
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
13838
13887
|
};
|
|
13839
13888
|
|
|
13840
|
-
type AwaitedInput$
|
|
13841
|
-
type Awaited$
|
|
13842
|
-
type SecondParameter$
|
|
13889
|
+
type AwaitedInput$k<T> = PromiseLike<T> | T;
|
|
13890
|
+
type Awaited$k<O> = O extends AwaitedInput$k<infer T> ? T : never;
|
|
13891
|
+
type SecondParameter$k<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
13843
13892
|
declare const getListDispatchesUrl: (params?: ListDispatchesParams) => string;
|
|
13844
13893
|
/**
|
|
13845
13894
|
* List the organization's dispatches, newest occurrence first.
|
|
@@ -13859,16 +13908,16 @@ declare const getListDispatchesUrl: (params?: ListDispatchesParams) => string;
|
|
|
13859
13908
|
*/
|
|
13860
13909
|
declare const listDispatches: (params?: ListDispatchesParams, options?: Parameters<typeof customFetch>[1]) => Promise<ListDispatchesEnvelope>;
|
|
13861
13910
|
declare const getListDispatchesKey: (params?: ListDispatchesParams) => readonly ["/v1/dispatches", ...ListDispatchesParams[]];
|
|
13862
|
-
type ListDispatchesQueryResult = NonNullable<Awaited$
|
|
13911
|
+
type ListDispatchesQueryResult = NonNullable<Awaited$k<ReturnType<typeof listDispatches>>>;
|
|
13863
13912
|
/**
|
|
13864
13913
|
* @summary List dispatches
|
|
13865
13914
|
*/
|
|
13866
13915
|
declare const useListDispatches: <TError = ErrorType<ErrorResponse>>(params?: ListDispatchesParams, options?: {
|
|
13867
|
-
swr?: SWRConfiguration<Awaited$
|
|
13916
|
+
swr?: SWRConfiguration<Awaited$k<ReturnType<typeof listDispatches>>, TError> & {
|
|
13868
13917
|
swrKey?: Key;
|
|
13869
13918
|
enabled?: boolean;
|
|
13870
13919
|
};
|
|
13871
|
-
request?: SecondParameter$
|
|
13920
|
+
request?: SecondParameter$k<typeof customFetch>;
|
|
13872
13921
|
}) => {
|
|
13873
13922
|
data: ListDispatchesEnvelope | undefined;
|
|
13874
13923
|
error: TError | undefined;
|
|
@@ -13878,9 +13927,9 @@ declare const useListDispatches: <TError = ErrorType<ErrorResponse>>(params?: Li
|
|
|
13878
13927
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
13879
13928
|
};
|
|
13880
13929
|
|
|
13881
|
-
type AwaitedInput$
|
|
13882
|
-
type Awaited$
|
|
13883
|
-
type SecondParameter$
|
|
13930
|
+
type AwaitedInput$j<T> = PromiseLike<T> | T;
|
|
13931
|
+
type Awaited$j<O> = O extends AwaitedInput$j<infer T> ? T : never;
|
|
13932
|
+
type SecondParameter$j<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
13884
13933
|
declare const getGetEmailUrl: (emailId: string) => string;
|
|
13885
13934
|
/**
|
|
13886
13935
|
* Retrieve detailed information about a specific email, including full body content.
|
|
@@ -13888,16 +13937,16 @@ declare const getGetEmailUrl: (emailId: string) => string;
|
|
|
13888
13937
|
*/
|
|
13889
13938
|
declare const getEmail: (emailId: string, options?: Parameters<typeof customFetch>[1]) => Promise<GetEmailEnvelope>;
|
|
13890
13939
|
declare const getGetEmailKey: (emailId: string) => readonly [`/v1/emails/${string}`];
|
|
13891
|
-
type GetEmailQueryResult = NonNullable<Awaited$
|
|
13940
|
+
type GetEmailQueryResult = NonNullable<Awaited$j<ReturnType<typeof getEmail>>>;
|
|
13892
13941
|
/**
|
|
13893
13942
|
* @summary Get email
|
|
13894
13943
|
*/
|
|
13895
13944
|
declare const useGetEmail: <TError = ErrorType<ErrorResponse>>(emailId: string, options?: {
|
|
13896
|
-
swr?: SWRConfiguration<Awaited$
|
|
13945
|
+
swr?: SWRConfiguration<Awaited$j<ReturnType<typeof getEmail>>, TError> & {
|
|
13897
13946
|
swrKey?: Key;
|
|
13898
13947
|
enabled?: boolean;
|
|
13899
13948
|
};
|
|
13900
|
-
request?: SecondParameter$
|
|
13949
|
+
request?: SecondParameter$j<typeof customFetch>;
|
|
13901
13950
|
}) => {
|
|
13902
13951
|
data: GetEmailEnvelope | undefined;
|
|
13903
13952
|
error: TError | undefined;
|
|
@@ -13912,19 +13961,19 @@ declare const getDeleteEmailUrl: (emailId: string) => string;
|
|
|
13912
13961
|
* @summary Delete email
|
|
13913
13962
|
*/
|
|
13914
13963
|
declare const deleteEmail: (emailId: string, options?: Parameters<typeof customFetch>[1]) => Promise<DeleteEmailEnvelope>;
|
|
13915
|
-
declare const getDeleteEmailMutationFetcher: (emailId: string, options?: SecondParameter$
|
|
13964
|
+
declare const getDeleteEmailMutationFetcher: (emailId: string, options?: SecondParameter$j<typeof customFetch>) => (_: Key, __: {
|
|
13916
13965
|
arg: Arguments;
|
|
13917
13966
|
}) => Promise<DeleteEmailEnvelope>;
|
|
13918
13967
|
declare const getDeleteEmailMutationKey: (emailId: string) => readonly [`/v1/emails/${string}`];
|
|
13919
|
-
type DeleteEmailMutationResult = NonNullable<Awaited$
|
|
13968
|
+
type DeleteEmailMutationResult = NonNullable<Awaited$j<ReturnType<typeof deleteEmail>>>;
|
|
13920
13969
|
/**
|
|
13921
13970
|
* @summary Delete email
|
|
13922
13971
|
*/
|
|
13923
13972
|
declare const useDeleteEmail: <TError = ErrorType<ErrorResponse>>(emailId: string, options?: {
|
|
13924
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
13973
|
+
swr?: SWRMutationConfiguration<Awaited$j<ReturnType<typeof deleteEmail>>, TError, Key, Arguments, Awaited$j<ReturnType<typeof deleteEmail>>> & {
|
|
13925
13974
|
swrKey?: string;
|
|
13926
13975
|
};
|
|
13927
|
-
request?: SecondParameter$
|
|
13976
|
+
request?: SecondParameter$j<typeof customFetch>;
|
|
13928
13977
|
}) => {
|
|
13929
13978
|
isMutating: boolean;
|
|
13930
13979
|
trigger: swr_mutation.TriggerWithOptionsArgs<DeleteEmailEnvelope, TError, string | readonly [`/v1/emails/${string}`], Arguments>;
|
|
@@ -13944,16 +13993,16 @@ declare const getListEmailsUrl: (params?: ListEmailsParams) => string;
|
|
|
13944
13993
|
*/
|
|
13945
13994
|
declare const listEmails: (params?: ListEmailsParams, options?: Parameters<typeof customFetch>[1]) => Promise<ListEmailsEnvelope>;
|
|
13946
13995
|
declare const getListEmailsKey: (params?: ListEmailsParams) => readonly ["/v1/emails", ...ListEmailsParams[]];
|
|
13947
|
-
type ListEmailsQueryResult = NonNullable<Awaited$
|
|
13996
|
+
type ListEmailsQueryResult = NonNullable<Awaited$j<ReturnType<typeof listEmails>>>;
|
|
13948
13997
|
/**
|
|
13949
13998
|
* @summary List emails
|
|
13950
13999
|
*/
|
|
13951
14000
|
declare const useListEmails: <TError = ErrorType<ErrorResponse>>(params?: ListEmailsParams, options?: {
|
|
13952
|
-
swr?: SWRConfiguration<Awaited$
|
|
14001
|
+
swr?: SWRConfiguration<Awaited$j<ReturnType<typeof listEmails>>, TError> & {
|
|
13953
14002
|
swrKey?: Key;
|
|
13954
14003
|
enabled?: boolean;
|
|
13955
14004
|
};
|
|
13956
|
-
request?: SecondParameter$
|
|
14005
|
+
request?: SecondParameter$j<typeof customFetch>;
|
|
13957
14006
|
}) => {
|
|
13958
14007
|
data: ListEmailsEnvelope | undefined;
|
|
13959
14008
|
error: TError | undefined;
|
|
@@ -13973,16 +14022,16 @@ declare const getListEmailThreadsUrl: (params?: ListEmailThreadsParams) => strin
|
|
|
13973
14022
|
*/
|
|
13974
14023
|
declare const listEmailThreads: (params?: ListEmailThreadsParams, options?: Parameters<typeof customFetch>[1]) => Promise<ListEmailThreadsEnvelope>;
|
|
13975
14024
|
declare const getListEmailThreadsKey: (params?: ListEmailThreadsParams) => readonly ["/v1/emails/threads", ...ListEmailThreadsParams[]];
|
|
13976
|
-
type ListEmailThreadsQueryResult = NonNullable<Awaited$
|
|
14025
|
+
type ListEmailThreadsQueryResult = NonNullable<Awaited$j<ReturnType<typeof listEmailThreads>>>;
|
|
13977
14026
|
/**
|
|
13978
14027
|
* @summary List email threads
|
|
13979
14028
|
*/
|
|
13980
14029
|
declare const useListEmailThreads: <TError = ErrorType<ErrorResponse>>(params?: ListEmailThreadsParams, options?: {
|
|
13981
|
-
swr?: SWRConfiguration<Awaited$
|
|
14030
|
+
swr?: SWRConfiguration<Awaited$j<ReturnType<typeof listEmailThreads>>, TError> & {
|
|
13982
14031
|
swrKey?: Key;
|
|
13983
14032
|
enabled?: boolean;
|
|
13984
14033
|
};
|
|
13985
|
-
request?: SecondParameter$
|
|
14034
|
+
request?: SecondParameter$j<typeof customFetch>;
|
|
13986
14035
|
}) => {
|
|
13987
14036
|
data: ListEmailThreadsEnvelope | undefined;
|
|
13988
14037
|
error: TError | undefined;
|
|
@@ -14001,19 +14050,19 @@ declare const getReplyToEmailUrl: (emailId: string) => string;
|
|
|
14001
14050
|
* @summary Reply to email
|
|
14002
14051
|
*/
|
|
14003
14052
|
declare const replyToEmail: (emailId: string, replyToEmailBody?: ReplyToEmailBody, options?: Parameters<typeof customFetch>[1]) => Promise<ReplyToEmailEnvelope>;
|
|
14004
|
-
declare const getReplyToEmailMutationFetcher: (emailId: string, options?: SecondParameter$
|
|
14053
|
+
declare const getReplyToEmailMutationFetcher: (emailId: string, options?: SecondParameter$j<typeof customFetch>) => (_: Key, { arg }: {
|
|
14005
14054
|
arg: ReplyToEmailBody | undefined;
|
|
14006
14055
|
}) => Promise<ReplyToEmailEnvelope>;
|
|
14007
14056
|
declare const getReplyToEmailMutationKey: (emailId: string) => readonly [`/v1/emails/${string}/reply`];
|
|
14008
|
-
type ReplyToEmailMutationResult = NonNullable<Awaited$
|
|
14057
|
+
type ReplyToEmailMutationResult = NonNullable<Awaited$j<ReturnType<typeof replyToEmail>>>;
|
|
14009
14058
|
/**
|
|
14010
14059
|
* @summary Reply to email
|
|
14011
14060
|
*/
|
|
14012
14061
|
declare const useReplyToEmail: <TError = ErrorType<ErrorResponse>>(emailId: string, options?: {
|
|
14013
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
14062
|
+
swr?: SWRMutationConfiguration<Awaited$j<ReturnType<typeof replyToEmail>>, TError, Key, ReplyToEmailBody | undefined, Awaited$j<ReturnType<typeof replyToEmail>>> & {
|
|
14014
14063
|
swrKey?: string;
|
|
14015
14064
|
};
|
|
14016
|
-
request?: SecondParameter$
|
|
14065
|
+
request?: SecondParameter$j<typeof customFetch>;
|
|
14017
14066
|
}) => {
|
|
14018
14067
|
isMutating: boolean;
|
|
14019
14068
|
trigger: swr_mutation.TriggerWithOptionsArgs<ReplyToEmailEnvelope, TError, string | readonly [`/v1/emails/${string}/reply`], ReplyToEmailBody | undefined>;
|
|
@@ -14030,19 +14079,19 @@ declare const getSendEmailUrl: () => string;
|
|
|
14030
14079
|
* @summary Send email
|
|
14031
14080
|
*/
|
|
14032
14081
|
declare const sendEmail: (sendEmailBody?: SendEmailBody, options?: Parameters<typeof customFetch>[1]) => Promise<SendEmailEnvelope>;
|
|
14033
|
-
declare const getSendEmailMutationFetcher: (options?: SecondParameter$
|
|
14082
|
+
declare const getSendEmailMutationFetcher: (options?: SecondParameter$j<typeof customFetch>) => (_: Key, { arg }: {
|
|
14034
14083
|
arg: SendEmailBody | undefined;
|
|
14035
14084
|
}) => Promise<SendEmailEnvelope>;
|
|
14036
14085
|
declare const getSendEmailMutationKey: () => readonly ["/v1/emails/send"];
|
|
14037
|
-
type SendEmailMutationResult = NonNullable<Awaited$
|
|
14086
|
+
type SendEmailMutationResult = NonNullable<Awaited$j<ReturnType<typeof sendEmail>>>;
|
|
14038
14087
|
/**
|
|
14039
14088
|
* @summary Send email
|
|
14040
14089
|
*/
|
|
14041
14090
|
declare const useSendEmail: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
14042
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
14091
|
+
swr?: SWRMutationConfiguration<Awaited$j<ReturnType<typeof sendEmail>>, TError, Key, SendEmailBody | undefined, Awaited$j<ReturnType<typeof sendEmail>>> & {
|
|
14043
14092
|
swrKey?: string;
|
|
14044
14093
|
};
|
|
14045
|
-
request?: SecondParameter$
|
|
14094
|
+
request?: SecondParameter$j<typeof customFetch>;
|
|
14046
14095
|
}) => {
|
|
14047
14096
|
isMutating: boolean;
|
|
14048
14097
|
trigger: swr_mutation.TriggerWithOptionsArgs<SendEmailEnvelope, TError, string | readonly ["/v1/emails/send"], SendEmailBody | undefined>;
|
|
@@ -14052,28 +14101,28 @@ declare const useSendEmail: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
14052
14101
|
swrKey: string | readonly ["/v1/emails/send"];
|
|
14053
14102
|
};
|
|
14054
14103
|
|
|
14055
|
-
type AwaitedInput$
|
|
14056
|
-
type Awaited$
|
|
14057
|
-
type SecondParameter$
|
|
14104
|
+
type AwaitedInput$i<T> = PromiseLike<T> | T;
|
|
14105
|
+
type Awaited$i<O> = O extends AwaitedInput$i<infer T> ? T : never;
|
|
14106
|
+
type SecondParameter$i<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
14058
14107
|
declare const getCreateWorkerEvalFromRunUrl: (workerRunId: string) => string;
|
|
14059
14108
|
/**
|
|
14060
14109
|
* Snapshot a worker run's trigger and resolved artifacts, and record its MCP tool responses from telemetry for replay. Each assertion is graded PASS/FAIL independently on every run.
|
|
14061
14110
|
* @summary Create a worker eval from a run
|
|
14062
14111
|
*/
|
|
14063
14112
|
declare const createWorkerEvalFromRun: (workerRunId: string, createWorkerEvalFromRunBody?: CreateWorkerEvalFromRunBody, options?: Parameters<typeof customFetch>[1]) => Promise<CreateWorkerEvalFromRunEnvelope>;
|
|
14064
|
-
declare const getCreateWorkerEvalFromRunMutationFetcher: (workerRunId: string, options?: SecondParameter$
|
|
14113
|
+
declare const getCreateWorkerEvalFromRunMutationFetcher: (workerRunId: string, options?: SecondParameter$i<typeof customFetch>) => (_: Key, { arg }: {
|
|
14065
14114
|
arg: CreateWorkerEvalFromRunBody | undefined;
|
|
14066
14115
|
}) => Promise<CreateWorkerEvalFromRunEnvelope>;
|
|
14067
14116
|
declare const getCreateWorkerEvalFromRunMutationKey: (workerRunId: string) => readonly [`/v1/worker-runs/${string}/evals`];
|
|
14068
|
-
type CreateWorkerEvalFromRunMutationResult = NonNullable<Awaited$
|
|
14117
|
+
type CreateWorkerEvalFromRunMutationResult = NonNullable<Awaited$i<ReturnType<typeof createWorkerEvalFromRun>>>;
|
|
14069
14118
|
/**
|
|
14070
14119
|
* @summary Create a worker eval from a run
|
|
14071
14120
|
*/
|
|
14072
14121
|
declare const useCreateWorkerEvalFromRun: <TError = ErrorType<ErrorResponse>>(workerRunId: string, options?: {
|
|
14073
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
14122
|
+
swr?: SWRMutationConfiguration<Awaited$i<ReturnType<typeof createWorkerEvalFromRun>>, TError, Key, CreateWorkerEvalFromRunBody | undefined, Awaited$i<ReturnType<typeof createWorkerEvalFromRun>>> & {
|
|
14074
14123
|
swrKey?: string;
|
|
14075
14124
|
};
|
|
14076
|
-
request?: SecondParameter$
|
|
14125
|
+
request?: SecondParameter$i<typeof customFetch>;
|
|
14077
14126
|
}) => {
|
|
14078
14127
|
isMutating: boolean;
|
|
14079
14128
|
trigger: swr_mutation.TriggerWithOptionsArgs<CreateWorkerEvalFromRunEnvelope, TError, string | readonly [`/v1/worker-runs/${string}/evals`], CreateWorkerEvalFromRunBody | undefined>;
|
|
@@ -14088,19 +14137,19 @@ declare const getRunEvalUrl: (evalId: string) => string;
|
|
|
14088
14137
|
* @summary Run an eval
|
|
14089
14138
|
*/
|
|
14090
14139
|
declare const runEval: (evalId: string, runEvalBody?: RunEvalBody, options?: Parameters<typeof customFetch>[1]) => Promise<RunEvalEnvelope>;
|
|
14091
|
-
declare const getRunEvalMutationFetcher: (evalId: string, options?: SecondParameter$
|
|
14140
|
+
declare const getRunEvalMutationFetcher: (evalId: string, options?: SecondParameter$i<typeof customFetch>) => (_: Key, { arg }: {
|
|
14092
14141
|
arg: RunEvalBody | undefined;
|
|
14093
14142
|
}) => Promise<RunEvalEnvelope>;
|
|
14094
14143
|
declare const getRunEvalMutationKey: (evalId: string) => readonly [`/v1/evals/${string}/runs`];
|
|
14095
|
-
type RunEvalMutationResult = NonNullable<Awaited$
|
|
14144
|
+
type RunEvalMutationResult = NonNullable<Awaited$i<ReturnType<typeof runEval>>>;
|
|
14096
14145
|
/**
|
|
14097
14146
|
* @summary Run an eval
|
|
14098
14147
|
*/
|
|
14099
14148
|
declare const useRunEval: <TError = ErrorType<ErrorResponse>>(evalId: string, options?: {
|
|
14100
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
14149
|
+
swr?: SWRMutationConfiguration<Awaited$i<ReturnType<typeof runEval>>, TError, Key, RunEvalBody | undefined, Awaited$i<ReturnType<typeof runEval>>> & {
|
|
14101
14150
|
swrKey?: string;
|
|
14102
14151
|
};
|
|
14103
|
-
request?: SecondParameter$
|
|
14152
|
+
request?: SecondParameter$i<typeof customFetch>;
|
|
14104
14153
|
}) => {
|
|
14105
14154
|
isMutating: boolean;
|
|
14106
14155
|
trigger: swr_mutation.TriggerWithOptionsArgs<RunEvalEnvelope, TError, string | readonly [`/v1/evals/${string}/runs`], RunEvalBody | undefined>;
|
|
@@ -14116,16 +14165,16 @@ declare const getGetEvalRunUrl: (evalRunId: string) => string;
|
|
|
14116
14165
|
*/
|
|
14117
14166
|
declare const getEvalRun: (evalRunId: string, options?: Parameters<typeof customFetch>[1]) => Promise<GetEvalRunEnvelope>;
|
|
14118
14167
|
declare const getGetEvalRunKey: (evalRunId: string) => readonly [`/v1/eval-runs/${string}`];
|
|
14119
|
-
type GetEvalRunQueryResult = NonNullable<Awaited$
|
|
14168
|
+
type GetEvalRunQueryResult = NonNullable<Awaited$i<ReturnType<typeof getEvalRun>>>;
|
|
14120
14169
|
/**
|
|
14121
14170
|
* @summary Get an eval run
|
|
14122
14171
|
*/
|
|
14123
14172
|
declare const useGetEvalRun: <TError = ErrorType<ErrorResponse>>(evalRunId: string, options?: {
|
|
14124
|
-
swr?: SWRConfiguration<Awaited$
|
|
14173
|
+
swr?: SWRConfiguration<Awaited$i<ReturnType<typeof getEvalRun>>, TError> & {
|
|
14125
14174
|
swrKey?: Key;
|
|
14126
14175
|
enabled?: boolean;
|
|
14127
14176
|
};
|
|
14128
|
-
request?: SecondParameter$
|
|
14177
|
+
request?: SecondParameter$i<typeof customFetch>;
|
|
14129
14178
|
}) => {
|
|
14130
14179
|
data: GetEvalRunEnvelope | undefined;
|
|
14131
14180
|
error: TError | undefined;
|
|
@@ -14140,19 +14189,19 @@ declare const getCreateEvalBenchmarkUrl: (evalId: string) => string;
|
|
|
14140
14189
|
* @summary Benchmark two worker versions on an eval
|
|
14141
14190
|
*/
|
|
14142
14191
|
declare const createEvalBenchmark: (evalId: string, createEvalBenchmarkBody?: CreateEvalBenchmarkBody, options?: Parameters<typeof customFetch>[1]) => Promise<CreateEvalBenchmarkEnvelope>;
|
|
14143
|
-
declare const getCreateEvalBenchmarkMutationFetcher: (evalId: string, options?: SecondParameter$
|
|
14192
|
+
declare const getCreateEvalBenchmarkMutationFetcher: (evalId: string, options?: SecondParameter$i<typeof customFetch>) => (_: Key, { arg }: {
|
|
14144
14193
|
arg: CreateEvalBenchmarkBody | undefined;
|
|
14145
14194
|
}) => Promise<CreateEvalBenchmarkEnvelope>;
|
|
14146
14195
|
declare const getCreateEvalBenchmarkMutationKey: (evalId: string) => readonly [`/v1/evals/${string}/benchmarks`];
|
|
14147
|
-
type CreateEvalBenchmarkMutationResult = NonNullable<Awaited$
|
|
14196
|
+
type CreateEvalBenchmarkMutationResult = NonNullable<Awaited$i<ReturnType<typeof createEvalBenchmark>>>;
|
|
14148
14197
|
/**
|
|
14149
14198
|
* @summary Benchmark two worker versions on an eval
|
|
14150
14199
|
*/
|
|
14151
14200
|
declare const useCreateEvalBenchmark: <TError = ErrorType<ErrorResponse>>(evalId: string, options?: {
|
|
14152
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
14201
|
+
swr?: SWRMutationConfiguration<Awaited$i<ReturnType<typeof createEvalBenchmark>>, TError, Key, CreateEvalBenchmarkBody | undefined, Awaited$i<ReturnType<typeof createEvalBenchmark>>> & {
|
|
14153
14202
|
swrKey?: string;
|
|
14154
14203
|
};
|
|
14155
|
-
request?: SecondParameter$
|
|
14204
|
+
request?: SecondParameter$i<typeof customFetch>;
|
|
14156
14205
|
}) => {
|
|
14157
14206
|
isMutating: boolean;
|
|
14158
14207
|
trigger: swr_mutation.TriggerWithOptionsArgs<CreateEvalBenchmarkEnvelope, TError, string | readonly [`/v1/evals/${string}/benchmarks`], CreateEvalBenchmarkBody | undefined>;
|
|
@@ -14168,16 +14217,16 @@ declare const getGetBenchmarkUrl: (benchmarkId: string) => string;
|
|
|
14168
14217
|
*/
|
|
14169
14218
|
declare const getBenchmark: (benchmarkId: string, options?: Parameters<typeof customFetch>[1]) => Promise<GetBenchmarkEnvelope>;
|
|
14170
14219
|
declare const getGetBenchmarkKey: (benchmarkId: string) => readonly [`/v1/benchmarks/${string}`];
|
|
14171
|
-
type GetBenchmarkQueryResult = NonNullable<Awaited$
|
|
14220
|
+
type GetBenchmarkQueryResult = NonNullable<Awaited$i<ReturnType<typeof getBenchmark>>>;
|
|
14172
14221
|
/**
|
|
14173
14222
|
* @summary Get a benchmark
|
|
14174
14223
|
*/
|
|
14175
14224
|
declare const useGetBenchmark: <TError = ErrorType<ErrorResponse>>(benchmarkId: string, options?: {
|
|
14176
|
-
swr?: SWRConfiguration<Awaited$
|
|
14225
|
+
swr?: SWRConfiguration<Awaited$i<ReturnType<typeof getBenchmark>>, TError> & {
|
|
14177
14226
|
swrKey?: Key;
|
|
14178
14227
|
enabled?: boolean;
|
|
14179
14228
|
};
|
|
14180
|
-
request?: SecondParameter$
|
|
14229
|
+
request?: SecondParameter$i<typeof customFetch>;
|
|
14181
14230
|
}) => {
|
|
14182
14231
|
data: GetBenchmarkEnvelope | undefined;
|
|
14183
14232
|
error: TError | undefined;
|
|
@@ -14187,9 +14236,9 @@ declare const useGetBenchmark: <TError = ErrorType<ErrorResponse>>(benchmarkId:
|
|
|
14187
14236
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
14188
14237
|
};
|
|
14189
14238
|
|
|
14190
|
-
type AwaitedInput$
|
|
14191
|
-
type Awaited$
|
|
14192
|
-
type SecondParameter$
|
|
14239
|
+
type AwaitedInput$h<T> = PromiseLike<T> | T;
|
|
14240
|
+
type Awaited$h<O> = O extends AwaitedInput$h<infer T> ? T : never;
|
|
14241
|
+
type SecondParameter$h<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
14193
14242
|
declare const getListExtractorJobsUrl: (params?: ListExtractorJobsParams) => string;
|
|
14194
14243
|
/**
|
|
14195
14244
|
* List all extraction jobs with pagination, filtering, and sorting.
|
|
@@ -14206,16 +14255,16 @@ declare const getListExtractorJobsUrl: (params?: ListExtractorJobsParams) => str
|
|
|
14206
14255
|
*/
|
|
14207
14256
|
declare const listExtractorJobs: (params?: ListExtractorJobsParams, options?: Parameters<typeof customFetch>[1]) => Promise<ListExtractorJobsEnvelope>;
|
|
14208
14257
|
declare const getListExtractorJobsKey: (params?: ListExtractorJobsParams) => readonly ["/v1/extractor-jobs", ...ListExtractorJobsParams[]];
|
|
14209
|
-
type ListExtractorJobsQueryResult = NonNullable<Awaited$
|
|
14258
|
+
type ListExtractorJobsQueryResult = NonNullable<Awaited$h<ReturnType<typeof listExtractorJobs>>>;
|
|
14210
14259
|
/**
|
|
14211
14260
|
* @summary List extractor jobs
|
|
14212
14261
|
*/
|
|
14213
14262
|
declare const useListExtractorJobs: <TError = ErrorType<ErrorResponse>>(params?: ListExtractorJobsParams, options?: {
|
|
14214
|
-
swr?: SWRConfiguration<Awaited$
|
|
14263
|
+
swr?: SWRConfiguration<Awaited$h<ReturnType<typeof listExtractorJobs>>, TError> & {
|
|
14215
14264
|
swrKey?: Key;
|
|
14216
14265
|
enabled?: boolean;
|
|
14217
14266
|
};
|
|
14218
|
-
request?: SecondParameter$
|
|
14267
|
+
request?: SecondParameter$h<typeof customFetch>;
|
|
14219
14268
|
}) => {
|
|
14220
14269
|
data: ListExtractorJobsEnvelope | undefined;
|
|
14221
14270
|
error: TError | undefined;
|
|
@@ -14232,19 +14281,19 @@ declare const getCreateExtractorJobUrl: () => string;
|
|
|
14232
14281
|
* @summary Create extractor job
|
|
14233
14282
|
*/
|
|
14234
14283
|
declare const createExtractorJob: (createExtractorJobBody?: CreateExtractorJobBody, options?: Parameters<typeof customFetch>[1]) => Promise<CreateExtractorJobEnvelope>;
|
|
14235
|
-
declare const getCreateExtractorJobMutationFetcher: (options?: SecondParameter$
|
|
14284
|
+
declare const getCreateExtractorJobMutationFetcher: (options?: SecondParameter$h<typeof customFetch>) => (_: Key, { arg }: {
|
|
14236
14285
|
arg: CreateExtractorJobBody | undefined;
|
|
14237
14286
|
}) => Promise<CreateExtractorJobEnvelope>;
|
|
14238
14287
|
declare const getCreateExtractorJobMutationKey: () => readonly ["/v1/extractor-jobs"];
|
|
14239
|
-
type CreateExtractorJobMutationResult = NonNullable<Awaited$
|
|
14288
|
+
type CreateExtractorJobMutationResult = NonNullable<Awaited$h<ReturnType<typeof createExtractorJob>>>;
|
|
14240
14289
|
/**
|
|
14241
14290
|
* @summary Create extractor job
|
|
14242
14291
|
*/
|
|
14243
14292
|
declare const useCreateExtractorJob: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
14244
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
14293
|
+
swr?: SWRMutationConfiguration<Awaited$h<ReturnType<typeof createExtractorJob>>, TError, Key, CreateExtractorJobBody | undefined, Awaited$h<ReturnType<typeof createExtractorJob>>> & {
|
|
14245
14294
|
swrKey?: string;
|
|
14246
14295
|
};
|
|
14247
|
-
request?: SecondParameter$
|
|
14296
|
+
request?: SecondParameter$h<typeof customFetch>;
|
|
14248
14297
|
}) => {
|
|
14249
14298
|
isMutating: boolean;
|
|
14250
14299
|
trigger: swr_mutation.TriggerWithOptionsArgs<CreateExtractorJobEnvelope, TError, string | readonly ["/v1/extractor-jobs"], CreateExtractorJobBody | undefined>;
|
|
@@ -14260,16 +14309,16 @@ declare const getGetExtractorJobUrl: (id: string) => string;
|
|
|
14260
14309
|
*/
|
|
14261
14310
|
declare const getExtractorJob: (id: string, options?: Parameters<typeof customFetch>[1]) => Promise<GetExtractorJobEnvelope>;
|
|
14262
14311
|
declare const getGetExtractorJobKey: (id: string) => readonly [`/v1/extractor-jobs/${string}`];
|
|
14263
|
-
type GetExtractorJobQueryResult = NonNullable<Awaited$
|
|
14312
|
+
type GetExtractorJobQueryResult = NonNullable<Awaited$h<ReturnType<typeof getExtractorJob>>>;
|
|
14264
14313
|
/**
|
|
14265
14314
|
* @summary Get extractor job
|
|
14266
14315
|
*/
|
|
14267
14316
|
declare const useGetExtractorJob: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
|
|
14268
|
-
swr?: SWRConfiguration<Awaited$
|
|
14317
|
+
swr?: SWRConfiguration<Awaited$h<ReturnType<typeof getExtractorJob>>, TError> & {
|
|
14269
14318
|
swrKey?: Key;
|
|
14270
14319
|
enabled?: boolean;
|
|
14271
14320
|
};
|
|
14272
|
-
request?: SecondParameter$
|
|
14321
|
+
request?: SecondParameter$h<typeof customFetch>;
|
|
14273
14322
|
}) => {
|
|
14274
14323
|
data: GetExtractorJobEnvelope | undefined;
|
|
14275
14324
|
error: TError | undefined;
|
|
@@ -14279,28 +14328,28 @@ declare const useGetExtractorJob: <TError = ErrorType<ErrorResponse>>(id: string
|
|
|
14279
14328
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
14280
14329
|
};
|
|
14281
14330
|
|
|
14282
|
-
type AwaitedInput$
|
|
14283
|
-
type Awaited$
|
|
14284
|
-
type SecondParameter$
|
|
14331
|
+
type AwaitedInput$g<T> = PromiseLike<T> | T;
|
|
14332
|
+
type Awaited$g<O> = O extends AwaitedInput$g<infer T> ? T : never;
|
|
14333
|
+
type SecondParameter$g<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
14285
14334
|
declare const getCreateExtractorUrl: () => string;
|
|
14286
14335
|
/**
|
|
14287
14336
|
* Create a new extractor with a name and JSON schema defining the extraction output format.
|
|
14288
14337
|
* @summary Create extractor
|
|
14289
14338
|
*/
|
|
14290
14339
|
declare const createExtractor: (createExtractorBody?: CreateExtractorBody, options?: Parameters<typeof customFetch>[1]) => Promise<CreateExtractorEnvelope>;
|
|
14291
|
-
declare const getCreateExtractorMutationFetcher: (options?: SecondParameter$
|
|
14340
|
+
declare const getCreateExtractorMutationFetcher: (options?: SecondParameter$g<typeof customFetch>) => (_: Key, { arg }: {
|
|
14292
14341
|
arg: CreateExtractorBody | undefined;
|
|
14293
14342
|
}) => Promise<CreateExtractorEnvelope>;
|
|
14294
14343
|
declare const getCreateExtractorMutationKey: () => readonly ["/v1/extractors"];
|
|
14295
|
-
type CreateExtractorMutationResult = NonNullable<Awaited$
|
|
14344
|
+
type CreateExtractorMutationResult = NonNullable<Awaited$g<ReturnType<typeof createExtractor>>>;
|
|
14296
14345
|
/**
|
|
14297
14346
|
* @summary Create extractor
|
|
14298
14347
|
*/
|
|
14299
14348
|
declare const useCreateExtractor: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
14300
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
14349
|
+
swr?: SWRMutationConfiguration<Awaited$g<ReturnType<typeof createExtractor>>, TError, Key, CreateExtractorBody | undefined, Awaited$g<ReturnType<typeof createExtractor>>> & {
|
|
14301
14350
|
swrKey?: string;
|
|
14302
14351
|
};
|
|
14303
|
-
request?: SecondParameter$
|
|
14352
|
+
request?: SecondParameter$g<typeof customFetch>;
|
|
14304
14353
|
}) => {
|
|
14305
14354
|
isMutating: boolean;
|
|
14306
14355
|
trigger: swr_mutation.TriggerWithOptionsArgs<CreateExtractorEnvelope, TError, string | readonly ["/v1/extractors"], CreateExtractorBody | undefined>;
|
|
@@ -14318,16 +14367,16 @@ declare const getListExtractorsUrl: (params?: ListExtractorsParams) => string;
|
|
|
14318
14367
|
*/
|
|
14319
14368
|
declare const listExtractors: (params?: ListExtractorsParams, options?: Parameters<typeof customFetch>[1]) => Promise<ListExtractorsEnvelope>;
|
|
14320
14369
|
declare const getListExtractorsKey: (params?: ListExtractorsParams) => readonly ["/v1/extractors", ...ListExtractorsParams[]];
|
|
14321
|
-
type ListExtractorsQueryResult = NonNullable<Awaited$
|
|
14370
|
+
type ListExtractorsQueryResult = NonNullable<Awaited$g<ReturnType<typeof listExtractors>>>;
|
|
14322
14371
|
/**
|
|
14323
14372
|
* @summary List extractors
|
|
14324
14373
|
*/
|
|
14325
14374
|
declare const useListExtractors: <TError = ErrorType<ErrorResponse>>(params?: ListExtractorsParams, options?: {
|
|
14326
|
-
swr?: SWRConfiguration<Awaited$
|
|
14375
|
+
swr?: SWRConfiguration<Awaited$g<ReturnType<typeof listExtractors>>, TError> & {
|
|
14327
14376
|
swrKey?: Key;
|
|
14328
14377
|
enabled?: boolean;
|
|
14329
14378
|
};
|
|
14330
|
-
request?: SecondParameter$
|
|
14379
|
+
request?: SecondParameter$g<typeof customFetch>;
|
|
14331
14380
|
}) => {
|
|
14332
14381
|
data: ListExtractorsEnvelope | undefined;
|
|
14333
14382
|
error: TError | undefined;
|
|
@@ -14343,16 +14392,16 @@ declare const getGetExtractorUrl: (id: string) => string;
|
|
|
14343
14392
|
*/
|
|
14344
14393
|
declare const getExtractor: (id: string, options?: Parameters<typeof customFetch>[1]) => Promise<GetExtractorEnvelope>;
|
|
14345
14394
|
declare const getGetExtractorKey: (id: string) => readonly [`/v1/extractors/${string}`];
|
|
14346
|
-
type GetExtractorQueryResult = NonNullable<Awaited$
|
|
14395
|
+
type GetExtractorQueryResult = NonNullable<Awaited$g<ReturnType<typeof getExtractor>>>;
|
|
14347
14396
|
/**
|
|
14348
14397
|
* @summary Get extractor
|
|
14349
14398
|
*/
|
|
14350
14399
|
declare const useGetExtractor: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
|
|
14351
|
-
swr?: SWRConfiguration<Awaited$
|
|
14400
|
+
swr?: SWRConfiguration<Awaited$g<ReturnType<typeof getExtractor>>, TError> & {
|
|
14352
14401
|
swrKey?: Key;
|
|
14353
14402
|
enabled?: boolean;
|
|
14354
14403
|
};
|
|
14355
|
-
request?: SecondParameter$
|
|
14404
|
+
request?: SecondParameter$g<typeof customFetch>;
|
|
14356
14405
|
}) => {
|
|
14357
14406
|
data: GetExtractorEnvelope | undefined;
|
|
14358
14407
|
error: TError | undefined;
|
|
@@ -14367,19 +14416,19 @@ declare const getUpdateExtractorUrl: (id: string) => string;
|
|
|
14367
14416
|
* @summary Update extractor
|
|
14368
14417
|
*/
|
|
14369
14418
|
declare const updateExtractor: (id: string, updateExtractorBody?: UpdateExtractorBody, options?: Parameters<typeof customFetch>[1]) => Promise<UpdateExtractorEnvelope>;
|
|
14370
|
-
declare const getUpdateExtractorMutationFetcher: (id: string, options?: SecondParameter$
|
|
14419
|
+
declare const getUpdateExtractorMutationFetcher: (id: string, options?: SecondParameter$g<typeof customFetch>) => (_: Key, { arg }: {
|
|
14371
14420
|
arg: UpdateExtractorBody | undefined;
|
|
14372
14421
|
}) => Promise<UpdateExtractorEnvelope>;
|
|
14373
14422
|
declare const getUpdateExtractorMutationKey: (id: string) => readonly [`/v1/extractors/${string}`];
|
|
14374
|
-
type UpdateExtractorMutationResult = NonNullable<Awaited$
|
|
14423
|
+
type UpdateExtractorMutationResult = NonNullable<Awaited$g<ReturnType<typeof updateExtractor>>>;
|
|
14375
14424
|
/**
|
|
14376
14425
|
* @summary Update extractor
|
|
14377
14426
|
*/
|
|
14378
14427
|
declare const useUpdateExtractor: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
|
|
14379
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
14428
|
+
swr?: SWRMutationConfiguration<Awaited$g<ReturnType<typeof updateExtractor>>, TError, Key, UpdateExtractorBody | undefined, Awaited$g<ReturnType<typeof updateExtractor>>> & {
|
|
14380
14429
|
swrKey?: string;
|
|
14381
14430
|
};
|
|
14382
|
-
request?: SecondParameter$
|
|
14431
|
+
request?: SecondParameter$g<typeof customFetch>;
|
|
14383
14432
|
}) => {
|
|
14384
14433
|
isMutating: boolean;
|
|
14385
14434
|
trigger: swr_mutation.TriggerWithOptionsArgs<UpdateExtractorEnvelope, TError, string | readonly [`/v1/extractors/${string}`], UpdateExtractorBody | undefined>;
|
|
@@ -14394,19 +14443,19 @@ declare const getDeleteExtractorUrl: (id: string) => string;
|
|
|
14394
14443
|
* @summary Delete extractor
|
|
14395
14444
|
*/
|
|
14396
14445
|
declare const deleteExtractor: (id: string, options?: Parameters<typeof customFetch>[1]) => Promise<DeleteExtractorEnvelope>;
|
|
14397
|
-
declare const getDeleteExtractorMutationFetcher: (id: string, options?: SecondParameter$
|
|
14446
|
+
declare const getDeleteExtractorMutationFetcher: (id: string, options?: SecondParameter$g<typeof customFetch>) => (_: Key, __: {
|
|
14398
14447
|
arg: Arguments;
|
|
14399
14448
|
}) => Promise<DeleteExtractorEnvelope>;
|
|
14400
14449
|
declare const getDeleteExtractorMutationKey: (id: string) => readonly [`/v1/extractors/${string}`];
|
|
14401
|
-
type DeleteExtractorMutationResult = NonNullable<Awaited$
|
|
14450
|
+
type DeleteExtractorMutationResult = NonNullable<Awaited$g<ReturnType<typeof deleteExtractor>>>;
|
|
14402
14451
|
/**
|
|
14403
14452
|
* @summary Delete extractor
|
|
14404
14453
|
*/
|
|
14405
14454
|
declare const useDeleteExtractor: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
|
|
14406
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
14455
|
+
swr?: SWRMutationConfiguration<Awaited$g<ReturnType<typeof deleteExtractor>>, TError, Key, Arguments, Awaited$g<ReturnType<typeof deleteExtractor>>> & {
|
|
14407
14456
|
swrKey?: string;
|
|
14408
14457
|
};
|
|
14409
|
-
request?: SecondParameter$
|
|
14458
|
+
request?: SecondParameter$g<typeof customFetch>;
|
|
14410
14459
|
}) => {
|
|
14411
14460
|
isMutating: boolean;
|
|
14412
14461
|
trigger: swr_mutation.TriggerWithOptionsArgs<DeleteExtractorEnvelope, TError, string | readonly [`/v1/extractors/${string}`], Arguments>;
|
|
@@ -14416,9 +14465,9 @@ declare const useDeleteExtractor: <TError = ErrorType<ErrorResponse>>(id: string
|
|
|
14416
14465
|
swrKey: string | readonly [`/v1/extractors/${string}`];
|
|
14417
14466
|
};
|
|
14418
14467
|
|
|
14419
|
-
type AwaitedInput$
|
|
14420
|
-
type Awaited$
|
|
14421
|
-
type SecondParameter$
|
|
14468
|
+
type AwaitedInput$f<T> = PromiseLike<T> | T;
|
|
14469
|
+
type Awaited$f<O> = O extends AwaitedInput$f<infer T> ? T : never;
|
|
14470
|
+
type SecondParameter$f<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
14422
14471
|
declare const getGetExtractUrl: (id: string) => string;
|
|
14423
14472
|
/**
|
|
14424
14473
|
* Retrieve a single extract by ID, including the extraction result data.
|
|
@@ -14426,16 +14475,16 @@ declare const getGetExtractUrl: (id: string) => string;
|
|
|
14426
14475
|
*/
|
|
14427
14476
|
declare const getExtract: (id: string, options?: Parameters<typeof customFetch>[1]) => Promise<GetExtractEnvelope>;
|
|
14428
14477
|
declare const getGetExtractKey: (id: string) => readonly [`/v1/extracts/${string}`];
|
|
14429
|
-
type GetExtractQueryResult = NonNullable<Awaited$
|
|
14478
|
+
type GetExtractQueryResult = NonNullable<Awaited$f<ReturnType<typeof getExtract>>>;
|
|
14430
14479
|
/**
|
|
14431
14480
|
* @summary Get extract
|
|
14432
14481
|
*/
|
|
14433
14482
|
declare const useGetExtract: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
|
|
14434
|
-
swr?: SWRConfiguration<Awaited$
|
|
14483
|
+
swr?: SWRConfiguration<Awaited$f<ReturnType<typeof getExtract>>, TError> & {
|
|
14435
14484
|
swrKey?: Key;
|
|
14436
14485
|
enabled?: boolean;
|
|
14437
14486
|
};
|
|
14438
|
-
request?: SecondParameter$
|
|
14487
|
+
request?: SecondParameter$f<typeof customFetch>;
|
|
14439
14488
|
}) => {
|
|
14440
14489
|
data: GetExtractEnvelope | undefined;
|
|
14441
14490
|
error: TError | undefined;
|
|
@@ -14451,16 +14500,16 @@ declare const getGetExtractCitationsUrl: (id: string) => string;
|
|
|
14451
14500
|
*/
|
|
14452
14501
|
declare const getExtractCitations: (id: string, options?: Parameters<typeof customFetch>[1]) => Promise<GetExtractCitationsEnvelope>;
|
|
14453
14502
|
declare const getGetExtractCitationsKey: (id: string) => readonly [`/v1/extracts/${string}/citations`];
|
|
14454
|
-
type GetExtractCitationsQueryResult = NonNullable<Awaited$
|
|
14503
|
+
type GetExtractCitationsQueryResult = NonNullable<Awaited$f<ReturnType<typeof getExtractCitations>>>;
|
|
14455
14504
|
/**
|
|
14456
14505
|
* @summary Get extract citations
|
|
14457
14506
|
*/
|
|
14458
14507
|
declare const useGetExtractCitations: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
|
|
14459
|
-
swr?: SWRConfiguration<Awaited$
|
|
14508
|
+
swr?: SWRConfiguration<Awaited$f<ReturnType<typeof getExtractCitations>>, TError> & {
|
|
14460
14509
|
swrKey?: Key;
|
|
14461
14510
|
enabled?: boolean;
|
|
14462
14511
|
};
|
|
14463
|
-
request?: SecondParameter$
|
|
14512
|
+
request?: SecondParameter$f<typeof customFetch>;
|
|
14464
14513
|
}) => {
|
|
14465
14514
|
data: GetExtractCitationsEnvelope | undefined;
|
|
14466
14515
|
error: TError | undefined;
|
|
@@ -14483,16 +14532,16 @@ declare const getListExtractsUrl: (params?: ListExtractsParams) => string;
|
|
|
14483
14532
|
*/
|
|
14484
14533
|
declare const listExtracts: (params?: ListExtractsParams, options?: Parameters<typeof customFetch>[1]) => Promise<ListExtractsEnvelope>;
|
|
14485
14534
|
declare const getListExtractsKey: (params?: ListExtractsParams) => readonly ["/v1/extracts", ...ListExtractsParams[]];
|
|
14486
|
-
type ListExtractsQueryResult = NonNullable<Awaited$
|
|
14535
|
+
type ListExtractsQueryResult = NonNullable<Awaited$f<ReturnType<typeof listExtracts>>>;
|
|
14487
14536
|
/**
|
|
14488
14537
|
* @summary List extracts
|
|
14489
14538
|
*/
|
|
14490
14539
|
declare const useListExtracts: <TError = ErrorType<ErrorResponse>>(params?: ListExtractsParams, options?: {
|
|
14491
|
-
swr?: SWRConfiguration<Awaited$
|
|
14540
|
+
swr?: SWRConfiguration<Awaited$f<ReturnType<typeof listExtracts>>, TError> & {
|
|
14492
14541
|
swrKey?: Key;
|
|
14493
14542
|
enabled?: boolean;
|
|
14494
14543
|
};
|
|
14495
|
-
request?: SecondParameter$
|
|
14544
|
+
request?: SecondParameter$f<typeof customFetch>;
|
|
14496
14545
|
}) => {
|
|
14497
14546
|
data: ListExtractsEnvelope | undefined;
|
|
14498
14547
|
error: TError | undefined;
|
|
@@ -14502,9 +14551,9 @@ declare const useListExtracts: <TError = ErrorType<ErrorResponse>>(params?: List
|
|
|
14502
14551
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
14503
14552
|
};
|
|
14504
14553
|
|
|
14505
|
-
type AwaitedInput$
|
|
14506
|
-
type Awaited$
|
|
14507
|
-
type SecondParameter$
|
|
14554
|
+
type AwaitedInput$e<T> = PromiseLike<T> | T;
|
|
14555
|
+
type Awaited$e<O> = O extends AwaitedInput$e<infer T> ? T : never;
|
|
14556
|
+
type SecondParameter$e<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
14508
14557
|
declare const getCheckInboxAvailabilityUrl: (params: CheckInboxAvailabilityParams) => string;
|
|
14509
14558
|
/**
|
|
14510
14559
|
* Check whether a given email username is available for creating a new inbox.
|
|
@@ -14515,16 +14564,16 @@ declare const getCheckInboxAvailabilityUrl: (params: CheckInboxAvailabilityParam
|
|
|
14515
14564
|
*/
|
|
14516
14565
|
declare const checkInboxAvailability: (params: CheckInboxAvailabilityParams, options?: Parameters<typeof customFetch>[1]) => Promise<CheckInboxAvailabilityEnvelope>;
|
|
14517
14566
|
declare const getCheckInboxAvailabilityKey: (params: CheckInboxAvailabilityParams) => readonly ["/v1/inboxes/availability", ...CheckInboxAvailabilityParams[]];
|
|
14518
|
-
type CheckInboxAvailabilityQueryResult = NonNullable<Awaited$
|
|
14567
|
+
type CheckInboxAvailabilityQueryResult = NonNullable<Awaited$e<ReturnType<typeof checkInboxAvailability>>>;
|
|
14519
14568
|
/**
|
|
14520
14569
|
* @summary Check email username availability
|
|
14521
14570
|
*/
|
|
14522
14571
|
declare const useCheckInboxAvailability: <TError = ErrorType<ErrorResponse>>(params: CheckInboxAvailabilityParams, options?: {
|
|
14523
|
-
swr?: SWRConfiguration<Awaited$
|
|
14572
|
+
swr?: SWRConfiguration<Awaited$e<ReturnType<typeof checkInboxAvailability>>, TError> & {
|
|
14524
14573
|
swrKey?: Key;
|
|
14525
14574
|
enabled?: boolean;
|
|
14526
14575
|
};
|
|
14527
|
-
request?: SecondParameter$
|
|
14576
|
+
request?: SecondParameter$e<typeof customFetch>;
|
|
14528
14577
|
}) => {
|
|
14529
14578
|
data: CheckInboxAvailabilityEnvelope | undefined;
|
|
14530
14579
|
error: TError | undefined;
|
|
@@ -14546,19 +14595,19 @@ declare const getCreateInboxUrl: () => string;
|
|
|
14546
14595
|
* @summary Create inbox
|
|
14547
14596
|
*/
|
|
14548
14597
|
declare const createInbox: (createInboxBody?: CreateInboxBody, options?: Parameters<typeof customFetch>[1]) => Promise<CreateInboxEnvelope>;
|
|
14549
|
-
declare const getCreateInboxMutationFetcher: (options?: SecondParameter$
|
|
14598
|
+
declare const getCreateInboxMutationFetcher: (options?: SecondParameter$e<typeof customFetch>) => (_: Key, { arg }: {
|
|
14550
14599
|
arg: CreateInboxBody | undefined;
|
|
14551
14600
|
}) => Promise<CreateInboxEnvelope>;
|
|
14552
14601
|
declare const getCreateInboxMutationKey: () => readonly ["/v1/inboxes"];
|
|
14553
|
-
type CreateInboxMutationResult = NonNullable<Awaited$
|
|
14602
|
+
type CreateInboxMutationResult = NonNullable<Awaited$e<ReturnType<typeof createInbox>>>;
|
|
14554
14603
|
/**
|
|
14555
14604
|
* @summary Create inbox
|
|
14556
14605
|
*/
|
|
14557
14606
|
declare const useCreateInbox: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
14558
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
14607
|
+
swr?: SWRMutationConfiguration<Awaited$e<ReturnType<typeof createInbox>>, TError, Key, CreateInboxBody | undefined, Awaited$e<ReturnType<typeof createInbox>>> & {
|
|
14559
14608
|
swrKey?: string;
|
|
14560
14609
|
};
|
|
14561
|
-
request?: SecondParameter$
|
|
14610
|
+
request?: SecondParameter$e<typeof customFetch>;
|
|
14562
14611
|
}) => {
|
|
14563
14612
|
isMutating: boolean;
|
|
14564
14613
|
trigger: swr_mutation.TriggerWithOptionsArgs<CreateInboxEnvelope, TError, string | readonly ["/v1/inboxes"], CreateInboxBody | undefined>;
|
|
@@ -14577,16 +14626,16 @@ declare const getListInboxesUrl: (params?: ListInboxesParams) => string;
|
|
|
14577
14626
|
*/
|
|
14578
14627
|
declare const listInboxes: (params?: ListInboxesParams, options?: Parameters<typeof customFetch>[1]) => Promise<ListInboxesEnvelope>;
|
|
14579
14628
|
declare const getListInboxesKey: (params?: ListInboxesParams) => readonly ["/v1/inboxes", ...ListInboxesParams[]];
|
|
14580
|
-
type ListInboxesQueryResult = NonNullable<Awaited$
|
|
14629
|
+
type ListInboxesQueryResult = NonNullable<Awaited$e<ReturnType<typeof listInboxes>>>;
|
|
14581
14630
|
/**
|
|
14582
14631
|
* @summary List inboxes
|
|
14583
14632
|
*/
|
|
14584
14633
|
declare const useListInboxes: <TError = ErrorType<ErrorResponse>>(params?: ListInboxesParams, options?: {
|
|
14585
|
-
swr?: SWRConfiguration<Awaited$
|
|
14634
|
+
swr?: SWRConfiguration<Awaited$e<ReturnType<typeof listInboxes>>, TError> & {
|
|
14586
14635
|
swrKey?: Key;
|
|
14587
14636
|
enabled?: boolean;
|
|
14588
14637
|
};
|
|
14589
|
-
request?: SecondParameter$
|
|
14638
|
+
request?: SecondParameter$e<typeof customFetch>;
|
|
14590
14639
|
}) => {
|
|
14591
14640
|
data: ListInboxesEnvelope | undefined;
|
|
14592
14641
|
error: TError | undefined;
|
|
@@ -14604,19 +14653,19 @@ declare const getUpdateInboxUrl: (inboxId: string) => string;
|
|
|
14604
14653
|
* @summary Update inbox
|
|
14605
14654
|
*/
|
|
14606
14655
|
declare const updateInbox: (inboxId: string, updateInboxBody?: UpdateInboxBody, options?: Parameters<typeof customFetch>[1]) => Promise<UpdateInboxEnvelope>;
|
|
14607
|
-
declare const getUpdateInboxMutationFetcher: (inboxId: string, options?: SecondParameter$
|
|
14656
|
+
declare const getUpdateInboxMutationFetcher: (inboxId: string, options?: SecondParameter$e<typeof customFetch>) => (_: Key, { arg }: {
|
|
14608
14657
|
arg: UpdateInboxBody | undefined;
|
|
14609
14658
|
}) => Promise<UpdateInboxEnvelope>;
|
|
14610
14659
|
declare const getUpdateInboxMutationKey: (inboxId: string) => readonly [`/v1/inboxes/${string}`];
|
|
14611
|
-
type UpdateInboxMutationResult = NonNullable<Awaited$
|
|
14660
|
+
type UpdateInboxMutationResult = NonNullable<Awaited$e<ReturnType<typeof updateInbox>>>;
|
|
14612
14661
|
/**
|
|
14613
14662
|
* @summary Update inbox
|
|
14614
14663
|
*/
|
|
14615
14664
|
declare const useUpdateInbox: <TError = ErrorType<ErrorResponse>>(inboxId: string, options?: {
|
|
14616
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
14665
|
+
swr?: SWRMutationConfiguration<Awaited$e<ReturnType<typeof updateInbox>>, TError, Key, UpdateInboxBody | undefined, Awaited$e<ReturnType<typeof updateInbox>>> & {
|
|
14617
14666
|
swrKey?: string;
|
|
14618
14667
|
};
|
|
14619
|
-
request?: SecondParameter$
|
|
14668
|
+
request?: SecondParameter$e<typeof customFetch>;
|
|
14620
14669
|
}) => {
|
|
14621
14670
|
isMutating: boolean;
|
|
14622
14671
|
trigger: swr_mutation.TriggerWithOptionsArgs<UpdateInboxEnvelope, TError, string | readonly [`/v1/inboxes/${string}`], UpdateInboxBody | undefined>;
|
|
@@ -14631,19 +14680,19 @@ declare const getDeleteInboxUrl: (inboxId: string) => string;
|
|
|
14631
14680
|
* @summary Delete inbox
|
|
14632
14681
|
*/
|
|
14633
14682
|
declare const deleteInbox: (inboxId: string, options?: Parameters<typeof customFetch>[1]) => Promise<DeleteInboxEnvelope>;
|
|
14634
|
-
declare const getDeleteInboxMutationFetcher: (inboxId: string, options?: SecondParameter$
|
|
14683
|
+
declare const getDeleteInboxMutationFetcher: (inboxId: string, options?: SecondParameter$e<typeof customFetch>) => (_: Key, __: {
|
|
14635
14684
|
arg: Arguments;
|
|
14636
14685
|
}) => Promise<DeleteInboxEnvelope>;
|
|
14637
14686
|
declare const getDeleteInboxMutationKey: (inboxId: string) => readonly [`/v1/inboxes/${string}`];
|
|
14638
|
-
type DeleteInboxMutationResult = NonNullable<Awaited$
|
|
14687
|
+
type DeleteInboxMutationResult = NonNullable<Awaited$e<ReturnType<typeof deleteInbox>>>;
|
|
14639
14688
|
/**
|
|
14640
14689
|
* @summary Delete inbox
|
|
14641
14690
|
*/
|
|
14642
14691
|
declare const useDeleteInbox: <TError = ErrorType<ErrorResponse>>(inboxId: string, options?: {
|
|
14643
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
14692
|
+
swr?: SWRMutationConfiguration<Awaited$e<ReturnType<typeof deleteInbox>>, TError, Key, Arguments, Awaited$e<ReturnType<typeof deleteInbox>>> & {
|
|
14644
14693
|
swrKey?: string;
|
|
14645
14694
|
};
|
|
14646
|
-
request?: SecondParameter$
|
|
14695
|
+
request?: SecondParameter$e<typeof customFetch>;
|
|
14647
14696
|
}) => {
|
|
14648
14697
|
isMutating: boolean;
|
|
14649
14698
|
trigger: swr_mutation.TriggerWithOptionsArgs<DeleteInboxEnvelope, TError, string | readonly [`/v1/inboxes/${string}`], Arguments>;
|
|
@@ -14653,9 +14702,9 @@ declare const useDeleteInbox: <TError = ErrorType<ErrorResponse>>(inboxId: strin
|
|
|
14653
14702
|
swrKey: string | readonly [`/v1/inboxes/${string}`];
|
|
14654
14703
|
};
|
|
14655
14704
|
|
|
14656
|
-
type AwaitedInput$
|
|
14657
|
-
type Awaited$
|
|
14658
|
-
type SecondParameter$
|
|
14705
|
+
type AwaitedInput$d<T> = PromiseLike<T> | T;
|
|
14706
|
+
type Awaited$d<O> = O extends AwaitedInput$d<infer T> ? T : never;
|
|
14707
|
+
type SecondParameter$d<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
14659
14708
|
declare const getCreateInformationRequestUrl: () => string;
|
|
14660
14709
|
/**
|
|
14661
14710
|
* Ask a person for a specific fact you cannot establish yourself.
|
|
@@ -14670,19 +14719,19 @@ declare const getCreateInformationRequestUrl: () => string;
|
|
|
14670
14719
|
* @summary Ask for information
|
|
14671
14720
|
*/
|
|
14672
14721
|
declare const createInformationRequest: (createInformationRequestBody?: CreateInformationRequestBody, options?: Parameters<typeof customFetch>[1]) => Promise<CreateInformationRequestEnvelope>;
|
|
14673
|
-
declare const getCreateInformationRequestMutationFetcher: (options?: SecondParameter$
|
|
14722
|
+
declare const getCreateInformationRequestMutationFetcher: (options?: SecondParameter$d<typeof customFetch>) => (_: Key, { arg }: {
|
|
14674
14723
|
arg: CreateInformationRequestBody | undefined;
|
|
14675
14724
|
}) => Promise<CreateInformationRequestEnvelope>;
|
|
14676
14725
|
declare const getCreateInformationRequestMutationKey: () => readonly ["/v1/information-requests"];
|
|
14677
|
-
type CreateInformationRequestMutationResult = NonNullable<Awaited$
|
|
14726
|
+
type CreateInformationRequestMutationResult = NonNullable<Awaited$d<ReturnType<typeof createInformationRequest>>>;
|
|
14678
14727
|
/**
|
|
14679
14728
|
* @summary Ask for information
|
|
14680
14729
|
*/
|
|
14681
14730
|
declare const useCreateInformationRequest: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
14682
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
14731
|
+
swr?: SWRMutationConfiguration<Awaited$d<ReturnType<typeof createInformationRequest>>, TError, Key, CreateInformationRequestBody | undefined, Awaited$d<ReturnType<typeof createInformationRequest>>> & {
|
|
14683
14732
|
swrKey?: string;
|
|
14684
14733
|
};
|
|
14685
|
-
request?: SecondParameter$
|
|
14734
|
+
request?: SecondParameter$d<typeof customFetch>;
|
|
14686
14735
|
}) => {
|
|
14687
14736
|
isMutating: boolean;
|
|
14688
14737
|
trigger: swr_mutation.TriggerWithOptionsArgs<CreateInformationRequestEnvelope, TError, string | readonly ["/v1/information-requests"], CreateInformationRequestBody | undefined>;
|
|
@@ -14700,16 +14749,16 @@ declare const getListInformationRequestsUrl: (params?: ListInformationRequestsPa
|
|
|
14700
14749
|
*/
|
|
14701
14750
|
declare const listInformationRequests: (params?: ListInformationRequestsParams, options?: Parameters<typeof customFetch>[1]) => Promise<ListInformationRequestsEnvelope>;
|
|
14702
14751
|
declare const getListInformationRequestsKey: (params?: ListInformationRequestsParams) => readonly ["/v1/information-requests", ...ListInformationRequestsParams[]];
|
|
14703
|
-
type ListInformationRequestsQueryResult = NonNullable<Awaited$
|
|
14752
|
+
type ListInformationRequestsQueryResult = NonNullable<Awaited$d<ReturnType<typeof listInformationRequests>>>;
|
|
14704
14753
|
/**
|
|
14705
14754
|
* @summary List information requests
|
|
14706
14755
|
*/
|
|
14707
14756
|
declare const useListInformationRequests: <TError = ErrorType<ErrorResponse>>(params?: ListInformationRequestsParams, options?: {
|
|
14708
|
-
swr?: SWRConfiguration<Awaited$
|
|
14757
|
+
swr?: SWRConfiguration<Awaited$d<ReturnType<typeof listInformationRequests>>, TError> & {
|
|
14709
14758
|
swrKey?: Key;
|
|
14710
14759
|
enabled?: boolean;
|
|
14711
14760
|
};
|
|
14712
|
-
request?: SecondParameter$
|
|
14761
|
+
request?: SecondParameter$d<typeof customFetch>;
|
|
14713
14762
|
}) => {
|
|
14714
14763
|
data: ListInformationRequestsEnvelope | undefined;
|
|
14715
14764
|
error: TError | undefined;
|
|
@@ -14725,16 +14774,16 @@ declare const getGetInformationRequestUrl: (informationRequestId: string) => str
|
|
|
14725
14774
|
*/
|
|
14726
14775
|
declare const getInformationRequest: (informationRequestId: string, options?: Parameters<typeof customFetch>[1]) => Promise<GetInformationRequestEnvelope>;
|
|
14727
14776
|
declare const getGetInformationRequestKey: (informationRequestId: string) => readonly [`/v1/information-requests/${string}`];
|
|
14728
|
-
type GetInformationRequestQueryResult = NonNullable<Awaited$
|
|
14777
|
+
type GetInformationRequestQueryResult = NonNullable<Awaited$d<ReturnType<typeof getInformationRequest>>>;
|
|
14729
14778
|
/**
|
|
14730
14779
|
* @summary Get information request
|
|
14731
14780
|
*/
|
|
14732
14781
|
declare const useGetInformationRequest: <TError = ErrorType<ErrorResponse>>(informationRequestId: string, options?: {
|
|
14733
|
-
swr?: SWRConfiguration<Awaited$
|
|
14782
|
+
swr?: SWRConfiguration<Awaited$d<ReturnType<typeof getInformationRequest>>, TError> & {
|
|
14734
14783
|
swrKey?: Key;
|
|
14735
14784
|
enabled?: boolean;
|
|
14736
14785
|
};
|
|
14737
|
-
request?: SecondParameter$
|
|
14786
|
+
request?: SecondParameter$d<typeof customFetch>;
|
|
14738
14787
|
}) => {
|
|
14739
14788
|
data: GetInformationRequestEnvelope | undefined;
|
|
14740
14789
|
error: TError | undefined;
|
|
@@ -14749,19 +14798,19 @@ declare const getResolveInformationRequestUrl: (informationRequestId: string) =>
|
|
|
14749
14798
|
* @summary Resolve information request
|
|
14750
14799
|
*/
|
|
14751
14800
|
declare const resolveInformationRequest: (informationRequestId: string, resolveInformationRequestBody?: ResolveInformationRequestBody, options?: Parameters<typeof customFetch>[1]) => Promise<ResolveInformationRequestEnvelope>;
|
|
14752
|
-
declare const getResolveInformationRequestMutationFetcher: (informationRequestId: string, options?: SecondParameter$
|
|
14801
|
+
declare const getResolveInformationRequestMutationFetcher: (informationRequestId: string, options?: SecondParameter$d<typeof customFetch>) => (_: Key, { arg }: {
|
|
14753
14802
|
arg: ResolveInformationRequestBody | undefined;
|
|
14754
14803
|
}) => Promise<ResolveInformationRequestEnvelope>;
|
|
14755
14804
|
declare const getResolveInformationRequestMutationKey: (informationRequestId: string) => readonly [`/v1/information-requests/${string}/resolve`];
|
|
14756
|
-
type ResolveInformationRequestMutationResult = NonNullable<Awaited$
|
|
14805
|
+
type ResolveInformationRequestMutationResult = NonNullable<Awaited$d<ReturnType<typeof resolveInformationRequest>>>;
|
|
14757
14806
|
/**
|
|
14758
14807
|
* @summary Resolve information request
|
|
14759
14808
|
*/
|
|
14760
14809
|
declare const useResolveInformationRequest: <TError = ErrorType<ErrorResponse>>(informationRequestId: string, options?: {
|
|
14761
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
14810
|
+
swr?: SWRMutationConfiguration<Awaited$d<ReturnType<typeof resolveInformationRequest>>, TError, Key, ResolveInformationRequestBody | undefined, Awaited$d<ReturnType<typeof resolveInformationRequest>>> & {
|
|
14762
14811
|
swrKey?: string;
|
|
14763
14812
|
};
|
|
14764
|
-
request?: SecondParameter$
|
|
14813
|
+
request?: SecondParameter$d<typeof customFetch>;
|
|
14765
14814
|
}) => {
|
|
14766
14815
|
isMutating: boolean;
|
|
14767
14816
|
trigger: swr_mutation.TriggerWithOptionsArgs<ResolveInformationRequestEnvelope, TError, string | readonly [`/v1/information-requests/${string}/resolve`], ResolveInformationRequestBody | undefined>;
|
|
@@ -14771,9 +14820,9 @@ declare const useResolveInformationRequest: <TError = ErrorType<ErrorResponse>>(
|
|
|
14771
14820
|
swrKey: string | readonly [`/v1/information-requests/${string}/resolve`];
|
|
14772
14821
|
};
|
|
14773
14822
|
|
|
14774
|
-
type AwaitedInput$
|
|
14775
|
-
type Awaited$
|
|
14776
|
-
type SecondParameter$
|
|
14823
|
+
type AwaitedInput$c<T> = PromiseLike<T> | T;
|
|
14824
|
+
type Awaited$c<O> = O extends AwaitedInput$c<infer T> ? T : never;
|
|
14825
|
+
type SecondParameter$c<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
14777
14826
|
declare const getScheduleJobUrl: (voiceAgentId: string) => string;
|
|
14778
14827
|
/**
|
|
14779
14828
|
* Schedule a new outbound call job for a voice agent.
|
|
@@ -14793,19 +14842,19 @@ declare const getScheduleJobUrl: (voiceAgentId: string) => string;
|
|
|
14793
14842
|
* @summary Schedule an outbound job
|
|
14794
14843
|
*/
|
|
14795
14844
|
declare const scheduleJob: (voiceAgentId: string, scheduleJobBody?: ScheduleJobBody, options?: Parameters<typeof customFetch>[1]) => Promise<ScheduleJobEnvelope>;
|
|
14796
|
-
declare const getScheduleJobMutationFetcher: (voiceAgentId: string, options?: SecondParameter$
|
|
14845
|
+
declare const getScheduleJobMutationFetcher: (voiceAgentId: string, options?: SecondParameter$c<typeof customFetch>) => (_: Key, { arg }: {
|
|
14797
14846
|
arg: ScheduleJobBody | undefined;
|
|
14798
14847
|
}) => Promise<ScheduleJobEnvelope>;
|
|
14799
14848
|
declare const getScheduleJobMutationKey: (voiceAgentId: string) => readonly [`/v1/voice-agents/${string}/jobs`];
|
|
14800
|
-
type ScheduleJobMutationResult = NonNullable<Awaited$
|
|
14849
|
+
type ScheduleJobMutationResult = NonNullable<Awaited$c<ReturnType<typeof scheduleJob>>>;
|
|
14801
14850
|
/**
|
|
14802
14851
|
* @summary Schedule an outbound job
|
|
14803
14852
|
*/
|
|
14804
14853
|
declare const useScheduleJob: <TError = ErrorType<ErrorResponse>>(voiceAgentId: string, options?: {
|
|
14805
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
14854
|
+
swr?: SWRMutationConfiguration<Awaited$c<ReturnType<typeof scheduleJob>>, TError, Key, ScheduleJobBody | undefined, Awaited$c<ReturnType<typeof scheduleJob>>> & {
|
|
14806
14855
|
swrKey?: string;
|
|
14807
14856
|
};
|
|
14808
|
-
request?: SecondParameter$
|
|
14857
|
+
request?: SecondParameter$c<typeof customFetch>;
|
|
14809
14858
|
}) => {
|
|
14810
14859
|
isMutating: boolean;
|
|
14811
14860
|
trigger: swr_mutation.TriggerWithOptionsArgs<ScheduleJobEnvelope, TError, string | readonly [`/v1/voice-agents/${string}/jobs`], ScheduleJobBody | undefined>;
|
|
@@ -14829,16 +14878,16 @@ declare const getListJobsUrl: (params: ListJobsParams) => string;
|
|
|
14829
14878
|
*/
|
|
14830
14879
|
declare const listJobs: (params: ListJobsParams, options?: Parameters<typeof customFetch>[1]) => Promise<ListJobsEnvelope>;
|
|
14831
14880
|
declare const getListJobsKey: (params: ListJobsParams) => readonly ["/v1/voice-agents/jobs", ...ListJobsParams[]];
|
|
14832
|
-
type ListJobsQueryResult = NonNullable<Awaited$
|
|
14881
|
+
type ListJobsQueryResult = NonNullable<Awaited$c<ReturnType<typeof listJobs>>>;
|
|
14833
14882
|
/**
|
|
14834
14883
|
* @summary List outbound jobs
|
|
14835
14884
|
*/
|
|
14836
14885
|
declare const useListJobs: <TError = ErrorType<ErrorResponse>>(params: ListJobsParams, options?: {
|
|
14837
|
-
swr?: SWRConfiguration<Awaited$
|
|
14886
|
+
swr?: SWRConfiguration<Awaited$c<ReturnType<typeof listJobs>>, TError> & {
|
|
14838
14887
|
swrKey?: Key;
|
|
14839
14888
|
enabled?: boolean;
|
|
14840
14889
|
};
|
|
14841
|
-
request?: SecondParameter$
|
|
14890
|
+
request?: SecondParameter$c<typeof customFetch>;
|
|
14842
14891
|
}) => {
|
|
14843
14892
|
data: ListJobsEnvelope | undefined;
|
|
14844
14893
|
error: TError | undefined;
|
|
@@ -14856,19 +14905,19 @@ declare const getCancelJobUrl: (jobId: string) => string;
|
|
|
14856
14905
|
* @summary Cancel an outbound job
|
|
14857
14906
|
*/
|
|
14858
14907
|
declare const cancelJob: (jobId: string, options?: Parameters<typeof customFetch>[1]) => Promise<CancelJobEnvelope>;
|
|
14859
|
-
declare const getCancelJobMutationFetcher: (jobId: string, options?: SecondParameter$
|
|
14908
|
+
declare const getCancelJobMutationFetcher: (jobId: string, options?: SecondParameter$c<typeof customFetch>) => (_: Key, __: {
|
|
14860
14909
|
arg: Arguments;
|
|
14861
14910
|
}) => Promise<CancelJobEnvelope>;
|
|
14862
14911
|
declare const getCancelJobMutationKey: (jobId: string) => readonly [`/v1/voice-agents/jobs/${string}/cancel`];
|
|
14863
|
-
type CancelJobMutationResult = NonNullable<Awaited$
|
|
14912
|
+
type CancelJobMutationResult = NonNullable<Awaited$c<ReturnType<typeof cancelJob>>>;
|
|
14864
14913
|
/**
|
|
14865
14914
|
* @summary Cancel an outbound job
|
|
14866
14915
|
*/
|
|
14867
14916
|
declare const useCancelJob: <TError = ErrorType<ErrorResponse>>(jobId: string, options?: {
|
|
14868
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
14917
|
+
swr?: SWRMutationConfiguration<Awaited$c<ReturnType<typeof cancelJob>>, TError, Key, Arguments, Awaited$c<ReturnType<typeof cancelJob>>> & {
|
|
14869
14918
|
swrKey?: string;
|
|
14870
14919
|
};
|
|
14871
|
-
request?: SecondParameter$
|
|
14920
|
+
request?: SecondParameter$c<typeof customFetch>;
|
|
14872
14921
|
}) => {
|
|
14873
14922
|
isMutating: boolean;
|
|
14874
14923
|
trigger: swr_mutation.TriggerWithOptionsArgs<CancelJobEnvelope, TError, string | readonly [`/v1/voice-agents/jobs/${string}/cancel`], Arguments>;
|
|
@@ -14878,9 +14927,9 @@ declare const useCancelJob: <TError = ErrorType<ErrorResponse>>(jobId: string, o
|
|
|
14878
14927
|
swrKey: string | readonly [`/v1/voice-agents/jobs/${string}/cancel`];
|
|
14879
14928
|
};
|
|
14880
14929
|
|
|
14881
|
-
type AwaitedInput$
|
|
14882
|
-
type Awaited$
|
|
14883
|
-
type SecondParameter$
|
|
14930
|
+
type AwaitedInput$b<T> = PromiseLike<T> | T;
|
|
14931
|
+
type Awaited$b<O> = O extends AwaitedInput$b<infer T> ? T : never;
|
|
14932
|
+
type SecondParameter$b<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
14884
14933
|
declare const getListNotificationsUrl: (params?: ListNotificationsParams) => string;
|
|
14885
14934
|
/**
|
|
14886
14935
|
* List the organization's notifications, newest first.
|
|
@@ -14894,16 +14943,16 @@ declare const getListNotificationsUrl: (params?: ListNotificationsParams) => str
|
|
|
14894
14943
|
*/
|
|
14895
14944
|
declare const listNotifications: (params?: ListNotificationsParams, options?: Parameters<typeof customFetch>[1]) => Promise<ListNotificationsEnvelope>;
|
|
14896
14945
|
declare const getListNotificationsKey: (params?: ListNotificationsParams) => readonly ["/v1/notifications", ...ListNotificationsParams[]];
|
|
14897
|
-
type ListNotificationsQueryResult = NonNullable<Awaited$
|
|
14946
|
+
type ListNotificationsQueryResult = NonNullable<Awaited$b<ReturnType<typeof listNotifications>>>;
|
|
14898
14947
|
/**
|
|
14899
14948
|
* @summary List notifications
|
|
14900
14949
|
*/
|
|
14901
14950
|
declare const useListNotifications: <TError = ErrorType<ErrorResponse>>(params?: ListNotificationsParams, options?: {
|
|
14902
|
-
swr?: SWRConfiguration<Awaited$
|
|
14951
|
+
swr?: SWRConfiguration<Awaited$b<ReturnType<typeof listNotifications>>, TError> & {
|
|
14903
14952
|
swrKey?: Key;
|
|
14904
14953
|
enabled?: boolean;
|
|
14905
14954
|
};
|
|
14906
|
-
request?: SecondParameter$
|
|
14955
|
+
request?: SecondParameter$b<typeof customFetch>;
|
|
14907
14956
|
}) => {
|
|
14908
14957
|
data: ListNotificationsEnvelope | undefined;
|
|
14909
14958
|
error: TError | undefined;
|
|
@@ -14923,16 +14972,16 @@ declare const getGetNotificationUrl: (notificationId: string) => string;
|
|
|
14923
14972
|
*/
|
|
14924
14973
|
declare const getNotification: (notificationId: string, options?: Parameters<typeof customFetch>[1]) => Promise<GetNotificationEnvelope>;
|
|
14925
14974
|
declare const getGetNotificationKey: (notificationId: string) => readonly [`/v1/notifications/${string}`];
|
|
14926
|
-
type GetNotificationQueryResult = NonNullable<Awaited$
|
|
14975
|
+
type GetNotificationQueryResult = NonNullable<Awaited$b<ReturnType<typeof getNotification>>>;
|
|
14927
14976
|
/**
|
|
14928
14977
|
* @summary Get notification
|
|
14929
14978
|
*/
|
|
14930
14979
|
declare const useGetNotification: <TError = ErrorType<ErrorResponse>>(notificationId: string, options?: {
|
|
14931
|
-
swr?: SWRConfiguration<Awaited$
|
|
14980
|
+
swr?: SWRConfiguration<Awaited$b<ReturnType<typeof getNotification>>, TError> & {
|
|
14932
14981
|
swrKey?: Key;
|
|
14933
14982
|
enabled?: boolean;
|
|
14934
14983
|
};
|
|
14935
|
-
request?: SecondParameter$
|
|
14984
|
+
request?: SecondParameter$b<typeof customFetch>;
|
|
14936
14985
|
}) => {
|
|
14937
14986
|
data: GetNotificationEnvelope | undefined;
|
|
14938
14987
|
error: TError | undefined;
|
|
@@ -14942,9 +14991,9 @@ declare const useGetNotification: <TError = ErrorType<ErrorResponse>>(notificati
|
|
|
14942
14991
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
14943
14992
|
};
|
|
14944
14993
|
|
|
14945
|
-
type AwaitedInput$
|
|
14946
|
-
type Awaited$
|
|
14947
|
-
type SecondParameter$
|
|
14994
|
+
type AwaitedInput$a<T> = PromiseLike<T> | T;
|
|
14995
|
+
type Awaited$a<O> = O extends AwaitedInput$a<infer T> ? T : never;
|
|
14996
|
+
type SecondParameter$a<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
14948
14997
|
declare const getGetProfileUrl: () => string;
|
|
14949
14998
|
/**
|
|
14950
14999
|
* Retrieve the current user's profile information. This endpoint requires a user session and cannot be used with API Keys.
|
|
@@ -14952,16 +15001,16 @@ declare const getGetProfileUrl: () => string;
|
|
|
14952
15001
|
*/
|
|
14953
15002
|
declare const getProfile: (options?: Parameters<typeof customFetch>[1]) => Promise<GetProfileEnvelope>;
|
|
14954
15003
|
declare const getGetProfileKey: () => readonly ["/v1/profile"];
|
|
14955
|
-
type GetProfileQueryResult = NonNullable<Awaited$
|
|
15004
|
+
type GetProfileQueryResult = NonNullable<Awaited$a<ReturnType<typeof getProfile>>>;
|
|
14956
15005
|
/**
|
|
14957
15006
|
* @summary Get profile
|
|
14958
15007
|
*/
|
|
14959
15008
|
declare const useGetProfile: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
14960
|
-
swr?: SWRConfiguration<Awaited$
|
|
15009
|
+
swr?: SWRConfiguration<Awaited$a<ReturnType<typeof getProfile>>, TError> & {
|
|
14961
15010
|
swrKey?: Key;
|
|
14962
15011
|
enabled?: boolean;
|
|
14963
15012
|
};
|
|
14964
|
-
request?: SecondParameter$
|
|
15013
|
+
request?: SecondParameter$a<typeof customFetch>;
|
|
14965
15014
|
}) => {
|
|
14966
15015
|
data: GetProfileEnvelope | undefined;
|
|
14967
15016
|
error: TError | undefined;
|
|
@@ -14971,9 +15020,9 @@ declare const useGetProfile: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
14971
15020
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
14972
15021
|
};
|
|
14973
15022
|
|
|
14974
|
-
type AwaitedInput$
|
|
14975
|
-
type Awaited$
|
|
14976
|
-
type SecondParameter$
|
|
15023
|
+
type AwaitedInput$9<T> = PromiseLike<T> | T;
|
|
15024
|
+
type Awaited$9<O> = O extends AwaitedInput$9<infer T> ? T : never;
|
|
15025
|
+
type SecondParameter$9<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
14977
15026
|
declare const getCreateScheduleUrl: () => string;
|
|
14978
15027
|
/**
|
|
14979
15028
|
* Create a schedule that performs an action, either repeatedly or once.
|
|
@@ -14988,19 +15037,19 @@ declare const getCreateScheduleUrl: () => string;
|
|
|
14988
15037
|
* @summary Create a schedule
|
|
14989
15038
|
*/
|
|
14990
15039
|
declare const createSchedule: (createScheduleBody?: CreateScheduleBody, options?: Parameters<typeof customFetch>[1]) => Promise<CreateScheduleEnvelope>;
|
|
14991
|
-
declare const getCreateScheduleMutationFetcher: (options?: SecondParameter$
|
|
15040
|
+
declare const getCreateScheduleMutationFetcher: (options?: SecondParameter$9<typeof customFetch>) => (_: Key, { arg }: {
|
|
14992
15041
|
arg: CreateScheduleBody | undefined;
|
|
14993
15042
|
}) => Promise<CreateScheduleEnvelope>;
|
|
14994
15043
|
declare const getCreateScheduleMutationKey: () => readonly ["/v1/schedules"];
|
|
14995
|
-
type CreateScheduleMutationResult = NonNullable<Awaited$
|
|
15044
|
+
type CreateScheduleMutationResult = NonNullable<Awaited$9<ReturnType<typeof createSchedule>>>;
|
|
14996
15045
|
/**
|
|
14997
15046
|
* @summary Create a schedule
|
|
14998
15047
|
*/
|
|
14999
15048
|
declare const useCreateSchedule: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
15000
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
15049
|
+
swr?: SWRMutationConfiguration<Awaited$9<ReturnType<typeof createSchedule>>, TError, Key, CreateScheduleBody | undefined, Awaited$9<ReturnType<typeof createSchedule>>> & {
|
|
15001
15050
|
swrKey?: string;
|
|
15002
15051
|
};
|
|
15003
|
-
request?: SecondParameter$
|
|
15052
|
+
request?: SecondParameter$9<typeof customFetch>;
|
|
15004
15053
|
}) => {
|
|
15005
15054
|
isMutating: boolean;
|
|
15006
15055
|
trigger: swr_mutation.TriggerWithOptionsArgs<CreateScheduleEnvelope, TError, string | readonly ["/v1/schedules"], CreateScheduleBody | undefined>;
|
|
@@ -15016,16 +15065,16 @@ declare const getListSchedulesUrl: (params?: ListSchedulesParams) => string;
|
|
|
15016
15065
|
*/
|
|
15017
15066
|
declare const listSchedules: (params?: ListSchedulesParams, options?: Parameters<typeof customFetch>[1]) => Promise<ListSchedulesEnvelope>;
|
|
15018
15067
|
declare const getListSchedulesKey: (params?: ListSchedulesParams) => readonly ["/v1/schedules", ...ListSchedulesParams[]];
|
|
15019
|
-
type ListSchedulesQueryResult = NonNullable<Awaited$
|
|
15068
|
+
type ListSchedulesQueryResult = NonNullable<Awaited$9<ReturnType<typeof listSchedules>>>;
|
|
15020
15069
|
/**
|
|
15021
15070
|
* @summary List schedules
|
|
15022
15071
|
*/
|
|
15023
15072
|
declare const useListSchedules: <TError = ErrorType<ErrorResponse>>(params?: ListSchedulesParams, options?: {
|
|
15024
|
-
swr?: SWRConfiguration<Awaited$
|
|
15073
|
+
swr?: SWRConfiguration<Awaited$9<ReturnType<typeof listSchedules>>, TError> & {
|
|
15025
15074
|
swrKey?: Key;
|
|
15026
15075
|
enabled?: boolean;
|
|
15027
15076
|
};
|
|
15028
|
-
request?: SecondParameter$
|
|
15077
|
+
request?: SecondParameter$9<typeof customFetch>;
|
|
15029
15078
|
}) => {
|
|
15030
15079
|
data: ListSchedulesEnvelope | undefined;
|
|
15031
15080
|
error: TError | undefined;
|
|
@@ -15041,16 +15090,16 @@ declare const getGetScheduleUrl: (scheduleId: string) => string;
|
|
|
15041
15090
|
*/
|
|
15042
15091
|
declare const getSchedule: (scheduleId: string, options?: Parameters<typeof customFetch>[1]) => Promise<GetScheduleEnvelope>;
|
|
15043
15092
|
declare const getGetScheduleKey: (scheduleId: string) => readonly [`/v1/schedules/${string}`];
|
|
15044
|
-
type GetScheduleQueryResult = NonNullable<Awaited$
|
|
15093
|
+
type GetScheduleQueryResult = NonNullable<Awaited$9<ReturnType<typeof getSchedule>>>;
|
|
15045
15094
|
/**
|
|
15046
15095
|
* @summary Get a schedule
|
|
15047
15096
|
*/
|
|
15048
15097
|
declare const useGetSchedule: <TError = ErrorType<ErrorResponse>>(scheduleId: string, options?: {
|
|
15049
|
-
swr?: SWRConfiguration<Awaited$
|
|
15098
|
+
swr?: SWRConfiguration<Awaited$9<ReturnType<typeof getSchedule>>, TError> & {
|
|
15050
15099
|
swrKey?: Key;
|
|
15051
15100
|
enabled?: boolean;
|
|
15052
15101
|
};
|
|
15053
|
-
request?: SecondParameter$
|
|
15102
|
+
request?: SecondParameter$9<typeof customFetch>;
|
|
15054
15103
|
}) => {
|
|
15055
15104
|
data: GetScheduleEnvelope | undefined;
|
|
15056
15105
|
error: TError | undefined;
|
|
@@ -15069,19 +15118,19 @@ declare const getUpdateScheduleUrl: (scheduleId: string) => string;
|
|
|
15069
15118
|
* @summary Update a schedule
|
|
15070
15119
|
*/
|
|
15071
15120
|
declare const updateSchedule: (scheduleId: string, updateScheduleBody?: UpdateScheduleBody, options?: Parameters<typeof customFetch>[1]) => Promise<UpdateScheduleEnvelope>;
|
|
15072
|
-
declare const getUpdateScheduleMutationFetcher: (scheduleId: string, options?: SecondParameter$
|
|
15121
|
+
declare const getUpdateScheduleMutationFetcher: (scheduleId: string, options?: SecondParameter$9<typeof customFetch>) => (_: Key, { arg }: {
|
|
15073
15122
|
arg: UpdateScheduleBody | undefined;
|
|
15074
15123
|
}) => Promise<UpdateScheduleEnvelope>;
|
|
15075
15124
|
declare const getUpdateScheduleMutationKey: (scheduleId: string) => readonly [`/v1/schedules/${string}`];
|
|
15076
|
-
type UpdateScheduleMutationResult = NonNullable<Awaited$
|
|
15125
|
+
type UpdateScheduleMutationResult = NonNullable<Awaited$9<ReturnType<typeof updateSchedule>>>;
|
|
15077
15126
|
/**
|
|
15078
15127
|
* @summary Update a schedule
|
|
15079
15128
|
*/
|
|
15080
15129
|
declare const useUpdateSchedule: <TError = ErrorType<ErrorResponse>>(scheduleId: string, options?: {
|
|
15081
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
15130
|
+
swr?: SWRMutationConfiguration<Awaited$9<ReturnType<typeof updateSchedule>>, TError, Key, UpdateScheduleBody | undefined, Awaited$9<ReturnType<typeof updateSchedule>>> & {
|
|
15082
15131
|
swrKey?: string;
|
|
15083
15132
|
};
|
|
15084
|
-
request?: SecondParameter$
|
|
15133
|
+
request?: SecondParameter$9<typeof customFetch>;
|
|
15085
15134
|
}) => {
|
|
15086
15135
|
isMutating: boolean;
|
|
15087
15136
|
trigger: swr_mutation.TriggerWithOptionsArgs<UpdateScheduleEnvelope, TError, string | readonly [`/v1/schedules/${string}`], UpdateScheduleBody | undefined>;
|
|
@@ -15096,19 +15145,19 @@ declare const getDeleteScheduleUrl: (scheduleId: string) => string;
|
|
|
15096
15145
|
* @summary Delete a schedule
|
|
15097
15146
|
*/
|
|
15098
15147
|
declare const deleteSchedule: (scheduleId: string, options?: Parameters<typeof customFetch>[1]) => Promise<DeleteScheduleEnvelope>;
|
|
15099
|
-
declare const getDeleteScheduleMutationFetcher: (scheduleId: string, options?: SecondParameter$
|
|
15148
|
+
declare const getDeleteScheduleMutationFetcher: (scheduleId: string, options?: SecondParameter$9<typeof customFetch>) => (_: Key, __: {
|
|
15100
15149
|
arg: Arguments;
|
|
15101
15150
|
}) => Promise<DeleteScheduleEnvelope>;
|
|
15102
15151
|
declare const getDeleteScheduleMutationKey: (scheduleId: string) => readonly [`/v1/schedules/${string}`];
|
|
15103
|
-
type DeleteScheduleMutationResult = NonNullable<Awaited$
|
|
15152
|
+
type DeleteScheduleMutationResult = NonNullable<Awaited$9<ReturnType<typeof deleteSchedule>>>;
|
|
15104
15153
|
/**
|
|
15105
15154
|
* @summary Delete a schedule
|
|
15106
15155
|
*/
|
|
15107
15156
|
declare const useDeleteSchedule: <TError = ErrorType<ErrorResponse>>(scheduleId: string, options?: {
|
|
15108
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
15157
|
+
swr?: SWRMutationConfiguration<Awaited$9<ReturnType<typeof deleteSchedule>>, TError, Key, Arguments, Awaited$9<ReturnType<typeof deleteSchedule>>> & {
|
|
15109
15158
|
swrKey?: string;
|
|
15110
15159
|
};
|
|
15111
|
-
request?: SecondParameter$
|
|
15160
|
+
request?: SecondParameter$9<typeof customFetch>;
|
|
15112
15161
|
}) => {
|
|
15113
15162
|
isMutating: boolean;
|
|
15114
15163
|
trigger: swr_mutation.TriggerWithOptionsArgs<DeleteScheduleEnvelope, TError, string | readonly [`/v1/schedules/${string}`], Arguments>;
|
|
@@ -15118,9 +15167,9 @@ declare const useDeleteSchedule: <TError = ErrorType<ErrorResponse>>(scheduleId:
|
|
|
15118
15167
|
swrKey: string | readonly [`/v1/schedules/${string}`];
|
|
15119
15168
|
};
|
|
15120
15169
|
|
|
15121
|
-
type AwaitedInput$
|
|
15122
|
-
type Awaited$
|
|
15123
|
-
type SecondParameter$
|
|
15170
|
+
type AwaitedInput$8<T> = PromiseLike<T> | T;
|
|
15171
|
+
type Awaited$8<O> = O extends AwaitedInput$8<infer T> ? T : never;
|
|
15172
|
+
type SecondParameter$8<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
15124
15173
|
declare const getCreateSecretUrl: () => string;
|
|
15125
15174
|
/**
|
|
15126
15175
|
* Create an organization-level secret. The value is encrypted at rest and **write-only** — no endpoint ever returns it.
|
|
@@ -15129,19 +15178,19 @@ declare const getCreateSecretUrl: () => string;
|
|
|
15129
15178
|
* @summary Create a secret
|
|
15130
15179
|
*/
|
|
15131
15180
|
declare const createSecret: (createSecretBody?: CreateSecretBody, options?: Parameters<typeof customFetch>[1]) => Promise<CreateSecretEnvelope>;
|
|
15132
|
-
declare const getCreateSecretMutationFetcher: (options?: SecondParameter$
|
|
15181
|
+
declare const getCreateSecretMutationFetcher: (options?: SecondParameter$8<typeof customFetch>) => (_: Key, { arg }: {
|
|
15133
15182
|
arg: CreateSecretBody | undefined;
|
|
15134
15183
|
}) => Promise<CreateSecretEnvelope>;
|
|
15135
15184
|
declare const getCreateSecretMutationKey: () => readonly ["/v1/secrets"];
|
|
15136
|
-
type CreateSecretMutationResult = NonNullable<Awaited$
|
|
15185
|
+
type CreateSecretMutationResult = NonNullable<Awaited$8<ReturnType<typeof createSecret>>>;
|
|
15137
15186
|
/**
|
|
15138
15187
|
* @summary Create a secret
|
|
15139
15188
|
*/
|
|
15140
15189
|
declare const useCreateSecret: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
15141
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
15190
|
+
swr?: SWRMutationConfiguration<Awaited$8<ReturnType<typeof createSecret>>, TError, Key, CreateSecretBody | undefined, Awaited$8<ReturnType<typeof createSecret>>> & {
|
|
15142
15191
|
swrKey?: string;
|
|
15143
15192
|
};
|
|
15144
|
-
request?: SecondParameter$
|
|
15193
|
+
request?: SecondParameter$8<typeof customFetch>;
|
|
15145
15194
|
}) => {
|
|
15146
15195
|
isMutating: boolean;
|
|
15147
15196
|
trigger: swr_mutation.TriggerWithOptionsArgs<CreateSecretEnvelope, TError, string | readonly ["/v1/secrets"], CreateSecretBody | undefined>;
|
|
@@ -15157,16 +15206,16 @@ declare const getListSecretsUrl: (params?: ListSecretsParams) => string;
|
|
|
15157
15206
|
*/
|
|
15158
15207
|
declare const listSecrets: (params?: ListSecretsParams, options?: Parameters<typeof customFetch>[1]) => Promise<ListSecretsEnvelope>;
|
|
15159
15208
|
declare const getListSecretsKey: (params?: ListSecretsParams) => readonly ["/v1/secrets", ...ListSecretsParams[]];
|
|
15160
|
-
type ListSecretsQueryResult = NonNullable<Awaited$
|
|
15209
|
+
type ListSecretsQueryResult = NonNullable<Awaited$8<ReturnType<typeof listSecrets>>>;
|
|
15161
15210
|
/**
|
|
15162
15211
|
* @summary List secrets
|
|
15163
15212
|
*/
|
|
15164
15213
|
declare const useListSecrets: <TError = ErrorType<ErrorResponse>>(params?: ListSecretsParams, options?: {
|
|
15165
|
-
swr?: SWRConfiguration<Awaited$
|
|
15214
|
+
swr?: SWRConfiguration<Awaited$8<ReturnType<typeof listSecrets>>, TError> & {
|
|
15166
15215
|
swrKey?: Key;
|
|
15167
15216
|
enabled?: boolean;
|
|
15168
15217
|
};
|
|
15169
|
-
request?: SecondParameter$
|
|
15218
|
+
request?: SecondParameter$8<typeof customFetch>;
|
|
15170
15219
|
}) => {
|
|
15171
15220
|
data: ListSecretsEnvelope | undefined;
|
|
15172
15221
|
error: TError | undefined;
|
|
@@ -15182,16 +15231,16 @@ declare const getGetSecretUrl: (secretId: string) => string;
|
|
|
15182
15231
|
*/
|
|
15183
15232
|
declare const getSecret: (secretId: string, options?: Parameters<typeof customFetch>[1]) => Promise<GetSecretEnvelope>;
|
|
15184
15233
|
declare const getGetSecretKey: (secretId: string) => readonly [`/v1/secrets/${string}`];
|
|
15185
|
-
type GetSecretQueryResult = NonNullable<Awaited$
|
|
15234
|
+
type GetSecretQueryResult = NonNullable<Awaited$8<ReturnType<typeof getSecret>>>;
|
|
15186
15235
|
/**
|
|
15187
15236
|
* @summary Get secret
|
|
15188
15237
|
*/
|
|
15189
15238
|
declare const useGetSecret: <TError = ErrorType<ErrorResponse>>(secretId: string, options?: {
|
|
15190
|
-
swr?: SWRConfiguration<Awaited$
|
|
15239
|
+
swr?: SWRConfiguration<Awaited$8<ReturnType<typeof getSecret>>, TError> & {
|
|
15191
15240
|
swrKey?: Key;
|
|
15192
15241
|
enabled?: boolean;
|
|
15193
15242
|
};
|
|
15194
|
-
request?: SecondParameter$
|
|
15243
|
+
request?: SecondParameter$8<typeof customFetch>;
|
|
15195
15244
|
}) => {
|
|
15196
15245
|
data: GetSecretEnvelope | undefined;
|
|
15197
15246
|
error: TError | undefined;
|
|
@@ -15210,19 +15259,19 @@ declare const getUpdateSecretUrl: (secretId: string) => string;
|
|
|
15210
15259
|
* @summary Update secret
|
|
15211
15260
|
*/
|
|
15212
15261
|
declare const updateSecret: (secretId: string, updateSecretBody?: UpdateSecretBody, options?: Parameters<typeof customFetch>[1]) => Promise<UpdateSecretEnvelope>;
|
|
15213
|
-
declare const getUpdateSecretMutationFetcher: (secretId: string, options?: SecondParameter$
|
|
15262
|
+
declare const getUpdateSecretMutationFetcher: (secretId: string, options?: SecondParameter$8<typeof customFetch>) => (_: Key, { arg }: {
|
|
15214
15263
|
arg: UpdateSecretBody | undefined;
|
|
15215
15264
|
}) => Promise<UpdateSecretEnvelope>;
|
|
15216
15265
|
declare const getUpdateSecretMutationKey: (secretId: string) => readonly [`/v1/secrets/${string}`];
|
|
15217
|
-
type UpdateSecretMutationResult = NonNullable<Awaited$
|
|
15266
|
+
type UpdateSecretMutationResult = NonNullable<Awaited$8<ReturnType<typeof updateSecret>>>;
|
|
15218
15267
|
/**
|
|
15219
15268
|
* @summary Update secret
|
|
15220
15269
|
*/
|
|
15221
15270
|
declare const useUpdateSecret: <TError = ErrorType<ErrorResponse>>(secretId: string, options?: {
|
|
15222
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
15271
|
+
swr?: SWRMutationConfiguration<Awaited$8<ReturnType<typeof updateSecret>>, TError, Key, UpdateSecretBody | undefined, Awaited$8<ReturnType<typeof updateSecret>>> & {
|
|
15223
15272
|
swrKey?: string;
|
|
15224
15273
|
};
|
|
15225
|
-
request?: SecondParameter$
|
|
15274
|
+
request?: SecondParameter$8<typeof customFetch>;
|
|
15226
15275
|
}) => {
|
|
15227
15276
|
isMutating: boolean;
|
|
15228
15277
|
trigger: swr_mutation.TriggerWithOptionsArgs<UpdateSecretEnvelope, TError, string | readonly [`/v1/secrets/${string}`], UpdateSecretBody | undefined>;
|
|
@@ -15237,19 +15286,19 @@ declare const getDeleteSecretUrl: (secretId: string) => string;
|
|
|
15237
15286
|
* @summary Delete secret
|
|
15238
15287
|
*/
|
|
15239
15288
|
declare const deleteSecret: (secretId: string, options?: Parameters<typeof customFetch>[1]) => Promise<DeleteSecretEnvelope>;
|
|
15240
|
-
declare const getDeleteSecretMutationFetcher: (secretId: string, options?: SecondParameter$
|
|
15289
|
+
declare const getDeleteSecretMutationFetcher: (secretId: string, options?: SecondParameter$8<typeof customFetch>) => (_: Key, __: {
|
|
15241
15290
|
arg: Arguments;
|
|
15242
15291
|
}) => Promise<DeleteSecretEnvelope>;
|
|
15243
15292
|
declare const getDeleteSecretMutationKey: (secretId: string) => readonly [`/v1/secrets/${string}`];
|
|
15244
|
-
type DeleteSecretMutationResult = NonNullable<Awaited$
|
|
15293
|
+
type DeleteSecretMutationResult = NonNullable<Awaited$8<ReturnType<typeof deleteSecret>>>;
|
|
15245
15294
|
/**
|
|
15246
15295
|
* @summary Delete secret
|
|
15247
15296
|
*/
|
|
15248
15297
|
declare const useDeleteSecret: <TError = ErrorType<ErrorResponse>>(secretId: string, options?: {
|
|
15249
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
15298
|
+
swr?: SWRMutationConfiguration<Awaited$8<ReturnType<typeof deleteSecret>>, TError, Key, Arguments, Awaited$8<ReturnType<typeof deleteSecret>>> & {
|
|
15250
15299
|
swrKey?: string;
|
|
15251
15300
|
};
|
|
15252
|
-
request?: SecondParameter$
|
|
15301
|
+
request?: SecondParameter$8<typeof customFetch>;
|
|
15253
15302
|
}) => {
|
|
15254
15303
|
isMutating: boolean;
|
|
15255
15304
|
trigger: swr_mutation.TriggerWithOptionsArgs<DeleteSecretEnvelope, TError, string | readonly [`/v1/secrets/${string}`], Arguments>;
|
|
@@ -15259,9 +15308,9 @@ declare const useDeleteSecret: <TError = ErrorType<ErrorResponse>>(secretId: str
|
|
|
15259
15308
|
swrKey: string | readonly [`/v1/secrets/${string}`];
|
|
15260
15309
|
};
|
|
15261
15310
|
|
|
15262
|
-
type AwaitedInput$
|
|
15263
|
-
type Awaited$
|
|
15264
|
-
type SecondParameter$
|
|
15311
|
+
type AwaitedInput$7<T> = PromiseLike<T> | T;
|
|
15312
|
+
type Awaited$7<O> = O extends AwaitedInput$7<infer T> ? T : never;
|
|
15313
|
+
type SecondParameter$7<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
15265
15314
|
declare const getListTeamMembersUrl: () => string;
|
|
15266
15315
|
/**
|
|
15267
15316
|
* List all members in the current tenant.
|
|
@@ -15269,16 +15318,16 @@ declare const getListTeamMembersUrl: () => string;
|
|
|
15269
15318
|
*/
|
|
15270
15319
|
declare const listTeamMembers: (options?: Parameters<typeof customFetch>[1]) => Promise<ListTeamMembersEnvelope>;
|
|
15271
15320
|
declare const getListTeamMembersKey: () => readonly ["/v1/team/members"];
|
|
15272
|
-
type ListTeamMembersQueryResult = NonNullable<Awaited$
|
|
15321
|
+
type ListTeamMembersQueryResult = NonNullable<Awaited$7<ReturnType<typeof listTeamMembers>>>;
|
|
15273
15322
|
/**
|
|
15274
15323
|
* @summary List team members
|
|
15275
15324
|
*/
|
|
15276
15325
|
declare const useListTeamMembers: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
15277
|
-
swr?: SWRConfiguration<Awaited$
|
|
15326
|
+
swr?: SWRConfiguration<Awaited$7<ReturnType<typeof listTeamMembers>>, TError> & {
|
|
15278
15327
|
swrKey?: Key;
|
|
15279
15328
|
enabled?: boolean;
|
|
15280
15329
|
};
|
|
15281
|
-
request?: SecondParameter$
|
|
15330
|
+
request?: SecondParameter$7<typeof customFetch>;
|
|
15282
15331
|
}) => {
|
|
15283
15332
|
data: ListTeamMembersEnvelope | undefined;
|
|
15284
15333
|
error: TError | undefined;
|
|
@@ -15297,19 +15346,19 @@ declare const getInviteTeamMemberUrl: () => string;
|
|
|
15297
15346
|
* @summary Invite a team member
|
|
15298
15347
|
*/
|
|
15299
15348
|
declare const inviteTeamMember: (inviteTeamMemberBody?: InviteTeamMemberBody, options?: Parameters<typeof customFetch>[1]) => Promise<InviteTeamMemberEnvelope>;
|
|
15300
|
-
declare const getInviteTeamMemberMutationFetcher: (options?: SecondParameter$
|
|
15349
|
+
declare const getInviteTeamMemberMutationFetcher: (options?: SecondParameter$7<typeof customFetch>) => (_: Key, { arg }: {
|
|
15301
15350
|
arg: InviteTeamMemberBody | undefined;
|
|
15302
15351
|
}) => Promise<InviteTeamMemberEnvelope>;
|
|
15303
15352
|
declare const getInviteTeamMemberMutationKey: () => readonly ["/v1/team/invitations"];
|
|
15304
|
-
type InviteTeamMemberMutationResult = NonNullable<Awaited$
|
|
15353
|
+
type InviteTeamMemberMutationResult = NonNullable<Awaited$7<ReturnType<typeof inviteTeamMember>>>;
|
|
15305
15354
|
/**
|
|
15306
15355
|
* @summary Invite a team member
|
|
15307
15356
|
*/
|
|
15308
15357
|
declare const useInviteTeamMember: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
15309
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
15358
|
+
swr?: SWRMutationConfiguration<Awaited$7<ReturnType<typeof inviteTeamMember>>, TError, Key, InviteTeamMemberBody | undefined, Awaited$7<ReturnType<typeof inviteTeamMember>>> & {
|
|
15310
15359
|
swrKey?: string;
|
|
15311
15360
|
};
|
|
15312
|
-
request?: SecondParameter$
|
|
15361
|
+
request?: SecondParameter$7<typeof customFetch>;
|
|
15313
15362
|
}) => {
|
|
15314
15363
|
isMutating: boolean;
|
|
15315
15364
|
trigger: swr_mutation.TriggerWithOptionsArgs<InviteTeamMemberEnvelope, TError, string | readonly ["/v1/team/invitations"], InviteTeamMemberBody | undefined>;
|
|
@@ -15329,16 +15378,16 @@ declare const getListTeamInvitationsUrl: () => string;
|
|
|
15329
15378
|
*/
|
|
15330
15379
|
declare const listTeamInvitations: (options?: Parameters<typeof customFetch>[1]) => Promise<ListTeamInvitationsEnvelope>;
|
|
15331
15380
|
declare const getListTeamInvitationsKey: () => readonly ["/v1/team/invitations"];
|
|
15332
|
-
type ListTeamInvitationsQueryResult = NonNullable<Awaited$
|
|
15381
|
+
type ListTeamInvitationsQueryResult = NonNullable<Awaited$7<ReturnType<typeof listTeamInvitations>>>;
|
|
15333
15382
|
/**
|
|
15334
15383
|
* @summary List pending team invitations
|
|
15335
15384
|
*/
|
|
15336
15385
|
declare const useListTeamInvitations: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
15337
|
-
swr?: SWRConfiguration<Awaited$
|
|
15386
|
+
swr?: SWRConfiguration<Awaited$7<ReturnType<typeof listTeamInvitations>>, TError> & {
|
|
15338
15387
|
swrKey?: Key;
|
|
15339
15388
|
enabled?: boolean;
|
|
15340
15389
|
};
|
|
15341
|
-
request?: SecondParameter$
|
|
15390
|
+
request?: SecondParameter$7<typeof customFetch>;
|
|
15342
15391
|
}) => {
|
|
15343
15392
|
data: ListTeamInvitationsEnvelope | undefined;
|
|
15344
15393
|
error: TError | undefined;
|
|
@@ -15359,19 +15408,19 @@ declare const getRevokeTeamInvitationUrl: (invitationId: string) => string;
|
|
|
15359
15408
|
* @summary Revoke a team invitation
|
|
15360
15409
|
*/
|
|
15361
15410
|
declare const revokeTeamInvitation: (invitationId: string, options?: Parameters<typeof customFetch>[1]) => Promise<void>;
|
|
15362
|
-
declare const getRevokeTeamInvitationMutationFetcher: (invitationId: string, options?: SecondParameter$
|
|
15411
|
+
declare const getRevokeTeamInvitationMutationFetcher: (invitationId: string, options?: SecondParameter$7<typeof customFetch>) => (_: Key, __: {
|
|
15363
15412
|
arg: Arguments;
|
|
15364
15413
|
}) => Promise<void>;
|
|
15365
15414
|
declare const getRevokeTeamInvitationMutationKey: (invitationId: string) => readonly [`/v1/team/invitations/${string}`];
|
|
15366
|
-
type RevokeTeamInvitationMutationResult = NonNullable<Awaited$
|
|
15415
|
+
type RevokeTeamInvitationMutationResult = NonNullable<Awaited$7<ReturnType<typeof revokeTeamInvitation>>>;
|
|
15367
15416
|
/**
|
|
15368
15417
|
* @summary Revoke a team invitation
|
|
15369
15418
|
*/
|
|
15370
15419
|
declare const useRevokeTeamInvitation: <TError = ErrorType<ErrorResponse>>(invitationId: string, options?: {
|
|
15371
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
15420
|
+
swr?: SWRMutationConfiguration<Awaited$7<ReturnType<typeof revokeTeamInvitation>>, TError, Key, Arguments, Awaited$7<ReturnType<typeof revokeTeamInvitation>>> & {
|
|
15372
15421
|
swrKey?: string;
|
|
15373
15422
|
};
|
|
15374
|
-
request?: SecondParameter$
|
|
15423
|
+
request?: SecondParameter$7<typeof customFetch>;
|
|
15375
15424
|
}) => {
|
|
15376
15425
|
isMutating: boolean;
|
|
15377
15426
|
trigger: swr_mutation.TriggerWithOptionsArgs<void, TError, string | readonly [`/v1/team/invitations/${string}`], Arguments>;
|
|
@@ -15392,19 +15441,19 @@ declare const getResendTeamInvitationUrl: (invitationId: string) => string;
|
|
|
15392
15441
|
* @summary Resend a team invitation
|
|
15393
15442
|
*/
|
|
15394
15443
|
declare const resendTeamInvitation: (invitationId: string, options?: Parameters<typeof customFetch>[1]) => Promise<ResendTeamInvitationEnvelope>;
|
|
15395
|
-
declare const getResendTeamInvitationMutationFetcher: (invitationId: string, options?: SecondParameter$
|
|
15444
|
+
declare const getResendTeamInvitationMutationFetcher: (invitationId: string, options?: SecondParameter$7<typeof customFetch>) => (_: Key, __: {
|
|
15396
15445
|
arg: Arguments;
|
|
15397
15446
|
}) => Promise<ResendTeamInvitationEnvelope>;
|
|
15398
15447
|
declare const getResendTeamInvitationMutationKey: (invitationId: string) => readonly [`/v1/team/invitations/${string}/resend`];
|
|
15399
|
-
type ResendTeamInvitationMutationResult = NonNullable<Awaited$
|
|
15448
|
+
type ResendTeamInvitationMutationResult = NonNullable<Awaited$7<ReturnType<typeof resendTeamInvitation>>>;
|
|
15400
15449
|
/**
|
|
15401
15450
|
* @summary Resend a team invitation
|
|
15402
15451
|
*/
|
|
15403
15452
|
declare const useResendTeamInvitation: <TError = ErrorType<ErrorResponse>>(invitationId: string, options?: {
|
|
15404
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
15453
|
+
swr?: SWRMutationConfiguration<Awaited$7<ReturnType<typeof resendTeamInvitation>>, TError, Key, Arguments, Awaited$7<ReturnType<typeof resendTeamInvitation>>> & {
|
|
15405
15454
|
swrKey?: string;
|
|
15406
15455
|
};
|
|
15407
|
-
request?: SecondParameter$
|
|
15456
|
+
request?: SecondParameter$7<typeof customFetch>;
|
|
15408
15457
|
}) => {
|
|
15409
15458
|
isMutating: boolean;
|
|
15410
15459
|
trigger: swr_mutation.TriggerWithOptionsArgs<ResendTeamInvitationEnvelope, TError, string | readonly [`/v1/team/invitations/${string}/resend`], Arguments>;
|
|
@@ -15419,19 +15468,19 @@ declare const getUpdateMemberRoleUrl: (id: string) => string;
|
|
|
15419
15468
|
* @summary Update member role
|
|
15420
15469
|
*/
|
|
15421
15470
|
declare const updateMemberRole: (id: string, updateMemberRoleBody?: UpdateMemberRoleBody, options?: Parameters<typeof customFetch>[1]) => Promise<UpdateMemberRoleEnvelope>;
|
|
15422
|
-
declare const getUpdateMemberRoleMutationFetcher: (id: string, options?: SecondParameter$
|
|
15471
|
+
declare const getUpdateMemberRoleMutationFetcher: (id: string, options?: SecondParameter$7<typeof customFetch>) => (_: Key, { arg }: {
|
|
15423
15472
|
arg: UpdateMemberRoleBody | undefined;
|
|
15424
15473
|
}) => Promise<UpdateMemberRoleEnvelope>;
|
|
15425
15474
|
declare const getUpdateMemberRoleMutationKey: (id: string) => readonly [`/v1/team/members/${string}`];
|
|
15426
|
-
type UpdateMemberRoleMutationResult = NonNullable<Awaited$
|
|
15475
|
+
type UpdateMemberRoleMutationResult = NonNullable<Awaited$7<ReturnType<typeof updateMemberRole>>>;
|
|
15427
15476
|
/**
|
|
15428
15477
|
* @summary Update member role
|
|
15429
15478
|
*/
|
|
15430
15479
|
declare const useUpdateMemberRole: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
|
|
15431
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
15480
|
+
swr?: SWRMutationConfiguration<Awaited$7<ReturnType<typeof updateMemberRole>>, TError, Key, UpdateMemberRoleBody | undefined, Awaited$7<ReturnType<typeof updateMemberRole>>> & {
|
|
15432
15481
|
swrKey?: string;
|
|
15433
15482
|
};
|
|
15434
|
-
request?: SecondParameter$
|
|
15483
|
+
request?: SecondParameter$7<typeof customFetch>;
|
|
15435
15484
|
}) => {
|
|
15436
15485
|
isMutating: boolean;
|
|
15437
15486
|
trigger: swr_mutation.TriggerWithOptionsArgs<UpdateMemberRoleEnvelope, TError, string | readonly [`/v1/team/members/${string}`], UpdateMemberRoleBody | undefined>;
|
|
@@ -15446,19 +15495,19 @@ declare const getRemoveMemberUrl: (id: string) => string;
|
|
|
15446
15495
|
* @summary Remove team member
|
|
15447
15496
|
*/
|
|
15448
15497
|
declare const removeMember: (id: string, options?: Parameters<typeof customFetch>[1]) => Promise<void>;
|
|
15449
|
-
declare const getRemoveMemberMutationFetcher: (id: string, options?: SecondParameter$
|
|
15498
|
+
declare const getRemoveMemberMutationFetcher: (id: string, options?: SecondParameter$7<typeof customFetch>) => (_: Key, __: {
|
|
15450
15499
|
arg: Arguments;
|
|
15451
15500
|
}) => Promise<void>;
|
|
15452
15501
|
declare const getRemoveMemberMutationKey: (id: string) => readonly [`/v1/team/members/${string}`];
|
|
15453
|
-
type RemoveMemberMutationResult = NonNullable<Awaited$
|
|
15502
|
+
type RemoveMemberMutationResult = NonNullable<Awaited$7<ReturnType<typeof removeMember>>>;
|
|
15454
15503
|
/**
|
|
15455
15504
|
* @summary Remove team member
|
|
15456
15505
|
*/
|
|
15457
15506
|
declare const useRemoveMember: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
|
|
15458
|
-
swr?: SWRMutationConfiguration<Awaited$
|
|
15507
|
+
swr?: SWRMutationConfiguration<Awaited$7<ReturnType<typeof removeMember>>, TError, Key, Arguments, Awaited$7<ReturnType<typeof removeMember>>> & {
|
|
15459
15508
|
swrKey?: string;
|
|
15460
15509
|
};
|
|
15461
|
-
request?: SecondParameter$
|
|
15510
|
+
request?: SecondParameter$7<typeof customFetch>;
|
|
15462
15511
|
}) => {
|
|
15463
15512
|
isMutating: boolean;
|
|
15464
15513
|
trigger: swr_mutation.TriggerWithOptionsArgs<void, TError, string | readonly [`/v1/team/members/${string}`], Arguments>;
|
|
@@ -15468,6 +15517,62 @@ declare const useRemoveMember: <TError = ErrorType<ErrorResponse>>(id: string, o
|
|
|
15468
15517
|
swrKey: string | readonly [`/v1/team/members/${string}`];
|
|
15469
15518
|
};
|
|
15470
15519
|
|
|
15520
|
+
type AwaitedInput$6<T> = PromiseLike<T> | T;
|
|
15521
|
+
type Awaited$6<O> = O extends AwaitedInput$6<infer T> ? T : never;
|
|
15522
|
+
type SecondParameter$6<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
15523
|
+
declare const getGetTenantSettingsUrl: () => string;
|
|
15524
|
+
/**
|
|
15525
|
+
* Retrieve the settings of the current tenant.
|
|
15526
|
+
* @summary Get tenant settings
|
|
15527
|
+
*/
|
|
15528
|
+
declare const getTenantSettings: (options?: Parameters<typeof customFetch>[1]) => Promise<GetTenantSettingsEnvelope>;
|
|
15529
|
+
declare const getGetTenantSettingsKey: () => readonly ["/v1/tenant"];
|
|
15530
|
+
type GetTenantSettingsQueryResult = NonNullable<Awaited$6<ReturnType<typeof getTenantSettings>>>;
|
|
15531
|
+
/**
|
|
15532
|
+
* @summary Get tenant settings
|
|
15533
|
+
*/
|
|
15534
|
+
declare const useGetTenantSettings: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
15535
|
+
swr?: SWRConfiguration<Awaited$6<ReturnType<typeof getTenantSettings>>, TError> & {
|
|
15536
|
+
swrKey?: Key;
|
|
15537
|
+
enabled?: boolean;
|
|
15538
|
+
};
|
|
15539
|
+
request?: SecondParameter$6<typeof customFetch>;
|
|
15540
|
+
}) => {
|
|
15541
|
+
data: GetTenantSettingsEnvelope | undefined;
|
|
15542
|
+
error: TError | undefined;
|
|
15543
|
+
mutate: swr.KeyedMutator<GetTenantSettingsEnvelope>;
|
|
15544
|
+
isValidating: boolean;
|
|
15545
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
15546
|
+
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
15547
|
+
};
|
|
15548
|
+
declare const getUpdateTenantSettingsUrl: () => string;
|
|
15549
|
+
/**
|
|
15550
|
+
* Update settings of the current tenant. Requires the `tenants:write` permission, which only Avallon admins hold.
|
|
15551
|
+
* @summary Update tenant settings
|
|
15552
|
+
*/
|
|
15553
|
+
declare const updateTenantSettings: (updateTenantSettingsBody?: UpdateTenantSettingsBody, options?: Parameters<typeof customFetch>[1]) => Promise<UpdateTenantSettingsEnvelope>;
|
|
15554
|
+
declare const getUpdateTenantSettingsMutationFetcher: (options?: SecondParameter$6<typeof customFetch>) => (_: Key, { arg }: {
|
|
15555
|
+
arg: UpdateTenantSettingsBody | undefined;
|
|
15556
|
+
}) => Promise<UpdateTenantSettingsEnvelope>;
|
|
15557
|
+
declare const getUpdateTenantSettingsMutationKey: () => readonly ["/v1/tenant"];
|
|
15558
|
+
type UpdateTenantSettingsMutationResult = NonNullable<Awaited$6<ReturnType<typeof updateTenantSettings>>>;
|
|
15559
|
+
/**
|
|
15560
|
+
* @summary Update tenant settings
|
|
15561
|
+
*/
|
|
15562
|
+
declare const useUpdateTenantSettings: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
15563
|
+
swr?: SWRMutationConfiguration<Awaited$6<ReturnType<typeof updateTenantSettings>>, TError, Key, UpdateTenantSettingsBody | undefined, Awaited$6<ReturnType<typeof updateTenantSettings>>> & {
|
|
15564
|
+
swrKey?: string;
|
|
15565
|
+
};
|
|
15566
|
+
request?: SecondParameter$6<typeof customFetch>;
|
|
15567
|
+
}) => {
|
|
15568
|
+
isMutating: boolean;
|
|
15569
|
+
trigger: swr_mutation.TriggerWithOptionsArgs<UpdateTenantSettingsEnvelope, TError, string | readonly ["/v1/tenant"], UpdateTenantSettingsBody | undefined>;
|
|
15570
|
+
reset: () => void;
|
|
15571
|
+
error: TError | undefined;
|
|
15572
|
+
data: UpdateTenantSettingsEnvelope | undefined;
|
|
15573
|
+
swrKey: string | readonly ["/v1/tenant"];
|
|
15574
|
+
};
|
|
15575
|
+
|
|
15471
15576
|
type AwaitedInput$5<T> = PromiseLike<T> | T;
|
|
15472
15577
|
type Awaited$5<O> = O extends AwaitedInput$5<infer T> ? T : never;
|
|
15473
15578
|
type SecondParameter$5<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
@@ -17174,4 +17279,4 @@ declare const useGetWorkerVersionChangeSummary: <TError = ErrorType<ErrorRespons
|
|
|
17174
17279
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => Arguments);
|
|
17175
17280
|
};
|
|
17176
17281
|
|
|
17177
|
-
export { type AddCaseLinksBody, type AddCaseLinksBodyEntitiesItem, AddCaseLinksBodyEntitiesItemEntityType, type AddCaseLinksEnvelope, AddCaseLinksEnvironment, type AddCaseLinksMutationResult, type AddCaseLinksParams, type AddCaseLinksResponse, type AnalyticsTimeSeries, AnalyticsTimeSeriesGranularity, AnalyticsTimeSeriesGroupBy, AnalyticsTimeSeriesMetric, type AnalyticsTimeSeriesPointsItem, type ApiKey, type ApiKeyCreated, ApiKeyCreatedRole, type ApiKeyList, ApiKeyRole, type Artifact, type ArtifactCreated, type ArtifactCreatedItem, type ArtifactDetail, type ArtifactDetailData, type ArtifactDetailDataMetadata, ArtifactDetailDataStatus, type ArtifactList, type ArtifactMetadata, type ArtifactMetadataKeys, type ArtifactMetadataKeysData, type ArtifactMetadataKeysDataValues, ArtifactStatus, type ArtifactStatusSummary, type AuthTokens, type AvallonConfig, AvallonError, type Call, type CallAnalytics, type CallAnalyticsCallsOverTimeItem, type CallAnalyticsDurationDistributionItem, type CallAnalyticsEvaluationOverTimeItem, type CallAnalyticsMetricPerformanceItem, type CallAnalyticsScoreDistributionItem, type CallAnalyticsSummary, type CallDetail, CallDetailDirection, CallDetailEnvironment, type CallDetailEvaluation, type CallDetailMetadata, CallDirection, CallEnvironment, type CallEvaluation, type CallEvaluationMetricsItem, type CallEvaluationProperty, type CallList, type CallMessage, type CallMessageMetadata, type CallMessageToolArguments, type CallMessageToolResult, type CallMetadata, type CancelJobEnvelope, type CancelJobMutationResult, type CancelWorkerRunEnvelope, type CancelWorkerRunMutationResult, type CaseDetail, type CaseLink, CaseLinkEntityType, type CaseLinkList, type CaseList, type CaseSearchResult, type CaseSummary, CaseSummaryEnvironment, type ChatAgent, type ChatAgentCreated, type ChatAgentDetail, type ChatAgentList, type ChatAgentPrompt, type ChatAgentPromptUpdated, type ChatCreated, type ChatHistory, type ChatHistoryMessagesItem, ChatHistoryMessagesItemRole, type ChatList, type ChatListItem, type ChatMessage, type ChatMessageCreated, type ChatMessageCreatedMessage, type ChatMessageCreatedMessageContentItem, type ChatMessageList, type ChatMessagePart, ChatMessageRole, type CheckInboxAvailabilityEnvelope, type CheckInboxAvailabilityParams, type CheckInboxAvailabilityQueryResult, type CodeTool, type CodeToolCreated, type CodeToolCreatedTool, type CodeToolCreatedToolSchema, type CodeToolSchema, type CodeToolSummary, type CodeToolUpdated, type ConfirmationResponse, type CreateAgentWebhookBody, CreateAgentWebhookBodyEnvironmentsItem, type CreateAgentWebhookEnvelope, type CreateAgentWebhookMutationResult, type CreateApiKeyBody, CreateApiKeyBodyEnvironment, CreateApiKeyBodyRole, type CreateApiKeyEnvelope, type CreateApiKeyMutationResult, type CreateArtifactBody, type CreateArtifactBodyMetadata, type CreateArtifactBodyProcessingOptions, type CreateArtifactEnvelope, type CreateArtifactMutationResult, type CreateCallFeedbackEnvelope, type CreateCallFeedbackMutationResult, type CreateCaseBody, CreateCaseBodyEnvironment, type CreateCaseEnvelope, type CreateCaseMutationResult, type CreateCaseResponse, type CreateChatAgentBody, type CreateChatAgentEnvelope, type CreateChatAgentMutationResult, type CreateChatBody, type CreateChatEnvelope, type CreateChatMutationResult, type CreateEvalBenchmarkBody, type CreateEvalBenchmarkEnvelope, type CreateEvalBenchmarkEnvelopeData, type CreateEvalBenchmarkEnvelopeDataRunSummary, type CreateEvalBenchmarkEnvelopeDataRunSummaryBaseline, type CreateEvalBenchmarkEnvelopeDataRunSummaryBaselineDurationSeconds, type CreateEvalBenchmarkEnvelopeDataRunSummaryBaselineFixtureMatchedRate, type CreateEvalBenchmarkEnvelopeDataRunSummaryBaselinePassRate, type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidate, type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidateDurationSeconds, type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidateFixtureMatchedRate, type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidatePassRate, type CreateEvalBenchmarkEnvelopeDataRunSummaryDelta, type CreateEvalBenchmarkEnvelopeDataRunsItem, CreateEvalBenchmarkEnvelopeDataRunsItemConfiguration, type CreateEvalBenchmarkEnvelopeDataRunsItemGrading, type CreateEvalBenchmarkEnvelopeDataRunsItemGradingExpectationsItem, type CreateEvalBenchmarkEnvelopeDataRunsItemGradingSummary, type CreateEvalBenchmarkEnvelopeDataRunsItemMetrics, type CreateEvalBenchmarkEnvelopeDataRunsItemMetricsFixtureHealth, CreateEvalBenchmarkEnvelopeDataRunsItemStatus, CreateEvalBenchmarkEnvelopeDataStatus, type CreateEvalBenchmarkMutationResult, type CreateExtractorBody, type CreateExtractorBodySchema, type CreateExtractorEnvelope, type CreateExtractorJobBody, type CreateExtractorJobBodyScope, type CreateExtractorJobEnvelope, type CreateExtractorJobMutationResult, type CreateExtractorMutationResult, type CreateExtractorWebhookBody, CreateExtractorWebhookBodyEnvironmentsItem, type CreateExtractorWebhookEnvelope, type CreateExtractorWebhookMutationResult, type CreateFeedbackRequest, type CreateInboxBody, CreateInboxBodyProcessorType, type CreateInboxEnvelope, type CreateInboxMutationResult, type CreateInboxWebhookBody, CreateInboxWebhookBodyEnvironmentsItem, type CreateInboxWebhookEnvelope, type CreateInboxWebhookMutationResult, type CreateInformationRequestBody, type CreateInformationRequestBodyMetadata, type CreateInformationRequestEnvelope, type CreateInformationRequestMutationResult, type CreateNotificationWebhookBody, CreateNotificationWebhookBodyEnvironmentsItem, type CreateNotificationWebhookEnvelope, type CreateNotificationWebhookMutationResult, type CreateScheduleBody, CreateScheduleBodyEnvironmentsItem, type CreateScheduleEnvelope, type CreateScheduleMutationResult, type CreateSecretBody, type CreateSecretEnvelope, type CreateSecretMutationResult, type CreateToolBody, type CreateToolEnvelope, type CreateToolMutationResult, type CreateVoiceAgentBody, CreateVoiceAgentBodyCallProcessorType, CreateVoiceAgentBodyDirection, CreateVoiceAgentBodyLanguage, CreateVoiceAgentBodyLlmModel, CreateVoiceAgentBodySttModel, CreateVoiceAgentBodyTtsModel, CreateVoiceAgentBodyTtsProvider, type CreateVoiceAgentEnvelope, type CreateVoiceAgentMutationResult, type CreateVoiceAgentResponse, type CreateWorkerBody, CreateWorkerBodyMcpType, type CreateWorkerEnvelope, type CreateWorkerEvalFromRunBody, type CreateWorkerEvalFromRunBodyGrader, type CreateWorkerEvalFromRunEnvelope, type CreateWorkerEvalFromRunEnvelopeData, type CreateWorkerEvalFromRunEnvelopeDataFixture, type CreateWorkerEvalFromRunEnvelopeDataFixtureScope, type CreateWorkerEvalFromRunEnvelopeDataGrader, type CreateWorkerEvalFromRunEnvelopeDataSource, CreateWorkerEvalFromRunEnvelopeDataSourceType, type CreateWorkerEvalFromRunEnvelopeDataTarget, CreateWorkerEvalFromRunEnvelopeDataTargetType, type CreateWorkerEvalFromRunEnvelopeDataToolMocksItem, type CreateWorkerEvalFromRunEnvelopeDataToolMocksItemInputSchema, type CreateWorkerEvalFromRunEnvelopeDataToolMocksItemMatch, type CreateWorkerEvalFromRunMutationResult, type CreateWorkerMutationResult, type CreateWorkerRunBody, CreateWorkerRunBodyEnvironment, type CreateWorkerRunBodyScope, type CreateWorkerRunEnvelope, type CreateWorkerRunMutationResult, type CreateWorkerWebhookBody, CreateWorkerWebhookBodyEnvironmentsItem, type CreateWorkerWebhookEnvelope, type CreateWorkerWebhookMutationResult, type DeleteArtifactEnvelope, type DeleteArtifactMutationResult, type DeleteArtifactResponse, type DeleteCallFeedbackEnvelope, type DeleteCallFeedbackMutationResult, type DeleteCaseEnvelope, DeleteCaseEnvironment, type DeleteCaseMutationResult, type DeleteCaseParams, type DeleteCaseResponse, type DeleteChatAgentEnvelope, type DeleteChatAgentMutationResult, type DeleteChatAgentResponse, type DeleteEmailEnvelope, type DeleteEmailMutationResult, type DeleteEmailResponse, type DeleteExtractorEnvelope, type DeleteExtractorMutationResult, type DeleteExtractorResponse, type DeleteInboxEnvelope, type DeleteInboxMutationResult, type DeleteInboxResponse, type DeleteScheduleEnvelope, type DeleteScheduleMutationResult, type DeleteScheduleResponse, type DeleteSecretEnvelope, type DeleteSecretMutationResult, type DeleteSecretResponse, type DeleteToolEnvelope, type DeleteToolMutationResult, type DeleteToolResponse, type DeleteVoiceAgentEnvelope, type DeleteVoiceAgentMutationResult, type DeleteVoiceAgentResponse, type DeleteWebhookEnvelope, type DeleteWebhookMutationResult, type DeleteWebhookResponse, type DeleteWorkerEnvelope, type DeleteWorkerMutationResult, type DeleteWorkerResponse, type Dispatch, DispatchEnvironment, type DispatchList, DispatchStatus, type DispatchTarget, DispatchTargetType, type DispatchTrigger, DispatchTriggerType, type Email, type EmailDetail, EmailDetailDirection, EmailDetailEnvironment, EmailDetailIgnoredReason, EmailDirection, EmailEnvironment, EmailIgnoredReason, type EmailList, type EmailReplyResult, EmailReplyResultValue, type EmailSendResult, type EmailThread, EmailThreadEnvironment, type EmailThreadList, type ErrorResponse, type ErrorResponseData, type ExecuteCodeBody, ExecuteCodeBodyEnvironment, type ExecuteCodeBodyParams, type ExecuteCodeEnvelope, type ExecuteCodeMutationResult, type Extract, type ExtractList, type ExtractProcessorScope, type ExtractSummary, type ExtractSummaryProcessorScope, type Extractor, type ExtractorCreated, type ExtractorCreatedSchema, type ExtractorJob, type ExtractorJobCreated, type ExtractorJobCreatedScope, type ExtractorJobDetail, type ExtractorJobDetailScope, type ExtractorJobList, type ExtractorJobScope, type ExtractorList, type ExtractorSchema, type ExtractorSummary, type ExtractorUpdated, type ExtractorUpdatedSchema, type ExtractorWebhookList, type Feedback, type GetAnalyticsTimeSeriesEnvelope, GetAnalyticsTimeSeriesGranularity, GetAnalyticsTimeSeriesGroupBy, GetAnalyticsTimeSeriesMetric, type GetAnalyticsTimeSeriesParams, type GetAnalyticsTimeSeriesQueryResult, type GetArtifactEnvelope, type GetArtifactMetadataKeysEnvelope, type GetArtifactMetadataKeysParams, type GetArtifactMetadataKeysQueryResult, type GetArtifactQueryResult, type GetArtifactStatusSummaryEnvelope, type GetArtifactStatusSummaryParams, type GetArtifactStatusSummaryQueryResult, type GetArtifactUploadUrlBody, type GetArtifactUploadUrlEnvelope, type GetArtifactUploadUrlEnvelopeData, type GetArtifactUploadUrlMutationResult, type GetBenchmarkEnvelope, type GetBenchmarkEnvelopeData, type GetBenchmarkEnvelopeDataRunSummary, type GetBenchmarkEnvelopeDataRunSummaryBaseline, type GetBenchmarkEnvelopeDataRunSummaryBaselineDurationSeconds, type GetBenchmarkEnvelopeDataRunSummaryBaselineFixtureMatchedRate, type GetBenchmarkEnvelopeDataRunSummaryBaselinePassRate, type GetBenchmarkEnvelopeDataRunSummaryCandidate, type GetBenchmarkEnvelopeDataRunSummaryCandidateDurationSeconds, type GetBenchmarkEnvelopeDataRunSummaryCandidateFixtureMatchedRate, type GetBenchmarkEnvelopeDataRunSummaryCandidatePassRate, type GetBenchmarkEnvelopeDataRunSummaryDelta, type GetBenchmarkEnvelopeDataRunsItem, GetBenchmarkEnvelopeDataRunsItemConfiguration, type GetBenchmarkEnvelopeDataRunsItemGrading, type GetBenchmarkEnvelopeDataRunsItemGradingExpectationsItem, type GetBenchmarkEnvelopeDataRunsItemGradingSummary, type GetBenchmarkEnvelopeDataRunsItemMetrics, type GetBenchmarkEnvelopeDataRunsItemMetricsFixtureHealth, GetBenchmarkEnvelopeDataRunsItemStatus, GetBenchmarkEnvelopeDataStatus, type GetBenchmarkQueryResult, type GetCallAnalyticsEnvelope, type GetCallAnalyticsParams, type GetCallAnalyticsQueryResult, type GetCallEnvelope, type GetCallEvaluationEnvelope, type GetCallEvaluationQueryResult, type GetCallParams, type GetCallQueryResult, type GetCaseEnvelope, GetCaseEnvironment, type GetCaseParams, type GetCaseQueryResult, type GetChatAgentEnvelope, type GetChatAgentPromptEnvelope, type GetChatAgentPromptQueryResult, type GetChatAgentQueryResult, type GetChatEnvelope, type GetChatQueryResult, type GetEmailEnvelope, type GetEmailQueryResult, type GetEvalRunEnvelope, type GetEvalRunEnvelopeData, GetEvalRunEnvelopeDataConfiguration, type GetEvalRunEnvelopeDataGrading, type GetEvalRunEnvelopeDataGradingExpectationsItem, type GetEvalRunEnvelopeDataGradingSummary, type GetEvalRunEnvelopeDataMetrics, type GetEvalRunEnvelopeDataMetricsFixtureHealth, GetEvalRunEnvelopeDataStatus, type GetEvalRunQueryResult, type GetExtractCitationsEnvelope, type GetExtractCitationsEnvelopeData, type GetExtractCitationsEnvelopeDataChunks, type GetExtractCitationsEnvelopeDataChunksBoundingBox, type GetExtractCitationsQueryResult, type GetExtractEnvelope, type GetExtractQueryResult, type GetExtractorEnvelope, type GetExtractorJobEnvelope, type GetExtractorJobQueryResult, type GetExtractorJobResponse, type GetExtractorQueryResult, type GetExtractorResponse, type GetInformationRequestEnvelope, type GetInformationRequestQueryResult, type GetNotificationEnvelope, type GetNotificationQueryResult, GetOAuthUrlCodeChallengeMethod, type GetOAuthUrlEnvelope, type GetOAuthUrlParams, GetOAuthUrlProvider, type GetOAuthUrlQueryResult, type GetPartnerJwksQueryResult, type GetProfileEnvelope, type GetProfileQueryResult, type GetPublicChatAgentEnvelope, type GetPublicChatAgentQueryResult, type GetScheduleEnvelope, type GetScheduleQueryResult, type GetSecretEnvelope, type GetSecretQueryResult, type GetSessionTokenBody, type GetSessionTokenEnvelope, type GetSessionTokenEnvelopeData, type GetSessionTokenMutationResult, type GetToolEnvelope, type GetToolQueryResult, type GetToolResponse, type GetToolVersionChangeSummaryEnvelope, type GetToolVersionChangeSummaryQueryResult, type GetToolVersionEnvelope, type GetToolVersionQueryResult, type GetVoiceAgentEnvelope, type GetVoiceAgentPlaceholdersEnvelope, type GetVoiceAgentPlaceholdersQueryResult, type GetVoiceAgentPromptEnvelope, type GetVoiceAgentPromptParams, type GetVoiceAgentPromptQueryResult, type GetVoiceAgentQueryResult, type GetVoiceAgentResponse, type GetVoiceAgentVersionChangeSummaryEnvelope, type GetVoiceAgentVersionChangeSummaryQueryResult, type GetVoiceAgentVersionEnvelope, type GetVoiceAgentVersionQueryResult, type GetWebhookEnvelope, type GetWebhookQueryResult, type GetWorkerEnvelope, type GetWorkerPromptEnvelope, type GetWorkerPromptParams, type GetWorkerPromptQueryResult, type GetWorkerQueryResult, type GetWorkerRunEnvelope, type GetWorkerRunQueryResult, type GetWorkerRunResponse, type GetWorkerVersionChangeSummaryEnvelope, type GetWorkerVersionChangeSummaryQueryResult, type GetWorkerVersionEnvelope, type GetWorkerVersionQueryResult, type Inbox, type InboxAddresses, type InboxAvailability, type InboxList, InboxProcessorType, type InboxWebhookList, type InformationRequest, InformationRequestEnvironment, type InformationRequestList, type InformationRequestMetadata, type InviteTeamMemberBody, type InviteTeamMemberEnvelope, type InviteTeamMemberMutationResult, type ListAgentWebhooksEnvelope, ListAgentWebhooksEnvironment, type ListAgentWebhooksParams, type ListAgentWebhooksQueryResult, type ListApiKeysEnvelope, ListApiKeysIncludeRevoked, type ListApiKeysParams, type ListApiKeysQueryResult, type ListArtifactsEnvelope, type ListArtifactsEnvelopeMeta, ListArtifactsEnvironment, type ListArtifactsParams, type ListArtifactsQueryResult, ListArtifactsSortBy, ListArtifactsSortOrder, ListArtifactsStatus, type ListCallFeedbackEnvelope, type ListCallFeedbackEnvelopeMeta, type ListCallFeedbackParams, type ListCallFeedbackQueryResult, ListCallFeedbackSortBy, ListCallFeedbackSortOrder, ListCallsDirection, type ListCallsEnvelope, type ListCallsEnvelopeMeta, ListCallsEnvironment, type ListCallsParams, type ListCallsQueryResult, ListCallsSortBy, ListCallsSortOrder, ListCallsStatus, ListCaseLinksEntityType, type ListCaseLinksEnvelope, type ListCaseLinksEnvelopeMeta, ListCaseLinksEnvironment, type ListCaseLinksParams, type ListCaseLinksQueryResult, ListCaseLinksSortBy, ListCaseLinksSortOrder, type ListCasesEnvelope, type ListCasesEnvelopeMeta, ListCasesEnvironment, type ListCasesParams, type ListCasesQueryResult, ListCasesSortBy, ListCasesSortOrder, type ListChatAgentsEnvelope, type ListChatAgentsEnvelopeMeta, type ListChatAgentsParams, type ListChatAgentsQueryResult, ListChatAgentsSortBy, ListChatAgentsSortOrder, type ListChatMessagesEnvelope, type ListChatMessagesEnvelopeMeta, type ListChatMessagesParams, type ListChatMessagesQueryResult, ListChatMessagesSortBy, ListChatMessagesSortOrder, type ListChatsEnvelope, type ListChatsEnvelopeMeta, ListChatsEnvironment, type ListChatsParams, type ListChatsQueryResult, ListChatsSortBy, ListChatsSortOrder, type ListDispatchesEnvelope, type ListDispatchesEnvelopeMeta, type ListDispatchesParams, type ListDispatchesQueryResult, ListDispatchesSortBy, ListDispatchesSortOrder, ListDispatchesTriggerType, type ListEmailThreadsEnvelope, type ListEmailThreadsEnvelopeMeta, ListEmailThreadsEnvironment, type ListEmailThreadsParams, type ListEmailThreadsQueryResult, ListEmailThreadsSortBy, ListEmailThreadsSortOrder, type ListEmailsEnvelope, type ListEmailsEnvelopeMeta, ListEmailsEnvironment, type ListEmailsParams, type ListEmailsQueryResult, ListEmailsSortBy, ListEmailsSortOrder, type ListExtractorJobsEnvelope, type ListExtractorJobsEnvelopeMeta, type ListExtractorJobsParams, type ListExtractorJobsQueryResult, ListExtractorJobsSortBy, ListExtractorJobsSortOrder, ListExtractorJobsStatus, type ListExtractorsEnvelope, type ListExtractorsEnvelopeMeta, type ListExtractorsParams, type ListExtractorsQueryResult, ListExtractorsSortBy, ListExtractorsSortOrder, type ListExtractsEnvelope, type ListExtractsEnvelopeMeta, ListExtractsEnvironment, type ListExtractsParams, type ListExtractsQueryResult, ListExtractsSortBy, ListExtractsSortOrder, type ListInboxWebhooksEnvelope, ListInboxWebhooksEnvironment, type ListInboxWebhooksParams, type ListInboxWebhooksQueryResult, type ListInboxesEnvelope, type ListInboxesEnvelopeMeta, type ListInboxesParams, type ListInboxesQueryResult, ListInboxesSortBy, ListInboxesSortOrder, type ListInformationRequestsEnvelope, type ListInformationRequestsEnvelopeMeta, ListInformationRequestsEnvironment, type ListInformationRequestsParams, type ListInformationRequestsQueryResult, ListInformationRequestsResolved, ListInformationRequestsSortBy, ListInformationRequestsSortOrder, type ListJobsEnvelope, type ListJobsEnvelopeMeta, type ListJobsParams, type ListJobsQueryResult, ListJobsStatusItem, type ListNotificationWebhooksEnvelope, ListNotificationWebhooksEnvironment, type ListNotificationWebhooksParams, type ListNotificationWebhooksQueryResult, type ListNotificationsEnvelope, type ListNotificationsEnvelopeMeta, type ListNotificationsParams, type ListNotificationsQueryResult, ListNotificationsSortBy, ListNotificationsSortOrder, type ListSchedulesEnvelope, type ListSchedulesEnvelopeMeta, ListSchedulesEnvironment, type ListSchedulesParams, type ListSchedulesQueryResult, ListSchedulesRuleType, ListSchedulesSortBy, ListSchedulesSortOrder, type ListSecretsEnvelope, type ListSecretsEnvelopeMeta, type ListSecretsParams, type ListSecretsQueryResult, ListSecretsSortBy, ListSecretsSortOrder, type ListTeamInvitationsEnvelope, type ListTeamInvitationsQueryResult, type ListTeamInvitationsResponse, type ListTeamMembersEnvelope, type ListTeamMembersQueryResult, type ListTeamMembersResponse, type ListToolVersionsEnvelope, type ListToolVersionsEnvelopeMeta, type ListToolVersionsParams, type ListToolVersionsQueryResult, ListToolVersionsSortBy, ListToolVersionsSortOrder, type ListToolsEnvelope, type ListToolsParams, type ListToolsQueryResult, ListToolsSortBy, ListToolsSortOrder, type ListVoiceAgentVersionsEnvelope, type ListVoiceAgentVersionsEnvelopeMeta, type ListVoiceAgentVersionsParams, type ListVoiceAgentVersionsQueryResult, ListVoiceAgentVersionsSortBy, ListVoiceAgentVersionsSortOrder, type ListVoiceAgentsEnvelope, type ListVoiceAgentsParams, type ListVoiceAgentsQueryResult, type ListWebhookDeliveriesEnvelope, type ListWebhookDeliveriesEnvelopeMeta, type ListWebhookDeliveriesParams, type ListWebhookDeliveriesQueryResult, ListWebhookDeliveriesSortOrder, type ListWebhooksEnvelope, ListWebhooksEnvironment, type ListWebhooksParams, type ListWebhooksQueryResult, type ListWorkerModelsEnvelope, type ListWorkerModelsQueryResult, type ListWorkerRunMessagesEnvelope, type ListWorkerRunMessagesParams, type ListWorkerRunMessagesQueryResult, type ListWorkerRunsEnvelope, type ListWorkerRunsEnvelopeMeta, ListWorkerRunsEnvironment, type ListWorkerRunsParams, type ListWorkerRunsQueryResult, ListWorkerRunsSortBy, ListWorkerRunsSortOrder, ListWorkerRunsStatus, type ListWorkerVersionsEnvelope, type ListWorkerVersionsEnvelopeMeta, type ListWorkerVersionsParams, type ListWorkerVersionsQueryResult, ListWorkerVersionsSortBy, ListWorkerVersionsSortOrder, type ListWorkerWebhooksEnvelope, ListWorkerWebhooksEnvironment, type ListWorkerWebhooksParams, type ListWorkerWebhooksQueryResult, type ListWorkersEnvelope, type ListWorkersEnvelopeMeta, type ListWorkersParams, type ListWorkersQueryResult, ListWorkersSortBy, ListWorkersSortOrder, type Notification, type NotificationList, type NotificationWebhookList, type NotifyAdminBody, type NotifyAdminEnvelope, type NotifyAdminMutationResult, type OAuthUrl, type OutboundJob, OutboundJobEnvironment, type OutboundJobList, type OutboundJobMetadata, type OutboundJobPayload, OutboundJobStatus, type PartnerJwks, type PartnerJwksKeysItem, type PartnerLaunchEnvelope, type PartnerLaunchEnvelopeData, type PartnerLaunchMutationResult, type PartnerLaunchParams, type PostChatMessageBody, type PostChatMessageEnvelope, type PostChatMessageMutationResult, type Profile, ProfilePermissionsItem, ProfileRole, type ProfileTenant, type ProfileTenants, type PromoteToolVersionBody, type PromoteToolVersionEnvelope, type PromoteToolVersionMutationResult, type PromoteVoiceAgentVersionBody, PromoteVoiceAgentVersionBodyEnvironment, type PromoteVoiceAgentVersionEnvelope, type PromoteVoiceAgentVersionMutationResult, type PromoteWorkerVersionBody, type PromoteWorkerVersionEnvelope, type PromoteWorkerVersionMutationResult, type PromotedToolVersion, type PromotedVoiceAgentVersion, PromotedVoiceAgentVersionEnvironment, type PromotedWorkerVersion, type PublicChatAgent, type RecurrencePattern, type RecurrencePatternOutput, type RefreshTokenBody, type RefreshTokenEnvelope, type RefreshTokenMutationResult, type RemoveCaseLinkEnvelope, RemoveCaseLinkEnvironment, type RemoveCaseLinkMutationResult, type RemoveCaseLinkParams, type RemoveCaseLinkResponse, type RemoveMemberMutationResult, type ReplyToEmailBody, type ReplyToEmailBodyAttachmentsItem, type ReplyToEmailEnvelope, type ReplyToEmailMutationResult, type RequestPasswordResetBody, type RequestPasswordResetEnvelope, type RequestPasswordResetMutationResult, type RequestPasswordResetResponse, type ResendTeamInvitationEnvelope, type ResendTeamInvitationMutationResult, type ResetPasswordBody, type ResetPasswordEnvelope, type ResetPasswordMutationResult, type ResetPasswordResponse, type ResolveInformationRequestBody, type ResolveInformationRequestEnvelope, type ResolveInformationRequestMutationResult, type RevokeApiKeyEnvelope, type RevokeApiKeyMutationResult, type RevokeTeamInvitationMutationResult, type RunEvalBody, type RunEvalEnvelope, type RunEvalEnvelopeData, RunEvalEnvelopeDataConfiguration, type RunEvalEnvelopeDataGrading, type RunEvalEnvelopeDataGradingExpectationsItem, type RunEvalEnvelopeDataGradingSummary, type RunEvalEnvelopeDataMetrics, type RunEvalEnvelopeDataMetricsFixtureHealth, RunEvalEnvelopeDataStatus, type RunEvalMutationResult, type Schedule, type ScheduleAction, type ScheduleActionOutput, ScheduleEnvironmentsItem, type ScheduleJobBody, ScheduleJobBodyEnvironment, type ScheduleJobBodyMetadata, type ScheduleJobBodyPayload, type ScheduleJobEnvelope, type ScheduleJobMutationResult, type ScheduleList, type ScheduleRule, type ScheduleRuleOutput, type SearchCasesEnvelope, type SearchCasesEnvelopeMeta, type SearchCasesParams, type SearchCasesQueryResult, type Secret, type SecretList, type SendEmailBody, type SendEmailBodyAttachmentsItem, SendEmailBodyEnvironment, type SendEmailEnvelope, type SendEmailMutationResult, type SignInBody, type SignInEnvelope, type SignInMutationResult, type SignUpBody, type SignUpEnvelope, type SignUpMutationResult, type SignUpResponse, type TeamInvitation, TeamInvitationState, type TeamMember, TeamMemberRole, type TestWebhookBody, TestWebhookBodyEnvironment, type TestWebhookEnvelope, type TestWebhookMutationResult, ToolEnvironment, type ToolExecutionResult, type ToolExecutionResultError, type ToolExecutionResultTracesItem, type ToolList, type ToolVersion, type ToolVersionChangeSummary, type ToolVersionDetail, type ToolVersionDetailSchema, type ToolVersionList, type ToolVersions, type UpdateApiKeyBody, UpdateApiKeyBodyRole, type UpdateApiKeyEnvelope, type UpdateApiKeyMutationResult, type UpdateArtifactMetadataBody, type UpdateArtifactMetadataBodyMetadata, type UpdateArtifactMetadataEnvelope, type UpdateArtifactMetadataMutationResult, type UpdateCallControlsBody, type UpdateCallControlsEnvelope, type UpdateCallControlsMutationResult, type UpdateChatAgentEnvelope, type UpdateChatAgentMutationResult, type UpdateChatAgentPromptBody, type UpdateChatAgentPromptEnvelope, type UpdateChatAgentPromptMutationResult, type UpdateChatAgentRequest, type UpdateExtractorBody, type UpdateExtractorBodySchema, type UpdateExtractorEnvelope, type UpdateExtractorMutationResult, type UpdateInboxBody, type UpdateInboxBodyProcessor, UpdateInboxBodyProcessorType, type UpdateInboxEnvelope, type UpdateInboxMutationResult, type UpdateMemberRoleBody, UpdateMemberRoleBodyRole, type UpdateMemberRoleEnvelope, type UpdateMemberRoleMutationResult, type UpdateMemberRoleResponse, type UpdateScheduleBody, UpdateScheduleBodyEnvironmentsItem, type UpdateScheduleEnvelope, type UpdateScheduleMutationResult, type UpdateSecretBody, type UpdateSecretEnvelope, type UpdateSecretMutationResult, type UpdateToolBody, type UpdateToolEnvelope, type UpdateToolMutationResult, type UpdateVoiceAgentBody, UpdateVoiceAgentBodyCallProcessorType, UpdateVoiceAgentBodyNoiseCancellation, type UpdateVoiceAgentCallControlsResponse, type UpdateVoiceAgentEnvelope, type UpdateVoiceAgentModelsBody, UpdateVoiceAgentModelsBodyFallbackLlmModel, UpdateVoiceAgentModelsBodyFallbackSttModel, UpdateVoiceAgentModelsBodyFallbackTtsModel, UpdateVoiceAgentModelsBodyFallbackTtsProvider, UpdateVoiceAgentModelsBodyLanguage, UpdateVoiceAgentModelsBodyLlmModel, UpdateVoiceAgentModelsBodySttModel, UpdateVoiceAgentModelsBodyTtsModel, UpdateVoiceAgentModelsBodyTtsProvider, type UpdateVoiceAgentModelsEnvelope, type UpdateVoiceAgentModelsMutationResult, type UpdateVoiceAgentModelsResponse, type UpdateVoiceAgentMutationResult, type UpdateVoiceAgentPromptBody, type UpdateVoiceAgentPromptEnvelope, type UpdateVoiceAgentPromptMutationResult, type UpdateVoiceAgentResponse, type UpdateWebhookBody, type UpdateWebhookBodyAuth, UpdateWebhookBodyEnvironmentsItem, type UpdateWebhookEnvelope, type UpdateWebhookMutationResult, type UpdateWorkerBody, type UpdateWorkerBodySchema, type UpdateWorkerEnvelope, type UpdateWorkerMcpsBody, type UpdateWorkerMcpsEnvelope, type UpdateWorkerMcpsMutationResult, type UpdateWorkerMutationResult, type UpdateWorkerPromptBody, type UpdateWorkerPromptEnvelope, type UpdateWorkerPromptMutationResult, type UploadFileBody, type UploadFileBodyMetadata, type UploadFileBodyProcessingOptions, type UploadFileEnvelope, type UploadFileMutationResult, type UploadFileResponse, type VoiceAgent, VoiceAgentBackgroundSounds, VoiceAgentCallProcessorType, VoiceAgentDirection, VoiceAgentFallbackLlmModel, VoiceAgentFallbackSttModel, VoiceAgentFallbackTtsModel, VoiceAgentFallbackTtsProvider, VoiceAgentLanguage, type VoiceAgentList, VoiceAgentLlmModel, VoiceAgentNoiseCancellation, type VoiceAgentPlaceholders, type VoiceAgentPrompt, type VoiceAgentPromptUpdated, VoiceAgentSttModel, VoiceAgentTtsModel, VoiceAgentTtsProvider, type VoiceAgentVersion, VoiceAgentVersionActiveEnvironmentsItem, type VoiceAgentVersionChangeSummary, type VoiceAgentVersionDetail, VoiceAgentVersionDetailActiveEnvironmentsItem, VoiceAgentVersionDetailBackgroundSounds, VoiceAgentVersionDetailCallProcessorType, VoiceAgentVersionDetailDirection, VoiceAgentVersionDetailFallbackLlmModel, VoiceAgentVersionDetailFallbackSttModel, VoiceAgentVersionDetailFallbackTtsModel, VoiceAgentVersionDetailFallbackTtsProvider, VoiceAgentVersionDetailLanguage, VoiceAgentVersionDetailLlmModel, VoiceAgentVersionDetailNoiseCancellation, VoiceAgentVersionDetailSttModel, VoiceAgentVersionDetailTtsModel, VoiceAgentVersionDetailTtsProvider, type VoiceAgentVersionList, type VoiceAgentWebhookList, type VoiceAgentWithTestPhoneNumber, VoiceAgentWithTestPhoneNumberBackgroundSounds, VoiceAgentWithTestPhoneNumberCallProcessorType, VoiceAgentWithTestPhoneNumberDirection, VoiceAgentWithTestPhoneNumberFallbackLlmModel, VoiceAgentWithTestPhoneNumberFallbackSttModel, VoiceAgentWithTestPhoneNumberFallbackTtsModel, VoiceAgentWithTestPhoneNumberFallbackTtsProvider, VoiceAgentWithTestPhoneNumberLanguage, VoiceAgentWithTestPhoneNumberLlmModel, VoiceAgentWithTestPhoneNumberNoiseCancellation, VoiceAgentWithTestPhoneNumberSttModel, VoiceAgentWithTestPhoneNumberTtsModel, VoiceAgentWithTestPhoneNumberTtsProvider, type Webhook, type WebhookDelivery, type WebhookDeliveryList, WebhookEnvironmentsItem, type WebhookScope, type WebhookTestResult, type Worker, WorkerEnvironment, type WorkerExecuteToolBody, WorkerExecuteToolBodyEnvironment, type WorkerExecuteToolBodyParams, type WorkerExecuteToolEnvelope, type WorkerExecuteToolMutationResult, type WorkerGetToolEnvelope, type WorkerGetToolQueryResult, type WorkerList, type WorkerListToolsEnvelope, type WorkerListToolsParams, type WorkerListToolsQueryResult, WorkerListToolsSortBy, WorkerListToolsSortOrder, type WorkerMcp, WorkerMcpName, type WorkerMcpOutput, WorkerMcpOutputName, type WorkerModel, type WorkerModelList, type WorkerNotifyAdminResult, WorkerPermission, type WorkerPrompt, type WorkerPromptUpdated, type WorkerRun, type WorkerRunCreated, WorkerRunCreatedEnvironment, type WorkerRunCreatedScope, WorkerRunCreatedStatus, WorkerRunEnvironment, type WorkerRunList, type WorkerRunMessage, type WorkerRunMessageList, type WorkerRunMessageMessage, type WorkerRunScope, WorkerRunStatus, type WorkerSchema, type WorkerSummary, type WorkerVersion, type WorkerVersionChangeSummary, type WorkerVersionDetail, type WorkerVersionDetailSchema, type WorkerVersionList, type WorkerVersions, type WorkerWebhookList, addCaseLinks, cancelJob, cancelWorkerRun, checkInboxAvailability, configure, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, createCase, createChat, createChatAgent, createEvalBenchmark, createExtractor, createExtractorJob, createExtractorWebhook, createInbox, createInboxWebhook, createInformationRequest, createNotificationWebhook, createSchedule, createSecret, createTool, createVoiceAgent, createWorker, createWorkerEvalFromRun, createWorkerRun, createWorkerWebhook, deleteArtifact, deleteCallFeedback, deleteCase, deleteChatAgent, deleteEmail, deleteExtractor, deleteInbox, deleteSchedule, deleteSecret, deleteTool, deleteVoiceAgent, deleteWebhook, deleteWorker, executeCode, generateCodeChallenge, generateCodeVerifier, getAddCaseLinksMutationFetcher, getAddCaseLinksMutationKey, getAddCaseLinksUrl, getAnalyticsTimeSeries, getArtifact, getArtifactMetadataKeys, getArtifactStatusSummary, getArtifactUploadUrl, getBenchmark, getCall, getCallAnalytics, getCallEvaluation, getCancelJobMutationFetcher, getCancelJobMutationKey, getCancelJobUrl, getCancelWorkerRunMutationFetcher, getCancelWorkerRunMutationKey, getCancelWorkerRunUrl, getCase, getChat, getChatAgent, getChatAgentPrompt, getCheckInboxAvailabilityKey, getCheckInboxAvailabilityUrl, getConfig, getCreateAgentWebhookMutationFetcher, getCreateAgentWebhookMutationKey, getCreateAgentWebhookUrl, getCreateApiKeyMutationFetcher, getCreateApiKeyMutationKey, getCreateApiKeyUrl, getCreateArtifactMutationFetcher, getCreateArtifactMutationKey, getCreateArtifactUrl, getCreateCallFeedbackMutationFetcher, getCreateCallFeedbackMutationKey, getCreateCallFeedbackUrl, getCreateCaseMutationFetcher, getCreateCaseMutationKey, getCreateCaseUrl, getCreateChatAgentMutationFetcher, getCreateChatAgentMutationKey, getCreateChatAgentUrl, getCreateChatMutationFetcher, getCreateChatMutationKey, getCreateChatUrl, getCreateEvalBenchmarkMutationFetcher, getCreateEvalBenchmarkMutationKey, getCreateEvalBenchmarkUrl, getCreateExtractorJobMutationFetcher, getCreateExtractorJobMutationKey, getCreateExtractorJobUrl, getCreateExtractorMutationFetcher, getCreateExtractorMutationKey, getCreateExtractorUrl, getCreateExtractorWebhookMutationFetcher, getCreateExtractorWebhookMutationKey, getCreateExtractorWebhookUrl, getCreateInboxMutationFetcher, getCreateInboxMutationKey, getCreateInboxUrl, getCreateInboxWebhookMutationFetcher, getCreateInboxWebhookMutationKey, getCreateInboxWebhookUrl, getCreateInformationRequestMutationFetcher, getCreateInformationRequestMutationKey, getCreateInformationRequestUrl, getCreateNotificationWebhookMutationFetcher, getCreateNotificationWebhookMutationKey, getCreateNotificationWebhookUrl, getCreateScheduleMutationFetcher, getCreateScheduleMutationKey, getCreateScheduleUrl, getCreateSecretMutationFetcher, getCreateSecretMutationKey, getCreateSecretUrl, getCreateToolMutationFetcher, getCreateToolMutationKey, getCreateToolUrl, getCreateVoiceAgentMutationFetcher, getCreateVoiceAgentMutationKey, getCreateVoiceAgentUrl, getCreateWorkerEvalFromRunMutationFetcher, getCreateWorkerEvalFromRunMutationKey, getCreateWorkerEvalFromRunUrl, getCreateWorkerMutationFetcher, getCreateWorkerMutationKey, getCreateWorkerRunMutationFetcher, getCreateWorkerRunMutationKey, getCreateWorkerRunUrl, getCreateWorkerUrl, getCreateWorkerWebhookMutationFetcher, getCreateWorkerWebhookMutationKey, getCreateWorkerWebhookUrl, getDeleteArtifactMutationFetcher, getDeleteArtifactMutationKey, getDeleteArtifactUrl, getDeleteCallFeedbackMutationFetcher, getDeleteCallFeedbackMutationKey, getDeleteCallFeedbackUrl, getDeleteCaseMutationFetcher, getDeleteCaseMutationKey, getDeleteCaseUrl, getDeleteChatAgentMutationFetcher, getDeleteChatAgentMutationKey, getDeleteChatAgentUrl, getDeleteEmailMutationFetcher, getDeleteEmailMutationKey, getDeleteEmailUrl, getDeleteExtractorMutationFetcher, getDeleteExtractorMutationKey, getDeleteExtractorUrl, getDeleteInboxMutationFetcher, getDeleteInboxMutationKey, getDeleteInboxUrl, getDeleteScheduleMutationFetcher, getDeleteScheduleMutationKey, getDeleteScheduleUrl, getDeleteSecretMutationFetcher, getDeleteSecretMutationKey, getDeleteSecretUrl, getDeleteToolMutationFetcher, getDeleteToolMutationKey, getDeleteToolUrl, getDeleteVoiceAgentMutationFetcher, getDeleteVoiceAgentMutationKey, getDeleteVoiceAgentUrl, getDeleteWebhookMutationFetcher, getDeleteWebhookMutationKey, getDeleteWebhookUrl, getDeleteWorkerMutationFetcher, getDeleteWorkerMutationKey, getDeleteWorkerUrl, getEmail, getEvalRun, getExecuteCodeMutationFetcher, getExecuteCodeMutationKey, getExecuteCodeUrl, getExtract, getExtractCitations, getExtractor, getExtractorJob, getGetAnalyticsTimeSeriesKey, getGetAnalyticsTimeSeriesUrl, getGetArtifactKey, getGetArtifactMetadataKeysKey, getGetArtifactMetadataKeysUrl, getGetArtifactStatusSummaryKey, getGetArtifactStatusSummaryUrl, getGetArtifactUploadUrlMutationFetcher, getGetArtifactUploadUrlMutationKey, getGetArtifactUploadUrlUrl, getGetArtifactUrl, getGetBenchmarkKey, getGetBenchmarkUrl, getGetCallAnalyticsKey, getGetCallAnalyticsUrl, getGetCallEvaluationKey, getGetCallEvaluationUrl, getGetCallKey, getGetCallUrl, getGetCaseKey, getGetCaseUrl, getGetChatAgentKey, getGetChatAgentPromptKey, getGetChatAgentPromptUrl, getGetChatAgentUrl, getGetChatKey, getGetChatUrl, getGetEmailKey, getGetEmailUrl, getGetEvalRunKey, getGetEvalRunUrl, getGetExtractCitationsKey, getGetExtractCitationsUrl, getGetExtractKey, getGetExtractUrl, getGetExtractorJobKey, getGetExtractorJobUrl, getGetExtractorKey, getGetExtractorUrl, getGetInformationRequestKey, getGetInformationRequestUrl, getGetNotificationKey, getGetNotificationUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetPartnerJwksKey, getGetPartnerJwksUrl, getGetProfileKey, getGetProfileUrl, getGetPublicChatAgentKey, getGetPublicChatAgentUrl, getGetScheduleKey, getGetScheduleUrl, getGetSecretKey, getGetSecretUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetToolVersionChangeSummaryKey, getGetToolVersionChangeSummaryUrl, getGetToolVersionKey, getGetToolVersionUrl, getGetVoiceAgentKey, getGetVoiceAgentPlaceholdersKey, getGetVoiceAgentPlaceholdersUrl, getGetVoiceAgentPromptKey, getGetVoiceAgentPromptUrl, getGetVoiceAgentUrl, getGetVoiceAgentVersionChangeSummaryKey, getGetVoiceAgentVersionChangeSummaryUrl, getGetVoiceAgentVersionKey, getGetVoiceAgentVersionUrl, getGetWebhookKey, getGetWebhookUrl, getGetWorkerKey, getGetWorkerPromptKey, getGetWorkerPromptUrl, getGetWorkerRunKey, getGetWorkerRunUrl, getGetWorkerUrl, getGetWorkerVersionChangeSummaryKey, getGetWorkerVersionChangeSummaryUrl, getGetWorkerVersionKey, getGetWorkerVersionUrl, getInformationRequest, getInviteTeamMemberMutationFetcher, getInviteTeamMemberMutationKey, getInviteTeamMemberUrl, getListAgentWebhooksKey, getListAgentWebhooksUrl, getListApiKeysKey, getListApiKeysUrl, getListArtifactsKey, getListArtifactsUrl, getListCallFeedbackKey, getListCallFeedbackUrl, getListCallsKey, getListCallsUrl, getListCaseLinksKey, getListCaseLinksUrl, getListCasesKey, getListCasesUrl, getListChatAgentsKey, getListChatAgentsUrl, getListChatMessagesKey, getListChatMessagesUrl, getListChatsKey, getListChatsUrl, getListDispatchesKey, getListDispatchesUrl, getListEmailThreadsKey, getListEmailThreadsUrl, getListEmailsKey, getListEmailsUrl, getListExtractorJobsKey, getListExtractorJobsUrl, getListExtractorsKey, getListExtractorsUrl, getListExtractsKey, getListExtractsUrl, getListInboxWebhooksKey, getListInboxWebhooksUrl, getListInboxesKey, getListInboxesUrl, getListInformationRequestsKey, getListInformationRequestsUrl, getListJobsKey, getListJobsUrl, getListNotificationWebhooksKey, getListNotificationWebhooksUrl, getListNotificationsKey, getListNotificationsUrl, getListSchedulesKey, getListSchedulesUrl, getListSecretsKey, getListSecretsUrl, getListTeamInvitationsKey, getListTeamInvitationsUrl, getListTeamMembersKey, getListTeamMembersUrl, getListToolVersionsKey, getListToolVersionsUrl, getListToolsKey, getListToolsUrl, getListVoiceAgentVersionsKey, getListVoiceAgentVersionsUrl, getListVoiceAgentsKey, getListVoiceAgentsUrl, getListWebhookDeliveriesKey, getListWebhookDeliveriesUrl, getListWebhooksKey, getListWebhooksUrl, getListWorkerModelsKey, getListWorkerModelsUrl, getListWorkerRunMessagesKey, getListWorkerRunMessagesUrl, getListWorkerRunsKey, getListWorkerRunsUrl, getListWorkerVersionsKey, getListWorkerVersionsUrl, getListWorkerWebhooksKey, getListWorkerWebhooksUrl, getListWorkersKey, getListWorkersUrl, getNotification, getNotifyAdminMutationFetcher, getNotifyAdminMutationKey, getNotifyAdminUrl, getOAuthUrl, getPartnerJwks, getPartnerLaunchMutationFetcher, getPartnerLaunchMutationKey, getPartnerLaunchUrl, getPostChatMessageMutationFetcher, getPostChatMessageMutationKey, getPostChatMessageUrl, getProfile, getPromoteToolVersionMutationFetcher, getPromoteToolVersionMutationKey, getPromoteToolVersionUrl, getPromoteVoiceAgentVersionMutationFetcher, getPromoteVoiceAgentVersionMutationKey, getPromoteVoiceAgentVersionUrl, getPromoteWorkerVersionMutationFetcher, getPromoteWorkerVersionMutationKey, getPromoteWorkerVersionUrl, getPublicChatAgent, getRefreshTokenMutationFetcher, getRefreshTokenMutationKey, getRefreshTokenUrl, getRemoveCaseLinkMutationFetcher, getRemoveCaseLinkMutationKey, getRemoveCaseLinkUrl, getRemoveMemberMutationFetcher, getRemoveMemberMutationKey, getRemoveMemberUrl, getReplyToEmailMutationFetcher, getReplyToEmailMutationKey, getReplyToEmailUrl, getRequestPasswordResetMutationFetcher, getRequestPasswordResetMutationKey, getRequestPasswordResetUrl, getResendTeamInvitationMutationFetcher, getResendTeamInvitationMutationKey, getResendTeamInvitationUrl, getResetPasswordMutationFetcher, getResetPasswordMutationKey, getResetPasswordUrl, getResolveInformationRequestMutationFetcher, getResolveInformationRequestMutationKey, getResolveInformationRequestUrl, getRevokeApiKeyMutationFetcher, getRevokeApiKeyMutationKey, getRevokeApiKeyUrl, getRevokeTeamInvitationMutationFetcher, getRevokeTeamInvitationMutationKey, getRevokeTeamInvitationUrl, getRunEvalMutationFetcher, getRunEvalMutationKey, getRunEvalUrl, getSchedule, getScheduleJobMutationFetcher, getScheduleJobMutationKey, getScheduleJobUrl, getSearchCasesKey, getSearchCasesUrl, getSecret, getSendEmailMutationFetcher, getSendEmailMutationKey, getSendEmailUrl, getSessionToken, getSignInMutationFetcher, getSignInMutationKey, getSignInUrl, getSignUpMutationFetcher, getSignUpMutationKey, getSignUpUrl, getTestWebhookMutationFetcher, getTestWebhookMutationKey, getTestWebhookUrl, getTool, getToolVersion, getToolVersionChangeSummary, getUpdateApiKeyMutationFetcher, getUpdateApiKeyMutationKey, getUpdateApiKeyUrl, getUpdateArtifactMetadataMutationFetcher, getUpdateArtifactMetadataMutationKey, getUpdateArtifactMetadataUrl, getUpdateCallControlsMutationFetcher, getUpdateCallControlsMutationKey, getUpdateCallControlsUrl, getUpdateChatAgentMutationFetcher, getUpdateChatAgentMutationKey, getUpdateChatAgentPromptMutationFetcher, getUpdateChatAgentPromptMutationKey, getUpdateChatAgentPromptUrl, getUpdateChatAgentUrl, getUpdateExtractorMutationFetcher, getUpdateExtractorMutationKey, getUpdateExtractorUrl, getUpdateInboxMutationFetcher, getUpdateInboxMutationKey, getUpdateInboxUrl, getUpdateMemberRoleMutationFetcher, getUpdateMemberRoleMutationKey, getUpdateMemberRoleUrl, getUpdateScheduleMutationFetcher, getUpdateScheduleMutationKey, getUpdateScheduleUrl, getUpdateSecretMutationFetcher, getUpdateSecretMutationKey, getUpdateSecretUrl, getUpdateToolMutationFetcher, getUpdateToolMutationKey, getUpdateToolUrl, getUpdateVoiceAgentModelsMutationFetcher, getUpdateVoiceAgentModelsMutationKey, getUpdateVoiceAgentModelsUrl, getUpdateVoiceAgentMutationFetcher, getUpdateVoiceAgentMutationKey, getUpdateVoiceAgentPromptMutationFetcher, getUpdateVoiceAgentPromptMutationKey, getUpdateVoiceAgentPromptUrl, getUpdateVoiceAgentUrl, getUpdateWebhookMutationFetcher, getUpdateWebhookMutationKey, getUpdateWebhookUrl, getUpdateWorkerMcpsMutationFetcher, getUpdateWorkerMcpsMutationKey, getUpdateWorkerMcpsUrl, getUpdateWorkerMutationFetcher, getUpdateWorkerMutationKey, getUpdateWorkerPromptMutationFetcher, getUpdateWorkerPromptMutationKey, getUpdateWorkerPromptUrl, getUpdateWorkerUrl, getUploadFileMutationFetcher, getUploadFileMutationKey, getUploadFileUrl, getVoiceAgent, getVoiceAgentPlaceholders, getVoiceAgentPrompt, getVoiceAgentVersion, getVoiceAgentVersionChangeSummary, getWebhook, getWorker, getWorkerExecuteToolMutationFetcher, getWorkerExecuteToolMutationKey, getWorkerExecuteToolUrl, getWorkerGetToolKey, getWorkerGetToolUrl, getWorkerListToolsKey, getWorkerListToolsUrl, getWorkerPrompt, getWorkerRun, getWorkerVersion, getWorkerVersionChangeSummary, inviteTeamMember, listAgentWebhooks, listApiKeys, listArtifacts, listCallFeedback, listCalls, listCaseLinks, listCases, listChatAgents, listChatMessages, listChats, listDispatches, listEmailThreads, listEmails, listExtractorJobs, listExtractors, listExtracts, listInboxWebhooks, listInboxes, listInformationRequests, listJobs, listNotificationWebhooks, listNotifications, listSchedules, listSecrets, listTeamInvitations, listTeamMembers, listToolVersions, listTools, listVoiceAgentVersions, listVoiceAgents, listWebhookDeliveries, listWebhooks, listWorkerModels, listWorkerRunMessages, listWorkerRuns, listWorkerVersions, listWorkerWebhooks, listWorkers, notifyAdmin, partnerLaunch, postChatMessage, promoteToolVersion, promoteVoiceAgentVersion, promoteWorkerVersion, refreshToken, removeCaseLink, removeMember, replyToEmail, requestPasswordReset, resendTeamInvitation, resetPassword, resolveInformationRequest, revokeApiKey, revokeTeamInvitation, runEval, scheduleJob, searchCases, sendEmail, signIn, signUp, testWebhook, updateApiKey, updateArtifactMetadata, updateCallControls, updateChatAgent, updateChatAgentPrompt, updateExtractor, updateInbox, updateMemberRole, updateSchedule, updateSecret, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateVoiceAgentPrompt, updateWebhook, updateWorker, updateWorkerMcps, updateWorkerPrompt, uploadFile, useAddCaseLinks, useCancelJob, useCancelWorkerRun, useCheckInboxAvailability, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateCase, useCreateChat, useCreateChatAgent, useCreateEvalBenchmark, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateInbox, useCreateInboxWebhook, useCreateInformationRequest, useCreateNotificationWebhook, useCreateSchedule, useCreateSecret, useCreateTool, useCreateVoiceAgent, useCreateWorker, useCreateWorkerEvalFromRun, useCreateWorkerRun, useCreateWorkerWebhook, useDeleteArtifact, useDeleteCallFeedback, useDeleteCase, useDeleteChatAgent, useDeleteEmail, useDeleteExtractor, useDeleteInbox, useDeleteSchedule, useDeleteSecret, useDeleteTool, useDeleteVoiceAgent, useDeleteWebhook, useDeleteWorker, useExecuteCode, useGetAnalyticsTimeSeries, useGetArtifact, useGetArtifactMetadataKeys, useGetArtifactStatusSummary, useGetArtifactUploadUrl, useGetBenchmark, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetCase, useGetChat, useGetChatAgent, useGetChatAgentPrompt, useGetEmail, useGetEvalRun, useGetExtract, useGetExtractCitations, useGetExtractor, useGetExtractorJob, useGetInformationRequest, useGetNotification, useGetOAuthUrl, useGetPartnerJwks, useGetProfile, useGetPublicChatAgent, useGetSchedule, useGetSecret, useGetSessionToken, useGetTool, useGetToolVersion, useGetToolVersionChangeSummary, useGetVoiceAgent, useGetVoiceAgentPlaceholders, useGetVoiceAgentPrompt, useGetVoiceAgentVersion, useGetVoiceAgentVersionChangeSummary, useGetWebhook, useGetWorker, useGetWorkerPrompt, useGetWorkerRun, useGetWorkerVersion, useGetWorkerVersionChangeSummary, useInviteTeamMember, useListAgentWebhooks, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListCaseLinks, useListCases, useListChatAgents, useListChatMessages, useListChats, useListDispatches, useListEmailThreads, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListInboxWebhooks, useListInboxes, useListInformationRequests, useListJobs, useListNotificationWebhooks, useListNotifications, useListSchedules, useListSecrets, useListTeamInvitations, useListTeamMembers, useListToolVersions, useListTools, useListVoiceAgentVersions, useListVoiceAgents, useListWebhookDeliveries, useListWebhooks, useListWorkerModels, useListWorkerRunMessages, useListWorkerRuns, useListWorkerVersions, useListWorkerWebhooks, useListWorkers, useNotifyAdmin, usePartnerLaunch, usePostChatMessage, usePromoteToolVersion, usePromoteVoiceAgentVersion, usePromoteWorkerVersion, useRefreshToken, useRemoveCaseLink, useRemoveMember, useReplyToEmail, useRequestPasswordReset, useResendTeamInvitation, useResetPassword, useResolveInformationRequest, useRevokeApiKey, useRevokeTeamInvitation, useRunEval, useScheduleJob, useSearchCases, useSendEmail, useSignIn, useSignUp, useTestWebhook, useUpdateApiKey, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateChatAgent, useUpdateChatAgentPrompt, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateSchedule, useUpdateSecret, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateVoiceAgentPrompt, useUpdateWebhook, useUpdateWorker, useUpdateWorkerMcps, useUpdateWorkerPrompt, useUploadFile, useWorkerExecuteTool, useWorkerGetTool, useWorkerListTools, workerExecuteTool, workerGetTool, workerListTools };
|
|
17282
|
+
export { type AddCaseLinksBody, type AddCaseLinksBodyEntitiesItem, AddCaseLinksBodyEntitiesItemEntityType, type AddCaseLinksEnvelope, AddCaseLinksEnvironment, type AddCaseLinksMutationResult, type AddCaseLinksParams, type AddCaseLinksResponse, type AnalyticsTimeSeries, AnalyticsTimeSeriesGranularity, AnalyticsTimeSeriesGroupBy, AnalyticsTimeSeriesMetric, type AnalyticsTimeSeriesPointsItem, type ApiKey, type ApiKeyCreated, ApiKeyCreatedRole, type ApiKeyList, ApiKeyRole, type Artifact, type ArtifactCreated, type ArtifactCreatedItem, type ArtifactDetail, type ArtifactDetailData, type ArtifactDetailDataMetadata, ArtifactDetailDataStatus, type ArtifactList, type ArtifactMetadata, type ArtifactMetadataKeys, type ArtifactMetadataKeysData, type ArtifactMetadataKeysDataValues, ArtifactStatus, type ArtifactStatusSummary, type AuthTokens, type AvallonConfig, AvallonError, type Call, type CallAnalytics, type CallAnalyticsCallsOverTimeItem, type CallAnalyticsDurationDistributionItem, type CallAnalyticsEvaluationOverTimeItem, type CallAnalyticsMetricPerformanceItem, type CallAnalyticsScoreDistributionItem, type CallAnalyticsSummary, type CallDetail, CallDetailDirection, CallDetailEnvironment, type CallDetailEvaluation, type CallDetailMetadata, CallDirection, CallEnvironment, type CallEvaluation, type CallEvaluationMetricsItem, type CallEvaluationProperty, type CallList, type CallMessage, type CallMessageMetadata, type CallMessageToolArguments, type CallMessageToolResult, type CallMetadata, type CancelJobEnvelope, type CancelJobMutationResult, type CancelWorkerRunEnvelope, type CancelWorkerRunMutationResult, type CaseDetail, type CaseLink, CaseLinkEntityType, type CaseLinkList, type CaseList, type CaseSearchResult, type CaseSummary, CaseSummaryEnvironment, type ChatAgent, type ChatAgentCreated, type ChatAgentDetail, type ChatAgentList, type ChatAgentPrompt, type ChatAgentPromptUpdated, type ChatCreated, type ChatHistory, type ChatHistoryMessagesItem, ChatHistoryMessagesItemRole, type ChatList, type ChatListItem, type ChatMessage, type ChatMessageCreated, type ChatMessageCreatedMessage, type ChatMessageCreatedMessageContentItem, type ChatMessageList, type ChatMessagePart, ChatMessageRole, type CheckInboxAvailabilityEnvelope, type CheckInboxAvailabilityParams, type CheckInboxAvailabilityQueryResult, type CodeTool, type CodeToolCreated, type CodeToolCreatedTool, type CodeToolCreatedToolSchema, type CodeToolSchema, type CodeToolSummary, type CodeToolUpdated, type ConfirmationResponse, type CreateAgentWebhookBody, CreateAgentWebhookBodyEnvironmentsItem, type CreateAgentWebhookEnvelope, type CreateAgentWebhookMutationResult, type CreateApiKeyBody, CreateApiKeyBodyEnvironment, CreateApiKeyBodyRole, type CreateApiKeyEnvelope, type CreateApiKeyMutationResult, type CreateArtifactBody, type CreateArtifactBodyMetadata, type CreateArtifactBodyProcessingOptions, type CreateArtifactEnvelope, type CreateArtifactMutationResult, type CreateCallFeedbackEnvelope, type CreateCallFeedbackMutationResult, type CreateCaseBody, CreateCaseBodyEnvironment, type CreateCaseEnvelope, type CreateCaseMutationResult, type CreateCaseResponse, type CreateChatAgentBody, type CreateChatAgentEnvelope, type CreateChatAgentMutationResult, type CreateChatBody, type CreateChatEnvelope, type CreateChatMutationResult, type CreateEvalBenchmarkBody, type CreateEvalBenchmarkEnvelope, type CreateEvalBenchmarkEnvelopeData, type CreateEvalBenchmarkEnvelopeDataRunSummary, type CreateEvalBenchmarkEnvelopeDataRunSummaryBaseline, type CreateEvalBenchmarkEnvelopeDataRunSummaryBaselineDurationSeconds, type CreateEvalBenchmarkEnvelopeDataRunSummaryBaselineFixtureMatchedRate, type CreateEvalBenchmarkEnvelopeDataRunSummaryBaselinePassRate, type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidate, type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidateDurationSeconds, type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidateFixtureMatchedRate, type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidatePassRate, type CreateEvalBenchmarkEnvelopeDataRunSummaryDelta, type CreateEvalBenchmarkEnvelopeDataRunsItem, CreateEvalBenchmarkEnvelopeDataRunsItemConfiguration, type CreateEvalBenchmarkEnvelopeDataRunsItemGrading, type CreateEvalBenchmarkEnvelopeDataRunsItemGradingExpectationsItem, type CreateEvalBenchmarkEnvelopeDataRunsItemGradingSummary, type CreateEvalBenchmarkEnvelopeDataRunsItemMetrics, type CreateEvalBenchmarkEnvelopeDataRunsItemMetricsFixtureHealth, CreateEvalBenchmarkEnvelopeDataRunsItemStatus, CreateEvalBenchmarkEnvelopeDataStatus, type CreateEvalBenchmarkMutationResult, type CreateExtractorBody, type CreateExtractorBodySchema, type CreateExtractorEnvelope, type CreateExtractorJobBody, type CreateExtractorJobBodyScope, type CreateExtractorJobEnvelope, type CreateExtractorJobMutationResult, type CreateExtractorMutationResult, type CreateExtractorWebhookBody, CreateExtractorWebhookBodyEnvironmentsItem, type CreateExtractorWebhookEnvelope, type CreateExtractorWebhookMutationResult, type CreateFeedbackRequest, type CreateInboxBody, CreateInboxBodyProcessorType, type CreateInboxEnvelope, type CreateInboxMutationResult, type CreateInboxWebhookBody, CreateInboxWebhookBodyEnvironmentsItem, type CreateInboxWebhookEnvelope, type CreateInboxWebhookMutationResult, type CreateInformationRequestBody, type CreateInformationRequestBodyMetadata, type CreateInformationRequestEnvelope, type CreateInformationRequestMutationResult, type CreateNotificationWebhookBody, CreateNotificationWebhookBodyEnvironmentsItem, type CreateNotificationWebhookEnvelope, type CreateNotificationWebhookMutationResult, type CreateScheduleBody, CreateScheduleBodyEnvironmentsItem, type CreateScheduleEnvelope, type CreateScheduleMutationResult, type CreateSecretBody, type CreateSecretEnvelope, type CreateSecretMutationResult, type CreateToolBody, type CreateToolEnvelope, type CreateToolMutationResult, type CreateVoiceAgentBody, CreateVoiceAgentBodyCallProcessorType, CreateVoiceAgentBodyDirection, CreateVoiceAgentBodyLanguage, CreateVoiceAgentBodyLlmModel, CreateVoiceAgentBodySttModel, CreateVoiceAgentBodyTtsModel, CreateVoiceAgentBodyTtsProvider, type CreateVoiceAgentEnvelope, type CreateVoiceAgentMutationResult, type CreateVoiceAgentResponse, type CreateWorkerBody, CreateWorkerBodyMcpType, type CreateWorkerEnvelope, type CreateWorkerEvalFromRunBody, type CreateWorkerEvalFromRunBodyGrader, type CreateWorkerEvalFromRunEnvelope, type CreateWorkerEvalFromRunEnvelopeData, type CreateWorkerEvalFromRunEnvelopeDataFixture, type CreateWorkerEvalFromRunEnvelopeDataFixtureScope, type CreateWorkerEvalFromRunEnvelopeDataGrader, type CreateWorkerEvalFromRunEnvelopeDataSource, CreateWorkerEvalFromRunEnvelopeDataSourceType, type CreateWorkerEvalFromRunEnvelopeDataTarget, CreateWorkerEvalFromRunEnvelopeDataTargetType, type CreateWorkerEvalFromRunEnvelopeDataToolMocksItem, type CreateWorkerEvalFromRunEnvelopeDataToolMocksItemInputSchema, type CreateWorkerEvalFromRunEnvelopeDataToolMocksItemMatch, type CreateWorkerEvalFromRunMutationResult, type CreateWorkerMutationResult, type CreateWorkerRunBody, CreateWorkerRunBodyEnvironment, type CreateWorkerRunBodyScope, type CreateWorkerRunEnvelope, type CreateWorkerRunMutationResult, type CreateWorkerWebhookBody, CreateWorkerWebhookBodyEnvironmentsItem, type CreateWorkerWebhookEnvelope, type CreateWorkerWebhookMutationResult, type DeleteArtifactEnvelope, type DeleteArtifactMutationResult, type DeleteArtifactResponse, type DeleteCallFeedbackEnvelope, type DeleteCallFeedbackMutationResult, type DeleteCaseEnvelope, DeleteCaseEnvironment, type DeleteCaseMutationResult, type DeleteCaseParams, type DeleteCaseResponse, type DeleteChatAgentEnvelope, type DeleteChatAgentMutationResult, type DeleteChatAgentResponse, type DeleteEmailEnvelope, type DeleteEmailMutationResult, type DeleteEmailResponse, type DeleteExtractorEnvelope, type DeleteExtractorMutationResult, type DeleteExtractorResponse, type DeleteInboxEnvelope, type DeleteInboxMutationResult, type DeleteInboxResponse, type DeleteScheduleEnvelope, type DeleteScheduleMutationResult, type DeleteScheduleResponse, type DeleteSecretEnvelope, type DeleteSecretMutationResult, type DeleteSecretResponse, type DeleteToolEnvelope, type DeleteToolMutationResult, type DeleteToolResponse, type DeleteVoiceAgentEnvelope, type DeleteVoiceAgentMutationResult, type DeleteVoiceAgentResponse, type DeleteWebhookEnvelope, type DeleteWebhookMutationResult, type DeleteWebhookResponse, type DeleteWorkerEnvelope, type DeleteWorkerMutationResult, type DeleteWorkerResponse, type Dispatch, DispatchEnvironment, type DispatchList, DispatchStatus, type DispatchTarget, DispatchTargetType, type DispatchTrigger, DispatchTriggerType, type Email, type EmailDetail, EmailDetailDirection, EmailDetailEnvironment, EmailDetailIgnoredReason, EmailDirection, EmailEnvironment, EmailIgnoredReason, type EmailList, type EmailReplyResult, EmailReplyResultValue, type EmailSendResult, type EmailThread, EmailThreadEnvironment, type EmailThreadList, type ErrorResponse, type ErrorResponseData, type ExecuteCodeBody, ExecuteCodeBodyEnvironment, type ExecuteCodeBodyParams, type ExecuteCodeEnvelope, type ExecuteCodeMutationResult, type Extract, type ExtractList, type ExtractProcessorScope, type ExtractSummary, type ExtractSummaryProcessorScope, type Extractor, type ExtractorCreated, type ExtractorCreatedSchema, type ExtractorJob, type ExtractorJobCreated, type ExtractorJobCreatedScope, type ExtractorJobDetail, type ExtractorJobDetailScope, type ExtractorJobList, type ExtractorJobScope, type ExtractorList, type ExtractorSchema, type ExtractorSummary, type ExtractorUpdated, type ExtractorUpdatedSchema, type ExtractorWebhookList, type Feedback, type GetAnalyticsTimeSeriesEnvelope, GetAnalyticsTimeSeriesGranularity, GetAnalyticsTimeSeriesGroupBy, GetAnalyticsTimeSeriesMetric, type GetAnalyticsTimeSeriesParams, type GetAnalyticsTimeSeriesQueryResult, type GetArtifactEnvelope, type GetArtifactMetadataKeysEnvelope, type GetArtifactMetadataKeysParams, type GetArtifactMetadataKeysQueryResult, type GetArtifactQueryResult, type GetArtifactStatusSummaryEnvelope, type GetArtifactStatusSummaryParams, type GetArtifactStatusSummaryQueryResult, type GetArtifactUploadUrlBody, type GetArtifactUploadUrlEnvelope, type GetArtifactUploadUrlEnvelopeData, type GetArtifactUploadUrlMutationResult, type GetBenchmarkEnvelope, type GetBenchmarkEnvelopeData, type GetBenchmarkEnvelopeDataRunSummary, type GetBenchmarkEnvelopeDataRunSummaryBaseline, type GetBenchmarkEnvelopeDataRunSummaryBaselineDurationSeconds, type GetBenchmarkEnvelopeDataRunSummaryBaselineFixtureMatchedRate, type GetBenchmarkEnvelopeDataRunSummaryBaselinePassRate, type GetBenchmarkEnvelopeDataRunSummaryCandidate, type GetBenchmarkEnvelopeDataRunSummaryCandidateDurationSeconds, type GetBenchmarkEnvelopeDataRunSummaryCandidateFixtureMatchedRate, type GetBenchmarkEnvelopeDataRunSummaryCandidatePassRate, type GetBenchmarkEnvelopeDataRunSummaryDelta, type GetBenchmarkEnvelopeDataRunsItem, GetBenchmarkEnvelopeDataRunsItemConfiguration, type GetBenchmarkEnvelopeDataRunsItemGrading, type GetBenchmarkEnvelopeDataRunsItemGradingExpectationsItem, type GetBenchmarkEnvelopeDataRunsItemGradingSummary, type GetBenchmarkEnvelopeDataRunsItemMetrics, type GetBenchmarkEnvelopeDataRunsItemMetricsFixtureHealth, GetBenchmarkEnvelopeDataRunsItemStatus, GetBenchmarkEnvelopeDataStatus, type GetBenchmarkQueryResult, type GetCallAnalyticsEnvelope, type GetCallAnalyticsParams, type GetCallAnalyticsQueryResult, type GetCallEnvelope, type GetCallEvaluationEnvelope, type GetCallEvaluationQueryResult, type GetCallParams, type GetCallQueryResult, type GetCaseEnvelope, GetCaseEnvironment, type GetCaseParams, type GetCaseQueryResult, type GetChatAgentEnvelope, type GetChatAgentPromptEnvelope, type GetChatAgentPromptQueryResult, type GetChatAgentQueryResult, type GetChatEnvelope, type GetChatQueryResult, type GetEmailEnvelope, type GetEmailQueryResult, type GetEvalRunEnvelope, type GetEvalRunEnvelopeData, GetEvalRunEnvelopeDataConfiguration, type GetEvalRunEnvelopeDataGrading, type GetEvalRunEnvelopeDataGradingExpectationsItem, type GetEvalRunEnvelopeDataGradingSummary, type GetEvalRunEnvelopeDataMetrics, type GetEvalRunEnvelopeDataMetricsFixtureHealth, GetEvalRunEnvelopeDataStatus, type GetEvalRunQueryResult, type GetExtractCitationsEnvelope, type GetExtractCitationsEnvelopeData, type GetExtractCitationsEnvelopeDataChunks, type GetExtractCitationsEnvelopeDataChunksBoundingBox, type GetExtractCitationsQueryResult, type GetExtractEnvelope, type GetExtractQueryResult, type GetExtractorEnvelope, type GetExtractorJobEnvelope, type GetExtractorJobQueryResult, type GetExtractorJobResponse, type GetExtractorQueryResult, type GetExtractorResponse, type GetInformationRequestEnvelope, type GetInformationRequestQueryResult, type GetNotificationEnvelope, type GetNotificationQueryResult, GetOAuthUrlCodeChallengeMethod, type GetOAuthUrlEnvelope, type GetOAuthUrlParams, GetOAuthUrlProvider, type GetOAuthUrlQueryResult, type GetPartnerJwksQueryResult, type GetProfileEnvelope, type GetProfileQueryResult, type GetPublicChatAgentEnvelope, type GetPublicChatAgentQueryResult, type GetScheduleEnvelope, type GetScheduleQueryResult, type GetSecretEnvelope, type GetSecretQueryResult, type GetSessionTokenBody, type GetSessionTokenEnvelope, type GetSessionTokenEnvelopeData, type GetSessionTokenMutationResult, type GetTenantSettingsEnvelope, type GetTenantSettingsQueryResult, type GetToolEnvelope, type GetToolQueryResult, type GetToolResponse, type GetToolVersionChangeSummaryEnvelope, type GetToolVersionChangeSummaryQueryResult, type GetToolVersionEnvelope, type GetToolVersionQueryResult, type GetVoiceAgentEnvelope, type GetVoiceAgentPlaceholdersEnvelope, type GetVoiceAgentPlaceholdersQueryResult, type GetVoiceAgentPromptEnvelope, type GetVoiceAgentPromptParams, type GetVoiceAgentPromptQueryResult, type GetVoiceAgentQueryResult, type GetVoiceAgentResponse, type GetVoiceAgentVersionChangeSummaryEnvelope, type GetVoiceAgentVersionChangeSummaryQueryResult, type GetVoiceAgentVersionEnvelope, type GetVoiceAgentVersionQueryResult, type GetWebhookEnvelope, type GetWebhookQueryResult, type GetWorkerEnvelope, type GetWorkerPromptEnvelope, type GetWorkerPromptParams, type GetWorkerPromptQueryResult, type GetWorkerQueryResult, type GetWorkerRunEnvelope, type GetWorkerRunQueryResult, type GetWorkerRunResponse, type GetWorkerVersionChangeSummaryEnvelope, type GetWorkerVersionChangeSummaryQueryResult, type GetWorkerVersionEnvelope, type GetWorkerVersionQueryResult, type Inbox, type InboxAddresses, type InboxAvailability, type InboxList, InboxProcessorType, type InboxWebhookList, type InformationRequest, InformationRequestEnvironment, type InformationRequestList, type InformationRequestMetadata, type InviteTeamMemberBody, type InviteTeamMemberEnvelope, type InviteTeamMemberMutationResult, type ListAgentWebhooksEnvelope, ListAgentWebhooksEnvironment, type ListAgentWebhooksParams, type ListAgentWebhooksQueryResult, type ListApiKeysEnvelope, ListApiKeysIncludeRevoked, type ListApiKeysParams, type ListApiKeysQueryResult, type ListArtifactsEnvelope, type ListArtifactsEnvelopeMeta, ListArtifactsEnvironment, type ListArtifactsParams, type ListArtifactsQueryResult, ListArtifactsSortBy, ListArtifactsSortOrder, ListArtifactsStatus, type ListCallFeedbackEnvelope, type ListCallFeedbackEnvelopeMeta, type ListCallFeedbackParams, type ListCallFeedbackQueryResult, ListCallFeedbackSortBy, ListCallFeedbackSortOrder, ListCallsDirection, type ListCallsEnvelope, type ListCallsEnvelopeMeta, ListCallsEnvironment, type ListCallsParams, type ListCallsQueryResult, ListCallsSortBy, ListCallsSortOrder, ListCallsStatus, ListCaseLinksEntityType, type ListCaseLinksEnvelope, type ListCaseLinksEnvelopeMeta, ListCaseLinksEnvironment, type ListCaseLinksParams, type ListCaseLinksQueryResult, ListCaseLinksSortBy, ListCaseLinksSortOrder, type ListCasesEnvelope, type ListCasesEnvelopeMeta, ListCasesEnvironment, type ListCasesParams, type ListCasesQueryResult, ListCasesSortBy, ListCasesSortOrder, type ListChatAgentsEnvelope, type ListChatAgentsEnvelopeMeta, type ListChatAgentsParams, type ListChatAgentsQueryResult, ListChatAgentsSortBy, ListChatAgentsSortOrder, type ListChatMessagesEnvelope, type ListChatMessagesEnvelopeMeta, type ListChatMessagesParams, type ListChatMessagesQueryResult, ListChatMessagesSortBy, ListChatMessagesSortOrder, type ListChatsEnvelope, type ListChatsEnvelopeMeta, ListChatsEnvironment, type ListChatsParams, type ListChatsQueryResult, ListChatsSortBy, ListChatsSortOrder, type ListDispatchesEnvelope, type ListDispatchesEnvelopeMeta, type ListDispatchesParams, type ListDispatchesQueryResult, ListDispatchesSortBy, ListDispatchesSortOrder, ListDispatchesTriggerType, type ListEmailThreadsEnvelope, type ListEmailThreadsEnvelopeMeta, ListEmailThreadsEnvironment, type ListEmailThreadsParams, type ListEmailThreadsQueryResult, ListEmailThreadsSortBy, ListEmailThreadsSortOrder, type ListEmailsEnvelope, type ListEmailsEnvelopeMeta, ListEmailsEnvironment, type ListEmailsParams, type ListEmailsQueryResult, ListEmailsSortBy, ListEmailsSortOrder, type ListExtractorJobsEnvelope, type ListExtractorJobsEnvelopeMeta, type ListExtractorJobsParams, type ListExtractorJobsQueryResult, ListExtractorJobsSortBy, ListExtractorJobsSortOrder, ListExtractorJobsStatus, type ListExtractorsEnvelope, type ListExtractorsEnvelopeMeta, type ListExtractorsParams, type ListExtractorsQueryResult, ListExtractorsSortBy, ListExtractorsSortOrder, type ListExtractsEnvelope, type ListExtractsEnvelopeMeta, ListExtractsEnvironment, type ListExtractsParams, type ListExtractsQueryResult, ListExtractsSortBy, ListExtractsSortOrder, type ListInboxWebhooksEnvelope, ListInboxWebhooksEnvironment, type ListInboxWebhooksParams, type ListInboxWebhooksQueryResult, type ListInboxesEnvelope, type ListInboxesEnvelopeMeta, type ListInboxesParams, type ListInboxesQueryResult, ListInboxesSortBy, ListInboxesSortOrder, type ListInformationRequestsEnvelope, type ListInformationRequestsEnvelopeMeta, ListInformationRequestsEnvironment, type ListInformationRequestsParams, type ListInformationRequestsQueryResult, ListInformationRequestsResolved, ListInformationRequestsSortBy, ListInformationRequestsSortOrder, type ListJobsEnvelope, type ListJobsEnvelopeMeta, type ListJobsParams, type ListJobsQueryResult, ListJobsStatusItem, type ListNotificationWebhooksEnvelope, ListNotificationWebhooksEnvironment, type ListNotificationWebhooksParams, type ListNotificationWebhooksQueryResult, type ListNotificationsEnvelope, type ListNotificationsEnvelopeMeta, type ListNotificationsParams, type ListNotificationsQueryResult, ListNotificationsSortBy, ListNotificationsSortOrder, type ListSchedulesEnvelope, type ListSchedulesEnvelopeMeta, ListSchedulesEnvironment, type ListSchedulesParams, type ListSchedulesQueryResult, ListSchedulesRuleType, ListSchedulesSortBy, ListSchedulesSortOrder, type ListSecretsEnvelope, type ListSecretsEnvelopeMeta, type ListSecretsParams, type ListSecretsQueryResult, ListSecretsSortBy, ListSecretsSortOrder, type ListTeamInvitationsEnvelope, type ListTeamInvitationsQueryResult, type ListTeamInvitationsResponse, type ListTeamMembersEnvelope, type ListTeamMembersQueryResult, type ListTeamMembersResponse, type ListToolVersionsEnvelope, type ListToolVersionsEnvelopeMeta, type ListToolVersionsParams, type ListToolVersionsQueryResult, ListToolVersionsSortBy, ListToolVersionsSortOrder, type ListToolsEnvelope, type ListToolsParams, type ListToolsQueryResult, ListToolsSortBy, ListToolsSortOrder, type ListVoiceAgentVersionsEnvelope, type ListVoiceAgentVersionsEnvelopeMeta, type ListVoiceAgentVersionsParams, type ListVoiceAgentVersionsQueryResult, ListVoiceAgentVersionsSortBy, ListVoiceAgentVersionsSortOrder, type ListVoiceAgentsEnvelope, type ListVoiceAgentsParams, type ListVoiceAgentsQueryResult, type ListWebhookDeliveriesEnvelope, type ListWebhookDeliveriesEnvelopeMeta, type ListWebhookDeliveriesParams, type ListWebhookDeliveriesQueryResult, ListWebhookDeliveriesSortOrder, type ListWebhooksEnvelope, ListWebhooksEnvironment, type ListWebhooksParams, type ListWebhooksQueryResult, type ListWorkerModelsEnvelope, type ListWorkerModelsQueryResult, type ListWorkerRunMessagesEnvelope, type ListWorkerRunMessagesParams, type ListWorkerRunMessagesQueryResult, type ListWorkerRunsEnvelope, type ListWorkerRunsEnvelopeMeta, ListWorkerRunsEnvironment, type ListWorkerRunsParams, type ListWorkerRunsQueryResult, ListWorkerRunsSortBy, ListWorkerRunsSortOrder, ListWorkerRunsStatus, type ListWorkerVersionsEnvelope, type ListWorkerVersionsEnvelopeMeta, type ListWorkerVersionsParams, type ListWorkerVersionsQueryResult, ListWorkerVersionsSortBy, ListWorkerVersionsSortOrder, type ListWorkerWebhooksEnvelope, ListWorkerWebhooksEnvironment, type ListWorkerWebhooksParams, type ListWorkerWebhooksQueryResult, type ListWorkersEnvelope, type ListWorkersEnvelopeMeta, type ListWorkersParams, type ListWorkersQueryResult, ListWorkersSortBy, ListWorkersSortOrder, type Notification, type NotificationList, type NotificationWebhookList, type NotifyAdminBody, type NotifyAdminEnvelope, type NotifyAdminMutationResult, type OAuthUrl, type OutboundJob, OutboundJobEnvironment, type OutboundJobList, type OutboundJobMetadata, type OutboundJobPayload, OutboundJobStatus, type PartnerJwks, type PartnerJwksKeysItem, type PartnerLaunchEnvelope, type PartnerLaunchEnvelopeData, type PartnerLaunchMutationResult, type PartnerLaunchParams, type PostChatMessageBody, type PostChatMessageEnvelope, type PostChatMessageMutationResult, type Profile, ProfilePermissionsItem, ProfileRole, type ProfileTenant, type ProfileTenants, type PromoteToolVersionBody, type PromoteToolVersionEnvelope, type PromoteToolVersionMutationResult, type PromoteVoiceAgentVersionBody, PromoteVoiceAgentVersionBodyEnvironment, type PromoteVoiceAgentVersionEnvelope, type PromoteVoiceAgentVersionMutationResult, type PromoteWorkerVersionBody, type PromoteWorkerVersionEnvelope, type PromoteWorkerVersionMutationResult, type PromotedToolVersion, type PromotedVoiceAgentVersion, PromotedVoiceAgentVersionEnvironment, type PromotedWorkerVersion, type PublicChatAgent, type RecurrencePattern, type RecurrencePatternOutput, type RefreshTokenBody, type RefreshTokenEnvelope, type RefreshTokenMutationResult, type RemoveCaseLinkEnvelope, RemoveCaseLinkEnvironment, type RemoveCaseLinkMutationResult, type RemoveCaseLinkParams, type RemoveCaseLinkResponse, type RemoveMemberMutationResult, type ReplyToEmailBody, type ReplyToEmailBodyAttachmentsItem, type ReplyToEmailEnvelope, type ReplyToEmailMutationResult, type RequestPasswordResetBody, type RequestPasswordResetEnvelope, type RequestPasswordResetMutationResult, type RequestPasswordResetResponse, type ResendTeamInvitationEnvelope, type ResendTeamInvitationMutationResult, type ResetPasswordBody, type ResetPasswordEnvelope, type ResetPasswordMutationResult, type ResetPasswordResponse, type ResolveInformationRequestBody, type ResolveInformationRequestEnvelope, type ResolveInformationRequestMutationResult, type RevokeApiKeyEnvelope, type RevokeApiKeyMutationResult, type RevokeTeamInvitationMutationResult, type RunEvalBody, type RunEvalEnvelope, type RunEvalEnvelopeData, RunEvalEnvelopeDataConfiguration, type RunEvalEnvelopeDataGrading, type RunEvalEnvelopeDataGradingExpectationsItem, type RunEvalEnvelopeDataGradingSummary, type RunEvalEnvelopeDataMetrics, type RunEvalEnvelopeDataMetricsFixtureHealth, RunEvalEnvelopeDataStatus, type RunEvalMutationResult, type Schedule, type ScheduleAction, type ScheduleActionOutput, ScheduleEnvironmentsItem, type ScheduleJobBody, ScheduleJobBodyEnvironment, type ScheduleJobBodyMetadata, type ScheduleJobBodyPayload, type ScheduleJobEnvelope, type ScheduleJobMutationResult, type ScheduleList, type ScheduleRule, type ScheduleRuleOutput, type SearchCasesEnvelope, type SearchCasesEnvelopeMeta, type SearchCasesParams, type SearchCasesQueryResult, type Secret, type SecretList, type SendEmailBody, type SendEmailBodyAttachmentsItem, SendEmailBodyEnvironment, type SendEmailEnvelope, type SendEmailMutationResult, type SignInBody, type SignInEnvelope, type SignInMutationResult, type SignUpBody, type SignUpEnvelope, type SignUpMutationResult, type SignUpResponse, type TeamInvitation, TeamInvitationState, type TeamMember, TeamMemberRole, type TenantSettings, type TestWebhookBody, TestWebhookBodyEnvironment, type TestWebhookEnvelope, type TestWebhookMutationResult, ToolEnvironment, type ToolExecutionResult, type ToolExecutionResultError, type ToolExecutionResultTracesItem, type ToolList, type ToolVersion, type ToolVersionChangeSummary, type ToolVersionDetail, type ToolVersionDetailSchema, type ToolVersionList, type ToolVersions, type UpdateApiKeyBody, UpdateApiKeyBodyRole, type UpdateApiKeyEnvelope, type UpdateApiKeyMutationResult, type UpdateArtifactMetadataBody, type UpdateArtifactMetadataBodyMetadata, type UpdateArtifactMetadataEnvelope, type UpdateArtifactMetadataMutationResult, type UpdateCallControlsBody, type UpdateCallControlsEnvelope, type UpdateCallControlsMutationResult, type UpdateChatAgentEnvelope, type UpdateChatAgentMutationResult, type UpdateChatAgentPromptBody, type UpdateChatAgentPromptEnvelope, type UpdateChatAgentPromptMutationResult, type UpdateChatAgentRequest, type UpdateExtractorBody, type UpdateExtractorBodySchema, type UpdateExtractorEnvelope, type UpdateExtractorMutationResult, type UpdateInboxBody, type UpdateInboxBodyProcessor, UpdateInboxBodyProcessorType, type UpdateInboxEnvelope, type UpdateInboxMutationResult, type UpdateMemberRoleBody, UpdateMemberRoleBodyRole, type UpdateMemberRoleEnvelope, type UpdateMemberRoleMutationResult, type UpdateMemberRoleResponse, type UpdateScheduleBody, UpdateScheduleBodyEnvironmentsItem, type UpdateScheduleEnvelope, type UpdateScheduleMutationResult, type UpdateSecretBody, type UpdateSecretEnvelope, type UpdateSecretMutationResult, type UpdateTenantSettingsBody, type UpdateTenantSettingsEnvelope, type UpdateTenantSettingsMutationResult, type UpdateToolBody, type UpdateToolEnvelope, type UpdateToolMutationResult, type UpdateVoiceAgentBody, UpdateVoiceAgentBodyCallProcessorType, UpdateVoiceAgentBodyNoiseCancellation, type UpdateVoiceAgentCallControlsResponse, type UpdateVoiceAgentEnvelope, type UpdateVoiceAgentModelsBody, UpdateVoiceAgentModelsBodyFallbackLlmModel, UpdateVoiceAgentModelsBodyFallbackSttModel, UpdateVoiceAgentModelsBodyFallbackTtsModel, UpdateVoiceAgentModelsBodyFallbackTtsProvider, UpdateVoiceAgentModelsBodyLanguage, UpdateVoiceAgentModelsBodyLlmModel, UpdateVoiceAgentModelsBodySttModel, UpdateVoiceAgentModelsBodyTtsModel, UpdateVoiceAgentModelsBodyTtsProvider, type UpdateVoiceAgentModelsEnvelope, type UpdateVoiceAgentModelsMutationResult, type UpdateVoiceAgentModelsResponse, type UpdateVoiceAgentMutationResult, type UpdateVoiceAgentPromptBody, type UpdateVoiceAgentPromptEnvelope, type UpdateVoiceAgentPromptMutationResult, type UpdateVoiceAgentResponse, type UpdateWebhookBody, type UpdateWebhookBodyAuth, UpdateWebhookBodyEnvironmentsItem, type UpdateWebhookEnvelope, type UpdateWebhookMutationResult, type UpdateWorkerBody, type UpdateWorkerBodySchema, type UpdateWorkerEnvelope, type UpdateWorkerMcpsBody, type UpdateWorkerMcpsEnvelope, type UpdateWorkerMcpsMutationResult, type UpdateWorkerMutationResult, type UpdateWorkerPromptBody, type UpdateWorkerPromptEnvelope, type UpdateWorkerPromptMutationResult, type UploadFileBody, type UploadFileBodyMetadata, type UploadFileBodyProcessingOptions, type UploadFileEnvelope, type UploadFileMutationResult, type UploadFileResponse, type VoiceAgent, VoiceAgentBackgroundSounds, VoiceAgentCallProcessorType, VoiceAgentDirection, VoiceAgentFallbackLlmModel, VoiceAgentFallbackSttModel, VoiceAgentFallbackTtsModel, VoiceAgentFallbackTtsProvider, VoiceAgentLanguage, type VoiceAgentList, VoiceAgentLlmModel, VoiceAgentNoiseCancellation, type VoiceAgentPlaceholders, type VoiceAgentPrompt, type VoiceAgentPromptUpdated, VoiceAgentSttModel, VoiceAgentTtsModel, VoiceAgentTtsProvider, type VoiceAgentVersion, VoiceAgentVersionActiveEnvironmentsItem, type VoiceAgentVersionChangeSummary, type VoiceAgentVersionDetail, VoiceAgentVersionDetailActiveEnvironmentsItem, VoiceAgentVersionDetailBackgroundSounds, VoiceAgentVersionDetailCallProcessorType, VoiceAgentVersionDetailDirection, VoiceAgentVersionDetailFallbackLlmModel, VoiceAgentVersionDetailFallbackSttModel, VoiceAgentVersionDetailFallbackTtsModel, VoiceAgentVersionDetailFallbackTtsProvider, VoiceAgentVersionDetailLanguage, VoiceAgentVersionDetailLlmModel, VoiceAgentVersionDetailNoiseCancellation, VoiceAgentVersionDetailSttModel, VoiceAgentVersionDetailTtsModel, VoiceAgentVersionDetailTtsProvider, type VoiceAgentVersionList, type VoiceAgentWebhookList, type VoiceAgentWithTestPhoneNumber, VoiceAgentWithTestPhoneNumberBackgroundSounds, VoiceAgentWithTestPhoneNumberCallProcessorType, VoiceAgentWithTestPhoneNumberDirection, VoiceAgentWithTestPhoneNumberFallbackLlmModel, VoiceAgentWithTestPhoneNumberFallbackSttModel, VoiceAgentWithTestPhoneNumberFallbackTtsModel, VoiceAgentWithTestPhoneNumberFallbackTtsProvider, VoiceAgentWithTestPhoneNumberLanguage, VoiceAgentWithTestPhoneNumberLlmModel, VoiceAgentWithTestPhoneNumberNoiseCancellation, VoiceAgentWithTestPhoneNumberSttModel, VoiceAgentWithTestPhoneNumberTtsModel, VoiceAgentWithTestPhoneNumberTtsProvider, type Webhook, type WebhookDelivery, type WebhookDeliveryList, WebhookEnvironmentsItem, type WebhookScope, type WebhookTestResult, type Worker, WorkerEnvironment, type WorkerExecuteToolBody, WorkerExecuteToolBodyEnvironment, type WorkerExecuteToolBodyParams, type WorkerExecuteToolEnvelope, type WorkerExecuteToolMutationResult, type WorkerGetToolEnvelope, type WorkerGetToolQueryResult, type WorkerList, type WorkerListToolsEnvelope, type WorkerListToolsParams, type WorkerListToolsQueryResult, WorkerListToolsSortBy, WorkerListToolsSortOrder, type WorkerMcp, WorkerMcpName, type WorkerMcpOutput, WorkerMcpOutputName, type WorkerModel, type WorkerModelList, type WorkerNotifyAdminResult, WorkerPermission, type WorkerPrompt, type WorkerPromptUpdated, type WorkerRun, type WorkerRunCreated, WorkerRunCreatedEnvironment, type WorkerRunCreatedScope, WorkerRunCreatedStatus, WorkerRunEnvironment, type WorkerRunList, type WorkerRunMessage, type WorkerRunMessageList, type WorkerRunMessageMessage, type WorkerRunScope, WorkerRunStatus, type WorkerSchema, type WorkerSummary, type WorkerVersion, type WorkerVersionChangeSummary, type WorkerVersionDetail, type WorkerVersionDetailSchema, type WorkerVersionList, type WorkerVersions, type WorkerWebhookList, addCaseLinks, cancelJob, cancelWorkerRun, checkInboxAvailability, configure, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, createCase, createChat, createChatAgent, createEvalBenchmark, createExtractor, createExtractorJob, createExtractorWebhook, createInbox, createInboxWebhook, createInformationRequest, createNotificationWebhook, createSchedule, createSecret, createTool, createVoiceAgent, createWorker, createWorkerEvalFromRun, createWorkerRun, createWorkerWebhook, deleteArtifact, deleteCallFeedback, deleteCase, deleteChatAgent, deleteEmail, deleteExtractor, deleteInbox, deleteSchedule, deleteSecret, deleteTool, deleteVoiceAgent, deleteWebhook, deleteWorker, executeCode, generateCodeChallenge, generateCodeVerifier, getAddCaseLinksMutationFetcher, getAddCaseLinksMutationKey, getAddCaseLinksUrl, getAnalyticsTimeSeries, getArtifact, getArtifactMetadataKeys, getArtifactStatusSummary, getArtifactUploadUrl, getBenchmark, getCall, getCallAnalytics, getCallEvaluation, getCancelJobMutationFetcher, getCancelJobMutationKey, getCancelJobUrl, getCancelWorkerRunMutationFetcher, getCancelWorkerRunMutationKey, getCancelWorkerRunUrl, getCase, getChat, getChatAgent, getChatAgentPrompt, getCheckInboxAvailabilityKey, getCheckInboxAvailabilityUrl, getConfig, getCreateAgentWebhookMutationFetcher, getCreateAgentWebhookMutationKey, getCreateAgentWebhookUrl, getCreateApiKeyMutationFetcher, getCreateApiKeyMutationKey, getCreateApiKeyUrl, getCreateArtifactMutationFetcher, getCreateArtifactMutationKey, getCreateArtifactUrl, getCreateCallFeedbackMutationFetcher, getCreateCallFeedbackMutationKey, getCreateCallFeedbackUrl, getCreateCaseMutationFetcher, getCreateCaseMutationKey, getCreateCaseUrl, getCreateChatAgentMutationFetcher, getCreateChatAgentMutationKey, getCreateChatAgentUrl, getCreateChatMutationFetcher, getCreateChatMutationKey, getCreateChatUrl, getCreateEvalBenchmarkMutationFetcher, getCreateEvalBenchmarkMutationKey, getCreateEvalBenchmarkUrl, getCreateExtractorJobMutationFetcher, getCreateExtractorJobMutationKey, getCreateExtractorJobUrl, getCreateExtractorMutationFetcher, getCreateExtractorMutationKey, getCreateExtractorUrl, getCreateExtractorWebhookMutationFetcher, getCreateExtractorWebhookMutationKey, getCreateExtractorWebhookUrl, getCreateInboxMutationFetcher, getCreateInboxMutationKey, getCreateInboxUrl, getCreateInboxWebhookMutationFetcher, getCreateInboxWebhookMutationKey, getCreateInboxWebhookUrl, getCreateInformationRequestMutationFetcher, getCreateInformationRequestMutationKey, getCreateInformationRequestUrl, getCreateNotificationWebhookMutationFetcher, getCreateNotificationWebhookMutationKey, getCreateNotificationWebhookUrl, getCreateScheduleMutationFetcher, getCreateScheduleMutationKey, getCreateScheduleUrl, getCreateSecretMutationFetcher, getCreateSecretMutationKey, getCreateSecretUrl, getCreateToolMutationFetcher, getCreateToolMutationKey, getCreateToolUrl, getCreateVoiceAgentMutationFetcher, getCreateVoiceAgentMutationKey, getCreateVoiceAgentUrl, getCreateWorkerEvalFromRunMutationFetcher, getCreateWorkerEvalFromRunMutationKey, getCreateWorkerEvalFromRunUrl, getCreateWorkerMutationFetcher, getCreateWorkerMutationKey, getCreateWorkerRunMutationFetcher, getCreateWorkerRunMutationKey, getCreateWorkerRunUrl, getCreateWorkerUrl, getCreateWorkerWebhookMutationFetcher, getCreateWorkerWebhookMutationKey, getCreateWorkerWebhookUrl, getDeleteArtifactMutationFetcher, getDeleteArtifactMutationKey, getDeleteArtifactUrl, getDeleteCallFeedbackMutationFetcher, getDeleteCallFeedbackMutationKey, getDeleteCallFeedbackUrl, getDeleteCaseMutationFetcher, getDeleteCaseMutationKey, getDeleteCaseUrl, getDeleteChatAgentMutationFetcher, getDeleteChatAgentMutationKey, getDeleteChatAgentUrl, getDeleteEmailMutationFetcher, getDeleteEmailMutationKey, getDeleteEmailUrl, getDeleteExtractorMutationFetcher, getDeleteExtractorMutationKey, getDeleteExtractorUrl, getDeleteInboxMutationFetcher, getDeleteInboxMutationKey, getDeleteInboxUrl, getDeleteScheduleMutationFetcher, getDeleteScheduleMutationKey, getDeleteScheduleUrl, getDeleteSecretMutationFetcher, getDeleteSecretMutationKey, getDeleteSecretUrl, getDeleteToolMutationFetcher, getDeleteToolMutationKey, getDeleteToolUrl, getDeleteVoiceAgentMutationFetcher, getDeleteVoiceAgentMutationKey, getDeleteVoiceAgentUrl, getDeleteWebhookMutationFetcher, getDeleteWebhookMutationKey, getDeleteWebhookUrl, getDeleteWorkerMutationFetcher, getDeleteWorkerMutationKey, getDeleteWorkerUrl, getEmail, getEvalRun, getExecuteCodeMutationFetcher, getExecuteCodeMutationKey, getExecuteCodeUrl, getExtract, getExtractCitations, getExtractor, getExtractorJob, getGetAnalyticsTimeSeriesKey, getGetAnalyticsTimeSeriesUrl, getGetArtifactKey, getGetArtifactMetadataKeysKey, getGetArtifactMetadataKeysUrl, getGetArtifactStatusSummaryKey, getGetArtifactStatusSummaryUrl, getGetArtifactUploadUrlMutationFetcher, getGetArtifactUploadUrlMutationKey, getGetArtifactUploadUrlUrl, getGetArtifactUrl, getGetBenchmarkKey, getGetBenchmarkUrl, getGetCallAnalyticsKey, getGetCallAnalyticsUrl, getGetCallEvaluationKey, getGetCallEvaluationUrl, getGetCallKey, getGetCallUrl, getGetCaseKey, getGetCaseUrl, getGetChatAgentKey, getGetChatAgentPromptKey, getGetChatAgentPromptUrl, getGetChatAgentUrl, getGetChatKey, getGetChatUrl, getGetEmailKey, getGetEmailUrl, getGetEvalRunKey, getGetEvalRunUrl, getGetExtractCitationsKey, getGetExtractCitationsUrl, getGetExtractKey, getGetExtractUrl, getGetExtractorJobKey, getGetExtractorJobUrl, getGetExtractorKey, getGetExtractorUrl, getGetInformationRequestKey, getGetInformationRequestUrl, getGetNotificationKey, getGetNotificationUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetPartnerJwksKey, getGetPartnerJwksUrl, getGetProfileKey, getGetProfileUrl, getGetPublicChatAgentKey, getGetPublicChatAgentUrl, getGetScheduleKey, getGetScheduleUrl, getGetSecretKey, getGetSecretUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetTenantSettingsKey, getGetTenantSettingsUrl, getGetToolKey, getGetToolUrl, getGetToolVersionChangeSummaryKey, getGetToolVersionChangeSummaryUrl, getGetToolVersionKey, getGetToolVersionUrl, getGetVoiceAgentKey, getGetVoiceAgentPlaceholdersKey, getGetVoiceAgentPlaceholdersUrl, getGetVoiceAgentPromptKey, getGetVoiceAgentPromptUrl, getGetVoiceAgentUrl, getGetVoiceAgentVersionChangeSummaryKey, getGetVoiceAgentVersionChangeSummaryUrl, getGetVoiceAgentVersionKey, getGetVoiceAgentVersionUrl, getGetWebhookKey, getGetWebhookUrl, getGetWorkerKey, getGetWorkerPromptKey, getGetWorkerPromptUrl, getGetWorkerRunKey, getGetWorkerRunUrl, getGetWorkerUrl, getGetWorkerVersionChangeSummaryKey, getGetWorkerVersionChangeSummaryUrl, getGetWorkerVersionKey, getGetWorkerVersionUrl, getInformationRequest, getInviteTeamMemberMutationFetcher, getInviteTeamMemberMutationKey, getInviteTeamMemberUrl, getListAgentWebhooksKey, getListAgentWebhooksUrl, getListApiKeysKey, getListApiKeysUrl, getListArtifactsKey, getListArtifactsUrl, getListCallFeedbackKey, getListCallFeedbackUrl, getListCallsKey, getListCallsUrl, getListCaseLinksKey, getListCaseLinksUrl, getListCasesKey, getListCasesUrl, getListChatAgentsKey, getListChatAgentsUrl, getListChatMessagesKey, getListChatMessagesUrl, getListChatsKey, getListChatsUrl, getListDispatchesKey, getListDispatchesUrl, getListEmailThreadsKey, getListEmailThreadsUrl, getListEmailsKey, getListEmailsUrl, getListExtractorJobsKey, getListExtractorJobsUrl, getListExtractorsKey, getListExtractorsUrl, getListExtractsKey, getListExtractsUrl, getListInboxWebhooksKey, getListInboxWebhooksUrl, getListInboxesKey, getListInboxesUrl, getListInformationRequestsKey, getListInformationRequestsUrl, getListJobsKey, getListJobsUrl, getListNotificationWebhooksKey, getListNotificationWebhooksUrl, getListNotificationsKey, getListNotificationsUrl, getListSchedulesKey, getListSchedulesUrl, getListSecretsKey, getListSecretsUrl, getListTeamInvitationsKey, getListTeamInvitationsUrl, getListTeamMembersKey, getListTeamMembersUrl, getListToolVersionsKey, getListToolVersionsUrl, getListToolsKey, getListToolsUrl, getListVoiceAgentVersionsKey, getListVoiceAgentVersionsUrl, getListVoiceAgentsKey, getListVoiceAgentsUrl, getListWebhookDeliveriesKey, getListWebhookDeliveriesUrl, getListWebhooksKey, getListWebhooksUrl, getListWorkerModelsKey, getListWorkerModelsUrl, getListWorkerRunMessagesKey, getListWorkerRunMessagesUrl, getListWorkerRunsKey, getListWorkerRunsUrl, getListWorkerVersionsKey, getListWorkerVersionsUrl, getListWorkerWebhooksKey, getListWorkerWebhooksUrl, getListWorkersKey, getListWorkersUrl, getNotification, getNotifyAdminMutationFetcher, getNotifyAdminMutationKey, getNotifyAdminUrl, getOAuthUrl, getPartnerJwks, getPartnerLaunchMutationFetcher, getPartnerLaunchMutationKey, getPartnerLaunchUrl, getPostChatMessageMutationFetcher, getPostChatMessageMutationKey, getPostChatMessageUrl, getProfile, getPromoteToolVersionMutationFetcher, getPromoteToolVersionMutationKey, getPromoteToolVersionUrl, getPromoteVoiceAgentVersionMutationFetcher, getPromoteVoiceAgentVersionMutationKey, getPromoteVoiceAgentVersionUrl, getPromoteWorkerVersionMutationFetcher, getPromoteWorkerVersionMutationKey, getPromoteWorkerVersionUrl, getPublicChatAgent, getRefreshTokenMutationFetcher, getRefreshTokenMutationKey, getRefreshTokenUrl, getRemoveCaseLinkMutationFetcher, getRemoveCaseLinkMutationKey, getRemoveCaseLinkUrl, getRemoveMemberMutationFetcher, getRemoveMemberMutationKey, getRemoveMemberUrl, getReplyToEmailMutationFetcher, getReplyToEmailMutationKey, getReplyToEmailUrl, getRequestPasswordResetMutationFetcher, getRequestPasswordResetMutationKey, getRequestPasswordResetUrl, getResendTeamInvitationMutationFetcher, getResendTeamInvitationMutationKey, getResendTeamInvitationUrl, getResetPasswordMutationFetcher, getResetPasswordMutationKey, getResetPasswordUrl, getResolveInformationRequestMutationFetcher, getResolveInformationRequestMutationKey, getResolveInformationRequestUrl, getRevokeApiKeyMutationFetcher, getRevokeApiKeyMutationKey, getRevokeApiKeyUrl, getRevokeTeamInvitationMutationFetcher, getRevokeTeamInvitationMutationKey, getRevokeTeamInvitationUrl, getRunEvalMutationFetcher, getRunEvalMutationKey, getRunEvalUrl, getSchedule, getScheduleJobMutationFetcher, getScheduleJobMutationKey, getScheduleJobUrl, getSearchCasesKey, getSearchCasesUrl, getSecret, getSendEmailMutationFetcher, getSendEmailMutationKey, getSendEmailUrl, getSessionToken, getSignInMutationFetcher, getSignInMutationKey, getSignInUrl, getSignUpMutationFetcher, getSignUpMutationKey, getSignUpUrl, getTenantSettings, getTestWebhookMutationFetcher, getTestWebhookMutationKey, getTestWebhookUrl, getTool, getToolVersion, getToolVersionChangeSummary, getUpdateApiKeyMutationFetcher, getUpdateApiKeyMutationKey, getUpdateApiKeyUrl, getUpdateArtifactMetadataMutationFetcher, getUpdateArtifactMetadataMutationKey, getUpdateArtifactMetadataUrl, getUpdateCallControlsMutationFetcher, getUpdateCallControlsMutationKey, getUpdateCallControlsUrl, getUpdateChatAgentMutationFetcher, getUpdateChatAgentMutationKey, getUpdateChatAgentPromptMutationFetcher, getUpdateChatAgentPromptMutationKey, getUpdateChatAgentPromptUrl, getUpdateChatAgentUrl, getUpdateExtractorMutationFetcher, getUpdateExtractorMutationKey, getUpdateExtractorUrl, getUpdateInboxMutationFetcher, getUpdateInboxMutationKey, getUpdateInboxUrl, getUpdateMemberRoleMutationFetcher, getUpdateMemberRoleMutationKey, getUpdateMemberRoleUrl, getUpdateScheduleMutationFetcher, getUpdateScheduleMutationKey, getUpdateScheduleUrl, getUpdateSecretMutationFetcher, getUpdateSecretMutationKey, getUpdateSecretUrl, getUpdateTenantSettingsMutationFetcher, getUpdateTenantSettingsMutationKey, getUpdateTenantSettingsUrl, getUpdateToolMutationFetcher, getUpdateToolMutationKey, getUpdateToolUrl, getUpdateVoiceAgentModelsMutationFetcher, getUpdateVoiceAgentModelsMutationKey, getUpdateVoiceAgentModelsUrl, getUpdateVoiceAgentMutationFetcher, getUpdateVoiceAgentMutationKey, getUpdateVoiceAgentPromptMutationFetcher, getUpdateVoiceAgentPromptMutationKey, getUpdateVoiceAgentPromptUrl, getUpdateVoiceAgentUrl, getUpdateWebhookMutationFetcher, getUpdateWebhookMutationKey, getUpdateWebhookUrl, getUpdateWorkerMcpsMutationFetcher, getUpdateWorkerMcpsMutationKey, getUpdateWorkerMcpsUrl, getUpdateWorkerMutationFetcher, getUpdateWorkerMutationKey, getUpdateWorkerPromptMutationFetcher, getUpdateWorkerPromptMutationKey, getUpdateWorkerPromptUrl, getUpdateWorkerUrl, getUploadFileMutationFetcher, getUploadFileMutationKey, getUploadFileUrl, getVoiceAgent, getVoiceAgentPlaceholders, getVoiceAgentPrompt, getVoiceAgentVersion, getVoiceAgentVersionChangeSummary, getWebhook, getWorker, getWorkerExecuteToolMutationFetcher, getWorkerExecuteToolMutationKey, getWorkerExecuteToolUrl, getWorkerGetToolKey, getWorkerGetToolUrl, getWorkerListToolsKey, getWorkerListToolsUrl, getWorkerPrompt, getWorkerRun, getWorkerVersion, getWorkerVersionChangeSummary, inviteTeamMember, listAgentWebhooks, listApiKeys, listArtifacts, listCallFeedback, listCalls, listCaseLinks, listCases, listChatAgents, listChatMessages, listChats, listDispatches, listEmailThreads, listEmails, listExtractorJobs, listExtractors, listExtracts, listInboxWebhooks, listInboxes, listInformationRequests, listJobs, listNotificationWebhooks, listNotifications, listSchedules, listSecrets, listTeamInvitations, listTeamMembers, listToolVersions, listTools, listVoiceAgentVersions, listVoiceAgents, listWebhookDeliveries, listWebhooks, listWorkerModels, listWorkerRunMessages, listWorkerRuns, listWorkerVersions, listWorkerWebhooks, listWorkers, notifyAdmin, partnerLaunch, postChatMessage, promoteToolVersion, promoteVoiceAgentVersion, promoteWorkerVersion, refreshToken, removeCaseLink, removeMember, replyToEmail, requestPasswordReset, resendTeamInvitation, resetPassword, resolveInformationRequest, revokeApiKey, revokeTeamInvitation, runEval, scheduleJob, searchCases, sendEmail, signIn, signUp, testWebhook, updateApiKey, updateArtifactMetadata, updateCallControls, updateChatAgent, updateChatAgentPrompt, updateExtractor, updateInbox, updateMemberRole, updateSchedule, updateSecret, updateTenantSettings, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateVoiceAgentPrompt, updateWebhook, updateWorker, updateWorkerMcps, updateWorkerPrompt, uploadFile, useAddCaseLinks, useCancelJob, useCancelWorkerRun, useCheckInboxAvailability, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateCase, useCreateChat, useCreateChatAgent, useCreateEvalBenchmark, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateInbox, useCreateInboxWebhook, useCreateInformationRequest, useCreateNotificationWebhook, useCreateSchedule, useCreateSecret, useCreateTool, useCreateVoiceAgent, useCreateWorker, useCreateWorkerEvalFromRun, useCreateWorkerRun, useCreateWorkerWebhook, useDeleteArtifact, useDeleteCallFeedback, useDeleteCase, useDeleteChatAgent, useDeleteEmail, useDeleteExtractor, useDeleteInbox, useDeleteSchedule, useDeleteSecret, useDeleteTool, useDeleteVoiceAgent, useDeleteWebhook, useDeleteWorker, useExecuteCode, useGetAnalyticsTimeSeries, useGetArtifact, useGetArtifactMetadataKeys, useGetArtifactStatusSummary, useGetArtifactUploadUrl, useGetBenchmark, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetCase, useGetChat, useGetChatAgent, useGetChatAgentPrompt, useGetEmail, useGetEvalRun, useGetExtract, useGetExtractCitations, useGetExtractor, useGetExtractorJob, useGetInformationRequest, useGetNotification, useGetOAuthUrl, useGetPartnerJwks, useGetProfile, useGetPublicChatAgent, useGetSchedule, useGetSecret, useGetSessionToken, useGetTenantSettings, useGetTool, useGetToolVersion, useGetToolVersionChangeSummary, useGetVoiceAgent, useGetVoiceAgentPlaceholders, useGetVoiceAgentPrompt, useGetVoiceAgentVersion, useGetVoiceAgentVersionChangeSummary, useGetWebhook, useGetWorker, useGetWorkerPrompt, useGetWorkerRun, useGetWorkerVersion, useGetWorkerVersionChangeSummary, useInviteTeamMember, useListAgentWebhooks, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListCaseLinks, useListCases, useListChatAgents, useListChatMessages, useListChats, useListDispatches, useListEmailThreads, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListInboxWebhooks, useListInboxes, useListInformationRequests, useListJobs, useListNotificationWebhooks, useListNotifications, useListSchedules, useListSecrets, useListTeamInvitations, useListTeamMembers, useListToolVersions, useListTools, useListVoiceAgentVersions, useListVoiceAgents, useListWebhookDeliveries, useListWebhooks, useListWorkerModels, useListWorkerRunMessages, useListWorkerRuns, useListWorkerVersions, useListWorkerWebhooks, useListWorkers, useNotifyAdmin, usePartnerLaunch, usePostChatMessage, usePromoteToolVersion, usePromoteVoiceAgentVersion, usePromoteWorkerVersion, useRefreshToken, useRemoveCaseLink, useRemoveMember, useReplyToEmail, useRequestPasswordReset, useResendTeamInvitation, useResetPassword, useResolveInformationRequest, useRevokeApiKey, useRevokeTeamInvitation, useRunEval, useScheduleJob, useSearchCases, useSendEmail, useSignIn, useSignUp, useTestWebhook, useUpdateApiKey, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateChatAgent, useUpdateChatAgentPrompt, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateSchedule, useUpdateSecret, useUpdateTenantSettings, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateVoiceAgentPrompt, useUpdateWebhook, useUpdateWorker, useUpdateWorkerMcps, useUpdateWorkerPrompt, useUploadFile, useWorkerExecuteTool, useWorkerGetTool, useWorkerListTools, workerExecuteTool, workerGetTool, workerListTools };
|