@forge/cli-shared 6.6.1-next.1 → 6.6.1-next.11
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/CHANGELOG.md +69 -0
- package/out/graphql/graphql-types.d.ts +1939 -210
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +198 -41
- package/out/service/supported-products-service.d.ts +28 -19
- package/out/service/supported-products-service.d.ts.map +1 -1
- package/out/service/supported-products-service.js +89 -73
- package/out/ui/command-line-ui.d.ts +1 -1
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/command-line-ui.js +3 -2
- package/out/ui/table-prompt.d.ts +2 -0
- package/out/ui/table-prompt.d.ts.map +1 -1
- package/out/ui/table-prompt.js +23 -2
- package/out/ui/text.d.ts +5 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +8 -1
- package/out/ui/ui.d.ts +4 -4
- package/out/ui/ui.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -161,6 +161,7 @@ export declare type ActionsAction = {
|
|
|
161
161
|
__typename?: 'ActionsAction';
|
|
162
162
|
actionType: Scalars['String']['output'];
|
|
163
163
|
actionVerb?: Maybe<Scalars['String']['output']>;
|
|
164
|
+
actionVersion?: Maybe<Scalars['String']['output']>;
|
|
164
165
|
auth: Array<ActionsAuthType>;
|
|
165
166
|
description?: Maybe<ActionsDescription>;
|
|
166
167
|
enabledCapabilities?: Maybe<Array<Maybe<ActionsCapabilityType>>>;
|
|
@@ -263,6 +264,7 @@ export declare type ActionsActionableAppsFilter = {
|
|
|
263
264
|
byActionId?: InputMaybe<Scalars['String']['input']>;
|
|
264
265
|
byActionType?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
265
266
|
byActionVerb?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
267
|
+
byActionVersion?: InputMaybe<Scalars['String']['input']>;
|
|
266
268
|
byCapability?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
267
269
|
byContextEntityType?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
268
270
|
byEntityProperty?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -594,7 +596,7 @@ export declare type ActivityObject = {
|
|
|
594
596
|
subProduct?: Maybe<Scalars['String']['output']>;
|
|
595
597
|
type: Scalars['String']['output'];
|
|
596
598
|
};
|
|
597
|
-
export declare type ActivityObjectData = BitbucketPullRequest | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | MercuryFocusArea | MercuryPortfolio | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloAttachment | TrelloBoard | TrelloCard | TrelloLabel | TrelloList | TrelloMember;
|
|
599
|
+
export declare type ActivityObjectData = BitbucketPullRequest | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | LoomVideo | MercuryFocusArea | MercuryPortfolio | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloAttachment | TrelloBoard | TrelloCard | TrelloLabel | TrelloList | TrelloMember;
|
|
598
600
|
export declare enum ActivityObjectType {
|
|
599
601
|
Blogpost = "BLOGPOST",
|
|
600
602
|
Comment = "COMMENT",
|
|
@@ -773,17 +775,29 @@ export declare type AgentAiSummary = {
|
|
|
773
775
|
export declare type AgentStudioAction = {
|
|
774
776
|
__typename?: 'AgentStudioAction';
|
|
775
777
|
actionKey: Scalars['String']['output'];
|
|
778
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
779
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
780
|
+
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
776
781
|
};
|
|
777
782
|
export declare type AgentStudioActionConfiguration = {
|
|
778
783
|
__typename?: 'AgentStudioActionConfiguration';
|
|
779
784
|
actions?: Maybe<Array<AgentStudioAction>>;
|
|
780
785
|
};
|
|
786
|
+
export declare type AgentStudioActionConfigurationInput = {
|
|
787
|
+
actions?: InputMaybe<Array<AgentStudioActionInput>>;
|
|
788
|
+
};
|
|
789
|
+
export declare type AgentStudioActionInput = {
|
|
790
|
+
actionKey: Scalars['String']['input'];
|
|
791
|
+
};
|
|
781
792
|
export declare type AgentStudioAgent = {
|
|
782
793
|
description?: Maybe<Scalars['String']['output']>;
|
|
783
794
|
id: Scalars['ID']['output'];
|
|
784
795
|
name?: Maybe<Scalars['String']['output']>;
|
|
785
796
|
};
|
|
786
797
|
export declare type AgentStudioAgentResult = AgentStudioAssistant | QueryError;
|
|
798
|
+
export declare enum AgentStudioAgentType {
|
|
799
|
+
Assistant = "ASSISTANT"
|
|
800
|
+
}
|
|
787
801
|
export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
788
802
|
__typename?: 'AgentStudioAssistant';
|
|
789
803
|
actions?: Maybe<AgentStudioActionConfiguration>;
|
|
@@ -792,8 +806,120 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
792
806
|
description?: Maybe<Scalars['String']['output']>;
|
|
793
807
|
id: Scalars['ID']['output'];
|
|
794
808
|
instructions?: Maybe<Scalars['String']['output']>;
|
|
809
|
+
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
795
810
|
name?: Maybe<Scalars['String']['output']>;
|
|
796
811
|
};
|
|
812
|
+
export declare type AgentStudioConfluenceKnowledgeFilter = {
|
|
813
|
+
__typename?: 'AgentStudioConfluenceKnowledgeFilter';
|
|
814
|
+
parentFilter?: Maybe<Array<Scalars['ID']['output']>>;
|
|
815
|
+
spaceFilter?: Maybe<Array<Scalars['ID']['output']>>;
|
|
816
|
+
};
|
|
817
|
+
export declare type AgentStudioConfluenceKnowledgeFilterInput = {
|
|
818
|
+
parentFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
819
|
+
spaceFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
820
|
+
};
|
|
821
|
+
export declare type AgentStudioConversationStarterSuggestions = {
|
|
822
|
+
__typename?: 'AgentStudioConversationStarterSuggestions';
|
|
823
|
+
suggestions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
824
|
+
};
|
|
825
|
+
export declare type AgentStudioCreateAgentInput = {
|
|
826
|
+
actions?: InputMaybe<AgentStudioActionConfigurationInput>;
|
|
827
|
+
agentType: AgentStudioAgentType;
|
|
828
|
+
conversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
829
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
830
|
+
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
831
|
+
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
832
|
+
name: Scalars['String']['input'];
|
|
833
|
+
};
|
|
834
|
+
export declare type AgentStudioCreateAgentPayload = Payload & {
|
|
835
|
+
__typename?: 'AgentStudioCreateAgentPayload';
|
|
836
|
+
agent?: Maybe<AgentStudioAgent>;
|
|
837
|
+
errors?: Maybe<Array<MutationError>>;
|
|
838
|
+
success: Scalars['Boolean']['output'];
|
|
839
|
+
};
|
|
840
|
+
export declare type AgentStudioJiraKnowledgeFilter = {
|
|
841
|
+
__typename?: 'AgentStudioJiraKnowledgeFilter';
|
|
842
|
+
projectFilter?: Maybe<Array<Scalars['ID']['output']>>;
|
|
843
|
+
};
|
|
844
|
+
export declare type AgentStudioJiraKnowledgeFilterInput = {
|
|
845
|
+
projectFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
846
|
+
};
|
|
847
|
+
export declare type AgentStudioKnowledgeConfiguration = {
|
|
848
|
+
__typename?: 'AgentStudioKnowledgeConfiguration';
|
|
849
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
850
|
+
sources?: Maybe<Array<AgentStudioKnowledgeSource>>;
|
|
851
|
+
};
|
|
852
|
+
export declare type AgentStudioKnowledgeConfigurationInput = {
|
|
853
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
854
|
+
sources?: InputMaybe<Array<AgentStudioKnowledgeSourceInput>>;
|
|
855
|
+
};
|
|
856
|
+
export declare type AgentStudioKnowledgeFilter = AgentStudioConfluenceKnowledgeFilter | AgentStudioJiraKnowledgeFilter;
|
|
857
|
+
export declare type AgentStudioKnowledgeFiltersInput = {
|
|
858
|
+
confluenceFilter?: InputMaybe<AgentStudioConfluenceKnowledgeFilterInput>;
|
|
859
|
+
jiraFilter?: InputMaybe<AgentStudioJiraKnowledgeFilterInput>;
|
|
860
|
+
};
|
|
861
|
+
export declare type AgentStudioKnowledgeSource = {
|
|
862
|
+
__typename?: 'AgentStudioKnowledgeSource';
|
|
863
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
864
|
+
filters?: Maybe<AgentStudioKnowledgeFilter>;
|
|
865
|
+
source: Scalars['String']['output'];
|
|
866
|
+
};
|
|
867
|
+
export declare type AgentStudioKnowledgeSourceInput = {
|
|
868
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
869
|
+
filters?: InputMaybe<AgentStudioKnowledgeFiltersInput>;
|
|
870
|
+
source: Scalars['String']['input'];
|
|
871
|
+
};
|
|
872
|
+
export declare type AgentStudioSuggestConversationStartersInput = {
|
|
873
|
+
agentDescription?: InputMaybe<Scalars['String']['input']>;
|
|
874
|
+
agentInstructions?: InputMaybe<Scalars['String']['input']>;
|
|
875
|
+
agentName?: InputMaybe<Scalars['String']['input']>;
|
|
876
|
+
};
|
|
877
|
+
export declare type AgentStudioSuggestConversationStartersResult = AgentStudioConversationStarterSuggestions | QueryError;
|
|
878
|
+
export declare type AgentStudioUpdateAgentActionsPayload = Payload & {
|
|
879
|
+
__typename?: 'AgentStudioUpdateAgentActionsPayload';
|
|
880
|
+
agent?: Maybe<AgentStudioAgent>;
|
|
881
|
+
errors?: Maybe<Array<MutationError>>;
|
|
882
|
+
success: Scalars['Boolean']['output'];
|
|
883
|
+
};
|
|
884
|
+
export declare type AgentStudioUpdateAgentDetailsInput = {
|
|
885
|
+
creatorId?: InputMaybe<Scalars['ID']['input']>;
|
|
886
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
887
|
+
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
888
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
889
|
+
};
|
|
890
|
+
export declare type AgentStudioUpdateAgentDetailsPayload = Payload & {
|
|
891
|
+
__typename?: 'AgentStudioUpdateAgentDetailsPayload';
|
|
892
|
+
agent?: Maybe<AgentStudioAgent>;
|
|
893
|
+
errors?: Maybe<Array<MutationError>>;
|
|
894
|
+
success: Scalars['Boolean']['output'];
|
|
895
|
+
};
|
|
896
|
+
export declare type AgentStudioUpdateConversationStartersInput = {
|
|
897
|
+
conversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
898
|
+
};
|
|
899
|
+
export declare type AgentStudioUpdateConversationStartersPayload = Payload & {
|
|
900
|
+
__typename?: 'AgentStudioUpdateConversationStartersPayload';
|
|
901
|
+
agent?: Maybe<AgentStudioAgent>;
|
|
902
|
+
errors?: Maybe<Array<MutationError>>;
|
|
903
|
+
success: Scalars['Boolean']['output'];
|
|
904
|
+
};
|
|
905
|
+
export declare type AiCoreApiVsaReporting = {
|
|
906
|
+
__typename?: 'AiCoreApiVSAReporting';
|
|
907
|
+
projectAri: Scalars['ID']['output'];
|
|
908
|
+
unassistedConversationStatsWithMetaData?: Maybe<AiCoreApiVsaUnassistedConversationStatsWithMetaData>;
|
|
909
|
+
};
|
|
910
|
+
export declare type AiCoreApiVsaReportingResult = AiCoreApiVsaReporting | QueryError;
|
|
911
|
+
export declare type AiCoreApiVsaUnassistedConversationStats = {
|
|
912
|
+
__typename?: 'AiCoreApiVSAUnassistedConversationStats';
|
|
913
|
+
clusterId: Scalars['ID']['output'];
|
|
914
|
+
conversationIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
915
|
+
conversationsCount: Scalars['Int']['output'];
|
|
916
|
+
title: Scalars['String']['output'];
|
|
917
|
+
};
|
|
918
|
+
export declare type AiCoreApiVsaUnassistedConversationStatsWithMetaData = {
|
|
919
|
+
__typename?: 'AiCoreApiVSAUnassistedConversationStatsWithMetaData';
|
|
920
|
+
refreshedUntil?: Maybe<Scalars['DateTime']['output']>;
|
|
921
|
+
unassistedConversationStats?: Maybe<Array<AiCoreApiVsaUnassistedConversationStats>>;
|
|
922
|
+
};
|
|
797
923
|
export declare enum AlertEventStatus {
|
|
798
924
|
Acknowledged = "ACKNOWLEDGED",
|
|
799
925
|
Closed = "CLOSED",
|
|
@@ -857,13 +983,10 @@ export declare enum AnalyticsEventName {
|
|
|
857
983
|
WhiteboardViewed = "whiteboard_viewed"
|
|
858
984
|
}
|
|
859
985
|
export declare enum AnalyticsMeasuresEventName {
|
|
860
|
-
CurrentBlogpostCountSitestateMeasured = "currentBlogpostCount_sitestate_measured",
|
|
861
986
|
CurrentBlogpostCountSpacestateMeasured = "currentBlogpostCount_spacestate_measured",
|
|
862
|
-
CurrentDatabaseCountSitestateMeasured = "currentDatabaseCount_sitestate_measured",
|
|
863
987
|
CurrentDatabaseCountSpacestateMeasured = "currentDatabaseCount_spacestate_measured",
|
|
864
|
-
|
|
988
|
+
CurrentLivedocsCountSpacestateMeasured = "currentLivedocsCount_spacestate_measured",
|
|
865
989
|
CurrentPageCountSpacestateMeasured = "currentPageCount_spacestate_measured",
|
|
866
|
-
CurrentWhiteboardCountSitestateMeasured = "currentWhiteboardCount_sitestate_measured",
|
|
867
990
|
CurrentWhiteboardCountSpacestateMeasured = "currentWhiteboardCount_spacestate_measured",
|
|
868
991
|
InactivePageCountSitestateMeasured = "inactivePageCount_sitestate_measured",
|
|
869
992
|
InactivePageCountSpacestateMeasured = "inactivePageCount_spacestate_measured",
|
|
@@ -874,6 +997,7 @@ export declare enum AnalyticsMeasuresEventName {
|
|
|
874
997
|
TotalActiveSpacesSitestateMeasured = "totalActiveSpaces_sitestate_measured",
|
|
875
998
|
TotalCurrentBlogpostCountSitestateMeasured = "totalCurrentBlogpostCount_sitestate_measured",
|
|
876
999
|
TotalCurrentDatabaseCountSitestateMeasured = "totalCurrentDatabaseCount_sitestate_measured",
|
|
1000
|
+
TotalCurrentLivedocsCountSitestateMeasured = "totalCurrentLivedocsCount_sitestate_measured",
|
|
877
1001
|
TotalCurrentPageCountSitestateMeasured = "totalCurrentPageCount_sitestate_measured",
|
|
878
1002
|
TotalCurrentWhiteboardCountSitestateMeasured = "totalCurrentWhiteboardCount_sitestate_measured",
|
|
879
1003
|
TotalPagesDeactivatedOwnerSitestateMeasured = "totalPagesDeactivatedOwner_sitestate_measured",
|
|
@@ -882,6 +1006,7 @@ export declare enum AnalyticsMeasuresEventName {
|
|
|
882
1006
|
export declare enum AnalyticsMeasuresSpaceEventName {
|
|
883
1007
|
CurrentBlogpostCountSpacestateMeasured = "currentBlogpostCount_spacestate_measured",
|
|
884
1008
|
CurrentDatabaseCountSpacestateMeasured = "currentDatabaseCount_spacestate_measured",
|
|
1009
|
+
CurrentLivedocsCountSpacestateMeasured = "currentLivedocsCount_spacestate_measured",
|
|
885
1010
|
CurrentPageCountSpacestateMeasured = "currentPageCount_spacestate_measured",
|
|
886
1011
|
CurrentWhiteboardCountSpacestateMeasured = "currentWhiteboardCount_spacestate_measured",
|
|
887
1012
|
InactivePageCountSpacestateMeasured = "inactivePageCount_spacestate_measured",
|
|
@@ -2442,10 +2567,14 @@ export declare type BitbucketPullRequest = Node & {
|
|
|
2442
2567
|
};
|
|
2443
2568
|
export declare type BitbucketQuery = {
|
|
2444
2569
|
__typename?: 'BitbucketQuery';
|
|
2570
|
+
bitbucketPullRequests?: Maybe<Array<Maybe<BitbucketPullRequest>>>;
|
|
2445
2571
|
bitbucketRepositories?: Maybe<Array<Maybe<BitbucketRepository>>>;
|
|
2446
2572
|
bitbucketRepository?: Maybe<BitbucketRepository>;
|
|
2447
2573
|
bitbucketWorkspace?: Maybe<BitbucketWorkspace>;
|
|
2448
2574
|
};
|
|
2575
|
+
export declare type BitbucketQueryBitbucketPullRequestsArgs = {
|
|
2576
|
+
ids: Array<Scalars['ID']['input']>;
|
|
2577
|
+
};
|
|
2449
2578
|
export declare type BitbucketQueryBitbucketRepositoriesArgs = {
|
|
2450
2579
|
ids: Array<Scalars['ID']['input']>;
|
|
2451
2580
|
};
|
|
@@ -3096,18 +3225,11 @@ export declare enum CatchupOverviewUpdateType {
|
|
|
3096
3225
|
SinceLastViewed = "SINCE_LAST_VIEWED",
|
|
3097
3226
|
SinceLastViewedMarkdown = "SINCE_LAST_VIEWED_MARKDOWN"
|
|
3098
3227
|
}
|
|
3099
|
-
export declare enum CatchupUpdateType {
|
|
3100
|
-
TopN = "TOP_N"
|
|
3101
|
-
}
|
|
3102
3228
|
export declare type CatchupVersionDiffMetadataResponse = {
|
|
3103
3229
|
__typename?: 'CatchupVersionDiffMetadataResponse';
|
|
3104
3230
|
collaborators?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
3105
3231
|
isDiffEmpty?: Maybe<Scalars['Boolean']['output']>;
|
|
3106
3232
|
};
|
|
3107
|
-
export declare type CatchupVersionSummaryMetadataForContent = {
|
|
3108
|
-
__typename?: 'CatchupVersionSummaryMetadataForContent';
|
|
3109
|
-
versionSummaryMetadata?: Maybe<Array<VersionSummaryMetaDataItem>>;
|
|
3110
|
-
};
|
|
3111
3233
|
export declare type CcpAccountDetails = CommerceAccountDetails & {
|
|
3112
3234
|
__typename?: 'CcpAccountDetails';
|
|
3113
3235
|
invoiceGroup?: Maybe<CcpInvoiceGroup>;
|
|
@@ -3211,7 +3333,15 @@ export declare enum CcpCreateEntitlementExperienceCapabilityErrorReasonCode {
|
|
|
3211
3333
|
MultipleTransactionAccount = "MULTIPLE_TRANSACTION_ACCOUNT",
|
|
3212
3334
|
UsecaseNotImplemented = "USECASE_NOT_IMPLEMENTED"
|
|
3213
3335
|
}
|
|
3336
|
+
export declare type CcpCreateEntitlementExperienceOptions = {
|
|
3337
|
+
confirmationScreen?: InputMaybe<CcpCreateEntitlementExperienceOptionsConfirmationScreen>;
|
|
3338
|
+
};
|
|
3339
|
+
export declare enum CcpCreateEntitlementExperienceOptionsConfirmationScreen {
|
|
3340
|
+
Comparison = "COMPARISON",
|
|
3341
|
+
Default = "DEFAULT"
|
|
3342
|
+
}
|
|
3214
3343
|
export declare type CcpCreateEntitlementInput = {
|
|
3344
|
+
experienceOptions?: InputMaybe<CcpCreateEntitlementExperienceOptions>;
|
|
3215
3345
|
offeringKey: Scalars['ID']['input'];
|
|
3216
3346
|
orderOptions?: InputMaybe<CcpCreateEntitlementOrderOptions>;
|
|
3217
3347
|
relatesToEntitlements?: InputMaybe<Array<CcpCreateEntitlementRelatesTo>>;
|
|
@@ -6911,6 +7041,7 @@ export declare type CompassJqlMetricDefinitionConfiguration = {
|
|
|
6911
7041
|
};
|
|
6912
7042
|
export declare type CompassJqlMetricDefinitionConfigurationInput = {
|
|
6913
7043
|
customizable: Scalars['Boolean']['input'];
|
|
7044
|
+
format?: InputMaybe<Scalars['String']['input']>;
|
|
6914
7045
|
jql: Scalars['String']['input'];
|
|
6915
7046
|
};
|
|
6916
7047
|
export declare type CompassJqlMetricSourceConfiguration = {
|
|
@@ -8901,6 +9032,12 @@ export declare type ConfluenceCommentLinks = {
|
|
|
8901
9032
|
base?: Maybe<Scalars['String']['output']>;
|
|
8902
9033
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
8903
9034
|
};
|
|
9035
|
+
export declare type ConfluenceCommentResolutionState = {
|
|
9036
|
+
__typename?: 'ConfluenceCommentResolutionState';
|
|
9037
|
+
commentId: Scalars['ID']['output'];
|
|
9038
|
+
resolveProperties?: Maybe<InlineCommentResolveProperties>;
|
|
9039
|
+
status?: Maybe<Scalars['Boolean']['output']>;
|
|
9040
|
+
};
|
|
8904
9041
|
export declare enum ConfluenceCommentState {
|
|
8905
9042
|
Resolved = "RESOLVED",
|
|
8906
9043
|
Unresolved = "UNRESOLVED"
|
|
@@ -15209,6 +15346,26 @@ export declare type ConfluencePerson = Person & {
|
|
|
15209
15346
|
userKey?: Maybe<Scalars['String']['output']>;
|
|
15210
15347
|
username?: Maybe<Scalars['String']['output']>;
|
|
15211
15348
|
};
|
|
15349
|
+
export declare type ConfluencePersonConnection = {
|
|
15350
|
+
__typename?: 'ConfluencePersonConnection';
|
|
15351
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
15352
|
+
edges?: Maybe<Array<Maybe<ConfluencePersonEdge>>>;
|
|
15353
|
+
nodes?: Maybe<Array<Maybe<ConfluencePerson>>>;
|
|
15354
|
+
pageInfo?: Maybe<PageInfo>;
|
|
15355
|
+
};
|
|
15356
|
+
export declare type ConfluencePersonEdge = {
|
|
15357
|
+
__typename?: 'ConfluencePersonEdge';
|
|
15358
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15359
|
+
node?: Maybe<ConfluencePerson>;
|
|
15360
|
+
};
|
|
15361
|
+
export declare type ConfluencePersonWithPermissionsConnection = {
|
|
15362
|
+
__typename?: 'ConfluencePersonWithPermissionsConnection';
|
|
15363
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
15364
|
+
edges?: Maybe<Array<Maybe<ConfluencePersonEdge>>>;
|
|
15365
|
+
links?: Maybe<LinksContextBase>;
|
|
15366
|
+
nodes?: Maybe<Array<Maybe<ConfluencePerson>>>;
|
|
15367
|
+
pageInfo?: Maybe<PageInfo>;
|
|
15368
|
+
};
|
|
15212
15369
|
export declare enum ConfluencePrincipalType {
|
|
15213
15370
|
Group = "GROUP",
|
|
15214
15371
|
User = "USER"
|
|
@@ -15368,6 +15525,12 @@ export declare type ConfluenceRedactionMetadataEdge = {
|
|
|
15368
15525
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
15369
15526
|
node?: Maybe<ConfluenceRedactionMetadata>;
|
|
15370
15527
|
};
|
|
15528
|
+
export declare type ConfluenceReopenCommentPayload = Payload & {
|
|
15529
|
+
__typename?: 'ConfluenceReopenCommentPayload';
|
|
15530
|
+
commentResolutionStates?: Maybe<ConfluenceCommentResolutionState>;
|
|
15531
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15532
|
+
success: Scalars['Boolean']['output'];
|
|
15533
|
+
};
|
|
15371
15534
|
export declare type ConfluenceReopenInlineCommentInput = {
|
|
15372
15535
|
id: Scalars['ID']['input'];
|
|
15373
15536
|
};
|
|
@@ -15387,6 +15550,12 @@ export declare type ConfluenceReplyToCommentPayload = {
|
|
|
15387
15550
|
errors?: Maybe<Array<MutationError>>;
|
|
15388
15551
|
success: Scalars['Boolean']['output'];
|
|
15389
15552
|
};
|
|
15553
|
+
export declare type ConfluenceResolveCommentsPayload = Payload & {
|
|
15554
|
+
__typename?: 'ConfluenceResolveCommentsPayload';
|
|
15555
|
+
commentResolutionStates?: Maybe<Array<Maybe<ConfluenceCommentResolutionState>>>;
|
|
15556
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15557
|
+
success: Scalars['Boolean']['output'];
|
|
15558
|
+
};
|
|
15390
15559
|
export declare type ConfluenceResolveInlineCommentInput = {
|
|
15391
15560
|
id: Scalars['ID']['input'];
|
|
15392
15561
|
};
|
|
@@ -16312,64 +16481,6 @@ export declare type ConfluenceWhiteboardLinks = {
|
|
|
16312
16481
|
base?: Maybe<Scalars['String']['output']>;
|
|
16313
16482
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
16314
16483
|
};
|
|
16315
|
-
export declare type ConfluenceWorkflow = {
|
|
16316
|
-
__typename?: 'ConfluenceWorkflow';
|
|
16317
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
16318
|
-
id: Scalars['ID']['output'];
|
|
16319
|
-
name: Scalars['String']['output'];
|
|
16320
|
-
workflowId: Scalars['ID']['output'];
|
|
16321
|
-
};
|
|
16322
|
-
export declare type ConfluenceWorkflowApplication = {
|
|
16323
|
-
__typename?: 'ConfluenceWorkflowApplication';
|
|
16324
|
-
availableTransitions?: Maybe<Array<Maybe<ConfluenceWorkflowTransition>>>;
|
|
16325
|
-
currentWorkflowStatus?: Maybe<ConfluenceWorkflowStatus>;
|
|
16326
|
-
workflow: ConfluenceWorkflow;
|
|
16327
|
-
};
|
|
16328
|
-
export declare type ConfluenceWorkflowApplicationConnection = {
|
|
16329
|
-
__typename?: 'ConfluenceWorkflowApplicationConnection';
|
|
16330
|
-
edges?: Maybe<Array<Maybe<ConfluenceWorkflowApplicationEdge>>>;
|
|
16331
|
-
nodes?: Maybe<Array<Maybe<ConfluenceWorkflowApplication>>>;
|
|
16332
|
-
pageInfo: ConfluencePageInfo;
|
|
16333
|
-
};
|
|
16334
|
-
export declare type ConfluenceWorkflowApplicationEdge = {
|
|
16335
|
-
__typename?: 'ConfluenceWorkflowApplicationEdge';
|
|
16336
|
-
cursor: Scalars['String']['output'];
|
|
16337
|
-
node?: Maybe<ConfluenceWorkflowApplication>;
|
|
16338
|
-
};
|
|
16339
|
-
export declare type ConfluenceWorkflowConnection = {
|
|
16340
|
-
__typename?: 'ConfluenceWorkflowConnection';
|
|
16341
|
-
edges?: Maybe<Array<Maybe<ConfluenceWorkflowEdge>>>;
|
|
16342
|
-
nodes?: Maybe<Array<Maybe<ConfluenceWorkflow>>>;
|
|
16343
|
-
pageInfo: ConfluencePageInfo;
|
|
16344
|
-
};
|
|
16345
|
-
export declare type ConfluenceWorkflowEdge = {
|
|
16346
|
-
__typename?: 'ConfluenceWorkflowEdge';
|
|
16347
|
-
cursor: Scalars['String']['output'];
|
|
16348
|
-
node?: Maybe<ConfluenceWorkflow>;
|
|
16349
|
-
};
|
|
16350
|
-
export declare type ConfluenceWorkflowStatus = {
|
|
16351
|
-
__typename?: 'ConfluenceWorkflowStatus';
|
|
16352
|
-
displayProperties?: Maybe<ConfluenceWorkflowStatusDisplayProperties>;
|
|
16353
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
16354
|
-
};
|
|
16355
|
-
export declare type ConfluenceWorkflowStatusDisplayProperties = {
|
|
16356
|
-
__typename?: 'ConfluenceWorkflowStatusDisplayProperties';
|
|
16357
|
-
color?: Maybe<Scalars['String']['output']>;
|
|
16358
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
16359
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
16360
|
-
};
|
|
16361
|
-
export declare type ConfluenceWorkflowTransition = {
|
|
16362
|
-
__typename?: 'ConfluenceWorkflowTransition';
|
|
16363
|
-
destinationStatus: ConfluenceWorkflowStatus;
|
|
16364
|
-
displayProperties?: Maybe<ConfluenceWorkflowTransitionDisplayProperties>;
|
|
16365
|
-
id: Scalars['ID']['output'];
|
|
16366
|
-
startStatus?: Maybe<ConfluenceWorkflowStatus>;
|
|
16367
|
-
};
|
|
16368
|
-
export declare type ConfluenceWorkflowTransitionDisplayProperties = {
|
|
16369
|
-
__typename?: 'ConfluenceWorkflowTransitionDisplayProperties';
|
|
16370
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
16371
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
16372
|
-
};
|
|
16373
16484
|
export declare type Confluence_CqlMetaData = {
|
|
16374
16485
|
__typename?: 'Confluence_cqlMetaData';
|
|
16375
16486
|
cqlContentTypes: Array<Maybe<CqlDisplayableType>>;
|
|
@@ -16419,12 +16530,8 @@ export declare type ConnectAppScope = {
|
|
|
16419
16530
|
};
|
|
16420
16531
|
export declare type ConnectedDataQuery = {
|
|
16421
16532
|
__typename?: 'ConnectedDataQuery';
|
|
16422
|
-
incidentWithId?: Maybe<JsmIncident>;
|
|
16423
16533
|
services?: Maybe<DevOpsService>;
|
|
16424
16534
|
};
|
|
16425
|
-
export declare type ConnectedDataQueryIncidentWithIdArgs = {
|
|
16426
|
-
id: Scalars['ID']['input'];
|
|
16427
|
-
};
|
|
16428
16535
|
export declare type ConnectedDataQueryServicesArgs = {
|
|
16429
16536
|
cloudId: Scalars['ID']['input'];
|
|
16430
16537
|
id: Scalars['ID']['input'];
|
|
@@ -21144,8 +21251,14 @@ export declare type DevAiGenericMutationErrorExtension = MutationErrorExtension
|
|
|
21144
21251
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
21145
21252
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
21146
21253
|
};
|
|
21254
|
+
export declare type DevAiInvokeAutodevRovoAgentInBulkPayload = Payload & {
|
|
21255
|
+
__typename?: 'DevAiInvokeAutodevRovoAgentInBulkPayload';
|
|
21256
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21257
|
+
success: Scalars['Boolean']['output'];
|
|
21258
|
+
};
|
|
21147
21259
|
export declare type DevAiInvokeAutodevRovoAgentPayload = Payload & {
|
|
21148
21260
|
__typename?: 'DevAiInvokeAutodevRovoAgentPayload';
|
|
21261
|
+
conversationId?: Maybe<Scalars['ID']['output']>;
|
|
21149
21262
|
errors?: Maybe<Array<MutationError>>;
|
|
21150
21263
|
jobId?: Maybe<Scalars['ID']['output']>;
|
|
21151
21264
|
success: Scalars['Boolean']['output'];
|
|
@@ -21204,6 +21317,7 @@ export declare type DevAiPhaseStartedAutodevLog = DevAiAutodevLog & {
|
|
|
21204
21317
|
priority?: Maybe<DevAiAutodevLogPriority>;
|
|
21205
21318
|
status?: Maybe<DevAiAutodevLogStatus>;
|
|
21206
21319
|
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
21320
|
+
userCommand?: Maybe<Scalars['String']['output']>;
|
|
21207
21321
|
};
|
|
21208
21322
|
export declare type DevAiPlaintextAutodevLog = DevAiAutodevLog & {
|
|
21209
21323
|
__typename?: 'DevAiPlaintextAutodevLog';
|
|
@@ -23003,6 +23117,11 @@ export declare type EarliestViewViewedForUser = {
|
|
|
23003
23117
|
datetime?: Maybe<Scalars['String']['output']>;
|
|
23004
23118
|
};
|
|
23005
23119
|
export declare type EcosystemApp = App | EcosystemConnectApp;
|
|
23120
|
+
export declare type EcosystemAppInstallationConfigExtension = {
|
|
23121
|
+
__typename?: 'EcosystemAppInstallationConfigExtension';
|
|
23122
|
+
key: Scalars['String']['output'];
|
|
23123
|
+
value: Scalars['Boolean']['output'];
|
|
23124
|
+
};
|
|
23006
23125
|
export declare enum EcosystemAppInstallationConfigIdType {
|
|
23007
23126
|
Cloud = "CLOUD",
|
|
23008
23127
|
Installation = "INSTALLATION"
|
|
@@ -23167,13 +23286,30 @@ export declare enum EcosystemLicenseMode {
|
|
|
23167
23286
|
Agent = "AGENT",
|
|
23168
23287
|
UserAccess = "USER_ACCESS"
|
|
23169
23288
|
}
|
|
23289
|
+
export declare type EcosystemMarketplaceAppDeployment = {
|
|
23290
|
+
frameworkId: Scalars['String']['output'];
|
|
23291
|
+
};
|
|
23170
23292
|
export declare type EcosystemMarketplaceAppVersion = {
|
|
23171
23293
|
__typename?: 'EcosystemMarketplaceAppVersion';
|
|
23172
23294
|
buildNumber: Scalars['Float']['output'];
|
|
23295
|
+
deployment?: Maybe<EcosystemMarketplaceAppDeployment>;
|
|
23173
23296
|
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
23174
23297
|
isSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
23298
|
+
paymentModel?: Maybe<EcosystemMarketplacePaymentModel>;
|
|
23175
23299
|
version: Scalars['String']['output'];
|
|
23176
23300
|
};
|
|
23301
|
+
export declare type EcosystemMarketplaceCloudAppDeployment = EcosystemMarketplaceAppDeployment & {
|
|
23302
|
+
__typename?: 'EcosystemMarketplaceCloudAppDeployment';
|
|
23303
|
+
cloudAppEnvironmentId?: Maybe<Scalars['ID']['output']>;
|
|
23304
|
+
cloudAppId?: Maybe<Scalars['ID']['output']>;
|
|
23305
|
+
cloudAppVersionId: Scalars['ID']['output'];
|
|
23306
|
+
frameworkId: Scalars['String']['output'];
|
|
23307
|
+
};
|
|
23308
|
+
export declare type EcosystemMarketplaceConnectAppDeployment = EcosystemMarketplaceAppDeployment & {
|
|
23309
|
+
__typename?: 'EcosystemMarketplaceConnectAppDeployment';
|
|
23310
|
+
descriptorUrl?: Maybe<Scalars['String']['output']>;
|
|
23311
|
+
frameworkId: Scalars['String']['output'];
|
|
23312
|
+
};
|
|
23177
23313
|
export declare type EcosystemMarketplaceData = {
|
|
23178
23314
|
__typename?: 'EcosystemMarketplaceData';
|
|
23179
23315
|
appId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -23181,12 +23317,56 @@ export declare type EcosystemMarketplaceData = {
|
|
|
23181
23317
|
cloudAppId: Scalars['ID']['output'];
|
|
23182
23318
|
forumsUrl?: Maybe<Scalars['String']['output']>;
|
|
23183
23319
|
issueTrackerUrl?: Maybe<Scalars['String']['output']>;
|
|
23320
|
+
listingStatus?: Maybe<EcosystemMarketplaceListingStatus>;
|
|
23321
|
+
logo?: Maybe<EcosystemMarketplaceListingImage>;
|
|
23184
23322
|
name?: Maybe<Scalars['String']['output']>;
|
|
23323
|
+
partner?: Maybe<EcosystemMarketplacePartner>;
|
|
23324
|
+
privacyPolicyUrl?: Maybe<Scalars['String']['output']>;
|
|
23185
23325
|
slug?: Maybe<Scalars['String']['output']>;
|
|
23186
23326
|
supportTicketSystemUrl?: Maybe<Scalars['String']['output']>;
|
|
23187
23327
|
versions?: Maybe<EcosystemMarketplaceVersionConnection>;
|
|
23188
23328
|
wikiUrl?: Maybe<Scalars['String']['output']>;
|
|
23189
23329
|
};
|
|
23330
|
+
export declare type EcosystemMarketplaceExternalFrameworkAppDeployment = EcosystemMarketplaceAppDeployment & {
|
|
23331
|
+
__typename?: 'EcosystemMarketplaceExternalFrameworkAppDeployment';
|
|
23332
|
+
frameworkId: Scalars['String']['output'];
|
|
23333
|
+
};
|
|
23334
|
+
export declare type EcosystemMarketplaceImageFile = {
|
|
23335
|
+
__typename?: 'EcosystemMarketplaceImageFile';
|
|
23336
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
23337
|
+
uri?: Maybe<Scalars['String']['output']>;
|
|
23338
|
+
};
|
|
23339
|
+
export declare type EcosystemMarketplaceListingImage = {
|
|
23340
|
+
__typename?: 'EcosystemMarketplaceListingImage';
|
|
23341
|
+
original?: Maybe<EcosystemMarketplaceImageFile>;
|
|
23342
|
+
};
|
|
23343
|
+
export declare enum EcosystemMarketplaceListingStatus {
|
|
23344
|
+
Private = "PRIVATE",
|
|
23345
|
+
Public = "PUBLIC",
|
|
23346
|
+
ReadyToLaunch = "READY_TO_LAUNCH",
|
|
23347
|
+
Rejected = "REJECTED",
|
|
23348
|
+
Submitted = "SUBMITTED"
|
|
23349
|
+
}
|
|
23350
|
+
export declare type EcosystemMarketplacePartner = {
|
|
23351
|
+
__typename?: 'EcosystemMarketplacePartner';
|
|
23352
|
+
id: Scalars['ID']['output'];
|
|
23353
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
23354
|
+
support?: Maybe<EcosystemMarketplacePartnerSupport>;
|
|
23355
|
+
};
|
|
23356
|
+
export declare type EcosystemMarketplacePartnerSupport = {
|
|
23357
|
+
__typename?: 'EcosystemMarketplacePartnerSupport';
|
|
23358
|
+
contactDetails?: Maybe<EcosystemMarketplacePartnerSupportContact>;
|
|
23359
|
+
};
|
|
23360
|
+
export declare type EcosystemMarketplacePartnerSupportContact = {
|
|
23361
|
+
__typename?: 'EcosystemMarketplacePartnerSupportContact';
|
|
23362
|
+
emailId?: Maybe<Scalars['String']['output']>;
|
|
23363
|
+
websiteUrl?: Maybe<Scalars['String']['output']>;
|
|
23364
|
+
};
|
|
23365
|
+
export declare enum EcosystemMarketplacePaymentModel {
|
|
23366
|
+
Free = "FREE",
|
|
23367
|
+
PaidViaAtlassian = "PAID_VIA_ATLASSIAN",
|
|
23368
|
+
PaidViaPartner = "PAID_VIA_PARTNER"
|
|
23369
|
+
}
|
|
23190
23370
|
export declare type EcosystemMarketplaceVersionConnection = {
|
|
23191
23371
|
__typename?: 'EcosystemMarketplaceVersionConnection';
|
|
23192
23372
|
edges?: Maybe<Array<EcosystemMarketplaceVersionEdge>>;
|
|
@@ -23675,6 +23855,7 @@ export declare type Extension = {
|
|
|
23675
23855
|
environmentType: Scalars['String']['output'];
|
|
23676
23856
|
id: Scalars['ID']['output'];
|
|
23677
23857
|
installation?: Maybe<AppInstallationSummary>;
|
|
23858
|
+
installationConfig?: Maybe<Array<EcosystemAppInstallationConfigExtension>>;
|
|
23678
23859
|
installationId: Scalars['String']['output'];
|
|
23679
23860
|
key: Scalars['String']['output'];
|
|
23680
23861
|
license?: Maybe<AppInstallationLicense>;
|
|
@@ -23682,6 +23863,7 @@ export declare type Extension = {
|
|
|
23682
23863
|
migrationKey?: Maybe<Scalars['String']['output']>;
|
|
23683
23864
|
name?: Maybe<Scalars['String']['output']>;
|
|
23684
23865
|
oauthClientId: Scalars['ID']['output'];
|
|
23866
|
+
overrides?: Maybe<Scalars['JSON']['output']>;
|
|
23685
23867
|
principal?: Maybe<AppPrincipal>;
|
|
23686
23868
|
properties: Scalars['JSON']['output'];
|
|
23687
23869
|
remoteInstallationRegion?: Maybe<Scalars['String']['output']>;
|
|
@@ -23925,6 +24107,13 @@ export declare type ExternalCollaboratorFeature = {
|
|
|
23925
24107
|
__typename?: 'ExternalCollaboratorFeature';
|
|
23926
24108
|
isEntitled: Scalars['Boolean']['output'];
|
|
23927
24109
|
};
|
|
24110
|
+
export declare enum ExternalCollaboratorsSortField {
|
|
24111
|
+
Name = "NAME"
|
|
24112
|
+
}
|
|
24113
|
+
export declare type ExternalCollaboratorsSortType = {
|
|
24114
|
+
field?: InputMaybe<ExternalCollaboratorsSortField>;
|
|
24115
|
+
isAscending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
24116
|
+
};
|
|
23928
24117
|
export declare type ExternalComment = Node & {
|
|
23929
24118
|
__typename?: 'ExternalComment';
|
|
23930
24119
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
@@ -24165,6 +24354,97 @@ export declare type ExternalEntities = {
|
|
|
24165
24354
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
24166
24355
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
24167
24356
|
};
|
|
24357
|
+
export declare type ExternalEntitiesV2ForHydration = {
|
|
24358
|
+
__typename?: 'ExternalEntitiesV2ForHydration';
|
|
24359
|
+
branch?: Maybe<Array<Maybe<ExternalBranch>>>;
|
|
24360
|
+
buildInfo?: Maybe<Array<Maybe<ExternalBuildInfo>>>;
|
|
24361
|
+
calendarEvent?: Maybe<Array<Maybe<ExternalCalendarEvent>>>;
|
|
24362
|
+
comment?: Maybe<Array<Maybe<ExternalComment>>>;
|
|
24363
|
+
commit?: Maybe<Array<Maybe<ExternalCommit>>>;
|
|
24364
|
+
conversation?: Maybe<Array<Maybe<ExternalConversation>>>;
|
|
24365
|
+
deployment?: Maybe<Array<Maybe<ExternalDeployment>>>;
|
|
24366
|
+
design?: Maybe<Array<Maybe<ExternalDesign>>>;
|
|
24367
|
+
document?: Maybe<Array<Maybe<ExternalDocument>>>;
|
|
24368
|
+
featureFlag?: Maybe<Array<Maybe<ExternalFeatureFlag>>>;
|
|
24369
|
+
message?: Maybe<Array<Maybe<ExternalMessage>>>;
|
|
24370
|
+
organisation?: Maybe<Array<Maybe<ExternalOrganisation>>>;
|
|
24371
|
+
position?: Maybe<Array<Maybe<ExternalPosition>>>;
|
|
24372
|
+
pullRequest?: Maybe<Array<Maybe<ExternalPullRequest>>>;
|
|
24373
|
+
remoteLink?: Maybe<Array<Maybe<ExternalRemoteLink>>>;
|
|
24374
|
+
repository?: Maybe<Array<Maybe<ExternalRepository>>>;
|
|
24375
|
+
space?: Maybe<Array<Maybe<ExternalSpace>>>;
|
|
24376
|
+
video?: Maybe<Array<Maybe<ExternalVideo>>>;
|
|
24377
|
+
vulnerability?: Maybe<Array<Maybe<ExternalVulnerability>>>;
|
|
24378
|
+
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
24379
|
+
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
24380
|
+
};
|
|
24381
|
+
export declare type ExternalEntitiesV2ForHydrationBranchArgs = {
|
|
24382
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24383
|
+
};
|
|
24384
|
+
export declare type ExternalEntitiesV2ForHydrationBuildInfoArgs = {
|
|
24385
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24386
|
+
};
|
|
24387
|
+
export declare type ExternalEntitiesV2ForHydrationCalendarEventArgs = {
|
|
24388
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24389
|
+
};
|
|
24390
|
+
export declare type ExternalEntitiesV2ForHydrationCommentArgs = {
|
|
24391
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24392
|
+
};
|
|
24393
|
+
export declare type ExternalEntitiesV2ForHydrationCommitArgs = {
|
|
24394
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24395
|
+
};
|
|
24396
|
+
export declare type ExternalEntitiesV2ForHydrationConversationArgs = {
|
|
24397
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24398
|
+
};
|
|
24399
|
+
export declare type ExternalEntitiesV2ForHydrationDeploymentArgs = {
|
|
24400
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24401
|
+
};
|
|
24402
|
+
export declare type ExternalEntitiesV2ForHydrationDesignArgs = {
|
|
24403
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24404
|
+
};
|
|
24405
|
+
export declare type ExternalEntitiesV2ForHydrationDocumentArgs = {
|
|
24406
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24407
|
+
};
|
|
24408
|
+
export declare type ExternalEntitiesV2ForHydrationFeatureFlagArgs = {
|
|
24409
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24410
|
+
};
|
|
24411
|
+
export declare type ExternalEntitiesV2ForHydrationMessageArgs = {
|
|
24412
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24413
|
+
};
|
|
24414
|
+
export declare type ExternalEntitiesV2ForHydrationOrganisationArgs = {
|
|
24415
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24416
|
+
};
|
|
24417
|
+
export declare type ExternalEntitiesV2ForHydrationPositionArgs = {
|
|
24418
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24419
|
+
};
|
|
24420
|
+
export declare type ExternalEntitiesV2ForHydrationPullRequestArgs = {
|
|
24421
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24422
|
+
};
|
|
24423
|
+
export declare type ExternalEntitiesV2ForHydrationRemoteLinkArgs = {
|
|
24424
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24425
|
+
};
|
|
24426
|
+
export declare type ExternalEntitiesV2ForHydrationRepositoryArgs = {
|
|
24427
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24428
|
+
};
|
|
24429
|
+
export declare type ExternalEntitiesV2ForHydrationSpaceArgs = {
|
|
24430
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24431
|
+
};
|
|
24432
|
+
export declare type ExternalEntitiesV2ForHydrationVideoArgs = {
|
|
24433
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24434
|
+
};
|
|
24435
|
+
export declare type ExternalEntitiesV2ForHydrationVulnerabilityArgs = {
|
|
24436
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24437
|
+
};
|
|
24438
|
+
export declare type ExternalEntitiesV2ForHydrationWorkItemArgs = {
|
|
24439
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24440
|
+
};
|
|
24441
|
+
export declare type ExternalEntitiesV2ForHydrationWorkerArgs = {
|
|
24442
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24443
|
+
};
|
|
24444
|
+
export declare type ExternalEntitiesV2ForHydrationInput = {
|
|
24445
|
+
ari?: InputMaybe<Scalars['ID']['input']>;
|
|
24446
|
+
graphWorkspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
24447
|
+
};
|
|
24168
24448
|
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
24169
24449
|
export declare type ExternalEnvironment = {
|
|
24170
24450
|
__typename?: 'ExternalEnvironment';
|
|
@@ -24793,6 +25073,8 @@ export declare type FollowingFeedGetUserConfig = {
|
|
|
24793
25073
|
};
|
|
24794
25074
|
export declare type FooterComment = CommentLocation & {
|
|
24795
25075
|
__typename?: 'FooterComment';
|
|
25076
|
+
commentRepliesCount: Scalars['Int']['output'];
|
|
25077
|
+
commentResolveProperties?: Maybe<InlineCommentResolveProperties>;
|
|
24796
25078
|
type: Scalars['String']['output'];
|
|
24797
25079
|
};
|
|
24798
25080
|
export declare type ForYouFeedItem = {
|
|
@@ -25476,6 +25758,20 @@ export declare enum ForgeMetricsChartName {
|
|
|
25476
25758
|
InvocationLatency = "INVOCATION_LATENCY",
|
|
25477
25759
|
InvocationSuccessRate = "INVOCATION_SUCCESS_RATE"
|
|
25478
25760
|
}
|
|
25761
|
+
export declare enum ForgeMetricsCustomGroupByDimensions {
|
|
25762
|
+
CustomMetricName = "CUSTOM_METRIC_NAME"
|
|
25763
|
+
}
|
|
25764
|
+
export declare type ForgeMetricsCustomQueryFilters = {
|
|
25765
|
+
appVersions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
25766
|
+
contextAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
25767
|
+
environment?: InputMaybe<Scalars['ID']['input']>;
|
|
25768
|
+
functionNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
25769
|
+
interval: ForgeMetricsIntervalInput;
|
|
25770
|
+
};
|
|
25771
|
+
export declare type ForgeMetricsCustomQueryInput = {
|
|
25772
|
+
filters: ForgeMetricsCustomQueryFilters;
|
|
25773
|
+
groupBy?: InputMaybe<Array<ForgeMetricsCustomGroupByDimensions>>;
|
|
25774
|
+
};
|
|
25479
25775
|
export declare type ForgeMetricsData = {
|
|
25480
25776
|
name: Scalars['String']['output'];
|
|
25481
25777
|
series?: Maybe<Array<ForgeMetricsSeries>>;
|
|
@@ -25630,6 +25926,7 @@ export declare type ForgeMetricsQuery = {
|
|
|
25630
25926
|
appMetrics: ForgeMetricsOtlpResult;
|
|
25631
25927
|
cacheHitRate: ForgeMetricsSuccessRateResult;
|
|
25632
25928
|
chartInsight: ForgeMetricsChartInsightResult;
|
|
25929
|
+
customMetrics: ForgeMetricsInvocationsResult;
|
|
25633
25930
|
errors: ForgeMetricsErrorsResult;
|
|
25634
25931
|
errorsValue: ForgeMetricsErrorsValueResult;
|
|
25635
25932
|
invocations: ForgeMetricsInvocationsResult;
|
|
@@ -25665,6 +25962,9 @@ export declare type ForgeMetricsQueryCacheHitRateArgs = {
|
|
|
25665
25962
|
export declare type ForgeMetricsQueryChartInsightArgs = {
|
|
25666
25963
|
query: ForgeMetricsChartInsightQueryInput;
|
|
25667
25964
|
};
|
|
25965
|
+
export declare type ForgeMetricsQueryCustomMetricsArgs = {
|
|
25966
|
+
query: ForgeMetricsCustomQueryInput;
|
|
25967
|
+
};
|
|
25668
25968
|
export declare type ForgeMetricsQueryErrorsArgs = {
|
|
25669
25969
|
query: ForgeMetricsQueryInput;
|
|
25670
25970
|
};
|
|
@@ -27057,7 +27357,6 @@ export declare type GraphJiraIssue = Node & {
|
|
|
27057
27357
|
__typename?: 'GraphJiraIssue';
|
|
27058
27358
|
data?: Maybe<JiraIssue>;
|
|
27059
27359
|
id: Scalars['ID']['output'];
|
|
27060
|
-
incident?: Maybe<JsmIncident>;
|
|
27061
27360
|
};
|
|
27062
27361
|
export declare type GraphJiraIssueConnection = {
|
|
27063
27362
|
__typename?: 'GraphJiraIssueConnection';
|
|
@@ -29618,6 +29917,8 @@ export declare type GraphStore = {
|
|
|
29618
29917
|
atlasGoalHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection>;
|
|
29619
29918
|
atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
|
|
29620
29919
|
atlasGoalHasSubAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection>;
|
|
29920
|
+
atlasGoalHasUpdate?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateConnection>;
|
|
29921
|
+
atlasGoalHasUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection>;
|
|
29621
29922
|
atlasHomeFeed: GraphStoreAtlasHomeQueryConnection;
|
|
29622
29923
|
atlasProjectContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection>;
|
|
29623
29924
|
atlasProjectContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseConnection>;
|
|
@@ -29631,12 +29932,18 @@ export declare type GraphStore = {
|
|
|
29631
29932
|
atlasProjectHasFollowerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerInverseConnection>;
|
|
29632
29933
|
atlasProjectHasOwner?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerConnection>;
|
|
29633
29934
|
atlasProjectHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerInverseConnection>;
|
|
29935
|
+
atlasProjectHasUpdate?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateConnection>;
|
|
29936
|
+
atlasProjectHasUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection>;
|
|
29634
29937
|
atlasProjectIsRelatedToAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection>;
|
|
29635
29938
|
atlasProjectIsRelatedToAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectInverseConnection>;
|
|
29636
29939
|
atlasProjectIsTrackedOnJiraEpic?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
29637
29940
|
atlasProjectIsTrackedOnJiraEpicInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseConnection>;
|
|
29638
29941
|
atlasProjectIsTrackedOnJiraEpicInverseRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
29639
29942
|
atlasProjectIsTrackedOnJiraEpicRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
29943
|
+
boardBelongsToProject?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectConnection>;
|
|
29944
|
+
boardBelongsToProjectInverse?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseConnection>;
|
|
29945
|
+
calendarHasLinkedDocument?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentConnection>;
|
|
29946
|
+
calendarHasLinkedDocumentInverse?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentInverseConnection>;
|
|
29640
29947
|
componentAssociatedDocument?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentConnection>;
|
|
29641
29948
|
componentAssociatedDocumentInverse?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentInverseConnection>;
|
|
29642
29949
|
componentAssociatedDocumentInverseRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
@@ -29650,8 +29957,12 @@ export declare type GraphStore = {
|
|
|
29650
29957
|
componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
|
|
29651
29958
|
componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
29652
29959
|
componentLinkedJswIssueRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
29960
|
+
confluenceBlogpostHasComment?: Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentConnection>;
|
|
29961
|
+
confluenceBlogpostHasCommentInverse?: Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseConnection>;
|
|
29653
29962
|
confluenceBlogpostSharedWithUser?: Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserConnection>;
|
|
29654
29963
|
confluenceBlogpostSharedWithUserInverse?: Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseConnection>;
|
|
29964
|
+
confluencePageHasComment?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentConnection>;
|
|
29965
|
+
confluencePageHasCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentInverseConnection>;
|
|
29655
29966
|
confluencePageHasConfluenceComment?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection>;
|
|
29656
29967
|
confluencePageHasConfluenceCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseConnection>;
|
|
29657
29968
|
confluencePageHasConfluenceDatabase?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseConnection>;
|
|
@@ -29694,11 +30005,14 @@ export declare type GraphStore = {
|
|
|
29694
30005
|
focusAreaHasFocusAreaBatch?: Maybe<GraphStoreBatchFocusAreaHasFocusAreaConnection>;
|
|
29695
30006
|
focusAreaHasFocusAreaInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasFocusAreaInverseConnection>;
|
|
29696
30007
|
focusAreaHasFocusAreaInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasFocusAreaConnection>;
|
|
30008
|
+
focusAreaHasPage?: Maybe<GraphStoreSimplifiedFocusAreaHasPageConnection>;
|
|
30009
|
+
focusAreaHasPageInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasPageInverseConnection>;
|
|
29697
30010
|
focusAreaHasProject?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectConnection>;
|
|
29698
30011
|
focusAreaHasProjectBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
29699
30012
|
focusAreaHasProjectInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseConnection>;
|
|
29700
30013
|
focusAreaHasProjectInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
29701
30014
|
graphDocument3pDocumentInverse?: Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseConnection>;
|
|
30015
|
+
graphEntityReplicates3pEntityInverse?: Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseConnection>;
|
|
29702
30016
|
groupCanViewConfluenceSpace?: Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection>;
|
|
29703
30017
|
incidentAssociatedPostIncidentReview?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection>;
|
|
29704
30018
|
incidentAssociatedPostIncidentReviewBatch?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection>;
|
|
@@ -29793,6 +30107,8 @@ export declare type GraphStore = {
|
|
|
29793
30107
|
issueToWhiteboardInverse?: Maybe<GraphStoreSimplifiedIssueToWhiteboardInverseConnection>;
|
|
29794
30108
|
issueToWhiteboardInverseRelationship?: Maybe<GraphStoreFullIssueToWhiteboardConnection>;
|
|
29795
30109
|
issueToWhiteboardRelationship?: Maybe<GraphStoreFullIssueToWhiteboardConnection>;
|
|
30110
|
+
jcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationConnection>;
|
|
30111
|
+
jcsIssueAssociatedSupportEscalationInverse?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseConnection>;
|
|
29796
30112
|
jiraEpicContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection>;
|
|
29797
30113
|
jiraEpicContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseConnection>;
|
|
29798
30114
|
jiraEpicContributesToAtlasGoalInverseRelationship?: Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalConnection>;
|
|
@@ -29826,11 +30142,15 @@ export declare type GraphStore = {
|
|
|
29826
30142
|
linkedProjectHasVersionInverse?: Maybe<GraphStoreSimplifiedLinkedProjectHasVersionInverseConnection>;
|
|
29827
30143
|
linkedProjectHasVersionInverseRelationship?: Maybe<GraphStoreFullLinkedProjectHasVersionConnection>;
|
|
29828
30144
|
linkedProjectHasVersionRelationship?: Maybe<GraphStoreFullLinkedProjectHasVersionConnection>;
|
|
30145
|
+
loomVideoSharedWithUser?: Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserConnection>;
|
|
30146
|
+
loomVideoSharedWithUserInverse?: Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserInverseConnection>;
|
|
29829
30147
|
mediaAttachedToContent?: Maybe<GraphStoreSimplifiedMediaAttachedToContentConnection>;
|
|
29830
30148
|
mediaAttachedToContentBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
|
|
29831
30149
|
mediaAttachedToContentInverseBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
|
|
30150
|
+
meetingHasMeetingNotesPage?: Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageConnection>;
|
|
29832
30151
|
meetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection>;
|
|
29833
30152
|
meetingRecordingOwnerHasMeetingNotesFolderInverse?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection>;
|
|
30153
|
+
meetingRecurrenceHasMeetingRecurrenceNotesPage?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection>;
|
|
29834
30154
|
onPremProjectHasIssue?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueConnection>;
|
|
29835
30155
|
onPremProjectHasIssueInverse?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueInverseConnection>;
|
|
29836
30156
|
operationsContainerImpactedByIncident?: Maybe<GraphStoreSimplifiedOperationsContainerImpactedByIncidentConnection>;
|
|
@@ -29946,11 +30266,15 @@ export declare type GraphStore = {
|
|
|
29946
30266
|
projectHasVersionRelationship?: Maybe<GraphStoreFullProjectHasVersionConnection>;
|
|
29947
30267
|
projectLinkedToCompassComponent?: Maybe<GraphStoreSimplifiedProjectLinkedToCompassComponentConnection>;
|
|
29948
30268
|
projectLinkedToCompassComponentInverse?: Maybe<GraphStoreSimplifiedProjectLinkedToCompassComponentInverseConnection>;
|
|
30269
|
+
pullRequestLinksToService?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceConnection>;
|
|
30270
|
+
pullRequestLinksToServiceInverse?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection>;
|
|
29949
30271
|
securityContainerAssociatedToVulnerability?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
29950
30272
|
securityContainerAssociatedToVulnerabilityBatch?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
29951
30273
|
securityContainerAssociatedToVulnerabilityInverseBatch?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
29952
30274
|
securityContainerAssociatedToVulnerabilityInverseRelationship?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
29953
30275
|
securityContainerAssociatedToVulnerabilityRelationship?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
30276
|
+
serviceAssociatedBranch?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchConnection>;
|
|
30277
|
+
serviceAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchInverseConnection>;
|
|
29954
30278
|
serviceAssociatedDeployment?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentConnection>;
|
|
29955
30279
|
serviceAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentInverseConnection>;
|
|
29956
30280
|
serviceAssociatedRemoteLink?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection>;
|
|
@@ -30022,6 +30346,8 @@ export declare type GraphStore = {
|
|
|
30022
30346
|
thirdPartyToGraphRemoteLink?: Maybe<GraphStoreSimplifiedThirdPartyToGraphRemoteLinkConnection>;
|
|
30023
30347
|
userAssignedIncident?: Maybe<GraphStoreSimplifiedUserAssignedIncidentConnection>;
|
|
30024
30348
|
userAssignedIncidentInverse?: Maybe<GraphStoreSimplifiedUserAssignedIncidentInverseConnection>;
|
|
30349
|
+
userAssignedIssue?: Maybe<GraphStoreSimplifiedUserAssignedIssueConnection>;
|
|
30350
|
+
userAssignedIssueInverse?: Maybe<GraphStoreSimplifiedUserAssignedIssueInverseConnection>;
|
|
30025
30351
|
userAssignedPir?: Maybe<GraphStoreSimplifiedUserAssignedPirConnection>;
|
|
30026
30352
|
userAssignedPirInverse?: Maybe<GraphStoreSimplifiedUserAssignedPirInverseConnection>;
|
|
30027
30353
|
userAttendedCalendarEvent?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventConnection>;
|
|
@@ -30064,12 +30390,16 @@ export declare type GraphStore = {
|
|
|
30064
30390
|
userCreatedDesignInverse?: Maybe<GraphStoreSimplifiedUserCreatedDesignInverseConnection>;
|
|
30065
30391
|
userCreatedDocument?: Maybe<GraphStoreSimplifiedUserCreatedDocumentConnection>;
|
|
30066
30392
|
userCreatedDocumentInverse?: Maybe<GraphStoreSimplifiedUserCreatedDocumentInverseConnection>;
|
|
30393
|
+
userCreatedIssueComment?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentConnection>;
|
|
30394
|
+
userCreatedIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentInverseConnection>;
|
|
30067
30395
|
userCreatedIssueWorklog?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogConnection>;
|
|
30068
30396
|
userCreatedIssueWorklogInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogInverseConnection>;
|
|
30069
30397
|
userCreatedLoomVideo?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoConnection>;
|
|
30070
30398
|
userCreatedLoomVideoInverse?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoInverseConnection>;
|
|
30071
30399
|
userCreatedMessage?: Maybe<GraphStoreSimplifiedUserCreatedMessageConnection>;
|
|
30072
30400
|
userCreatedMessageInverse?: Maybe<GraphStoreSimplifiedUserCreatedMessageInverseConnection>;
|
|
30401
|
+
userCreatedRelease?: Maybe<GraphStoreSimplifiedUserCreatedReleaseConnection>;
|
|
30402
|
+
userCreatedReleaseInverse?: Maybe<GraphStoreSimplifiedUserCreatedReleaseInverseConnection>;
|
|
30073
30403
|
userCreatedRemoteLink?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkConnection>;
|
|
30074
30404
|
userCreatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkInverseConnection>;
|
|
30075
30405
|
userCreatedRepository?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryConnection>;
|
|
@@ -30116,6 +30446,8 @@ export declare type GraphStore = {
|
|
|
30116
30446
|
userOwnedRepositoryInverse?: Maybe<GraphStoreSimplifiedUserOwnedRepositoryInverseConnection>;
|
|
30117
30447
|
userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
|
|
30118
30448
|
userOwnsComponentInverse?: Maybe<GraphStoreSimplifiedUserOwnsComponentInverseConnection>;
|
|
30449
|
+
userOwnsFocusArea?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaConnection>;
|
|
30450
|
+
userOwnsFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaInverseConnection>;
|
|
30119
30451
|
userReportedIncident?: Maybe<GraphStoreSimplifiedUserReportedIncidentConnection>;
|
|
30120
30452
|
userReportedIncidentInverse?: Maybe<GraphStoreSimplifiedUserReportedIncidentInverseConnection>;
|
|
30121
30453
|
userReportsIssue?: Maybe<GraphStoreSimplifiedUserReportsIssueConnection>;
|
|
@@ -30126,6 +30458,7 @@ export declare type GraphStore = {
|
|
|
30126
30458
|
userTaggedInCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInCommentInverseConnection>;
|
|
30127
30459
|
userTaggedInConfluencePage?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageConnection>;
|
|
30128
30460
|
userTaggedInConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageInverseConnection>;
|
|
30461
|
+
userTaggedInIssueComment?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentConnection>;
|
|
30129
30462
|
userTaggedInIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection>;
|
|
30130
30463
|
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
30131
30464
|
userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
|
|
@@ -30141,6 +30474,7 @@ export declare type GraphStore = {
|
|
|
30141
30474
|
userUpdatedGraphDocumentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentInverseConnection>;
|
|
30142
30475
|
userUpdatedIssue?: Maybe<GraphStoreSimplifiedUserUpdatedIssueConnection>;
|
|
30143
30476
|
userUpdatedIssueInverse?: Maybe<GraphStoreSimplifiedUserUpdatedIssueInverseConnection>;
|
|
30477
|
+
userUpdatedIssueStatusInverse?: Maybe<GraphStoreSimplifiedUserUpdatedIssueStatusInverseConnection>;
|
|
30144
30478
|
userViewedAtlasGoal?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalConnection>;
|
|
30145
30479
|
userViewedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection>;
|
|
30146
30480
|
userViewedAtlasProject?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectConnection>;
|
|
@@ -30278,6 +30612,22 @@ export declare type GraphStoreAtlasGoalHasSubAtlasGoalInverseArgs = {
|
|
|
30278
30612
|
id: Scalars['ID']['input'];
|
|
30279
30613
|
sort?: InputMaybe<GraphStoreAtlasGoalHasSubAtlasGoalSortInput>;
|
|
30280
30614
|
};
|
|
30615
|
+
export declare type GraphStoreAtlasGoalHasUpdateArgs = {
|
|
30616
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30617
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30618
|
+
filter?: InputMaybe<GraphStoreAtlasGoalHasUpdateFilterInput>;
|
|
30619
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30620
|
+
id: Scalars['ID']['input'];
|
|
30621
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasUpdateSortInput>;
|
|
30622
|
+
};
|
|
30623
|
+
export declare type GraphStoreAtlasGoalHasUpdateInverseArgs = {
|
|
30624
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30625
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30626
|
+
filter?: InputMaybe<GraphStoreAtlasGoalHasUpdateFilterInput>;
|
|
30627
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30628
|
+
id: Scalars['ID']['input'];
|
|
30629
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasUpdateSortInput>;
|
|
30630
|
+
};
|
|
30281
30631
|
export declare type GraphStoreAtlasHomeFeedArgs = {
|
|
30282
30632
|
container_ids: Array<Scalars['ID']['input']>;
|
|
30283
30633
|
ranking_criteria?: InputMaybe<GraphStoreAtlasHomeRankingCriteria>;
|
|
@@ -30362,6 +30712,22 @@ export declare type GraphStoreAtlasProjectHasOwnerInverseArgs = {
|
|
|
30362
30712
|
id: Scalars['ID']['input'];
|
|
30363
30713
|
sort?: InputMaybe<GraphStoreAtlasProjectHasOwnerSortInput>;
|
|
30364
30714
|
};
|
|
30715
|
+
export declare type GraphStoreAtlasProjectHasUpdateArgs = {
|
|
30716
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30717
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30718
|
+
filter?: InputMaybe<GraphStoreAtlasProjectHasUpdateFilterInput>;
|
|
30719
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30720
|
+
id: Scalars['ID']['input'];
|
|
30721
|
+
sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
|
|
30722
|
+
};
|
|
30723
|
+
export declare type GraphStoreAtlasProjectHasUpdateInverseArgs = {
|
|
30724
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30725
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30726
|
+
filter?: InputMaybe<GraphStoreAtlasProjectHasUpdateFilterInput>;
|
|
30727
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30728
|
+
id: Scalars['ID']['input'];
|
|
30729
|
+
sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
|
|
30730
|
+
};
|
|
30365
30731
|
export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectArgs = {
|
|
30366
30732
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30367
30733
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30400,6 +30766,34 @@ export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicRelationshipArgs =
|
|
|
30400
30766
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30401
30767
|
id: Scalars['ID']['input'];
|
|
30402
30768
|
};
|
|
30769
|
+
export declare type GraphStoreBoardBelongsToProjectArgs = {
|
|
30770
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30771
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30772
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30773
|
+
id: Scalars['ID']['input'];
|
|
30774
|
+
sort?: InputMaybe<GraphStoreBoardBelongsToProjectSortInput>;
|
|
30775
|
+
};
|
|
30776
|
+
export declare type GraphStoreBoardBelongsToProjectInverseArgs = {
|
|
30777
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30778
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30779
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30780
|
+
id: Scalars['ID']['input'];
|
|
30781
|
+
sort?: InputMaybe<GraphStoreBoardBelongsToProjectSortInput>;
|
|
30782
|
+
};
|
|
30783
|
+
export declare type GraphStoreCalendarHasLinkedDocumentArgs = {
|
|
30784
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30785
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30786
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30787
|
+
id: Scalars['ID']['input'];
|
|
30788
|
+
sort?: InputMaybe<GraphStoreCalendarHasLinkedDocumentSortInput>;
|
|
30789
|
+
};
|
|
30790
|
+
export declare type GraphStoreCalendarHasLinkedDocumentInverseArgs = {
|
|
30791
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30792
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30793
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30794
|
+
id: Scalars['ID']['input'];
|
|
30795
|
+
sort?: InputMaybe<GraphStoreCalendarHasLinkedDocumentSortInput>;
|
|
30796
|
+
};
|
|
30403
30797
|
export declare type GraphStoreComponentAssociatedDocumentArgs = {
|
|
30404
30798
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30405
30799
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30479,6 +30873,20 @@ export declare type GraphStoreComponentLinkedJswIssueRelationshipArgs = {
|
|
|
30479
30873
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30480
30874
|
id: Scalars['ID']['input'];
|
|
30481
30875
|
};
|
|
30876
|
+
export declare type GraphStoreConfluenceBlogpostHasCommentArgs = {
|
|
30877
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30878
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30879
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30880
|
+
id: Scalars['ID']['input'];
|
|
30881
|
+
sort?: InputMaybe<GraphStoreConfluenceBlogpostHasCommentSortInput>;
|
|
30882
|
+
};
|
|
30883
|
+
export declare type GraphStoreConfluenceBlogpostHasCommentInverseArgs = {
|
|
30884
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30885
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30886
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30887
|
+
id: Scalars['ID']['input'];
|
|
30888
|
+
sort?: InputMaybe<GraphStoreConfluenceBlogpostHasCommentSortInput>;
|
|
30889
|
+
};
|
|
30482
30890
|
export declare type GraphStoreConfluenceBlogpostSharedWithUserArgs = {
|
|
30483
30891
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30484
30892
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30493,6 +30901,20 @@ export declare type GraphStoreConfluenceBlogpostSharedWithUserInverseArgs = {
|
|
|
30493
30901
|
id: Scalars['ID']['input'];
|
|
30494
30902
|
sort?: InputMaybe<GraphStoreConfluenceBlogpostSharedWithUserSortInput>;
|
|
30495
30903
|
};
|
|
30904
|
+
export declare type GraphStoreConfluencePageHasCommentArgs = {
|
|
30905
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30906
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30907
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30908
|
+
id: Scalars['ID']['input'];
|
|
30909
|
+
sort?: InputMaybe<GraphStoreConfluencePageHasCommentSortInput>;
|
|
30910
|
+
};
|
|
30911
|
+
export declare type GraphStoreConfluencePageHasCommentInverseArgs = {
|
|
30912
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30913
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30914
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30915
|
+
id: Scalars['ID']['input'];
|
|
30916
|
+
sort?: InputMaybe<GraphStoreConfluencePageHasCommentSortInput>;
|
|
30917
|
+
};
|
|
30496
30918
|
export declare type GraphStoreConfluencePageHasConfluenceCommentArgs = {
|
|
30497
30919
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30498
30920
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30773,6 +31195,20 @@ export declare type GraphStoreFocusAreaHasFocusAreaInverseBatchArgs = {
|
|
|
30773
31195
|
ids: Array<Scalars['ID']['input']>;
|
|
30774
31196
|
sort?: InputMaybe<GraphStoreFocusAreaHasFocusAreaSortInput>;
|
|
30775
31197
|
};
|
|
31198
|
+
export declare type GraphStoreFocusAreaHasPageArgs = {
|
|
31199
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31200
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31201
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31202
|
+
id: Scalars['ID']['input'];
|
|
31203
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasPageSortInput>;
|
|
31204
|
+
};
|
|
31205
|
+
export declare type GraphStoreFocusAreaHasPageInverseArgs = {
|
|
31206
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31207
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31208
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31209
|
+
id: Scalars['ID']['input'];
|
|
31210
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasPageSortInput>;
|
|
31211
|
+
};
|
|
30776
31212
|
export declare type GraphStoreFocusAreaHasProjectArgs = {
|
|
30777
31213
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30778
31214
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30806,6 +31242,13 @@ export declare type GraphStoreGraphDocument3pDocumentInverseArgs = {
|
|
|
30806
31242
|
id: Scalars['ID']['input'];
|
|
30807
31243
|
sort?: InputMaybe<GraphStoreGraphDocument3pDocumentSortInput>;
|
|
30808
31244
|
};
|
|
31245
|
+
export declare type GraphStoreGraphEntityReplicates3pEntityInverseArgs = {
|
|
31246
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31247
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31248
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31249
|
+
id: Scalars['ID']['input'];
|
|
31250
|
+
sort?: InputMaybe<GraphStoreGraphEntityReplicates3pEntitySortInput>;
|
|
31251
|
+
};
|
|
30809
31252
|
export declare type GraphStoreGroupCanViewConfluenceSpaceArgs = {
|
|
30810
31253
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30811
31254
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31386,6 +31829,22 @@ export declare type GraphStoreIssueToWhiteboardRelationshipArgs = {
|
|
|
31386
31829
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31387
31830
|
id: Scalars['ID']['input'];
|
|
31388
31831
|
};
|
|
31832
|
+
export declare type GraphStoreJcsIssueAssociatedSupportEscalationArgs = {
|
|
31833
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31834
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31835
|
+
filter?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationFilterInput>;
|
|
31836
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31837
|
+
id: Scalars['ID']['input'];
|
|
31838
|
+
sort?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationSortInput>;
|
|
31839
|
+
};
|
|
31840
|
+
export declare type GraphStoreJcsIssueAssociatedSupportEscalationInverseArgs = {
|
|
31841
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31842
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31843
|
+
filter?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationFilterInput>;
|
|
31844
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31845
|
+
id: Scalars['ID']['input'];
|
|
31846
|
+
sort?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationSortInput>;
|
|
31847
|
+
};
|
|
31389
31848
|
export declare type GraphStoreJiraEpicContributesToAtlasGoalArgs = {
|
|
31390
31849
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31391
31850
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31593,6 +32052,20 @@ export declare type GraphStoreLinkedProjectHasVersionRelationshipArgs = {
|
|
|
31593
32052
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31594
32053
|
id: Scalars['ID']['input'];
|
|
31595
32054
|
};
|
|
32055
|
+
export declare type GraphStoreLoomVideoSharedWithUserArgs = {
|
|
32056
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32057
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32058
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32059
|
+
id: Scalars['ID']['input'];
|
|
32060
|
+
sort?: InputMaybe<GraphStoreLoomVideoSharedWithUserSortInput>;
|
|
32061
|
+
};
|
|
32062
|
+
export declare type GraphStoreLoomVideoSharedWithUserInverseArgs = {
|
|
32063
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32064
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32065
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32066
|
+
id: Scalars['ID']['input'];
|
|
32067
|
+
sort?: InputMaybe<GraphStoreLoomVideoSharedWithUserSortInput>;
|
|
32068
|
+
};
|
|
31596
32069
|
export declare type GraphStoreMediaAttachedToContentArgs = {
|
|
31597
32070
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31598
32071
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31612,6 +32085,13 @@ export declare type GraphStoreMediaAttachedToContentInverseBatchArgs = {
|
|
|
31612
32085
|
ids: Array<Scalars['ID']['input']>;
|
|
31613
32086
|
sort?: InputMaybe<GraphStoreMediaAttachedToContentSortInput>;
|
|
31614
32087
|
};
|
|
32088
|
+
export declare type GraphStoreMeetingHasMeetingNotesPageArgs = {
|
|
32089
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32090
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32091
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32092
|
+
id: Scalars['ID']['input'];
|
|
32093
|
+
sort?: InputMaybe<GraphStoreMeetingHasMeetingNotesPageSortInput>;
|
|
32094
|
+
};
|
|
31615
32095
|
export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
31616
32096
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31617
32097
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31626,6 +32106,13 @@ export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderInverseA
|
|
|
31626
32106
|
id: Scalars['ID']['input'];
|
|
31627
32107
|
sort?: InputMaybe<GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInput>;
|
|
31628
32108
|
};
|
|
32109
|
+
export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageArgs = {
|
|
32110
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32111
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32112
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32113
|
+
id: Scalars['ID']['input'];
|
|
32114
|
+
sort?: InputMaybe<GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput>;
|
|
32115
|
+
};
|
|
31629
32116
|
export declare type GraphStoreOnPremProjectHasIssueArgs = {
|
|
31630
32117
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31631
32118
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32363,6 +32850,20 @@ export declare type GraphStoreProjectLinkedToCompassComponentInverseArgs = {
|
|
|
32363
32850
|
id: Scalars['ID']['input'];
|
|
32364
32851
|
sort?: InputMaybe<GraphStoreProjectLinkedToCompassComponentSortInput>;
|
|
32365
32852
|
};
|
|
32853
|
+
export declare type GraphStorePullRequestLinksToServiceArgs = {
|
|
32854
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32855
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32856
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32857
|
+
id: Scalars['ID']['input'];
|
|
32858
|
+
sort?: InputMaybe<GraphStorePullRequestLinksToServiceSortInput>;
|
|
32859
|
+
};
|
|
32860
|
+
export declare type GraphStorePullRequestLinksToServiceInverseArgs = {
|
|
32861
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32862
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32863
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32864
|
+
id: Scalars['ID']['input'];
|
|
32865
|
+
sort?: InputMaybe<GraphStorePullRequestLinksToServiceSortInput>;
|
|
32866
|
+
};
|
|
32366
32867
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityArgs = {
|
|
32367
32868
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32368
32869
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32392,6 +32893,20 @@ export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityRelation
|
|
|
32392
32893
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32393
32894
|
id: Scalars['ID']['input'];
|
|
32394
32895
|
};
|
|
32896
|
+
export declare type GraphStoreServiceAssociatedBranchArgs = {
|
|
32897
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32898
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32899
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32900
|
+
id: Scalars['ID']['input'];
|
|
32901
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedBranchSortInput>;
|
|
32902
|
+
};
|
|
32903
|
+
export declare type GraphStoreServiceAssociatedBranchInverseArgs = {
|
|
32904
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32905
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32906
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32907
|
+
id: Scalars['ID']['input'];
|
|
32908
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedBranchSortInput>;
|
|
32909
|
+
};
|
|
32395
32910
|
export declare type GraphStoreServiceAssociatedDeploymentArgs = {
|
|
32396
32911
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32397
32912
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32862,6 +33377,20 @@ export declare type GraphStoreUserAssignedIncidentInverseArgs = {
|
|
|
32862
33377
|
id: Scalars['ID']['input'];
|
|
32863
33378
|
sort?: InputMaybe<GraphStoreUserAssignedIncidentSortInput>;
|
|
32864
33379
|
};
|
|
33380
|
+
export declare type GraphStoreUserAssignedIssueArgs = {
|
|
33381
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33382
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33383
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33384
|
+
id: Scalars['ID']['input'];
|
|
33385
|
+
sort?: InputMaybe<GraphStoreUserAssignedIssueSortInput>;
|
|
33386
|
+
};
|
|
33387
|
+
export declare type GraphStoreUserAssignedIssueInverseArgs = {
|
|
33388
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33389
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33390
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33391
|
+
id: Scalars['ID']['input'];
|
|
33392
|
+
sort?: InputMaybe<GraphStoreUserAssignedIssueSortInput>;
|
|
33393
|
+
};
|
|
32865
33394
|
export declare type GraphStoreUserAssignedPirArgs = {
|
|
32866
33395
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32867
33396
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33158,6 +33687,20 @@ export declare type GraphStoreUserCreatedDocumentInverseArgs = {
|
|
|
33158
33687
|
id: Scalars['ID']['input'];
|
|
33159
33688
|
sort?: InputMaybe<GraphStoreUserCreatedDocumentSortInput>;
|
|
33160
33689
|
};
|
|
33690
|
+
export declare type GraphStoreUserCreatedIssueCommentArgs = {
|
|
33691
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33692
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33693
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33694
|
+
id: Scalars['ID']['input'];
|
|
33695
|
+
sort?: InputMaybe<GraphStoreUserCreatedIssueCommentSortInput>;
|
|
33696
|
+
};
|
|
33697
|
+
export declare type GraphStoreUserCreatedIssueCommentInverseArgs = {
|
|
33698
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33699
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33700
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33701
|
+
id: Scalars['ID']['input'];
|
|
33702
|
+
sort?: InputMaybe<GraphStoreUserCreatedIssueCommentSortInput>;
|
|
33703
|
+
};
|
|
33161
33704
|
export declare type GraphStoreUserCreatedIssueWorklogArgs = {
|
|
33162
33705
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33163
33706
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33200,6 +33743,20 @@ export declare type GraphStoreUserCreatedMessageInverseArgs = {
|
|
|
33200
33743
|
id: Scalars['ID']['input'];
|
|
33201
33744
|
sort?: InputMaybe<GraphStoreUserCreatedMessageSortInput>;
|
|
33202
33745
|
};
|
|
33746
|
+
export declare type GraphStoreUserCreatedReleaseArgs = {
|
|
33747
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33748
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33749
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33750
|
+
id: Scalars['ID']['input'];
|
|
33751
|
+
sort?: InputMaybe<GraphStoreUserCreatedReleaseSortInput>;
|
|
33752
|
+
};
|
|
33753
|
+
export declare type GraphStoreUserCreatedReleaseInverseArgs = {
|
|
33754
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33755
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33756
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33757
|
+
id: Scalars['ID']['input'];
|
|
33758
|
+
sort?: InputMaybe<GraphStoreUserCreatedReleaseSortInput>;
|
|
33759
|
+
};
|
|
33203
33760
|
export declare type GraphStoreUserCreatedRemoteLinkArgs = {
|
|
33204
33761
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33205
33762
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33524,6 +34081,20 @@ export declare type GraphStoreUserOwnsComponentInverseArgs = {
|
|
|
33524
34081
|
id: Scalars['ID']['input'];
|
|
33525
34082
|
sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
|
|
33526
34083
|
};
|
|
34084
|
+
export declare type GraphStoreUserOwnsFocusAreaArgs = {
|
|
34085
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34086
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34087
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34088
|
+
id: Scalars['ID']['input'];
|
|
34089
|
+
sort?: InputMaybe<GraphStoreUserOwnsFocusAreaSortInput>;
|
|
34090
|
+
};
|
|
34091
|
+
export declare type GraphStoreUserOwnsFocusAreaInverseArgs = {
|
|
34092
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34093
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34094
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34095
|
+
id: Scalars['ID']['input'];
|
|
34096
|
+
sort?: InputMaybe<GraphStoreUserOwnsFocusAreaSortInput>;
|
|
34097
|
+
};
|
|
33527
34098
|
export declare type GraphStoreUserReportedIncidentArgs = {
|
|
33528
34099
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33529
34100
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33594,6 +34165,13 @@ export declare type GraphStoreUserTaggedInConfluencePageInverseArgs = {
|
|
|
33594
34165
|
id: Scalars['ID']['input'];
|
|
33595
34166
|
sort?: InputMaybe<GraphStoreUserTaggedInConfluencePageSortInput>;
|
|
33596
34167
|
};
|
|
34168
|
+
export declare type GraphStoreUserTaggedInIssueCommentArgs = {
|
|
34169
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34170
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34171
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34172
|
+
id: Scalars['ID']['input'];
|
|
34173
|
+
sort?: InputMaybe<GraphStoreUserTaggedInIssueCommentSortInput>;
|
|
34174
|
+
};
|
|
33597
34175
|
export declare type GraphStoreUserTaggedInIssueCommentInverseArgs = {
|
|
33598
34176
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33599
34177
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33699,6 +34277,13 @@ export declare type GraphStoreUserUpdatedIssueInverseArgs = {
|
|
|
33699
34277
|
id: Scalars['ID']['input'];
|
|
33700
34278
|
sort?: InputMaybe<GraphStoreUserUpdatedIssueSortInput>;
|
|
33701
34279
|
};
|
|
34280
|
+
export declare type GraphStoreUserUpdatedIssueStatusInverseArgs = {
|
|
34281
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34282
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34283
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34284
|
+
id: Scalars['ID']['input'];
|
|
34285
|
+
sort?: InputMaybe<GraphStoreUserUpdatedIssueStatusSortInput>;
|
|
34286
|
+
};
|
|
33702
34287
|
export declare type GraphStoreUserViewedAtlasGoalArgs = {
|
|
33703
34288
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33704
34289
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34123,8 +34708,109 @@ export declare type GraphStoreAtlasGoalHasOwnerSortInput = {
|
|
|
34123
34708
|
export declare type GraphStoreAtlasGoalHasSubAtlasGoalSortInput = {
|
|
34124
34709
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34125
34710
|
};
|
|
34126
|
-
export declare type
|
|
34127
|
-
|
|
34711
|
+
export declare type GraphStoreAtlasGoalHasUpdateConditionalFilterInput = {
|
|
34712
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
34713
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
34714
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
34715
|
+
relationship_createdBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
34716
|
+
relationship_creationDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34717
|
+
relationship_lastEditedBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
34718
|
+
relationship_lastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34719
|
+
relationship_newConfidence?: InputMaybe<GraphStoreAtlasGoalHasUpdateNewConfidenceFilterInput>;
|
|
34720
|
+
relationship_newScore?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34721
|
+
relationship_newStatus?: InputMaybe<GraphStoreAtlasGoalHasUpdateNewStatusFilterInput>;
|
|
34722
|
+
relationship_newTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34723
|
+
relationship_oldConfidence?: InputMaybe<GraphStoreAtlasGoalHasUpdateOldConfidenceFilterInput>;
|
|
34724
|
+
relationship_oldScore?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34725
|
+
relationship_oldStatus?: InputMaybe<GraphStoreAtlasGoalHasUpdateOldStatusFilterInput>;
|
|
34726
|
+
relationship_oldTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34727
|
+
relationship_updateType?: InputMaybe<GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput>;
|
|
34728
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
34729
|
+
};
|
|
34730
|
+
export declare type GraphStoreAtlasGoalHasUpdateFilterInput = {
|
|
34731
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasGoalHasUpdateConditionalFilterInput>>>;
|
|
34732
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasGoalHasUpdateConditionalFilterInput>>>;
|
|
34733
|
+
};
|
|
34734
|
+
export declare enum GraphStoreAtlasGoalHasUpdateNewConfidence {
|
|
34735
|
+
Day = "DAY",
|
|
34736
|
+
Month = "MONTH",
|
|
34737
|
+
NotSet = "NOT_SET",
|
|
34738
|
+
Quarter = "QUARTER"
|
|
34739
|
+
}
|
|
34740
|
+
export declare type GraphStoreAtlasGoalHasUpdateNewConfidenceFilterInput = {
|
|
34741
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewConfidence>>;
|
|
34742
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewConfidence>>;
|
|
34743
|
+
};
|
|
34744
|
+
export declare enum GraphStoreAtlasGoalHasUpdateNewStatus {
|
|
34745
|
+
AtRisk = "AT_RISK",
|
|
34746
|
+
Cancelled = "CANCELLED",
|
|
34747
|
+
Done = "DONE",
|
|
34748
|
+
NotSet = "NOT_SET",
|
|
34749
|
+
OffTrack = "OFF_TRACK",
|
|
34750
|
+
OnTrack = "ON_TRACK",
|
|
34751
|
+
Paused = "PAUSED",
|
|
34752
|
+
Pending = "PENDING"
|
|
34753
|
+
}
|
|
34754
|
+
export declare type GraphStoreAtlasGoalHasUpdateNewStatusFilterInput = {
|
|
34755
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewStatus>>;
|
|
34756
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewStatus>>;
|
|
34757
|
+
};
|
|
34758
|
+
export declare enum GraphStoreAtlasGoalHasUpdateOldConfidence {
|
|
34759
|
+
Day = "DAY",
|
|
34760
|
+
Month = "MONTH",
|
|
34761
|
+
NotSet = "NOT_SET",
|
|
34762
|
+
Null = "NULL",
|
|
34763
|
+
Quarter = "QUARTER"
|
|
34764
|
+
}
|
|
34765
|
+
export declare type GraphStoreAtlasGoalHasUpdateOldConfidenceFilterInput = {
|
|
34766
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldConfidence>>;
|
|
34767
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldConfidence>>;
|
|
34768
|
+
};
|
|
34769
|
+
export declare enum GraphStoreAtlasGoalHasUpdateOldStatus {
|
|
34770
|
+
AtRisk = "AT_RISK",
|
|
34771
|
+
Cancelled = "CANCELLED",
|
|
34772
|
+
Done = "DONE",
|
|
34773
|
+
NotSet = "NOT_SET",
|
|
34774
|
+
Null = "NULL",
|
|
34775
|
+
OffTrack = "OFF_TRACK",
|
|
34776
|
+
OnTrack = "ON_TRACK",
|
|
34777
|
+
Paused = "PAUSED",
|
|
34778
|
+
Pending = "PENDING"
|
|
34779
|
+
}
|
|
34780
|
+
export declare type GraphStoreAtlasGoalHasUpdateOldStatusFilterInput = {
|
|
34781
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldStatus>>;
|
|
34782
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldStatus>>;
|
|
34783
|
+
};
|
|
34784
|
+
export declare type GraphStoreAtlasGoalHasUpdateSortInput = {
|
|
34785
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
34786
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
34787
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34788
|
+
relationship_createdBy?: InputMaybe<GraphStoreSortInput>;
|
|
34789
|
+
relationship_creationDate?: InputMaybe<GraphStoreSortInput>;
|
|
34790
|
+
relationship_lastEditedBy?: InputMaybe<GraphStoreSortInput>;
|
|
34791
|
+
relationship_lastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
34792
|
+
relationship_newConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
34793
|
+
relationship_newScore?: InputMaybe<GraphStoreSortInput>;
|
|
34794
|
+
relationship_newStatus?: InputMaybe<GraphStoreSortInput>;
|
|
34795
|
+
relationship_newTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
34796
|
+
relationship_oldConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
34797
|
+
relationship_oldScore?: InputMaybe<GraphStoreSortInput>;
|
|
34798
|
+
relationship_oldStatus?: InputMaybe<GraphStoreSortInput>;
|
|
34799
|
+
relationship_oldTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
34800
|
+
relationship_updateType?: InputMaybe<GraphStoreSortInput>;
|
|
34801
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
34802
|
+
};
|
|
34803
|
+
export declare enum GraphStoreAtlasGoalHasUpdateUpdateType {
|
|
34804
|
+
NotSet = "NOT_SET",
|
|
34805
|
+
System = "SYSTEM",
|
|
34806
|
+
User = "USER"
|
|
34807
|
+
}
|
|
34808
|
+
export declare type GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput = {
|
|
34809
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
34810
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
34811
|
+
};
|
|
34812
|
+
export declare type GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion = ConfluencePage | JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
|
|
34813
|
+
export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = ConfluencePage | JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
|
|
34128
34814
|
export declare type GraphStoreAtlasHomeQueryConnection = {
|
|
34129
34815
|
__typename?: 'GraphStoreAtlasHomeQueryConnection';
|
|
34130
34816
|
nodes: Array<GraphStoreAtlasHomeQueryNode>;
|
|
@@ -34168,6 +34854,103 @@ export declare type GraphStoreAtlasProjectHasFollowerSortInput = {
|
|
|
34168
34854
|
export declare type GraphStoreAtlasProjectHasOwnerSortInput = {
|
|
34169
34855
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34170
34856
|
};
|
|
34857
|
+
export declare type GraphStoreAtlasProjectHasUpdateConditionalFilterInput = {
|
|
34858
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
34859
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
34860
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
34861
|
+
relationship_createdBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
34862
|
+
relationship_creationDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34863
|
+
relationship_lastEditedBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
34864
|
+
relationship_lastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34865
|
+
relationship_newConfidence?: InputMaybe<GraphStoreAtlasProjectHasUpdateNewConfidenceFilterInput>;
|
|
34866
|
+
relationship_newStatus?: InputMaybe<GraphStoreAtlasProjectHasUpdateNewStatusFilterInput>;
|
|
34867
|
+
relationship_newTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34868
|
+
relationship_oldConfidence?: InputMaybe<GraphStoreAtlasProjectHasUpdateOldConfidenceFilterInput>;
|
|
34869
|
+
relationship_oldStatus?: InputMaybe<GraphStoreAtlasProjectHasUpdateOldStatusFilterInput>;
|
|
34870
|
+
relationship_oldTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34871
|
+
relationship_updateType?: InputMaybe<GraphStoreAtlasProjectHasUpdateUpdateTypeFilterInput>;
|
|
34872
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
34873
|
+
};
|
|
34874
|
+
export declare type GraphStoreAtlasProjectHasUpdateFilterInput = {
|
|
34875
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectHasUpdateConditionalFilterInput>>>;
|
|
34876
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectHasUpdateConditionalFilterInput>>>;
|
|
34877
|
+
};
|
|
34878
|
+
export declare enum GraphStoreAtlasProjectHasUpdateNewConfidence {
|
|
34879
|
+
Day = "DAY",
|
|
34880
|
+
Month = "MONTH",
|
|
34881
|
+
NotSet = "NOT_SET",
|
|
34882
|
+
Quarter = "QUARTER"
|
|
34883
|
+
}
|
|
34884
|
+
export declare type GraphStoreAtlasProjectHasUpdateNewConfidenceFilterInput = {
|
|
34885
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewConfidence>>;
|
|
34886
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewConfidence>>;
|
|
34887
|
+
};
|
|
34888
|
+
export declare enum GraphStoreAtlasProjectHasUpdateNewStatus {
|
|
34889
|
+
AtRisk = "AT_RISK",
|
|
34890
|
+
Cancelled = "CANCELLED",
|
|
34891
|
+
Done = "DONE",
|
|
34892
|
+
NotSet = "NOT_SET",
|
|
34893
|
+
OffTrack = "OFF_TRACK",
|
|
34894
|
+
OnTrack = "ON_TRACK",
|
|
34895
|
+
Paused = "PAUSED",
|
|
34896
|
+
Pending = "PENDING"
|
|
34897
|
+
}
|
|
34898
|
+
export declare type GraphStoreAtlasProjectHasUpdateNewStatusFilterInput = {
|
|
34899
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewStatus>>;
|
|
34900
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewStatus>>;
|
|
34901
|
+
};
|
|
34902
|
+
export declare enum GraphStoreAtlasProjectHasUpdateOldConfidence {
|
|
34903
|
+
Day = "DAY",
|
|
34904
|
+
Month = "MONTH",
|
|
34905
|
+
NotSet = "NOT_SET",
|
|
34906
|
+
Null = "NULL",
|
|
34907
|
+
Quarter = "QUARTER"
|
|
34908
|
+
}
|
|
34909
|
+
export declare type GraphStoreAtlasProjectHasUpdateOldConfidenceFilterInput = {
|
|
34910
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldConfidence>>;
|
|
34911
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldConfidence>>;
|
|
34912
|
+
};
|
|
34913
|
+
export declare enum GraphStoreAtlasProjectHasUpdateOldStatus {
|
|
34914
|
+
AtRisk = "AT_RISK",
|
|
34915
|
+
Cancelled = "CANCELLED",
|
|
34916
|
+
Done = "DONE",
|
|
34917
|
+
NotSet = "NOT_SET",
|
|
34918
|
+
Null = "NULL",
|
|
34919
|
+
OffTrack = "OFF_TRACK",
|
|
34920
|
+
OnTrack = "ON_TRACK",
|
|
34921
|
+
Paused = "PAUSED",
|
|
34922
|
+
Pending = "PENDING"
|
|
34923
|
+
}
|
|
34924
|
+
export declare type GraphStoreAtlasProjectHasUpdateOldStatusFilterInput = {
|
|
34925
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldStatus>>;
|
|
34926
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldStatus>>;
|
|
34927
|
+
};
|
|
34928
|
+
export declare type GraphStoreAtlasProjectHasUpdateSortInput = {
|
|
34929
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
34930
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
34931
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34932
|
+
relationship_createdBy?: InputMaybe<GraphStoreSortInput>;
|
|
34933
|
+
relationship_creationDate?: InputMaybe<GraphStoreSortInput>;
|
|
34934
|
+
relationship_lastEditedBy?: InputMaybe<GraphStoreSortInput>;
|
|
34935
|
+
relationship_lastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
34936
|
+
relationship_newConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
34937
|
+
relationship_newStatus?: InputMaybe<GraphStoreSortInput>;
|
|
34938
|
+
relationship_newTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
34939
|
+
relationship_oldConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
34940
|
+
relationship_oldStatus?: InputMaybe<GraphStoreSortInput>;
|
|
34941
|
+
relationship_oldTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
34942
|
+
relationship_updateType?: InputMaybe<GraphStoreSortInput>;
|
|
34943
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
34944
|
+
};
|
|
34945
|
+
export declare enum GraphStoreAtlasProjectHasUpdateUpdateType {
|
|
34946
|
+
NotSet = "NOT_SET",
|
|
34947
|
+
System = "SYSTEM",
|
|
34948
|
+
User = "USER"
|
|
34949
|
+
}
|
|
34950
|
+
export declare type GraphStoreAtlasProjectHasUpdateUpdateTypeFilterInput = {
|
|
34951
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateUpdateType>>;
|
|
34952
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateUpdateType>>;
|
|
34953
|
+
};
|
|
34171
34954
|
export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectSortInput = {
|
|
34172
34955
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34173
34956
|
};
|
|
@@ -34826,9 +35609,15 @@ export declare type GraphStoreBatchTestPerfhammerRelationshipStartNode = {
|
|
|
34826
35609
|
id: Scalars['ID']['output'];
|
|
34827
35610
|
};
|
|
34828
35611
|
export declare type GraphStoreBatchTestPerfhammerRelationshipStartUnion = JiraIssue;
|
|
35612
|
+
export declare type GraphStoreBoardBelongsToProjectSortInput = {
|
|
35613
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35614
|
+
};
|
|
34829
35615
|
export declare type GraphStoreBooleanFilterInput = {
|
|
34830
35616
|
is?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34831
35617
|
};
|
|
35618
|
+
export declare type GraphStoreCalendarHasLinkedDocumentSortInput = {
|
|
35619
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35620
|
+
};
|
|
34832
35621
|
export declare type GraphStoreComponentAssociatedDocumentSortInput = {
|
|
34833
35622
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34834
35623
|
};
|
|
@@ -34844,9 +35633,15 @@ export declare type GraphStoreComponentLinkedJswIssueSortInput = {
|
|
|
34844
35633
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34845
35634
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
34846
35635
|
};
|
|
35636
|
+
export declare type GraphStoreConfluenceBlogpostHasCommentSortInput = {
|
|
35637
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35638
|
+
};
|
|
34847
35639
|
export declare type GraphStoreConfluenceBlogpostSharedWithUserSortInput = {
|
|
34848
35640
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34849
35641
|
};
|
|
35642
|
+
export declare type GraphStoreConfluencePageHasCommentSortInput = {
|
|
35643
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35644
|
+
};
|
|
34850
35645
|
export declare type GraphStoreConfluencePageHasConfluenceCommentSortInput = {
|
|
34851
35646
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34852
35647
|
};
|
|
@@ -34976,6 +35771,37 @@ export declare type GraphStoreCreateIssueToWhiteboardRelationshipInput = {
|
|
|
34976
35771
|
to: Scalars['ID']['input'];
|
|
34977
35772
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
34978
35773
|
};
|
|
35774
|
+
export declare enum GraphStoreCreateJcsIssueAssociatedSupportEscalationEscalationLinkTypeInput {
|
|
35775
|
+
ExistingWorkItem = "EXISTING_WORK_ITEM",
|
|
35776
|
+
NewWorkItem = "NEW_WORK_ITEM",
|
|
35777
|
+
NotSet = "NOT_SET"
|
|
35778
|
+
}
|
|
35779
|
+
export declare enum GraphStoreCreateJcsIssueAssociatedSupportEscalationEscalationStatusInput {
|
|
35780
|
+
Accepted = "ACCEPTED",
|
|
35781
|
+
Open = "OPEN",
|
|
35782
|
+
Rejected = "REJECTED"
|
|
35783
|
+
}
|
|
35784
|
+
export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationInput = {
|
|
35785
|
+
relationships: Array<GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipInput>;
|
|
35786
|
+
};
|
|
35787
|
+
export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationPayload = Payload & {
|
|
35788
|
+
__typename?: 'GraphStoreCreateJcsIssueAssociatedSupportEscalationPayload';
|
|
35789
|
+
errors?: Maybe<Array<MutationError>>;
|
|
35790
|
+
success: Scalars['Boolean']['output'];
|
|
35791
|
+
};
|
|
35792
|
+
export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipInput = {
|
|
35793
|
+
from: Scalars['ID']['input'];
|
|
35794
|
+
relationshipMetadata?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipMetadataInput>;
|
|
35795
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
35796
|
+
to: Scalars['ID']['input'];
|
|
35797
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
35798
|
+
};
|
|
35799
|
+
export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipMetadataInput = {
|
|
35800
|
+
SupportEscalationLastUpdated?: InputMaybe<Scalars['Long']['input']>;
|
|
35801
|
+
creatorAri?: InputMaybe<Scalars['String']['input']>;
|
|
35802
|
+
linkType?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationEscalationLinkTypeInput>;
|
|
35803
|
+
status?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationEscalationStatusInput>;
|
|
35804
|
+
};
|
|
34979
35805
|
export declare type GraphStoreCreateJswProjectAssociatedComponentInput = {
|
|
34980
35806
|
relationships: Array<GraphStoreCreateJswProjectAssociatedComponentRelationshipInput>;
|
|
34981
35807
|
};
|
|
@@ -35295,7 +36121,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
35295
36121
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
35296
36122
|
id: Scalars['ID']['output'];
|
|
35297
36123
|
};
|
|
35298
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
36124
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35299
36125
|
export declare type GraphStoreCypherQueryNode = {
|
|
35300
36126
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
35301
36127
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -35320,8 +36146,8 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
35320
36146
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
35321
36147
|
id: Scalars['ID']['output'];
|
|
35322
36148
|
};
|
|
35323
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
35324
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
36149
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36150
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35325
36151
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
35326
36152
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
35327
36153
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -35396,6 +36222,19 @@ export declare type GraphStoreDeleteIssueToWhiteboardRelationshipInput = {
|
|
|
35396
36222
|
from: Scalars['ID']['input'];
|
|
35397
36223
|
to: Scalars['ID']['input'];
|
|
35398
36224
|
};
|
|
36225
|
+
export declare type GraphStoreDeleteJcsIssueAssociatedSupportEscalationInput = {
|
|
36226
|
+
relationships: Array<GraphStoreDeleteJcsIssueAssociatedSupportEscalationRelationshipInput>;
|
|
36227
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36228
|
+
};
|
|
36229
|
+
export declare type GraphStoreDeleteJcsIssueAssociatedSupportEscalationPayload = Payload & {
|
|
36230
|
+
__typename?: 'GraphStoreDeleteJcsIssueAssociatedSupportEscalationPayload';
|
|
36231
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36232
|
+
success: Scalars['Boolean']['output'];
|
|
36233
|
+
};
|
|
36234
|
+
export declare type GraphStoreDeleteJcsIssueAssociatedSupportEscalationRelationshipInput = {
|
|
36235
|
+
from: Scalars['ID']['input'];
|
|
36236
|
+
to: Scalars['ID']['input'];
|
|
36237
|
+
};
|
|
35399
36238
|
export declare type GraphStoreDeleteJswProjectAssociatedComponentInput = {
|
|
35400
36239
|
relationships: Array<GraphStoreDeleteJswProjectAssociatedComponentRelationshipInput>;
|
|
35401
36240
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35666,6 +36505,9 @@ export declare type GraphStoreFocusAreaHasAtlasGoalSortInput = {
|
|
|
35666
36505
|
export declare type GraphStoreFocusAreaHasFocusAreaSortInput = {
|
|
35667
36506
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35668
36507
|
};
|
|
36508
|
+
export declare type GraphStoreFocusAreaHasPageSortInput = {
|
|
36509
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36510
|
+
};
|
|
35669
36511
|
export declare type GraphStoreFocusAreaHasProjectSortInput = {
|
|
35670
36512
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35671
36513
|
};
|
|
@@ -39095,6 +39937,9 @@ export declare enum GraphStoreFullVulnerabilityAssociatedIssueVulnerabilityTypeO
|
|
|
39095
39937
|
export declare type GraphStoreGraphDocument3pDocumentSortInput = {
|
|
39096
39938
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39097
39939
|
};
|
|
39940
|
+
export declare type GraphStoreGraphEntityReplicates3pEntitySortInput = {
|
|
39941
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39942
|
+
};
|
|
39098
39943
|
export declare type GraphStoreGroupCanViewConfluenceSpaceSortInput = {
|
|
39099
39944
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39100
39945
|
};
|
|
@@ -39252,6 +40097,48 @@ export declare type GraphStoreIssueToWhiteboardSortInput = {
|
|
|
39252
40097
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39253
40098
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
39254
40099
|
};
|
|
40100
|
+
export declare type GraphStoreJcsIssueAssociatedSupportEscalationConditionalFilterInput = {
|
|
40101
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
40102
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
40103
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
40104
|
+
relationship_SupportEscalationLastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
40105
|
+
relationship_creatorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
40106
|
+
relationship_linkType?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationEscalationLinkTypeFilterInput>;
|
|
40107
|
+
relationship_status?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationEscalationStatusFilterInput>;
|
|
40108
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
40109
|
+
};
|
|
40110
|
+
export declare enum GraphStoreJcsIssueAssociatedSupportEscalationEscalationLinkType {
|
|
40111
|
+
ExistingWorkItem = "EXISTING_WORK_ITEM",
|
|
40112
|
+
NewWorkItem = "NEW_WORK_ITEM",
|
|
40113
|
+
NotSet = "NOT_SET"
|
|
40114
|
+
}
|
|
40115
|
+
export declare type GraphStoreJcsIssueAssociatedSupportEscalationEscalationLinkTypeFilterInput = {
|
|
40116
|
+
is?: InputMaybe<Array<GraphStoreJcsIssueAssociatedSupportEscalationEscalationLinkType>>;
|
|
40117
|
+
isNot?: InputMaybe<Array<GraphStoreJcsIssueAssociatedSupportEscalationEscalationLinkType>>;
|
|
40118
|
+
};
|
|
40119
|
+
export declare enum GraphStoreJcsIssueAssociatedSupportEscalationEscalationStatus {
|
|
40120
|
+
Accepted = "ACCEPTED",
|
|
40121
|
+
Open = "OPEN",
|
|
40122
|
+
Rejected = "REJECTED"
|
|
40123
|
+
}
|
|
40124
|
+
export declare type GraphStoreJcsIssueAssociatedSupportEscalationEscalationStatusFilterInput = {
|
|
40125
|
+
is?: InputMaybe<Array<GraphStoreJcsIssueAssociatedSupportEscalationEscalationStatus>>;
|
|
40126
|
+
isNot?: InputMaybe<Array<GraphStoreJcsIssueAssociatedSupportEscalationEscalationStatus>>;
|
|
40127
|
+
};
|
|
40128
|
+
export declare type GraphStoreJcsIssueAssociatedSupportEscalationFilterInput = {
|
|
40129
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationConditionalFilterInput>>>;
|
|
40130
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationConditionalFilterInput>>>;
|
|
40131
|
+
};
|
|
40132
|
+
export declare type GraphStoreJcsIssueAssociatedSupportEscalationSortInput = {
|
|
40133
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40134
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
40135
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40136
|
+
relationship_SupportEscalationLastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
40137
|
+
relationship_creatorAri?: InputMaybe<GraphStoreSortInput>;
|
|
40138
|
+
relationship_linkType?: InputMaybe<GraphStoreSortInput>;
|
|
40139
|
+
relationship_status?: InputMaybe<GraphStoreSortInput>;
|
|
40140
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40141
|
+
};
|
|
39255
40142
|
export declare type GraphStoreJiraEpicContributesToAtlasGoalSortInput = {
|
|
39256
40143
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39257
40144
|
};
|
|
@@ -39352,15 +40239,24 @@ export declare type GraphStoreLongFilterInput = {
|
|
|
39352
40239
|
lessThan?: InputMaybe<Scalars['Long']['input']>;
|
|
39353
40240
|
lessThanOrEqual?: InputMaybe<Scalars['Long']['input']>;
|
|
39354
40241
|
};
|
|
40242
|
+
export declare type GraphStoreLoomVideoSharedWithUserSortInput = {
|
|
40243
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40244
|
+
};
|
|
39355
40245
|
export declare type GraphStoreMediaAttachedToContentSortInput = {
|
|
39356
40246
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39357
40247
|
};
|
|
40248
|
+
export declare type GraphStoreMeetingHasMeetingNotesPageSortInput = {
|
|
40249
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40250
|
+
};
|
|
39358
40251
|
export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInput = {
|
|
39359
40252
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
39360
40253
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
39361
40254
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39362
40255
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
39363
40256
|
};
|
|
40257
|
+
export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput = {
|
|
40258
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40259
|
+
};
|
|
39364
40260
|
export declare type GraphStoreMutation = {
|
|
39365
40261
|
__typename?: 'GraphStoreMutation';
|
|
39366
40262
|
createComponentImpactedByIncident?: Maybe<GraphStoreCreateComponentImpactedByIncidentPayload>;
|
|
@@ -39368,6 +40264,7 @@ export declare type GraphStoreMutation = {
|
|
|
39368
40264
|
createIncidentHasActionItem?: Maybe<GraphStoreCreateIncidentHasActionItemPayload>;
|
|
39369
40265
|
createIncidentLinkedJswIssue?: Maybe<GraphStoreCreateIncidentLinkedJswIssuePayload>;
|
|
39370
40266
|
createIssueToWhiteboard?: Maybe<GraphStoreCreateIssueToWhiteboardPayload>;
|
|
40267
|
+
createJcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationPayload>;
|
|
39371
40268
|
createJswProjectAssociatedComponent?: Maybe<GraphStoreCreateJswProjectAssociatedComponentPayload>;
|
|
39372
40269
|
createMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
39373
40270
|
createProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreCreateProjectAssociatedOpsgenieTeamPayload>;
|
|
@@ -39392,6 +40289,7 @@ export declare type GraphStoreMutation = {
|
|
|
39392
40289
|
deleteIncidentHasActionItem?: Maybe<GraphStoreDeleteIncidentHasActionItemPayload>;
|
|
39393
40290
|
deleteIncidentLinkedJswIssue?: Maybe<GraphStoreDeleteIncidentLinkedJswIssuePayload>;
|
|
39394
40291
|
deleteIssueToWhiteboard?: Maybe<GraphStoreDeleteIssueToWhiteboardPayload>;
|
|
40292
|
+
deleteJcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreDeleteJcsIssueAssociatedSupportEscalationPayload>;
|
|
39395
40293
|
deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
|
|
39396
40294
|
deleteMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
39397
40295
|
deleteProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload>;
|
|
@@ -39427,6 +40325,9 @@ export declare type GraphStoreMutationCreateIncidentLinkedJswIssueArgs = {
|
|
|
39427
40325
|
export declare type GraphStoreMutationCreateIssueToWhiteboardArgs = {
|
|
39428
40326
|
input?: InputMaybe<GraphStoreCreateIssueToWhiteboardInput>;
|
|
39429
40327
|
};
|
|
40328
|
+
export declare type GraphStoreMutationCreateJcsIssueAssociatedSupportEscalationArgs = {
|
|
40329
|
+
input?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationInput>;
|
|
40330
|
+
};
|
|
39430
40331
|
export declare type GraphStoreMutationCreateJswProjectAssociatedComponentArgs = {
|
|
39431
40332
|
input?: InputMaybe<GraphStoreCreateJswProjectAssociatedComponentInput>;
|
|
39432
40333
|
};
|
|
@@ -39499,6 +40400,9 @@ export declare type GraphStoreMutationDeleteIncidentLinkedJswIssueArgs = {
|
|
|
39499
40400
|
export declare type GraphStoreMutationDeleteIssueToWhiteboardArgs = {
|
|
39500
40401
|
input?: InputMaybe<GraphStoreDeleteIssueToWhiteboardInput>;
|
|
39501
40402
|
};
|
|
40403
|
+
export declare type GraphStoreMutationDeleteJcsIssueAssociatedSupportEscalationArgs = {
|
|
40404
|
+
input?: InputMaybe<GraphStoreDeleteJcsIssueAssociatedSupportEscalationInput>;
|
|
40405
|
+
};
|
|
39502
40406
|
export declare type GraphStoreMutationDeleteJswProjectAssociatedComponentArgs = {
|
|
39503
40407
|
input?: InputMaybe<GraphStoreDeleteJswProjectAssociatedComponentInput>;
|
|
39504
40408
|
};
|
|
@@ -40012,9 +40916,15 @@ export declare type GraphStoreProjectLinkedToCompassComponentSortInput = {
|
|
|
40012
40916
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40013
40917
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40014
40918
|
};
|
|
40919
|
+
export declare type GraphStorePullRequestLinksToServiceSortInput = {
|
|
40920
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40921
|
+
};
|
|
40015
40922
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput = {
|
|
40016
40923
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40017
40924
|
};
|
|
40925
|
+
export declare type GraphStoreServiceAssociatedBranchSortInput = {
|
|
40926
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40927
|
+
};
|
|
40018
40928
|
export declare type GraphStoreServiceAssociatedDeploymentSortInput = {
|
|
40019
40929
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40020
40930
|
};
|
|
@@ -40205,6 +41115,38 @@ export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseEdge = {
|
|
|
40205
41115
|
};
|
|
40206
41116
|
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseUnion = TownsquareGoal;
|
|
40207
41117
|
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalUnion = TownsquareGoal;
|
|
41118
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateConnection = HasPageInfo & HasTotal & {
|
|
41119
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateConnection';
|
|
41120
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateEdge>>>;
|
|
41121
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
41122
|
+
pageInfo: PageInfo;
|
|
41123
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
41124
|
+
};
|
|
41125
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateEdge = {
|
|
41126
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateEdge';
|
|
41127
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41128
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41129
|
+
id: Scalars['ID']['output'];
|
|
41130
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41131
|
+
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateUnion>;
|
|
41132
|
+
};
|
|
41133
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection = HasPageInfo & HasTotal & {
|
|
41134
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection';
|
|
41135
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge>>>;
|
|
41136
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
41137
|
+
pageInfo: PageInfo;
|
|
41138
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
41139
|
+
};
|
|
41140
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge = {
|
|
41141
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge';
|
|
41142
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41143
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41144
|
+
id: Scalars['ID']['output'];
|
|
41145
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41146
|
+
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseUnion>;
|
|
41147
|
+
};
|
|
41148
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseUnion = TownsquareGoal;
|
|
41149
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateUnion = TownsquareGoalUpdate;
|
|
40208
41150
|
export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection = HasPageInfo & {
|
|
40209
41151
|
__typename?: 'GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection';
|
|
40210
41152
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalEdge>>>;
|
|
@@ -40345,6 +41287,38 @@ export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseEdge = {
|
|
|
40345
41287
|
};
|
|
40346
41288
|
export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseUnion = TownsquareProject;
|
|
40347
41289
|
export declare type GraphStoreSimplifiedAtlasProjectHasOwnerUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41290
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateConnection = HasPageInfo & HasTotal & {
|
|
41291
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateConnection';
|
|
41292
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateEdge>>>;
|
|
41293
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
41294
|
+
pageInfo: PageInfo;
|
|
41295
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
41296
|
+
};
|
|
41297
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateEdge = {
|
|
41298
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateEdge';
|
|
41299
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41300
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41301
|
+
id: Scalars['ID']['output'];
|
|
41302
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41303
|
+
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateUnion>;
|
|
41304
|
+
};
|
|
41305
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection = HasPageInfo & HasTotal & {
|
|
41306
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection';
|
|
41307
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge>>>;
|
|
41308
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
41309
|
+
pageInfo: PageInfo;
|
|
41310
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
41311
|
+
};
|
|
41312
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge = {
|
|
41313
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge';
|
|
41314
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41315
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41316
|
+
id: Scalars['ID']['output'];
|
|
41317
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41318
|
+
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseUnion>;
|
|
41319
|
+
};
|
|
41320
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseUnion = TownsquareProject;
|
|
41321
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateUnion = TownsquareProjectUpdate;
|
|
40348
41322
|
export declare type GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection = HasPageInfo & {
|
|
40349
41323
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection';
|
|
40350
41324
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectEdge>>>;
|
|
@@ -40401,6 +41375,62 @@ export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEd
|
|
|
40401
41375
|
};
|
|
40402
41376
|
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseUnion = TownsquareProject;
|
|
40403
41377
|
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicUnion = JiraIssue;
|
|
41378
|
+
export declare type GraphStoreSimplifiedBoardBelongsToProjectConnection = HasPageInfo & {
|
|
41379
|
+
__typename?: 'GraphStoreSimplifiedBoardBelongsToProjectConnection';
|
|
41380
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBoardBelongsToProjectEdge>>>;
|
|
41381
|
+
pageInfo: PageInfo;
|
|
41382
|
+
};
|
|
41383
|
+
export declare type GraphStoreSimplifiedBoardBelongsToProjectEdge = {
|
|
41384
|
+
__typename?: 'GraphStoreSimplifiedBoardBelongsToProjectEdge';
|
|
41385
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41386
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41387
|
+
id: Scalars['ID']['output'];
|
|
41388
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41389
|
+
node?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectUnion>;
|
|
41390
|
+
};
|
|
41391
|
+
export declare type GraphStoreSimplifiedBoardBelongsToProjectInverseConnection = HasPageInfo & {
|
|
41392
|
+
__typename?: 'GraphStoreSimplifiedBoardBelongsToProjectInverseConnection';
|
|
41393
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseEdge>>>;
|
|
41394
|
+
pageInfo: PageInfo;
|
|
41395
|
+
};
|
|
41396
|
+
export declare type GraphStoreSimplifiedBoardBelongsToProjectInverseEdge = {
|
|
41397
|
+
__typename?: 'GraphStoreSimplifiedBoardBelongsToProjectInverseEdge';
|
|
41398
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41399
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41400
|
+
id: Scalars['ID']['output'];
|
|
41401
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41402
|
+
node?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseUnion>;
|
|
41403
|
+
};
|
|
41404
|
+
export declare type GraphStoreSimplifiedBoardBelongsToProjectInverseUnion = JiraBoard;
|
|
41405
|
+
export declare type GraphStoreSimplifiedBoardBelongsToProjectUnion = JiraProject;
|
|
41406
|
+
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentConnection = HasPageInfo & {
|
|
41407
|
+
__typename?: 'GraphStoreSimplifiedCalendarHasLinkedDocumentConnection';
|
|
41408
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentEdge>>>;
|
|
41409
|
+
pageInfo: PageInfo;
|
|
41410
|
+
};
|
|
41411
|
+
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentEdge = {
|
|
41412
|
+
__typename?: 'GraphStoreSimplifiedCalendarHasLinkedDocumentEdge';
|
|
41413
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41414
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41415
|
+
id: Scalars['ID']['output'];
|
|
41416
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41417
|
+
node?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentUnion>;
|
|
41418
|
+
};
|
|
41419
|
+
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentInverseConnection = HasPageInfo & {
|
|
41420
|
+
__typename?: 'GraphStoreSimplifiedCalendarHasLinkedDocumentInverseConnection';
|
|
41421
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentInverseEdge>>>;
|
|
41422
|
+
pageInfo: PageInfo;
|
|
41423
|
+
};
|
|
41424
|
+
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentInverseEdge = {
|
|
41425
|
+
__typename?: 'GraphStoreSimplifiedCalendarHasLinkedDocumentInverseEdge';
|
|
41426
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41427
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41428
|
+
id: Scalars['ID']['output'];
|
|
41429
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41430
|
+
node?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentInverseUnion>;
|
|
41431
|
+
};
|
|
41432
|
+
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentInverseUnion = ExternalCalendarEvent;
|
|
41433
|
+
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
40404
41434
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentConnection = HasPageInfo & {
|
|
40405
41435
|
__typename?: 'GraphStoreSimplifiedComponentAssociatedDocumentConnection';
|
|
40406
41436
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentAssociatedDocumentEdge>>>;
|
|
@@ -40503,6 +41533,34 @@ export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseEdge = {
|
|
|
40503
41533
|
};
|
|
40504
41534
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion = CompassComponent | DevOpsOperationsComponentDetails | DevOpsService;
|
|
40505
41535
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueUnion = JiraIssue;
|
|
41536
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentConnection = HasPageInfo & {
|
|
41537
|
+
__typename?: 'GraphStoreSimplifiedConfluenceBlogpostHasCommentConnection';
|
|
41538
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentEdge>>>;
|
|
41539
|
+
pageInfo: PageInfo;
|
|
41540
|
+
};
|
|
41541
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentEdge = {
|
|
41542
|
+
__typename?: 'GraphStoreSimplifiedConfluenceBlogpostHasCommentEdge';
|
|
41543
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41544
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41545
|
+
id: Scalars['ID']['output'];
|
|
41546
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41547
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentUnion>;
|
|
41548
|
+
};
|
|
41549
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseConnection = HasPageInfo & {
|
|
41550
|
+
__typename?: 'GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseConnection';
|
|
41551
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseEdge>>>;
|
|
41552
|
+
pageInfo: PageInfo;
|
|
41553
|
+
};
|
|
41554
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseEdge = {
|
|
41555
|
+
__typename?: 'GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseEdge';
|
|
41556
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41557
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41558
|
+
id: Scalars['ID']['output'];
|
|
41559
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41560
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseUnion>;
|
|
41561
|
+
};
|
|
41562
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseUnion = ConfluenceBlogPost;
|
|
41563
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
40506
41564
|
export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserConnection = HasPageInfo & {
|
|
40507
41565
|
__typename?: 'GraphStoreSimplifiedConfluenceBlogpostSharedWithUserConnection';
|
|
40508
41566
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserEdge>>>;
|
|
@@ -40531,6 +41589,34 @@ export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseE
|
|
|
40531
41589
|
};
|
|
40532
41590
|
export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseUnion = ConfluenceBlogPost;
|
|
40533
41591
|
export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41592
|
+
export declare type GraphStoreSimplifiedConfluencePageHasCommentConnection = HasPageInfo & {
|
|
41593
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasCommentConnection';
|
|
41594
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasCommentEdge>>>;
|
|
41595
|
+
pageInfo: PageInfo;
|
|
41596
|
+
};
|
|
41597
|
+
export declare type GraphStoreSimplifiedConfluencePageHasCommentEdge = {
|
|
41598
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasCommentEdge';
|
|
41599
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41600
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41601
|
+
id: Scalars['ID']['output'];
|
|
41602
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41603
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentUnion>;
|
|
41604
|
+
};
|
|
41605
|
+
export declare type GraphStoreSimplifiedConfluencePageHasCommentInverseConnection = HasPageInfo & {
|
|
41606
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasCommentInverseConnection';
|
|
41607
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasCommentInverseEdge>>>;
|
|
41608
|
+
pageInfo: PageInfo;
|
|
41609
|
+
};
|
|
41610
|
+
export declare type GraphStoreSimplifiedConfluencePageHasCommentInverseEdge = {
|
|
41611
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasCommentInverseEdge';
|
|
41612
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41613
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41614
|
+
id: Scalars['ID']['output'];
|
|
41615
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41616
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentInverseUnion>;
|
|
41617
|
+
};
|
|
41618
|
+
export declare type GraphStoreSimplifiedConfluencePageHasCommentInverseUnion = ConfluencePage;
|
|
41619
|
+
export declare type GraphStoreSimplifiedConfluencePageHasCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
40534
41620
|
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection = HasPageInfo & {
|
|
40535
41621
|
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection';
|
|
40536
41622
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentEdge>>>;
|
|
@@ -40951,6 +42037,34 @@ export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaInverseEdge = {
|
|
|
40951
42037
|
};
|
|
40952
42038
|
export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaInverseUnion = MercuryFocusArea;
|
|
40953
42039
|
export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaUnion = MercuryFocusArea;
|
|
42040
|
+
export declare type GraphStoreSimplifiedFocusAreaHasPageConnection = HasPageInfo & {
|
|
42041
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasPageConnection';
|
|
42042
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasPageEdge>>>;
|
|
42043
|
+
pageInfo: PageInfo;
|
|
42044
|
+
};
|
|
42045
|
+
export declare type GraphStoreSimplifiedFocusAreaHasPageEdge = {
|
|
42046
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasPageEdge';
|
|
42047
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42048
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42049
|
+
id: Scalars['ID']['output'];
|
|
42050
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42051
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaHasPageUnion>;
|
|
42052
|
+
};
|
|
42053
|
+
export declare type GraphStoreSimplifiedFocusAreaHasPageInverseConnection = HasPageInfo & {
|
|
42054
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasPageInverseConnection';
|
|
42055
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasPageInverseEdge>>>;
|
|
42056
|
+
pageInfo: PageInfo;
|
|
42057
|
+
};
|
|
42058
|
+
export declare type GraphStoreSimplifiedFocusAreaHasPageInverseEdge = {
|
|
42059
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasPageInverseEdge';
|
|
42060
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42061
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42062
|
+
id: Scalars['ID']['output'];
|
|
42063
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42064
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaHasPageInverseUnion>;
|
|
42065
|
+
};
|
|
42066
|
+
export declare type GraphStoreSimplifiedFocusAreaHasPageInverseUnion = MercuryFocusArea;
|
|
42067
|
+
export declare type GraphStoreSimplifiedFocusAreaHasPageUnion = ConfluencePage;
|
|
40954
42068
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectConnection = HasPageInfo & {
|
|
40955
42069
|
__typename?: 'GraphStoreSimplifiedFocusAreaHasProjectConnection';
|
|
40956
42070
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasProjectEdge>>>;
|
|
@@ -40993,6 +42107,20 @@ export declare type GraphStoreSimplifiedGraphDocument3pDocumentInverseEdge = {
|
|
|
40993
42107
|
node?: Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseUnion>;
|
|
40994
42108
|
};
|
|
40995
42109
|
export declare type GraphStoreSimplifiedGraphDocument3pDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
42110
|
+
export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseConnection = HasPageInfo & {
|
|
42111
|
+
__typename?: 'GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseConnection';
|
|
42112
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseEdge>>>;
|
|
42113
|
+
pageInfo: PageInfo;
|
|
42114
|
+
};
|
|
42115
|
+
export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseEdge = {
|
|
42116
|
+
__typename?: 'GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseEdge';
|
|
42117
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42118
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42119
|
+
id: Scalars['ID']['output'];
|
|
42120
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42121
|
+
node?: Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseUnion>;
|
|
42122
|
+
};
|
|
42123
|
+
export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseUnion = DevOpsDocument | ExternalDocument | ExternalRemoteLink;
|
|
40996
42124
|
export declare type GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection = HasPageInfo & {
|
|
40997
42125
|
__typename?: 'GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection';
|
|
40998
42126
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceEdge>>>;
|
|
@@ -41649,6 +42777,38 @@ export declare type GraphStoreSimplifiedIssueToWhiteboardInverseEdge = {
|
|
|
41649
42777
|
};
|
|
41650
42778
|
export declare type GraphStoreSimplifiedIssueToWhiteboardInverseUnion = JiraIssue;
|
|
41651
42779
|
export declare type GraphStoreSimplifiedIssueToWhiteboardUnion = ConfluenceWhiteboard;
|
|
42780
|
+
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationConnection = HasPageInfo & HasTotal & {
|
|
42781
|
+
__typename?: 'GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationConnection';
|
|
42782
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationEdge>>>;
|
|
42783
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42784
|
+
pageInfo: PageInfo;
|
|
42785
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42786
|
+
};
|
|
42787
|
+
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationEdge = {
|
|
42788
|
+
__typename?: 'GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationEdge';
|
|
42789
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42790
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42791
|
+
id: Scalars['ID']['output'];
|
|
42792
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42793
|
+
node?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationUnion>;
|
|
42794
|
+
};
|
|
42795
|
+
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseConnection = HasPageInfo & HasTotal & {
|
|
42796
|
+
__typename?: 'GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseConnection';
|
|
42797
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseEdge>>>;
|
|
42798
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42799
|
+
pageInfo: PageInfo;
|
|
42800
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42801
|
+
};
|
|
42802
|
+
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseEdge = {
|
|
42803
|
+
__typename?: 'GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseEdge';
|
|
42804
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42805
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42806
|
+
id: Scalars['ID']['output'];
|
|
42807
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42808
|
+
node?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseUnion>;
|
|
42809
|
+
};
|
|
42810
|
+
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseUnion = JiraIssue;
|
|
42811
|
+
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationUnion = JiraIssue | JiraProject;
|
|
41652
42812
|
export declare type GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection = HasPageInfo & {
|
|
41653
42813
|
__typename?: 'GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection';
|
|
41654
42814
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalEdge>>>;
|
|
@@ -41911,6 +43071,34 @@ export declare type GraphStoreSimplifiedLinkedProjectHasVersionInverseEdge = {
|
|
|
41911
43071
|
};
|
|
41912
43072
|
export declare type GraphStoreSimplifiedLinkedProjectHasVersionInverseUnion = JiraProject;
|
|
41913
43073
|
export declare type GraphStoreSimplifiedLinkedProjectHasVersionUnion = JiraVersion;
|
|
43074
|
+
export declare type GraphStoreSimplifiedLoomVideoSharedWithUserConnection = HasPageInfo & {
|
|
43075
|
+
__typename?: 'GraphStoreSimplifiedLoomVideoSharedWithUserConnection';
|
|
43076
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserEdge>>>;
|
|
43077
|
+
pageInfo: PageInfo;
|
|
43078
|
+
};
|
|
43079
|
+
export declare type GraphStoreSimplifiedLoomVideoSharedWithUserEdge = {
|
|
43080
|
+
__typename?: 'GraphStoreSimplifiedLoomVideoSharedWithUserEdge';
|
|
43081
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43082
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43083
|
+
id: Scalars['ID']['output'];
|
|
43084
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43085
|
+
node?: Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserUnion>;
|
|
43086
|
+
};
|
|
43087
|
+
export declare type GraphStoreSimplifiedLoomVideoSharedWithUserInverseConnection = HasPageInfo & {
|
|
43088
|
+
__typename?: 'GraphStoreSimplifiedLoomVideoSharedWithUserInverseConnection';
|
|
43089
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserInverseEdge>>>;
|
|
43090
|
+
pageInfo: PageInfo;
|
|
43091
|
+
};
|
|
43092
|
+
export declare type GraphStoreSimplifiedLoomVideoSharedWithUserInverseEdge = {
|
|
43093
|
+
__typename?: 'GraphStoreSimplifiedLoomVideoSharedWithUserInverseEdge';
|
|
43094
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43095
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43096
|
+
id: Scalars['ID']['output'];
|
|
43097
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43098
|
+
node?: Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserInverseUnion>;
|
|
43099
|
+
};
|
|
43100
|
+
export declare type GraphStoreSimplifiedLoomVideoSharedWithUserInverseUnion = LoomVideo;
|
|
43101
|
+
export declare type GraphStoreSimplifiedLoomVideoSharedWithUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41914
43102
|
export declare type GraphStoreSimplifiedMediaAttachedToContentConnection = HasPageInfo & {
|
|
41915
43103
|
__typename?: 'GraphStoreSimplifiedMediaAttachedToContentConnection';
|
|
41916
43104
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMediaAttachedToContentEdge>>>;
|
|
@@ -41925,6 +43113,20 @@ export declare type GraphStoreSimplifiedMediaAttachedToContentEdge = {
|
|
|
41925
43113
|
node?: Maybe<GraphStoreSimplifiedMediaAttachedToContentUnion>;
|
|
41926
43114
|
};
|
|
41927
43115
|
export declare type GraphStoreSimplifiedMediaAttachedToContentUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
43116
|
+
export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageConnection = HasPageInfo & {
|
|
43117
|
+
__typename?: 'GraphStoreSimplifiedMeetingHasMeetingNotesPageConnection';
|
|
43118
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageEdge>>>;
|
|
43119
|
+
pageInfo: PageInfo;
|
|
43120
|
+
};
|
|
43121
|
+
export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageEdge = {
|
|
43122
|
+
__typename?: 'GraphStoreSimplifiedMeetingHasMeetingNotesPageEdge';
|
|
43123
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43124
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43125
|
+
id: Scalars['ID']['output'];
|
|
43126
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43127
|
+
node?: Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageUnion>;
|
|
43128
|
+
};
|
|
43129
|
+
export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageUnion = ConfluencePage;
|
|
41928
43130
|
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection = HasPageInfo & HasTotal & {
|
|
41929
43131
|
__typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection';
|
|
41930
43132
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderEdge>>>;
|
|
@@ -41957,6 +43159,20 @@ export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFold
|
|
|
41957
43159
|
};
|
|
41958
43160
|
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41959
43161
|
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderUnion = ConfluenceFolder;
|
|
43162
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection = HasPageInfo & {
|
|
43163
|
+
__typename?: 'GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection';
|
|
43164
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageEdge>>>;
|
|
43165
|
+
pageInfo: PageInfo;
|
|
43166
|
+
};
|
|
43167
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageEdge = {
|
|
43168
|
+
__typename?: 'GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageEdge';
|
|
43169
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43170
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43171
|
+
id: Scalars['ID']['output'];
|
|
43172
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43173
|
+
node?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageUnion>;
|
|
43174
|
+
};
|
|
43175
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageUnion = ConfluencePage;
|
|
41960
43176
|
export declare type GraphStoreSimplifiedOnPremProjectHasIssueConnection = HasPageInfo & {
|
|
41961
43177
|
__typename?: 'GraphStoreSimplifiedOnPremProjectHasIssueConnection';
|
|
41962
43178
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedOnPremProjectHasIssueEdge>>>;
|
|
@@ -42929,6 +44145,34 @@ export declare type GraphStoreSimplifiedProjectLinkedToCompassComponentInverseEd
|
|
|
42929
44145
|
};
|
|
42930
44146
|
export declare type GraphStoreSimplifiedProjectLinkedToCompassComponentInverseUnion = JiraProject;
|
|
42931
44147
|
export declare type GraphStoreSimplifiedProjectLinkedToCompassComponentUnion = CompassComponent;
|
|
44148
|
+
export declare type GraphStoreSimplifiedPullRequestLinksToServiceConnection = HasPageInfo & {
|
|
44149
|
+
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceConnection';
|
|
44150
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPullRequestLinksToServiceEdge>>>;
|
|
44151
|
+
pageInfo: PageInfo;
|
|
44152
|
+
};
|
|
44153
|
+
export declare type GraphStoreSimplifiedPullRequestLinksToServiceEdge = {
|
|
44154
|
+
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceEdge';
|
|
44155
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44156
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44157
|
+
id: Scalars['ID']['output'];
|
|
44158
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44159
|
+
node?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceUnion>;
|
|
44160
|
+
};
|
|
44161
|
+
export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection = HasPageInfo & {
|
|
44162
|
+
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection';
|
|
44163
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseEdge>>>;
|
|
44164
|
+
pageInfo: PageInfo;
|
|
44165
|
+
};
|
|
44166
|
+
export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseEdge = {
|
|
44167
|
+
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceInverseEdge';
|
|
44168
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44169
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44170
|
+
id: Scalars['ID']['output'];
|
|
44171
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44172
|
+
node?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseUnion>;
|
|
44173
|
+
};
|
|
44174
|
+
export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
44175
|
+
export declare type GraphStoreSimplifiedPullRequestLinksToServiceUnion = DevOpsService;
|
|
42932
44176
|
export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection = HasPageInfo & {
|
|
42933
44177
|
__typename?: 'GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection';
|
|
42934
44178
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityEdge>>>;
|
|
@@ -42943,6 +44187,34 @@ export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabili
|
|
|
42943
44187
|
node?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityUnion>;
|
|
42944
44188
|
};
|
|
42945
44189
|
export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityUnion = DevOpsSecurityVulnerabilityDetails | ExternalVulnerability;
|
|
44190
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBranchConnection = HasPageInfo & {
|
|
44191
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedBranchConnection';
|
|
44192
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedBranchEdge>>>;
|
|
44193
|
+
pageInfo: PageInfo;
|
|
44194
|
+
};
|
|
44195
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBranchEdge = {
|
|
44196
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedBranchEdge';
|
|
44197
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44198
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44199
|
+
id: Scalars['ID']['output'];
|
|
44200
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44201
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchUnion>;
|
|
44202
|
+
};
|
|
44203
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBranchInverseConnection = HasPageInfo & {
|
|
44204
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedBranchInverseConnection';
|
|
44205
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedBranchInverseEdge>>>;
|
|
44206
|
+
pageInfo: PageInfo;
|
|
44207
|
+
};
|
|
44208
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBranchInverseEdge = {
|
|
44209
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedBranchInverseEdge';
|
|
44210
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44211
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44212
|
+
id: Scalars['ID']['output'];
|
|
44213
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44214
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchInverseUnion>;
|
|
44215
|
+
};
|
|
44216
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBranchInverseUnion = DevOpsService;
|
|
44217
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBranchUnion = ExternalBranch;
|
|
42946
44218
|
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentConnection = HasPageInfo & {
|
|
42947
44219
|
__typename?: 'GraphStoreSimplifiedServiceAssociatedDeploymentConnection';
|
|
42948
44220
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentEdge>>>;
|
|
@@ -43561,6 +44833,34 @@ export declare type GraphStoreSimplifiedUserAssignedIncidentInverseEdge = {
|
|
|
43561
44833
|
};
|
|
43562
44834
|
export declare type GraphStoreSimplifiedUserAssignedIncidentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43563
44835
|
export declare type GraphStoreSimplifiedUserAssignedIncidentUnion = JiraIssue;
|
|
44836
|
+
export declare type GraphStoreSimplifiedUserAssignedIssueConnection = HasPageInfo & {
|
|
44837
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedIssueConnection';
|
|
44838
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedIssueEdge>>>;
|
|
44839
|
+
pageInfo: PageInfo;
|
|
44840
|
+
};
|
|
44841
|
+
export declare type GraphStoreSimplifiedUserAssignedIssueEdge = {
|
|
44842
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedIssueEdge';
|
|
44843
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44844
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44845
|
+
id: Scalars['ID']['output'];
|
|
44846
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44847
|
+
node?: Maybe<GraphStoreSimplifiedUserAssignedIssueUnion>;
|
|
44848
|
+
};
|
|
44849
|
+
export declare type GraphStoreSimplifiedUserAssignedIssueInverseConnection = HasPageInfo & {
|
|
44850
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedIssueInverseConnection';
|
|
44851
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedIssueInverseEdge>>>;
|
|
44852
|
+
pageInfo: PageInfo;
|
|
44853
|
+
};
|
|
44854
|
+
export declare type GraphStoreSimplifiedUserAssignedIssueInverseEdge = {
|
|
44855
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedIssueInverseEdge';
|
|
44856
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44857
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44858
|
+
id: Scalars['ID']['output'];
|
|
44859
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44860
|
+
node?: Maybe<GraphStoreSimplifiedUserAssignedIssueInverseUnion>;
|
|
44861
|
+
};
|
|
44862
|
+
export declare type GraphStoreSimplifiedUserAssignedIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
44863
|
+
export declare type GraphStoreSimplifiedUserAssignedIssueUnion = JiraIssue;
|
|
43564
44864
|
export declare type GraphStoreSimplifiedUserAssignedPirConnection = HasPageInfo & {
|
|
43565
44865
|
__typename?: 'GraphStoreSimplifiedUserAssignedPirConnection';
|
|
43566
44866
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedPirEdge>>>;
|
|
@@ -44153,6 +45453,34 @@ export declare type GraphStoreSimplifiedUserCreatedDocumentInverseEdge = {
|
|
|
44153
45453
|
};
|
|
44154
45454
|
export declare type GraphStoreSimplifiedUserCreatedDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
44155
45455
|
export declare type GraphStoreSimplifiedUserCreatedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
45456
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueCommentConnection = HasPageInfo & {
|
|
45457
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueCommentConnection';
|
|
45458
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueCommentEdge>>>;
|
|
45459
|
+
pageInfo: PageInfo;
|
|
45460
|
+
};
|
|
45461
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueCommentEdge = {
|
|
45462
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueCommentEdge';
|
|
45463
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45464
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45465
|
+
id: Scalars['ID']['output'];
|
|
45466
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45467
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentUnion>;
|
|
45468
|
+
};
|
|
45469
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueCommentInverseConnection = HasPageInfo & {
|
|
45470
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueCommentInverseConnection';
|
|
45471
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueCommentInverseEdge>>>;
|
|
45472
|
+
pageInfo: PageInfo;
|
|
45473
|
+
};
|
|
45474
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueCommentInverseEdge = {
|
|
45475
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueCommentInverseEdge';
|
|
45476
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45477
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45478
|
+
id: Scalars['ID']['output'];
|
|
45479
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45480
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentInverseUnion>;
|
|
45481
|
+
};
|
|
45482
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45483
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
44156
45484
|
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogConnection = HasPageInfo & {
|
|
44157
45485
|
__typename?: 'GraphStoreSimplifiedUserCreatedIssueWorklogConnection';
|
|
44158
45486
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogEdge>>>;
|
|
@@ -44237,6 +45565,34 @@ export declare type GraphStoreSimplifiedUserCreatedMessageInverseEdge = {
|
|
|
44237
45565
|
};
|
|
44238
45566
|
export declare type GraphStoreSimplifiedUserCreatedMessageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
44239
45567
|
export declare type GraphStoreSimplifiedUserCreatedMessageUnion = ExternalMessage;
|
|
45568
|
+
export declare type GraphStoreSimplifiedUserCreatedReleaseConnection = HasPageInfo & {
|
|
45569
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedReleaseConnection';
|
|
45570
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedReleaseEdge>>>;
|
|
45571
|
+
pageInfo: PageInfo;
|
|
45572
|
+
};
|
|
45573
|
+
export declare type GraphStoreSimplifiedUserCreatedReleaseEdge = {
|
|
45574
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedReleaseEdge';
|
|
45575
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45576
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45577
|
+
id: Scalars['ID']['output'];
|
|
45578
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45579
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedReleaseUnion>;
|
|
45580
|
+
};
|
|
45581
|
+
export declare type GraphStoreSimplifiedUserCreatedReleaseInverseConnection = HasPageInfo & {
|
|
45582
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedReleaseInverseConnection';
|
|
45583
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedReleaseInverseEdge>>>;
|
|
45584
|
+
pageInfo: PageInfo;
|
|
45585
|
+
};
|
|
45586
|
+
export declare type GraphStoreSimplifiedUserCreatedReleaseInverseEdge = {
|
|
45587
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedReleaseInverseEdge';
|
|
45588
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45589
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45590
|
+
id: Scalars['ID']['output'];
|
|
45591
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45592
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedReleaseInverseUnion>;
|
|
45593
|
+
};
|
|
45594
|
+
export declare type GraphStoreSimplifiedUserCreatedReleaseInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45595
|
+
export declare type GraphStoreSimplifiedUserCreatedReleaseUnion = JiraVersion;
|
|
44240
45596
|
export declare type GraphStoreSimplifiedUserCreatedRemoteLinkConnection = HasPageInfo & {
|
|
44241
45597
|
__typename?: 'GraphStoreSimplifiedUserCreatedRemoteLinkConnection';
|
|
44242
45598
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkEdge>>>;
|
|
@@ -44893,6 +46249,34 @@ export declare type GraphStoreSimplifiedUserOwnsComponentInverseEdge = {
|
|
|
44893
46249
|
};
|
|
44894
46250
|
export declare type GraphStoreSimplifiedUserOwnsComponentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
44895
46251
|
export declare type GraphStoreSimplifiedUserOwnsComponentUnion = CompassComponent;
|
|
46252
|
+
export declare type GraphStoreSimplifiedUserOwnsFocusAreaConnection = HasPageInfo & {
|
|
46253
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsFocusAreaConnection';
|
|
46254
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsFocusAreaEdge>>>;
|
|
46255
|
+
pageInfo: PageInfo;
|
|
46256
|
+
};
|
|
46257
|
+
export declare type GraphStoreSimplifiedUserOwnsFocusAreaEdge = {
|
|
46258
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsFocusAreaEdge';
|
|
46259
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46260
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46261
|
+
id: Scalars['ID']['output'];
|
|
46262
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46263
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaUnion>;
|
|
46264
|
+
};
|
|
46265
|
+
export declare type GraphStoreSimplifiedUserOwnsFocusAreaInverseConnection = HasPageInfo & {
|
|
46266
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsFocusAreaInverseConnection';
|
|
46267
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsFocusAreaInverseEdge>>>;
|
|
46268
|
+
pageInfo: PageInfo;
|
|
46269
|
+
};
|
|
46270
|
+
export declare type GraphStoreSimplifiedUserOwnsFocusAreaInverseEdge = {
|
|
46271
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsFocusAreaInverseEdge';
|
|
46272
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46273
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46274
|
+
id: Scalars['ID']['output'];
|
|
46275
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46276
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaInverseUnion>;
|
|
46277
|
+
};
|
|
46278
|
+
export declare type GraphStoreSimplifiedUserOwnsFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46279
|
+
export declare type GraphStoreSimplifiedUserOwnsFocusAreaUnion = MercuryFocusArea;
|
|
44896
46280
|
export declare type GraphStoreSimplifiedUserReportedIncidentConnection = HasPageInfo & {
|
|
44897
46281
|
__typename?: 'GraphStoreSimplifiedUserReportedIncidentConnection';
|
|
44898
46282
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReportedIncidentEdge>>>;
|
|
@@ -45033,6 +46417,19 @@ export declare type GraphStoreSimplifiedUserTaggedInConfluencePageInverseEdge =
|
|
|
45033
46417
|
};
|
|
45034
46418
|
export declare type GraphStoreSimplifiedUserTaggedInConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45035
46419
|
export declare type GraphStoreSimplifiedUserTaggedInConfluencePageUnion = ConfluencePage;
|
|
46420
|
+
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentConnection = HasPageInfo & {
|
|
46421
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInIssueCommentConnection';
|
|
46422
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentEdge>>>;
|
|
46423
|
+
pageInfo: PageInfo;
|
|
46424
|
+
};
|
|
46425
|
+
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentEdge = {
|
|
46426
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInIssueCommentEdge';
|
|
46427
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46428
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46429
|
+
id: Scalars['ID']['output'];
|
|
46430
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46431
|
+
node?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentUnion>;
|
|
46432
|
+
};
|
|
45036
46433
|
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection = HasPageInfo & {
|
|
45037
46434
|
__typename?: 'GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection';
|
|
45038
46435
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseEdge>>>;
|
|
@@ -45047,6 +46444,7 @@ export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseEdge = {
|
|
|
45047
46444
|
node?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseUnion>;
|
|
45048
46445
|
};
|
|
45049
46446
|
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46447
|
+
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
45050
46448
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentConnection = HasPageInfo & {
|
|
45051
46449
|
__typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentConnection';
|
|
45052
46450
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTriggeredDeploymentEdge>>>;
|
|
@@ -45242,6 +46640,20 @@ export declare type GraphStoreSimplifiedUserUpdatedIssueInverseEdge = {
|
|
|
45242
46640
|
node?: Maybe<GraphStoreSimplifiedUserUpdatedIssueInverseUnion>;
|
|
45243
46641
|
};
|
|
45244
46642
|
export declare type GraphStoreSimplifiedUserUpdatedIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46643
|
+
export declare type GraphStoreSimplifiedUserUpdatedIssueStatusInverseConnection = HasPageInfo & {
|
|
46644
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedIssueStatusInverseConnection';
|
|
46645
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedIssueStatusInverseEdge>>>;
|
|
46646
|
+
pageInfo: PageInfo;
|
|
46647
|
+
};
|
|
46648
|
+
export declare type GraphStoreSimplifiedUserUpdatedIssueStatusInverseEdge = {
|
|
46649
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedIssueStatusInverseEdge';
|
|
46650
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46651
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46652
|
+
id: Scalars['ID']['output'];
|
|
46653
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46654
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedIssueStatusInverseUnion>;
|
|
46655
|
+
};
|
|
46656
|
+
export declare type GraphStoreSimplifiedUserUpdatedIssueStatusInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45245
46657
|
export declare type GraphStoreSimplifiedUserUpdatedIssueUnion = JiraIssue;
|
|
45246
46658
|
export declare type GraphStoreSimplifiedUserViewedAtlasGoalConnection = HasPageInfo & {
|
|
45247
46659
|
__typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalConnection';
|
|
@@ -46181,6 +47593,9 @@ export declare type GraphStoreThirdPartyToGraphRemoteLinkSortInput = {
|
|
|
46181
47593
|
export declare type GraphStoreUserAssignedIncidentSortInput = {
|
|
46182
47594
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46183
47595
|
};
|
|
47596
|
+
export declare type GraphStoreUserAssignedIssueSortInput = {
|
|
47597
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47598
|
+
};
|
|
46184
47599
|
export declare type GraphStoreUserAssignedPirSortInput = {
|
|
46185
47600
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46186
47601
|
};
|
|
@@ -46265,6 +47680,9 @@ export declare type GraphStoreUserCreatedDesignSortInput = {
|
|
|
46265
47680
|
export declare type GraphStoreUserCreatedDocumentSortInput = {
|
|
46266
47681
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46267
47682
|
};
|
|
47683
|
+
export declare type GraphStoreUserCreatedIssueCommentSortInput = {
|
|
47684
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47685
|
+
};
|
|
46268
47686
|
export declare type GraphStoreUserCreatedIssueWorklogSortInput = {
|
|
46269
47687
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46270
47688
|
};
|
|
@@ -46274,6 +47692,9 @@ export declare type GraphStoreUserCreatedLoomVideoSortInput = {
|
|
|
46274
47692
|
export declare type GraphStoreUserCreatedMessageSortInput = {
|
|
46275
47693
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46276
47694
|
};
|
|
47695
|
+
export declare type GraphStoreUserCreatedReleaseSortInput = {
|
|
47696
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47697
|
+
};
|
|
46277
47698
|
export declare type GraphStoreUserCreatedRemoteLinkSortInput = {
|
|
46278
47699
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46279
47700
|
};
|
|
@@ -46370,6 +47791,9 @@ export declare type GraphStoreUserOwnsComponentSortInput = {
|
|
|
46370
47791
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46371
47792
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
46372
47793
|
};
|
|
47794
|
+
export declare type GraphStoreUserOwnsFocusAreaSortInput = {
|
|
47795
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47796
|
+
};
|
|
46373
47797
|
export declare type GraphStoreUserReportedIncidentSortInput = {
|
|
46374
47798
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46375
47799
|
};
|
|
@@ -46409,6 +47833,9 @@ export declare type GraphStoreUserUpdatedGraphDocumentSortInput = {
|
|
|
46409
47833
|
export declare type GraphStoreUserUpdatedIssueSortInput = {
|
|
46410
47834
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46411
47835
|
};
|
|
47836
|
+
export declare type GraphStoreUserUpdatedIssueStatusSortInput = {
|
|
47837
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47838
|
+
};
|
|
46412
47839
|
export declare type GraphStoreUserViewedAtlasGoalSortInput = {
|
|
46413
47840
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46414
47841
|
};
|
|
@@ -48297,6 +49724,7 @@ export declare type HelpLayoutQueryApiLayoutArgs = {
|
|
|
48297
49724
|
};
|
|
48298
49725
|
export declare type HelpLayoutQueryApiLayoutByParentIdArgs = {
|
|
48299
49726
|
filter?: InputMaybe<HelpLayoutFilter>;
|
|
49727
|
+
helpCenterAri?: InputMaybe<Scalars['ID']['input']>;
|
|
48300
49728
|
parentAri: Scalars['ID']['input'];
|
|
48301
49729
|
};
|
|
48302
49730
|
export declare type HelpLayoutQueryApiMediaConfigArgs = {
|
|
@@ -49699,69 +51127,6 @@ export declare type IssueDevOpsTestSummary = {
|
|
|
49699
51127
|
numberSkipped?: Maybe<Scalars['Int']['output']>;
|
|
49700
51128
|
totalNumber?: Maybe<Scalars['Int']['output']>;
|
|
49701
51129
|
};
|
|
49702
|
-
export declare type JsmAssignee = {
|
|
49703
|
-
__typename?: 'JSMAssignee';
|
|
49704
|
-
id: Scalars['ID']['output'];
|
|
49705
|
-
};
|
|
49706
|
-
export declare type JsmIncident = {
|
|
49707
|
-
__typename?: 'JSMIncident';
|
|
49708
|
-
affectedServices?: Maybe<Array<Maybe<DevOpsService>>>;
|
|
49709
|
-
assignee?: Maybe<User>;
|
|
49710
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
49711
|
-
id: Scalars['ID']['output'];
|
|
49712
|
-
issueLinks?: Maybe<Array<Maybe<JsmIssueLink>>>;
|
|
49713
|
-
linkedAlerts?: Maybe<Array<Maybe<JsmLinkedAlerts>>>;
|
|
49714
|
-
majorIncident?: Maybe<JsmMajorIncident>;
|
|
49715
|
-
participants?: Maybe<Array<Maybe<User>>>;
|
|
49716
|
-
priority?: Maybe<JsmPriority>;
|
|
49717
|
-
reporter?: Maybe<User>;
|
|
49718
|
-
responders?: Maybe<Array<Maybe<JsmResponder>>>;
|
|
49719
|
-
status?: Maybe<JsmStatus>;
|
|
49720
|
-
summary?: Maybe<Scalars['String']['output']>;
|
|
49721
|
-
};
|
|
49722
|
-
export declare enum JsmIncidentLinkDirection {
|
|
49723
|
-
Inward = "INWARD",
|
|
49724
|
-
Outward = "OUTWARD"
|
|
49725
|
-
}
|
|
49726
|
-
export declare type JsmIssueLink = {
|
|
49727
|
-
__typename?: 'JSMIssueLink';
|
|
49728
|
-
direction?: Maybe<JsmIncidentLinkDirection>;
|
|
49729
|
-
issue?: Maybe<JiraIssue>;
|
|
49730
|
-
type?: Maybe<JsmIssueLinkType>;
|
|
49731
|
-
};
|
|
49732
|
-
export declare type JsmIssueLinkType = {
|
|
49733
|
-
__typename?: 'JSMIssueLinkType';
|
|
49734
|
-
id: Scalars['ID']['output'];
|
|
49735
|
-
};
|
|
49736
|
-
export declare type JsmLinkedAlerts = {
|
|
49737
|
-
__typename?: 'JSMLinkedAlerts';
|
|
49738
|
-
id: Scalars['ID']['output'];
|
|
49739
|
-
};
|
|
49740
|
-
export declare enum JsmMajorIncident {
|
|
49741
|
-
MajorIncident = "MAJOR_INCIDENT"
|
|
49742
|
-
}
|
|
49743
|
-
export declare type JsmPriority = {
|
|
49744
|
-
__typename?: 'JSMPriority';
|
|
49745
|
-
id: Scalars['ID']['output'];
|
|
49746
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
49747
|
-
};
|
|
49748
|
-
export declare type JsmReporter = {
|
|
49749
|
-
__typename?: 'JSMReporter';
|
|
49750
|
-
id: Scalars['ID']['output'];
|
|
49751
|
-
};
|
|
49752
|
-
export declare type JsmResponder = AppUser | AtlassianAccountUser | CustomerUser | OpsgenieTeam;
|
|
49753
|
-
export declare type JsmStatus = {
|
|
49754
|
-
__typename?: 'JSMStatus';
|
|
49755
|
-
id: Scalars['ID']['output'];
|
|
49756
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
49757
|
-
statusCategory?: Maybe<JsmStatusCategory>;
|
|
49758
|
-
};
|
|
49759
|
-
export declare type JsmStatusCategory = {
|
|
49760
|
-
__typename?: 'JSMStatusCategory';
|
|
49761
|
-
id: Scalars['ID']['output'];
|
|
49762
|
-
key?: Maybe<Scalars['String']['output']>;
|
|
49763
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
49764
|
-
};
|
|
49765
51130
|
export declare type JiraAdf = {
|
|
49766
51131
|
__typename?: 'JiraADF';
|
|
49767
51132
|
convertedPlainText?: Maybe<JiraAdfToConvertedPlainText>;
|
|
@@ -50835,6 +52200,18 @@ export declare enum JiraBoardLocationType {
|
|
|
50835
52200
|
User = "USER"
|
|
50836
52201
|
}
|
|
50837
52202
|
export declare type JiraBoardResult = JiraBoard | QueryError;
|
|
52203
|
+
export declare enum JiraBoardSwimlaneStrategy {
|
|
52204
|
+
AssigneeUnassignedFirst = "ASSIGNEE_UNASSIGNED_FIRST",
|
|
52205
|
+
AssigneeUnassignedLast = "ASSIGNEE_UNASSIGNED_LAST",
|
|
52206
|
+
Custom = "CUSTOM",
|
|
52207
|
+
Epic = "EPIC",
|
|
52208
|
+
IssueChildren = "ISSUE_CHILDREN",
|
|
52209
|
+
IssueParent = "ISSUE_PARENT",
|
|
52210
|
+
None = "NONE",
|
|
52211
|
+
ParentChild = "PARENT_CHILD",
|
|
52212
|
+
Project = "PROJECT",
|
|
52213
|
+
RequestType = "REQUEST_TYPE"
|
|
52214
|
+
}
|
|
50838
52215
|
export declare enum JiraBoardType {
|
|
50839
52216
|
Kanban = "KANBAN",
|
|
50840
52217
|
Scrum = "SCRUM"
|
|
@@ -51034,6 +52411,17 @@ export declare enum JiraBulkOperationType {
|
|
|
51034
52411
|
BulkUnwatch = "BULK_UNWATCH",
|
|
51035
52412
|
BulkWatch = "BULK_WATCH"
|
|
51036
52413
|
}
|
|
52414
|
+
export declare type JiraBulkSetBoardViewColumnStateInput = {
|
|
52415
|
+
collapsed: Scalars['Boolean']['input'];
|
|
52416
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
52417
|
+
viewId: Scalars['ID']['input'];
|
|
52418
|
+
};
|
|
52419
|
+
export declare type JiraBulkSetBoardViewColumnStatePayload = Payload & {
|
|
52420
|
+
__typename?: 'JiraBulkSetBoardViewColumnStatePayload';
|
|
52421
|
+
boardView?: Maybe<JiraBoardView>;
|
|
52422
|
+
errors?: Maybe<Array<MutationError>>;
|
|
52423
|
+
success: Scalars['Boolean']['output'];
|
|
52424
|
+
};
|
|
51037
52425
|
export declare type JiraBulkTransition = Node & {
|
|
51038
52426
|
__typename?: 'JiraBulkTransition';
|
|
51039
52427
|
id: Scalars['ID']['output'];
|
|
@@ -51879,6 +53267,7 @@ export declare type JiraCommentSortInput = {
|
|
|
51879
53267
|
};
|
|
51880
53268
|
export declare type JiraCommentSummary = {
|
|
51881
53269
|
__typename?: 'JiraCommentSummary';
|
|
53270
|
+
canAddComment?: Maybe<Scalars['Boolean']['output']>;
|
|
51882
53271
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
51883
53272
|
};
|
|
51884
53273
|
export declare type JiraCommentSummaryField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
@@ -52460,6 +53849,12 @@ export declare type JiraCreateJourneyConfigurationPayload = Payload & {
|
|
|
52460
53849
|
jiraJourneyConfigurationEdge?: Maybe<JiraJourneyConfigurationEdge>;
|
|
52461
53850
|
success: Scalars['Boolean']['output'];
|
|
52462
53851
|
};
|
|
53852
|
+
export declare type JiraCreateJourneyItemInput = {
|
|
53853
|
+
configuration?: InputMaybe<JiraJourneyItemConfigurationInput>;
|
|
53854
|
+
insertAfterItemId?: InputMaybe<Scalars['ID']['input']>;
|
|
53855
|
+
journeyId: Scalars['ID']['input'];
|
|
53856
|
+
journeyVersion: Scalars['Long']['input'];
|
|
53857
|
+
};
|
|
52463
53858
|
export declare type JiraCreateNavigationItemPayload = Payload & {
|
|
52464
53859
|
__typename?: 'JiraCreateNavigationItemPayload';
|
|
52465
53860
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -53256,6 +54651,7 @@ export declare type JiraDisableJourneyConfigurationInput = {
|
|
|
53256
54651
|
version: Scalars['Long']['input'];
|
|
53257
54652
|
};
|
|
53258
54653
|
export declare type JiraDiscardUserBoardViewConfigInput = {
|
|
54654
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
53259
54655
|
viewId: Scalars['ID']['input'];
|
|
53260
54656
|
};
|
|
53261
54657
|
export declare type JiraDiscardUserBoardViewConfigPayload = Payload & {
|
|
@@ -54560,6 +55956,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
54560
55956
|
issueId: Scalars['String']['output'];
|
|
54561
55957
|
issueLinks?: Maybe<JiraIssueLinkConnection>;
|
|
54562
55958
|
issuePropertyByKey?: Maybe<Scalars['JSON']['output']>;
|
|
55959
|
+
issueRestrictionField?: Maybe<JiraIssueRestrictionField>;
|
|
54563
55960
|
issueTypeAvatarUrl?: Maybe<Scalars['URL']['output']>;
|
|
54564
55961
|
issueTypeField?: Maybe<JiraIssueTypeField>;
|
|
54565
55962
|
issueTypesForHierarchyAbove?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -54597,6 +55994,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
54597
55994
|
resolutionField?: Maybe<JiraResolutionField>;
|
|
54598
55995
|
screenId?: Maybe<Scalars['Long']['output']>;
|
|
54599
55996
|
searchViewContext?: Maybe<JiraIssueSearchViewContexts>;
|
|
55997
|
+
securityLevelField?: Maybe<JiraSecurityLevelField>;
|
|
54600
55998
|
smartSummary?: Maybe<JiraAdf>;
|
|
54601
55999
|
startDateField?: Maybe<JiraDatePickerField>;
|
|
54602
56000
|
startDateViewField?: Maybe<JiraIssueField>;
|
|
@@ -54612,6 +56010,8 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
54612
56010
|
summaryField?: Maybe<JiraSingleLineTextField>;
|
|
54613
56011
|
timeTrackingField?: Maybe<JiraTimeTrackingField>;
|
|
54614
56012
|
updatedField?: Maybe<JiraDateTimePickerField>;
|
|
56013
|
+
votesField?: Maybe<JiraVotesField>;
|
|
56014
|
+
watchesField?: Maybe<JiraWatchesField>;
|
|
54615
56015
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
54616
56016
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
54617
56017
|
};
|
|
@@ -56143,6 +57543,10 @@ export declare type JiraJqlHistoryEdge = {
|
|
|
56143
57543
|
__typename?: 'JiraJQLHistoryEdge';
|
|
56144
57544
|
node?: Maybe<JiraJqlHistory>;
|
|
56145
57545
|
};
|
|
57546
|
+
export declare type JiraJourneyBuilderAssociatedAutomationRule = {
|
|
57547
|
+
__typename?: 'JiraJourneyBuilderAssociatedAutomationRule';
|
|
57548
|
+
id: Scalars['ID']['output'];
|
|
57549
|
+
};
|
|
56146
57550
|
export declare type JiraJourneyConfiguration = Node & {
|
|
56147
57551
|
__typename?: 'JiraJourneyConfiguration';
|
|
56148
57552
|
activityConfigurations?: Maybe<Array<Maybe<JiraActivityConfiguration>>>;
|
|
@@ -56176,6 +57580,10 @@ export declare type JiraJourneyItemCommon = {
|
|
|
56176
57580
|
id: Scalars['ID']['output'];
|
|
56177
57581
|
name?: Maybe<Scalars['String']['output']>;
|
|
56178
57582
|
};
|
|
57583
|
+
export declare type JiraJourneyItemConfigurationInput = {
|
|
57584
|
+
statusDependencyConfiguration?: InputMaybe<JiraJourneyStatusDependencyConfigurationInput>;
|
|
57585
|
+
workItemConfiguration?: InputMaybe<JiraJourneyWorkItemConfigurationInput>;
|
|
57586
|
+
};
|
|
56179
57587
|
export declare type JiraJourneyParentIssue = {
|
|
56180
57588
|
__typename?: 'JiraJourneyParentIssue';
|
|
56181
57589
|
project?: Maybe<JiraProject>;
|
|
@@ -56211,6 +57619,14 @@ export declare type JiraJourneyStatusDependency = JiraJourneyItemCommon & {
|
|
|
56211
57619
|
statusType?: Maybe<JiraJourneyStatusDependencyType>;
|
|
56212
57620
|
workItemIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
56213
57621
|
};
|
|
57622
|
+
export declare type JiraJourneyStatusDependencyConfigurationInput = {
|
|
57623
|
+
statuses?: InputMaybe<Array<JiraJourneyStatusDependencyConfigurationStatusInput>>;
|
|
57624
|
+
workItemIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
57625
|
+
};
|
|
57626
|
+
export declare type JiraJourneyStatusDependencyConfigurationStatusInput = {
|
|
57627
|
+
id: Scalars['ID']['input'];
|
|
57628
|
+
type: JiraJourneyStatusDependencyType;
|
|
57629
|
+
};
|
|
56214
57630
|
export declare enum JiraJourneyStatusDependencyType {
|
|
56215
57631
|
Status = "STATUS",
|
|
56216
57632
|
StatusCategory = "STATUS_CATEGORY"
|
|
@@ -56233,6 +57649,7 @@ export declare enum JiraJourneyTriggerType {
|
|
|
56233
57649
|
}
|
|
56234
57650
|
export declare type JiraJourneyWorkItem = JiraJourneyItemCommon & {
|
|
56235
57651
|
__typename?: 'JiraJourneyWorkItem';
|
|
57652
|
+
associatedAutomationRules?: Maybe<Array<JiraJourneyBuilderAssociatedAutomationRule>>;
|
|
56236
57653
|
fieldValues?: Maybe<Array<JiraJourneyWorkItemFieldValueKeyValuePair>>;
|
|
56237
57654
|
id: Scalars['ID']['output'];
|
|
56238
57655
|
issueType?: Maybe<JiraIssueType>;
|
|
@@ -56240,11 +57657,22 @@ export declare type JiraJourneyWorkItem = JiraJourneyItemCommon & {
|
|
|
56240
57657
|
project?: Maybe<JiraProject>;
|
|
56241
57658
|
requestType?: Maybe<JiraServiceManagementRequestType>;
|
|
56242
57659
|
};
|
|
57660
|
+
export declare type JiraJourneyWorkItemConfigurationInput = {
|
|
57661
|
+
fieldValues?: InputMaybe<Array<InputMaybe<JiraJourneyWorkItemFieldValueKeyValuePairInput>>>;
|
|
57662
|
+
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
57663
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
57664
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
57665
|
+
requestTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
57666
|
+
};
|
|
56243
57667
|
export declare type JiraJourneyWorkItemFieldValueKeyValuePair = {
|
|
56244
57668
|
__typename?: 'JiraJourneyWorkItemFieldValueKeyValuePair';
|
|
56245
57669
|
key?: Maybe<Scalars['String']['output']>;
|
|
56246
57670
|
value?: Maybe<Array<Scalars['String']['output']>>;
|
|
56247
57671
|
};
|
|
57672
|
+
export declare type JiraJourneyWorkItemFieldValueKeyValuePairInput = {
|
|
57673
|
+
key: Scalars['String']['input'];
|
|
57674
|
+
value: Array<InputMaybe<Scalars['String']['input']>>;
|
|
57675
|
+
};
|
|
56248
57676
|
export declare type JiraJourneyWorkdayIntegrationTriggerConfiguration = {
|
|
56249
57677
|
__typename?: 'JiraJourneyWorkdayIntegrationTriggerConfiguration';
|
|
56250
57678
|
ruleId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -56279,6 +57707,7 @@ export declare enum JiraJqlAutocompleteType {
|
|
|
56279
57707
|
}
|
|
56280
57708
|
export declare type JiraJqlBoardInput = {
|
|
56281
57709
|
boardId: Scalars['Long']['input'];
|
|
57710
|
+
swimlaneStrategy?: InputMaybe<JiraBoardSwimlaneStrategy>;
|
|
56282
57711
|
};
|
|
56283
57712
|
export declare type JiraJqlBuilder = {
|
|
56284
57713
|
__typename?: 'JiraJqlBuilder';
|
|
@@ -57344,6 +58773,7 @@ export declare type JiraMutation = {
|
|
|
57344
58773
|
__typename?: 'JiraMutation';
|
|
57345
58774
|
addFieldsToProject?: Maybe<JiraAddFieldsToProjectPayload>;
|
|
57346
58775
|
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
58776
|
+
addJiraJourneyWorkItemAssociatedAutomationRule?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
57347
58777
|
addJiraVersionApprover?: Maybe<JiraVersionAddApproverPayload>;
|
|
57348
58778
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
57349
58779
|
addPostIncidentReviewLink?: Maybe<JiraAddPostIncidentReviewLinkMutationPayload>;
|
|
@@ -57367,6 +58797,7 @@ export declare type JiraMutation = {
|
|
|
57367
58797
|
createIssueLinks?: Maybe<JiraBulkCreateIssueLinksPayload>;
|
|
57368
58798
|
createJiraActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
57369
58799
|
createJiraJourneyConfiguration?: Maybe<JiraCreateJourneyConfigurationPayload>;
|
|
58800
|
+
createJiraJourneyItem?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
57370
58801
|
createJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
57371
58802
|
createJwmFilter?: Maybe<JiraWorkManagementCreateFilterPayload>;
|
|
57372
58803
|
createJwmIssue?: Maybe<JiraWorkManagementCreateIssuePayload>;
|
|
@@ -57422,6 +58853,7 @@ export declare type JiraMutation = {
|
|
|
57422
58853
|
removeCustomField?: Maybe<JiraRemoveCustomFieldPayload>;
|
|
57423
58854
|
removeIssuesFromAllFixVersions?: Maybe<JiraRemoveIssuesFromAllFixVersionsPayload>;
|
|
57424
58855
|
removeIssuesFromFixVersion?: Maybe<JiraRemoveIssuesFromFixVersionPayload>;
|
|
58856
|
+
removeJiraJourneyWorkItemAssociatedAutomationRule?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
57425
58857
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
57426
58858
|
removePostIncidentReviewLink?: Maybe<JiraRemovePostIncidentReviewLinkMutationPayload>;
|
|
57427
58859
|
removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
|
|
@@ -57541,6 +58973,10 @@ export declare type JiraMutationAddFieldsToProjectArgs = {
|
|
|
57541
58973
|
export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
57542
58974
|
input: JiraAddIssuesToFixVersionInput;
|
|
57543
58975
|
};
|
|
58976
|
+
export declare type JiraMutationAddJiraJourneyWorkItemAssociatedAutomationRuleArgs = {
|
|
58977
|
+
cloudId: Scalars['ID']['input'];
|
|
58978
|
+
input: JiraUpdateJourneyWorkItemAssociatedAutomationRuleInput;
|
|
58979
|
+
};
|
|
57544
58980
|
export declare type JiraMutationAddJiraVersionApproverArgs = {
|
|
57545
58981
|
input: JiraVersionAddApproverInput;
|
|
57546
58982
|
};
|
|
@@ -57622,6 +59058,10 @@ export declare type JiraMutationCreateJiraJourneyConfigurationArgs = {
|
|
|
57622
59058
|
cloudId: Scalars['ID']['input'];
|
|
57623
59059
|
input: JiraCreateJourneyConfigurationInput;
|
|
57624
59060
|
};
|
|
59061
|
+
export declare type JiraMutationCreateJiraJourneyItemArgs = {
|
|
59062
|
+
cloudId: Scalars['ID']['input'];
|
|
59063
|
+
input: JiraCreateJourneyItemInput;
|
|
59064
|
+
};
|
|
57625
59065
|
export declare type JiraMutationCreateJiraVersionArgs = {
|
|
57626
59066
|
input: JiraVersionCreateMutationInput;
|
|
57627
59067
|
};
|
|
@@ -57797,6 +59237,10 @@ export declare type JiraMutationRemoveIssuesFromAllFixVersionsArgs = {
|
|
|
57797
59237
|
export declare type JiraMutationRemoveIssuesFromFixVersionArgs = {
|
|
57798
59238
|
input: JiraRemoveIssuesFromFixVersionInput;
|
|
57799
59239
|
};
|
|
59240
|
+
export declare type JiraMutationRemoveJiraJourneyWorkItemAssociatedAutomationRuleArgs = {
|
|
59241
|
+
cloudId: Scalars['ID']['input'];
|
|
59242
|
+
input: JiraUpdateJourneyWorkItemAssociatedAutomationRuleInput;
|
|
59243
|
+
};
|
|
57800
59244
|
export declare type JiraMutationRemovePermissionSchemeGrantsArgs = {
|
|
57801
59245
|
input: JiraPermissionSchemeRemoveGrantInput;
|
|
57802
59246
|
};
|
|
@@ -58222,6 +59666,7 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
58222
59666
|
Calendar = "CALENDAR",
|
|
58223
59667
|
Code = "CODE",
|
|
58224
59668
|
Components = "COMPONENTS",
|
|
59669
|
+
CustomerSupport = "CUSTOMER_SUPPORT",
|
|
58225
59670
|
Dependencies = "DEPENDENCIES",
|
|
58226
59671
|
Deployments = "DEPLOYMENTS",
|
|
58227
59672
|
Development = "DEVELOPMENT",
|
|
@@ -58271,7 +59716,8 @@ export declare enum JiraNotificationCategoryType {
|
|
|
58271
59716
|
IssueChanges = "ISSUE_CHANGES",
|
|
58272
59717
|
IssueMentioned = "ISSUE_MENTIONED",
|
|
58273
59718
|
IssueMiscellaneous = "ISSUE_MISCELLANEOUS",
|
|
58274
|
-
IssueWorklogChanges = "ISSUE_WORKLOG_CHANGES"
|
|
59719
|
+
IssueWorklogChanges = "ISSUE_WORKLOG_CHANGES",
|
|
59720
|
+
Recurring = "RECURRING"
|
|
58275
59721
|
}
|
|
58276
59722
|
export declare type JiraNotificationChannel = {
|
|
58277
59723
|
__typename?: 'JiraNotificationChannel';
|
|
@@ -58320,6 +59766,7 @@ export declare type JiraNotificationPreferences = {
|
|
|
58320
59766
|
commentCreated?: Maybe<JiraNotificationPreference>;
|
|
58321
59767
|
commentDeleted?: Maybe<JiraNotificationPreference>;
|
|
58322
59768
|
commentEdited?: Maybe<JiraNotificationPreference>;
|
|
59769
|
+
dailyDueDateNotification?: Maybe<JiraNotificationPreference>;
|
|
58323
59770
|
issueAssigned?: Maybe<JiraNotificationPreference>;
|
|
58324
59771
|
issueCreated?: Maybe<JiraNotificationPreference>;
|
|
58325
59772
|
issueDeleted?: Maybe<JiraNotificationPreference>;
|
|
@@ -58346,6 +59793,7 @@ export declare enum JiraNotificationType {
|
|
|
58346
59793
|
CommentCreated = "COMMENT_CREATED",
|
|
58347
59794
|
CommentDeleted = "COMMENT_DELETED",
|
|
58348
59795
|
CommentEdited = "COMMENT_EDITED",
|
|
59796
|
+
DailyDueDateNotification = "DAILY_DUE_DATE_NOTIFICATION",
|
|
58349
59797
|
IssueAssigned = "ISSUE_ASSIGNED",
|
|
58350
59798
|
IssueCreated = "ISSUE_CREATED",
|
|
58351
59799
|
IssueDeleted = "ISSUE_DELETED",
|
|
@@ -58984,11 +60432,18 @@ export declare type JiraPlan = Node & {
|
|
|
58984
60432
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
58985
60433
|
owner?: Maybe<User>;
|
|
58986
60434
|
planId?: Maybe<Scalars['Long']['output']>;
|
|
60435
|
+
planScenarios?: Maybe<JiraScenarioConnection>;
|
|
58987
60436
|
planStatus?: Maybe<JiraPlanStatus>;
|
|
58988
60437
|
planUrl?: Maybe<Scalars['URL']['output']>;
|
|
58989
60438
|
scenario?: Maybe<JiraScenario>;
|
|
58990
60439
|
title?: Maybe<Scalars['String']['output']>;
|
|
58991
60440
|
};
|
|
60441
|
+
export declare type JiraPlanPlanScenariosArgs = {
|
|
60442
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
60443
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
60444
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
60445
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
60446
|
+
};
|
|
58992
60447
|
export declare type JiraPlanFeatureMutationInput = {
|
|
58993
60448
|
enabled: Scalars['Boolean']['input'];
|
|
58994
60449
|
planId: Scalars['ID']['input'];
|
|
@@ -59353,6 +60808,8 @@ export declare type JiraProject = Node & {
|
|
|
59353
60808
|
opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
|
|
59354
60809
|
projectFieldTypeGroups?: Maybe<JiraFieldTypeGroupConnection>;
|
|
59355
60810
|
projectId?: Maybe<Scalars['String']['output']>;
|
|
60811
|
+
projectScopedFieldsCount?: Maybe<Scalars['Int']['output']>;
|
|
60812
|
+
projectScopedFieldsPerProjectLimit?: Maybe<Scalars['Int']['output']>;
|
|
59356
60813
|
projectStyle?: Maybe<JiraProjectStyle>;
|
|
59357
60814
|
projectType?: Maybe<JiraProjectType>;
|
|
59358
60815
|
projectTypeName?: Maybe<Scalars['String']['output']>;
|
|
@@ -60000,10 +61457,16 @@ export declare type JiraProjectUpdateNameMutationPayload = Payload & {
|
|
|
60000
61457
|
};
|
|
60001
61458
|
export declare type JiraProjectWithIssueTypeIds = {
|
|
60002
61459
|
__typename?: 'JiraProjectWithIssueTypeIds';
|
|
61460
|
+
aiSuggestedAvailableFields?: Maybe<JiraAvailableFieldsConnection>;
|
|
60003
61461
|
allowedCustomFieldTypes?: Maybe<JiraFieldTypeConnection>;
|
|
60004
61462
|
availableFields?: Maybe<JiraAvailableFieldsConnection>;
|
|
60005
61463
|
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypesConnection>;
|
|
60006
61464
|
};
|
|
61465
|
+
export declare type JiraProjectWithIssueTypeIdsAiSuggestedAvailableFieldsArgs = {
|
|
61466
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61467
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61468
|
+
input?: InputMaybe<JiraProjectAvailableFieldsInput>;
|
|
61469
|
+
};
|
|
60007
61470
|
export declare type JiraProjectWithIssueTypeIdsAllowedCustomFieldTypesArgs = {
|
|
60008
61471
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
60009
61472
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -61514,6 +62977,7 @@ export declare type JiraReorderBoardViewColumnInput = {
|
|
|
61514
62977
|
columnId: Scalars['ID']['input'];
|
|
61515
62978
|
position: JiraReorderBoardViewColumnPosition;
|
|
61516
62979
|
relativeColumnId: Scalars['ID']['input'];
|
|
62980
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
61517
62981
|
viewId: Scalars['ID']['input'];
|
|
61518
62982
|
};
|
|
61519
62983
|
export declare type JiraReorderBoardViewColumnPayload = Payload & {
|
|
@@ -61842,6 +63306,17 @@ export declare type JiraScenario = Node & {
|
|
|
61842
63306
|
scenarioUrl?: Maybe<Scalars['URL']['output']>;
|
|
61843
63307
|
title?: Maybe<Scalars['String']['output']>;
|
|
61844
63308
|
};
|
|
63309
|
+
export declare type JiraScenarioConnection = {
|
|
63310
|
+
__typename?: 'JiraScenarioConnection';
|
|
63311
|
+
edges?: Maybe<Array<Maybe<JiraScenarioEdge>>>;
|
|
63312
|
+
pageInfo?: Maybe<PageInfo>;
|
|
63313
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
63314
|
+
};
|
|
63315
|
+
export declare type JiraScenarioEdge = {
|
|
63316
|
+
__typename?: 'JiraScenarioEdge';
|
|
63317
|
+
cursor: Scalars['String']['output'];
|
|
63318
|
+
node?: Maybe<JiraScenario>;
|
|
63319
|
+
};
|
|
61845
63320
|
export declare type JiraScenarioIssue = JiraScenarioIssueLike & Node & {
|
|
61846
63321
|
__typename?: 'JiraScenarioIssue';
|
|
61847
63322
|
id: Scalars['ID']['output'];
|
|
@@ -63157,6 +64632,7 @@ export declare type JiraSetApplicationPropertyInput = {
|
|
|
63157
64632
|
export declare type JiraSetBoardViewCardFieldSelectedInput = {
|
|
63158
64633
|
fieldId: Scalars['String']['input'];
|
|
63159
64634
|
selected: Scalars['Boolean']['input'];
|
|
64635
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
63160
64636
|
viewId: Scalars['ID']['input'];
|
|
63161
64637
|
};
|
|
63162
64638
|
export declare type JiraSetBoardViewCardFieldSelectedPayload = Payload & {
|
|
@@ -63168,6 +64644,7 @@ export declare type JiraSetBoardViewCardFieldSelectedPayload = Payload & {
|
|
|
63168
64644
|
export declare type JiraSetBoardViewCardOptionStateInput = {
|
|
63169
64645
|
enabled: Scalars['Boolean']['input'];
|
|
63170
64646
|
id: Scalars['ID']['input'];
|
|
64647
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
63171
64648
|
viewId: Scalars['ID']['input'];
|
|
63172
64649
|
};
|
|
63173
64650
|
export declare type JiraSetBoardViewCardOptionStatePayload = Payload & {
|
|
@@ -63179,6 +64656,7 @@ export declare type JiraSetBoardViewCardOptionStatePayload = Payload & {
|
|
|
63179
64656
|
export declare type JiraSetBoardViewColumnStateInput = {
|
|
63180
64657
|
collapsed: Scalars['Boolean']['input'];
|
|
63181
64658
|
columnId: Scalars['ID']['input'];
|
|
64659
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
63182
64660
|
viewId: Scalars['ID']['input'];
|
|
63183
64661
|
};
|
|
63184
64662
|
export declare type JiraSetBoardViewColumnStatePayload = Payload & {
|
|
@@ -63187,8 +64665,20 @@ export declare type JiraSetBoardViewColumnStatePayload = Payload & {
|
|
|
63187
64665
|
errors?: Maybe<Array<MutationError>>;
|
|
63188
64666
|
success: Scalars['Boolean']['output'];
|
|
63189
64667
|
};
|
|
64668
|
+
export declare type JiraSetBoardViewColumnsOrderInput = {
|
|
64669
|
+
columnIds: Array<Scalars['ID']['input']>;
|
|
64670
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
64671
|
+
viewId: Scalars['ID']['input'];
|
|
64672
|
+
};
|
|
64673
|
+
export declare type JiraSetBoardViewColumnsOrderPayload = Payload & {
|
|
64674
|
+
__typename?: 'JiraSetBoardViewColumnsOrderPayload';
|
|
64675
|
+
boardView?: Maybe<JiraBoardView>;
|
|
64676
|
+
errors?: Maybe<Array<MutationError>>;
|
|
64677
|
+
success: Scalars['Boolean']['output'];
|
|
64678
|
+
};
|
|
63190
64679
|
export declare type JiraSetBoardViewCompletedIssueSearchCutOffInput = {
|
|
63191
64680
|
completedIssueSearchCutOffInDays: Scalars['Int']['input'];
|
|
64681
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
63192
64682
|
viewId: Scalars['ID']['input'];
|
|
63193
64683
|
};
|
|
63194
64684
|
export declare type JiraSetBoardViewCompletedIssueSearchCutOffPayload = Payload & {
|
|
@@ -63199,6 +64689,7 @@ export declare type JiraSetBoardViewCompletedIssueSearchCutOffPayload = Payload
|
|
|
63199
64689
|
};
|
|
63200
64690
|
export declare type JiraSetBoardViewFilterInput = {
|
|
63201
64691
|
jql: Scalars['String']['input'];
|
|
64692
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
63202
64693
|
viewId: Scalars['ID']['input'];
|
|
63203
64694
|
};
|
|
63204
64695
|
export declare type JiraSetBoardViewFilterPayload = Payload & {
|
|
@@ -63210,6 +64701,7 @@ export declare type JiraSetBoardViewFilterPayload = Payload & {
|
|
|
63210
64701
|
};
|
|
63211
64702
|
export declare type JiraSetBoardViewGroupByInput = {
|
|
63212
64703
|
fieldId: Scalars['String']['input'];
|
|
64704
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
63213
64705
|
viewId: Scalars['ID']['input'];
|
|
63214
64706
|
};
|
|
63215
64707
|
export declare type JiraSetBoardViewGroupByPayload = Payload & {
|
|
@@ -63221,6 +64713,7 @@ export declare type JiraSetBoardViewGroupByPayload = Payload & {
|
|
|
63221
64713
|
};
|
|
63222
64714
|
export declare type JiraSetBoardViewWorkflowSelectedInput = {
|
|
63223
64715
|
selectedWorkflowId: Scalars['ID']['input'];
|
|
64716
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
63224
64717
|
viewId: Scalars['ID']['input'];
|
|
63225
64718
|
};
|
|
63226
64719
|
export declare type JiraSetBoardViewWorkflowSelectedPayload = Payload & {
|
|
@@ -64679,6 +66172,12 @@ export declare type JiraUpdateJourneyTriggerConfigurationInput = {
|
|
|
64679
66172
|
triggerConfiguration?: InputMaybe<JiraJourneyTriggerConfigurationInput>;
|
|
64680
66173
|
version: Scalars['Long']['input'];
|
|
64681
66174
|
};
|
|
66175
|
+
export declare type JiraUpdateJourneyWorkItemAssociatedAutomationRuleInput = {
|
|
66176
|
+
associatedRuleId: Scalars['ID']['input'];
|
|
66177
|
+
journeyId: Scalars['ID']['input'];
|
|
66178
|
+
journeyItemId: Scalars['ID']['input'];
|
|
66179
|
+
journeyVersion: Scalars['Long']['input'];
|
|
66180
|
+
};
|
|
64682
66181
|
export declare type JiraUpdateLabelsFieldInput = {
|
|
64683
66182
|
id: Scalars['ID']['input'];
|
|
64684
66183
|
operations: Array<JiraLabelsFieldOperationInput>;
|
|
@@ -68027,8 +69526,11 @@ export declare type LogQueryInput = {
|
|
|
68027
69526
|
functionKey?: InputMaybe<Scalars['String']['input']>;
|
|
68028
69527
|
functionKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
68029
69528
|
installationContexts?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
69529
|
+
invocationId?: InputMaybe<Scalars['String']['input']>;
|
|
68030
69530
|
lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
69531
|
+
moduleType?: InputMaybe<Scalars['String']['input']>;
|
|
68031
69532
|
msg?: InputMaybe<Scalars['String']['input']>;
|
|
69533
|
+
traceId?: InputMaybe<Scalars['String']['input']>;
|
|
68032
69534
|
};
|
|
68033
69535
|
export declare type LookAndFeel = {
|
|
68034
69536
|
__typename?: 'LookAndFeel';
|
|
@@ -68047,6 +69549,18 @@ export declare type LookAndFeelSettings = {
|
|
|
68047
69549
|
selected?: Maybe<Scalars['String']['output']>;
|
|
68048
69550
|
theme?: Maybe<LookAndFeel>;
|
|
68049
69551
|
};
|
|
69552
|
+
export declare type LoomComment = Node & {
|
|
69553
|
+
__typename?: 'LoomComment';
|
|
69554
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
69555
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
69556
|
+
editedAt?: Maybe<Scalars['String']['output']>;
|
|
69557
|
+
id: Scalars['ID']['output'];
|
|
69558
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
69559
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
69560
|
+
user?: Maybe<User>;
|
|
69561
|
+
userId?: Maybe<Scalars['ID']['output']>;
|
|
69562
|
+
videoId: Scalars['ID']['output'];
|
|
69563
|
+
};
|
|
68050
69564
|
export declare type LoomMeeting = Node & {
|
|
68051
69565
|
__typename?: 'LoomMeeting';
|
|
68052
69566
|
endsAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -68060,6 +69574,15 @@ export declare type LoomMeeting = Node & {
|
|
|
68060
69574
|
title: Scalars['String']['output'];
|
|
68061
69575
|
video?: Maybe<LoomVideo>;
|
|
68062
69576
|
};
|
|
69577
|
+
export declare type LoomMeetingRecurrence = Node & {
|
|
69578
|
+
__typename?: 'LoomMeetingRecurrence';
|
|
69579
|
+
id: Scalars['ID']['output'];
|
|
69580
|
+
meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
69581
|
+
};
|
|
69582
|
+
export declare type LoomMeetingRecurrenceMeetingsArgs = {
|
|
69583
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69584
|
+
meetingIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
69585
|
+
};
|
|
68063
69586
|
export declare enum LoomMeetingSource {
|
|
68064
69587
|
GoogleCalendar = "GOOGLE_CALENDAR",
|
|
68065
69588
|
MicrosoftOutlook = "MICROSOFT_OUTLOOK",
|
|
@@ -68084,6 +69607,7 @@ export declare type LoomVideo = Node & {
|
|
|
68084
69607
|
__typename?: 'LoomVideo';
|
|
68085
69608
|
description?: Maybe<Scalars['String']['output']>;
|
|
68086
69609
|
id: Scalars['ID']['output'];
|
|
69610
|
+
isArchived: Scalars['Boolean']['output'];
|
|
68087
69611
|
name: Scalars['String']['output'];
|
|
68088
69612
|
owner?: Maybe<User>;
|
|
68089
69613
|
ownerId?: Maybe<Scalars['String']['output']>;
|
|
@@ -68147,6 +69671,7 @@ export declare type LpCourseProgress = {
|
|
|
68147
69671
|
completedDate?: Maybe<Scalars['String']['output']>;
|
|
68148
69672
|
courseId?: Maybe<Scalars['String']['output']>;
|
|
68149
69673
|
id?: Maybe<Scalars['String']['output']>;
|
|
69674
|
+
isFromIntellum: Scalars['Boolean']['output'];
|
|
68150
69675
|
lessons?: Maybe<Array<Maybe<LpLessonProgress>>>;
|
|
68151
69676
|
status?: Maybe<LpCourseStatus>;
|
|
68152
69677
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -68543,8 +70068,10 @@ export declare type MarketplaceConsoleAppSoftwareVersion = {
|
|
|
68543
70068
|
buildNumber: Scalars['ID']['output'];
|
|
68544
70069
|
changelog?: Maybe<MarketplaceConsoleAppSoftwareVersionChangelog>;
|
|
68545
70070
|
compatibilities: Array<MarketplaceConsoleAppSoftwareVersionCompatibility>;
|
|
70071
|
+
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
68546
70072
|
frameworkDetails: MarketplaceConsoleAppSoftwareVersionFrameworkDetails;
|
|
68547
70073
|
isBeta: Scalars['Boolean']['output'];
|
|
70074
|
+
isLatest?: Maybe<Scalars['Boolean']['output']>;
|
|
68548
70075
|
isSupported: Scalars['Boolean']['output'];
|
|
68549
70076
|
licenseType?: Maybe<MarketplaceConsoleAppSoftwareVersionLicenseType>;
|
|
68550
70077
|
sourceCodeLicense?: Maybe<MarketplaceConsoleSourceCodeLicense>;
|
|
@@ -69988,6 +71515,7 @@ export declare type MarketplaceStoreHostStatusResponse = {
|
|
|
69988
71515
|
};
|
|
69989
71516
|
export declare type MarketplaceStoreInstallAppInput = {
|
|
69990
71517
|
appKey: Scalars['String']['input'];
|
|
71518
|
+
offeringId?: InputMaybe<Scalars['String']['input']>;
|
|
69991
71519
|
target: MarketplaceStoreInstallAppTargetInput;
|
|
69992
71520
|
};
|
|
69993
71521
|
export declare type MarketplaceStoreInstallAppResponse = {
|
|
@@ -70724,6 +72252,7 @@ export declare type MercuryFocusAreaActivityEdge = {
|
|
|
70724
72252
|
};
|
|
70725
72253
|
export declare type MercuryFocusAreaActivityHistory = Node & {
|
|
70726
72254
|
__typename?: 'MercuryFocusAreaActivityHistory';
|
|
72255
|
+
associatedEntityAri?: Maybe<Scalars['String']['output']>;
|
|
70727
72256
|
eventDate?: Maybe<Scalars['String']['output']>;
|
|
70728
72257
|
eventType?: Maybe<MercuryEventType>;
|
|
70729
72258
|
fields?: Maybe<Array<Maybe<MercuryUpdatedField>>>;
|
|
@@ -71319,6 +72848,14 @@ export declare type MercuryProviderOrchestrationMutationApiLinkAtlassianWorkToFo
|
|
|
71319
72848
|
export declare type MercuryProviderOrchestrationMutationApiLinkWorkToFocusAreaArgs = {
|
|
71320
72849
|
input: MercuryLinkWorkToFocusAreaInput;
|
|
71321
72850
|
};
|
|
72851
|
+
export declare type MercuryProviderOrchestrationQueryApi = {
|
|
72852
|
+
__typename?: 'MercuryProviderOrchestrationQueryApi';
|
|
72853
|
+
isWorkspaceConnected: Array<MercuryWorkspaceConnectionStatus>;
|
|
72854
|
+
};
|
|
72855
|
+
export declare type MercuryProviderOrchestrationQueryApiIsWorkspaceConnectedArgs = {
|
|
72856
|
+
cloudId: Scalars['ID']['input'];
|
|
72857
|
+
workspaceAris: Array<Scalars['String']['input']>;
|
|
72858
|
+
};
|
|
71322
72859
|
export declare type MercuryProviderUser = {
|
|
71323
72860
|
id: Scalars['ID']['output'];
|
|
71324
72861
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -71404,8 +72941,6 @@ export declare type MercuryQueryApi = {
|
|
|
71404
72941
|
myPreference?: Maybe<MercuryPreference>;
|
|
71405
72942
|
myPreferences?: Maybe<Array<MercuryPreference>>;
|
|
71406
72943
|
portfoliosByAris?: Maybe<Array<MercuryPortfolio>>;
|
|
71407
|
-
providerWork?: Maybe<MercuryProviderWork>;
|
|
71408
|
-
providerWorksByAris?: Maybe<Array<MercuryProviderWork>>;
|
|
71409
72944
|
team?: Maybe<MercuryTeam>;
|
|
71410
72945
|
teams?: Maybe<MercuryTeamConnection>;
|
|
71411
72946
|
workspaceContext: MercuryWorkspaceContext;
|
|
@@ -71504,13 +73039,6 @@ export declare type MercuryQueryApiMyPreferencesArgs = {
|
|
|
71504
73039
|
export declare type MercuryQueryApiPortfoliosByArisArgs = {
|
|
71505
73040
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
71506
73041
|
};
|
|
71507
|
-
export declare type MercuryQueryApiProviderWorkArgs = {
|
|
71508
|
-
cloudId: Scalars['ID']['input'];
|
|
71509
|
-
id: Scalars['ID']['input'];
|
|
71510
|
-
};
|
|
71511
|
-
export declare type MercuryQueryApiProviderWorksByArisArgs = {
|
|
71512
|
-
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
71513
|
-
};
|
|
71514
73042
|
export declare type MercuryQueryApiTeamArgs = {
|
|
71515
73043
|
cloudId: Scalars['ID']['input'];
|
|
71516
73044
|
id: Scalars['ID']['input'];
|
|
@@ -71713,6 +73241,11 @@ export declare type MercuryUserEdge = {
|
|
|
71713
73241
|
node?: Maybe<User>;
|
|
71714
73242
|
};
|
|
71715
73243
|
export declare type MercuryWorkResult = MercuryProviderWork | MercuryProviderWorkError;
|
|
73244
|
+
export declare type MercuryWorkspaceConnectionStatus = {
|
|
73245
|
+
__typename?: 'MercuryWorkspaceConnectionStatus';
|
|
73246
|
+
isConnected: Scalars['Boolean']['output'];
|
|
73247
|
+
workspaceAri: Scalars['String']['output'];
|
|
73248
|
+
};
|
|
71716
73249
|
export declare type MercuryWorkspaceContext = {
|
|
71717
73250
|
__typename?: 'MercuryWorkspaceContext';
|
|
71718
73251
|
activationId: Scalars['String']['output'];
|
|
@@ -71944,6 +73477,10 @@ export declare type Mutation = {
|
|
|
71944
73477
|
addLabels?: Maybe<AddLabelsPayload>;
|
|
71945
73478
|
addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
|
|
71946
73479
|
addReaction?: Maybe<SaveReactionResponse>;
|
|
73480
|
+
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
73481
|
+
agentStudio_updateAgentActions?: Maybe<AgentStudioUpdateAgentActionsPayload>;
|
|
73482
|
+
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
73483
|
+
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
71947
73484
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
71948
73485
|
appStorage?: Maybe<AppStorageMutation>;
|
|
71949
73486
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -72137,6 +73674,8 @@ export declare type Mutation = {
|
|
|
72137
73674
|
confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
|
|
72138
73675
|
confluence_inviteUsers?: Maybe<ConfluenceInviteUserPayload>;
|
|
72139
73676
|
confluence_makeSubCalendarPrivateUrl?: Maybe<ConfluenceMakeSubCalendarPrivateUrlPayload>;
|
|
73677
|
+
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
73678
|
+
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
72140
73679
|
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
72141
73680
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
72142
73681
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
@@ -72236,6 +73775,7 @@ export declare type Mutation = {
|
|
|
72236
73775
|
devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
|
|
72237
73776
|
devai_createTechnicalPlannerJob?: Maybe<DevAiCreateTechnicalPlannerJobPayload>;
|
|
72238
73777
|
devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
|
|
73778
|
+
devai_invokeAutodevRovoAgentInBulk?: Maybe<DevAiInvokeAutodevRovoAgentInBulkPayload>;
|
|
72239
73779
|
disableExperiment?: Maybe<TapExperiment>;
|
|
72240
73780
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
72241
73781
|
disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
|
|
@@ -72269,6 +73809,7 @@ export declare type Mutation = {
|
|
|
72269
73809
|
jira?: Maybe<JiraMutation>;
|
|
72270
73810
|
jiraCannedResponse?: Maybe<JiraCannedResponseMutationApi>;
|
|
72271
73811
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
73812
|
+
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
72272
73813
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
72273
73814
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
72274
73815
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
@@ -72277,6 +73818,7 @@ export declare type Mutation = {
|
|
|
72277
73818
|
jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
|
|
72278
73819
|
jira_setBoardViewCardOptionState?: Maybe<JiraSetBoardViewCardOptionStatePayload>;
|
|
72279
73820
|
jira_setBoardViewColumnState?: Maybe<JiraSetBoardViewColumnStatePayload>;
|
|
73821
|
+
jira_setBoardViewColumnsOrder?: Maybe<JiraSetBoardViewColumnsOrderPayload>;
|
|
72280
73822
|
jira_setBoardViewCompletedIssueSearchCutOff?: Maybe<JiraSetBoardViewCompletedIssueSearchCutOffPayload>;
|
|
72281
73823
|
jira_setBoardViewFilter?: Maybe<JiraSetBoardViewFilterPayload>;
|
|
72282
73824
|
jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
|
|
@@ -72494,6 +74036,22 @@ export declare type MutationAddReactionArgs = {
|
|
|
72494
74036
|
contentType: GraphQlReactionContentType;
|
|
72495
74037
|
emojiId: Scalars['String']['input'];
|
|
72496
74038
|
};
|
|
74039
|
+
export declare type MutationAgentStudio_CreateAgentArgs = {
|
|
74040
|
+
cloudId: Scalars['String']['input'];
|
|
74041
|
+
input: AgentStudioCreateAgentInput;
|
|
74042
|
+
};
|
|
74043
|
+
export declare type MutationAgentStudio_UpdateAgentActionsArgs = {
|
|
74044
|
+
id: Scalars['ID']['input'];
|
|
74045
|
+
input: AgentStudioActionConfigurationInput;
|
|
74046
|
+
};
|
|
74047
|
+
export declare type MutationAgentStudio_UpdateAgentDetailsArgs = {
|
|
74048
|
+
id: Scalars['ID']['input'];
|
|
74049
|
+
input: AgentStudioUpdateAgentDetailsInput;
|
|
74050
|
+
};
|
|
74051
|
+
export declare type MutationAgentStudio_UpdateConversationStartersArgs = {
|
|
74052
|
+
id: Scalars['ID']['input'];
|
|
74053
|
+
input: AgentStudioUpdateConversationStartersInput;
|
|
74054
|
+
};
|
|
72497
74055
|
export declare type MutationApplyPolarisProjectTemplateArgs = {
|
|
72498
74056
|
input: ApplyPolarisProjectTemplateInput;
|
|
72499
74057
|
};
|
|
@@ -73083,6 +74641,14 @@ export declare type MutationConfluence_MakeSubCalendarPrivateUrlArgs = {
|
|
|
73083
74641
|
cloudId: Scalars['ID']['input'];
|
|
73084
74642
|
input: ConfluenceMakeSubCalendarPrivateUrlInput;
|
|
73085
74643
|
};
|
|
74644
|
+
export declare type MutationConfluence_ReopenCommentArgs = {
|
|
74645
|
+
cloudId: Scalars['ID']['input'];
|
|
74646
|
+
commentId: Scalars['ID']['input'];
|
|
74647
|
+
};
|
|
74648
|
+
export declare type MutationConfluence_ResolveCommentsArgs = {
|
|
74649
|
+
cloudId: Scalars['ID']['input'];
|
|
74650
|
+
commentIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
74651
|
+
};
|
|
73086
74652
|
export declare type MutationConfluence_UnwatchSubCalendarArgs = {
|
|
73087
74653
|
cloudId: Scalars['ID']['input'];
|
|
73088
74654
|
input: ConfluenceUnwatchSubCalendarInput;
|
|
@@ -73420,6 +74986,10 @@ export declare type MutationDevai_InvokeAutodevRovoAgentArgs = {
|
|
|
73420
74986
|
agentId: Scalars['ID']['input'];
|
|
73421
74987
|
issueId: Scalars['ID']['input'];
|
|
73422
74988
|
};
|
|
74989
|
+
export declare type MutationDevai_InvokeAutodevRovoAgentInBulkArgs = {
|
|
74990
|
+
agentId: Scalars['ID']['input'];
|
|
74991
|
+
issueIds: Array<Scalars['ID']['input']>;
|
|
74992
|
+
};
|
|
73423
74993
|
export declare type MutationDisableExperimentArgs = {
|
|
73424
74994
|
experimentKey: Scalars['String']['input'];
|
|
73425
74995
|
};
|
|
@@ -73487,6 +75057,9 @@ export declare type MutationInvokeExtensionArgs = {
|
|
|
73487
75057
|
export declare type MutationInvokePolarisObjectArgs = {
|
|
73488
75058
|
input: InvokePolarisObjectInput;
|
|
73489
75059
|
};
|
|
75060
|
+
export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
|
|
75061
|
+
input: JiraBulkSetBoardViewColumnStateInput;
|
|
75062
|
+
};
|
|
73490
75063
|
export declare type MutationJira_CreateCustomBackgroundArgs = {
|
|
73491
75064
|
input: JiraCreateCustomBackgroundInput;
|
|
73492
75065
|
};
|
|
@@ -73511,6 +75084,9 @@ export declare type MutationJira_SetBoardViewCardOptionStateArgs = {
|
|
|
73511
75084
|
export declare type MutationJira_SetBoardViewColumnStateArgs = {
|
|
73512
75085
|
input: JiraSetBoardViewColumnStateInput;
|
|
73513
75086
|
};
|
|
75087
|
+
export declare type MutationJira_SetBoardViewColumnsOrderArgs = {
|
|
75088
|
+
input: JiraSetBoardViewColumnsOrderInput;
|
|
75089
|
+
};
|
|
73514
75090
|
export declare type MutationJira_SetBoardViewCompletedIssueSearchCutOffArgs = {
|
|
73515
75091
|
input: JiraSetBoardViewCompletedIssueSearchCutOffInput;
|
|
73516
75092
|
};
|
|
@@ -76689,6 +78265,8 @@ export declare type Query = {
|
|
|
76689
78265
|
agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
|
|
76690
78266
|
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
76691
78267
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
78268
|
+
agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
|
|
78269
|
+
aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
|
|
76692
78270
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
76693
78271
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
76694
78272
|
allUpdatesFeed?: Maybe<PaginatedAllUpdatesFeed>;
|
|
@@ -76725,7 +78303,6 @@ export declare type Query = {
|
|
|
76725
78303
|
catchupEditMetadataForContent?: Maybe<CatchupEditMetadataForContent>;
|
|
76726
78304
|
catchupGetLastViewedTime?: Maybe<CatchupLastViewedTimeResponse>;
|
|
76727
78305
|
catchupVersionDiffMetadataForContent?: Maybe<CatchupVersionDiffMetadataResponse>;
|
|
76728
|
-
catchupVersionSummaryMetadataForContent?: Maybe<CatchupVersionSummaryMetadataForContent>;
|
|
76729
78306
|
ccp?: Maybe<CcpQueryApi>;
|
|
76730
78307
|
classificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
76731
78308
|
classificationLevels?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
@@ -76958,6 +78535,7 @@ export declare type Query = {
|
|
|
76958
78535
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
76959
78536
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
76960
78537
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
78538
|
+
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
76961
78539
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
76962
78540
|
confluence_refreshMigrationMediaSession?: Maybe<ContentMediaSession>;
|
|
76963
78541
|
confluence_search?: Maybe<ConfluenceSearchConnection>;
|
|
@@ -76971,9 +78549,6 @@ export declare type Query = {
|
|
|
76971
78549
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
76972
78550
|
confluence_userContentAccess?: Maybe<ConfluenceUserContentAccessResult>;
|
|
76973
78551
|
confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
|
|
76974
|
-
confluence_workflow?: Maybe<ConfluenceWorkflow>;
|
|
76975
|
-
confluence_workflowApplicationsByContentId?: Maybe<ConfluenceWorkflowApplicationConnection>;
|
|
76976
|
-
confluence_workflowsAll?: Maybe<ConfluenceWorkflowConnection>;
|
|
76977
78552
|
connectedData?: Maybe<ConnectedDataQuery>;
|
|
76978
78553
|
connectionManager_connectionsByJiraProject?: Maybe<ConnectionManagerConnectionsByJiraProjectResult>;
|
|
76979
78554
|
contactAdminPageConfig?: Maybe<ContactAdminPageConfig>;
|
|
@@ -77072,6 +78647,7 @@ export declare type Query = {
|
|
|
77072
78647
|
externalContentMediaSession?: Maybe<ContentMediaSession>;
|
|
77073
78648
|
external_entities?: Maybe<ExternalEntities>;
|
|
77074
78649
|
external_entitiesV2?: Maybe<ExternalEntities>;
|
|
78650
|
+
external_entitiesV2ForHydration?: Maybe<ExternalEntitiesV2ForHydration>;
|
|
77075
78651
|
favoriteContent?: Maybe<PaginatedContentList>;
|
|
77076
78652
|
featureDiscovery?: Maybe<Array<Maybe<DiscoveredFeature>>>;
|
|
77077
78653
|
feed?: Maybe<PaginatedFeed>;
|
|
@@ -77156,7 +78732,11 @@ export declare type Query = {
|
|
|
77156
78732
|
lookAndFeel?: Maybe<LookAndFeelSettings>;
|
|
77157
78733
|
loomToken?: Maybe<LoomToken>;
|
|
77158
78734
|
loomUserStatus?: Maybe<LoomUserStatus>;
|
|
78735
|
+
loom_comment?: Maybe<LoomComment>;
|
|
78736
|
+
loom_comments?: Maybe<Array<Maybe<LoomComment>>>;
|
|
77159
78737
|
loom_meeting?: Maybe<LoomMeeting>;
|
|
78738
|
+
loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
|
|
78739
|
+
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
77160
78740
|
loom_meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
77161
78741
|
loom_space?: Maybe<LoomSpace>;
|
|
77162
78742
|
loom_spaces?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
@@ -77175,6 +78755,7 @@ export declare type Query = {
|
|
|
77175
78755
|
marketplaceStore: MarketplaceStoreQueryApi;
|
|
77176
78756
|
me: AuthenticationContext;
|
|
77177
78757
|
mercury?: Maybe<MercuryQueryApi>;
|
|
78758
|
+
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
|
|
77178
78759
|
migration: MigrationQuery;
|
|
77179
78760
|
migrationCatalogue: MigrationCatalogueQuery;
|
|
77180
78761
|
migrationMediaSession?: Maybe<ContentMediaSession>;
|
|
@@ -77305,7 +78886,6 @@ export declare type Query = {
|
|
|
77305
78886
|
team?: Maybe<TeamQuery>;
|
|
77306
78887
|
teamCalendarSettings?: Maybe<TeamCalendarSettings>;
|
|
77307
78888
|
teamLabels?: Maybe<PaginatedLabelList>;
|
|
77308
|
-
teamPresence?: Maybe<TeamPresence>;
|
|
77309
78889
|
template?: Maybe<ContentPlatformTemplate>;
|
|
77310
78890
|
templateBodies?: Maybe<PaginatedTemplateBodyList>;
|
|
77311
78891
|
templateCategories?: Maybe<PaginatedTemplateCategoryList>;
|
|
@@ -77373,6 +78953,13 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
|
|
|
77373
78953
|
export declare type QueryAgentStudio_AgentByIdArgs = {
|
|
77374
78954
|
id: Scalars['ID']['input'];
|
|
77375
78955
|
};
|
|
78956
|
+
export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
|
|
78957
|
+
cloudId: Scalars['String']['input'];
|
|
78958
|
+
input: AgentStudioSuggestConversationStartersInput;
|
|
78959
|
+
};
|
|
78960
|
+
export declare type QueryAiCoreApi_VsaReportingByProjectArgs = {
|
|
78961
|
+
projectAri: Scalars['ID']['input'];
|
|
78962
|
+
};
|
|
77376
78963
|
export declare type QueryAllIndividualSpacesArgs = {
|
|
77377
78964
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
77378
78965
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -77545,12 +79132,6 @@ export declare type QueryCatchupVersionDiffMetadataForContentArgs = {
|
|
|
77545
79132
|
originalContentVersion: Scalars['Int']['input'];
|
|
77546
79133
|
revisedContentVersion: Scalars['Int']['input'];
|
|
77547
79134
|
};
|
|
77548
|
-
export declare type QueryCatchupVersionSummaryMetadataForContentArgs = {
|
|
77549
|
-
contentId: Scalars['ID']['input'];
|
|
77550
|
-
contentType: CatchupContentType;
|
|
77551
|
-
endTimeMs: Scalars['Long']['input'];
|
|
77552
|
-
updateType: CatchupUpdateType;
|
|
77553
|
-
};
|
|
77554
79135
|
export declare type QueryClassificationLevelArgs = {
|
|
77555
79136
|
id: Scalars['String']['input'];
|
|
77556
79137
|
};
|
|
@@ -78538,6 +80119,18 @@ export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
|
78538
80119
|
export declare type QueryConfluence_CalendarTimezonesArgs = {
|
|
78539
80120
|
cloudId: Scalars['ID']['input'];
|
|
78540
80121
|
};
|
|
80122
|
+
export declare type QueryConfluence_ExternalCollaboratorsByCriteriaArgs = {
|
|
80123
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
80124
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
80125
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
80126
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80127
|
+
groupIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
80128
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
80129
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
80130
|
+
sorts?: InputMaybe<Array<InputMaybe<ExternalCollaboratorsSortType>>>;
|
|
80131
|
+
spaceAssignmentType?: InputMaybe<SpaceAssignmentType>;
|
|
80132
|
+
spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
80133
|
+
};
|
|
78541
80134
|
export declare type QueryConfluence_RefreshMigrationMediaSessionArgs = {
|
|
78542
80135
|
cloudId: Scalars['ID']['input'];
|
|
78543
80136
|
migrationId: Scalars['String']['input'];
|
|
@@ -78545,7 +80138,7 @@ export declare type QueryConfluence_RefreshMigrationMediaSessionArgs = {
|
|
|
78545
80138
|
export declare type QueryConfluence_SearchArgs = {
|
|
78546
80139
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
78547
80140
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
78548
|
-
cloudId
|
|
80141
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
78549
80142
|
cql: Scalars['String']['input'];
|
|
78550
80143
|
cqlcontext?: InputMaybe<Scalars['String']['input']>;
|
|
78551
80144
|
disableArchivedSpaceFallback?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -78563,14 +80156,14 @@ export declare type QueryConfluence_SearchTeamLabelsArgs = {
|
|
|
78563
80156
|
};
|
|
78564
80157
|
export declare type QueryConfluence_SearchUserArgs = {
|
|
78565
80158
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
78566
|
-
cloudId
|
|
80159
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
78567
80160
|
cql: Scalars['String']['input'];
|
|
78568
80161
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
78569
80162
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
78570
80163
|
sitePermissionTypeFilter?: InputMaybe<Scalars['String']['input']>;
|
|
78571
80164
|
};
|
|
78572
80165
|
export declare type QueryConfluence_StorageArgs = {
|
|
78573
|
-
cloudId
|
|
80166
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
78574
80167
|
};
|
|
78575
80168
|
export declare type QueryConfluence_SubCalendarSubscribersCountArgs = {
|
|
78576
80169
|
cloudId: Scalars['ID']['input'];
|
|
@@ -78585,36 +80178,23 @@ export declare type QueryConfluence_TeamPresenceSpaceSettingsArgs = {
|
|
|
78585
80178
|
spaceId: Scalars['Long']['input'];
|
|
78586
80179
|
};
|
|
78587
80180
|
export declare type QueryConfluence_TemplateArgs = {
|
|
78588
|
-
cloudId
|
|
80181
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
78589
80182
|
contentTemplateId: Scalars['String']['input'];
|
|
78590
80183
|
};
|
|
78591
80184
|
export declare type QueryConfluence_TenantContextArgs = {
|
|
78592
|
-
cloudId
|
|
80185
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
78593
80186
|
};
|
|
78594
80187
|
export declare type QueryConfluence_UserContentAccessArgs = {
|
|
78595
80188
|
accessType: ResourceAccessType;
|
|
78596
80189
|
accountIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
78597
80190
|
cloudId: Scalars['ID']['input'];
|
|
78598
|
-
contentId: Scalars['
|
|
80191
|
+
contentId: Scalars['ID']['input'];
|
|
78599
80192
|
};
|
|
78600
80193
|
export declare type QueryConfluence_ValidateCalendarJqlArgs = {
|
|
78601
80194
|
applicationId: Scalars['ID']['input'];
|
|
78602
80195
|
cloudId: Scalars['ID']['input'];
|
|
78603
80196
|
jql: Scalars['String']['input'];
|
|
78604
80197
|
};
|
|
78605
|
-
export declare type QueryConfluence_WorkflowArgs = {
|
|
78606
|
-
id: Scalars['ID']['input'];
|
|
78607
|
-
};
|
|
78608
|
-
export declare type QueryConfluence_WorkflowApplicationsByContentIdArgs = {
|
|
78609
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
78610
|
-
contentId: Scalars['ID']['input'];
|
|
78611
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
78612
|
-
};
|
|
78613
|
-
export declare type QueryConfluence_WorkflowsAllArgs = {
|
|
78614
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
78615
|
-
cloudId: Scalars['ID']['input'];
|
|
78616
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
78617
|
-
};
|
|
78618
80198
|
export declare type QueryConnectionManager_ConnectionsByJiraProjectArgs = {
|
|
78619
80199
|
filter?: InputMaybe<ConnectionManagerConnectionsFilter>;
|
|
78620
80200
|
jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -78960,6 +80540,8 @@ export declare type QueryDevai_TechnicalPlannerJobByIdArgs = {
|
|
|
78960
80540
|
jobId: Scalars['ID']['input'];
|
|
78961
80541
|
};
|
|
78962
80542
|
export declare type QueryDevai_TechnicalPlannerJobsForIssueArgs = {
|
|
80543
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
80544
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
78963
80545
|
issueAri: Scalars['ID']['input'];
|
|
78964
80546
|
};
|
|
78965
80547
|
export declare type QueryDeveloperLogAccessArgs = {
|
|
@@ -79277,9 +80859,21 @@ export declare type QueryLabelSearchArgs = {
|
|
|
79277
80859
|
export declare type QueryLookAndFeelArgs = {
|
|
79278
80860
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
79279
80861
|
};
|
|
80862
|
+
export declare type QueryLoom_CommentArgs = {
|
|
80863
|
+
id: Scalars['ID']['input'];
|
|
80864
|
+
};
|
|
80865
|
+
export declare type QueryLoom_CommentsArgs = {
|
|
80866
|
+
ids: Array<Scalars['ID']['input']>;
|
|
80867
|
+
};
|
|
79280
80868
|
export declare type QueryLoom_MeetingArgs = {
|
|
79281
80869
|
id: Scalars['ID']['input'];
|
|
79282
80870
|
};
|
|
80871
|
+
export declare type QueryLoom_MeetingRecurrenceArgs = {
|
|
80872
|
+
id: Scalars['ID']['input'];
|
|
80873
|
+
};
|
|
80874
|
+
export declare type QueryLoom_MeetingRecurrencesArgs = {
|
|
80875
|
+
ids: Array<Scalars['ID']['input']>;
|
|
80876
|
+
};
|
|
79283
80877
|
export declare type QueryLoom_MeetingsArgs = {
|
|
79284
80878
|
ids: Array<Scalars['ID']['input']>;
|
|
79285
80879
|
};
|
|
@@ -79704,6 +81298,9 @@ export declare type QuerySitePermissionsArgs = {
|
|
|
79704
81298
|
operations?: InputMaybe<Array<InputMaybe<SitePermissionOperationType>>>;
|
|
79705
81299
|
permissionTypes?: InputMaybe<Array<InputMaybe<SitePermissionType>>>;
|
|
79706
81300
|
};
|
|
81301
|
+
export declare type QuerySiteSettingsArgs = {
|
|
81302
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
81303
|
+
};
|
|
79707
81304
|
export declare type QuerySnippetsArgs = {
|
|
79708
81305
|
accountId: Scalars['String']['input'];
|
|
79709
81306
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -79785,6 +81382,7 @@ export declare type QuerySpacesArgs = {
|
|
|
79785
81382
|
assignedToGroupId?: InputMaybe<Scalars['String']['input']>;
|
|
79786
81383
|
assignedToGroupName?: InputMaybe<Scalars['String']['input']>;
|
|
79787
81384
|
assignedToUser?: InputMaybe<Scalars['String']['input']>;
|
|
81385
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
79788
81386
|
creatorAccountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
79789
81387
|
excludeTypes?: InputMaybe<Scalars['String']['input']>;
|
|
79790
81388
|
favourite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -79931,6 +81529,9 @@ export declare type QueryTownsquareUnsharded_AllWorkspaceSummariesForOrgArgs = {
|
|
|
79931
81529
|
export declare type QueryUserArgs = {
|
|
79932
81530
|
accountId: Scalars['ID']['input'];
|
|
79933
81531
|
};
|
|
81532
|
+
export declare type QueryUserAccessStatusArgs = {
|
|
81533
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
81534
|
+
};
|
|
79934
81535
|
export declare type QueryUserGroupSearchArgs = {
|
|
79935
81536
|
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
79936
81537
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -80447,6 +82048,7 @@ export declare type RawStatus = {
|
|
|
80447
82048
|
export declare type ReactedUsersResponse = {
|
|
80448
82049
|
__typename?: 'ReactedUsersResponse';
|
|
80449
82050
|
ari: Scalars['String']['output'];
|
|
82051
|
+
confluencePerson: Array<Maybe<ConfluencePerson>>;
|
|
80450
82052
|
containerAri: Scalars['String']['output'];
|
|
80451
82053
|
count: Scalars['Int']['output'];
|
|
80452
82054
|
emojiId: Scalars['String']['output'];
|
|
@@ -80685,6 +82287,12 @@ export declare type RemoveUserSpacePermissionsInput = {
|
|
|
80685
82287
|
accountId: Scalars['String']['input'];
|
|
80686
82288
|
spaceKey: Scalars['String']['input'];
|
|
80687
82289
|
};
|
|
82290
|
+
export declare type ReopenCommentsMutationErrorExtension = MutationErrorExtension & {
|
|
82291
|
+
__typename?: 'ReopenCommentsMutationErrorExtension';
|
|
82292
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
82293
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
82294
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
82295
|
+
};
|
|
80688
82296
|
export declare type ReplyInlineCommentInput = {
|
|
80689
82297
|
commentBody: CommentBody;
|
|
80690
82298
|
commentSource?: InputMaybe<Platform>;
|
|
@@ -80729,6 +82337,12 @@ export declare type ResetToDefaultSpaceRoleAssignmentsPayload = Payload & {
|
|
|
80729
82337
|
errors?: Maybe<Array<MutationError>>;
|
|
80730
82338
|
success: Scalars['Boolean']['output'];
|
|
80731
82339
|
};
|
|
82340
|
+
export declare type ResolveCommentsMutationErrorExtension = MutationErrorExtension & {
|
|
82341
|
+
__typename?: 'ResolveCommentsMutationErrorExtension';
|
|
82342
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
82343
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
82344
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
82345
|
+
};
|
|
80732
82346
|
export declare type ResolveInlineCommentPayload = {
|
|
80733
82347
|
__typename?: 'ResolveInlineCommentPayload';
|
|
80734
82348
|
resolveProperties?: Maybe<InlineCommentResolveProperties>;
|
|
@@ -81623,6 +83237,7 @@ export declare type ScheduledPublishSummary = {
|
|
|
81623
83237
|
export declare type ScheduledRestriction = {
|
|
81624
83238
|
__typename?: 'ScheduledRestriction';
|
|
81625
83239
|
group?: Maybe<PaginatedGroupList>;
|
|
83240
|
+
personConnection?: Maybe<ConfluencePersonConnection>;
|
|
81626
83241
|
};
|
|
81627
83242
|
export declare type ScheduledRestrictions = {
|
|
81628
83243
|
__typename?: 'ScheduledRestrictions';
|
|
@@ -82151,9 +83766,8 @@ export declare type SearchExperimentContextInput = {
|
|
|
82151
83766
|
experimentLayers?: InputMaybe<Array<InputMaybe<SearchExperimentLayer>>>;
|
|
82152
83767
|
};
|
|
82153
83768
|
export declare type SearchExperimentLayer = {
|
|
82154
|
-
|
|
83769
|
+
definitions?: InputMaybe<Array<InputMaybe<SearchLayerDefinition>>>;
|
|
82155
83770
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
82156
|
-
shadowId?: InputMaybe<Scalars['String']['input']>;
|
|
82157
83771
|
};
|
|
82158
83772
|
export declare type SearchExternalContainerFilter = {
|
|
82159
83773
|
type: Scalars['String']['input'];
|
|
@@ -82209,6 +83823,7 @@ export declare enum SearchIssueStatusCategory {
|
|
|
82209
83823
|
export declare type SearchItemConnection = {
|
|
82210
83824
|
__typename?: 'SearchItemConnection';
|
|
82211
83825
|
abTest?: Maybe<SearchAbTest>;
|
|
83826
|
+
deferredEdges?: Maybe<Array<SearchResultItemEdge>>;
|
|
82212
83827
|
edges: Array<SearchResultItemEdge>;
|
|
82213
83828
|
interleaverScrapingResult?: Maybe<SearchInterleaverScrapingResult>;
|
|
82214
83829
|
pageInfo: PageInfo;
|
|
@@ -82223,10 +83838,12 @@ export declare type SearchJiraFilter = {
|
|
|
82223
83838
|
};
|
|
82224
83839
|
export declare type SearchJiraIssueFilter = {
|
|
82225
83840
|
assigneeARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
83841
|
+
commenterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
82226
83842
|
issueTypeIDs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
82227
83843
|
projectARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
82228
83844
|
reporterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
82229
83845
|
statusCategories?: InputMaybe<Array<SearchIssueStatusCategory>>;
|
|
83846
|
+
watcherARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
82230
83847
|
};
|
|
82231
83848
|
export declare type SearchJiraProjectFilter = {
|
|
82232
83849
|
projectTypes?: InputMaybe<Array<SearchProjectType>>;
|
|
@@ -82239,6 +83856,12 @@ export declare type SearchL2Feature = {
|
|
|
82239
83856
|
export declare type SearchL2FeatureProvider = {
|
|
82240
83857
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
82241
83858
|
};
|
|
83859
|
+
export declare type SearchLayerDefinition = {
|
|
83860
|
+
entity?: InputMaybe<Scalars['String']['input']>;
|
|
83861
|
+
layerId?: InputMaybe<Scalars['String']['input']>;
|
|
83862
|
+
shadowId?: InputMaybe<Scalars['String']['input']>;
|
|
83863
|
+
subEntity?: InputMaybe<Scalars['String']['input']>;
|
|
83864
|
+
};
|
|
82242
83865
|
export declare type SearchMercuryFilter = {
|
|
82243
83866
|
focusAreaTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
82244
83867
|
owners?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -82315,6 +83938,18 @@ export declare type SearchResultAtlasGoal = SearchResult & {
|
|
|
82315
83938
|
type: SearchResultType;
|
|
82316
83939
|
url: Scalars['URL']['output'];
|
|
82317
83940
|
};
|
|
83941
|
+
export declare type SearchResultAtlasGoalUpdate = SearchResult & {
|
|
83942
|
+
__typename?: 'SearchResultAtlasGoalUpdate';
|
|
83943
|
+
description: Scalars['String']['output'];
|
|
83944
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
83945
|
+
id: Scalars['ID']['output'];
|
|
83946
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
83947
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
83948
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
83949
|
+
title: Scalars['String']['output'];
|
|
83950
|
+
type: SearchResultType;
|
|
83951
|
+
url: Scalars['URL']['output'];
|
|
83952
|
+
};
|
|
82318
83953
|
export declare type SearchResultAtlasProject = SearchResult & {
|
|
82319
83954
|
__typename?: 'SearchResultAtlasProject';
|
|
82320
83955
|
description: Scalars['String']['output'];
|
|
@@ -82327,6 +83962,18 @@ export declare type SearchResultAtlasProject = SearchResult & {
|
|
|
82327
83962
|
type: SearchResultType;
|
|
82328
83963
|
url: Scalars['URL']['output'];
|
|
82329
83964
|
};
|
|
83965
|
+
export declare type SearchResultAtlasProjectUpdate = SearchResult & {
|
|
83966
|
+
__typename?: 'SearchResultAtlasProjectUpdate';
|
|
83967
|
+
description: Scalars['String']['output'];
|
|
83968
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
83969
|
+
id: Scalars['ID']['output'];
|
|
83970
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
83971
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
83972
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
83973
|
+
title: Scalars['String']['output'];
|
|
83974
|
+
type: SearchResultType;
|
|
83975
|
+
url: Scalars['URL']['output'];
|
|
83976
|
+
};
|
|
82330
83977
|
export declare type SearchResultBitbucketRepository = SearchResult & {
|
|
82331
83978
|
__typename?: 'SearchResultBitbucketRepository';
|
|
82332
83979
|
description: Scalars['String']['output'];
|
|
@@ -82654,6 +84301,7 @@ export declare enum SearchResultType {
|
|
|
82654
84301
|
FocusAreaStatusUpdate = "focus_area_status_update",
|
|
82655
84302
|
Folder = "folder",
|
|
82656
84303
|
Goal = "goal",
|
|
84304
|
+
GoalUpdate = "goal_update",
|
|
82657
84305
|
Issue = "issue",
|
|
82658
84306
|
Learning = "learning",
|
|
82659
84307
|
Message = "message",
|
|
@@ -82661,6 +84309,7 @@ export declare enum SearchResultType {
|
|
|
82661
84309
|
Plan = "plan",
|
|
82662
84310
|
Presentation = "presentation",
|
|
82663
84311
|
Project = "project",
|
|
84312
|
+
ProjectUpdate = "project_update",
|
|
82664
84313
|
Question = "question",
|
|
82665
84314
|
Repository = "repository",
|
|
82666
84315
|
Space = "space",
|
|
@@ -84535,6 +86184,7 @@ export declare type SitePermission = {
|
|
|
84535
86184
|
anonymous?: Maybe<Anonymous>;
|
|
84536
86185
|
anonymousAccessDSPBlocked: Scalars['Boolean']['output'];
|
|
84537
86186
|
groups?: Maybe<PaginatedGroupWithPermissions>;
|
|
86187
|
+
personConnection?: Maybe<ConfluencePersonWithPermissionsConnection>;
|
|
84538
86188
|
unlicensedUserWithPermissions?: Maybe<UnlicensedUserWithPermissions>;
|
|
84539
86189
|
};
|
|
84540
86190
|
export declare type SitePermissionGroupsArgs = {
|
|
@@ -84542,6 +86192,11 @@ export declare type SitePermissionGroupsArgs = {
|
|
|
84542
86192
|
filterText?: InputMaybe<Scalars['String']['input']>;
|
|
84543
86193
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84544
86194
|
};
|
|
86195
|
+
export declare type SitePermissionPersonConnectionArgs = {
|
|
86196
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86197
|
+
filterText?: InputMaybe<Scalars['String']['input']>;
|
|
86198
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86199
|
+
};
|
|
84545
86200
|
export declare type SitePermissionInput = {
|
|
84546
86201
|
permissionsToAdd?: InputMaybe<UpdateSitePermissionInput>;
|
|
84547
86202
|
permissionsToRemove?: InputMaybe<UpdateSitePermissionInput>;
|
|
@@ -85086,6 +86741,10 @@ export declare type SpaceSpaceAdminsArgs = {
|
|
|
85086
86741
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85087
86742
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
85088
86743
|
};
|
|
86744
|
+
export declare enum SpaceAssignmentType {
|
|
86745
|
+
Assigned = "ASSIGNED",
|
|
86746
|
+
Unassigned = "UNASSIGNED"
|
|
86747
|
+
}
|
|
85089
86748
|
export declare type SpaceDescriptions = {
|
|
85090
86749
|
__typename?: 'SpaceDescriptions';
|
|
85091
86750
|
atlas_doc_format?: Maybe<FormattedBody>;
|
|
@@ -85216,6 +86875,8 @@ export declare type SpaceManagerRecordPageInfo = {
|
|
|
85216
86875
|
export declare type SpaceMetadata = {
|
|
85217
86876
|
__typename?: 'SpaceMetadata';
|
|
85218
86877
|
labels?: Maybe<PaginatedLabelList>;
|
|
86878
|
+
recentCommenterConnection?: Maybe<ConfluencePersonConnection>;
|
|
86879
|
+
recentWatcherConnection?: Maybe<ConfluencePersonConnection>;
|
|
85219
86880
|
totalCommenters: Scalars['Long']['output'];
|
|
85220
86881
|
totalCurrentBlogPosts: Scalars['Long']['output'];
|
|
85221
86882
|
totalCurrentPages: Scalars['Long']['output'];
|
|
@@ -85325,9 +86986,12 @@ export declare enum SpacePermissionType {
|
|
|
85325
86986
|
ArchiveSpace = "ARCHIVE_SPACE",
|
|
85326
86987
|
Comment = "COMMENT",
|
|
85327
86988
|
CreateAttachment = "CREATE_ATTACHMENT",
|
|
86989
|
+
CreateBlog = "CREATE_BLOG",
|
|
85328
86990
|
CreateEditPage = "CREATE_EDIT_PAGE",
|
|
85329
86991
|
DeleteSpace = "DELETE_SPACE",
|
|
85330
86992
|
EditBlog = "EDIT_BLOG",
|
|
86993
|
+
EditNativeContent = "EDIT_NATIVE_CONTENT",
|
|
86994
|
+
ExportContent = "EXPORT_CONTENT",
|
|
85331
86995
|
ExportPage = "EXPORT_PAGE",
|
|
85332
86996
|
ExportSpace = "EXPORT_SPACE",
|
|
85333
86997
|
ManageGuestUsers = "MANAGE_GUEST_USERS",
|
|
@@ -85726,6 +87390,7 @@ export declare type SubjectsByType = {
|
|
|
85726
87390
|
group?: Maybe<PaginatedGroupList>;
|
|
85727
87391
|
groupWithRestrictions?: Maybe<PaginatedGroupWithRestrictions>;
|
|
85728
87392
|
links?: Maybe<LinksContextBase>;
|
|
87393
|
+
personConnection?: Maybe<ConfluencePersonConnection>;
|
|
85729
87394
|
userWithRestrictions?: Maybe<PaginatedUserWithRestrictions>;
|
|
85730
87395
|
};
|
|
85731
87396
|
export declare type SubjectsByTypeGroupArgs = {
|
|
@@ -85736,6 +87401,10 @@ export declare type SubjectsByTypeGroupWithRestrictionsArgs = {
|
|
|
85736
87401
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
85737
87402
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
85738
87403
|
};
|
|
87404
|
+
export declare type SubjectsByTypePersonConnectionArgs = {
|
|
87405
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
87406
|
+
start?: InputMaybe<Scalars['Int']['input']>;
|
|
87407
|
+
};
|
|
85739
87408
|
export declare type SubjectsByTypeUserWithRestrictionsArgs = {
|
|
85740
87409
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
85741
87410
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -86371,10 +88040,6 @@ export declare type TeamMutationUpdateRoleAssignmentsArgs = {
|
|
|
86371
88040
|
principalsToRemove: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
86372
88041
|
role: TeamRole;
|
|
86373
88042
|
};
|
|
86374
|
-
export declare type TeamPresence = {
|
|
86375
|
-
__typename?: 'TeamPresence';
|
|
86376
|
-
isEnabledOnContentView: Scalars['Boolean']['output'];
|
|
86377
|
-
};
|
|
86378
88043
|
export declare type TeamPrincipal = {
|
|
86379
88044
|
__typename?: 'TeamPrincipal';
|
|
86380
88045
|
principalId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -87139,6 +88804,17 @@ export declare type TownsquareCreateGoalPayload = {
|
|
|
87139
88804
|
__typename?: 'TownsquareCreateGoalPayload';
|
|
87140
88805
|
goal?: Maybe<TownsquareGoal>;
|
|
87141
88806
|
};
|
|
88807
|
+
export declare type TownsquareCreateGoalTypeInput = {
|
|
88808
|
+
containerId: Scalars['String']['input'];
|
|
88809
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
88810
|
+
iconKey?: InputMaybe<TownsquareGoalIconKey>;
|
|
88811
|
+
name: Scalars['String']['input'];
|
|
88812
|
+
state?: InputMaybe<TownsquareGoalTypeState>;
|
|
88813
|
+
};
|
|
88814
|
+
export declare type TownsquareCreateGoalTypePayload = {
|
|
88815
|
+
__typename?: 'TownsquareCreateGoalTypePayload';
|
|
88816
|
+
goalTypeEdge?: Maybe<TownsquareGoalTypeEdge>;
|
|
88817
|
+
};
|
|
87142
88818
|
export declare type TownsquareCreateRelationshipsInput = {
|
|
87143
88819
|
relationships: Array<TownsquareRelationshipInput>;
|
|
87144
88820
|
};
|
|
@@ -87181,7 +88857,10 @@ export declare type TownsquareEditGoalPayload = {
|
|
|
87181
88857
|
goal?: Maybe<TownsquareGoal>;
|
|
87182
88858
|
};
|
|
87183
88859
|
export declare type TownsquareEditGoalTypeInput = {
|
|
88860
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
87184
88861
|
goalTypeAri: Scalars['String']['input'];
|
|
88862
|
+
iconKey?: InputMaybe<TownsquareGoalIconKey>;
|
|
88863
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
87185
88864
|
state?: InputMaybe<TownsquareGoalTypeState>;
|
|
87186
88865
|
};
|
|
87187
88866
|
export declare type TownsquareEditGoalTypePayload = {
|
|
@@ -87204,19 +88883,36 @@ export declare type TownsquareGoal = Node & {
|
|
|
87204
88883
|
name: Scalars['String']['output'];
|
|
87205
88884
|
owner?: Maybe<User>;
|
|
87206
88885
|
parentGoal?: Maybe<TownsquareGoal>;
|
|
88886
|
+
parentGoalSuggestions?: Maybe<TownsquareGoalConnection>;
|
|
87207
88887
|
state?: Maybe<TownsquareGoalState>;
|
|
87208
88888
|
status?: Maybe<TownsquareStatus>;
|
|
88889
|
+
subGoalSuggestions?: Maybe<TownsquareGoalConnection>;
|
|
87209
88890
|
subGoals?: Maybe<TownsquareGoalConnection>;
|
|
88891
|
+
tags?: Maybe<TownsquareTagConnection>;
|
|
87210
88892
|
targetDate?: Maybe<TownsquareTargetDate>;
|
|
87211
88893
|
updates?: Maybe<TownsquareGoalUpdateConnection>;
|
|
87212
88894
|
url?: Maybe<Scalars['String']['output']>;
|
|
87213
88895
|
uuid: Scalars['String']['output'];
|
|
87214
88896
|
watchers?: Maybe<TownsquareUserConnection>;
|
|
87215
88897
|
};
|
|
88898
|
+
export declare type TownsquareGoalParentGoalSuggestionsArgs = {
|
|
88899
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88900
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88901
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
88902
|
+
};
|
|
88903
|
+
export declare type TownsquareGoalSubGoalSuggestionsArgs = {
|
|
88904
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88905
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88906
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
88907
|
+
};
|
|
87216
88908
|
export declare type TownsquareGoalSubGoalsArgs = {
|
|
87217
88909
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87218
88910
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87219
88911
|
};
|
|
88912
|
+
export declare type TownsquareGoalTagsArgs = {
|
|
88913
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88914
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88915
|
+
};
|
|
87220
88916
|
export declare type TownsquareGoalUpdatesArgs = {
|
|
87221
88917
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87222
88918
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -87388,6 +89084,7 @@ export declare type TownsquareMutationApi = {
|
|
|
87388
89084
|
__typename?: 'TownsquareMutationApi';
|
|
87389
89085
|
archiveGoal?: Maybe<TownsquareArchiveGoalPayload>;
|
|
87390
89086
|
createGoal?: Maybe<TownsquareCreateGoalPayload>;
|
|
89087
|
+
createGoalType?: Maybe<TownsquareCreateGoalTypePayload>;
|
|
87391
89088
|
createRelationships?: Maybe<TownsquareCreateRelationshipsPayload>;
|
|
87392
89089
|
deleteRelationships?: Maybe<TownsquareDeleteRelationshipsPayload>;
|
|
87393
89090
|
editGoal?: Maybe<TownsquareEditGoalPayload>;
|
|
@@ -87402,6 +89099,9 @@ export declare type TownsquareMutationApiArchiveGoalArgs = {
|
|
|
87402
89099
|
export declare type TownsquareMutationApiCreateGoalArgs = {
|
|
87403
89100
|
input: TownsquareCreateGoalInput;
|
|
87404
89101
|
};
|
|
89102
|
+
export declare type TownsquareMutationApiCreateGoalTypeArgs = {
|
|
89103
|
+
input: TownsquareCreateGoalTypeInput;
|
|
89104
|
+
};
|
|
87405
89105
|
export declare type TownsquareMutationApiCreateRelationshipsArgs = {
|
|
87406
89106
|
input: TownsquareCreateRelationshipsInput;
|
|
87407
89107
|
};
|
|
@@ -87446,10 +89146,23 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
87446
89146
|
mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
|
|
87447
89147
|
name: Scalars['String']['output'];
|
|
87448
89148
|
owner?: Maybe<User>;
|
|
89149
|
+
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
87449
89150
|
state?: Maybe<TownsquareProjectState>;
|
|
89151
|
+
tags?: Maybe<TownsquareTagConnection>;
|
|
89152
|
+
updates?: Maybe<TownsquareProjectUpdateConnection>;
|
|
87450
89153
|
url?: Maybe<Scalars['String']['output']>;
|
|
87451
89154
|
uuid: Scalars['String']['output'];
|
|
87452
89155
|
};
|
|
89156
|
+
export declare type TownsquareProjectTagsArgs = {
|
|
89157
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89158
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89159
|
+
};
|
|
89160
|
+
export declare type TownsquareProjectUpdatesArgs = {
|
|
89161
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89162
|
+
createdAtOrAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
89163
|
+
createdAtOrBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
89164
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89165
|
+
};
|
|
87453
89166
|
export declare type TownsquareProjectConnection = {
|
|
87454
89167
|
__typename?: 'TownsquareProjectConnection';
|
|
87455
89168
|
edges?: Maybe<Array<Maybe<TownsquareProjectEdge>>>;
|
|
@@ -87543,6 +89256,17 @@ export declare type TownsquareProjectUpdateCommentsArgs = {
|
|
|
87543
89256
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87544
89257
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87545
89258
|
};
|
|
89259
|
+
export declare type TownsquareProjectUpdateConnection = {
|
|
89260
|
+
__typename?: 'TownsquareProjectUpdateConnection';
|
|
89261
|
+
count: Scalars['Int']['output'];
|
|
89262
|
+
edges?: Maybe<Array<Maybe<TownsquareProjectUpdateEdge>>>;
|
|
89263
|
+
pageInfo: PageInfo;
|
|
89264
|
+
};
|
|
89265
|
+
export declare type TownsquareProjectUpdateEdge = {
|
|
89266
|
+
__typename?: 'TownsquareProjectUpdateEdge';
|
|
89267
|
+
cursor: Scalars['String']['output'];
|
|
89268
|
+
node?: Maybe<TownsquareProjectUpdate>;
|
|
89269
|
+
};
|
|
87546
89270
|
export declare type TownsquareQueryApi = {
|
|
87547
89271
|
__typename?: 'TownsquareQueryApi';
|
|
87548
89272
|
allWorkspaceSummariesForOrg?: Maybe<TownsquareWorkspaceSummaryConnection>;
|
|
@@ -87670,7 +89394,9 @@ export declare type TownsquareStatus = {
|
|
|
87670
89394
|
};
|
|
87671
89395
|
export declare type TownsquareTag = Node & {
|
|
87672
89396
|
__typename?: 'TownsquareTag';
|
|
89397
|
+
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
87673
89398
|
description?: Maybe<Scalars['String']['output']>;
|
|
89399
|
+
iconData?: Maybe<Scalars['String']['output']>;
|
|
87674
89400
|
id: Scalars['ID']['output'];
|
|
87675
89401
|
name?: Maybe<Scalars['String']['output']>;
|
|
87676
89402
|
};
|
|
@@ -88326,6 +90052,7 @@ export declare type TrelloCard = Node & {
|
|
|
88326
90052
|
badges?: Maybe<TrelloCardBadges>;
|
|
88327
90053
|
checklists?: Maybe<TrelloChecklistConnection>;
|
|
88328
90054
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
90055
|
+
complete?: Maybe<Scalars['Boolean']['output']>;
|
|
88329
90056
|
cover?: Maybe<TrelloCardCover>;
|
|
88330
90057
|
creation?: Maybe<TrelloCardCreationInfo>;
|
|
88331
90058
|
customFieldItems?: Maybe<TrelloCustomFieldItemConnection>;
|
|
@@ -88519,6 +90246,7 @@ export declare type TrelloCardEdge = {
|
|
|
88519
90246
|
};
|
|
88520
90247
|
export declare enum TrelloCardExternalSource {
|
|
88521
90248
|
Email = "EMAIL",
|
|
90249
|
+
Siri = "SIRI",
|
|
88522
90250
|
Slack = "SLACK"
|
|
88523
90251
|
}
|
|
88524
90252
|
export declare type TrelloCardLimit = {
|
|
@@ -88550,6 +90278,7 @@ export declare type TrelloCardUpdated = {
|
|
|
88550
90278
|
badges?: Maybe<TrelloCardBadges>;
|
|
88551
90279
|
checklists?: Maybe<TrelloChecklistConnectionUpdated>;
|
|
88552
90280
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
90281
|
+
complete?: Maybe<Scalars['Boolean']['output']>;
|
|
88553
90282
|
cover?: Maybe<TrelloCardCoverUpdated>;
|
|
88554
90283
|
creation?: Maybe<TrelloCardCreationInfo>;
|
|
88555
90284
|
customFieldItems?: Maybe<TrelloCustomFieldItemUpdatedConnection>;
|
|
@@ -88696,15 +90425,9 @@ export declare type TrelloCreateOrUpdatePlannerCalendarInput = {
|
|
|
88696
90425
|
export declare type TrelloCreateOrUpdatePlannerCalendarPayload = Payload & {
|
|
88697
90426
|
__typename?: 'TrelloCreateOrUpdatePlannerCalendarPayload';
|
|
88698
90427
|
errors?: Maybe<Array<MutationError>>;
|
|
88699
|
-
plannerCalendar?: Maybe<TrelloPlannerCalendarConnection>;
|
|
88700
90428
|
plannerCalendarMutated?: Maybe<TrelloPlannerCalendarMutated>;
|
|
88701
|
-
plannerCalendarUpdated?: Maybe<TrelloPlannerCalendarUpdated>;
|
|
88702
90429
|
success: Scalars['Boolean']['output'];
|
|
88703
90430
|
};
|
|
88704
|
-
export declare type TrelloCreateOrUpdatePlannerCalendarPayloadPlannerCalendarArgs = {
|
|
88705
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
88706
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88707
|
-
};
|
|
88708
90431
|
export declare type TrelloCreatePlannerCalendarEventInput = {
|
|
88709
90432
|
event: TrelloCreatePlannerCalendarEventOptions;
|
|
88710
90433
|
plannerCalendarId: Scalars['ID']['input'];
|
|
@@ -89240,6 +90963,7 @@ export declare type TrelloPlannerCalendarAccount = Node & {
|
|
|
89240
90963
|
};
|
|
89241
90964
|
export declare type TrelloPlannerCalendarAccountEnabledCalendarsArgs = {
|
|
89242
90965
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
90966
|
+
filter?: InputMaybe<TrelloPlannerCalendarEnabledCalendarsFilter>;
|
|
89243
90967
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89244
90968
|
};
|
|
89245
90969
|
export declare type TrelloPlannerCalendarAccountProviderCalendarsArgs = {
|
|
@@ -89308,11 +91032,15 @@ export declare type TrelloPlannerCalendarDeleted = {
|
|
|
89308
91032
|
export declare type TrelloPlannerCalendarEdge = {
|
|
89309
91033
|
__typename?: 'TrelloPlannerCalendarEdge';
|
|
89310
91034
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
91035
|
+
deletedCalendar?: Maybe<TrelloPlannerCalendarDeleted>;
|
|
89311
91036
|
node?: Maybe<TrelloPlannerCalendar>;
|
|
89312
91037
|
};
|
|
89313
91038
|
export declare type TrelloPlannerCalendarEdgeUpdated = {
|
|
89314
91039
|
__typename?: 'TrelloPlannerCalendarEdgeUpdated';
|
|
89315
|
-
node:
|
|
91040
|
+
node: TrelloPlannerCalendarUpdated;
|
|
91041
|
+
};
|
|
91042
|
+
export declare type TrelloPlannerCalendarEnabledCalendarsFilter = {
|
|
91043
|
+
updateCursor?: InputMaybe<Scalars['String']['input']>;
|
|
89316
91044
|
};
|
|
89317
91045
|
export declare type TrelloPlannerCalendarEvent = Node & {
|
|
89318
91046
|
__typename?: 'TrelloPlannerCalendarEvent';
|
|
@@ -89430,7 +91158,11 @@ export declare type TrelloPlannerCalendarEventsFilter = {
|
|
|
89430
91158
|
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
89431
91159
|
};
|
|
89432
91160
|
export declare type TrelloPlannerCalendarMutated = TrelloPlannerCalendarAccount | TrelloPlannerCalendarDeleted;
|
|
89433
|
-
export declare type TrelloPlannerCalendarUpdated =
|
|
91161
|
+
export declare type TrelloPlannerCalendarUpdated = {
|
|
91162
|
+
__typename?: 'TrelloPlannerCalendarUpdated';
|
|
91163
|
+
events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
|
|
91164
|
+
id: Scalars['ID']['output'];
|
|
91165
|
+
};
|
|
89434
91166
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
89435
91167
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
89436
91168
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
@@ -89459,11 +91191,6 @@ export declare type TrelloPlannerUpdated = {
|
|
|
89459
91191
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnectionUpdated>;
|
|
89460
91192
|
id: Scalars['ID']['output'];
|
|
89461
91193
|
};
|
|
89462
|
-
export declare type TrelloPlannerUpdatedCalendar = {
|
|
89463
|
-
__typename?: 'TrelloPlannerUpdatedCalendar';
|
|
89464
|
-
events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
|
|
89465
|
-
id: Scalars['ID']['output'];
|
|
89466
|
-
};
|
|
89467
91194
|
export declare type TrelloPowerUp = {
|
|
89468
91195
|
__typename?: 'TrelloPowerUp';
|
|
89469
91196
|
author?: Maybe<Scalars['String']['output']>;
|
|
@@ -90028,10 +91755,12 @@ export declare type UnifiedAccount = UnifiedINode & {
|
|
|
90028
91755
|
emailId: Scalars['String']['output'];
|
|
90029
91756
|
id: Scalars['ID']['output'];
|
|
90030
91757
|
internalId: Scalars['String']['output'];
|
|
91758
|
+
isForumsAccountBanned: Scalars['Boolean']['output'];
|
|
90031
91759
|
isForumsModerator: Scalars['Boolean']['output'];
|
|
90032
91760
|
isLinked: Scalars['Boolean']['output'];
|
|
90033
91761
|
isManaged: Scalars['Boolean']['output'];
|
|
90034
91762
|
isPrimary: Scalars['Boolean']['output'];
|
|
91763
|
+
khorosUserId: Scalars['Int']['output'];
|
|
90035
91764
|
linkedAccounts?: Maybe<UnifiedULinkedAccountResult>;
|
|
90036
91765
|
nickname: Scalars['String']['output'];
|
|
90037
91766
|
picture: Scalars['String']['output'];
|
|
@@ -90043,6 +91772,7 @@ export declare type UnifiedAccountBasics = UnifiedINode & {
|
|
|
90043
91772
|
isLinked: Scalars['Boolean']['output'];
|
|
90044
91773
|
isManaged: Scalars['Boolean']['output'];
|
|
90045
91774
|
isPrimary: Scalars['Boolean']['output'];
|
|
91775
|
+
khorosUserId: Scalars['Int']['output'];
|
|
90046
91776
|
linkedAccountsBasics?: Maybe<UnifiedULinkedAccountBasicsResult>;
|
|
90047
91777
|
nickname: Scalars['String']['output'];
|
|
90048
91778
|
picture: Scalars['String']['output'];
|
|
@@ -90190,6 +91920,7 @@ export declare type UnifiedForums = UnifiedINode & {
|
|
|
90190
91920
|
badges?: Maybe<UnifiedUForumsBadgesResult>;
|
|
90191
91921
|
groups?: Maybe<UnifiedUForumsGroupsResult>;
|
|
90192
91922
|
id: Scalars['ID']['output'];
|
|
91923
|
+
khorosUserId: Scalars['Int']['output'];
|
|
90193
91924
|
snapshot?: Maybe<UnifiedUForumsSnapshotResult>;
|
|
90194
91925
|
};
|
|
90195
91926
|
export declare type UnifiedForumsBadgesArgs = {
|
|
@@ -90594,6 +92325,7 @@ export declare type UnifiedProfile = UnifiedINode & {
|
|
|
90594
92325
|
isLinkedView?: Maybe<Scalars['Boolean']['output']>;
|
|
90595
92326
|
isPersonalView?: Maybe<Scalars['Boolean']['output']>;
|
|
90596
92327
|
isPrivate: Scalars['Boolean']['output'];
|
|
92328
|
+
isProfileBanned?: Maybe<Scalars['Boolean']['output']>;
|
|
90597
92329
|
learning?: Maybe<UnifiedULearningResult>;
|
|
90598
92330
|
linkedinUrl?: Maybe<Scalars['String']['output']>;
|
|
90599
92331
|
location?: Maybe<Scalars['String']['output']>;
|
|
@@ -90803,8 +92535,13 @@ export declare type UpdateAppDetailsInput = {
|
|
|
90803
92535
|
avatarFileId?: InputMaybe<Scalars['String']['input']>;
|
|
90804
92536
|
contactLink?: InputMaybe<Scalars['String']['input']>;
|
|
90805
92537
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
92538
|
+
distributionStatus?: InputMaybe<DistributionStatus>;
|
|
92539
|
+
hasPDReportingApiImplemented?: InputMaybe<Scalars['Boolean']['input']>;
|
|
90806
92540
|
name: Scalars['String']['input'];
|
|
90807
92541
|
privacyPolicy?: InputMaybe<Scalars['String']['input']>;
|
|
92542
|
+
storesPersonalData?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92543
|
+
termsOfService?: InputMaybe<Scalars['String']['input']>;
|
|
92544
|
+
vendorName?: InputMaybe<Scalars['String']['input']>;
|
|
90808
92545
|
};
|
|
90809
92546
|
export declare type UpdateAppDetailsResponse = Payload & {
|
|
90810
92547
|
__typename?: 'UpdateAppDetailsResponse';
|
|
@@ -91759,7 +93496,6 @@ export declare type UserPreferences = {
|
|
|
91759
93496
|
spacePagesSortView: PagesSortPersistenceOption;
|
|
91760
93497
|
spaceViewsPersistence: SpaceViewsPersistenceOption;
|
|
91761
93498
|
theme: Scalars['String']['output'];
|
|
91762
|
-
topNavigationOptedOut?: Maybe<Scalars['Boolean']['output']>;
|
|
91763
93499
|
userSpacesNotifiedChangeBoardingOfExternalCollab: Array<Maybe<Scalars['String']['output']>>;
|
|
91764
93500
|
userSpacesNotifiedOfExternalCollab: Array<Maybe<Scalars['String']['output']>>;
|
|
91765
93501
|
watchMyOwnContent?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -91897,13 +93633,6 @@ export declare type Version = {
|
|
|
91897
93633
|
syncRevSource?: Maybe<Scalars['String']['output']>;
|
|
91898
93634
|
when?: Maybe<Scalars['String']['output']>;
|
|
91899
93635
|
};
|
|
91900
|
-
export declare type VersionSummaryMetaDataItem = {
|
|
91901
|
-
__typename?: 'VersionSummaryMetaDataItem';
|
|
91902
|
-
collaborators?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
91903
|
-
creationDate: Scalars['String']['output'];
|
|
91904
|
-
users?: Maybe<Array<Maybe<Person>>>;
|
|
91905
|
-
versionNumber: Scalars['Int']['output'];
|
|
91906
|
-
};
|
|
91907
93636
|
export declare type ViewedComments = {
|
|
91908
93637
|
__typename?: 'ViewedComments';
|
|
91909
93638
|
commentIds: Array<Maybe<Scalars['ID']['output']>>;
|