graphlit-client 1.0.20260430002 → 1.0.20260502001
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/client.d.ts
CHANGED
|
@@ -1576,27 +1576,6 @@ declare class Graphlit {
|
|
|
1576
1576
|
* @returns The Zendesk users.
|
|
1577
1577
|
*/
|
|
1578
1578
|
queryZendeskUsers(properties: Types.ZendeskDiscoveryInput, query?: string): Promise<Types.QueryZendeskUsersQuery>;
|
|
1579
|
-
/**
|
|
1580
|
-
* Queries Intercom admins.
|
|
1581
|
-
* @param properties - The Intercom ticket feed query properties.
|
|
1582
|
-
* @param query - The search query, optional.
|
|
1583
|
-
* @returns The Intercom admins.
|
|
1584
|
-
*/
|
|
1585
|
-
queryIntercomAdmins(properties: Types.IntercomTicketsFeedPropertiesInput, query?: string): Promise<Types.QueryIntercomAdminsQuery>;
|
|
1586
|
-
/**
|
|
1587
|
-
* Queries Intercom contacts.
|
|
1588
|
-
* @param properties - The Intercom ticket feed query properties.
|
|
1589
|
-
* @param query - The search query, optional.
|
|
1590
|
-
* @returns The Intercom contacts.
|
|
1591
|
-
*/
|
|
1592
|
-
queryIntercomContacts(properties: Types.IntercomTicketsFeedPropertiesInput, query?: string): Promise<Types.QueryIntercomContactsQuery>;
|
|
1593
|
-
/**
|
|
1594
|
-
* Queries Intercom tags.
|
|
1595
|
-
* @param properties - The Intercom ticket feed query properties.
|
|
1596
|
-
* @param query - The search query, optional.
|
|
1597
|
-
* @returns The Intercom tags.
|
|
1598
|
-
*/
|
|
1599
|
-
queryIntercomTags(properties: Types.IntercomTicketsFeedPropertiesInput, query?: string): Promise<Types.QueryIntercomTagsQuery>;
|
|
1600
1579
|
/**
|
|
1601
1580
|
* Queries Intercom teams.
|
|
1602
1581
|
* @param properties - The Intercom ticket feed query properties.
|
|
@@ -1604,21 +1583,6 @@ declare class Graphlit {
|
|
|
1604
1583
|
* @returns The Intercom teams.
|
|
1605
1584
|
*/
|
|
1606
1585
|
queryIntercomTeams(properties: Types.IntercomTicketsFeedPropertiesInput, query?: string): Promise<Types.QueryIntercomTeamsQuery>;
|
|
1607
|
-
/**
|
|
1608
|
-
* Queries Intercom ticket types.
|
|
1609
|
-
* @param properties - The Intercom ticket feed query properties.
|
|
1610
|
-
* @param query - The search query, optional.
|
|
1611
|
-
* @returns The Intercom ticket types.
|
|
1612
|
-
*/
|
|
1613
|
-
queryIntercomTicketTypes(properties: Types.IntercomTicketsFeedPropertiesInput, query?: string): Promise<Types.QueryIntercomTicketTypesQuery>;
|
|
1614
|
-
/**
|
|
1615
|
-
* Queries Intercom ticket states.
|
|
1616
|
-
* @param properties - The Intercom ticket feed query properties.
|
|
1617
|
-
* @param ticketTypeId - The ticket type ID, optional.
|
|
1618
|
-
* @param query - The search query, optional.
|
|
1619
|
-
* @returns The Intercom ticket states.
|
|
1620
|
-
*/
|
|
1621
|
-
queryIntercomTicketStates(properties: Types.IntercomTicketsFeedPropertiesInput, ticketTypeId?: string, query?: string): Promise<Types.QueryIntercomTicketStatesQuery>;
|
|
1622
1586
|
/**
|
|
1623
1587
|
* Queries Gusto companies.
|
|
1624
1588
|
* @param properties - The Gusto company query properties.
|
package/dist/client.js
CHANGED
|
@@ -2892,42 +2892,6 @@ class Graphlit {
|
|
|
2892
2892
|
query: query,
|
|
2893
2893
|
});
|
|
2894
2894
|
}
|
|
2895
|
-
/**
|
|
2896
|
-
* Queries Intercom admins.
|
|
2897
|
-
* @param properties - The Intercom ticket feed query properties.
|
|
2898
|
-
* @param query - The search query, optional.
|
|
2899
|
-
* @returns The Intercom admins.
|
|
2900
|
-
*/
|
|
2901
|
-
async queryIntercomAdmins(properties, query) {
|
|
2902
|
-
return this.queryAndCheckError(Documents.QueryIntercomAdmins, {
|
|
2903
|
-
properties: properties,
|
|
2904
|
-
query: query,
|
|
2905
|
-
});
|
|
2906
|
-
}
|
|
2907
|
-
/**
|
|
2908
|
-
* Queries Intercom contacts.
|
|
2909
|
-
* @param properties - The Intercom ticket feed query properties.
|
|
2910
|
-
* @param query - The search query, optional.
|
|
2911
|
-
* @returns The Intercom contacts.
|
|
2912
|
-
*/
|
|
2913
|
-
async queryIntercomContacts(properties, query) {
|
|
2914
|
-
return this.queryAndCheckError(Documents.QueryIntercomContacts, {
|
|
2915
|
-
properties: properties,
|
|
2916
|
-
query: query,
|
|
2917
|
-
});
|
|
2918
|
-
}
|
|
2919
|
-
/**
|
|
2920
|
-
* Queries Intercom tags.
|
|
2921
|
-
* @param properties - The Intercom ticket feed query properties.
|
|
2922
|
-
* @param query - The search query, optional.
|
|
2923
|
-
* @returns The Intercom tags.
|
|
2924
|
-
*/
|
|
2925
|
-
async queryIntercomTags(properties, query) {
|
|
2926
|
-
return this.queryAndCheckError(Documents.QueryIntercomTags, {
|
|
2927
|
-
properties: properties,
|
|
2928
|
-
query: query,
|
|
2929
|
-
});
|
|
2930
|
-
}
|
|
2931
2895
|
/**
|
|
2932
2896
|
* Queries Intercom teams.
|
|
2933
2897
|
* @param properties - The Intercom ticket feed query properties.
|
|
@@ -2940,32 +2904,6 @@ class Graphlit {
|
|
|
2940
2904
|
query: query,
|
|
2941
2905
|
});
|
|
2942
2906
|
}
|
|
2943
|
-
/**
|
|
2944
|
-
* Queries Intercom ticket types.
|
|
2945
|
-
* @param properties - The Intercom ticket feed query properties.
|
|
2946
|
-
* @param query - The search query, optional.
|
|
2947
|
-
* @returns The Intercom ticket types.
|
|
2948
|
-
*/
|
|
2949
|
-
async queryIntercomTicketTypes(properties, query) {
|
|
2950
|
-
return this.queryAndCheckError(Documents.QueryIntercomTicketTypes, {
|
|
2951
|
-
properties: properties,
|
|
2952
|
-
query: query,
|
|
2953
|
-
});
|
|
2954
|
-
}
|
|
2955
|
-
/**
|
|
2956
|
-
* Queries Intercom ticket states.
|
|
2957
|
-
* @param properties - The Intercom ticket feed query properties.
|
|
2958
|
-
* @param ticketTypeId - The ticket type ID, optional.
|
|
2959
|
-
* @param query - The search query, optional.
|
|
2960
|
-
* @returns The Intercom ticket states.
|
|
2961
|
-
*/
|
|
2962
|
-
async queryIntercomTicketStates(properties, ticketTypeId, query) {
|
|
2963
|
-
return this.queryAndCheckError(Documents.QueryIntercomTicketStates, {
|
|
2964
|
-
properties: properties,
|
|
2965
|
-
ticketTypeId: ticketTypeId,
|
|
2966
|
-
query: query,
|
|
2967
|
-
});
|
|
2968
|
-
}
|
|
2969
2907
|
/**
|
|
2970
2908
|
* Queries Gusto companies.
|
|
2971
2909
|
* @param properties - The Gusto company query properties.
|
|
@@ -206,12 +206,7 @@ export declare const QueryGoogleDriveFolders: import("graphql").DocumentNode;
|
|
|
206
206
|
export declare const QueryGustoCompanies: import("graphql").DocumentNode;
|
|
207
207
|
export declare const QueryGustoDepartments: import("graphql").DocumentNode;
|
|
208
208
|
export declare const QueryGustoLocations: import("graphql").DocumentNode;
|
|
209
|
-
export declare const QueryIntercomAdmins: import("graphql").DocumentNode;
|
|
210
|
-
export declare const QueryIntercomContacts: import("graphql").DocumentNode;
|
|
211
|
-
export declare const QueryIntercomTags: import("graphql").DocumentNode;
|
|
212
209
|
export declare const QueryIntercomTeams: import("graphql").DocumentNode;
|
|
213
|
-
export declare const QueryIntercomTicketStates: import("graphql").DocumentNode;
|
|
214
|
-
export declare const QueryIntercomTicketTypes: import("graphql").DocumentNode;
|
|
215
210
|
export declare const QueryJiraIssueTypes: import("graphql").DocumentNode;
|
|
216
211
|
export declare const QueryJiraProjects: import("graphql").DocumentNode;
|
|
217
212
|
export declare const QueryLinearProjects: import("graphql").DocumentNode;
|
|
@@ -416,9 +416,9 @@ export const GetAgent = gql `
|
|
|
416
416
|
teamId
|
|
417
417
|
title
|
|
418
418
|
priority
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
419
|
+
state
|
|
420
|
+
assignee
|
|
421
|
+
labels
|
|
422
422
|
projectId
|
|
423
423
|
}
|
|
424
424
|
jira {
|
|
@@ -429,7 +429,7 @@ export const GetAgent = gql `
|
|
|
429
429
|
issueType
|
|
430
430
|
summary
|
|
431
431
|
priority
|
|
432
|
-
|
|
432
|
+
assignee
|
|
433
433
|
labels
|
|
434
434
|
status
|
|
435
435
|
}
|
|
@@ -441,7 +441,7 @@ export const GetAgent = gql `
|
|
|
441
441
|
priority
|
|
442
442
|
status
|
|
443
443
|
type
|
|
444
|
-
|
|
444
|
+
assignee
|
|
445
445
|
groupId
|
|
446
446
|
tags
|
|
447
447
|
visibility
|
|
@@ -449,19 +449,15 @@ export const GetAgent = gql `
|
|
|
449
449
|
intercom {
|
|
450
450
|
ticketId
|
|
451
451
|
ticketUri
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
contactExternalId
|
|
455
|
-
contactEmail
|
|
452
|
+
ticketType
|
|
453
|
+
requesterEmail
|
|
456
454
|
conversationToLinkId
|
|
457
455
|
companyId
|
|
458
|
-
adminId
|
|
459
456
|
title
|
|
460
|
-
stateId
|
|
461
457
|
state
|
|
462
|
-
|
|
458
|
+
assignee
|
|
463
459
|
teamId
|
|
464
|
-
|
|
460
|
+
tags
|
|
465
461
|
visibility
|
|
466
462
|
isShared
|
|
467
463
|
skipNotifications
|
|
@@ -891,9 +887,9 @@ export const QueryAgents = gql `
|
|
|
891
887
|
teamId
|
|
892
888
|
title
|
|
893
889
|
priority
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
890
|
+
state
|
|
891
|
+
assignee
|
|
892
|
+
labels
|
|
897
893
|
projectId
|
|
898
894
|
}
|
|
899
895
|
jira {
|
|
@@ -904,7 +900,7 @@ export const QueryAgents = gql `
|
|
|
904
900
|
issueType
|
|
905
901
|
summary
|
|
906
902
|
priority
|
|
907
|
-
|
|
903
|
+
assignee
|
|
908
904
|
labels
|
|
909
905
|
status
|
|
910
906
|
}
|
|
@@ -916,7 +912,7 @@ export const QueryAgents = gql `
|
|
|
916
912
|
priority
|
|
917
913
|
status
|
|
918
914
|
type
|
|
919
|
-
|
|
915
|
+
assignee
|
|
920
916
|
groupId
|
|
921
917
|
tags
|
|
922
918
|
visibility
|
|
@@ -924,19 +920,15 @@ export const QueryAgents = gql `
|
|
|
924
920
|
intercom {
|
|
925
921
|
ticketId
|
|
926
922
|
ticketUri
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
contactExternalId
|
|
930
|
-
contactEmail
|
|
923
|
+
ticketType
|
|
924
|
+
requesterEmail
|
|
931
925
|
conversationToLinkId
|
|
932
926
|
companyId
|
|
933
|
-
adminId
|
|
934
927
|
title
|
|
935
|
-
stateId
|
|
936
928
|
state
|
|
937
|
-
|
|
929
|
+
assignee
|
|
938
930
|
teamId
|
|
939
|
-
|
|
931
|
+
tags
|
|
940
932
|
visibility
|
|
941
933
|
isShared
|
|
942
934
|
skipNotifications
|
|
@@ -12750,39 +12742,6 @@ export const QueryGustoLocations = gql `
|
|
|
12750
12742
|
}
|
|
12751
12743
|
}
|
|
12752
12744
|
`;
|
|
12753
|
-
export const QueryIntercomAdmins = gql `
|
|
12754
|
-
query QueryIntercomAdmins($properties: IntercomTicketsFeedPropertiesInput!, $query: String) {
|
|
12755
|
-
intercomAdmins(properties: $properties, query: $query) {
|
|
12756
|
-
results {
|
|
12757
|
-
id
|
|
12758
|
-
name
|
|
12759
|
-
email
|
|
12760
|
-
}
|
|
12761
|
-
}
|
|
12762
|
-
}
|
|
12763
|
-
`;
|
|
12764
|
-
export const QueryIntercomContacts = gql `
|
|
12765
|
-
query QueryIntercomContacts($properties: IntercomTicketsFeedPropertiesInput!, $query: String) {
|
|
12766
|
-
intercomContacts(properties: $properties, query: $query) {
|
|
12767
|
-
results {
|
|
12768
|
-
id
|
|
12769
|
-
externalId
|
|
12770
|
-
name
|
|
12771
|
-
email
|
|
12772
|
-
}
|
|
12773
|
-
}
|
|
12774
|
-
}
|
|
12775
|
-
`;
|
|
12776
|
-
export const QueryIntercomTags = gql `
|
|
12777
|
-
query QueryIntercomTags($properties: IntercomTicketsFeedPropertiesInput!, $query: String) {
|
|
12778
|
-
intercomTags(properties: $properties, query: $query) {
|
|
12779
|
-
results {
|
|
12780
|
-
id
|
|
12781
|
-
name
|
|
12782
|
-
}
|
|
12783
|
-
}
|
|
12784
|
-
}
|
|
12785
|
-
`;
|
|
12786
12745
|
export const QueryIntercomTeams = gql `
|
|
12787
12746
|
query QueryIntercomTeams($properties: IntercomTicketsFeedPropertiesInput!, $query: String) {
|
|
12788
12747
|
intercomTeams(properties: $properties, query: $query) {
|
|
@@ -12793,32 +12752,6 @@ export const QueryIntercomTeams = gql `
|
|
|
12793
12752
|
}
|
|
12794
12753
|
}
|
|
12795
12754
|
`;
|
|
12796
|
-
export const QueryIntercomTicketStates = gql `
|
|
12797
|
-
query QueryIntercomTicketStates($properties: IntercomTicketsFeedPropertiesInput!, $ticketTypeId: String, $query: String) {
|
|
12798
|
-
intercomTicketStates(
|
|
12799
|
-
properties: $properties
|
|
12800
|
-
ticketTypeId: $ticketTypeId
|
|
12801
|
-
query: $query
|
|
12802
|
-
) {
|
|
12803
|
-
results {
|
|
12804
|
-
id
|
|
12805
|
-
name
|
|
12806
|
-
type
|
|
12807
|
-
}
|
|
12808
|
-
}
|
|
12809
|
-
}
|
|
12810
|
-
`;
|
|
12811
|
-
export const QueryIntercomTicketTypes = gql `
|
|
12812
|
-
query QueryIntercomTicketTypes($properties: IntercomTicketsFeedPropertiesInput!, $query: String) {
|
|
12813
|
-
intercomTicketTypes(properties: $properties, query: $query) {
|
|
12814
|
-
results {
|
|
12815
|
-
id
|
|
12816
|
-
name
|
|
12817
|
-
description
|
|
12818
|
-
}
|
|
12819
|
-
}
|
|
12820
|
-
}
|
|
12821
|
-
`;
|
|
12822
12755
|
export const QueryJiraIssueTypes = gql `
|
|
12823
12756
|
query QueryJiraIssueTypes($properties: JiraIssueTypesInput!) {
|
|
12824
12757
|
jiraIssueTypes(properties: $properties) {
|
|
@@ -11685,44 +11685,10 @@ export declare enum IntegrationServiceTypes {
|
|
|
11685
11685
|
/** HTTP WebHook integration service */
|
|
11686
11686
|
WebHook = "WEB_HOOK"
|
|
11687
11687
|
}
|
|
11688
|
-
/** Represents an Intercom admin. */
|
|
11689
|
-
export type IntercomAdminResult = {
|
|
11690
|
-
__typename?: 'IntercomAdminResult';
|
|
11691
|
-
/** The admin email. */
|
|
11692
|
-
email?: Maybe<Scalars['String']['output']>;
|
|
11693
|
-
/** The Intercom admin identifier. */
|
|
11694
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
11695
|
-
/** The admin name. */
|
|
11696
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
11697
|
-
};
|
|
11698
|
-
/** Represents Intercom admins. */
|
|
11699
|
-
export type IntercomAdminResults = {
|
|
11700
|
-
__typename?: 'IntercomAdminResults';
|
|
11701
|
-
/** The Intercom admins. */
|
|
11702
|
-
results?: Maybe<Array<Maybe<IntercomAdminResult>>>;
|
|
11703
|
-
};
|
|
11704
11688
|
export declare enum IntercomAuthenticationTypes {
|
|
11705
11689
|
AccessToken = "ACCESS_TOKEN",
|
|
11706
11690
|
Connector = "CONNECTOR"
|
|
11707
11691
|
}
|
|
11708
|
-
/** Represents an Intercom contact. */
|
|
11709
|
-
export type IntercomContactResult = {
|
|
11710
|
-
__typename?: 'IntercomContactResult';
|
|
11711
|
-
/** The contact email. */
|
|
11712
|
-
email?: Maybe<Scalars['String']['output']>;
|
|
11713
|
-
/** The external contact identifier. */
|
|
11714
|
-
externalId?: Maybe<Scalars['String']['output']>;
|
|
11715
|
-
/** The Intercom contact identifier. */
|
|
11716
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
11717
|
-
/** The contact name. */
|
|
11718
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
11719
|
-
};
|
|
11720
|
-
/** Represents Intercom contacts. */
|
|
11721
|
-
export type IntercomContactResults = {
|
|
11722
|
-
__typename?: 'IntercomContactResults';
|
|
11723
|
-
/** The Intercom contacts. */
|
|
11724
|
-
results?: Maybe<Array<Maybe<IntercomContactResult>>>;
|
|
11725
|
-
};
|
|
11726
11692
|
export declare enum IntercomConversationsAuthenticationTypes {
|
|
11727
11693
|
AccessToken = "ACCESS_TOKEN",
|
|
11728
11694
|
Connector = "CONNECTOR"
|
|
@@ -11806,36 +11772,28 @@ export type IntercomConversationsFeedPropertiesUpdateInput = {
|
|
|
11806
11772
|
/** Represents the Intercom distribution properties. */
|
|
11807
11773
|
export type IntercomDistributionProperties = {
|
|
11808
11774
|
__typename?: 'IntercomDistributionProperties';
|
|
11809
|
-
/** The
|
|
11810
|
-
|
|
11811
|
-
/** The assignee ID. */
|
|
11812
|
-
assigneeId?: Maybe<Scalars['String']['output']>;
|
|
11775
|
+
/** The assignee email or name. */
|
|
11776
|
+
assignee?: Maybe<Scalars['String']['output']>;
|
|
11813
11777
|
/** The company ID. */
|
|
11814
11778
|
companyId?: Maybe<Scalars['String']['output']>;
|
|
11815
|
-
/** The contact email address. */
|
|
11816
|
-
contactEmail?: Maybe<Scalars['String']['output']>;
|
|
11817
|
-
/** The external contact ID. */
|
|
11818
|
-
contactExternalId?: Maybe<Scalars['String']['output']>;
|
|
11819
|
-
/** The Intercom contact ID. */
|
|
11820
|
-
contactId?: Maybe<Scalars['String']['output']>;
|
|
11821
11779
|
/** The conversation ID to link to the ticket. */
|
|
11822
11780
|
conversationToLinkId?: Maybe<Scalars['String']['output']>;
|
|
11823
11781
|
/** Whether the ticket is shared with users. */
|
|
11824
11782
|
isShared?: Maybe<Scalars['Boolean']['output']>;
|
|
11783
|
+
/** The requester email address. */
|
|
11784
|
+
requesterEmail?: Maybe<Scalars['String']['output']>;
|
|
11825
11785
|
/** Whether to skip Intercom notifications. */
|
|
11826
11786
|
skipNotifications?: Maybe<Scalars['Boolean']['output']>;
|
|
11827
|
-
/** The ticket state. */
|
|
11787
|
+
/** The ticket state name or type. */
|
|
11828
11788
|
state?: Maybe<Scalars['String']['output']>;
|
|
11829
|
-
/** The
|
|
11830
|
-
|
|
11831
|
-
/** The tag IDs. */
|
|
11832
|
-
tagIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
11789
|
+
/** The tag names. */
|
|
11790
|
+
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
11833
11791
|
/** The team assignee ID. */
|
|
11834
11792
|
teamId?: Maybe<Scalars['String']['output']>;
|
|
11835
11793
|
/** The Intercom ticket ID. */
|
|
11836
11794
|
ticketId?: Maybe<Scalars['String']['output']>;
|
|
11837
|
-
/** The Intercom ticket type
|
|
11838
|
-
|
|
11795
|
+
/** The Intercom ticket type name. */
|
|
11796
|
+
ticketType?: Maybe<Scalars['String']['output']>;
|
|
11839
11797
|
/** The Intercom ticket URI. */
|
|
11840
11798
|
ticketUri?: Maybe<Scalars['String']['output']>;
|
|
11841
11799
|
/** The ticket title. */
|
|
@@ -11845,36 +11803,28 @@ export type IntercomDistributionProperties = {
|
|
|
11845
11803
|
};
|
|
11846
11804
|
/** Represents the Intercom distribution properties. */
|
|
11847
11805
|
export type IntercomDistributionPropertiesInput = {
|
|
11848
|
-
/** The
|
|
11849
|
-
|
|
11850
|
-
/** The assignee ID. */
|
|
11851
|
-
assigneeId?: InputMaybe<Scalars['String']['input']>;
|
|
11806
|
+
/** The assignee email or name. */
|
|
11807
|
+
assignee?: InputMaybe<Scalars['String']['input']>;
|
|
11852
11808
|
/** The company ID. */
|
|
11853
11809
|
companyId?: InputMaybe<Scalars['String']['input']>;
|
|
11854
|
-
/** The contact email address. */
|
|
11855
|
-
contactEmail?: InputMaybe<Scalars['String']['input']>;
|
|
11856
|
-
/** The external contact ID. */
|
|
11857
|
-
contactExternalId?: InputMaybe<Scalars['String']['input']>;
|
|
11858
|
-
/** The Intercom contact ID. */
|
|
11859
|
-
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
11860
11810
|
/** The conversation ID to link to the ticket. */
|
|
11861
11811
|
conversationToLinkId?: InputMaybe<Scalars['String']['input']>;
|
|
11862
11812
|
/** Whether the ticket is shared with users. */
|
|
11863
11813
|
isShared?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11814
|
+
/** The requester email address. */
|
|
11815
|
+
requesterEmail?: InputMaybe<Scalars['String']['input']>;
|
|
11864
11816
|
/** Whether to skip Intercom notifications. */
|
|
11865
11817
|
skipNotifications?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11866
|
-
/** The ticket state. */
|
|
11818
|
+
/** The ticket state name or type. */
|
|
11867
11819
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
11868
|
-
/** The
|
|
11869
|
-
|
|
11870
|
-
/** The tag IDs. */
|
|
11871
|
-
tagIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
11820
|
+
/** The tag names. */
|
|
11821
|
+
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
11872
11822
|
/** The team assignee ID. */
|
|
11873
11823
|
teamId?: InputMaybe<Scalars['String']['input']>;
|
|
11874
11824
|
/** The Intercom ticket ID. */
|
|
11875
11825
|
ticketId?: InputMaybe<Scalars['String']['input']>;
|
|
11876
|
-
/** The Intercom ticket type
|
|
11877
|
-
|
|
11826
|
+
/** The Intercom ticket type name. */
|
|
11827
|
+
ticketType?: InputMaybe<Scalars['String']['input']>;
|
|
11878
11828
|
/** The Intercom ticket URI. */
|
|
11879
11829
|
ticketUri?: InputMaybe<Scalars['String']['input']>;
|
|
11880
11830
|
/** The ticket title. */
|
|
@@ -11938,20 +11888,6 @@ export declare enum IntercomIssueAuthenticationTypes {
|
|
|
11938
11888
|
AccessToken = "ACCESS_TOKEN",
|
|
11939
11889
|
Connector = "CONNECTOR"
|
|
11940
11890
|
}
|
|
11941
|
-
/** Represents an Intercom tag. */
|
|
11942
|
-
export type IntercomTagResult = {
|
|
11943
|
-
__typename?: 'IntercomTagResult';
|
|
11944
|
-
/** The Intercom tag identifier. */
|
|
11945
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
11946
|
-
/** The Intercom tag name. */
|
|
11947
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
11948
|
-
};
|
|
11949
|
-
/** Represents Intercom tags. */
|
|
11950
|
-
export type IntercomTagResults = {
|
|
11951
|
-
__typename?: 'IntercomTagResults';
|
|
11952
|
-
/** The Intercom tags. */
|
|
11953
|
-
results?: Maybe<Array<Maybe<IntercomTagResult>>>;
|
|
11954
|
-
};
|
|
11955
11891
|
/** Represents an Intercom team. */
|
|
11956
11892
|
export type IntercomTeamResult = {
|
|
11957
11893
|
__typename?: 'IntercomTeamResult';
|
|
@@ -11966,38 +11902,6 @@ export type IntercomTeamResults = {
|
|
|
11966
11902
|
/** The Intercom teams. */
|
|
11967
11903
|
results?: Maybe<Array<Maybe<IntercomTeamResult>>>;
|
|
11968
11904
|
};
|
|
11969
|
-
/** Represents an Intercom ticket state. */
|
|
11970
|
-
export type IntercomTicketStateResult = {
|
|
11971
|
-
__typename?: 'IntercomTicketStateResult';
|
|
11972
|
-
/** The Intercom ticket state identifier. */
|
|
11973
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
11974
|
-
/** The Intercom ticket state name. */
|
|
11975
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
11976
|
-
/** The Intercom ticket state type. */
|
|
11977
|
-
type?: Maybe<Scalars['String']['output']>;
|
|
11978
|
-
};
|
|
11979
|
-
/** Represents Intercom ticket states. */
|
|
11980
|
-
export type IntercomTicketStateResults = {
|
|
11981
|
-
__typename?: 'IntercomTicketStateResults';
|
|
11982
|
-
/** The Intercom ticket states. */
|
|
11983
|
-
results?: Maybe<Array<Maybe<IntercomTicketStateResult>>>;
|
|
11984
|
-
};
|
|
11985
|
-
/** Represents an Intercom ticket type. */
|
|
11986
|
-
export type IntercomTicketTypeResult = {
|
|
11987
|
-
__typename?: 'IntercomTicketTypeResult';
|
|
11988
|
-
/** The Intercom ticket type description. */
|
|
11989
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
11990
|
-
/** The Intercom ticket type identifier. */
|
|
11991
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
11992
|
-
/** The Intercom ticket type name. */
|
|
11993
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
11994
|
-
};
|
|
11995
|
-
/** Represents Intercom ticket types. */
|
|
11996
|
-
export type IntercomTicketTypeResults = {
|
|
11997
|
-
__typename?: 'IntercomTicketTypeResults';
|
|
11998
|
-
/** The Intercom ticket types. */
|
|
11999
|
-
results?: Maybe<Array<Maybe<IntercomTicketTypeResult>>>;
|
|
12000
|
-
};
|
|
12001
11905
|
/** Represents Intercom Tickets feed properties. */
|
|
12002
11906
|
export type IntercomTicketsFeedProperties = {
|
|
12003
11907
|
__typename?: 'IntercomTicketsFeedProperties';
|
|
@@ -12756,8 +12660,8 @@ export declare enum JiraAuthenticationTypes {
|
|
|
12756
12660
|
/** Represents the Jira distribution properties. */
|
|
12757
12661
|
export type JiraDistributionProperties = {
|
|
12758
12662
|
__typename?: 'JiraDistributionProperties';
|
|
12759
|
-
/** The assignee
|
|
12760
|
-
|
|
12663
|
+
/** The assignee email or name. */
|
|
12664
|
+
assignee?: Maybe<Scalars['String']['output']>;
|
|
12761
12665
|
/** The Atlassian cloud identifier. */
|
|
12762
12666
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
12763
12667
|
/** The Jira issue key. */
|
|
@@ -12779,8 +12683,8 @@ export type JiraDistributionProperties = {
|
|
|
12779
12683
|
};
|
|
12780
12684
|
/** Represents the Jira distribution properties. */
|
|
12781
12685
|
export type JiraDistributionPropertiesInput = {
|
|
12782
|
-
/** The assignee
|
|
12783
|
-
|
|
12686
|
+
/** The assignee email or name. */
|
|
12687
|
+
assignee?: InputMaybe<Scalars['String']['input']>;
|
|
12784
12688
|
/** The Atlassian cloud identifier. */
|
|
12785
12689
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
12786
12690
|
/** The Jira issue key. */
|
|
@@ -13092,20 +12996,20 @@ export declare enum LinearAuthenticationTypes {
|
|
|
13092
12996
|
/** Represents the Linear distribution properties. */
|
|
13093
12997
|
export type LinearDistributionProperties = {
|
|
13094
12998
|
__typename?: 'LinearDistributionProperties';
|
|
13095
|
-
/** The assignee
|
|
13096
|
-
|
|
12999
|
+
/** The assignee email or name. */
|
|
13000
|
+
assignee?: Maybe<Scalars['String']['output']>;
|
|
13097
13001
|
/** The Linear issue ID. */
|
|
13098
13002
|
issueId?: Maybe<Scalars['String']['output']>;
|
|
13099
13003
|
/** The Linear issue URI. */
|
|
13100
13004
|
issueUri?: Maybe<Scalars['String']['output']>;
|
|
13101
|
-
/** The label
|
|
13102
|
-
|
|
13005
|
+
/** The label names. */
|
|
13006
|
+
labels?: Maybe<Array<Scalars['String']['output']>>;
|
|
13103
13007
|
/** The issue priority, from 0 (none) to 4 (urgent). */
|
|
13104
13008
|
priority?: Maybe<Scalars['Int']['output']>;
|
|
13105
13009
|
/** The project ID. */
|
|
13106
13010
|
projectId?: Maybe<Scalars['String']['output']>;
|
|
13107
|
-
/** The workflow state
|
|
13108
|
-
|
|
13011
|
+
/** The workflow state name. */
|
|
13012
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
13109
13013
|
/** The Linear team UUID. */
|
|
13110
13014
|
teamId?: Maybe<Scalars['String']['output']>;
|
|
13111
13015
|
/** The issue title. */
|
|
@@ -13113,20 +13017,20 @@ export type LinearDistributionProperties = {
|
|
|
13113
13017
|
};
|
|
13114
13018
|
/** Represents the Linear distribution properties. */
|
|
13115
13019
|
export type LinearDistributionPropertiesInput = {
|
|
13116
|
-
/** The assignee
|
|
13117
|
-
|
|
13020
|
+
/** The assignee email or name. */
|
|
13021
|
+
assignee?: InputMaybe<Scalars['String']['input']>;
|
|
13118
13022
|
/** The Linear issue ID. */
|
|
13119
13023
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
13120
13024
|
/** The Linear issue URI. */
|
|
13121
13025
|
issueUri?: InputMaybe<Scalars['String']['input']>;
|
|
13122
|
-
/** The label
|
|
13123
|
-
|
|
13026
|
+
/** The label names. */
|
|
13027
|
+
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
13124
13028
|
/** The issue priority, from 0 (none) to 4 (urgent). */
|
|
13125
13029
|
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
13126
13030
|
/** The project ID. */
|
|
13127
13031
|
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
13128
|
-
/** The workflow state
|
|
13129
|
-
|
|
13032
|
+
/** The workflow state name. */
|
|
13033
|
+
state?: InputMaybe<Scalars['String']['input']>;
|
|
13130
13034
|
/** The Linear team UUID. */
|
|
13131
13035
|
teamId?: InputMaybe<Scalars['String']['input']>;
|
|
13132
13036
|
/** The issue title. */
|
|
@@ -21966,18 +21870,8 @@ export type Query = {
|
|
|
21966
21870
|
gustoDepartments?: Maybe<HrisOptionResults>;
|
|
21967
21871
|
/** Retrieves available Gusto locations for a company. */
|
|
21968
21872
|
gustoLocations?: Maybe<GustoLocationResults>;
|
|
21969
|
-
/** Retrieves available Intercom admins. */
|
|
21970
|
-
intercomAdmins?: Maybe<IntercomAdminResults>;
|
|
21971
|
-
/** Retrieves available Intercom contacts. */
|
|
21972
|
-
intercomContacts?: Maybe<IntercomContactResults>;
|
|
21973
|
-
/** Retrieves available Intercom tags. */
|
|
21974
|
-
intercomTags?: Maybe<IntercomTagResults>;
|
|
21975
21873
|
/** Retrieves available Intercom teams. */
|
|
21976
21874
|
intercomTeams?: Maybe<IntercomTeamResults>;
|
|
21977
|
-
/** Retrieves available Intercom ticket states. */
|
|
21978
|
-
intercomTicketStates?: Maybe<IntercomTicketStateResults>;
|
|
21979
|
-
/** Retrieves available Intercom ticket types. */
|
|
21980
|
-
intercomTicketTypes?: Maybe<IntercomTicketTypeResults>;
|
|
21981
21875
|
/** Lookup a investment given its ID. */
|
|
21982
21876
|
investment?: Maybe<Investment>;
|
|
21983
21877
|
/** Lookup a investment fund given its ID. */
|
|
@@ -22529,31 +22423,10 @@ export type QueryGustoDepartmentsArgs = {
|
|
|
22529
22423
|
export type QueryGustoLocationsArgs = {
|
|
22530
22424
|
properties: GustoOptionsInput;
|
|
22531
22425
|
};
|
|
22532
|
-
export type QueryIntercomAdminsArgs = {
|
|
22533
|
-
properties: IntercomTicketsFeedPropertiesInput;
|
|
22534
|
-
query?: InputMaybe<Scalars['String']['input']>;
|
|
22535
|
-
};
|
|
22536
|
-
export type QueryIntercomContactsArgs = {
|
|
22537
|
-
properties: IntercomTicketsFeedPropertiesInput;
|
|
22538
|
-
query?: InputMaybe<Scalars['String']['input']>;
|
|
22539
|
-
};
|
|
22540
|
-
export type QueryIntercomTagsArgs = {
|
|
22541
|
-
properties: IntercomTicketsFeedPropertiesInput;
|
|
22542
|
-
query?: InputMaybe<Scalars['String']['input']>;
|
|
22543
|
-
};
|
|
22544
22426
|
export type QueryIntercomTeamsArgs = {
|
|
22545
22427
|
properties: IntercomTicketsFeedPropertiesInput;
|
|
22546
22428
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
22547
22429
|
};
|
|
22548
|
-
export type QueryIntercomTicketStatesArgs = {
|
|
22549
|
-
properties: IntercomTicketsFeedPropertiesInput;
|
|
22550
|
-
query?: InputMaybe<Scalars['String']['input']>;
|
|
22551
|
-
ticketTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
22552
|
-
};
|
|
22553
|
-
export type QueryIntercomTicketTypesArgs = {
|
|
22554
|
-
properties: IntercomTicketsFeedPropertiesInput;
|
|
22555
|
-
query?: InputMaybe<Scalars['String']['input']>;
|
|
22556
|
-
};
|
|
22557
22430
|
export type QueryInvestmentArgs = {
|
|
22558
22431
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
22559
22432
|
id: Scalars['ID']['input'];
|
|
@@ -26928,8 +26801,8 @@ export type ZendeskDiscoveryInput = {
|
|
|
26928
26801
|
/** Represents the Zendesk distribution properties. */
|
|
26929
26802
|
export type ZendeskDistributionProperties = {
|
|
26930
26803
|
__typename?: 'ZendeskDistributionProperties';
|
|
26931
|
-
/** The assignee
|
|
26932
|
-
|
|
26804
|
+
/** The assignee email or name. */
|
|
26805
|
+
assignee?: Maybe<Scalars['String']['output']>;
|
|
26933
26806
|
/** The group ID. */
|
|
26934
26807
|
groupId?: Maybe<Scalars['String']['output']>;
|
|
26935
26808
|
/** The ticket priority. */
|
|
@@ -26953,8 +26826,8 @@ export type ZendeskDistributionProperties = {
|
|
|
26953
26826
|
};
|
|
26954
26827
|
/** Represents the Zendesk distribution properties. */
|
|
26955
26828
|
export type ZendeskDistributionPropertiesInput = {
|
|
26956
|
-
/** The assignee
|
|
26957
|
-
|
|
26829
|
+
/** The assignee email or name. */
|
|
26830
|
+
assignee?: InputMaybe<Scalars['String']['input']>;
|
|
26958
26831
|
/** The group ID. */
|
|
26959
26832
|
groupId?: InputMaybe<Scalars['String']['input']>;
|
|
26960
26833
|
/** The ticket priority. */
|
|
@@ -27716,9 +27589,9 @@ export type GetAgentQuery = {
|
|
|
27716
27589
|
teamId?: string | null;
|
|
27717
27590
|
title?: string | null;
|
|
27718
27591
|
priority?: number | null;
|
|
27719
|
-
|
|
27720
|
-
|
|
27721
|
-
|
|
27592
|
+
state?: string | null;
|
|
27593
|
+
assignee?: string | null;
|
|
27594
|
+
labels?: Array<string> | null;
|
|
27722
27595
|
projectId?: string | null;
|
|
27723
27596
|
} | null;
|
|
27724
27597
|
jira?: {
|
|
@@ -27730,7 +27603,7 @@ export type GetAgentQuery = {
|
|
|
27730
27603
|
issueType?: string | null;
|
|
27731
27604
|
summary?: string | null;
|
|
27732
27605
|
priority?: string | null;
|
|
27733
|
-
|
|
27606
|
+
assignee?: string | null;
|
|
27734
27607
|
labels?: Array<string> | null;
|
|
27735
27608
|
status?: string | null;
|
|
27736
27609
|
} | null;
|
|
@@ -27743,7 +27616,7 @@ export type GetAgentQuery = {
|
|
|
27743
27616
|
priority?: string | null;
|
|
27744
27617
|
status?: string | null;
|
|
27745
27618
|
type?: string | null;
|
|
27746
|
-
|
|
27619
|
+
assignee?: string | null;
|
|
27747
27620
|
groupId?: string | null;
|
|
27748
27621
|
tags?: Array<string> | null;
|
|
27749
27622
|
visibility?: string | null;
|
|
@@ -27752,19 +27625,15 @@ export type GetAgentQuery = {
|
|
|
27752
27625
|
__typename?: 'IntercomDistributionProperties';
|
|
27753
27626
|
ticketId?: string | null;
|
|
27754
27627
|
ticketUri?: string | null;
|
|
27755
|
-
|
|
27756
|
-
|
|
27757
|
-
contactExternalId?: string | null;
|
|
27758
|
-
contactEmail?: string | null;
|
|
27628
|
+
ticketType?: string | null;
|
|
27629
|
+
requesterEmail?: string | null;
|
|
27759
27630
|
conversationToLinkId?: string | null;
|
|
27760
27631
|
companyId?: string | null;
|
|
27761
|
-
adminId?: string | null;
|
|
27762
27632
|
title?: string | null;
|
|
27763
|
-
stateId?: string | null;
|
|
27764
27633
|
state?: string | null;
|
|
27765
|
-
|
|
27634
|
+
assignee?: string | null;
|
|
27766
27635
|
teamId?: string | null;
|
|
27767
|
-
|
|
27636
|
+
tags?: Array<string> | null;
|
|
27768
27637
|
visibility?: string | null;
|
|
27769
27638
|
isShared?: boolean | null;
|
|
27770
27639
|
skipNotifications?: boolean | null;
|
|
@@ -28288,9 +28157,9 @@ export type QueryAgentsQuery = {
|
|
|
28288
28157
|
teamId?: string | null;
|
|
28289
28158
|
title?: string | null;
|
|
28290
28159
|
priority?: number | null;
|
|
28291
|
-
|
|
28292
|
-
|
|
28293
|
-
|
|
28160
|
+
state?: string | null;
|
|
28161
|
+
assignee?: string | null;
|
|
28162
|
+
labels?: Array<string> | null;
|
|
28294
28163
|
projectId?: string | null;
|
|
28295
28164
|
} | null;
|
|
28296
28165
|
jira?: {
|
|
@@ -28302,7 +28171,7 @@ export type QueryAgentsQuery = {
|
|
|
28302
28171
|
issueType?: string | null;
|
|
28303
28172
|
summary?: string | null;
|
|
28304
28173
|
priority?: string | null;
|
|
28305
|
-
|
|
28174
|
+
assignee?: string | null;
|
|
28306
28175
|
labels?: Array<string> | null;
|
|
28307
28176
|
status?: string | null;
|
|
28308
28177
|
} | null;
|
|
@@ -28315,7 +28184,7 @@ export type QueryAgentsQuery = {
|
|
|
28315
28184
|
priority?: string | null;
|
|
28316
28185
|
status?: string | null;
|
|
28317
28186
|
type?: string | null;
|
|
28318
|
-
|
|
28187
|
+
assignee?: string | null;
|
|
28319
28188
|
groupId?: string | null;
|
|
28320
28189
|
tags?: Array<string> | null;
|
|
28321
28190
|
visibility?: string | null;
|
|
@@ -28324,19 +28193,15 @@ export type QueryAgentsQuery = {
|
|
|
28324
28193
|
__typename?: 'IntercomDistributionProperties';
|
|
28325
28194
|
ticketId?: string | null;
|
|
28326
28195
|
ticketUri?: string | null;
|
|
28327
|
-
|
|
28328
|
-
|
|
28329
|
-
contactExternalId?: string | null;
|
|
28330
|
-
contactEmail?: string | null;
|
|
28196
|
+
ticketType?: string | null;
|
|
28197
|
+
requesterEmail?: string | null;
|
|
28331
28198
|
conversationToLinkId?: string | null;
|
|
28332
28199
|
companyId?: string | null;
|
|
28333
|
-
adminId?: string | null;
|
|
28334
28200
|
title?: string | null;
|
|
28335
|
-
stateId?: string | null;
|
|
28336
28201
|
state?: string | null;
|
|
28337
|
-
|
|
28202
|
+
assignee?: string | null;
|
|
28338
28203
|
teamId?: string | null;
|
|
28339
|
-
|
|
28204
|
+
tags?: Array<string> | null;
|
|
28340
28205
|
visibility?: string | null;
|
|
28341
28206
|
isShared?: boolean | null;
|
|
28342
28207
|
skipNotifications?: boolean | null;
|
|
@@ -42071,54 +41936,6 @@ export type QueryGustoLocationsQuery = {
|
|
|
42071
41936
|
} | null> | null;
|
|
42072
41937
|
} | null;
|
|
42073
41938
|
};
|
|
42074
|
-
export type QueryIntercomAdminsQueryVariables = Exact<{
|
|
42075
|
-
properties: IntercomTicketsFeedPropertiesInput;
|
|
42076
|
-
query?: InputMaybe<Scalars['String']['input']>;
|
|
42077
|
-
}>;
|
|
42078
|
-
export type QueryIntercomAdminsQuery = {
|
|
42079
|
-
__typename?: 'Query';
|
|
42080
|
-
intercomAdmins?: {
|
|
42081
|
-
__typename?: 'IntercomAdminResults';
|
|
42082
|
-
results?: Array<{
|
|
42083
|
-
__typename?: 'IntercomAdminResult';
|
|
42084
|
-
id?: string | null;
|
|
42085
|
-
name?: string | null;
|
|
42086
|
-
email?: string | null;
|
|
42087
|
-
} | null> | null;
|
|
42088
|
-
} | null;
|
|
42089
|
-
};
|
|
42090
|
-
export type QueryIntercomContactsQueryVariables = Exact<{
|
|
42091
|
-
properties: IntercomTicketsFeedPropertiesInput;
|
|
42092
|
-
query?: InputMaybe<Scalars['String']['input']>;
|
|
42093
|
-
}>;
|
|
42094
|
-
export type QueryIntercomContactsQuery = {
|
|
42095
|
-
__typename?: 'Query';
|
|
42096
|
-
intercomContacts?: {
|
|
42097
|
-
__typename?: 'IntercomContactResults';
|
|
42098
|
-
results?: Array<{
|
|
42099
|
-
__typename?: 'IntercomContactResult';
|
|
42100
|
-
id?: string | null;
|
|
42101
|
-
externalId?: string | null;
|
|
42102
|
-
name?: string | null;
|
|
42103
|
-
email?: string | null;
|
|
42104
|
-
} | null> | null;
|
|
42105
|
-
} | null;
|
|
42106
|
-
};
|
|
42107
|
-
export type QueryIntercomTagsQueryVariables = Exact<{
|
|
42108
|
-
properties: IntercomTicketsFeedPropertiesInput;
|
|
42109
|
-
query?: InputMaybe<Scalars['String']['input']>;
|
|
42110
|
-
}>;
|
|
42111
|
-
export type QueryIntercomTagsQuery = {
|
|
42112
|
-
__typename?: 'Query';
|
|
42113
|
-
intercomTags?: {
|
|
42114
|
-
__typename?: 'IntercomTagResults';
|
|
42115
|
-
results?: Array<{
|
|
42116
|
-
__typename?: 'IntercomTagResult';
|
|
42117
|
-
id?: string | null;
|
|
42118
|
-
name?: string | null;
|
|
42119
|
-
} | null> | null;
|
|
42120
|
-
} | null;
|
|
42121
|
-
};
|
|
42122
41939
|
export type QueryIntercomTeamsQueryVariables = Exact<{
|
|
42123
41940
|
properties: IntercomTicketsFeedPropertiesInput;
|
|
42124
41941
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -42134,39 +41951,6 @@ export type QueryIntercomTeamsQuery = {
|
|
|
42134
41951
|
} | null> | null;
|
|
42135
41952
|
} | null;
|
|
42136
41953
|
};
|
|
42137
|
-
export type QueryIntercomTicketStatesQueryVariables = Exact<{
|
|
42138
|
-
properties: IntercomTicketsFeedPropertiesInput;
|
|
42139
|
-
ticketTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
42140
|
-
query?: InputMaybe<Scalars['String']['input']>;
|
|
42141
|
-
}>;
|
|
42142
|
-
export type QueryIntercomTicketStatesQuery = {
|
|
42143
|
-
__typename?: 'Query';
|
|
42144
|
-
intercomTicketStates?: {
|
|
42145
|
-
__typename?: 'IntercomTicketStateResults';
|
|
42146
|
-
results?: Array<{
|
|
42147
|
-
__typename?: 'IntercomTicketStateResult';
|
|
42148
|
-
id?: string | null;
|
|
42149
|
-
name?: string | null;
|
|
42150
|
-
type?: string | null;
|
|
42151
|
-
} | null> | null;
|
|
42152
|
-
} | null;
|
|
42153
|
-
};
|
|
42154
|
-
export type QueryIntercomTicketTypesQueryVariables = Exact<{
|
|
42155
|
-
properties: IntercomTicketsFeedPropertiesInput;
|
|
42156
|
-
query?: InputMaybe<Scalars['String']['input']>;
|
|
42157
|
-
}>;
|
|
42158
|
-
export type QueryIntercomTicketTypesQuery = {
|
|
42159
|
-
__typename?: 'Query';
|
|
42160
|
-
intercomTicketTypes?: {
|
|
42161
|
-
__typename?: 'IntercomTicketTypeResults';
|
|
42162
|
-
results?: Array<{
|
|
42163
|
-
__typename?: 'IntercomTicketTypeResult';
|
|
42164
|
-
id?: string | null;
|
|
42165
|
-
name?: string | null;
|
|
42166
|
-
description?: string | null;
|
|
42167
|
-
} | null> | null;
|
|
42168
|
-
} | null;
|
|
42169
|
-
};
|
|
42170
41954
|
export type QueryJiraIssueTypesQueryVariables = Exact<{
|
|
42171
41955
|
properties: JiraIssueTypesInput;
|
|
42172
41956
|
}>;
|