diff --git a/src/sdk/index.ts b/src/sdk/index.ts index b4efa68..c0346de 100644 --- a/src/sdk/index.ts +++ b/src/sdk/index.ts @@ -149,6 +149,11 @@ export type CustomerSsoSettings = { azureProviders: Array>; }; +export type DeleteApiTokenInput = { + app_id?: InputMaybe; + id: Scalars['ID']; +}; + /** Generic deletion response type to handle reporting success. */ export type DeletionResponse = { __typename?: 'DeletionResponse'; @@ -311,7 +316,7 @@ export type MutationCreateVoiceboxAppArgs = { /** Root Mutation Type */ export type MutationDeleteApiTokenArgs = { - id: Scalars['ID']; + input: DeleteApiTokenInput; }; /** Root Mutation Type */ @@ -494,6 +499,8 @@ export type Query = { /** * Retrieve Voicebox conversations for the authenticated user, ordered by creation date, with the newest first. * Use PagingInput to paginate. If PagingInput is omitted, all conversations are returned. + * Designer conversations will only be returned if include_designer is set to true. + * Use connection_id to filter by connection_id, if no connection_id is provided, all conversations are returned. */ listVoiceboxConversations?: Maybe>>; marketplaceSettings?: Maybe; @@ -602,6 +609,7 @@ export type QueryListStardogCloudArgs = { /** Root Query Type */ export type QueryListVoiceboxConversationsArgs = { + filterInput?: InputMaybe; paging?: InputMaybe; }; @@ -613,6 +621,11 @@ export type QuerySearchUsersArgs = { token: Scalars['String']; }; +/** Root Query Type */ +export type QueryVoiceboxConversationCountArgs = { + filterInput?: InputMaybe; +}; + /** Contains the counts of available cloud resources to sell. */ export type QueueCounts = { __typename?: 'QueueCounts'; @@ -642,6 +655,7 @@ export type Settings = { designerVersion: Scalars['String']; explorerVersion: Scalars['String']; friendlyName: Scalars['String']; + geoaxisAuth: Scalars['Boolean']; googleAuth: Scalars['Boolean']; homeFooterLinks: Scalars['Boolean']; keycloakAuth: Scalars['Boolean']; @@ -849,6 +863,11 @@ export type VoiceboxConversation = { updated?: Maybe; }; +export type VoiceboxConversationsFilterInput = { + connection_id?: InputMaybe; + include_designer?: InputMaybe; +}; + /** A Message within a Voicebox conversation. */ export type VoiceboxMessage = { __typename?: 'VoiceboxMessage';