chore: rename service folders to lowercase

This commit is contained in:
Ruslan Bakiev
2026-02-20 12:10:25 +07:00
parent 0fdf5cf021
commit 46cca064df
71 changed files with 10 additions and 10 deletions

View File

@@ -0,0 +1,14 @@
mutation ArchiveCalendarEventMutation($input: ArchiveCalendarEventInput!) {
archiveCalendarEvent(input: $input) {
id
title
start
end
contact
note
isArchived
createdAt
archiveNote
archivedAt
}
}

View File

@@ -0,0 +1,5 @@
mutation ArchiveChatConversationMutation($id: ID!) {
archiveChatConversation(id: $id) {
ok
}
}

View File

@@ -0,0 +1,10 @@
query ChatConversationsQuery {
chatConversations {
id
title
createdAt
updatedAt
lastMessageAt
lastMessageText
}
}

View File

@@ -0,0 +1,32 @@
query ChatMessagesQuery {
chatMessages {
id
role
text
messageKind
requestId
eventType
phase
transient
thinking
tools
toolRuns {
name
status
input
output
at
}
changeSetId
changeStatus
changeSummary
changeItems {
entity
action
title
before
after
}
createdAt
}
}

View File

@@ -0,0 +1,6 @@
mutation ConfirmLatestChangeSetMutation {
confirmLatestChangeSet {
ok
}
}

View File

@@ -0,0 +1,14 @@
mutation CreateCalendarEventMutation($input: CreateCalendarEventInput!) {
createCalendarEvent(input: $input) {
id
title
start
end
contact
note
isArchived
createdAt
archiveNote
archivedAt
}
}

View File

@@ -0,0 +1,10 @@
mutation CreateChatConversationMutation($title: String) {
createChatConversation(title: $title) {
id
title
createdAt
updatedAt
lastMessageAt
lastMessageText
}
}

View File

@@ -0,0 +1,6 @@
mutation CreateCommunicationMutation($input: CreateCommunicationInput!) {
createCommunication(input: $input) {
ok
id
}
}

View File

@@ -0,0 +1,88 @@
query DashboardQuery {
dashboard {
contacts {
id
name
avatar
company
country
location
channels
lastContactAt
description
}
communications {
id
at
contactId
contact
channel
kind
direction
text
audioUrl
duration
transcript
}
calendar {
id
title
start
end
contact
note
isArchived
createdAt
archiveNote
archivedAt
}
deals {
id
contact
title
company
stage
amount
nextStep
summary
currentStepId
steps {
id
title
description
status
dueAt
order
completedAt
}
}
feed {
id
at
contact
text
proposal {
title
details
key
}
decision
decisionNote
}
pins {
id
contact
text
}
documents {
id
title
type
owner
scope
updatedAt
summary
body
}
}
}

View File

@@ -0,0 +1,5 @@
mutation LogPilotNoteMutation($text: String!) {
logPilotNote(text: $text) {
ok
}
}

View File

@@ -0,0 +1,5 @@
mutation LoginMutation($phone: String!, $password: String!) {
login(phone: $phone, password: $password) {
ok
}
}

View File

@@ -0,0 +1,5 @@
mutation LogoutMutation {
logout {
ok
}
}

View File

@@ -0,0 +1,17 @@
query MeQuery {
me {
user {
id
phone
name
}
team {
id
name
}
conversation {
id
title
}
}
}

View File

@@ -0,0 +1,6 @@
mutation RollbackLatestChangeSetMutation {
rollbackLatestChangeSet {
ok
}
}

View File

@@ -0,0 +1,5 @@
mutation SelectChatConversationMutation($id: ID!) {
selectChatConversation(id: $id) {
ok
}
}

View File

@@ -0,0 +1,5 @@
mutation SendPilotMessageMutation($text: String!) {
sendPilotMessage(text: $text) {
ok
}
}

View File

@@ -0,0 +1,6 @@
mutation ToggleContactPinMutation($contact: String!, $text: String!) {
toggleContactPin(contact: $contact, text: $text) {
ok
pinned
}
}

View File

@@ -0,0 +1,6 @@
mutation UpdateCommunicationTranscriptMutation($id: ID!, $transcript: [String!]!) {
updateCommunicationTranscript(id: $id, transcript: $transcript) {
ok
id
}
}

View File

@@ -0,0 +1,6 @@
mutation UpdateFeedDecisionMutation($id: ID!, $decision: String!, $decisionNote: String) {
updateFeedDecision(id: $id, decision: $decision, decisionNote: $decisionNote) {
ok
id
}
}