@droz-js/sdk
Advanced tools
Comparing version 0.5.21 to 0.5.22
{ | ||
"name": "@droz-js/sdk", | ||
"description": "Droz SDK", | ||
"version": "0.5.21", | ||
"version": "0.5.22", | ||
"private": false, | ||
@@ -6,0 +6,0 @@ "exports": { |
@@ -199,2 +199,3 @@ export type Maybe<T> = T; | ||
found: Scalars['Float']['output']; | ||
outOf: Scalars['Float']['output']; | ||
page: Scalars['Float']['output']; | ||
@@ -201,0 +202,0 @@ perPage: Scalars['Float']['output']; |
@@ -193,2 +193,3 @@ export type Maybe<T> = T; | ||
found: Scalars['Float']['output']; | ||
outOf: Scalars['Float']['output']; | ||
page: Scalars['Float']['output']; | ||
@@ -195,0 +196,0 @@ perPage: Scalars['Float']['output']; |
@@ -214,2 +214,3 @@ export type Maybe<T> = T; | ||
found: Scalars['Float']['output']; | ||
outOf: Scalars['Float']['output']; | ||
page: Scalars['Float']['output']; | ||
@@ -216,0 +217,0 @@ perPage: Scalars['Float']['output']; |
@@ -347,2 +347,3 @@ export type Maybe<T> = T; | ||
found: Scalars['Float']['output']; | ||
outOf: Scalars['Float']['output']; | ||
page: Scalars['Float']['output']; | ||
@@ -680,3 +681,3 @@ perPage: Scalars['Float']['output']; | ||
nodes: Array<TicketFragment>; | ||
stats: Pick<SearchResultsStats, 'found' | 'page' | 'perPage' | 'totalPages' | 'searchTime'>; | ||
stats: Pick<SearchResultsStats, 'found' | 'outOf' | 'page' | 'totalPages' | 'perPage' | 'searchTime'>; | ||
facets: Array<(Pick<SearchResultsFacet, 'name'> & { | ||
@@ -807,3 +808,3 @@ values?: Maybe<Array<Pick<SearchResultsFacetValue, 'value' | 'count'>>>; | ||
export declare const ListTicketMessagesDocument = "\n query listTicketMessages($ticketId: ID!, $channelId: ID!, $next: Base64) {\n listTicketMessages(ticketId: $ticketId, channelId: $channelId, next: $next) {\n pageInfo {\n hasNext\n next\n }\n nodes {\n ...ticketMessage\n }\n }\n}\n \n fragment ticketMessage on TicketMessage {\n id\n ticketId\n from\n to\n channelId\n contentType\n content\n filename\n size\n createdAt\n updatedAt\n}\n "; | ||
export declare const SearchTicketsDocument = "\n query searchTickets($q: String, $filters: [TicketSearchFilterInput!], $sortBy: [String!], $page: Float) {\n searchTickets(q: $q, filters: $filters, sortBy: $sortBy, page: $page) {\n nodes {\n ...ticket\n }\n stats {\n found\n page\n perPage\n totalPages\n searchTime\n }\n facets {\n name\n values {\n value\n count\n }\n stats {\n min\n max\n }\n }\n }\n}\n \n fragment ticket on Ticket {\n channelId\n id\n subject\n state\n status\n priority\n tags\n externalProviderId\n externalId\n assignee {\n ...drozChatAgent\n }\n customer {\n ...customer\n }\n triggerApp {\n ...ticketTriggerApp\n }\n channel {\n ...drozChatChannel\n }\n createdAt\n updatedAt\n closedAt\n lastMessageAt\n firstAgentResponseAt\n timeToFirstAgentResponseInMs\n timeToCloseInMs\n messagesCount\n lastMessage\n unreadMessagesCount\n}\n \n fragment drozChatAgent on DrozChatAgent {\n id\n name\n}\n \n\n fragment customer on DrozChatCustomer {\n id\n name\n email\n phone\n document\n createdAt\n updatedAt\n}\n \n\n fragment ticketTriggerApp on TicketTriggerApp {\n drn\n name\n appId\n appName\n appColor\n channels {\n id\n main\n readonly\n hidden\n sources\n unreadMessagesCount\n }\n}\n \n\n fragment drozChatChannel on DrozChatChannel {\n id\n name\n agentIds\n createdAt\n updatedAt\n}\n "; | ||
export declare const SearchTicketsDocument = "\n query searchTickets($q: String, $filters: [TicketSearchFilterInput!], $sortBy: [String!], $page: Float) {\n searchTickets(q: $q, filters: $filters, sortBy: $sortBy, page: $page) {\n nodes {\n ...ticket\n }\n stats {\n found\n outOf\n page\n totalPages\n perPage\n searchTime\n }\n facets {\n name\n values {\n value\n count\n }\n stats {\n min\n max\n }\n }\n }\n}\n \n fragment ticket on Ticket {\n channelId\n id\n subject\n state\n status\n priority\n tags\n externalProviderId\n externalId\n assignee {\n ...drozChatAgent\n }\n customer {\n ...customer\n }\n triggerApp {\n ...ticketTriggerApp\n }\n channel {\n ...drozChatChannel\n }\n createdAt\n updatedAt\n closedAt\n lastMessageAt\n firstAgentResponseAt\n timeToFirstAgentResponseInMs\n timeToCloseInMs\n messagesCount\n lastMessage\n unreadMessagesCount\n}\n \n fragment drozChatAgent on DrozChatAgent {\n id\n name\n}\n \n\n fragment customer on DrozChatCustomer {\n id\n name\n email\n phone\n document\n createdAt\n updatedAt\n}\n \n\n fragment ticketTriggerApp on TicketTriggerApp {\n drn\n name\n appId\n appName\n appColor\n channels {\n id\n main\n readonly\n hidden\n sources\n unreadMessagesCount\n }\n}\n \n\n fragment drozChatChannel on DrozChatChannel {\n id\n name\n agentIds\n createdAt\n updatedAt\n}\n "; | ||
export declare const CreateTicketDocument = "\n mutation createTicket($input: CreateTicketInput!) {\n createTicket(input: $input) {\n ...ticketWithSession\n }\n}\n \n fragment ticketWithSession on Ticket {\n ...ticket\n sessionAttributes {\n ...sessionAttributes\n }\n}\n \n fragment ticket on Ticket {\n channelId\n id\n subject\n state\n status\n priority\n tags\n externalProviderId\n externalId\n assignee {\n ...drozChatAgent\n }\n customer {\n ...customer\n }\n triggerApp {\n ...ticketTriggerApp\n }\n channel {\n ...drozChatChannel\n }\n createdAt\n updatedAt\n closedAt\n lastMessageAt\n firstAgentResponseAt\n timeToFirstAgentResponseInMs\n timeToCloseInMs\n messagesCount\n lastMessage\n unreadMessagesCount\n}\n \n fragment drozChatAgent on DrozChatAgent {\n id\n name\n}\n \n\n fragment customer on DrozChatCustomer {\n id\n name\n email\n phone\n document\n createdAt\n updatedAt\n}\n \n\n fragment ticketTriggerApp on TicketTriggerApp {\n drn\n name\n appId\n appName\n appColor\n channels {\n id\n main\n readonly\n hidden\n sources\n unreadMessagesCount\n }\n}\n \n\n fragment drozChatChannel on DrozChatChannel {\n id\n name\n agentIds\n createdAt\n updatedAt\n}\n \n\n fragment sessionAttributes on TicketSessionAttributes {\n organization\n source\n order\n products\n review\n tags\n}\n "; | ||
@@ -810,0 +811,0 @@ export declare const UpdateTicketDocument = "\n mutation updateTicket($input: UpdateTicketInput!) {\n updateTicket(input: $input) {\n ...ticketWithSession\n }\n}\n \n fragment ticketWithSession on Ticket {\n ...ticket\n sessionAttributes {\n ...sessionAttributes\n }\n}\n \n fragment ticket on Ticket {\n channelId\n id\n subject\n state\n status\n priority\n tags\n externalProviderId\n externalId\n assignee {\n ...drozChatAgent\n }\n customer {\n ...customer\n }\n triggerApp {\n ...ticketTriggerApp\n }\n channel {\n ...drozChatChannel\n }\n createdAt\n updatedAt\n closedAt\n lastMessageAt\n firstAgentResponseAt\n timeToFirstAgentResponseInMs\n timeToCloseInMs\n messagesCount\n lastMessage\n unreadMessagesCount\n}\n \n fragment drozChatAgent on DrozChatAgent {\n id\n name\n}\n \n\n fragment customer on DrozChatCustomer {\n id\n name\n email\n phone\n document\n createdAt\n updatedAt\n}\n \n\n fragment ticketTriggerApp on TicketTriggerApp {\n drn\n name\n appId\n appName\n appColor\n channels {\n id\n main\n readonly\n hidden\n sources\n unreadMessagesCount\n }\n}\n \n\n fragment drozChatChannel on DrozChatChannel {\n id\n name\n agentIds\n createdAt\n updatedAt\n}\n \n\n fragment sessionAttributes on TicketSessionAttributes {\n organization\n source\n order\n products\n review\n tags\n}\n "; |
@@ -331,5 +331,6 @@ "use strict"; | ||
found | ||
outOf | ||
page | ||
totalPages | ||
perPage | ||
totalPages | ||
searchTime | ||
@@ -336,0 +337,0 @@ } |
@@ -308,2 +308,3 @@ export type Maybe<T> = T; | ||
found: Scalars['Float']['output']; | ||
outOf: Scalars['Float']['output']; | ||
page: Scalars['Float']['output']; | ||
@@ -310,0 +311,0 @@ perPage: Scalars['Float']['output']; |
@@ -205,2 +205,3 @@ export type Maybe<T> = T; | ||
found: Scalars['Float']['output']; | ||
outOf: Scalars['Float']['output']; | ||
page: Scalars['Float']['output']; | ||
@@ -207,0 +208,0 @@ perPage: Scalars['Float']['output']; |
@@ -230,2 +230,3 @@ export type Maybe<T> = T; | ||
found: Scalars['Float']['output']; | ||
outOf: Scalars['Float']['output']; | ||
page: Scalars['Float']['output']; | ||
@@ -232,0 +233,0 @@ perPage: Scalars['Float']['output']; |
@@ -169,2 +169,3 @@ export type Maybe<T> = T; | ||
found: Scalars['Float']['output']; | ||
outOf: Scalars['Float']['output']; | ||
page: Scalars['Float']['output']; | ||
@@ -171,0 +172,0 @@ perPage: Scalars['Float']['output']; |
@@ -193,2 +193,3 @@ export type Maybe<T> = T; | ||
found: Scalars['Float']['output']; | ||
outOf: Scalars['Float']['output']; | ||
page: Scalars['Float']['output']; | ||
@@ -195,0 +196,0 @@ perPage: Scalars['Float']['output']; |
Sorry, the diff of this file is too big to display
430787
9424