Skip to content

Commit

Permalink
update sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
anneeb committed Aug 29, 2024
1 parent ed72bb7 commit 37dc4fc
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion src/sdk/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,11 @@ export type CustomerSsoSettings = {
azureProviders: Array<Maybe<AzureProvider>>;
};

export type DeleteApiTokenInput = {
app_id?: InputMaybe<Scalars['ID']>;
id: Scalars['ID'];
};

/** Generic deletion response type to handle reporting success. */
export type DeletionResponse = {
__typename?: 'DeletionResponse';
Expand Down Expand Up @@ -311,7 +316,7 @@ export type MutationCreateVoiceboxAppArgs = {

/** Root Mutation Type */
export type MutationDeleteApiTokenArgs = {
id: Scalars['ID'];
input: DeleteApiTokenInput;
};

/** Root Mutation Type */
Expand Down Expand Up @@ -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<Array<Maybe<VoiceboxConversation>>>;
marketplaceSettings?: Maybe<MarketplaceSettings>;
Expand Down Expand Up @@ -602,6 +609,7 @@ export type QueryListStardogCloudArgs = {

/** Root Query Type */
export type QueryListVoiceboxConversationsArgs = {
filterInput?: InputMaybe<VoiceboxConversationsFilterInput>;
paging?: InputMaybe<PagingInput>;
};

Expand All @@ -613,6 +621,11 @@ export type QuerySearchUsersArgs = {
token: Scalars['String'];
};

/** Root Query Type */
export type QueryVoiceboxConversationCountArgs = {
filterInput?: InputMaybe<VoiceboxConversationsFilterInput>;
};

/** Contains the counts of available cloud resources to sell. */
export type QueueCounts = {
__typename?: 'QueueCounts';
Expand Down Expand Up @@ -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'];
Expand Down Expand Up @@ -849,6 +863,11 @@ export type VoiceboxConversation = {
updated?: Maybe<Scalars['Datetime']>;
};

export type VoiceboxConversationsFilterInput = {
connection_id?: InputMaybe<Scalars['String']>;
include_designer?: InputMaybe<Scalars['Boolean']>;
};

/** A Message within a Voicebox conversation. */
export type VoiceboxMessage = {
__typename?: 'VoiceboxMessage';
Expand Down

0 comments on commit 37dc4fc

Please sign in to comment.