graphlit-client 1.0.20260430001 → 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
|
@@ -1464,6 +1464,12 @@ declare class Graphlit {
|
|
|
1464
1464
|
* @returns The Slack users with userId, displayName, realName, and email.
|
|
1465
1465
|
*/
|
|
1466
1466
|
querySlackUsers(properties: Types.SlackChannelsInput): Promise<Types.QuerySlackUsersQuery>;
|
|
1467
|
+
/**
|
|
1468
|
+
* Queries Linear teams.
|
|
1469
|
+
* @param properties - The Linear team query properties.
|
|
1470
|
+
* @returns The Linear teams.
|
|
1471
|
+
*/
|
|
1472
|
+
queryLinearTeams(properties: Types.LinearTeamsInput): Promise<Types.QueryLinearTeamsQuery>;
|
|
1467
1473
|
/**
|
|
1468
1474
|
* Queries Linear projects.
|
|
1469
1475
|
* @param properties - The Linear project query properties.
|
|
@@ -1550,6 +1556,33 @@ declare class Graphlit {
|
|
|
1550
1556
|
* @returns The Jira projects.
|
|
1551
1557
|
*/
|
|
1552
1558
|
queryJiraProjects(properties: Types.JiraProjectsInput): Promise<Types.QueryJiraProjectsQuery>;
|
|
1559
|
+
/**
|
|
1560
|
+
* Queries Jira issue types.
|
|
1561
|
+
* @param properties - The Jira issue type query properties.
|
|
1562
|
+
* @returns The Jira issue types.
|
|
1563
|
+
*/
|
|
1564
|
+
queryJiraIssueTypes(properties: Types.JiraIssueTypesInput): Promise<Types.QueryJiraIssueTypesQuery>;
|
|
1565
|
+
/**
|
|
1566
|
+
* Queries Zendesk groups.
|
|
1567
|
+
* @param properties - The Zendesk discovery query properties.
|
|
1568
|
+
* @param query - The search query, optional.
|
|
1569
|
+
* @returns The Zendesk groups.
|
|
1570
|
+
*/
|
|
1571
|
+
queryZendeskGroups(properties: Types.ZendeskDiscoveryInput, query?: string): Promise<Types.QueryZendeskGroupsQuery>;
|
|
1572
|
+
/**
|
|
1573
|
+
* Queries Zendesk users.
|
|
1574
|
+
* @param properties - The Zendesk discovery query properties.
|
|
1575
|
+
* @param query - The search query, optional.
|
|
1576
|
+
* @returns The Zendesk users.
|
|
1577
|
+
*/
|
|
1578
|
+
queryZendeskUsers(properties: Types.ZendeskDiscoveryInput, query?: string): Promise<Types.QueryZendeskUsersQuery>;
|
|
1579
|
+
/**
|
|
1580
|
+
* Queries Intercom teams.
|
|
1581
|
+
* @param properties - The Intercom ticket feed query properties.
|
|
1582
|
+
* @param query - The search query, optional.
|
|
1583
|
+
* @returns The Intercom teams.
|
|
1584
|
+
*/
|
|
1585
|
+
queryIntercomTeams(properties: Types.IntercomTicketsFeedPropertiesInput, query?: string): Promise<Types.QueryIntercomTeamsQuery>;
|
|
1553
1586
|
/**
|
|
1554
1587
|
* Queries Gusto companies.
|
|
1555
1588
|
* @param properties - The Gusto company query properties.
|
package/dist/client.js
CHANGED
|
@@ -2732,6 +2732,14 @@ class Graphlit {
|
|
|
2732
2732
|
async querySlackUsers(properties) {
|
|
2733
2733
|
return this.queryAndCheckError(Documents.QuerySlackUsers, { properties: properties });
|
|
2734
2734
|
}
|
|
2735
|
+
/**
|
|
2736
|
+
* Queries Linear teams.
|
|
2737
|
+
* @param properties - The Linear team query properties.
|
|
2738
|
+
* @returns The Linear teams.
|
|
2739
|
+
*/
|
|
2740
|
+
async queryLinearTeams(properties) {
|
|
2741
|
+
return this.queryAndCheckError(Documents.QueryLinearTeams, { properties: properties });
|
|
2742
|
+
}
|
|
2735
2743
|
/**
|
|
2736
2744
|
* Queries Linear projects.
|
|
2737
2745
|
* @param properties - The Linear project query properties.
|
|
@@ -2852,6 +2860,50 @@ class Graphlit {
|
|
|
2852
2860
|
async queryJiraProjects(properties) {
|
|
2853
2861
|
return this.queryAndCheckError(Documents.QueryJiraProjects, { properties: properties });
|
|
2854
2862
|
}
|
|
2863
|
+
/**
|
|
2864
|
+
* Queries Jira issue types.
|
|
2865
|
+
* @param properties - The Jira issue type query properties.
|
|
2866
|
+
* @returns The Jira issue types.
|
|
2867
|
+
*/
|
|
2868
|
+
async queryJiraIssueTypes(properties) {
|
|
2869
|
+
return this.queryAndCheckError(Documents.QueryJiraIssueTypes, { properties: properties });
|
|
2870
|
+
}
|
|
2871
|
+
/**
|
|
2872
|
+
* Queries Zendesk groups.
|
|
2873
|
+
* @param properties - The Zendesk discovery query properties.
|
|
2874
|
+
* @param query - The search query, optional.
|
|
2875
|
+
* @returns The Zendesk groups.
|
|
2876
|
+
*/
|
|
2877
|
+
async queryZendeskGroups(properties, query) {
|
|
2878
|
+
return this.queryAndCheckError(Documents.QueryZendeskGroups, {
|
|
2879
|
+
properties: properties,
|
|
2880
|
+
query: query,
|
|
2881
|
+
});
|
|
2882
|
+
}
|
|
2883
|
+
/**
|
|
2884
|
+
* Queries Zendesk users.
|
|
2885
|
+
* @param properties - The Zendesk discovery query properties.
|
|
2886
|
+
* @param query - The search query, optional.
|
|
2887
|
+
* @returns The Zendesk users.
|
|
2888
|
+
*/
|
|
2889
|
+
async queryZendeskUsers(properties, query) {
|
|
2890
|
+
return this.queryAndCheckError(Documents.QueryZendeskUsers, {
|
|
2891
|
+
properties: properties,
|
|
2892
|
+
query: query,
|
|
2893
|
+
});
|
|
2894
|
+
}
|
|
2895
|
+
/**
|
|
2896
|
+
* Queries Intercom teams.
|
|
2897
|
+
* @param properties - The Intercom ticket feed query properties.
|
|
2898
|
+
* @param query - The search query, optional.
|
|
2899
|
+
* @returns The Intercom teams.
|
|
2900
|
+
*/
|
|
2901
|
+
async queryIntercomTeams(properties, query) {
|
|
2902
|
+
return this.queryAndCheckError(Documents.QueryIntercomTeams, {
|
|
2903
|
+
properties: properties,
|
|
2904
|
+
query: query,
|
|
2905
|
+
});
|
|
2906
|
+
}
|
|
2855
2907
|
/**
|
|
2856
2908
|
* Queries Gusto companies.
|
|
2857
2909
|
* @param properties - The Gusto company query properties.
|
|
@@ -206,8 +206,11 @@ 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 QueryIntercomTeams: import("graphql").DocumentNode;
|
|
210
|
+
export declare const QueryJiraIssueTypes: import("graphql").DocumentNode;
|
|
209
211
|
export declare const QueryJiraProjects: import("graphql").DocumentNode;
|
|
210
212
|
export declare const QueryLinearProjects: import("graphql").DocumentNode;
|
|
213
|
+
export declare const QueryLinearTeams: import("graphql").DocumentNode;
|
|
211
214
|
export declare const QueryMicrosoftCalendars: import("graphql").DocumentNode;
|
|
212
215
|
export declare const QueryMicrosoftTeamsChannels: import("graphql").DocumentNode;
|
|
213
216
|
export declare const QueryMicrosoftTeamsTeams: import("graphql").DocumentNode;
|
|
@@ -219,6 +222,8 @@ export declare const QuerySharePointFolders: import("graphql").DocumentNode;
|
|
|
219
222
|
export declare const QuerySharePointLibraries: import("graphql").DocumentNode;
|
|
220
223
|
export declare const QuerySlackChannels: import("graphql").DocumentNode;
|
|
221
224
|
export declare const QuerySlackUsers: import("graphql").DocumentNode;
|
|
225
|
+
export declare const QueryZendeskGroups: import("graphql").DocumentNode;
|
|
226
|
+
export declare const QueryZendeskUsers: import("graphql").DocumentNode;
|
|
222
227
|
export declare const TriggerFeed: import("graphql").DocumentNode;
|
|
223
228
|
export declare const UpdateFeed: import("graphql").DocumentNode;
|
|
224
229
|
export declare const CountInvestments: import("graphql").DocumentNode;
|
|
@@ -416,19 +416,20 @@ 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 {
|
|
425
425
|
issueKey
|
|
426
426
|
issueUri
|
|
427
427
|
projectKey
|
|
428
|
+
cloudId
|
|
428
429
|
issueType
|
|
429
430
|
summary
|
|
430
431
|
priority
|
|
431
|
-
|
|
432
|
+
assignee
|
|
432
433
|
labels
|
|
433
434
|
status
|
|
434
435
|
}
|
|
@@ -440,7 +441,7 @@ export const GetAgent = gql `
|
|
|
440
441
|
priority
|
|
441
442
|
status
|
|
442
443
|
type
|
|
443
|
-
|
|
444
|
+
assignee
|
|
444
445
|
groupId
|
|
445
446
|
tags
|
|
446
447
|
visibility
|
|
@@ -448,19 +449,15 @@ export const GetAgent = gql `
|
|
|
448
449
|
intercom {
|
|
449
450
|
ticketId
|
|
450
451
|
ticketUri
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
contactExternalId
|
|
454
|
-
contactEmail
|
|
452
|
+
ticketType
|
|
453
|
+
requesterEmail
|
|
455
454
|
conversationToLinkId
|
|
456
455
|
companyId
|
|
457
|
-
adminId
|
|
458
456
|
title
|
|
459
|
-
stateId
|
|
460
457
|
state
|
|
461
|
-
|
|
458
|
+
assignee
|
|
462
459
|
teamId
|
|
463
|
-
|
|
460
|
+
tags
|
|
464
461
|
visibility
|
|
465
462
|
isShared
|
|
466
463
|
skipNotifications
|
|
@@ -890,19 +887,20 @@ export const QueryAgents = gql `
|
|
|
890
887
|
teamId
|
|
891
888
|
title
|
|
892
889
|
priority
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
890
|
+
state
|
|
891
|
+
assignee
|
|
892
|
+
labels
|
|
896
893
|
projectId
|
|
897
894
|
}
|
|
898
895
|
jira {
|
|
899
896
|
issueKey
|
|
900
897
|
issueUri
|
|
901
898
|
projectKey
|
|
899
|
+
cloudId
|
|
902
900
|
issueType
|
|
903
901
|
summary
|
|
904
902
|
priority
|
|
905
|
-
|
|
903
|
+
assignee
|
|
906
904
|
labels
|
|
907
905
|
status
|
|
908
906
|
}
|
|
@@ -914,7 +912,7 @@ export const QueryAgents = gql `
|
|
|
914
912
|
priority
|
|
915
913
|
status
|
|
916
914
|
type
|
|
917
|
-
|
|
915
|
+
assignee
|
|
918
916
|
groupId
|
|
919
917
|
tags
|
|
920
918
|
visibility
|
|
@@ -922,19 +920,15 @@ export const QueryAgents = gql `
|
|
|
922
920
|
intercom {
|
|
923
921
|
ticketId
|
|
924
922
|
ticketUri
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
contactExternalId
|
|
928
|
-
contactEmail
|
|
923
|
+
ticketType
|
|
924
|
+
requesterEmail
|
|
929
925
|
conversationToLinkId
|
|
930
926
|
companyId
|
|
931
|
-
adminId
|
|
932
927
|
title
|
|
933
|
-
stateId
|
|
934
928
|
state
|
|
935
|
-
|
|
929
|
+
assignee
|
|
936
930
|
teamId
|
|
937
|
-
|
|
931
|
+
tags
|
|
938
932
|
visibility
|
|
939
933
|
isShared
|
|
940
934
|
skipNotifications
|
|
@@ -12748,6 +12742,27 @@ export const QueryGustoLocations = gql `
|
|
|
12748
12742
|
}
|
|
12749
12743
|
}
|
|
12750
12744
|
`;
|
|
12745
|
+
export const QueryIntercomTeams = gql `
|
|
12746
|
+
query QueryIntercomTeams($properties: IntercomTicketsFeedPropertiesInput!, $query: String) {
|
|
12747
|
+
intercomTeams(properties: $properties, query: $query) {
|
|
12748
|
+
results {
|
|
12749
|
+
id
|
|
12750
|
+
name
|
|
12751
|
+
}
|
|
12752
|
+
}
|
|
12753
|
+
}
|
|
12754
|
+
`;
|
|
12755
|
+
export const QueryJiraIssueTypes = gql `
|
|
12756
|
+
query QueryJiraIssueTypes($properties: JiraIssueTypesInput!) {
|
|
12757
|
+
jiraIssueTypes(properties: $properties) {
|
|
12758
|
+
results {
|
|
12759
|
+
id
|
|
12760
|
+
name
|
|
12761
|
+
description
|
|
12762
|
+
}
|
|
12763
|
+
}
|
|
12764
|
+
}
|
|
12765
|
+
`;
|
|
12751
12766
|
export const QueryJiraProjects = gql `
|
|
12752
12767
|
query QueryJiraProjects($properties: JiraProjectsInput!) {
|
|
12753
12768
|
jiraProjects(properties: $properties) {
|
|
@@ -12762,7 +12777,24 @@ export const QueryJiraProjects = gql `
|
|
|
12762
12777
|
export const QueryLinearProjects = gql `
|
|
12763
12778
|
query QueryLinearProjects($properties: LinearProjectsInput!) {
|
|
12764
12779
|
linearProjects(properties: $properties) {
|
|
12765
|
-
results
|
|
12780
|
+
results {
|
|
12781
|
+
id
|
|
12782
|
+
name
|
|
12783
|
+
teamId
|
|
12784
|
+
teamKey
|
|
12785
|
+
teamName
|
|
12786
|
+
}
|
|
12787
|
+
}
|
|
12788
|
+
}
|
|
12789
|
+
`;
|
|
12790
|
+
export const QueryLinearTeams = gql `
|
|
12791
|
+
query QueryLinearTeams($properties: LinearTeamsInput!) {
|
|
12792
|
+
linearTeams(properties: $properties) {
|
|
12793
|
+
results {
|
|
12794
|
+
id
|
|
12795
|
+
key
|
|
12796
|
+
name
|
|
12797
|
+
}
|
|
12766
12798
|
}
|
|
12767
12799
|
}
|
|
12768
12800
|
`;
|
|
@@ -12882,6 +12914,28 @@ export const QuerySlackUsers = gql `
|
|
|
12882
12914
|
}
|
|
12883
12915
|
}
|
|
12884
12916
|
`;
|
|
12917
|
+
export const QueryZendeskGroups = gql `
|
|
12918
|
+
query QueryZendeskGroups($properties: ZendeskDiscoveryInput!, $query: String) {
|
|
12919
|
+
zendeskGroups(properties: $properties, query: $query) {
|
|
12920
|
+
results {
|
|
12921
|
+
id
|
|
12922
|
+
name
|
|
12923
|
+
}
|
|
12924
|
+
}
|
|
12925
|
+
}
|
|
12926
|
+
`;
|
|
12927
|
+
export const QueryZendeskUsers = gql `
|
|
12928
|
+
query QueryZendeskUsers($properties: ZendeskDiscoveryInput!, $query: String) {
|
|
12929
|
+
zendeskUsers(properties: $properties, query: $query) {
|
|
12930
|
+
results {
|
|
12931
|
+
id
|
|
12932
|
+
name
|
|
12933
|
+
email
|
|
12934
|
+
role
|
|
12935
|
+
}
|
|
12936
|
+
}
|
|
12937
|
+
}
|
|
12938
|
+
`;
|
|
12885
12939
|
export const TriggerFeed = gql `
|
|
12886
12940
|
mutation TriggerFeed($id: ID!) {
|
|
12887
12941
|
triggerFeed(id: $id) {
|
|
@@ -11772,36 +11772,28 @@ export type IntercomConversationsFeedPropertiesUpdateInput = {
|
|
|
11772
11772
|
/** Represents the Intercom distribution properties. */
|
|
11773
11773
|
export type IntercomDistributionProperties = {
|
|
11774
11774
|
__typename?: 'IntercomDistributionProperties';
|
|
11775
|
-
/** The
|
|
11776
|
-
|
|
11777
|
-
/** The assignee ID. */
|
|
11778
|
-
assigneeId?: Maybe<Scalars['String']['output']>;
|
|
11775
|
+
/** The assignee email or name. */
|
|
11776
|
+
assignee?: Maybe<Scalars['String']['output']>;
|
|
11779
11777
|
/** The company ID. */
|
|
11780
11778
|
companyId?: Maybe<Scalars['String']['output']>;
|
|
11781
|
-
/** The contact email address. */
|
|
11782
|
-
contactEmail?: Maybe<Scalars['String']['output']>;
|
|
11783
|
-
/** The external contact ID. */
|
|
11784
|
-
contactExternalId?: Maybe<Scalars['String']['output']>;
|
|
11785
|
-
/** The Intercom contact ID. */
|
|
11786
|
-
contactId?: Maybe<Scalars['String']['output']>;
|
|
11787
11779
|
/** The conversation ID to link to the ticket. */
|
|
11788
11780
|
conversationToLinkId?: Maybe<Scalars['String']['output']>;
|
|
11789
11781
|
/** Whether the ticket is shared with users. */
|
|
11790
11782
|
isShared?: Maybe<Scalars['Boolean']['output']>;
|
|
11783
|
+
/** The requester email address. */
|
|
11784
|
+
requesterEmail?: Maybe<Scalars['String']['output']>;
|
|
11791
11785
|
/** Whether to skip Intercom notifications. */
|
|
11792
11786
|
skipNotifications?: Maybe<Scalars['Boolean']['output']>;
|
|
11793
|
-
/** The ticket state. */
|
|
11787
|
+
/** The ticket state name or type. */
|
|
11794
11788
|
state?: Maybe<Scalars['String']['output']>;
|
|
11795
|
-
/** The
|
|
11796
|
-
|
|
11797
|
-
/** The tag IDs. */
|
|
11798
|
-
tagIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
11789
|
+
/** The tag names. */
|
|
11790
|
+
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
11799
11791
|
/** The team assignee ID. */
|
|
11800
11792
|
teamId?: Maybe<Scalars['String']['output']>;
|
|
11801
11793
|
/** The Intercom ticket ID. */
|
|
11802
11794
|
ticketId?: Maybe<Scalars['String']['output']>;
|
|
11803
|
-
/** The Intercom ticket type
|
|
11804
|
-
|
|
11795
|
+
/** The Intercom ticket type name. */
|
|
11796
|
+
ticketType?: Maybe<Scalars['String']['output']>;
|
|
11805
11797
|
/** The Intercom ticket URI. */
|
|
11806
11798
|
ticketUri?: Maybe<Scalars['String']['output']>;
|
|
11807
11799
|
/** The ticket title. */
|
|
@@ -11811,36 +11803,28 @@ export type IntercomDistributionProperties = {
|
|
|
11811
11803
|
};
|
|
11812
11804
|
/** Represents the Intercom distribution properties. */
|
|
11813
11805
|
export type IntercomDistributionPropertiesInput = {
|
|
11814
|
-
/** The
|
|
11815
|
-
|
|
11816
|
-
/** The assignee ID. */
|
|
11817
|
-
assigneeId?: InputMaybe<Scalars['String']['input']>;
|
|
11806
|
+
/** The assignee email or name. */
|
|
11807
|
+
assignee?: InputMaybe<Scalars['String']['input']>;
|
|
11818
11808
|
/** The company ID. */
|
|
11819
11809
|
companyId?: InputMaybe<Scalars['String']['input']>;
|
|
11820
|
-
/** The contact email address. */
|
|
11821
|
-
contactEmail?: InputMaybe<Scalars['String']['input']>;
|
|
11822
|
-
/** The external contact ID. */
|
|
11823
|
-
contactExternalId?: InputMaybe<Scalars['String']['input']>;
|
|
11824
|
-
/** The Intercom contact ID. */
|
|
11825
|
-
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
11826
11810
|
/** The conversation ID to link to the ticket. */
|
|
11827
11811
|
conversationToLinkId?: InputMaybe<Scalars['String']['input']>;
|
|
11828
11812
|
/** Whether the ticket is shared with users. */
|
|
11829
11813
|
isShared?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11814
|
+
/** The requester email address. */
|
|
11815
|
+
requesterEmail?: InputMaybe<Scalars['String']['input']>;
|
|
11830
11816
|
/** Whether to skip Intercom notifications. */
|
|
11831
11817
|
skipNotifications?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11832
|
-
/** The ticket state. */
|
|
11818
|
+
/** The ticket state name or type. */
|
|
11833
11819
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
11834
|
-
/** The
|
|
11835
|
-
|
|
11836
|
-
/** The tag IDs. */
|
|
11837
|
-
tagIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
11820
|
+
/** The tag names. */
|
|
11821
|
+
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
11838
11822
|
/** The team assignee ID. */
|
|
11839
11823
|
teamId?: InputMaybe<Scalars['String']['input']>;
|
|
11840
11824
|
/** The Intercom ticket ID. */
|
|
11841
11825
|
ticketId?: InputMaybe<Scalars['String']['input']>;
|
|
11842
|
-
/** The Intercom ticket type
|
|
11843
|
-
|
|
11826
|
+
/** The Intercom ticket type name. */
|
|
11827
|
+
ticketType?: InputMaybe<Scalars['String']['input']>;
|
|
11844
11828
|
/** The Intercom ticket URI. */
|
|
11845
11829
|
ticketUri?: InputMaybe<Scalars['String']['input']>;
|
|
11846
11830
|
/** The ticket title. */
|
|
@@ -11904,6 +11888,20 @@ export declare enum IntercomIssueAuthenticationTypes {
|
|
|
11904
11888
|
AccessToken = "ACCESS_TOKEN",
|
|
11905
11889
|
Connector = "CONNECTOR"
|
|
11906
11890
|
}
|
|
11891
|
+
/** Represents an Intercom team. */
|
|
11892
|
+
export type IntercomTeamResult = {
|
|
11893
|
+
__typename?: 'IntercomTeamResult';
|
|
11894
|
+
/** The Intercom team identifier. */
|
|
11895
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
11896
|
+
/** The Intercom team name. */
|
|
11897
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
11898
|
+
};
|
|
11899
|
+
/** Represents Intercom teams. */
|
|
11900
|
+
export type IntercomTeamResults = {
|
|
11901
|
+
__typename?: 'IntercomTeamResults';
|
|
11902
|
+
/** The Intercom teams. */
|
|
11903
|
+
results?: Maybe<Array<Maybe<IntercomTeamResult>>>;
|
|
11904
|
+
};
|
|
11907
11905
|
/** Represents Intercom Tickets feed properties. */
|
|
11908
11906
|
export type IntercomTicketsFeedProperties = {
|
|
11909
11907
|
__typename?: 'IntercomTicketsFeedProperties';
|
|
@@ -12662,8 +12660,10 @@ export declare enum JiraAuthenticationTypes {
|
|
|
12662
12660
|
/** Represents the Jira distribution properties. */
|
|
12663
12661
|
export type JiraDistributionProperties = {
|
|
12664
12662
|
__typename?: 'JiraDistributionProperties';
|
|
12665
|
-
/** The assignee
|
|
12666
|
-
|
|
12663
|
+
/** The assignee email or name. */
|
|
12664
|
+
assignee?: Maybe<Scalars['String']['output']>;
|
|
12665
|
+
/** The Atlassian cloud identifier. */
|
|
12666
|
+
cloudId?: Maybe<Scalars['String']['output']>;
|
|
12667
12667
|
/** The Jira issue key. */
|
|
12668
12668
|
issueKey?: Maybe<Scalars['String']['output']>;
|
|
12669
12669
|
/** The issue type name. */
|
|
@@ -12683,8 +12683,10 @@ export type JiraDistributionProperties = {
|
|
|
12683
12683
|
};
|
|
12684
12684
|
/** Represents the Jira distribution properties. */
|
|
12685
12685
|
export type JiraDistributionPropertiesInput = {
|
|
12686
|
-
/** The assignee
|
|
12687
|
-
|
|
12686
|
+
/** The assignee email or name. */
|
|
12687
|
+
assignee?: InputMaybe<Scalars['String']['input']>;
|
|
12688
|
+
/** The Atlassian cloud identifier. */
|
|
12689
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
12688
12690
|
/** The Jira issue key. */
|
|
12689
12691
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
12690
12692
|
/** The issue type name. */
|
|
@@ -12778,6 +12780,39 @@ export type JiraEpicsFeedPropertiesUpdateInput = {
|
|
|
12778
12780
|
/** Jira URI. */
|
|
12779
12781
|
uri?: InputMaybe<Scalars['String']['input']>;
|
|
12780
12782
|
};
|
|
12783
|
+
/** Represents a Jira issue type. */
|
|
12784
|
+
export type JiraIssueTypeResult = {
|
|
12785
|
+
__typename?: 'JiraIssueTypeResult';
|
|
12786
|
+
/** The Jira issue type description. */
|
|
12787
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
12788
|
+
/** The Jira issue type identifier. */
|
|
12789
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
12790
|
+
/** The Jira issue type name. */
|
|
12791
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
12792
|
+
};
|
|
12793
|
+
/** Represents Jira issue types. */
|
|
12794
|
+
export type JiraIssueTypeResults = {
|
|
12795
|
+
__typename?: 'JiraIssueTypeResults';
|
|
12796
|
+
/** The Jira issue types. */
|
|
12797
|
+
results?: Maybe<Array<Maybe<JiraIssueTypeResult>>>;
|
|
12798
|
+
};
|
|
12799
|
+
/** Represents Jira issue type query properties. */
|
|
12800
|
+
export type JiraIssueTypesInput = {
|
|
12801
|
+
/** Authentication type, defaults to Token. */
|
|
12802
|
+
authenticationType?: InputMaybe<JiraAuthenticationTypes>;
|
|
12803
|
+
/** Atlassian cloud identifier, for Connector authentication. */
|
|
12804
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
12805
|
+
/** Authentication connector reference, for Connector authentication. */
|
|
12806
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
12807
|
+
/** Atlassian account email address, for Token authentication. */
|
|
12808
|
+
emailAddress?: InputMaybe<Scalars['String']['input']>;
|
|
12809
|
+
/** Atlassian Jira project key. */
|
|
12810
|
+
project: Scalars['String']['input'];
|
|
12811
|
+
/** Atlassian API token, for Token authentication. */
|
|
12812
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
12813
|
+
/** Atlassian Jira URI, for Token authentication. */
|
|
12814
|
+
uri?: InputMaybe<Scalars['String']['input']>;
|
|
12815
|
+
};
|
|
12781
12816
|
/** Represents a Jira project. */
|
|
12782
12817
|
export type JiraProjectResult = {
|
|
12783
12818
|
__typename?: 'JiraProjectResult';
|
|
@@ -12961,20 +12996,20 @@ export declare enum LinearAuthenticationTypes {
|
|
|
12961
12996
|
/** Represents the Linear distribution properties. */
|
|
12962
12997
|
export type LinearDistributionProperties = {
|
|
12963
12998
|
__typename?: 'LinearDistributionProperties';
|
|
12964
|
-
/** The assignee
|
|
12965
|
-
|
|
12999
|
+
/** The assignee email or name. */
|
|
13000
|
+
assignee?: Maybe<Scalars['String']['output']>;
|
|
12966
13001
|
/** The Linear issue ID. */
|
|
12967
13002
|
issueId?: Maybe<Scalars['String']['output']>;
|
|
12968
13003
|
/** The Linear issue URI. */
|
|
12969
13004
|
issueUri?: Maybe<Scalars['String']['output']>;
|
|
12970
|
-
/** The label
|
|
12971
|
-
|
|
13005
|
+
/** The label names. */
|
|
13006
|
+
labels?: Maybe<Array<Scalars['String']['output']>>;
|
|
12972
13007
|
/** The issue priority, from 0 (none) to 4 (urgent). */
|
|
12973
13008
|
priority?: Maybe<Scalars['Int']['output']>;
|
|
12974
13009
|
/** The project ID. */
|
|
12975
13010
|
projectId?: Maybe<Scalars['String']['output']>;
|
|
12976
|
-
/** The workflow state
|
|
12977
|
-
|
|
13011
|
+
/** The workflow state name. */
|
|
13012
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
12978
13013
|
/** The Linear team UUID. */
|
|
12979
13014
|
teamId?: Maybe<Scalars['String']['output']>;
|
|
12980
13015
|
/** The issue title. */
|
|
@@ -12982,20 +13017,20 @@ export type LinearDistributionProperties = {
|
|
|
12982
13017
|
};
|
|
12983
13018
|
/** Represents the Linear distribution properties. */
|
|
12984
13019
|
export type LinearDistributionPropertiesInput = {
|
|
12985
|
-
/** The assignee
|
|
12986
|
-
|
|
13020
|
+
/** The assignee email or name. */
|
|
13021
|
+
assignee?: InputMaybe<Scalars['String']['input']>;
|
|
12987
13022
|
/** The Linear issue ID. */
|
|
12988
13023
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
12989
13024
|
/** The Linear issue URI. */
|
|
12990
13025
|
issueUri?: InputMaybe<Scalars['String']['input']>;
|
|
12991
|
-
/** The label
|
|
12992
|
-
|
|
13026
|
+
/** The label names. */
|
|
13027
|
+
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
12993
13028
|
/** The issue priority, from 0 (none) to 4 (urgent). */
|
|
12994
13029
|
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
12995
13030
|
/** The project ID. */
|
|
12996
13031
|
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
12997
|
-
/** The workflow state
|
|
12998
|
-
|
|
13032
|
+
/** The workflow state name. */
|
|
13033
|
+
state?: InputMaybe<Scalars['String']['input']>;
|
|
12999
13034
|
/** The Linear team UUID. */
|
|
13000
13035
|
teamId?: InputMaybe<Scalars['String']['input']>;
|
|
13001
13036
|
/** The issue title. */
|
|
@@ -13099,6 +13134,26 @@ export type LinearInitiativesFeedPropertiesUpdateInput = {
|
|
|
13099
13134
|
/** OAuth refresh token. */
|
|
13100
13135
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
13101
13136
|
};
|
|
13137
|
+
/** Represents a Linear project. */
|
|
13138
|
+
export type LinearProjectResult = {
|
|
13139
|
+
__typename?: 'LinearProjectResult';
|
|
13140
|
+
/** The Linear project identifier. */
|
|
13141
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
13142
|
+
/** The Linear project name. */
|
|
13143
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
13144
|
+
/** The Linear team identifier linked to the project. */
|
|
13145
|
+
teamId?: Maybe<Scalars['ID']['output']>;
|
|
13146
|
+
/** The Linear team key linked to the project. */
|
|
13147
|
+
teamKey?: Maybe<Scalars['String']['output']>;
|
|
13148
|
+
/** The Linear team name linked to the project. */
|
|
13149
|
+
teamName?: Maybe<Scalars['String']['output']>;
|
|
13150
|
+
};
|
|
13151
|
+
/** Represents Linear projects. */
|
|
13152
|
+
export type LinearProjectResults = {
|
|
13153
|
+
__typename?: 'LinearProjectResults';
|
|
13154
|
+
/** The Linear projects. */
|
|
13155
|
+
results?: Maybe<Array<Maybe<LinearProjectResult>>>;
|
|
13156
|
+
};
|
|
13102
13157
|
/** Represents Linear projects properties. */
|
|
13103
13158
|
export type LinearProjectsInput = {
|
|
13104
13159
|
/** Linear authentication type, defaults to ApiKey. */
|
|
@@ -13114,6 +13169,37 @@ export type LinearProjectsInput = {
|
|
|
13114
13169
|
/** Linear OAuth2 refresh token. */
|
|
13115
13170
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
13116
13171
|
};
|
|
13172
|
+
/** Represents a Linear team. */
|
|
13173
|
+
export type LinearTeamResult = {
|
|
13174
|
+
__typename?: 'LinearTeamResult';
|
|
13175
|
+
/** The Linear team identifier. */
|
|
13176
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
13177
|
+
/** The Linear team key. */
|
|
13178
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
13179
|
+
/** The Linear team name. */
|
|
13180
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
13181
|
+
};
|
|
13182
|
+
/** Represents Linear teams. */
|
|
13183
|
+
export type LinearTeamResults = {
|
|
13184
|
+
__typename?: 'LinearTeamResults';
|
|
13185
|
+
/** The Linear teams. */
|
|
13186
|
+
results?: Maybe<Array<Maybe<LinearTeamResult>>>;
|
|
13187
|
+
};
|
|
13188
|
+
/** Represents Linear team query properties. */
|
|
13189
|
+
export type LinearTeamsInput = {
|
|
13190
|
+
/** Linear authentication type, defaults to ApiKey. */
|
|
13191
|
+
authenticationType?: InputMaybe<LinearAuthenticationTypes>;
|
|
13192
|
+
/** Linear OAuth2 client identifier. */
|
|
13193
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
13194
|
+
/** Linear OAuth2 client secret. */
|
|
13195
|
+
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
13196
|
+
/** Connector reference for credential retrieval. */
|
|
13197
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
13198
|
+
/** Linear API key. */
|
|
13199
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
|
13200
|
+
/** Linear OAuth2 refresh token. */
|
|
13201
|
+
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
13202
|
+
};
|
|
13117
13203
|
/** Represents a hyperlink. */
|
|
13118
13204
|
export type LinkReference = {
|
|
13119
13205
|
__typename?: 'LinkReference';
|
|
@@ -21784,6 +21870,8 @@ export type Query = {
|
|
|
21784
21870
|
gustoDepartments?: Maybe<HrisOptionResults>;
|
|
21785
21871
|
/** Retrieves available Gusto locations for a company. */
|
|
21786
21872
|
gustoLocations?: Maybe<GustoLocationResults>;
|
|
21873
|
+
/** Retrieves available Intercom teams. */
|
|
21874
|
+
intercomTeams?: Maybe<IntercomTeamResults>;
|
|
21787
21875
|
/** Lookup a investment given its ID. */
|
|
21788
21876
|
investment?: Maybe<Investment>;
|
|
21789
21877
|
/** Lookup a investment fund given its ID. */
|
|
@@ -21796,6 +21884,8 @@ export type Query = {
|
|
|
21796
21884
|
isContentDone?: Maybe<BooleanResult>;
|
|
21797
21885
|
/** Returns if all the contents ingested from a feed have finished (or errored). */
|
|
21798
21886
|
isFeedDone?: Maybe<BooleanResult>;
|
|
21887
|
+
/** Retrieves available Jira issue types for a project. */
|
|
21888
|
+
jiraIssueTypes?: Maybe<JiraIssueTypeResults>;
|
|
21799
21889
|
/** Retrieves available Jira projects. */
|
|
21800
21890
|
jiraProjects?: Maybe<JiraProjectResults>;
|
|
21801
21891
|
/** Lookup a label given its ID. */
|
|
@@ -21803,7 +21893,9 @@ export type Query = {
|
|
|
21803
21893
|
/** Retrieves labels based on the provided filter criteria. */
|
|
21804
21894
|
labels?: Maybe<LabelResults>;
|
|
21805
21895
|
/** Retrieves available Linear projects. */
|
|
21806
|
-
linearProjects?: Maybe<
|
|
21896
|
+
linearProjects?: Maybe<LinearProjectResults>;
|
|
21897
|
+
/** Retrieves available Linear teams. */
|
|
21898
|
+
linearTeams?: Maybe<LinearTeamResults>;
|
|
21807
21899
|
/** Looks up companies by name, domain, or LinkedIn URL. */
|
|
21808
21900
|
lookupCompanies?: Maybe<CompanyLookupResults>;
|
|
21809
21901
|
/** Lookup multiple contents given their IDs. */
|
|
@@ -21968,6 +22060,10 @@ export type Query = {
|
|
|
21968
22060
|
workflowExists?: Maybe<BooleanResult>;
|
|
21969
22061
|
/** Retrieves workflows based on the provided filter criteria. */
|
|
21970
22062
|
workflows?: Maybe<WorkflowResults>;
|
|
22063
|
+
/** Retrieves available Zendesk groups. */
|
|
22064
|
+
zendeskGroups?: Maybe<ZendeskGroupResults>;
|
|
22065
|
+
/** Retrieves available Zendesk users. */
|
|
22066
|
+
zendeskUsers?: Maybe<ZendeskUserResults>;
|
|
21971
22067
|
};
|
|
21972
22068
|
export type QueryAgentArgs = {
|
|
21973
22069
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -22327,6 +22423,10 @@ export type QueryGustoDepartmentsArgs = {
|
|
|
22327
22423
|
export type QueryGustoLocationsArgs = {
|
|
22328
22424
|
properties: GustoOptionsInput;
|
|
22329
22425
|
};
|
|
22426
|
+
export type QueryIntercomTeamsArgs = {
|
|
22427
|
+
properties: IntercomTicketsFeedPropertiesInput;
|
|
22428
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
22429
|
+
};
|
|
22330
22430
|
export type QueryInvestmentArgs = {
|
|
22331
22431
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
22332
22432
|
id: Scalars['ID']['input'];
|
|
@@ -22355,6 +22455,9 @@ export type QueryIsFeedDoneArgs = {
|
|
|
22355
22455
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
22356
22456
|
id: Scalars['ID']['input'];
|
|
22357
22457
|
};
|
|
22458
|
+
export type QueryJiraIssueTypesArgs = {
|
|
22459
|
+
properties: JiraIssueTypesInput;
|
|
22460
|
+
};
|
|
22358
22461
|
export type QueryJiraProjectsArgs = {
|
|
22359
22462
|
properties: JiraProjectsInput;
|
|
22360
22463
|
};
|
|
@@ -22370,6 +22473,9 @@ export type QueryLabelsArgs = {
|
|
|
22370
22473
|
export type QueryLinearProjectsArgs = {
|
|
22371
22474
|
properties: LinearProjectsInput;
|
|
22372
22475
|
};
|
|
22476
|
+
export type QueryLinearTeamsArgs = {
|
|
22477
|
+
properties: LinearTeamsInput;
|
|
22478
|
+
};
|
|
22373
22479
|
export type QueryLookupCompaniesArgs = {
|
|
22374
22480
|
domain?: InputMaybe<Scalars['String']['input']>;
|
|
22375
22481
|
linkedInUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
@@ -22737,6 +22843,14 @@ export type QueryWorkflowsArgs = {
|
|
|
22737
22843
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
22738
22844
|
filter?: InputMaybe<WorkflowFilter>;
|
|
22739
22845
|
};
|
|
22846
|
+
export type QueryZendeskGroupsArgs = {
|
|
22847
|
+
properties: ZendeskDiscoveryInput;
|
|
22848
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
22849
|
+
};
|
|
22850
|
+
export type QueryZendeskUsersArgs = {
|
|
22851
|
+
properties: ZendeskDiscoveryInput;
|
|
22852
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
22853
|
+
};
|
|
22740
22854
|
/** Quiver Image model type */
|
|
22741
22855
|
export declare enum QuiverImageModels {
|
|
22742
22856
|
/** Arrow Preview */
|
|
@@ -26667,11 +26781,28 @@ export declare enum ZendeskAuthenticationTypes {
|
|
|
26667
26781
|
AccessToken = "ACCESS_TOKEN",
|
|
26668
26782
|
Connector = "CONNECTOR"
|
|
26669
26783
|
}
|
|
26784
|
+
/** Represents Zendesk discovery query properties. */
|
|
26785
|
+
export type ZendeskDiscoveryInput = {
|
|
26786
|
+
/** Zendesk access token. */
|
|
26787
|
+
accessToken?: InputMaybe<Scalars['String']['input']>;
|
|
26788
|
+
/** Zendesk authentication type. */
|
|
26789
|
+
authenticationType?: InputMaybe<ZendeskIssueAuthenticationTypes>;
|
|
26790
|
+
/** Zendesk OAuth2 client identifier. */
|
|
26791
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
26792
|
+
/** Zendesk OAuth2 client secret. */
|
|
26793
|
+
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
26794
|
+
/** Connector reference for credential retrieval. */
|
|
26795
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
26796
|
+
/** Zendesk OAuth2 refresh token. */
|
|
26797
|
+
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
26798
|
+
/** Zendesk subdomain, defaults from connector metadata when available. */
|
|
26799
|
+
subdomain?: InputMaybe<Scalars['String']['input']>;
|
|
26800
|
+
};
|
|
26670
26801
|
/** Represents the Zendesk distribution properties. */
|
|
26671
26802
|
export type ZendeskDistributionProperties = {
|
|
26672
26803
|
__typename?: 'ZendeskDistributionProperties';
|
|
26673
|
-
/** The assignee
|
|
26674
|
-
|
|
26804
|
+
/** The assignee email or name. */
|
|
26805
|
+
assignee?: Maybe<Scalars['String']['output']>;
|
|
26675
26806
|
/** The group ID. */
|
|
26676
26807
|
groupId?: Maybe<Scalars['String']['output']>;
|
|
26677
26808
|
/** The ticket priority. */
|
|
@@ -26695,8 +26826,8 @@ export type ZendeskDistributionProperties = {
|
|
|
26695
26826
|
};
|
|
26696
26827
|
/** Represents the Zendesk distribution properties. */
|
|
26697
26828
|
export type ZendeskDistributionPropertiesInput = {
|
|
26698
|
-
/** The assignee
|
|
26699
|
-
|
|
26829
|
+
/** The assignee email or name. */
|
|
26830
|
+
assignee?: InputMaybe<Scalars['String']['input']>;
|
|
26700
26831
|
/** The group ID. */
|
|
26701
26832
|
groupId?: InputMaybe<Scalars['String']['input']>;
|
|
26702
26833
|
/** The ticket priority. */
|
|
@@ -26776,6 +26907,20 @@ export type ZendeskFeedPropertiesUpdateInput = {
|
|
|
26776
26907
|
/** Zendesk subdomain. */
|
|
26777
26908
|
subdomain?: InputMaybe<Scalars['String']['input']>;
|
|
26778
26909
|
};
|
|
26910
|
+
/** Represents a Zendesk group. */
|
|
26911
|
+
export type ZendeskGroupResult = {
|
|
26912
|
+
__typename?: 'ZendeskGroupResult';
|
|
26913
|
+
/** The Zendesk group identifier. */
|
|
26914
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
26915
|
+
/** The Zendesk group name. */
|
|
26916
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
26917
|
+
};
|
|
26918
|
+
/** Represents Zendesk groups. */
|
|
26919
|
+
export type ZendeskGroupResults = {
|
|
26920
|
+
__typename?: 'ZendeskGroupResults';
|
|
26921
|
+
/** The Zendesk groups. */
|
|
26922
|
+
results?: Maybe<Array<Maybe<ZendeskGroupResult>>>;
|
|
26923
|
+
};
|
|
26779
26924
|
export declare enum ZendeskIssueAuthenticationTypes {
|
|
26780
26925
|
AccessToken = "ACCESS_TOKEN",
|
|
26781
26926
|
Connector = "CONNECTOR"
|
|
@@ -26832,6 +26977,24 @@ export type ZendeskTicketsFeedPropertiesUpdateInput = {
|
|
|
26832
26977
|
/** Zendesk subdomain. */
|
|
26833
26978
|
subdomain?: InputMaybe<Scalars['String']['input']>;
|
|
26834
26979
|
};
|
|
26980
|
+
/** Represents a Zendesk user. */
|
|
26981
|
+
export type ZendeskUserResult = {
|
|
26982
|
+
__typename?: 'ZendeskUserResult';
|
|
26983
|
+
/** The Zendesk user email. */
|
|
26984
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
26985
|
+
/** The Zendesk user identifier. */
|
|
26986
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
26987
|
+
/** The Zendesk user name. */
|
|
26988
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
26989
|
+
/** The Zendesk user role. */
|
|
26990
|
+
role?: Maybe<Scalars['String']['output']>;
|
|
26991
|
+
};
|
|
26992
|
+
/** Represents Zendesk users. */
|
|
26993
|
+
export type ZendeskUserResults = {
|
|
26994
|
+
__typename?: 'ZendeskUserResults';
|
|
26995
|
+
/** The Zendesk users. */
|
|
26996
|
+
results?: Maybe<Array<Maybe<ZendeskUserResult>>>;
|
|
26997
|
+
};
|
|
26835
26998
|
/** Zoom authentication type */
|
|
26836
26999
|
export declare enum ZoomAuthenticationTypes {
|
|
26837
27000
|
/** Zoom OAuth2 via connector */
|
|
@@ -27426,9 +27589,9 @@ export type GetAgentQuery = {
|
|
|
27426
27589
|
teamId?: string | null;
|
|
27427
27590
|
title?: string | null;
|
|
27428
27591
|
priority?: number | null;
|
|
27429
|
-
|
|
27430
|
-
|
|
27431
|
-
|
|
27592
|
+
state?: string | null;
|
|
27593
|
+
assignee?: string | null;
|
|
27594
|
+
labels?: Array<string> | null;
|
|
27432
27595
|
projectId?: string | null;
|
|
27433
27596
|
} | null;
|
|
27434
27597
|
jira?: {
|
|
@@ -27436,10 +27599,11 @@ export type GetAgentQuery = {
|
|
|
27436
27599
|
issueKey?: string | null;
|
|
27437
27600
|
issueUri?: string | null;
|
|
27438
27601
|
projectKey?: string | null;
|
|
27602
|
+
cloudId?: string | null;
|
|
27439
27603
|
issueType?: string | null;
|
|
27440
27604
|
summary?: string | null;
|
|
27441
27605
|
priority?: string | null;
|
|
27442
|
-
|
|
27606
|
+
assignee?: string | null;
|
|
27443
27607
|
labels?: Array<string> | null;
|
|
27444
27608
|
status?: string | null;
|
|
27445
27609
|
} | null;
|
|
@@ -27452,7 +27616,7 @@ export type GetAgentQuery = {
|
|
|
27452
27616
|
priority?: string | null;
|
|
27453
27617
|
status?: string | null;
|
|
27454
27618
|
type?: string | null;
|
|
27455
|
-
|
|
27619
|
+
assignee?: string | null;
|
|
27456
27620
|
groupId?: string | null;
|
|
27457
27621
|
tags?: Array<string> | null;
|
|
27458
27622
|
visibility?: string | null;
|
|
@@ -27461,19 +27625,15 @@ export type GetAgentQuery = {
|
|
|
27461
27625
|
__typename?: 'IntercomDistributionProperties';
|
|
27462
27626
|
ticketId?: string | null;
|
|
27463
27627
|
ticketUri?: string | null;
|
|
27464
|
-
|
|
27465
|
-
|
|
27466
|
-
contactExternalId?: string | null;
|
|
27467
|
-
contactEmail?: string | null;
|
|
27628
|
+
ticketType?: string | null;
|
|
27629
|
+
requesterEmail?: string | null;
|
|
27468
27630
|
conversationToLinkId?: string | null;
|
|
27469
27631
|
companyId?: string | null;
|
|
27470
|
-
adminId?: string | null;
|
|
27471
27632
|
title?: string | null;
|
|
27472
|
-
stateId?: string | null;
|
|
27473
27633
|
state?: string | null;
|
|
27474
|
-
|
|
27634
|
+
assignee?: string | null;
|
|
27475
27635
|
teamId?: string | null;
|
|
27476
|
-
|
|
27636
|
+
tags?: Array<string> | null;
|
|
27477
27637
|
visibility?: string | null;
|
|
27478
27638
|
isShared?: boolean | null;
|
|
27479
27639
|
skipNotifications?: boolean | null;
|
|
@@ -27997,9 +28157,9 @@ export type QueryAgentsQuery = {
|
|
|
27997
28157
|
teamId?: string | null;
|
|
27998
28158
|
title?: string | null;
|
|
27999
28159
|
priority?: number | null;
|
|
28000
|
-
|
|
28001
|
-
|
|
28002
|
-
|
|
28160
|
+
state?: string | null;
|
|
28161
|
+
assignee?: string | null;
|
|
28162
|
+
labels?: Array<string> | null;
|
|
28003
28163
|
projectId?: string | null;
|
|
28004
28164
|
} | null;
|
|
28005
28165
|
jira?: {
|
|
@@ -28007,10 +28167,11 @@ export type QueryAgentsQuery = {
|
|
|
28007
28167
|
issueKey?: string | null;
|
|
28008
28168
|
issueUri?: string | null;
|
|
28009
28169
|
projectKey?: string | null;
|
|
28170
|
+
cloudId?: string | null;
|
|
28010
28171
|
issueType?: string | null;
|
|
28011
28172
|
summary?: string | null;
|
|
28012
28173
|
priority?: string | null;
|
|
28013
|
-
|
|
28174
|
+
assignee?: string | null;
|
|
28014
28175
|
labels?: Array<string> | null;
|
|
28015
28176
|
status?: string | null;
|
|
28016
28177
|
} | null;
|
|
@@ -28023,7 +28184,7 @@ export type QueryAgentsQuery = {
|
|
|
28023
28184
|
priority?: string | null;
|
|
28024
28185
|
status?: string | null;
|
|
28025
28186
|
type?: string | null;
|
|
28026
|
-
|
|
28187
|
+
assignee?: string | null;
|
|
28027
28188
|
groupId?: string | null;
|
|
28028
28189
|
tags?: Array<string> | null;
|
|
28029
28190
|
visibility?: string | null;
|
|
@@ -28032,19 +28193,15 @@ export type QueryAgentsQuery = {
|
|
|
28032
28193
|
__typename?: 'IntercomDistributionProperties';
|
|
28033
28194
|
ticketId?: string | null;
|
|
28034
28195
|
ticketUri?: string | null;
|
|
28035
|
-
|
|
28036
|
-
|
|
28037
|
-
contactExternalId?: string | null;
|
|
28038
|
-
contactEmail?: string | null;
|
|
28196
|
+
ticketType?: string | null;
|
|
28197
|
+
requesterEmail?: string | null;
|
|
28039
28198
|
conversationToLinkId?: string | null;
|
|
28040
28199
|
companyId?: string | null;
|
|
28041
|
-
adminId?: string | null;
|
|
28042
28200
|
title?: string | null;
|
|
28043
|
-
stateId?: string | null;
|
|
28044
28201
|
state?: string | null;
|
|
28045
|
-
|
|
28202
|
+
assignee?: string | null;
|
|
28046
28203
|
teamId?: string | null;
|
|
28047
|
-
|
|
28204
|
+
tags?: Array<string> | null;
|
|
28048
28205
|
visibility?: string | null;
|
|
28049
28206
|
isShared?: boolean | null;
|
|
28050
28207
|
skipNotifications?: boolean | null;
|
|
@@ -41779,6 +41936,36 @@ export type QueryGustoLocationsQuery = {
|
|
|
41779
41936
|
} | null> | null;
|
|
41780
41937
|
} | null;
|
|
41781
41938
|
};
|
|
41939
|
+
export type QueryIntercomTeamsQueryVariables = Exact<{
|
|
41940
|
+
properties: IntercomTicketsFeedPropertiesInput;
|
|
41941
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
41942
|
+
}>;
|
|
41943
|
+
export type QueryIntercomTeamsQuery = {
|
|
41944
|
+
__typename?: 'Query';
|
|
41945
|
+
intercomTeams?: {
|
|
41946
|
+
__typename?: 'IntercomTeamResults';
|
|
41947
|
+
results?: Array<{
|
|
41948
|
+
__typename?: 'IntercomTeamResult';
|
|
41949
|
+
id?: string | null;
|
|
41950
|
+
name?: string | null;
|
|
41951
|
+
} | null> | null;
|
|
41952
|
+
} | null;
|
|
41953
|
+
};
|
|
41954
|
+
export type QueryJiraIssueTypesQueryVariables = Exact<{
|
|
41955
|
+
properties: JiraIssueTypesInput;
|
|
41956
|
+
}>;
|
|
41957
|
+
export type QueryJiraIssueTypesQuery = {
|
|
41958
|
+
__typename?: 'Query';
|
|
41959
|
+
jiraIssueTypes?: {
|
|
41960
|
+
__typename?: 'JiraIssueTypeResults';
|
|
41961
|
+
results?: Array<{
|
|
41962
|
+
__typename?: 'JiraIssueTypeResult';
|
|
41963
|
+
id?: string | null;
|
|
41964
|
+
name?: string | null;
|
|
41965
|
+
description?: string | null;
|
|
41966
|
+
} | null> | null;
|
|
41967
|
+
} | null;
|
|
41968
|
+
};
|
|
41782
41969
|
export type QueryJiraProjectsQueryVariables = Exact<{
|
|
41783
41970
|
properties: JiraProjectsInput;
|
|
41784
41971
|
}>;
|
|
@@ -41800,8 +41987,30 @@ export type QueryLinearProjectsQueryVariables = Exact<{
|
|
|
41800
41987
|
export type QueryLinearProjectsQuery = {
|
|
41801
41988
|
__typename?: 'Query';
|
|
41802
41989
|
linearProjects?: {
|
|
41803
|
-
__typename?: '
|
|
41804
|
-
results?: Array<
|
|
41990
|
+
__typename?: 'LinearProjectResults';
|
|
41991
|
+
results?: Array<{
|
|
41992
|
+
__typename?: 'LinearProjectResult';
|
|
41993
|
+
id?: string | null;
|
|
41994
|
+
name?: string | null;
|
|
41995
|
+
teamId?: string | null;
|
|
41996
|
+
teamKey?: string | null;
|
|
41997
|
+
teamName?: string | null;
|
|
41998
|
+
} | null> | null;
|
|
41999
|
+
} | null;
|
|
42000
|
+
};
|
|
42001
|
+
export type QueryLinearTeamsQueryVariables = Exact<{
|
|
42002
|
+
properties: LinearTeamsInput;
|
|
42003
|
+
}>;
|
|
42004
|
+
export type QueryLinearTeamsQuery = {
|
|
42005
|
+
__typename?: 'Query';
|
|
42006
|
+
linearTeams?: {
|
|
42007
|
+
__typename?: 'LinearTeamResults';
|
|
42008
|
+
results?: Array<{
|
|
42009
|
+
__typename?: 'LinearTeamResult';
|
|
42010
|
+
id?: string | null;
|
|
42011
|
+
key?: string | null;
|
|
42012
|
+
name?: string | null;
|
|
42013
|
+
} | null> | null;
|
|
41805
42014
|
} | null;
|
|
41806
42015
|
};
|
|
41807
42016
|
export type QueryMicrosoftCalendarsQueryVariables = Exact<{
|
|
@@ -41963,6 +42172,38 @@ export type QuerySlackUsersQuery = {
|
|
|
41963
42172
|
} | null> | null;
|
|
41964
42173
|
} | null;
|
|
41965
42174
|
};
|
|
42175
|
+
export type QueryZendeskGroupsQueryVariables = Exact<{
|
|
42176
|
+
properties: ZendeskDiscoveryInput;
|
|
42177
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
42178
|
+
}>;
|
|
42179
|
+
export type QueryZendeskGroupsQuery = {
|
|
42180
|
+
__typename?: 'Query';
|
|
42181
|
+
zendeskGroups?: {
|
|
42182
|
+
__typename?: 'ZendeskGroupResults';
|
|
42183
|
+
results?: Array<{
|
|
42184
|
+
__typename?: 'ZendeskGroupResult';
|
|
42185
|
+
id?: string | null;
|
|
42186
|
+
name?: string | null;
|
|
42187
|
+
} | null> | null;
|
|
42188
|
+
} | null;
|
|
42189
|
+
};
|
|
42190
|
+
export type QueryZendeskUsersQueryVariables = Exact<{
|
|
42191
|
+
properties: ZendeskDiscoveryInput;
|
|
42192
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
42193
|
+
}>;
|
|
42194
|
+
export type QueryZendeskUsersQuery = {
|
|
42195
|
+
__typename?: 'Query';
|
|
42196
|
+
zendeskUsers?: {
|
|
42197
|
+
__typename?: 'ZendeskUserResults';
|
|
42198
|
+
results?: Array<{
|
|
42199
|
+
__typename?: 'ZendeskUserResult';
|
|
42200
|
+
id?: string | null;
|
|
42201
|
+
name?: string | null;
|
|
42202
|
+
email?: string | null;
|
|
42203
|
+
role?: string | null;
|
|
42204
|
+
} | null> | null;
|
|
42205
|
+
} | null;
|
|
42206
|
+
};
|
|
41966
42207
|
export type TriggerFeedMutationVariables = Exact<{
|
|
41967
42208
|
id: Scalars['ID']['input'];
|
|
41968
42209
|
}>;
|