@avallon-labs/sdk 5.3.0 → 5.4.0

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 CHANGED
@@ -244,6 +244,40 @@ interface AddToolsToAgentResponse {
244
244
  agent: Agent;
245
245
  }
246
246
 
247
+ /**
248
+ * Generated by orval v8.1.0 🍺
249
+ * Do not edit manually.
250
+ * Avallon API
251
+ * OpenAPI spec version: 1.0.0
252
+ */
253
+ type AgenticJobMessageMessage = {
254
+ [key: string]: unknown;
255
+ };
256
+
257
+ /**
258
+ * Generated by orval v8.1.0 🍺
259
+ * Do not edit manually.
260
+ * Avallon API
261
+ * OpenAPI spec version: 1.0.0
262
+ */
263
+
264
+ interface AgenticJobMessage {
265
+ id: string;
266
+ extractor_job_id: string;
267
+ message: AgenticJobMessageMessage;
268
+ emitted_at: string;
269
+ created_at: string;
270
+ }
271
+
272
+ /**
273
+ * Generated by orval v8.1.0 🍺
274
+ * Do not edit manually.
275
+ * Avallon API
276
+ * OpenAPI spec version: 1.0.0
277
+ */
278
+
279
+ type AgenticJobMessageList = AgenticJobMessage[];
280
+
247
281
  /**
248
282
  * Generated by orval v8.1.0 🍺
249
283
  * Do not edit manually.
@@ -2224,6 +2258,21 @@ interface GetToolResponse {
2224
2258
  tool: CodeTool;
2225
2259
  }
2226
2260
 
2261
+ /**
2262
+ * Generated by orval v8.1.0 🍺
2263
+ * Do not edit manually.
2264
+ * Avallon API
2265
+ * OpenAPI spec version: 1.0.0
2266
+ */
2267
+ type ListAgenticJobMessagesParams = {
2268
+ after?: string;
2269
+ /**
2270
+ * @minimum 1
2271
+ * @maximum 500
2272
+ */
2273
+ count?: number;
2274
+ };
2275
+
2227
2276
  /**
2228
2277
  * Generated by orval v8.1.0 🍺
2229
2278
  * Do not edit manually.
@@ -4741,6 +4790,31 @@ declare const useCancelExtractorJob: <TError = ErrorType<ErrorResponse>>(id: str
4741
4790
  error: TError | undefined;
4742
4791
  swrKey: string | readonly [`/v1/extractor-jobs/${string}/cancel`];
4743
4792
  };
4793
+ /**
4794
+ * Retrieve agent messages emitted during an agentic extractor job run, ordered by emission time. Supports cursor-style pagination via `after` and `count`.
4795
+ * @summary List agentic job messages
4796
+ */
4797
+ declare const getListAgenticJobMessagesUrl: (id: string, params?: ListAgenticJobMessagesParams) => string;
4798
+ declare const listAgenticJobMessages: (id: string, params?: ListAgenticJobMessagesParams, options?: RequestInit) => Promise<AgenticJobMessageList>;
4799
+ declare const getListAgenticJobMessagesKey: (id: string, params?: ListAgenticJobMessagesParams) => readonly [`/v1/extractor-jobs/${string}/messages`, ...ListAgenticJobMessagesParams[]];
4800
+ type ListAgenticJobMessagesQueryResult = NonNullable<Awaited<ReturnType<typeof listAgenticJobMessages>>>;
4801
+ /**
4802
+ * @summary List agentic job messages
4803
+ */
4804
+ declare const useListAgenticJobMessages: <TError = ErrorType<ErrorResponse>>(id: string, params?: ListAgenticJobMessagesParams, options?: {
4805
+ swr?: SWRConfiguration<Awaited<ReturnType<typeof listAgenticJobMessages>>, TError> & {
4806
+ swrKey?: Key;
4807
+ enabled?: boolean;
4808
+ };
4809
+ request?: SecondParameter$6<typeof customFetch>;
4810
+ }) => {
4811
+ data: AgenticJobMessageList | undefined;
4812
+ error: TError | undefined;
4813
+ mutate: swr.KeyedMutator<AgenticJobMessageList>;
4814
+ isValidating: boolean;
4815
+ isLoading: swr__internal.IsLoadingResponse<Data, Config>;
4816
+ swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => Arguments);
4817
+ };
4744
4818
  /**
4745
4819
  * Merge-update scope on an existing extractor job. Provided keys are added or overwritten; other existing keys are preserved.
4746
4820
  * @summary Update extractor job scope
@@ -5452,4 +5526,4 @@ declare const useTestWebhook: <TError = ErrorType<ErrorResponse>>(id: string, op
5452
5526
  swrKey: string | readonly [`/v1/webhooks/${string}/test`];
5453
5527
  };
5454
5528
 
5455
- export { type AddToolsToAgentBody, type AddToolsToAgentMutationResult, type AddToolsToAgentResponse, type Agent, AgentBackgroundSounds, AgentDirection, AgentLanguage, type AgentList, AgentLlmModel, type AgentPrompt, AgentSttModel, AgentTtsModel, AgentTtsProvider, type AgentWebhookList, type ApiKey, type ApiKeyCreated, type ApiKeyList, type Artifact, type ArtifactCreated, type ArtifactCreatedItem, type ArtifactDetail, type ArtifactDetailData, type ArtifactDetailDataMetadata, type ArtifactList, type ArtifactMetadata, type ArtifactMetadataKeys, type ArtifactMetadataKeysData, type ArtifactMetadataKeysDataValues, type AuthTokens, type AvallonConfig, AvallonError, type Call, type CallAnalytics, type CallAnalyticsCallsOverTimeItem, type CallAnalyticsDurationDistributionItem, type CallAnalyticsEvaluationOverTimeItem, type CallAnalyticsMetricPerformanceItem, type CallAnalyticsScoreDistributionItem, type CallAnalyticsSummary, type CallDetail, CallDetailDirection, type CallDetailEvaluation, type CallDetailMetadata, CallDirection, type CallEvaluation, type CallEvaluationMetricsItem, type CallEvaluationProperty, type CallList, type CallMessage, type CallMessageMetadata, type CallMessageToolArguments, type CallMessageToolResult, type CallMetadata, type CancelExtractorJobMutationResult, type CancelJobMutationResult, type CanceledExtractorJob, type CanceledExtractorJobScope, type CheckEmailUsernameAvailabilityParams, type CheckEmailUsernameAvailabilityQueryResult, type ClaimCreated, type ClaimDetail, type ClaimDetailArtifactsItem, type ClaimDetailClaim, type ClaimDetailExtractorJob, type ClaimDetailSourcesItem, type ClaimList, type ClaimListClaimsItem, type CodeTool, type CodeToolCreated, type CodeToolCreatedTool, type CodeToolCreatedToolSchema, type CodeToolSchema, type CodeToolSummary, type CodeToolUpdated, type CodeToolUpdatedTool, type CodeToolUpdatedToolSchema, type ConfirmationResponse, type CreateAgentBody, CreateAgentBodyDirection, CreateAgentBodyLanguage, CreateAgentBodyLlmModel, CreateAgentBodySttModel, CreateAgentBodyTtsModel, CreateAgentBodyTtsProvider, type CreateAgentMutationResult, type CreateAgentResponse, type CreateAgentWebhookBody, type CreateAgentWebhookMutationResult, type CreateApiKeyBody, CreateApiKeyBodyEnvironment, type CreateApiKeyMutationResult, type CreateArtifactBody, type CreateArtifactBodyMetadata, type CreateArtifactBodyProcessingOptions, type CreateArtifactMutationResult, type CreateCallFeedbackMutationResult, type CreateClaimMutationResult, type CreateEmailAgentBody, type CreateEmailAgentMutationResult, type CreateEmailAgentWebhookBody, type CreateEmailAgentWebhookMutationResult, type CreateEmailBody, CreateEmailBodyDirection, type CreateEmailMutationResult, type CreateExtractorBody, type CreateExtractorBodySchema, type CreateExtractorJobBody, type CreateExtractorJobBodyScope, type CreateExtractorJobMutationResult, type CreateExtractorMutationResult, type CreateExtractorWebhookBody, type CreateExtractorWebhookMutationResult, type CreateFeedbackRequest, type CreateToolBody, type CreateToolMutationResult, type DeleteCallFeedbackMutationResult, type DeleteToolsFromAgentBody, type DeleteToolsFromAgentMutationResult, type DeleteToolsFromAgentResponse, type DeleteWebhookMutationResult, type DeleteWebhookResponse, type Email, type EmailAgent, type EmailAgentList, type EmailAgentWebhookList, type EmailCreated, EmailCreatedDirection, type EmailDetail, EmailDetailDirection, EmailDirection, type EmailList, type EmailUsernameAvailability, type EmptyResponse, type ErrorResponse, type ErrorResponseData, type ExecuteCodeBody, type ExecuteCodeBodyParams, type ExecuteCodeMutationResult, type Extract, type ExtractList, type ExtractScope, type ExtractSummary, type ExtractSummaryScope, type Extractor, type ExtractorCreated, type ExtractorCreatedSchema, type ExtractorJob, type ExtractorJobCreated, type ExtractorJobCreatedScope, type ExtractorJobDetail, type ExtractorJobDetailScope, ExtractorJobExtractorType, type ExtractorJobList, type ExtractorJobScope, type ExtractorList, type ExtractorSchema, type ExtractorSummary, type ExtractorUpdated, type ExtractorUpdatedSchema, type ExtractorWebhookList, type Feedback, type GetAgentPromptQueryResult, type GetAgentQueryResult, type GetAgentResponse, type GetArtifactMetadataKeysParams, type GetArtifactMetadataKeysQueryResult, type GetArtifactQueryResult, type GetCallAnalyticsParams, type GetCallAnalyticsQueryResult, type GetCallEvaluationQueryResult, type GetCallParams, type GetCallQueryResult, type GetClaimDetailQueryResult, type GetEmailQueryResult, type GetExtractQueryResult, type GetExtractorJobQueryResult, type GetExtractorJobResponse, type GetExtractorQueryResult, type GetExtractorResponse, GetOAuthUrlCodeChallengeMethod, type GetOAuthUrlParams, GetOAuthUrlProvider, type GetOAuthUrlQueryResult, type GetProfileQueryResult, type GetSessionToken200, type GetSessionTokenBody, type GetSessionTokenMutationResult, type GetToolQueryResult, type GetToolResponse, type GetWebhookQueryResult, type ListAgentWebhooksQueryResult, type ListAgentsParams, type ListAgentsQueryResult, ListApiKeysIncludeRevoked, type ListApiKeysParams, type ListApiKeysQueryResult, type ListArtifactsParams, type ListArtifactsQueryResult, ListArtifactsSortBy, ListArtifactsSortOrder, type ListCallFeedbackParams, type ListCallFeedbackQueryResult, ListCallFeedbackSortBy, ListCallFeedbackSortOrder, ListCallsDirection, type ListCallsParams, type ListCallsQueryResult, ListCallsSortBy, ListCallsSortOrder, ListCallsStatus, type ListClaimsParams, type ListClaimsQueryResult, ListClaimsSortBy, ListClaimsSortOrder, type ListEmailAgentWebhooksQueryResult, type ListEmailAgentsParams, type ListEmailAgentsQueryResult, ListEmailAgentsSortBy, ListEmailAgentsSortOrder, type ListEmailsParams, type ListEmailsQueryResult, ListEmailsSortBy, ListEmailsSortOrder, ListExtractorJobsExtractorType, type ListExtractorJobsParams, type ListExtractorJobsQueryResult, ListExtractorJobsSortBy, ListExtractorJobsSortOrder, ListExtractorJobsStatus, type ListExtractorsParams, type ListExtractorsQueryResult, ListExtractorsSortBy, ListExtractorsSortOrder, type ListExtractsParams, type ListExtractsQueryResult, ListExtractsSortBy, ListExtractsSortOrder, type ListJobsParams, type ListJobsQueryResult, ListJobsStatusItem, type ListToolsParams, type ListToolsQueryResult, ListToolsSortBy, ListToolsSortOrder, type ListWebhookDeliveriesParams, type ListWebhookDeliveriesQueryResult, ListWebhookDeliveriesSortOrder, type ListWebhooksQueryResult, type OAuthUrl, type OutboundJob, type OutboundJobList, type OutboundJobMetadata, type OutboundJobPayload, OutboundJobStatus, type Profile, type ProfileTenant, type ProfileTenants, type RefreshTokenBody, type RefreshTokenMutationResult, type RevokeApiKeyMutationResult, type ScheduleJobBody, type ScheduleJobBodyMetadata, type ScheduleJobBodyPayload, type ScheduleJobMutationResult, type SignInBody, type SignInMutationResult, type SignUpBody, type SignUpMutationResult, type TestWebhookMutationResult, type ToolExecutionResult, type ToolExecutionResultError, type ToolExecutionResultTracesItem, type ToolList, type UpdateAgentModelsBody, UpdateAgentModelsBodyLanguage, UpdateAgentModelsBodyLlmModel, UpdateAgentModelsBodySttModel, UpdateAgentModelsBodyTtsModel, UpdateAgentModelsBodyTtsProvider, type UpdateAgentModelsMutationResult, type UpdateAgentModelsResponse, type UpdateArtifactMetadataBody, type UpdateArtifactMetadataBodyMetadata, type UpdateArtifactMetadataMutationResult, type UpdateCallControlsBody, type UpdateCallControlsMutationResult, type UpdateCallControlsResponse, type UpdateEmailAgentBody, type UpdateEmailAgentMutationResult, type UpdateExtractorBody, type UpdateExtractorBodySchema, type UpdateExtractorJobScopeBody, type UpdateExtractorJobScopeBodyScope, type UpdateExtractorJobScopeMutationResult, type UpdateExtractorMutationResult, type UpdateToolBody, type UpdateToolMutationResult, type UpdatedExtractorJob, type UpdatedExtractorJobScope, type UploadFileBody, type UploadFileBodyMetadata, type UploadFileBodyProcessingOptions, type UploadFileMutationResult, type UploadFileResponse, type Webhook, type WebhookDelivery, type WebhookDeliveryList, type WebhookScope, type WebhookTestResult, addToolsToAgent, cancelExtractorJob, cancelJob, checkEmailUsernameAvailability, configure, createAgent, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, createClaim, createEmail, createEmailAgent, createEmailAgentWebhook, createExtractor, createExtractorJob, createExtractorWebhook, createTool, deleteCallFeedback, deleteToolsFromAgent, deleteWebhook, executeCode, generateCodeChallenge, generateCodeVerifier, getAddToolsToAgentMutationFetcher, getAddToolsToAgentMutationKey, getAddToolsToAgentUrl, getAgent, getAgentPrompt, getArtifact, getArtifactMetadataKeys, getCall, getCallAnalytics, getCallEvaluation, getCancelExtractorJobMutationFetcher, getCancelExtractorJobMutationKey, getCancelExtractorJobUrl, getCancelJobMutationFetcher, getCancelJobMutationKey, getCancelJobUrl, getCheckEmailUsernameAvailabilityKey, getCheckEmailUsernameAvailabilityUrl, getClaimDetail, getConfig, getCreateAgentMutationFetcher, getCreateAgentMutationKey, getCreateAgentUrl, getCreateAgentWebhookMutationFetcher, getCreateAgentWebhookMutationKey, getCreateAgentWebhookUrl, getCreateApiKeyMutationFetcher, getCreateApiKeyMutationKey, getCreateApiKeyUrl, getCreateArtifactMutationFetcher, getCreateArtifactMutationKey, getCreateArtifactUrl, getCreateCallFeedbackMutationFetcher, getCreateCallFeedbackMutationKey, getCreateCallFeedbackUrl, getCreateClaimMutationFetcher, getCreateClaimMutationKey, getCreateClaimUrl, getCreateEmailAgentMutationFetcher, getCreateEmailAgentMutationKey, getCreateEmailAgentUrl, getCreateEmailAgentWebhookMutationFetcher, getCreateEmailAgentWebhookMutationKey, getCreateEmailAgentWebhookUrl, getCreateEmailMutationFetcher, getCreateEmailMutationKey, getCreateEmailUrl, getCreateExtractorJobMutationFetcher, getCreateExtractorJobMutationKey, getCreateExtractorJobUrl, getCreateExtractorMutationFetcher, getCreateExtractorMutationKey, getCreateExtractorUrl, getCreateExtractorWebhookMutationFetcher, getCreateExtractorWebhookMutationKey, getCreateExtractorWebhookUrl, getCreateToolMutationFetcher, getCreateToolMutationKey, getCreateToolUrl, getDeleteCallFeedbackMutationFetcher, getDeleteCallFeedbackMutationKey, getDeleteCallFeedbackUrl, getDeleteToolsFromAgentMutationFetcher, getDeleteToolsFromAgentMutationKey, getDeleteToolsFromAgentUrl, getDeleteWebhookMutationFetcher, getDeleteWebhookMutationKey, getDeleteWebhookUrl, getEmail, getExecuteCodeMutationFetcher, getExecuteCodeMutationKey, getExecuteCodeUrl, getExtract, getExtractor, getExtractorJob, getGetAgentKey, getGetAgentPromptKey, getGetAgentPromptUrl, getGetAgentUrl, getGetArtifactKey, getGetArtifactMetadataKeysKey, getGetArtifactMetadataKeysUrl, getGetArtifactUrl, getGetCallAnalyticsKey, getGetCallAnalyticsUrl, getGetCallEvaluationKey, getGetCallEvaluationUrl, getGetCallKey, getGetCallUrl, getGetClaimDetailKey, getGetClaimDetailUrl, getGetEmailKey, getGetEmailUrl, getGetExtractKey, getGetExtractUrl, getGetExtractorJobKey, getGetExtractorJobUrl, getGetExtractorKey, getGetExtractorUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetProfileKey, getGetProfileUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetWebhookKey, getGetWebhookUrl, getListAgentWebhooksKey, getListAgentWebhooksUrl, getListAgentsKey, getListAgentsUrl, getListApiKeysKey, getListApiKeysUrl, getListArtifactsKey, getListArtifactsUrl, getListCallFeedbackKey, getListCallFeedbackUrl, getListCallsKey, getListCallsUrl, getListClaimsKey, getListClaimsUrl, getListEmailAgentWebhooksKey, getListEmailAgentWebhooksUrl, getListEmailAgentsKey, getListEmailAgentsUrl, getListEmailsKey, getListEmailsUrl, getListExtractorJobsKey, getListExtractorJobsUrl, getListExtractorsKey, getListExtractorsUrl, getListExtractsKey, getListExtractsUrl, getListJobsKey, getListJobsUrl, getListToolsKey, getListToolsUrl, getListWebhookDeliveriesKey, getListWebhookDeliveriesUrl, getListWebhooksKey, getListWebhooksUrl, getOAuthUrl, getProfile, getRefreshTokenMutationFetcher, getRefreshTokenMutationKey, getRefreshTokenUrl, getRevokeApiKeyMutationFetcher, getRevokeApiKeyMutationKey, getRevokeApiKeyUrl, getScheduleJobMutationFetcher, getScheduleJobMutationKey, getScheduleJobUrl, getSessionToken, getSignInMutationFetcher, getSignInMutationKey, getSignInUrl, getSignUpMutationFetcher, getSignUpMutationKey, getSignUpUrl, getTestWebhookMutationFetcher, getTestWebhookMutationKey, getTestWebhookUrl, getTool, getUpdateAgentModelsMutationFetcher, getUpdateAgentModelsMutationKey, getUpdateAgentModelsUrl, getUpdateArtifactMetadataMutationFetcher, getUpdateArtifactMetadataMutationKey, getUpdateArtifactMetadataUrl, getUpdateCallControlsMutationFetcher, getUpdateCallControlsMutationKey, getUpdateCallControlsUrl, getUpdateEmailAgentMutationFetcher, getUpdateEmailAgentMutationKey, getUpdateEmailAgentUrl, getUpdateExtractorJobScopeMutationFetcher, getUpdateExtractorJobScopeMutationKey, getUpdateExtractorJobScopeUrl, getUpdateExtractorMutationFetcher, getUpdateExtractorMutationKey, getUpdateExtractorUrl, getUpdateToolMutationFetcher, getUpdateToolMutationKey, getUpdateToolUrl, getUploadFileMutationFetcher, getUploadFileMutationKey, getUploadFileUrl, getWebhook, listAgentWebhooks, listAgents, listApiKeys, listArtifacts, listCallFeedback, listCalls, listClaims, listEmailAgentWebhooks, listEmailAgents, listEmails, listExtractorJobs, listExtractors, listExtracts, listJobs, listTools, listWebhookDeliveries, listWebhooks, refreshToken, revokeApiKey, scheduleJob, signIn, signUp, testWebhook, updateAgentModels, updateArtifactMetadata, updateCallControls, updateEmailAgent, updateExtractor, updateExtractorJobScope, updateTool, uploadFile, useAddToolsToAgent, useCancelExtractorJob, useCancelJob, useCheckEmailUsernameAvailability, useCreateAgent, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateClaim, useCreateEmail, useCreateEmailAgent, useCreateEmailAgentWebhook, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateTool, useDeleteCallFeedback, useDeleteToolsFromAgent, useDeleteWebhook, useExecuteCode, useGetAgent, useGetAgentPrompt, useGetArtifact, useGetArtifactMetadataKeys, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetClaimDetail, useGetEmail, useGetExtract, useGetExtractor, useGetExtractorJob, useGetOAuthUrl, useGetProfile, useGetSessionToken, useGetTool, useGetWebhook, useListAgentWebhooks, useListAgents, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListClaims, useListEmailAgentWebhooks, useListEmailAgents, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListJobs, useListTools, useListWebhookDeliveries, useListWebhooks, useRefreshToken, useRevokeApiKey, useScheduleJob, useSignIn, useSignUp, useTestWebhook, useUpdateAgentModels, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateEmailAgent, useUpdateExtractor, useUpdateExtractorJobScope, useUpdateTool, useUploadFile };
5529
+ export { type AddToolsToAgentBody, type AddToolsToAgentMutationResult, type AddToolsToAgentResponse, type Agent, AgentBackgroundSounds, AgentDirection, AgentLanguage, type AgentList, AgentLlmModel, type AgentPrompt, AgentSttModel, AgentTtsModel, AgentTtsProvider, type AgentWebhookList, type AgenticJobMessage, type AgenticJobMessageList, type AgenticJobMessageMessage, type ApiKey, type ApiKeyCreated, type ApiKeyList, type Artifact, type ArtifactCreated, type ArtifactCreatedItem, type ArtifactDetail, type ArtifactDetailData, type ArtifactDetailDataMetadata, type ArtifactList, type ArtifactMetadata, type ArtifactMetadataKeys, type ArtifactMetadataKeysData, type ArtifactMetadataKeysDataValues, type AuthTokens, type AvallonConfig, AvallonError, type Call, type CallAnalytics, type CallAnalyticsCallsOverTimeItem, type CallAnalyticsDurationDistributionItem, type CallAnalyticsEvaluationOverTimeItem, type CallAnalyticsMetricPerformanceItem, type CallAnalyticsScoreDistributionItem, type CallAnalyticsSummary, type CallDetail, CallDetailDirection, type CallDetailEvaluation, type CallDetailMetadata, CallDirection, type CallEvaluation, type CallEvaluationMetricsItem, type CallEvaluationProperty, type CallList, type CallMessage, type CallMessageMetadata, type CallMessageToolArguments, type CallMessageToolResult, type CallMetadata, type CancelExtractorJobMutationResult, type CancelJobMutationResult, type CanceledExtractorJob, type CanceledExtractorJobScope, type CheckEmailUsernameAvailabilityParams, type CheckEmailUsernameAvailabilityQueryResult, type ClaimCreated, type ClaimDetail, type ClaimDetailArtifactsItem, type ClaimDetailClaim, type ClaimDetailExtractorJob, type ClaimDetailSourcesItem, type ClaimList, type ClaimListClaimsItem, type CodeTool, type CodeToolCreated, type CodeToolCreatedTool, type CodeToolCreatedToolSchema, type CodeToolSchema, type CodeToolSummary, type CodeToolUpdated, type CodeToolUpdatedTool, type CodeToolUpdatedToolSchema, type ConfirmationResponse, type CreateAgentBody, CreateAgentBodyDirection, CreateAgentBodyLanguage, CreateAgentBodyLlmModel, CreateAgentBodySttModel, CreateAgentBodyTtsModel, CreateAgentBodyTtsProvider, type CreateAgentMutationResult, type CreateAgentResponse, type CreateAgentWebhookBody, type CreateAgentWebhookMutationResult, type CreateApiKeyBody, CreateApiKeyBodyEnvironment, type CreateApiKeyMutationResult, type CreateArtifactBody, type CreateArtifactBodyMetadata, type CreateArtifactBodyProcessingOptions, type CreateArtifactMutationResult, type CreateCallFeedbackMutationResult, type CreateClaimMutationResult, type CreateEmailAgentBody, type CreateEmailAgentMutationResult, type CreateEmailAgentWebhookBody, type CreateEmailAgentWebhookMutationResult, type CreateEmailBody, CreateEmailBodyDirection, type CreateEmailMutationResult, type CreateExtractorBody, type CreateExtractorBodySchema, type CreateExtractorJobBody, type CreateExtractorJobBodyScope, type CreateExtractorJobMutationResult, type CreateExtractorMutationResult, type CreateExtractorWebhookBody, type CreateExtractorWebhookMutationResult, type CreateFeedbackRequest, type CreateToolBody, type CreateToolMutationResult, type DeleteCallFeedbackMutationResult, type DeleteToolsFromAgentBody, type DeleteToolsFromAgentMutationResult, type DeleteToolsFromAgentResponse, type DeleteWebhookMutationResult, type DeleteWebhookResponse, type Email, type EmailAgent, type EmailAgentList, type EmailAgentWebhookList, type EmailCreated, EmailCreatedDirection, type EmailDetail, EmailDetailDirection, EmailDirection, type EmailList, type EmailUsernameAvailability, type EmptyResponse, type ErrorResponse, type ErrorResponseData, type ExecuteCodeBody, type ExecuteCodeBodyParams, type ExecuteCodeMutationResult, type Extract, type ExtractList, type ExtractScope, type ExtractSummary, type ExtractSummaryScope, type Extractor, type ExtractorCreated, type ExtractorCreatedSchema, type ExtractorJob, type ExtractorJobCreated, type ExtractorJobCreatedScope, type ExtractorJobDetail, type ExtractorJobDetailScope, ExtractorJobExtractorType, type ExtractorJobList, type ExtractorJobScope, type ExtractorList, type ExtractorSchema, type ExtractorSummary, type ExtractorUpdated, type ExtractorUpdatedSchema, type ExtractorWebhookList, type Feedback, type GetAgentPromptQueryResult, type GetAgentQueryResult, type GetAgentResponse, type GetArtifactMetadataKeysParams, type GetArtifactMetadataKeysQueryResult, type GetArtifactQueryResult, type GetCallAnalyticsParams, type GetCallAnalyticsQueryResult, type GetCallEvaluationQueryResult, type GetCallParams, type GetCallQueryResult, type GetClaimDetailQueryResult, type GetEmailQueryResult, type GetExtractQueryResult, type GetExtractorJobQueryResult, type GetExtractorJobResponse, type GetExtractorQueryResult, type GetExtractorResponse, GetOAuthUrlCodeChallengeMethod, type GetOAuthUrlParams, GetOAuthUrlProvider, type GetOAuthUrlQueryResult, type GetProfileQueryResult, type GetSessionToken200, type GetSessionTokenBody, type GetSessionTokenMutationResult, type GetToolQueryResult, type GetToolResponse, type GetWebhookQueryResult, type ListAgentWebhooksQueryResult, type ListAgenticJobMessagesParams, type ListAgenticJobMessagesQueryResult, type ListAgentsParams, type ListAgentsQueryResult, ListApiKeysIncludeRevoked, type ListApiKeysParams, type ListApiKeysQueryResult, type ListArtifactsParams, type ListArtifactsQueryResult, ListArtifactsSortBy, ListArtifactsSortOrder, type ListCallFeedbackParams, type ListCallFeedbackQueryResult, ListCallFeedbackSortBy, ListCallFeedbackSortOrder, ListCallsDirection, type ListCallsParams, type ListCallsQueryResult, ListCallsSortBy, ListCallsSortOrder, ListCallsStatus, type ListClaimsParams, type ListClaimsQueryResult, ListClaimsSortBy, ListClaimsSortOrder, type ListEmailAgentWebhooksQueryResult, type ListEmailAgentsParams, type ListEmailAgentsQueryResult, ListEmailAgentsSortBy, ListEmailAgentsSortOrder, type ListEmailsParams, type ListEmailsQueryResult, ListEmailsSortBy, ListEmailsSortOrder, ListExtractorJobsExtractorType, type ListExtractorJobsParams, type ListExtractorJobsQueryResult, ListExtractorJobsSortBy, ListExtractorJobsSortOrder, ListExtractorJobsStatus, type ListExtractorsParams, type ListExtractorsQueryResult, ListExtractorsSortBy, ListExtractorsSortOrder, type ListExtractsParams, type ListExtractsQueryResult, ListExtractsSortBy, ListExtractsSortOrder, type ListJobsParams, type ListJobsQueryResult, ListJobsStatusItem, type ListToolsParams, type ListToolsQueryResult, ListToolsSortBy, ListToolsSortOrder, type ListWebhookDeliveriesParams, type ListWebhookDeliveriesQueryResult, ListWebhookDeliveriesSortOrder, type ListWebhooksQueryResult, type OAuthUrl, type OutboundJob, type OutboundJobList, type OutboundJobMetadata, type OutboundJobPayload, OutboundJobStatus, type Profile, type ProfileTenant, type ProfileTenants, type RefreshTokenBody, type RefreshTokenMutationResult, type RevokeApiKeyMutationResult, type ScheduleJobBody, type ScheduleJobBodyMetadata, type ScheduleJobBodyPayload, type ScheduleJobMutationResult, type SignInBody, type SignInMutationResult, type SignUpBody, type SignUpMutationResult, type TestWebhookMutationResult, type ToolExecutionResult, type ToolExecutionResultError, type ToolExecutionResultTracesItem, type ToolList, type UpdateAgentModelsBody, UpdateAgentModelsBodyLanguage, UpdateAgentModelsBodyLlmModel, UpdateAgentModelsBodySttModel, UpdateAgentModelsBodyTtsModel, UpdateAgentModelsBodyTtsProvider, type UpdateAgentModelsMutationResult, type UpdateAgentModelsResponse, type UpdateArtifactMetadataBody, type UpdateArtifactMetadataBodyMetadata, type UpdateArtifactMetadataMutationResult, type UpdateCallControlsBody, type UpdateCallControlsMutationResult, type UpdateCallControlsResponse, type UpdateEmailAgentBody, type UpdateEmailAgentMutationResult, type UpdateExtractorBody, type UpdateExtractorBodySchema, type UpdateExtractorJobScopeBody, type UpdateExtractorJobScopeBodyScope, type UpdateExtractorJobScopeMutationResult, type UpdateExtractorMutationResult, type UpdateToolBody, type UpdateToolMutationResult, type UpdatedExtractorJob, type UpdatedExtractorJobScope, type UploadFileBody, type UploadFileBodyMetadata, type UploadFileBodyProcessingOptions, type UploadFileMutationResult, type UploadFileResponse, type Webhook, type WebhookDelivery, type WebhookDeliveryList, type WebhookScope, type WebhookTestResult, addToolsToAgent, cancelExtractorJob, cancelJob, checkEmailUsernameAvailability, configure, createAgent, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, createClaim, createEmail, createEmailAgent, createEmailAgentWebhook, createExtractor, createExtractorJob, createExtractorWebhook, createTool, deleteCallFeedback, deleteToolsFromAgent, deleteWebhook, executeCode, generateCodeChallenge, generateCodeVerifier, getAddToolsToAgentMutationFetcher, getAddToolsToAgentMutationKey, getAddToolsToAgentUrl, getAgent, getAgentPrompt, getArtifact, getArtifactMetadataKeys, getCall, getCallAnalytics, getCallEvaluation, getCancelExtractorJobMutationFetcher, getCancelExtractorJobMutationKey, getCancelExtractorJobUrl, getCancelJobMutationFetcher, getCancelJobMutationKey, getCancelJobUrl, getCheckEmailUsernameAvailabilityKey, getCheckEmailUsernameAvailabilityUrl, getClaimDetail, getConfig, getCreateAgentMutationFetcher, getCreateAgentMutationKey, getCreateAgentUrl, getCreateAgentWebhookMutationFetcher, getCreateAgentWebhookMutationKey, getCreateAgentWebhookUrl, getCreateApiKeyMutationFetcher, getCreateApiKeyMutationKey, getCreateApiKeyUrl, getCreateArtifactMutationFetcher, getCreateArtifactMutationKey, getCreateArtifactUrl, getCreateCallFeedbackMutationFetcher, getCreateCallFeedbackMutationKey, getCreateCallFeedbackUrl, getCreateClaimMutationFetcher, getCreateClaimMutationKey, getCreateClaimUrl, getCreateEmailAgentMutationFetcher, getCreateEmailAgentMutationKey, getCreateEmailAgentUrl, getCreateEmailAgentWebhookMutationFetcher, getCreateEmailAgentWebhookMutationKey, getCreateEmailAgentWebhookUrl, getCreateEmailMutationFetcher, getCreateEmailMutationKey, getCreateEmailUrl, getCreateExtractorJobMutationFetcher, getCreateExtractorJobMutationKey, getCreateExtractorJobUrl, getCreateExtractorMutationFetcher, getCreateExtractorMutationKey, getCreateExtractorUrl, getCreateExtractorWebhookMutationFetcher, getCreateExtractorWebhookMutationKey, getCreateExtractorWebhookUrl, getCreateToolMutationFetcher, getCreateToolMutationKey, getCreateToolUrl, getDeleteCallFeedbackMutationFetcher, getDeleteCallFeedbackMutationKey, getDeleteCallFeedbackUrl, getDeleteToolsFromAgentMutationFetcher, getDeleteToolsFromAgentMutationKey, getDeleteToolsFromAgentUrl, getDeleteWebhookMutationFetcher, getDeleteWebhookMutationKey, getDeleteWebhookUrl, getEmail, getExecuteCodeMutationFetcher, getExecuteCodeMutationKey, getExecuteCodeUrl, getExtract, getExtractor, getExtractorJob, getGetAgentKey, getGetAgentPromptKey, getGetAgentPromptUrl, getGetAgentUrl, getGetArtifactKey, getGetArtifactMetadataKeysKey, getGetArtifactMetadataKeysUrl, getGetArtifactUrl, getGetCallAnalyticsKey, getGetCallAnalyticsUrl, getGetCallEvaluationKey, getGetCallEvaluationUrl, getGetCallKey, getGetCallUrl, getGetClaimDetailKey, getGetClaimDetailUrl, getGetEmailKey, getGetEmailUrl, getGetExtractKey, getGetExtractUrl, getGetExtractorJobKey, getGetExtractorJobUrl, getGetExtractorKey, getGetExtractorUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetProfileKey, getGetProfileUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetWebhookKey, getGetWebhookUrl, getListAgentWebhooksKey, getListAgentWebhooksUrl, getListAgenticJobMessagesKey, getListAgenticJobMessagesUrl, getListAgentsKey, getListAgentsUrl, getListApiKeysKey, getListApiKeysUrl, getListArtifactsKey, getListArtifactsUrl, getListCallFeedbackKey, getListCallFeedbackUrl, getListCallsKey, getListCallsUrl, getListClaimsKey, getListClaimsUrl, getListEmailAgentWebhooksKey, getListEmailAgentWebhooksUrl, getListEmailAgentsKey, getListEmailAgentsUrl, getListEmailsKey, getListEmailsUrl, getListExtractorJobsKey, getListExtractorJobsUrl, getListExtractorsKey, getListExtractorsUrl, getListExtractsKey, getListExtractsUrl, getListJobsKey, getListJobsUrl, getListToolsKey, getListToolsUrl, getListWebhookDeliveriesKey, getListWebhookDeliveriesUrl, getListWebhooksKey, getListWebhooksUrl, getOAuthUrl, getProfile, getRefreshTokenMutationFetcher, getRefreshTokenMutationKey, getRefreshTokenUrl, getRevokeApiKeyMutationFetcher, getRevokeApiKeyMutationKey, getRevokeApiKeyUrl, getScheduleJobMutationFetcher, getScheduleJobMutationKey, getScheduleJobUrl, getSessionToken, getSignInMutationFetcher, getSignInMutationKey, getSignInUrl, getSignUpMutationFetcher, getSignUpMutationKey, getSignUpUrl, getTestWebhookMutationFetcher, getTestWebhookMutationKey, getTestWebhookUrl, getTool, getUpdateAgentModelsMutationFetcher, getUpdateAgentModelsMutationKey, getUpdateAgentModelsUrl, getUpdateArtifactMetadataMutationFetcher, getUpdateArtifactMetadataMutationKey, getUpdateArtifactMetadataUrl, getUpdateCallControlsMutationFetcher, getUpdateCallControlsMutationKey, getUpdateCallControlsUrl, getUpdateEmailAgentMutationFetcher, getUpdateEmailAgentMutationKey, getUpdateEmailAgentUrl, getUpdateExtractorJobScopeMutationFetcher, getUpdateExtractorJobScopeMutationKey, getUpdateExtractorJobScopeUrl, getUpdateExtractorMutationFetcher, getUpdateExtractorMutationKey, getUpdateExtractorUrl, getUpdateToolMutationFetcher, getUpdateToolMutationKey, getUpdateToolUrl, getUploadFileMutationFetcher, getUploadFileMutationKey, getUploadFileUrl, getWebhook, listAgentWebhooks, listAgenticJobMessages, listAgents, listApiKeys, listArtifacts, listCallFeedback, listCalls, listClaims, listEmailAgentWebhooks, listEmailAgents, listEmails, listExtractorJobs, listExtractors, listExtracts, listJobs, listTools, listWebhookDeliveries, listWebhooks, refreshToken, revokeApiKey, scheduleJob, signIn, signUp, testWebhook, updateAgentModels, updateArtifactMetadata, updateCallControls, updateEmailAgent, updateExtractor, updateExtractorJobScope, updateTool, uploadFile, useAddToolsToAgent, useCancelExtractorJob, useCancelJob, useCheckEmailUsernameAvailability, useCreateAgent, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateClaim, useCreateEmail, useCreateEmailAgent, useCreateEmailAgentWebhook, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateTool, useDeleteCallFeedback, useDeleteToolsFromAgent, useDeleteWebhook, useExecuteCode, useGetAgent, useGetAgentPrompt, useGetArtifact, useGetArtifactMetadataKeys, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetClaimDetail, useGetEmail, useGetExtract, useGetExtractor, useGetExtractorJob, useGetOAuthUrl, useGetProfile, useGetSessionToken, useGetTool, useGetWebhook, useListAgentWebhooks, useListAgenticJobMessages, useListAgents, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListClaims, useListEmailAgentWebhooks, useListEmailAgents, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListJobs, useListTools, useListWebhookDeliveries, useListWebhooks, useRefreshToken, useRevokeApiKey, useScheduleJob, useSignIn, useSignUp, useTestWebhook, useUpdateAgentModels, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateEmailAgent, useUpdateExtractor, useUpdateExtractorJobScope, useUpdateTool, useUploadFile };
package/dist/index.js CHANGED
@@ -1315,6 +1315,41 @@ var useCancelExtractorJob = (id, options) => {
1315
1315
  ...query
1316
1316
  };
1317
1317
  };
1318
+ var getListAgenticJobMessagesUrl = (id, params) => {
1319
+ const normalizedParams = new URLSearchParams();
1320
+ Object.entries(params || {}).forEach(([key, value]) => {
1321
+ if (value !== void 0) {
1322
+ normalizedParams.append(key, value === null ? "null" : value.toString());
1323
+ }
1324
+ });
1325
+ const stringifiedParams = normalizedParams.toString();
1326
+ return stringifiedParams.length > 0 ? `/v1/extractor-jobs/${id}/messages?${stringifiedParams}` : `/v1/extractor-jobs/${id}/messages`;
1327
+ };
1328
+ var listAgenticJobMessages = async (id, params, options) => {
1329
+ return customFetch(
1330
+ getListAgenticJobMessagesUrl(id, params),
1331
+ {
1332
+ ...options,
1333
+ method: "GET"
1334
+ }
1335
+ );
1336
+ };
1337
+ var getListAgenticJobMessagesKey = (id, params) => [`/v1/extractor-jobs/${id}/messages`, ...params ? [params] : []];
1338
+ var useListAgenticJobMessages = (id, params, options) => {
1339
+ const { swr: swrOptions, request: requestOptions } = options ?? {};
1340
+ const isEnabled = swrOptions?.enabled !== false && !!id;
1341
+ const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListAgenticJobMessagesKey(id, params) : null);
1342
+ const swrFn = () => listAgenticJobMessages(id, params, requestOptions);
1343
+ const query = useSwr16(
1344
+ swrKey,
1345
+ swrFn,
1346
+ swrOptions
1347
+ );
1348
+ return {
1349
+ swrKey,
1350
+ ...query
1351
+ };
1352
+ };
1318
1353
  var getUpdateExtractorJobScopeUrl = (id) => {
1319
1354
  return `/v1/extractor-jobs/${id}/scope`;
1320
1355
  };
@@ -2422,6 +2457,6 @@ var UpdateAgentModelsBodyTtsProvider = {
2422
2457
  google: "google"
2423
2458
  };
2424
2459
 
2425
- export { AgentBackgroundSounds, AgentDirection, AgentLanguage, AgentLlmModel, AgentSttModel, AgentTtsModel, AgentTtsProvider, AvallonError, CallDetailDirection, CallDirection, CreateAgentBodyDirection, CreateAgentBodyLanguage, CreateAgentBodyLlmModel, CreateAgentBodySttModel, CreateAgentBodyTtsModel, CreateAgentBodyTtsProvider, CreateApiKeyBodyEnvironment, CreateEmailBodyDirection, EmailCreatedDirection, EmailDetailDirection, EmailDirection, ExtractorJobExtractorType, GetOAuthUrlCodeChallengeMethod, GetOAuthUrlProvider, ListApiKeysIncludeRevoked, ListArtifactsSortBy, ListArtifactsSortOrder, ListCallFeedbackSortBy, ListCallFeedbackSortOrder, ListCallsDirection, ListCallsSortBy, ListCallsSortOrder, ListCallsStatus, ListClaimsSortBy, ListClaimsSortOrder, ListEmailAgentsSortBy, ListEmailAgentsSortOrder, ListEmailsSortBy, ListEmailsSortOrder, ListExtractorJobsExtractorType, ListExtractorJobsSortBy, ListExtractorJobsSortOrder, ListExtractorJobsStatus, ListExtractorsSortBy, ListExtractorsSortOrder, ListExtractsSortBy, ListExtractsSortOrder, ListJobsStatusItem, ListToolsSortBy, ListToolsSortOrder, ListWebhookDeliveriesSortOrder, OutboundJobStatus, UpdateAgentModelsBodyLanguage, UpdateAgentModelsBodyLlmModel, UpdateAgentModelsBodySttModel, UpdateAgentModelsBodyTtsModel, UpdateAgentModelsBodyTtsProvider, addToolsToAgent, cancelExtractorJob, cancelJob, checkEmailUsernameAvailability, configure, createAgent, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, createClaim, createEmail, createEmailAgent, createEmailAgentWebhook, createExtractor, createExtractorJob, createExtractorWebhook, createTool, deleteCallFeedback, deleteToolsFromAgent, deleteWebhook, executeCode, generateCodeChallenge, generateCodeVerifier, getAddToolsToAgentMutationFetcher, getAddToolsToAgentMutationKey, getAddToolsToAgentUrl, getAgent, getAgentPrompt, getArtifact, getArtifactMetadataKeys, getCall, getCallAnalytics, getCallEvaluation, getCancelExtractorJobMutationFetcher, getCancelExtractorJobMutationKey, getCancelExtractorJobUrl, getCancelJobMutationFetcher, getCancelJobMutationKey, getCancelJobUrl, getCheckEmailUsernameAvailabilityKey, getCheckEmailUsernameAvailabilityUrl, getClaimDetail, getConfig, getCreateAgentMutationFetcher, getCreateAgentMutationKey, getCreateAgentUrl, getCreateAgentWebhookMutationFetcher, getCreateAgentWebhookMutationKey, getCreateAgentWebhookUrl, getCreateApiKeyMutationFetcher, getCreateApiKeyMutationKey, getCreateApiKeyUrl, getCreateArtifactMutationFetcher, getCreateArtifactMutationKey, getCreateArtifactUrl, getCreateCallFeedbackMutationFetcher, getCreateCallFeedbackMutationKey, getCreateCallFeedbackUrl, getCreateClaimMutationFetcher, getCreateClaimMutationKey, getCreateClaimUrl, getCreateEmailAgentMutationFetcher, getCreateEmailAgentMutationKey, getCreateEmailAgentUrl, getCreateEmailAgentWebhookMutationFetcher, getCreateEmailAgentWebhookMutationKey, getCreateEmailAgentWebhookUrl, getCreateEmailMutationFetcher, getCreateEmailMutationKey, getCreateEmailUrl, getCreateExtractorJobMutationFetcher, getCreateExtractorJobMutationKey, getCreateExtractorJobUrl, getCreateExtractorMutationFetcher, getCreateExtractorMutationKey, getCreateExtractorUrl, getCreateExtractorWebhookMutationFetcher, getCreateExtractorWebhookMutationKey, getCreateExtractorWebhookUrl, getCreateToolMutationFetcher, getCreateToolMutationKey, getCreateToolUrl, getDeleteCallFeedbackMutationFetcher, getDeleteCallFeedbackMutationKey, getDeleteCallFeedbackUrl, getDeleteToolsFromAgentMutationFetcher, getDeleteToolsFromAgentMutationKey, getDeleteToolsFromAgentUrl, getDeleteWebhookMutationFetcher, getDeleteWebhookMutationKey, getDeleteWebhookUrl, getEmail, getExecuteCodeMutationFetcher, getExecuteCodeMutationKey, getExecuteCodeUrl, getExtract, getExtractor, getExtractorJob, getGetAgentKey, getGetAgentPromptKey, getGetAgentPromptUrl, getGetAgentUrl, getGetArtifactKey, getGetArtifactMetadataKeysKey, getGetArtifactMetadataKeysUrl, getGetArtifactUrl, getGetCallAnalyticsKey, getGetCallAnalyticsUrl, getGetCallEvaluationKey, getGetCallEvaluationUrl, getGetCallKey, getGetCallUrl, getGetClaimDetailKey, getGetClaimDetailUrl, getGetEmailKey, getGetEmailUrl, getGetExtractKey, getGetExtractUrl, getGetExtractorJobKey, getGetExtractorJobUrl, getGetExtractorKey, getGetExtractorUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetProfileKey, getGetProfileUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetWebhookKey, getGetWebhookUrl, getListAgentWebhooksKey, getListAgentWebhooksUrl, getListAgentsKey, getListAgentsUrl, getListApiKeysKey, getListApiKeysUrl, getListArtifactsKey, getListArtifactsUrl, getListCallFeedbackKey, getListCallFeedbackUrl, getListCallsKey, getListCallsUrl, getListClaimsKey, getListClaimsUrl, getListEmailAgentWebhooksKey, getListEmailAgentWebhooksUrl, getListEmailAgentsKey, getListEmailAgentsUrl, getListEmailsKey, getListEmailsUrl, getListExtractorJobsKey, getListExtractorJobsUrl, getListExtractorsKey, getListExtractorsUrl, getListExtractsKey, getListExtractsUrl, getListJobsKey, getListJobsUrl, getListToolsKey, getListToolsUrl, getListWebhookDeliveriesKey, getListWebhookDeliveriesUrl, getListWebhooksKey, getListWebhooksUrl, getOAuthUrl, getProfile, getRefreshTokenMutationFetcher, getRefreshTokenMutationKey, getRefreshTokenUrl, getRevokeApiKeyMutationFetcher, getRevokeApiKeyMutationKey, getRevokeApiKeyUrl, getScheduleJobMutationFetcher, getScheduleJobMutationKey, getScheduleJobUrl, getSessionToken, getSignInMutationFetcher, getSignInMutationKey, getSignInUrl, getSignUpMutationFetcher, getSignUpMutationKey, getSignUpUrl, getTestWebhookMutationFetcher, getTestWebhookMutationKey, getTestWebhookUrl, getTool, getUpdateAgentModelsMutationFetcher, getUpdateAgentModelsMutationKey, getUpdateAgentModelsUrl, getUpdateArtifactMetadataMutationFetcher, getUpdateArtifactMetadataMutationKey, getUpdateArtifactMetadataUrl, getUpdateCallControlsMutationFetcher, getUpdateCallControlsMutationKey, getUpdateCallControlsUrl, getUpdateEmailAgentMutationFetcher, getUpdateEmailAgentMutationKey, getUpdateEmailAgentUrl, getUpdateExtractorJobScopeMutationFetcher, getUpdateExtractorJobScopeMutationKey, getUpdateExtractorJobScopeUrl, getUpdateExtractorMutationFetcher, getUpdateExtractorMutationKey, getUpdateExtractorUrl, getUpdateToolMutationFetcher, getUpdateToolMutationKey, getUpdateToolUrl, getUploadFileMutationFetcher, getUploadFileMutationKey, getUploadFileUrl, getWebhook, listAgentWebhooks, listAgents, listApiKeys, listArtifacts, listCallFeedback, listCalls, listClaims, listEmailAgentWebhooks, listEmailAgents, listEmails, listExtractorJobs, listExtractors, listExtracts, listJobs, listTools, listWebhookDeliveries, listWebhooks, refreshToken, revokeApiKey, scheduleJob, signIn, signUp, testWebhook, updateAgentModels, updateArtifactMetadata, updateCallControls, updateEmailAgent, updateExtractor, updateExtractorJobScope, updateTool, uploadFile, useAddToolsToAgent, useCancelExtractorJob, useCancelJob, useCheckEmailUsernameAvailability, useCreateAgent, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateClaim, useCreateEmail, useCreateEmailAgent, useCreateEmailAgentWebhook, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateTool, useDeleteCallFeedback, useDeleteToolsFromAgent, useDeleteWebhook, useExecuteCode, useGetAgent, useGetAgentPrompt, useGetArtifact, useGetArtifactMetadataKeys, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetClaimDetail, useGetEmail, useGetExtract, useGetExtractor, useGetExtractorJob, useGetOAuthUrl, useGetProfile, useGetSessionToken, useGetTool, useGetWebhook, useListAgentWebhooks, useListAgents, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListClaims, useListEmailAgentWebhooks, useListEmailAgents, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListJobs, useListTools, useListWebhookDeliveries, useListWebhooks, useRefreshToken, useRevokeApiKey, useScheduleJob, useSignIn, useSignUp, useTestWebhook, useUpdateAgentModels, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateEmailAgent, useUpdateExtractor, useUpdateExtractorJobScope, useUpdateTool, useUploadFile };
2460
+ export { AgentBackgroundSounds, AgentDirection, AgentLanguage, AgentLlmModel, AgentSttModel, AgentTtsModel, AgentTtsProvider, AvallonError, CallDetailDirection, CallDirection, CreateAgentBodyDirection, CreateAgentBodyLanguage, CreateAgentBodyLlmModel, CreateAgentBodySttModel, CreateAgentBodyTtsModel, CreateAgentBodyTtsProvider, CreateApiKeyBodyEnvironment, CreateEmailBodyDirection, EmailCreatedDirection, EmailDetailDirection, EmailDirection, ExtractorJobExtractorType, GetOAuthUrlCodeChallengeMethod, GetOAuthUrlProvider, ListApiKeysIncludeRevoked, ListArtifactsSortBy, ListArtifactsSortOrder, ListCallFeedbackSortBy, ListCallFeedbackSortOrder, ListCallsDirection, ListCallsSortBy, ListCallsSortOrder, ListCallsStatus, ListClaimsSortBy, ListClaimsSortOrder, ListEmailAgentsSortBy, ListEmailAgentsSortOrder, ListEmailsSortBy, ListEmailsSortOrder, ListExtractorJobsExtractorType, ListExtractorJobsSortBy, ListExtractorJobsSortOrder, ListExtractorJobsStatus, ListExtractorsSortBy, ListExtractorsSortOrder, ListExtractsSortBy, ListExtractsSortOrder, ListJobsStatusItem, ListToolsSortBy, ListToolsSortOrder, ListWebhookDeliveriesSortOrder, OutboundJobStatus, UpdateAgentModelsBodyLanguage, UpdateAgentModelsBodyLlmModel, UpdateAgentModelsBodySttModel, UpdateAgentModelsBodyTtsModel, UpdateAgentModelsBodyTtsProvider, addToolsToAgent, cancelExtractorJob, cancelJob, checkEmailUsernameAvailability, configure, createAgent, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, createClaim, createEmail, createEmailAgent, createEmailAgentWebhook, createExtractor, createExtractorJob, createExtractorWebhook, createTool, deleteCallFeedback, deleteToolsFromAgent, deleteWebhook, executeCode, generateCodeChallenge, generateCodeVerifier, getAddToolsToAgentMutationFetcher, getAddToolsToAgentMutationKey, getAddToolsToAgentUrl, getAgent, getAgentPrompt, getArtifact, getArtifactMetadataKeys, getCall, getCallAnalytics, getCallEvaluation, getCancelExtractorJobMutationFetcher, getCancelExtractorJobMutationKey, getCancelExtractorJobUrl, getCancelJobMutationFetcher, getCancelJobMutationKey, getCancelJobUrl, getCheckEmailUsernameAvailabilityKey, getCheckEmailUsernameAvailabilityUrl, getClaimDetail, getConfig, getCreateAgentMutationFetcher, getCreateAgentMutationKey, getCreateAgentUrl, getCreateAgentWebhookMutationFetcher, getCreateAgentWebhookMutationKey, getCreateAgentWebhookUrl, getCreateApiKeyMutationFetcher, getCreateApiKeyMutationKey, getCreateApiKeyUrl, getCreateArtifactMutationFetcher, getCreateArtifactMutationKey, getCreateArtifactUrl, getCreateCallFeedbackMutationFetcher, getCreateCallFeedbackMutationKey, getCreateCallFeedbackUrl, getCreateClaimMutationFetcher, getCreateClaimMutationKey, getCreateClaimUrl, getCreateEmailAgentMutationFetcher, getCreateEmailAgentMutationKey, getCreateEmailAgentUrl, getCreateEmailAgentWebhookMutationFetcher, getCreateEmailAgentWebhookMutationKey, getCreateEmailAgentWebhookUrl, getCreateEmailMutationFetcher, getCreateEmailMutationKey, getCreateEmailUrl, getCreateExtractorJobMutationFetcher, getCreateExtractorJobMutationKey, getCreateExtractorJobUrl, getCreateExtractorMutationFetcher, getCreateExtractorMutationKey, getCreateExtractorUrl, getCreateExtractorWebhookMutationFetcher, getCreateExtractorWebhookMutationKey, getCreateExtractorWebhookUrl, getCreateToolMutationFetcher, getCreateToolMutationKey, getCreateToolUrl, getDeleteCallFeedbackMutationFetcher, getDeleteCallFeedbackMutationKey, getDeleteCallFeedbackUrl, getDeleteToolsFromAgentMutationFetcher, getDeleteToolsFromAgentMutationKey, getDeleteToolsFromAgentUrl, getDeleteWebhookMutationFetcher, getDeleteWebhookMutationKey, getDeleteWebhookUrl, getEmail, getExecuteCodeMutationFetcher, getExecuteCodeMutationKey, getExecuteCodeUrl, getExtract, getExtractor, getExtractorJob, getGetAgentKey, getGetAgentPromptKey, getGetAgentPromptUrl, getGetAgentUrl, getGetArtifactKey, getGetArtifactMetadataKeysKey, getGetArtifactMetadataKeysUrl, getGetArtifactUrl, getGetCallAnalyticsKey, getGetCallAnalyticsUrl, getGetCallEvaluationKey, getGetCallEvaluationUrl, getGetCallKey, getGetCallUrl, getGetClaimDetailKey, getGetClaimDetailUrl, getGetEmailKey, getGetEmailUrl, getGetExtractKey, getGetExtractUrl, getGetExtractorJobKey, getGetExtractorJobUrl, getGetExtractorKey, getGetExtractorUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetProfileKey, getGetProfileUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetWebhookKey, getGetWebhookUrl, getListAgentWebhooksKey, getListAgentWebhooksUrl, getListAgenticJobMessagesKey, getListAgenticJobMessagesUrl, getListAgentsKey, getListAgentsUrl, getListApiKeysKey, getListApiKeysUrl, getListArtifactsKey, getListArtifactsUrl, getListCallFeedbackKey, getListCallFeedbackUrl, getListCallsKey, getListCallsUrl, getListClaimsKey, getListClaimsUrl, getListEmailAgentWebhooksKey, getListEmailAgentWebhooksUrl, getListEmailAgentsKey, getListEmailAgentsUrl, getListEmailsKey, getListEmailsUrl, getListExtractorJobsKey, getListExtractorJobsUrl, getListExtractorsKey, getListExtractorsUrl, getListExtractsKey, getListExtractsUrl, getListJobsKey, getListJobsUrl, getListToolsKey, getListToolsUrl, getListWebhookDeliveriesKey, getListWebhookDeliveriesUrl, getListWebhooksKey, getListWebhooksUrl, getOAuthUrl, getProfile, getRefreshTokenMutationFetcher, getRefreshTokenMutationKey, getRefreshTokenUrl, getRevokeApiKeyMutationFetcher, getRevokeApiKeyMutationKey, getRevokeApiKeyUrl, getScheduleJobMutationFetcher, getScheduleJobMutationKey, getScheduleJobUrl, getSessionToken, getSignInMutationFetcher, getSignInMutationKey, getSignInUrl, getSignUpMutationFetcher, getSignUpMutationKey, getSignUpUrl, getTestWebhookMutationFetcher, getTestWebhookMutationKey, getTestWebhookUrl, getTool, getUpdateAgentModelsMutationFetcher, getUpdateAgentModelsMutationKey, getUpdateAgentModelsUrl, getUpdateArtifactMetadataMutationFetcher, getUpdateArtifactMetadataMutationKey, getUpdateArtifactMetadataUrl, getUpdateCallControlsMutationFetcher, getUpdateCallControlsMutationKey, getUpdateCallControlsUrl, getUpdateEmailAgentMutationFetcher, getUpdateEmailAgentMutationKey, getUpdateEmailAgentUrl, getUpdateExtractorJobScopeMutationFetcher, getUpdateExtractorJobScopeMutationKey, getUpdateExtractorJobScopeUrl, getUpdateExtractorMutationFetcher, getUpdateExtractorMutationKey, getUpdateExtractorUrl, getUpdateToolMutationFetcher, getUpdateToolMutationKey, getUpdateToolUrl, getUploadFileMutationFetcher, getUploadFileMutationKey, getUploadFileUrl, getWebhook, listAgentWebhooks, listAgenticJobMessages, listAgents, listApiKeys, listArtifacts, listCallFeedback, listCalls, listClaims, listEmailAgentWebhooks, listEmailAgents, listEmails, listExtractorJobs, listExtractors, listExtracts, listJobs, listTools, listWebhookDeliveries, listWebhooks, refreshToken, revokeApiKey, scheduleJob, signIn, signUp, testWebhook, updateAgentModels, updateArtifactMetadata, updateCallControls, updateEmailAgent, updateExtractor, updateExtractorJobScope, updateTool, uploadFile, useAddToolsToAgent, useCancelExtractorJob, useCancelJob, useCheckEmailUsernameAvailability, useCreateAgent, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateClaim, useCreateEmail, useCreateEmailAgent, useCreateEmailAgentWebhook, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateTool, useDeleteCallFeedback, useDeleteToolsFromAgent, useDeleteWebhook, useExecuteCode, useGetAgent, useGetAgentPrompt, useGetArtifact, useGetArtifactMetadataKeys, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetClaimDetail, useGetEmail, useGetExtract, useGetExtractor, useGetExtractorJob, useGetOAuthUrl, useGetProfile, useGetSessionToken, useGetTool, useGetWebhook, useListAgentWebhooks, useListAgenticJobMessages, useListAgents, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListClaims, useListEmailAgentWebhooks, useListEmailAgents, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListJobs, useListTools, useListWebhookDeliveries, useListWebhooks, useRefreshToken, useRevokeApiKey, useScheduleJob, useSignIn, useSignUp, useTestWebhook, useUpdateAgentModels, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateEmailAgent, useUpdateExtractor, useUpdateExtractorJobScope, useUpdateTool, useUploadFile };
2426
2461
  //# sourceMappingURL=index.js.map
2427
2462
  //# sourceMappingURL=index.js.map