Skip to content

Commit

Permalink
remove assistantContent references from codegend e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
atierian committed Oct 3, 2024
1 parent 473b94d commit 2d7dd71
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 50 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
export type ConversationMessagePirateChat = {
__typename: 'ConversationMessagePirateChat';
aiContext?: string | null;
assistantContent?: Array<ContentBlock | null> | null;
content?: Array<ContentBlock | null> | null;
conversation?: ConversationPirateChat | null;
conversationId: string;
Expand Down Expand Up @@ -285,7 +284,6 @@ export type ModelConversationMessagePirateChatConditionInput = {

export type CreateConversationMessagePirateChatInput = {
aiContext?: string | null;
assistantContent?: Array<ContentBlockInput | null> | null;
content?: Array<ContentBlockInput | null> | null;
conversationId: string;
id?: string | null;
Expand Down Expand Up @@ -386,10 +384,6 @@ export type GetConversationMessagePirateChatQuery = {
getConversationMessagePirateChat?: {
__typename: 'ConversationMessagePirateChat';
aiContext?: string | null;
assistantContent?: Array<{
__typename: 'ContentBlock';
text?: string | null;
} | null> | null;
content?: Array<{
__typename: 'ContentBlock';
text?: string | null;
Expand Down Expand Up @@ -488,10 +482,6 @@ export type CreateAssistantResponsePirateChatMutation = {
createAssistantResponsePirateChat?: {
__typename: 'ConversationMessagePirateChat';
aiContext?: string | null;
assistantContent?: Array<{
__typename: 'ContentBlock';
text?: string | null;
} | null> | null;
content?: Array<{
__typename: 'ContentBlock';
text?: string | null;
Expand Down Expand Up @@ -526,10 +516,6 @@ export type CreateConversationMessagePirateChatMutation = {
createConversationMessagePirateChat?: {
__typename: 'ConversationMessagePirateChat';
aiContext?: string | null;
assistantContent?: Array<{
__typename: 'ContentBlock';
text?: string | null;
} | null> | null;
content?: Array<{
__typename: 'ContentBlock';
text?: string | null;
Expand Down Expand Up @@ -585,10 +571,6 @@ export type DeleteConversationMessagePirateChatMutation = {
deleteConversationMessagePirateChat?: {
__typename: 'ConversationMessagePirateChat';
aiContext?: string | null;
assistantContent?: Array<{
__typename: 'ContentBlock';
text?: string | null;
} | null> | null;
content?: Array<{
__typename: 'ContentBlock';
text?: string | null;
Expand Down Expand Up @@ -659,10 +641,6 @@ export type PirateChatMutation = {
__typename: 'ToolConfiguration';
} | null;
updatedAt?: string | null;
assistantContent?: Array<{
__typename: 'ContentBlock';
text?: string | null;
} | null> | null;
conversation?: {
__typename: 'ConversationPirateChat';
createdAt: string;
Expand All @@ -683,10 +661,6 @@ export type OnCreateAssistantResponsePirateChatSubscription = {
onCreateAssistantResponsePirateChat?: {
__typename: 'ConversationMessagePirateChat';
aiContext?: string | null;
assistantContent?: Array<{
__typename: 'ContentBlock';
text?: string | null;
} | null> | null;
content?: Array<{
__typename: 'ContentBlock';
text?: string | null;
Expand Down Expand Up @@ -721,10 +695,6 @@ export type OnCreateConversationMessagePirateChatSubscription = {
onCreateConversationMessagePirateChat?: {
__typename: 'ConversationMessagePirateChat';
aiContext?: string | null;
assistantContent?: Array<{
__typename: 'ContentBlock';
text?: string | null;
} | null> | null;
content?: Array<{
__typename: 'ContentBlock';
text?: string | null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ export const createAssistantResponsePirateChat = /* GraphQL */ `mutation CreateA
) {
createAssistantResponsePirateChat(input: $input) {
aiContext
assistantContent {
text
__typename
}
content {
text
__typename
Expand Down Expand Up @@ -49,10 +45,6 @@ export const createConversationMessagePirateChat = /* GraphQL */ `mutation Creat
) {
createConversationMessagePirateChat(condition: $condition, input: $input) {
aiContext
assistantContent {
text
__typename
}
content {
text
__typename
Expand Down Expand Up @@ -104,10 +96,6 @@ export const deleteConversationMessagePirateChat = /* GraphQL */ `mutation Delet
) {
deleteConversationMessagePirateChat(condition: $condition, input: $input) {
aiContext
assistantContent {
text
__typename
}
content {
text
__typename
Expand Down Expand Up @@ -181,10 +169,6 @@ export const pirateChat = /* GraphQL */ `mutation PirateChat(
updatedAt
... on ConversationMessagePirateChat {
assistantContent {
text
__typename
}
conversation {
createdAt
id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@ type GeneratedQuery<InputType, OutputType> = string & {
export const getConversationMessagePirateChat = /* GraphQL */ `query GetConversationMessagePirateChat($id: ID!) {
getConversationMessagePirateChat(id: $id) {
aiContext
assistantContent {
text
__typename
}
content {
text
__typename
Expand Down

0 comments on commit 2d7dd71

Please sign in to comment.