@forge/cli-shared 6.6.1-next.1 → 6.6.1-next.10
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 +61 -0
- package/out/graphql/graphql-types.d.ts +1774 -182
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +166 -37
- 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 +3 -0
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/command-line-ui.js +20 -0
- package/out/ui/text.d.ts +4 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +4 -0
- package/out/ui/ui.d.ts +6 -3
- 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
|
};
|
|
@@ -3211,7 +3340,15 @@ export declare enum CcpCreateEntitlementExperienceCapabilityErrorReasonCode {
|
|
|
3211
3340
|
MultipleTransactionAccount = "MULTIPLE_TRANSACTION_ACCOUNT",
|
|
3212
3341
|
UsecaseNotImplemented = "USECASE_NOT_IMPLEMENTED"
|
|
3213
3342
|
}
|
|
3343
|
+
export declare type CcpCreateEntitlementExperienceOptions = {
|
|
3344
|
+
confirmationScreen?: InputMaybe<CcpCreateEntitlementExperienceOptionsConfirmationScreen>;
|
|
3345
|
+
};
|
|
3346
|
+
export declare enum CcpCreateEntitlementExperienceOptionsConfirmationScreen {
|
|
3347
|
+
Comparison = "COMPARISON",
|
|
3348
|
+
Default = "DEFAULT"
|
|
3349
|
+
}
|
|
3214
3350
|
export declare type CcpCreateEntitlementInput = {
|
|
3351
|
+
experienceOptions?: InputMaybe<CcpCreateEntitlementExperienceOptions>;
|
|
3215
3352
|
offeringKey: Scalars['ID']['input'];
|
|
3216
3353
|
orderOptions?: InputMaybe<CcpCreateEntitlementOrderOptions>;
|
|
3217
3354
|
relatesToEntitlements?: InputMaybe<Array<CcpCreateEntitlementRelatesTo>>;
|
|
@@ -6911,6 +7048,7 @@ export declare type CompassJqlMetricDefinitionConfiguration = {
|
|
|
6911
7048
|
};
|
|
6912
7049
|
export declare type CompassJqlMetricDefinitionConfigurationInput = {
|
|
6913
7050
|
customizable: Scalars['Boolean']['input'];
|
|
7051
|
+
format?: InputMaybe<Scalars['String']['input']>;
|
|
6914
7052
|
jql: Scalars['String']['input'];
|
|
6915
7053
|
};
|
|
6916
7054
|
export declare type CompassJqlMetricSourceConfiguration = {
|
|
@@ -15209,6 +15347,26 @@ export declare type ConfluencePerson = Person & {
|
|
|
15209
15347
|
userKey?: Maybe<Scalars['String']['output']>;
|
|
15210
15348
|
username?: Maybe<Scalars['String']['output']>;
|
|
15211
15349
|
};
|
|
15350
|
+
export declare type ConfluencePersonConnection = {
|
|
15351
|
+
__typename?: 'ConfluencePersonConnection';
|
|
15352
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
15353
|
+
edges?: Maybe<Array<Maybe<ConfluencePersonEdge>>>;
|
|
15354
|
+
nodes?: Maybe<Array<Maybe<ConfluencePerson>>>;
|
|
15355
|
+
pageInfo?: Maybe<PageInfo>;
|
|
15356
|
+
};
|
|
15357
|
+
export declare type ConfluencePersonEdge = {
|
|
15358
|
+
__typename?: 'ConfluencePersonEdge';
|
|
15359
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15360
|
+
node?: Maybe<ConfluencePerson>;
|
|
15361
|
+
};
|
|
15362
|
+
export declare type ConfluencePersonWithPermissionsConnection = {
|
|
15363
|
+
__typename?: 'ConfluencePersonWithPermissionsConnection';
|
|
15364
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
15365
|
+
edges?: Maybe<Array<Maybe<ConfluencePersonEdge>>>;
|
|
15366
|
+
links?: Maybe<LinksContextBase>;
|
|
15367
|
+
nodes?: Maybe<Array<Maybe<ConfluencePerson>>>;
|
|
15368
|
+
pageInfo?: Maybe<PageInfo>;
|
|
15369
|
+
};
|
|
15212
15370
|
export declare enum ConfluencePrincipalType {
|
|
15213
15371
|
Group = "GROUP",
|
|
15214
15372
|
User = "USER"
|
|
@@ -16312,64 +16470,6 @@ export declare type ConfluenceWhiteboardLinks = {
|
|
|
16312
16470
|
base?: Maybe<Scalars['String']['output']>;
|
|
16313
16471
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
16314
16472
|
};
|
|
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
16473
|
export declare type Confluence_CqlMetaData = {
|
|
16374
16474
|
__typename?: 'Confluence_cqlMetaData';
|
|
16375
16475
|
cqlContentTypes: Array<Maybe<CqlDisplayableType>>;
|
|
@@ -16419,12 +16519,8 @@ export declare type ConnectAppScope = {
|
|
|
16419
16519
|
};
|
|
16420
16520
|
export declare type ConnectedDataQuery = {
|
|
16421
16521
|
__typename?: 'ConnectedDataQuery';
|
|
16422
|
-
incidentWithId?: Maybe<JsmIncident>;
|
|
16423
16522
|
services?: Maybe<DevOpsService>;
|
|
16424
16523
|
};
|
|
16425
|
-
export declare type ConnectedDataQueryIncidentWithIdArgs = {
|
|
16426
|
-
id: Scalars['ID']['input'];
|
|
16427
|
-
};
|
|
16428
16524
|
export declare type ConnectedDataQueryServicesArgs = {
|
|
16429
16525
|
cloudId: Scalars['ID']['input'];
|
|
16430
16526
|
id: Scalars['ID']['input'];
|
|
@@ -21144,8 +21240,14 @@ export declare type DevAiGenericMutationErrorExtension = MutationErrorExtension
|
|
|
21144
21240
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
21145
21241
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
21146
21242
|
};
|
|
21243
|
+
export declare type DevAiInvokeAutodevRovoAgentInBulkPayload = Payload & {
|
|
21244
|
+
__typename?: 'DevAiInvokeAutodevRovoAgentInBulkPayload';
|
|
21245
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21246
|
+
success: Scalars['Boolean']['output'];
|
|
21247
|
+
};
|
|
21147
21248
|
export declare type DevAiInvokeAutodevRovoAgentPayload = Payload & {
|
|
21148
21249
|
__typename?: 'DevAiInvokeAutodevRovoAgentPayload';
|
|
21250
|
+
conversationId?: Maybe<Scalars['ID']['output']>;
|
|
21149
21251
|
errors?: Maybe<Array<MutationError>>;
|
|
21150
21252
|
jobId?: Maybe<Scalars['ID']['output']>;
|
|
21151
21253
|
success: Scalars['Boolean']['output'];
|
|
@@ -21204,6 +21306,7 @@ export declare type DevAiPhaseStartedAutodevLog = DevAiAutodevLog & {
|
|
|
21204
21306
|
priority?: Maybe<DevAiAutodevLogPriority>;
|
|
21205
21307
|
status?: Maybe<DevAiAutodevLogStatus>;
|
|
21206
21308
|
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
21309
|
+
userCommand?: Maybe<Scalars['String']['output']>;
|
|
21207
21310
|
};
|
|
21208
21311
|
export declare type DevAiPlaintextAutodevLog = DevAiAutodevLog & {
|
|
21209
21312
|
__typename?: 'DevAiPlaintextAutodevLog';
|
|
@@ -23003,6 +23106,11 @@ export declare type EarliestViewViewedForUser = {
|
|
|
23003
23106
|
datetime?: Maybe<Scalars['String']['output']>;
|
|
23004
23107
|
};
|
|
23005
23108
|
export declare type EcosystemApp = App | EcosystemConnectApp;
|
|
23109
|
+
export declare type EcosystemAppInstallationConfigExtension = {
|
|
23110
|
+
__typename?: 'EcosystemAppInstallationConfigExtension';
|
|
23111
|
+
key: Scalars['String']['output'];
|
|
23112
|
+
value: Scalars['Boolean']['output'];
|
|
23113
|
+
};
|
|
23006
23114
|
export declare enum EcosystemAppInstallationConfigIdType {
|
|
23007
23115
|
Cloud = "CLOUD",
|
|
23008
23116
|
Installation = "INSTALLATION"
|
|
@@ -23172,6 +23280,7 @@ export declare type EcosystemMarketplaceAppVersion = {
|
|
|
23172
23280
|
buildNumber: Scalars['Float']['output'];
|
|
23173
23281
|
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
23174
23282
|
isSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
23283
|
+
paymentModel?: Maybe<EcosystemMarketplacePaymentModel>;
|
|
23175
23284
|
version: Scalars['String']['output'];
|
|
23176
23285
|
};
|
|
23177
23286
|
export declare type EcosystemMarketplaceData = {
|
|
@@ -23181,12 +23290,41 @@ export declare type EcosystemMarketplaceData = {
|
|
|
23181
23290
|
cloudAppId: Scalars['ID']['output'];
|
|
23182
23291
|
forumsUrl?: Maybe<Scalars['String']['output']>;
|
|
23183
23292
|
issueTrackerUrl?: Maybe<Scalars['String']['output']>;
|
|
23293
|
+
listingStatus?: Maybe<EcosystemMarketplaceListingStatus>;
|
|
23184
23294
|
name?: Maybe<Scalars['String']['output']>;
|
|
23295
|
+
partner?: Maybe<EcosystemMarketplacePartner>;
|
|
23185
23296
|
slug?: Maybe<Scalars['String']['output']>;
|
|
23186
23297
|
supportTicketSystemUrl?: Maybe<Scalars['String']['output']>;
|
|
23187
23298
|
versions?: Maybe<EcosystemMarketplaceVersionConnection>;
|
|
23188
23299
|
wikiUrl?: Maybe<Scalars['String']['output']>;
|
|
23189
23300
|
};
|
|
23301
|
+
export declare enum EcosystemMarketplaceListingStatus {
|
|
23302
|
+
Private = "PRIVATE",
|
|
23303
|
+
Public = "PUBLIC",
|
|
23304
|
+
ReadyToLaunch = "READY_TO_LAUNCH",
|
|
23305
|
+
Rejected = "REJECTED",
|
|
23306
|
+
Submitted = "SUBMITTED"
|
|
23307
|
+
}
|
|
23308
|
+
export declare type EcosystemMarketplacePartner = {
|
|
23309
|
+
__typename?: 'EcosystemMarketplacePartner';
|
|
23310
|
+
id: Scalars['ID']['output'];
|
|
23311
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
23312
|
+
support?: Maybe<EcosystemMarketplacePartnerSupport>;
|
|
23313
|
+
};
|
|
23314
|
+
export declare type EcosystemMarketplacePartnerSupport = {
|
|
23315
|
+
__typename?: 'EcosystemMarketplacePartnerSupport';
|
|
23316
|
+
contactDetails?: Maybe<EcosystemMarketplacePartnerSupportContact>;
|
|
23317
|
+
};
|
|
23318
|
+
export declare type EcosystemMarketplacePartnerSupportContact = {
|
|
23319
|
+
__typename?: 'EcosystemMarketplacePartnerSupportContact';
|
|
23320
|
+
emailId?: Maybe<Scalars['String']['output']>;
|
|
23321
|
+
websiteUrl?: Maybe<Scalars['String']['output']>;
|
|
23322
|
+
};
|
|
23323
|
+
export declare enum EcosystemMarketplacePaymentModel {
|
|
23324
|
+
Free = "FREE",
|
|
23325
|
+
PaidViaAtlassian = "PAID_VIA_ATLASSIAN",
|
|
23326
|
+
PaidViaPartner = "PAID_VIA_PARTNER"
|
|
23327
|
+
}
|
|
23190
23328
|
export declare type EcosystemMarketplaceVersionConnection = {
|
|
23191
23329
|
__typename?: 'EcosystemMarketplaceVersionConnection';
|
|
23192
23330
|
edges?: Maybe<Array<EcosystemMarketplaceVersionEdge>>;
|
|
@@ -23675,6 +23813,7 @@ export declare type Extension = {
|
|
|
23675
23813
|
environmentType: Scalars['String']['output'];
|
|
23676
23814
|
id: Scalars['ID']['output'];
|
|
23677
23815
|
installation?: Maybe<AppInstallationSummary>;
|
|
23816
|
+
installationConfig?: Maybe<Array<EcosystemAppInstallationConfigExtension>>;
|
|
23678
23817
|
installationId: Scalars['String']['output'];
|
|
23679
23818
|
key: Scalars['String']['output'];
|
|
23680
23819
|
license?: Maybe<AppInstallationLicense>;
|
|
@@ -23682,6 +23821,7 @@ export declare type Extension = {
|
|
|
23682
23821
|
migrationKey?: Maybe<Scalars['String']['output']>;
|
|
23683
23822
|
name?: Maybe<Scalars['String']['output']>;
|
|
23684
23823
|
oauthClientId: Scalars['ID']['output'];
|
|
23824
|
+
overrides?: Maybe<Scalars['JSON']['output']>;
|
|
23685
23825
|
principal?: Maybe<AppPrincipal>;
|
|
23686
23826
|
properties: Scalars['JSON']['output'];
|
|
23687
23827
|
remoteInstallationRegion?: Maybe<Scalars['String']['output']>;
|
|
@@ -23925,6 +24065,13 @@ export declare type ExternalCollaboratorFeature = {
|
|
|
23925
24065
|
__typename?: 'ExternalCollaboratorFeature';
|
|
23926
24066
|
isEntitled: Scalars['Boolean']['output'];
|
|
23927
24067
|
};
|
|
24068
|
+
export declare enum ExternalCollaboratorsSortField {
|
|
24069
|
+
Name = "NAME"
|
|
24070
|
+
}
|
|
24071
|
+
export declare type ExternalCollaboratorsSortType = {
|
|
24072
|
+
field?: InputMaybe<ExternalCollaboratorsSortField>;
|
|
24073
|
+
isAscending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
24074
|
+
};
|
|
23928
24075
|
export declare type ExternalComment = Node & {
|
|
23929
24076
|
__typename?: 'ExternalComment';
|
|
23930
24077
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
@@ -24165,6 +24312,97 @@ export declare type ExternalEntities = {
|
|
|
24165
24312
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
24166
24313
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
24167
24314
|
};
|
|
24315
|
+
export declare type ExternalEntitiesV2ForHydration = {
|
|
24316
|
+
__typename?: 'ExternalEntitiesV2ForHydration';
|
|
24317
|
+
branch?: Maybe<Array<Maybe<ExternalBranch>>>;
|
|
24318
|
+
buildInfo?: Maybe<Array<Maybe<ExternalBuildInfo>>>;
|
|
24319
|
+
calendarEvent?: Maybe<Array<Maybe<ExternalCalendarEvent>>>;
|
|
24320
|
+
comment?: Maybe<Array<Maybe<ExternalComment>>>;
|
|
24321
|
+
commit?: Maybe<Array<Maybe<ExternalCommit>>>;
|
|
24322
|
+
conversation?: Maybe<Array<Maybe<ExternalConversation>>>;
|
|
24323
|
+
deployment?: Maybe<Array<Maybe<ExternalDeployment>>>;
|
|
24324
|
+
design?: Maybe<Array<Maybe<ExternalDesign>>>;
|
|
24325
|
+
document?: Maybe<Array<Maybe<ExternalDocument>>>;
|
|
24326
|
+
featureFlag?: Maybe<Array<Maybe<ExternalFeatureFlag>>>;
|
|
24327
|
+
message?: Maybe<Array<Maybe<ExternalMessage>>>;
|
|
24328
|
+
organisation?: Maybe<Array<Maybe<ExternalOrganisation>>>;
|
|
24329
|
+
position?: Maybe<Array<Maybe<ExternalPosition>>>;
|
|
24330
|
+
pullRequest?: Maybe<Array<Maybe<ExternalPullRequest>>>;
|
|
24331
|
+
remoteLink?: Maybe<Array<Maybe<ExternalRemoteLink>>>;
|
|
24332
|
+
repository?: Maybe<Array<Maybe<ExternalRepository>>>;
|
|
24333
|
+
space?: Maybe<Array<Maybe<ExternalSpace>>>;
|
|
24334
|
+
video?: Maybe<Array<Maybe<ExternalVideo>>>;
|
|
24335
|
+
vulnerability?: Maybe<Array<Maybe<ExternalVulnerability>>>;
|
|
24336
|
+
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
24337
|
+
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
24338
|
+
};
|
|
24339
|
+
export declare type ExternalEntitiesV2ForHydrationBranchArgs = {
|
|
24340
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24341
|
+
};
|
|
24342
|
+
export declare type ExternalEntitiesV2ForHydrationBuildInfoArgs = {
|
|
24343
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24344
|
+
};
|
|
24345
|
+
export declare type ExternalEntitiesV2ForHydrationCalendarEventArgs = {
|
|
24346
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24347
|
+
};
|
|
24348
|
+
export declare type ExternalEntitiesV2ForHydrationCommentArgs = {
|
|
24349
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24350
|
+
};
|
|
24351
|
+
export declare type ExternalEntitiesV2ForHydrationCommitArgs = {
|
|
24352
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24353
|
+
};
|
|
24354
|
+
export declare type ExternalEntitiesV2ForHydrationConversationArgs = {
|
|
24355
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24356
|
+
};
|
|
24357
|
+
export declare type ExternalEntitiesV2ForHydrationDeploymentArgs = {
|
|
24358
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24359
|
+
};
|
|
24360
|
+
export declare type ExternalEntitiesV2ForHydrationDesignArgs = {
|
|
24361
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24362
|
+
};
|
|
24363
|
+
export declare type ExternalEntitiesV2ForHydrationDocumentArgs = {
|
|
24364
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24365
|
+
};
|
|
24366
|
+
export declare type ExternalEntitiesV2ForHydrationFeatureFlagArgs = {
|
|
24367
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24368
|
+
};
|
|
24369
|
+
export declare type ExternalEntitiesV2ForHydrationMessageArgs = {
|
|
24370
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24371
|
+
};
|
|
24372
|
+
export declare type ExternalEntitiesV2ForHydrationOrganisationArgs = {
|
|
24373
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24374
|
+
};
|
|
24375
|
+
export declare type ExternalEntitiesV2ForHydrationPositionArgs = {
|
|
24376
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24377
|
+
};
|
|
24378
|
+
export declare type ExternalEntitiesV2ForHydrationPullRequestArgs = {
|
|
24379
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24380
|
+
};
|
|
24381
|
+
export declare type ExternalEntitiesV2ForHydrationRemoteLinkArgs = {
|
|
24382
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24383
|
+
};
|
|
24384
|
+
export declare type ExternalEntitiesV2ForHydrationRepositoryArgs = {
|
|
24385
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24386
|
+
};
|
|
24387
|
+
export declare type ExternalEntitiesV2ForHydrationSpaceArgs = {
|
|
24388
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24389
|
+
};
|
|
24390
|
+
export declare type ExternalEntitiesV2ForHydrationVideoArgs = {
|
|
24391
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24392
|
+
};
|
|
24393
|
+
export declare type ExternalEntitiesV2ForHydrationVulnerabilityArgs = {
|
|
24394
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24395
|
+
};
|
|
24396
|
+
export declare type ExternalEntitiesV2ForHydrationWorkItemArgs = {
|
|
24397
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24398
|
+
};
|
|
24399
|
+
export declare type ExternalEntitiesV2ForHydrationWorkerArgs = {
|
|
24400
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24401
|
+
};
|
|
24402
|
+
export declare type ExternalEntitiesV2ForHydrationInput = {
|
|
24403
|
+
ari?: InputMaybe<Scalars['ID']['input']>;
|
|
24404
|
+
graphWorkspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
24405
|
+
};
|
|
24168
24406
|
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
24407
|
export declare type ExternalEnvironment = {
|
|
24170
24408
|
__typename?: 'ExternalEnvironment';
|
|
@@ -27057,7 +27295,6 @@ export declare type GraphJiraIssue = Node & {
|
|
|
27057
27295
|
__typename?: 'GraphJiraIssue';
|
|
27058
27296
|
data?: Maybe<JiraIssue>;
|
|
27059
27297
|
id: Scalars['ID']['output'];
|
|
27060
|
-
incident?: Maybe<JsmIncident>;
|
|
27061
27298
|
};
|
|
27062
27299
|
export declare type GraphJiraIssueConnection = {
|
|
27063
27300
|
__typename?: 'GraphJiraIssueConnection';
|
|
@@ -29618,6 +29855,8 @@ export declare type GraphStore = {
|
|
|
29618
29855
|
atlasGoalHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection>;
|
|
29619
29856
|
atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
|
|
29620
29857
|
atlasGoalHasSubAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection>;
|
|
29858
|
+
atlasGoalHasUpdate?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateConnection>;
|
|
29859
|
+
atlasGoalHasUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection>;
|
|
29621
29860
|
atlasHomeFeed: GraphStoreAtlasHomeQueryConnection;
|
|
29622
29861
|
atlasProjectContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection>;
|
|
29623
29862
|
atlasProjectContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseConnection>;
|
|
@@ -29631,12 +29870,18 @@ export declare type GraphStore = {
|
|
|
29631
29870
|
atlasProjectHasFollowerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerInverseConnection>;
|
|
29632
29871
|
atlasProjectHasOwner?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerConnection>;
|
|
29633
29872
|
atlasProjectHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerInverseConnection>;
|
|
29873
|
+
atlasProjectHasUpdate?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateConnection>;
|
|
29874
|
+
atlasProjectHasUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection>;
|
|
29634
29875
|
atlasProjectIsRelatedToAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection>;
|
|
29635
29876
|
atlasProjectIsRelatedToAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectInverseConnection>;
|
|
29636
29877
|
atlasProjectIsTrackedOnJiraEpic?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
29637
29878
|
atlasProjectIsTrackedOnJiraEpicInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseConnection>;
|
|
29638
29879
|
atlasProjectIsTrackedOnJiraEpicInverseRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
29639
29880
|
atlasProjectIsTrackedOnJiraEpicRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
29881
|
+
boardBelongsToProject?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectConnection>;
|
|
29882
|
+
boardBelongsToProjectInverse?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseConnection>;
|
|
29883
|
+
calendarHasLinkedDocument?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentConnection>;
|
|
29884
|
+
calendarHasLinkedDocumentInverse?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentInverseConnection>;
|
|
29640
29885
|
componentAssociatedDocument?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentConnection>;
|
|
29641
29886
|
componentAssociatedDocumentInverse?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentInverseConnection>;
|
|
29642
29887
|
componentAssociatedDocumentInverseRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
@@ -29650,8 +29895,12 @@ export declare type GraphStore = {
|
|
|
29650
29895
|
componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
|
|
29651
29896
|
componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
29652
29897
|
componentLinkedJswIssueRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
29898
|
+
confluenceBlogpostHasComment?: Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentConnection>;
|
|
29899
|
+
confluenceBlogpostHasCommentInverse?: Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseConnection>;
|
|
29653
29900
|
confluenceBlogpostSharedWithUser?: Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserConnection>;
|
|
29654
29901
|
confluenceBlogpostSharedWithUserInverse?: Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseConnection>;
|
|
29902
|
+
confluencePageHasComment?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentConnection>;
|
|
29903
|
+
confluencePageHasCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentInverseConnection>;
|
|
29655
29904
|
confluencePageHasConfluenceComment?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection>;
|
|
29656
29905
|
confluencePageHasConfluenceCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseConnection>;
|
|
29657
29906
|
confluencePageHasConfluenceDatabase?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseConnection>;
|
|
@@ -29694,6 +29943,8 @@ export declare type GraphStore = {
|
|
|
29694
29943
|
focusAreaHasFocusAreaBatch?: Maybe<GraphStoreBatchFocusAreaHasFocusAreaConnection>;
|
|
29695
29944
|
focusAreaHasFocusAreaInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasFocusAreaInverseConnection>;
|
|
29696
29945
|
focusAreaHasFocusAreaInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasFocusAreaConnection>;
|
|
29946
|
+
focusAreaHasPage?: Maybe<GraphStoreSimplifiedFocusAreaHasPageConnection>;
|
|
29947
|
+
focusAreaHasPageInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasPageInverseConnection>;
|
|
29697
29948
|
focusAreaHasProject?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectConnection>;
|
|
29698
29949
|
focusAreaHasProjectBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
29699
29950
|
focusAreaHasProjectInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseConnection>;
|
|
@@ -29793,6 +30044,8 @@ export declare type GraphStore = {
|
|
|
29793
30044
|
issueToWhiteboardInverse?: Maybe<GraphStoreSimplifiedIssueToWhiteboardInverseConnection>;
|
|
29794
30045
|
issueToWhiteboardInverseRelationship?: Maybe<GraphStoreFullIssueToWhiteboardConnection>;
|
|
29795
30046
|
issueToWhiteboardRelationship?: Maybe<GraphStoreFullIssueToWhiteboardConnection>;
|
|
30047
|
+
jcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationConnection>;
|
|
30048
|
+
jcsIssueAssociatedSupportEscalationInverse?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseConnection>;
|
|
29796
30049
|
jiraEpicContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection>;
|
|
29797
30050
|
jiraEpicContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseConnection>;
|
|
29798
30051
|
jiraEpicContributesToAtlasGoalInverseRelationship?: Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalConnection>;
|
|
@@ -29826,11 +30079,15 @@ export declare type GraphStore = {
|
|
|
29826
30079
|
linkedProjectHasVersionInverse?: Maybe<GraphStoreSimplifiedLinkedProjectHasVersionInverseConnection>;
|
|
29827
30080
|
linkedProjectHasVersionInverseRelationship?: Maybe<GraphStoreFullLinkedProjectHasVersionConnection>;
|
|
29828
30081
|
linkedProjectHasVersionRelationship?: Maybe<GraphStoreFullLinkedProjectHasVersionConnection>;
|
|
30082
|
+
loomVideoSharedWithUser?: Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserConnection>;
|
|
30083
|
+
loomVideoSharedWithUserInverse?: Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserInverseConnection>;
|
|
29829
30084
|
mediaAttachedToContent?: Maybe<GraphStoreSimplifiedMediaAttachedToContentConnection>;
|
|
29830
30085
|
mediaAttachedToContentBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
|
|
29831
30086
|
mediaAttachedToContentInverseBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
|
|
30087
|
+
meetingHasMeetingNotesPage?: Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageConnection>;
|
|
29832
30088
|
meetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection>;
|
|
29833
30089
|
meetingRecordingOwnerHasMeetingNotesFolderInverse?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection>;
|
|
30090
|
+
meetingRecurrenceHasMeetingRecurrenceNotesPage?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection>;
|
|
29834
30091
|
onPremProjectHasIssue?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueConnection>;
|
|
29835
30092
|
onPremProjectHasIssueInverse?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueInverseConnection>;
|
|
29836
30093
|
operationsContainerImpactedByIncident?: Maybe<GraphStoreSimplifiedOperationsContainerImpactedByIncidentConnection>;
|
|
@@ -29946,11 +30203,15 @@ export declare type GraphStore = {
|
|
|
29946
30203
|
projectHasVersionRelationship?: Maybe<GraphStoreFullProjectHasVersionConnection>;
|
|
29947
30204
|
projectLinkedToCompassComponent?: Maybe<GraphStoreSimplifiedProjectLinkedToCompassComponentConnection>;
|
|
29948
30205
|
projectLinkedToCompassComponentInverse?: Maybe<GraphStoreSimplifiedProjectLinkedToCompassComponentInverseConnection>;
|
|
30206
|
+
pullRequestLinksToService?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceConnection>;
|
|
30207
|
+
pullRequestLinksToServiceInverse?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection>;
|
|
29949
30208
|
securityContainerAssociatedToVulnerability?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
29950
30209
|
securityContainerAssociatedToVulnerabilityBatch?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
29951
30210
|
securityContainerAssociatedToVulnerabilityInverseBatch?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
29952
30211
|
securityContainerAssociatedToVulnerabilityInverseRelationship?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
29953
30212
|
securityContainerAssociatedToVulnerabilityRelationship?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
30213
|
+
serviceAssociatedBranch?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchConnection>;
|
|
30214
|
+
serviceAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchInverseConnection>;
|
|
29954
30215
|
serviceAssociatedDeployment?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentConnection>;
|
|
29955
30216
|
serviceAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentInverseConnection>;
|
|
29956
30217
|
serviceAssociatedRemoteLink?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection>;
|
|
@@ -30022,6 +30283,8 @@ export declare type GraphStore = {
|
|
|
30022
30283
|
thirdPartyToGraphRemoteLink?: Maybe<GraphStoreSimplifiedThirdPartyToGraphRemoteLinkConnection>;
|
|
30023
30284
|
userAssignedIncident?: Maybe<GraphStoreSimplifiedUserAssignedIncidentConnection>;
|
|
30024
30285
|
userAssignedIncidentInverse?: Maybe<GraphStoreSimplifiedUserAssignedIncidentInverseConnection>;
|
|
30286
|
+
userAssignedIssue?: Maybe<GraphStoreSimplifiedUserAssignedIssueConnection>;
|
|
30287
|
+
userAssignedIssueInverse?: Maybe<GraphStoreSimplifiedUserAssignedIssueInverseConnection>;
|
|
30025
30288
|
userAssignedPir?: Maybe<GraphStoreSimplifiedUserAssignedPirConnection>;
|
|
30026
30289
|
userAssignedPirInverse?: Maybe<GraphStoreSimplifiedUserAssignedPirInverseConnection>;
|
|
30027
30290
|
userAttendedCalendarEvent?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventConnection>;
|
|
@@ -30064,12 +30327,16 @@ export declare type GraphStore = {
|
|
|
30064
30327
|
userCreatedDesignInverse?: Maybe<GraphStoreSimplifiedUserCreatedDesignInverseConnection>;
|
|
30065
30328
|
userCreatedDocument?: Maybe<GraphStoreSimplifiedUserCreatedDocumentConnection>;
|
|
30066
30329
|
userCreatedDocumentInverse?: Maybe<GraphStoreSimplifiedUserCreatedDocumentInverseConnection>;
|
|
30330
|
+
userCreatedIssueComment?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentConnection>;
|
|
30331
|
+
userCreatedIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentInverseConnection>;
|
|
30067
30332
|
userCreatedIssueWorklog?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogConnection>;
|
|
30068
30333
|
userCreatedIssueWorklogInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogInverseConnection>;
|
|
30069
30334
|
userCreatedLoomVideo?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoConnection>;
|
|
30070
30335
|
userCreatedLoomVideoInverse?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoInverseConnection>;
|
|
30071
30336
|
userCreatedMessage?: Maybe<GraphStoreSimplifiedUserCreatedMessageConnection>;
|
|
30072
30337
|
userCreatedMessageInverse?: Maybe<GraphStoreSimplifiedUserCreatedMessageInverseConnection>;
|
|
30338
|
+
userCreatedRelease?: Maybe<GraphStoreSimplifiedUserCreatedReleaseConnection>;
|
|
30339
|
+
userCreatedReleaseInverse?: Maybe<GraphStoreSimplifiedUserCreatedReleaseInverseConnection>;
|
|
30073
30340
|
userCreatedRemoteLink?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkConnection>;
|
|
30074
30341
|
userCreatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkInverseConnection>;
|
|
30075
30342
|
userCreatedRepository?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryConnection>;
|
|
@@ -30116,6 +30383,8 @@ export declare type GraphStore = {
|
|
|
30116
30383
|
userOwnedRepositoryInverse?: Maybe<GraphStoreSimplifiedUserOwnedRepositoryInverseConnection>;
|
|
30117
30384
|
userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
|
|
30118
30385
|
userOwnsComponentInverse?: Maybe<GraphStoreSimplifiedUserOwnsComponentInverseConnection>;
|
|
30386
|
+
userOwnsFocusArea?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaConnection>;
|
|
30387
|
+
userOwnsFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaInverseConnection>;
|
|
30119
30388
|
userReportedIncident?: Maybe<GraphStoreSimplifiedUserReportedIncidentConnection>;
|
|
30120
30389
|
userReportedIncidentInverse?: Maybe<GraphStoreSimplifiedUserReportedIncidentInverseConnection>;
|
|
30121
30390
|
userReportsIssue?: Maybe<GraphStoreSimplifiedUserReportsIssueConnection>;
|
|
@@ -30126,6 +30395,7 @@ export declare type GraphStore = {
|
|
|
30126
30395
|
userTaggedInCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInCommentInverseConnection>;
|
|
30127
30396
|
userTaggedInConfluencePage?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageConnection>;
|
|
30128
30397
|
userTaggedInConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageInverseConnection>;
|
|
30398
|
+
userTaggedInIssueComment?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentConnection>;
|
|
30129
30399
|
userTaggedInIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection>;
|
|
30130
30400
|
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
30131
30401
|
userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
|
|
@@ -30141,6 +30411,7 @@ export declare type GraphStore = {
|
|
|
30141
30411
|
userUpdatedGraphDocumentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentInverseConnection>;
|
|
30142
30412
|
userUpdatedIssue?: Maybe<GraphStoreSimplifiedUserUpdatedIssueConnection>;
|
|
30143
30413
|
userUpdatedIssueInverse?: Maybe<GraphStoreSimplifiedUserUpdatedIssueInverseConnection>;
|
|
30414
|
+
userUpdatedIssueStatusInverse?: Maybe<GraphStoreSimplifiedUserUpdatedIssueStatusInverseConnection>;
|
|
30144
30415
|
userViewedAtlasGoal?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalConnection>;
|
|
30145
30416
|
userViewedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection>;
|
|
30146
30417
|
userViewedAtlasProject?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectConnection>;
|
|
@@ -30278,6 +30549,22 @@ export declare type GraphStoreAtlasGoalHasSubAtlasGoalInverseArgs = {
|
|
|
30278
30549
|
id: Scalars['ID']['input'];
|
|
30279
30550
|
sort?: InputMaybe<GraphStoreAtlasGoalHasSubAtlasGoalSortInput>;
|
|
30280
30551
|
};
|
|
30552
|
+
export declare type GraphStoreAtlasGoalHasUpdateArgs = {
|
|
30553
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30554
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30555
|
+
filter?: InputMaybe<GraphStoreAtlasGoalHasUpdateFilterInput>;
|
|
30556
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30557
|
+
id: Scalars['ID']['input'];
|
|
30558
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasUpdateSortInput>;
|
|
30559
|
+
};
|
|
30560
|
+
export declare type GraphStoreAtlasGoalHasUpdateInverseArgs = {
|
|
30561
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30562
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30563
|
+
filter?: InputMaybe<GraphStoreAtlasGoalHasUpdateFilterInput>;
|
|
30564
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30565
|
+
id: Scalars['ID']['input'];
|
|
30566
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasUpdateSortInput>;
|
|
30567
|
+
};
|
|
30281
30568
|
export declare type GraphStoreAtlasHomeFeedArgs = {
|
|
30282
30569
|
container_ids: Array<Scalars['ID']['input']>;
|
|
30283
30570
|
ranking_criteria?: InputMaybe<GraphStoreAtlasHomeRankingCriteria>;
|
|
@@ -30362,6 +30649,22 @@ export declare type GraphStoreAtlasProjectHasOwnerInverseArgs = {
|
|
|
30362
30649
|
id: Scalars['ID']['input'];
|
|
30363
30650
|
sort?: InputMaybe<GraphStoreAtlasProjectHasOwnerSortInput>;
|
|
30364
30651
|
};
|
|
30652
|
+
export declare type GraphStoreAtlasProjectHasUpdateArgs = {
|
|
30653
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30654
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30655
|
+
filter?: InputMaybe<GraphStoreAtlasProjectHasUpdateFilterInput>;
|
|
30656
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30657
|
+
id: Scalars['ID']['input'];
|
|
30658
|
+
sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
|
|
30659
|
+
};
|
|
30660
|
+
export declare type GraphStoreAtlasProjectHasUpdateInverseArgs = {
|
|
30661
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30662
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30663
|
+
filter?: InputMaybe<GraphStoreAtlasProjectHasUpdateFilterInput>;
|
|
30664
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30665
|
+
id: Scalars['ID']['input'];
|
|
30666
|
+
sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
|
|
30667
|
+
};
|
|
30365
30668
|
export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectArgs = {
|
|
30366
30669
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30367
30670
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30400,6 +30703,34 @@ export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicRelationshipArgs =
|
|
|
30400
30703
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30401
30704
|
id: Scalars['ID']['input'];
|
|
30402
30705
|
};
|
|
30706
|
+
export declare type GraphStoreBoardBelongsToProjectArgs = {
|
|
30707
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30708
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30709
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30710
|
+
id: Scalars['ID']['input'];
|
|
30711
|
+
sort?: InputMaybe<GraphStoreBoardBelongsToProjectSortInput>;
|
|
30712
|
+
};
|
|
30713
|
+
export declare type GraphStoreBoardBelongsToProjectInverseArgs = {
|
|
30714
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30715
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30716
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30717
|
+
id: Scalars['ID']['input'];
|
|
30718
|
+
sort?: InputMaybe<GraphStoreBoardBelongsToProjectSortInput>;
|
|
30719
|
+
};
|
|
30720
|
+
export declare type GraphStoreCalendarHasLinkedDocumentArgs = {
|
|
30721
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30722
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30723
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30724
|
+
id: Scalars['ID']['input'];
|
|
30725
|
+
sort?: InputMaybe<GraphStoreCalendarHasLinkedDocumentSortInput>;
|
|
30726
|
+
};
|
|
30727
|
+
export declare type GraphStoreCalendarHasLinkedDocumentInverseArgs = {
|
|
30728
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30729
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30730
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30731
|
+
id: Scalars['ID']['input'];
|
|
30732
|
+
sort?: InputMaybe<GraphStoreCalendarHasLinkedDocumentSortInput>;
|
|
30733
|
+
};
|
|
30403
30734
|
export declare type GraphStoreComponentAssociatedDocumentArgs = {
|
|
30404
30735
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30405
30736
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30479,6 +30810,20 @@ export declare type GraphStoreComponentLinkedJswIssueRelationshipArgs = {
|
|
|
30479
30810
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30480
30811
|
id: Scalars['ID']['input'];
|
|
30481
30812
|
};
|
|
30813
|
+
export declare type GraphStoreConfluenceBlogpostHasCommentArgs = {
|
|
30814
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30815
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30816
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30817
|
+
id: Scalars['ID']['input'];
|
|
30818
|
+
sort?: InputMaybe<GraphStoreConfluenceBlogpostHasCommentSortInput>;
|
|
30819
|
+
};
|
|
30820
|
+
export declare type GraphStoreConfluenceBlogpostHasCommentInverseArgs = {
|
|
30821
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30822
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30823
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30824
|
+
id: Scalars['ID']['input'];
|
|
30825
|
+
sort?: InputMaybe<GraphStoreConfluenceBlogpostHasCommentSortInput>;
|
|
30826
|
+
};
|
|
30482
30827
|
export declare type GraphStoreConfluenceBlogpostSharedWithUserArgs = {
|
|
30483
30828
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30484
30829
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30493,6 +30838,20 @@ export declare type GraphStoreConfluenceBlogpostSharedWithUserInverseArgs = {
|
|
|
30493
30838
|
id: Scalars['ID']['input'];
|
|
30494
30839
|
sort?: InputMaybe<GraphStoreConfluenceBlogpostSharedWithUserSortInput>;
|
|
30495
30840
|
};
|
|
30841
|
+
export declare type GraphStoreConfluencePageHasCommentArgs = {
|
|
30842
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30843
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30844
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30845
|
+
id: Scalars['ID']['input'];
|
|
30846
|
+
sort?: InputMaybe<GraphStoreConfluencePageHasCommentSortInput>;
|
|
30847
|
+
};
|
|
30848
|
+
export declare type GraphStoreConfluencePageHasCommentInverseArgs = {
|
|
30849
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30850
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30851
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30852
|
+
id: Scalars['ID']['input'];
|
|
30853
|
+
sort?: InputMaybe<GraphStoreConfluencePageHasCommentSortInput>;
|
|
30854
|
+
};
|
|
30496
30855
|
export declare type GraphStoreConfluencePageHasConfluenceCommentArgs = {
|
|
30497
30856
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30498
30857
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30773,6 +31132,20 @@ export declare type GraphStoreFocusAreaHasFocusAreaInverseBatchArgs = {
|
|
|
30773
31132
|
ids: Array<Scalars['ID']['input']>;
|
|
30774
31133
|
sort?: InputMaybe<GraphStoreFocusAreaHasFocusAreaSortInput>;
|
|
30775
31134
|
};
|
|
31135
|
+
export declare type GraphStoreFocusAreaHasPageArgs = {
|
|
31136
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31137
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31138
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31139
|
+
id: Scalars['ID']['input'];
|
|
31140
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasPageSortInput>;
|
|
31141
|
+
};
|
|
31142
|
+
export declare type GraphStoreFocusAreaHasPageInverseArgs = {
|
|
31143
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31144
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31145
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31146
|
+
id: Scalars['ID']['input'];
|
|
31147
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasPageSortInput>;
|
|
31148
|
+
};
|
|
30776
31149
|
export declare type GraphStoreFocusAreaHasProjectArgs = {
|
|
30777
31150
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30778
31151
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31386,6 +31759,22 @@ export declare type GraphStoreIssueToWhiteboardRelationshipArgs = {
|
|
|
31386
31759
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31387
31760
|
id: Scalars['ID']['input'];
|
|
31388
31761
|
};
|
|
31762
|
+
export declare type GraphStoreJcsIssueAssociatedSupportEscalationArgs = {
|
|
31763
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31764
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31765
|
+
filter?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationFilterInput>;
|
|
31766
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31767
|
+
id: Scalars['ID']['input'];
|
|
31768
|
+
sort?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationSortInput>;
|
|
31769
|
+
};
|
|
31770
|
+
export declare type GraphStoreJcsIssueAssociatedSupportEscalationInverseArgs = {
|
|
31771
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31772
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31773
|
+
filter?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationFilterInput>;
|
|
31774
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31775
|
+
id: Scalars['ID']['input'];
|
|
31776
|
+
sort?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationSortInput>;
|
|
31777
|
+
};
|
|
31389
31778
|
export declare type GraphStoreJiraEpicContributesToAtlasGoalArgs = {
|
|
31390
31779
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31391
31780
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31593,6 +31982,20 @@ export declare type GraphStoreLinkedProjectHasVersionRelationshipArgs = {
|
|
|
31593
31982
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31594
31983
|
id: Scalars['ID']['input'];
|
|
31595
31984
|
};
|
|
31985
|
+
export declare type GraphStoreLoomVideoSharedWithUserArgs = {
|
|
31986
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31987
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31988
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31989
|
+
id: Scalars['ID']['input'];
|
|
31990
|
+
sort?: InputMaybe<GraphStoreLoomVideoSharedWithUserSortInput>;
|
|
31991
|
+
};
|
|
31992
|
+
export declare type GraphStoreLoomVideoSharedWithUserInverseArgs = {
|
|
31993
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31994
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31995
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31996
|
+
id: Scalars['ID']['input'];
|
|
31997
|
+
sort?: InputMaybe<GraphStoreLoomVideoSharedWithUserSortInput>;
|
|
31998
|
+
};
|
|
31596
31999
|
export declare type GraphStoreMediaAttachedToContentArgs = {
|
|
31597
32000
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31598
32001
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31612,6 +32015,13 @@ export declare type GraphStoreMediaAttachedToContentInverseBatchArgs = {
|
|
|
31612
32015
|
ids: Array<Scalars['ID']['input']>;
|
|
31613
32016
|
sort?: InputMaybe<GraphStoreMediaAttachedToContentSortInput>;
|
|
31614
32017
|
};
|
|
32018
|
+
export declare type GraphStoreMeetingHasMeetingNotesPageArgs = {
|
|
32019
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32020
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32021
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32022
|
+
id: Scalars['ID']['input'];
|
|
32023
|
+
sort?: InputMaybe<GraphStoreMeetingHasMeetingNotesPageSortInput>;
|
|
32024
|
+
};
|
|
31615
32025
|
export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
31616
32026
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31617
32027
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31626,6 +32036,13 @@ export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderInverseA
|
|
|
31626
32036
|
id: Scalars['ID']['input'];
|
|
31627
32037
|
sort?: InputMaybe<GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInput>;
|
|
31628
32038
|
};
|
|
32039
|
+
export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageArgs = {
|
|
32040
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32041
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32042
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32043
|
+
id: Scalars['ID']['input'];
|
|
32044
|
+
sort?: InputMaybe<GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput>;
|
|
32045
|
+
};
|
|
31629
32046
|
export declare type GraphStoreOnPremProjectHasIssueArgs = {
|
|
31630
32047
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31631
32048
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32363,6 +32780,20 @@ export declare type GraphStoreProjectLinkedToCompassComponentInverseArgs = {
|
|
|
32363
32780
|
id: Scalars['ID']['input'];
|
|
32364
32781
|
sort?: InputMaybe<GraphStoreProjectLinkedToCompassComponentSortInput>;
|
|
32365
32782
|
};
|
|
32783
|
+
export declare type GraphStorePullRequestLinksToServiceArgs = {
|
|
32784
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32785
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32786
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32787
|
+
id: Scalars['ID']['input'];
|
|
32788
|
+
sort?: InputMaybe<GraphStorePullRequestLinksToServiceSortInput>;
|
|
32789
|
+
};
|
|
32790
|
+
export declare type GraphStorePullRequestLinksToServiceInverseArgs = {
|
|
32791
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32792
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32793
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32794
|
+
id: Scalars['ID']['input'];
|
|
32795
|
+
sort?: InputMaybe<GraphStorePullRequestLinksToServiceSortInput>;
|
|
32796
|
+
};
|
|
32366
32797
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityArgs = {
|
|
32367
32798
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32368
32799
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32392,6 +32823,20 @@ export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityRelation
|
|
|
32392
32823
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32393
32824
|
id: Scalars['ID']['input'];
|
|
32394
32825
|
};
|
|
32826
|
+
export declare type GraphStoreServiceAssociatedBranchArgs = {
|
|
32827
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32828
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32829
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32830
|
+
id: Scalars['ID']['input'];
|
|
32831
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedBranchSortInput>;
|
|
32832
|
+
};
|
|
32833
|
+
export declare type GraphStoreServiceAssociatedBranchInverseArgs = {
|
|
32834
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32835
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32836
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32837
|
+
id: Scalars['ID']['input'];
|
|
32838
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedBranchSortInput>;
|
|
32839
|
+
};
|
|
32395
32840
|
export declare type GraphStoreServiceAssociatedDeploymentArgs = {
|
|
32396
32841
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32397
32842
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32862,6 +33307,20 @@ export declare type GraphStoreUserAssignedIncidentInverseArgs = {
|
|
|
32862
33307
|
id: Scalars['ID']['input'];
|
|
32863
33308
|
sort?: InputMaybe<GraphStoreUserAssignedIncidentSortInput>;
|
|
32864
33309
|
};
|
|
33310
|
+
export declare type GraphStoreUserAssignedIssueArgs = {
|
|
33311
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33312
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33313
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33314
|
+
id: Scalars['ID']['input'];
|
|
33315
|
+
sort?: InputMaybe<GraphStoreUserAssignedIssueSortInput>;
|
|
33316
|
+
};
|
|
33317
|
+
export declare type GraphStoreUserAssignedIssueInverseArgs = {
|
|
33318
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33319
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33320
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33321
|
+
id: Scalars['ID']['input'];
|
|
33322
|
+
sort?: InputMaybe<GraphStoreUserAssignedIssueSortInput>;
|
|
33323
|
+
};
|
|
32865
33324
|
export declare type GraphStoreUserAssignedPirArgs = {
|
|
32866
33325
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32867
33326
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33158,6 +33617,20 @@ export declare type GraphStoreUserCreatedDocumentInverseArgs = {
|
|
|
33158
33617
|
id: Scalars['ID']['input'];
|
|
33159
33618
|
sort?: InputMaybe<GraphStoreUserCreatedDocumentSortInput>;
|
|
33160
33619
|
};
|
|
33620
|
+
export declare type GraphStoreUserCreatedIssueCommentArgs = {
|
|
33621
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33622
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33623
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33624
|
+
id: Scalars['ID']['input'];
|
|
33625
|
+
sort?: InputMaybe<GraphStoreUserCreatedIssueCommentSortInput>;
|
|
33626
|
+
};
|
|
33627
|
+
export declare type GraphStoreUserCreatedIssueCommentInverseArgs = {
|
|
33628
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33629
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33630
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33631
|
+
id: Scalars['ID']['input'];
|
|
33632
|
+
sort?: InputMaybe<GraphStoreUserCreatedIssueCommentSortInput>;
|
|
33633
|
+
};
|
|
33161
33634
|
export declare type GraphStoreUserCreatedIssueWorklogArgs = {
|
|
33162
33635
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33163
33636
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33200,6 +33673,20 @@ export declare type GraphStoreUserCreatedMessageInverseArgs = {
|
|
|
33200
33673
|
id: Scalars['ID']['input'];
|
|
33201
33674
|
sort?: InputMaybe<GraphStoreUserCreatedMessageSortInput>;
|
|
33202
33675
|
};
|
|
33676
|
+
export declare type GraphStoreUserCreatedReleaseArgs = {
|
|
33677
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33678
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33679
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33680
|
+
id: Scalars['ID']['input'];
|
|
33681
|
+
sort?: InputMaybe<GraphStoreUserCreatedReleaseSortInput>;
|
|
33682
|
+
};
|
|
33683
|
+
export declare type GraphStoreUserCreatedReleaseInverseArgs = {
|
|
33684
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33685
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33686
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33687
|
+
id: Scalars['ID']['input'];
|
|
33688
|
+
sort?: InputMaybe<GraphStoreUserCreatedReleaseSortInput>;
|
|
33689
|
+
};
|
|
33203
33690
|
export declare type GraphStoreUserCreatedRemoteLinkArgs = {
|
|
33204
33691
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33205
33692
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33524,6 +34011,20 @@ export declare type GraphStoreUserOwnsComponentInverseArgs = {
|
|
|
33524
34011
|
id: Scalars['ID']['input'];
|
|
33525
34012
|
sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
|
|
33526
34013
|
};
|
|
34014
|
+
export declare type GraphStoreUserOwnsFocusAreaArgs = {
|
|
34015
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34016
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34017
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34018
|
+
id: Scalars['ID']['input'];
|
|
34019
|
+
sort?: InputMaybe<GraphStoreUserOwnsFocusAreaSortInput>;
|
|
34020
|
+
};
|
|
34021
|
+
export declare type GraphStoreUserOwnsFocusAreaInverseArgs = {
|
|
34022
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34023
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34024
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34025
|
+
id: Scalars['ID']['input'];
|
|
34026
|
+
sort?: InputMaybe<GraphStoreUserOwnsFocusAreaSortInput>;
|
|
34027
|
+
};
|
|
33527
34028
|
export declare type GraphStoreUserReportedIncidentArgs = {
|
|
33528
34029
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33529
34030
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33594,6 +34095,13 @@ export declare type GraphStoreUserTaggedInConfluencePageInverseArgs = {
|
|
|
33594
34095
|
id: Scalars['ID']['input'];
|
|
33595
34096
|
sort?: InputMaybe<GraphStoreUserTaggedInConfluencePageSortInput>;
|
|
33596
34097
|
};
|
|
34098
|
+
export declare type GraphStoreUserTaggedInIssueCommentArgs = {
|
|
34099
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34100
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34101
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34102
|
+
id: Scalars['ID']['input'];
|
|
34103
|
+
sort?: InputMaybe<GraphStoreUserTaggedInIssueCommentSortInput>;
|
|
34104
|
+
};
|
|
33597
34105
|
export declare type GraphStoreUserTaggedInIssueCommentInverseArgs = {
|
|
33598
34106
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33599
34107
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33699,6 +34207,13 @@ export declare type GraphStoreUserUpdatedIssueInverseArgs = {
|
|
|
33699
34207
|
id: Scalars['ID']['input'];
|
|
33700
34208
|
sort?: InputMaybe<GraphStoreUserUpdatedIssueSortInput>;
|
|
33701
34209
|
};
|
|
34210
|
+
export declare type GraphStoreUserUpdatedIssueStatusInverseArgs = {
|
|
34211
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34212
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34213
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34214
|
+
id: Scalars['ID']['input'];
|
|
34215
|
+
sort?: InputMaybe<GraphStoreUserUpdatedIssueStatusSortInput>;
|
|
34216
|
+
};
|
|
33702
34217
|
export declare type GraphStoreUserViewedAtlasGoalArgs = {
|
|
33703
34218
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33704
34219
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34123,8 +34638,109 @@ export declare type GraphStoreAtlasGoalHasOwnerSortInput = {
|
|
|
34123
34638
|
export declare type GraphStoreAtlasGoalHasSubAtlasGoalSortInput = {
|
|
34124
34639
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34125
34640
|
};
|
|
34126
|
-
export declare type
|
|
34127
|
-
|
|
34641
|
+
export declare type GraphStoreAtlasGoalHasUpdateConditionalFilterInput = {
|
|
34642
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
34643
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
34644
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
34645
|
+
relationship_createdBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
34646
|
+
relationship_creationDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34647
|
+
relationship_lastEditedBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
34648
|
+
relationship_lastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34649
|
+
relationship_newConfidence?: InputMaybe<GraphStoreAtlasGoalHasUpdateNewConfidenceFilterInput>;
|
|
34650
|
+
relationship_newScore?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34651
|
+
relationship_newStatus?: InputMaybe<GraphStoreAtlasGoalHasUpdateNewStatusFilterInput>;
|
|
34652
|
+
relationship_newTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34653
|
+
relationship_oldConfidence?: InputMaybe<GraphStoreAtlasGoalHasUpdateOldConfidenceFilterInput>;
|
|
34654
|
+
relationship_oldScore?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34655
|
+
relationship_oldStatus?: InputMaybe<GraphStoreAtlasGoalHasUpdateOldStatusFilterInput>;
|
|
34656
|
+
relationship_oldTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34657
|
+
relationship_updateType?: InputMaybe<GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput>;
|
|
34658
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
34659
|
+
};
|
|
34660
|
+
export declare type GraphStoreAtlasGoalHasUpdateFilterInput = {
|
|
34661
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasGoalHasUpdateConditionalFilterInput>>>;
|
|
34662
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasGoalHasUpdateConditionalFilterInput>>>;
|
|
34663
|
+
};
|
|
34664
|
+
export declare enum GraphStoreAtlasGoalHasUpdateNewConfidence {
|
|
34665
|
+
Day = "DAY",
|
|
34666
|
+
Month = "MONTH",
|
|
34667
|
+
NotSet = "NOT_SET",
|
|
34668
|
+
Quarter = "QUARTER"
|
|
34669
|
+
}
|
|
34670
|
+
export declare type GraphStoreAtlasGoalHasUpdateNewConfidenceFilterInput = {
|
|
34671
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewConfidence>>;
|
|
34672
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewConfidence>>;
|
|
34673
|
+
};
|
|
34674
|
+
export declare enum GraphStoreAtlasGoalHasUpdateNewStatus {
|
|
34675
|
+
AtRisk = "AT_RISK",
|
|
34676
|
+
Cancelled = "CANCELLED",
|
|
34677
|
+
Done = "DONE",
|
|
34678
|
+
NotSet = "NOT_SET",
|
|
34679
|
+
OffTrack = "OFF_TRACK",
|
|
34680
|
+
OnTrack = "ON_TRACK",
|
|
34681
|
+
Paused = "PAUSED",
|
|
34682
|
+
Pending = "PENDING"
|
|
34683
|
+
}
|
|
34684
|
+
export declare type GraphStoreAtlasGoalHasUpdateNewStatusFilterInput = {
|
|
34685
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewStatus>>;
|
|
34686
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewStatus>>;
|
|
34687
|
+
};
|
|
34688
|
+
export declare enum GraphStoreAtlasGoalHasUpdateOldConfidence {
|
|
34689
|
+
Day = "DAY",
|
|
34690
|
+
Month = "MONTH",
|
|
34691
|
+
NotSet = "NOT_SET",
|
|
34692
|
+
Null = "NULL",
|
|
34693
|
+
Quarter = "QUARTER"
|
|
34694
|
+
}
|
|
34695
|
+
export declare type GraphStoreAtlasGoalHasUpdateOldConfidenceFilterInput = {
|
|
34696
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldConfidence>>;
|
|
34697
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldConfidence>>;
|
|
34698
|
+
};
|
|
34699
|
+
export declare enum GraphStoreAtlasGoalHasUpdateOldStatus {
|
|
34700
|
+
AtRisk = "AT_RISK",
|
|
34701
|
+
Cancelled = "CANCELLED",
|
|
34702
|
+
Done = "DONE",
|
|
34703
|
+
NotSet = "NOT_SET",
|
|
34704
|
+
Null = "NULL",
|
|
34705
|
+
OffTrack = "OFF_TRACK",
|
|
34706
|
+
OnTrack = "ON_TRACK",
|
|
34707
|
+
Paused = "PAUSED",
|
|
34708
|
+
Pending = "PENDING"
|
|
34709
|
+
}
|
|
34710
|
+
export declare type GraphStoreAtlasGoalHasUpdateOldStatusFilterInput = {
|
|
34711
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldStatus>>;
|
|
34712
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldStatus>>;
|
|
34713
|
+
};
|
|
34714
|
+
export declare type GraphStoreAtlasGoalHasUpdateSortInput = {
|
|
34715
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
34716
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
34717
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34718
|
+
relationship_createdBy?: InputMaybe<GraphStoreSortInput>;
|
|
34719
|
+
relationship_creationDate?: InputMaybe<GraphStoreSortInput>;
|
|
34720
|
+
relationship_lastEditedBy?: InputMaybe<GraphStoreSortInput>;
|
|
34721
|
+
relationship_lastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
34722
|
+
relationship_newConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
34723
|
+
relationship_newScore?: InputMaybe<GraphStoreSortInput>;
|
|
34724
|
+
relationship_newStatus?: InputMaybe<GraphStoreSortInput>;
|
|
34725
|
+
relationship_newTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
34726
|
+
relationship_oldConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
34727
|
+
relationship_oldScore?: InputMaybe<GraphStoreSortInput>;
|
|
34728
|
+
relationship_oldStatus?: InputMaybe<GraphStoreSortInput>;
|
|
34729
|
+
relationship_oldTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
34730
|
+
relationship_updateType?: InputMaybe<GraphStoreSortInput>;
|
|
34731
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
34732
|
+
};
|
|
34733
|
+
export declare enum GraphStoreAtlasGoalHasUpdateUpdateType {
|
|
34734
|
+
NotSet = "NOT_SET",
|
|
34735
|
+
System = "SYSTEM",
|
|
34736
|
+
User = "USER"
|
|
34737
|
+
}
|
|
34738
|
+
export declare type GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput = {
|
|
34739
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
34740
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
34741
|
+
};
|
|
34742
|
+
export declare type GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion = ConfluencePage | JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
|
|
34743
|
+
export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = ConfluencePage | JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
|
|
34128
34744
|
export declare type GraphStoreAtlasHomeQueryConnection = {
|
|
34129
34745
|
__typename?: 'GraphStoreAtlasHomeQueryConnection';
|
|
34130
34746
|
nodes: Array<GraphStoreAtlasHomeQueryNode>;
|
|
@@ -34168,6 +34784,103 @@ export declare type GraphStoreAtlasProjectHasFollowerSortInput = {
|
|
|
34168
34784
|
export declare type GraphStoreAtlasProjectHasOwnerSortInput = {
|
|
34169
34785
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34170
34786
|
};
|
|
34787
|
+
export declare type GraphStoreAtlasProjectHasUpdateConditionalFilterInput = {
|
|
34788
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
34789
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
34790
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
34791
|
+
relationship_createdBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
34792
|
+
relationship_creationDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34793
|
+
relationship_lastEditedBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
34794
|
+
relationship_lastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34795
|
+
relationship_newConfidence?: InputMaybe<GraphStoreAtlasProjectHasUpdateNewConfidenceFilterInput>;
|
|
34796
|
+
relationship_newStatus?: InputMaybe<GraphStoreAtlasProjectHasUpdateNewStatusFilterInput>;
|
|
34797
|
+
relationship_newTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34798
|
+
relationship_oldConfidence?: InputMaybe<GraphStoreAtlasProjectHasUpdateOldConfidenceFilterInput>;
|
|
34799
|
+
relationship_oldStatus?: InputMaybe<GraphStoreAtlasProjectHasUpdateOldStatusFilterInput>;
|
|
34800
|
+
relationship_oldTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
34801
|
+
relationship_updateType?: InputMaybe<GraphStoreAtlasProjectHasUpdateUpdateTypeFilterInput>;
|
|
34802
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
34803
|
+
};
|
|
34804
|
+
export declare type GraphStoreAtlasProjectHasUpdateFilterInput = {
|
|
34805
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectHasUpdateConditionalFilterInput>>>;
|
|
34806
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectHasUpdateConditionalFilterInput>>>;
|
|
34807
|
+
};
|
|
34808
|
+
export declare enum GraphStoreAtlasProjectHasUpdateNewConfidence {
|
|
34809
|
+
Day = "DAY",
|
|
34810
|
+
Month = "MONTH",
|
|
34811
|
+
NotSet = "NOT_SET",
|
|
34812
|
+
Quarter = "QUARTER"
|
|
34813
|
+
}
|
|
34814
|
+
export declare type GraphStoreAtlasProjectHasUpdateNewConfidenceFilterInput = {
|
|
34815
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewConfidence>>;
|
|
34816
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewConfidence>>;
|
|
34817
|
+
};
|
|
34818
|
+
export declare enum GraphStoreAtlasProjectHasUpdateNewStatus {
|
|
34819
|
+
AtRisk = "AT_RISK",
|
|
34820
|
+
Cancelled = "CANCELLED",
|
|
34821
|
+
Done = "DONE",
|
|
34822
|
+
NotSet = "NOT_SET",
|
|
34823
|
+
OffTrack = "OFF_TRACK",
|
|
34824
|
+
OnTrack = "ON_TRACK",
|
|
34825
|
+
Paused = "PAUSED",
|
|
34826
|
+
Pending = "PENDING"
|
|
34827
|
+
}
|
|
34828
|
+
export declare type GraphStoreAtlasProjectHasUpdateNewStatusFilterInput = {
|
|
34829
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewStatus>>;
|
|
34830
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewStatus>>;
|
|
34831
|
+
};
|
|
34832
|
+
export declare enum GraphStoreAtlasProjectHasUpdateOldConfidence {
|
|
34833
|
+
Day = "DAY",
|
|
34834
|
+
Month = "MONTH",
|
|
34835
|
+
NotSet = "NOT_SET",
|
|
34836
|
+
Null = "NULL",
|
|
34837
|
+
Quarter = "QUARTER"
|
|
34838
|
+
}
|
|
34839
|
+
export declare type GraphStoreAtlasProjectHasUpdateOldConfidenceFilterInput = {
|
|
34840
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldConfidence>>;
|
|
34841
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldConfidence>>;
|
|
34842
|
+
};
|
|
34843
|
+
export declare enum GraphStoreAtlasProjectHasUpdateOldStatus {
|
|
34844
|
+
AtRisk = "AT_RISK",
|
|
34845
|
+
Cancelled = "CANCELLED",
|
|
34846
|
+
Done = "DONE",
|
|
34847
|
+
NotSet = "NOT_SET",
|
|
34848
|
+
Null = "NULL",
|
|
34849
|
+
OffTrack = "OFF_TRACK",
|
|
34850
|
+
OnTrack = "ON_TRACK",
|
|
34851
|
+
Paused = "PAUSED",
|
|
34852
|
+
Pending = "PENDING"
|
|
34853
|
+
}
|
|
34854
|
+
export declare type GraphStoreAtlasProjectHasUpdateOldStatusFilterInput = {
|
|
34855
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldStatus>>;
|
|
34856
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldStatus>>;
|
|
34857
|
+
};
|
|
34858
|
+
export declare type GraphStoreAtlasProjectHasUpdateSortInput = {
|
|
34859
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
34860
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
34861
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34862
|
+
relationship_createdBy?: InputMaybe<GraphStoreSortInput>;
|
|
34863
|
+
relationship_creationDate?: InputMaybe<GraphStoreSortInput>;
|
|
34864
|
+
relationship_lastEditedBy?: InputMaybe<GraphStoreSortInput>;
|
|
34865
|
+
relationship_lastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
34866
|
+
relationship_newConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
34867
|
+
relationship_newStatus?: InputMaybe<GraphStoreSortInput>;
|
|
34868
|
+
relationship_newTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
34869
|
+
relationship_oldConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
34870
|
+
relationship_oldStatus?: InputMaybe<GraphStoreSortInput>;
|
|
34871
|
+
relationship_oldTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
34872
|
+
relationship_updateType?: InputMaybe<GraphStoreSortInput>;
|
|
34873
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
34874
|
+
};
|
|
34875
|
+
export declare enum GraphStoreAtlasProjectHasUpdateUpdateType {
|
|
34876
|
+
NotSet = "NOT_SET",
|
|
34877
|
+
System = "SYSTEM",
|
|
34878
|
+
User = "USER"
|
|
34879
|
+
}
|
|
34880
|
+
export declare type GraphStoreAtlasProjectHasUpdateUpdateTypeFilterInput = {
|
|
34881
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateUpdateType>>;
|
|
34882
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateUpdateType>>;
|
|
34883
|
+
};
|
|
34171
34884
|
export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectSortInput = {
|
|
34172
34885
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34173
34886
|
};
|
|
@@ -34826,9 +35539,15 @@ export declare type GraphStoreBatchTestPerfhammerRelationshipStartNode = {
|
|
|
34826
35539
|
id: Scalars['ID']['output'];
|
|
34827
35540
|
};
|
|
34828
35541
|
export declare type GraphStoreBatchTestPerfhammerRelationshipStartUnion = JiraIssue;
|
|
35542
|
+
export declare type GraphStoreBoardBelongsToProjectSortInput = {
|
|
35543
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35544
|
+
};
|
|
34829
35545
|
export declare type GraphStoreBooleanFilterInput = {
|
|
34830
35546
|
is?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34831
35547
|
};
|
|
35548
|
+
export declare type GraphStoreCalendarHasLinkedDocumentSortInput = {
|
|
35549
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35550
|
+
};
|
|
34832
35551
|
export declare type GraphStoreComponentAssociatedDocumentSortInput = {
|
|
34833
35552
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34834
35553
|
};
|
|
@@ -34844,9 +35563,15 @@ export declare type GraphStoreComponentLinkedJswIssueSortInput = {
|
|
|
34844
35563
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34845
35564
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
34846
35565
|
};
|
|
35566
|
+
export declare type GraphStoreConfluenceBlogpostHasCommentSortInput = {
|
|
35567
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35568
|
+
};
|
|
34847
35569
|
export declare type GraphStoreConfluenceBlogpostSharedWithUserSortInput = {
|
|
34848
35570
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34849
35571
|
};
|
|
35572
|
+
export declare type GraphStoreConfluencePageHasCommentSortInput = {
|
|
35573
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35574
|
+
};
|
|
34850
35575
|
export declare type GraphStoreConfluencePageHasConfluenceCommentSortInput = {
|
|
34851
35576
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34852
35577
|
};
|
|
@@ -34976,6 +35701,25 @@ export declare type GraphStoreCreateIssueToWhiteboardRelationshipInput = {
|
|
|
34976
35701
|
to: Scalars['ID']['input'];
|
|
34977
35702
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
34978
35703
|
};
|
|
35704
|
+
export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationInput = {
|
|
35705
|
+
relationships: Array<GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipInput>;
|
|
35706
|
+
};
|
|
35707
|
+
export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationPayload = Payload & {
|
|
35708
|
+
__typename?: 'GraphStoreCreateJcsIssueAssociatedSupportEscalationPayload';
|
|
35709
|
+
errors?: Maybe<Array<MutationError>>;
|
|
35710
|
+
success: Scalars['Boolean']['output'];
|
|
35711
|
+
};
|
|
35712
|
+
export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipInput = {
|
|
35713
|
+
from: Scalars['ID']['input'];
|
|
35714
|
+
relationshipMetadata?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipMetadataInput>;
|
|
35715
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
35716
|
+
to: Scalars['ID']['input'];
|
|
35717
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
35718
|
+
};
|
|
35719
|
+
export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipMetadataInput = {
|
|
35720
|
+
SupportEscalationLastUpdated?: InputMaybe<Scalars['Long']['input']>;
|
|
35721
|
+
creatorAri?: InputMaybe<Scalars['String']['input']>;
|
|
35722
|
+
};
|
|
34979
35723
|
export declare type GraphStoreCreateJswProjectAssociatedComponentInput = {
|
|
34980
35724
|
relationships: Array<GraphStoreCreateJswProjectAssociatedComponentRelationshipInput>;
|
|
34981
35725
|
};
|
|
@@ -35295,7 +36039,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
35295
36039
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
35296
36040
|
id: Scalars['ID']['output'];
|
|
35297
36041
|
};
|
|
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;
|
|
36042
|
+
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
36043
|
export declare type GraphStoreCypherQueryNode = {
|
|
35300
36044
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
35301
36045
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -35320,8 +36064,8 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
35320
36064
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
35321
36065
|
id: Scalars['ID']['output'];
|
|
35322
36066
|
};
|
|
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;
|
|
36067
|
+
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;
|
|
36068
|
+
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
36069
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
35326
36070
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
35327
36071
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -35396,6 +36140,19 @@ export declare type GraphStoreDeleteIssueToWhiteboardRelationshipInput = {
|
|
|
35396
36140
|
from: Scalars['ID']['input'];
|
|
35397
36141
|
to: Scalars['ID']['input'];
|
|
35398
36142
|
};
|
|
36143
|
+
export declare type GraphStoreDeleteJcsIssueAssociatedSupportEscalationInput = {
|
|
36144
|
+
relationships: Array<GraphStoreDeleteJcsIssueAssociatedSupportEscalationRelationshipInput>;
|
|
36145
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36146
|
+
};
|
|
36147
|
+
export declare type GraphStoreDeleteJcsIssueAssociatedSupportEscalationPayload = Payload & {
|
|
36148
|
+
__typename?: 'GraphStoreDeleteJcsIssueAssociatedSupportEscalationPayload';
|
|
36149
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36150
|
+
success: Scalars['Boolean']['output'];
|
|
36151
|
+
};
|
|
36152
|
+
export declare type GraphStoreDeleteJcsIssueAssociatedSupportEscalationRelationshipInput = {
|
|
36153
|
+
from: Scalars['ID']['input'];
|
|
36154
|
+
to: Scalars['ID']['input'];
|
|
36155
|
+
};
|
|
35399
36156
|
export declare type GraphStoreDeleteJswProjectAssociatedComponentInput = {
|
|
35400
36157
|
relationships: Array<GraphStoreDeleteJswProjectAssociatedComponentRelationshipInput>;
|
|
35401
36158
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35666,6 +36423,9 @@ export declare type GraphStoreFocusAreaHasAtlasGoalSortInput = {
|
|
|
35666
36423
|
export declare type GraphStoreFocusAreaHasFocusAreaSortInput = {
|
|
35667
36424
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35668
36425
|
};
|
|
36426
|
+
export declare type GraphStoreFocusAreaHasPageSortInput = {
|
|
36427
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36428
|
+
};
|
|
35669
36429
|
export declare type GraphStoreFocusAreaHasProjectSortInput = {
|
|
35670
36430
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35671
36431
|
};
|
|
@@ -39252,6 +40012,26 @@ export declare type GraphStoreIssueToWhiteboardSortInput = {
|
|
|
39252
40012
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39253
40013
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
39254
40014
|
};
|
|
40015
|
+
export declare type GraphStoreJcsIssueAssociatedSupportEscalationConditionalFilterInput = {
|
|
40016
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
40017
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
40018
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
40019
|
+
relationship_SupportEscalationLastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
40020
|
+
relationship_creatorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
40021
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
40022
|
+
};
|
|
40023
|
+
export declare type GraphStoreJcsIssueAssociatedSupportEscalationFilterInput = {
|
|
40024
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationConditionalFilterInput>>>;
|
|
40025
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationConditionalFilterInput>>>;
|
|
40026
|
+
};
|
|
40027
|
+
export declare type GraphStoreJcsIssueAssociatedSupportEscalationSortInput = {
|
|
40028
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40029
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
40030
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40031
|
+
relationship_SupportEscalationLastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
40032
|
+
relationship_creatorAri?: InputMaybe<GraphStoreSortInput>;
|
|
40033
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40034
|
+
};
|
|
39255
40035
|
export declare type GraphStoreJiraEpicContributesToAtlasGoalSortInput = {
|
|
39256
40036
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39257
40037
|
};
|
|
@@ -39352,15 +40132,24 @@ export declare type GraphStoreLongFilterInput = {
|
|
|
39352
40132
|
lessThan?: InputMaybe<Scalars['Long']['input']>;
|
|
39353
40133
|
lessThanOrEqual?: InputMaybe<Scalars['Long']['input']>;
|
|
39354
40134
|
};
|
|
40135
|
+
export declare type GraphStoreLoomVideoSharedWithUserSortInput = {
|
|
40136
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40137
|
+
};
|
|
39355
40138
|
export declare type GraphStoreMediaAttachedToContentSortInput = {
|
|
39356
40139
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39357
40140
|
};
|
|
40141
|
+
export declare type GraphStoreMeetingHasMeetingNotesPageSortInput = {
|
|
40142
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40143
|
+
};
|
|
39358
40144
|
export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInput = {
|
|
39359
40145
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
39360
40146
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
39361
40147
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39362
40148
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
39363
40149
|
};
|
|
40150
|
+
export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput = {
|
|
40151
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40152
|
+
};
|
|
39364
40153
|
export declare type GraphStoreMutation = {
|
|
39365
40154
|
__typename?: 'GraphStoreMutation';
|
|
39366
40155
|
createComponentImpactedByIncident?: Maybe<GraphStoreCreateComponentImpactedByIncidentPayload>;
|
|
@@ -39368,6 +40157,7 @@ export declare type GraphStoreMutation = {
|
|
|
39368
40157
|
createIncidentHasActionItem?: Maybe<GraphStoreCreateIncidentHasActionItemPayload>;
|
|
39369
40158
|
createIncidentLinkedJswIssue?: Maybe<GraphStoreCreateIncidentLinkedJswIssuePayload>;
|
|
39370
40159
|
createIssueToWhiteboard?: Maybe<GraphStoreCreateIssueToWhiteboardPayload>;
|
|
40160
|
+
createJcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationPayload>;
|
|
39371
40161
|
createJswProjectAssociatedComponent?: Maybe<GraphStoreCreateJswProjectAssociatedComponentPayload>;
|
|
39372
40162
|
createMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
39373
40163
|
createProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreCreateProjectAssociatedOpsgenieTeamPayload>;
|
|
@@ -39392,6 +40182,7 @@ export declare type GraphStoreMutation = {
|
|
|
39392
40182
|
deleteIncidentHasActionItem?: Maybe<GraphStoreDeleteIncidentHasActionItemPayload>;
|
|
39393
40183
|
deleteIncidentLinkedJswIssue?: Maybe<GraphStoreDeleteIncidentLinkedJswIssuePayload>;
|
|
39394
40184
|
deleteIssueToWhiteboard?: Maybe<GraphStoreDeleteIssueToWhiteboardPayload>;
|
|
40185
|
+
deleteJcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreDeleteJcsIssueAssociatedSupportEscalationPayload>;
|
|
39395
40186
|
deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
|
|
39396
40187
|
deleteMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
39397
40188
|
deleteProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload>;
|
|
@@ -39427,6 +40218,9 @@ export declare type GraphStoreMutationCreateIncidentLinkedJswIssueArgs = {
|
|
|
39427
40218
|
export declare type GraphStoreMutationCreateIssueToWhiteboardArgs = {
|
|
39428
40219
|
input?: InputMaybe<GraphStoreCreateIssueToWhiteboardInput>;
|
|
39429
40220
|
};
|
|
40221
|
+
export declare type GraphStoreMutationCreateJcsIssueAssociatedSupportEscalationArgs = {
|
|
40222
|
+
input?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationInput>;
|
|
40223
|
+
};
|
|
39430
40224
|
export declare type GraphStoreMutationCreateJswProjectAssociatedComponentArgs = {
|
|
39431
40225
|
input?: InputMaybe<GraphStoreCreateJswProjectAssociatedComponentInput>;
|
|
39432
40226
|
};
|
|
@@ -39499,6 +40293,9 @@ export declare type GraphStoreMutationDeleteIncidentLinkedJswIssueArgs = {
|
|
|
39499
40293
|
export declare type GraphStoreMutationDeleteIssueToWhiteboardArgs = {
|
|
39500
40294
|
input?: InputMaybe<GraphStoreDeleteIssueToWhiteboardInput>;
|
|
39501
40295
|
};
|
|
40296
|
+
export declare type GraphStoreMutationDeleteJcsIssueAssociatedSupportEscalationArgs = {
|
|
40297
|
+
input?: InputMaybe<GraphStoreDeleteJcsIssueAssociatedSupportEscalationInput>;
|
|
40298
|
+
};
|
|
39502
40299
|
export declare type GraphStoreMutationDeleteJswProjectAssociatedComponentArgs = {
|
|
39503
40300
|
input?: InputMaybe<GraphStoreDeleteJswProjectAssociatedComponentInput>;
|
|
39504
40301
|
};
|
|
@@ -40012,9 +40809,15 @@ export declare type GraphStoreProjectLinkedToCompassComponentSortInput = {
|
|
|
40012
40809
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40013
40810
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40014
40811
|
};
|
|
40812
|
+
export declare type GraphStorePullRequestLinksToServiceSortInput = {
|
|
40813
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40814
|
+
};
|
|
40015
40815
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput = {
|
|
40016
40816
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40017
40817
|
};
|
|
40818
|
+
export declare type GraphStoreServiceAssociatedBranchSortInput = {
|
|
40819
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40820
|
+
};
|
|
40018
40821
|
export declare type GraphStoreServiceAssociatedDeploymentSortInput = {
|
|
40019
40822
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40020
40823
|
};
|
|
@@ -40205,6 +41008,38 @@ export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseEdge = {
|
|
|
40205
41008
|
};
|
|
40206
41009
|
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseUnion = TownsquareGoal;
|
|
40207
41010
|
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalUnion = TownsquareGoal;
|
|
41011
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateConnection = HasPageInfo & HasTotal & {
|
|
41012
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateConnection';
|
|
41013
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateEdge>>>;
|
|
41014
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
41015
|
+
pageInfo: PageInfo;
|
|
41016
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
41017
|
+
};
|
|
41018
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateEdge = {
|
|
41019
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateEdge';
|
|
41020
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41021
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41022
|
+
id: Scalars['ID']['output'];
|
|
41023
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41024
|
+
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateUnion>;
|
|
41025
|
+
};
|
|
41026
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection = HasPageInfo & HasTotal & {
|
|
41027
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection';
|
|
41028
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge>>>;
|
|
41029
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
41030
|
+
pageInfo: PageInfo;
|
|
41031
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
41032
|
+
};
|
|
41033
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge = {
|
|
41034
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge';
|
|
41035
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41036
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41037
|
+
id: Scalars['ID']['output'];
|
|
41038
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41039
|
+
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseUnion>;
|
|
41040
|
+
};
|
|
41041
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseUnion = TownsquareGoal;
|
|
41042
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateUnion = TownsquareGoalUpdate;
|
|
40208
41043
|
export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection = HasPageInfo & {
|
|
40209
41044
|
__typename?: 'GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection';
|
|
40210
41045
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalEdge>>>;
|
|
@@ -40345,6 +41180,38 @@ export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseEdge = {
|
|
|
40345
41180
|
};
|
|
40346
41181
|
export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseUnion = TownsquareProject;
|
|
40347
41182
|
export declare type GraphStoreSimplifiedAtlasProjectHasOwnerUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41183
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateConnection = HasPageInfo & HasTotal & {
|
|
41184
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateConnection';
|
|
41185
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateEdge>>>;
|
|
41186
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
41187
|
+
pageInfo: PageInfo;
|
|
41188
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
41189
|
+
};
|
|
41190
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateEdge = {
|
|
41191
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateEdge';
|
|
41192
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41193
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41194
|
+
id: Scalars['ID']['output'];
|
|
41195
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41196
|
+
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateUnion>;
|
|
41197
|
+
};
|
|
41198
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection = HasPageInfo & HasTotal & {
|
|
41199
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection';
|
|
41200
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge>>>;
|
|
41201
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
41202
|
+
pageInfo: PageInfo;
|
|
41203
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
41204
|
+
};
|
|
41205
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge = {
|
|
41206
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge';
|
|
41207
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41208
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41209
|
+
id: Scalars['ID']['output'];
|
|
41210
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41211
|
+
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseUnion>;
|
|
41212
|
+
};
|
|
41213
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseUnion = TownsquareProject;
|
|
41214
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateUnion = TownsquareProjectUpdate;
|
|
40348
41215
|
export declare type GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection = HasPageInfo & {
|
|
40349
41216
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection';
|
|
40350
41217
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectEdge>>>;
|
|
@@ -40401,6 +41268,62 @@ export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEd
|
|
|
40401
41268
|
};
|
|
40402
41269
|
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseUnion = TownsquareProject;
|
|
40403
41270
|
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicUnion = JiraIssue;
|
|
41271
|
+
export declare type GraphStoreSimplifiedBoardBelongsToProjectConnection = HasPageInfo & {
|
|
41272
|
+
__typename?: 'GraphStoreSimplifiedBoardBelongsToProjectConnection';
|
|
41273
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBoardBelongsToProjectEdge>>>;
|
|
41274
|
+
pageInfo: PageInfo;
|
|
41275
|
+
};
|
|
41276
|
+
export declare type GraphStoreSimplifiedBoardBelongsToProjectEdge = {
|
|
41277
|
+
__typename?: 'GraphStoreSimplifiedBoardBelongsToProjectEdge';
|
|
41278
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41279
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41280
|
+
id: Scalars['ID']['output'];
|
|
41281
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41282
|
+
node?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectUnion>;
|
|
41283
|
+
};
|
|
41284
|
+
export declare type GraphStoreSimplifiedBoardBelongsToProjectInverseConnection = HasPageInfo & {
|
|
41285
|
+
__typename?: 'GraphStoreSimplifiedBoardBelongsToProjectInverseConnection';
|
|
41286
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseEdge>>>;
|
|
41287
|
+
pageInfo: PageInfo;
|
|
41288
|
+
};
|
|
41289
|
+
export declare type GraphStoreSimplifiedBoardBelongsToProjectInverseEdge = {
|
|
41290
|
+
__typename?: 'GraphStoreSimplifiedBoardBelongsToProjectInverseEdge';
|
|
41291
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41292
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41293
|
+
id: Scalars['ID']['output'];
|
|
41294
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41295
|
+
node?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseUnion>;
|
|
41296
|
+
};
|
|
41297
|
+
export declare type GraphStoreSimplifiedBoardBelongsToProjectInverseUnion = JiraBoard;
|
|
41298
|
+
export declare type GraphStoreSimplifiedBoardBelongsToProjectUnion = JiraProject;
|
|
41299
|
+
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentConnection = HasPageInfo & {
|
|
41300
|
+
__typename?: 'GraphStoreSimplifiedCalendarHasLinkedDocumentConnection';
|
|
41301
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentEdge>>>;
|
|
41302
|
+
pageInfo: PageInfo;
|
|
41303
|
+
};
|
|
41304
|
+
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentEdge = {
|
|
41305
|
+
__typename?: 'GraphStoreSimplifiedCalendarHasLinkedDocumentEdge';
|
|
41306
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41307
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41308
|
+
id: Scalars['ID']['output'];
|
|
41309
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41310
|
+
node?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentUnion>;
|
|
41311
|
+
};
|
|
41312
|
+
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentInverseConnection = HasPageInfo & {
|
|
41313
|
+
__typename?: 'GraphStoreSimplifiedCalendarHasLinkedDocumentInverseConnection';
|
|
41314
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentInverseEdge>>>;
|
|
41315
|
+
pageInfo: PageInfo;
|
|
41316
|
+
};
|
|
41317
|
+
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentInverseEdge = {
|
|
41318
|
+
__typename?: 'GraphStoreSimplifiedCalendarHasLinkedDocumentInverseEdge';
|
|
41319
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41320
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41321
|
+
id: Scalars['ID']['output'];
|
|
41322
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41323
|
+
node?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentInverseUnion>;
|
|
41324
|
+
};
|
|
41325
|
+
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentInverseUnion = ExternalCalendarEvent;
|
|
41326
|
+
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
40404
41327
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentConnection = HasPageInfo & {
|
|
40405
41328
|
__typename?: 'GraphStoreSimplifiedComponentAssociatedDocumentConnection';
|
|
40406
41329
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentAssociatedDocumentEdge>>>;
|
|
@@ -40503,6 +41426,34 @@ export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseEdge = {
|
|
|
40503
41426
|
};
|
|
40504
41427
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion = CompassComponent | DevOpsOperationsComponentDetails | DevOpsService;
|
|
40505
41428
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueUnion = JiraIssue;
|
|
41429
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentConnection = HasPageInfo & {
|
|
41430
|
+
__typename?: 'GraphStoreSimplifiedConfluenceBlogpostHasCommentConnection';
|
|
41431
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentEdge>>>;
|
|
41432
|
+
pageInfo: PageInfo;
|
|
41433
|
+
};
|
|
41434
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentEdge = {
|
|
41435
|
+
__typename?: 'GraphStoreSimplifiedConfluenceBlogpostHasCommentEdge';
|
|
41436
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41437
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41438
|
+
id: Scalars['ID']['output'];
|
|
41439
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41440
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentUnion>;
|
|
41441
|
+
};
|
|
41442
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseConnection = HasPageInfo & {
|
|
41443
|
+
__typename?: 'GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseConnection';
|
|
41444
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseEdge>>>;
|
|
41445
|
+
pageInfo: PageInfo;
|
|
41446
|
+
};
|
|
41447
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseEdge = {
|
|
41448
|
+
__typename?: 'GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseEdge';
|
|
41449
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41450
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41451
|
+
id: Scalars['ID']['output'];
|
|
41452
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41453
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseUnion>;
|
|
41454
|
+
};
|
|
41455
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseUnion = ConfluenceBlogPost;
|
|
41456
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostHasCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
40506
41457
|
export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserConnection = HasPageInfo & {
|
|
40507
41458
|
__typename?: 'GraphStoreSimplifiedConfluenceBlogpostSharedWithUserConnection';
|
|
40508
41459
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserEdge>>>;
|
|
@@ -40531,6 +41482,34 @@ export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseE
|
|
|
40531
41482
|
};
|
|
40532
41483
|
export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseUnion = ConfluenceBlogPost;
|
|
40533
41484
|
export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41485
|
+
export declare type GraphStoreSimplifiedConfluencePageHasCommentConnection = HasPageInfo & {
|
|
41486
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasCommentConnection';
|
|
41487
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasCommentEdge>>>;
|
|
41488
|
+
pageInfo: PageInfo;
|
|
41489
|
+
};
|
|
41490
|
+
export declare type GraphStoreSimplifiedConfluencePageHasCommentEdge = {
|
|
41491
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasCommentEdge';
|
|
41492
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41493
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41494
|
+
id: Scalars['ID']['output'];
|
|
41495
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41496
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentUnion>;
|
|
41497
|
+
};
|
|
41498
|
+
export declare type GraphStoreSimplifiedConfluencePageHasCommentInverseConnection = HasPageInfo & {
|
|
41499
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasCommentInverseConnection';
|
|
41500
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasCommentInverseEdge>>>;
|
|
41501
|
+
pageInfo: PageInfo;
|
|
41502
|
+
};
|
|
41503
|
+
export declare type GraphStoreSimplifiedConfluencePageHasCommentInverseEdge = {
|
|
41504
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasCommentInverseEdge';
|
|
41505
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41506
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41507
|
+
id: Scalars['ID']['output'];
|
|
41508
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41509
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentInverseUnion>;
|
|
41510
|
+
};
|
|
41511
|
+
export declare type GraphStoreSimplifiedConfluencePageHasCommentInverseUnion = ConfluencePage;
|
|
41512
|
+
export declare type GraphStoreSimplifiedConfluencePageHasCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
40534
41513
|
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection = HasPageInfo & {
|
|
40535
41514
|
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection';
|
|
40536
41515
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentEdge>>>;
|
|
@@ -40951,6 +41930,34 @@ export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaInverseEdge = {
|
|
|
40951
41930
|
};
|
|
40952
41931
|
export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaInverseUnion = MercuryFocusArea;
|
|
40953
41932
|
export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaUnion = MercuryFocusArea;
|
|
41933
|
+
export declare type GraphStoreSimplifiedFocusAreaHasPageConnection = HasPageInfo & {
|
|
41934
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasPageConnection';
|
|
41935
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasPageEdge>>>;
|
|
41936
|
+
pageInfo: PageInfo;
|
|
41937
|
+
};
|
|
41938
|
+
export declare type GraphStoreSimplifiedFocusAreaHasPageEdge = {
|
|
41939
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasPageEdge';
|
|
41940
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41941
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41942
|
+
id: Scalars['ID']['output'];
|
|
41943
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41944
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaHasPageUnion>;
|
|
41945
|
+
};
|
|
41946
|
+
export declare type GraphStoreSimplifiedFocusAreaHasPageInverseConnection = HasPageInfo & {
|
|
41947
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasPageInverseConnection';
|
|
41948
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasPageInverseEdge>>>;
|
|
41949
|
+
pageInfo: PageInfo;
|
|
41950
|
+
};
|
|
41951
|
+
export declare type GraphStoreSimplifiedFocusAreaHasPageInverseEdge = {
|
|
41952
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasPageInverseEdge';
|
|
41953
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41954
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41955
|
+
id: Scalars['ID']['output'];
|
|
41956
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41957
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaHasPageInverseUnion>;
|
|
41958
|
+
};
|
|
41959
|
+
export declare type GraphStoreSimplifiedFocusAreaHasPageInverseUnion = MercuryFocusArea;
|
|
41960
|
+
export declare type GraphStoreSimplifiedFocusAreaHasPageUnion = ConfluencePage;
|
|
40954
41961
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectConnection = HasPageInfo & {
|
|
40955
41962
|
__typename?: 'GraphStoreSimplifiedFocusAreaHasProjectConnection';
|
|
40956
41963
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasProjectEdge>>>;
|
|
@@ -41649,6 +42656,38 @@ export declare type GraphStoreSimplifiedIssueToWhiteboardInverseEdge = {
|
|
|
41649
42656
|
};
|
|
41650
42657
|
export declare type GraphStoreSimplifiedIssueToWhiteboardInverseUnion = JiraIssue;
|
|
41651
42658
|
export declare type GraphStoreSimplifiedIssueToWhiteboardUnion = ConfluenceWhiteboard;
|
|
42659
|
+
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationConnection = HasPageInfo & HasTotal & {
|
|
42660
|
+
__typename?: 'GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationConnection';
|
|
42661
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationEdge>>>;
|
|
42662
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42663
|
+
pageInfo: PageInfo;
|
|
42664
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42665
|
+
};
|
|
42666
|
+
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationEdge = {
|
|
42667
|
+
__typename?: 'GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationEdge';
|
|
42668
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42669
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42670
|
+
id: Scalars['ID']['output'];
|
|
42671
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42672
|
+
node?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationUnion>;
|
|
42673
|
+
};
|
|
42674
|
+
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseConnection = HasPageInfo & HasTotal & {
|
|
42675
|
+
__typename?: 'GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseConnection';
|
|
42676
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseEdge>>>;
|
|
42677
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42678
|
+
pageInfo: PageInfo;
|
|
42679
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42680
|
+
};
|
|
42681
|
+
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseEdge = {
|
|
42682
|
+
__typename?: 'GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseEdge';
|
|
42683
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42684
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42685
|
+
id: Scalars['ID']['output'];
|
|
42686
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42687
|
+
node?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseUnion>;
|
|
42688
|
+
};
|
|
42689
|
+
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseUnion = JiraIssue;
|
|
42690
|
+
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationUnion = JiraIssue | JiraProject;
|
|
41652
42691
|
export declare type GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection = HasPageInfo & {
|
|
41653
42692
|
__typename?: 'GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection';
|
|
41654
42693
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalEdge>>>;
|
|
@@ -41911,6 +42950,34 @@ export declare type GraphStoreSimplifiedLinkedProjectHasVersionInverseEdge = {
|
|
|
41911
42950
|
};
|
|
41912
42951
|
export declare type GraphStoreSimplifiedLinkedProjectHasVersionInverseUnion = JiraProject;
|
|
41913
42952
|
export declare type GraphStoreSimplifiedLinkedProjectHasVersionUnion = JiraVersion;
|
|
42953
|
+
export declare type GraphStoreSimplifiedLoomVideoSharedWithUserConnection = HasPageInfo & {
|
|
42954
|
+
__typename?: 'GraphStoreSimplifiedLoomVideoSharedWithUserConnection';
|
|
42955
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserEdge>>>;
|
|
42956
|
+
pageInfo: PageInfo;
|
|
42957
|
+
};
|
|
42958
|
+
export declare type GraphStoreSimplifiedLoomVideoSharedWithUserEdge = {
|
|
42959
|
+
__typename?: 'GraphStoreSimplifiedLoomVideoSharedWithUserEdge';
|
|
42960
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42961
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42962
|
+
id: Scalars['ID']['output'];
|
|
42963
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42964
|
+
node?: Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserUnion>;
|
|
42965
|
+
};
|
|
42966
|
+
export declare type GraphStoreSimplifiedLoomVideoSharedWithUserInverseConnection = HasPageInfo & {
|
|
42967
|
+
__typename?: 'GraphStoreSimplifiedLoomVideoSharedWithUserInverseConnection';
|
|
42968
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserInverseEdge>>>;
|
|
42969
|
+
pageInfo: PageInfo;
|
|
42970
|
+
};
|
|
42971
|
+
export declare type GraphStoreSimplifiedLoomVideoSharedWithUserInverseEdge = {
|
|
42972
|
+
__typename?: 'GraphStoreSimplifiedLoomVideoSharedWithUserInverseEdge';
|
|
42973
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42974
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42975
|
+
id: Scalars['ID']['output'];
|
|
42976
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42977
|
+
node?: Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserInverseUnion>;
|
|
42978
|
+
};
|
|
42979
|
+
export declare type GraphStoreSimplifiedLoomVideoSharedWithUserInverseUnion = LoomVideo;
|
|
42980
|
+
export declare type GraphStoreSimplifiedLoomVideoSharedWithUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41914
42981
|
export declare type GraphStoreSimplifiedMediaAttachedToContentConnection = HasPageInfo & {
|
|
41915
42982
|
__typename?: 'GraphStoreSimplifiedMediaAttachedToContentConnection';
|
|
41916
42983
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMediaAttachedToContentEdge>>>;
|
|
@@ -41925,6 +42992,20 @@ export declare type GraphStoreSimplifiedMediaAttachedToContentEdge = {
|
|
|
41925
42992
|
node?: Maybe<GraphStoreSimplifiedMediaAttachedToContentUnion>;
|
|
41926
42993
|
};
|
|
41927
42994
|
export declare type GraphStoreSimplifiedMediaAttachedToContentUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
42995
|
+
export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageConnection = HasPageInfo & {
|
|
42996
|
+
__typename?: 'GraphStoreSimplifiedMeetingHasMeetingNotesPageConnection';
|
|
42997
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageEdge>>>;
|
|
42998
|
+
pageInfo: PageInfo;
|
|
42999
|
+
};
|
|
43000
|
+
export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageEdge = {
|
|
43001
|
+
__typename?: 'GraphStoreSimplifiedMeetingHasMeetingNotesPageEdge';
|
|
43002
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43003
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43004
|
+
id: Scalars['ID']['output'];
|
|
43005
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43006
|
+
node?: Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageUnion>;
|
|
43007
|
+
};
|
|
43008
|
+
export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageUnion = ConfluencePage;
|
|
41928
43009
|
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection = HasPageInfo & HasTotal & {
|
|
41929
43010
|
__typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection';
|
|
41930
43011
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderEdge>>>;
|
|
@@ -41957,6 +43038,20 @@ export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFold
|
|
|
41957
43038
|
};
|
|
41958
43039
|
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41959
43040
|
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderUnion = ConfluenceFolder;
|
|
43041
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection = HasPageInfo & {
|
|
43042
|
+
__typename?: 'GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection';
|
|
43043
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageEdge>>>;
|
|
43044
|
+
pageInfo: PageInfo;
|
|
43045
|
+
};
|
|
43046
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageEdge = {
|
|
43047
|
+
__typename?: 'GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageEdge';
|
|
43048
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43049
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43050
|
+
id: Scalars['ID']['output'];
|
|
43051
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43052
|
+
node?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageUnion>;
|
|
43053
|
+
};
|
|
43054
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageUnion = ConfluencePage;
|
|
41960
43055
|
export declare type GraphStoreSimplifiedOnPremProjectHasIssueConnection = HasPageInfo & {
|
|
41961
43056
|
__typename?: 'GraphStoreSimplifiedOnPremProjectHasIssueConnection';
|
|
41962
43057
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedOnPremProjectHasIssueEdge>>>;
|
|
@@ -42929,6 +44024,34 @@ export declare type GraphStoreSimplifiedProjectLinkedToCompassComponentInverseEd
|
|
|
42929
44024
|
};
|
|
42930
44025
|
export declare type GraphStoreSimplifiedProjectLinkedToCompassComponentInverseUnion = JiraProject;
|
|
42931
44026
|
export declare type GraphStoreSimplifiedProjectLinkedToCompassComponentUnion = CompassComponent;
|
|
44027
|
+
export declare type GraphStoreSimplifiedPullRequestLinksToServiceConnection = HasPageInfo & {
|
|
44028
|
+
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceConnection';
|
|
44029
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPullRequestLinksToServiceEdge>>>;
|
|
44030
|
+
pageInfo: PageInfo;
|
|
44031
|
+
};
|
|
44032
|
+
export declare type GraphStoreSimplifiedPullRequestLinksToServiceEdge = {
|
|
44033
|
+
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceEdge';
|
|
44034
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44035
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44036
|
+
id: Scalars['ID']['output'];
|
|
44037
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44038
|
+
node?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceUnion>;
|
|
44039
|
+
};
|
|
44040
|
+
export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection = HasPageInfo & {
|
|
44041
|
+
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection';
|
|
44042
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseEdge>>>;
|
|
44043
|
+
pageInfo: PageInfo;
|
|
44044
|
+
};
|
|
44045
|
+
export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseEdge = {
|
|
44046
|
+
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceInverseEdge';
|
|
44047
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44048
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44049
|
+
id: Scalars['ID']['output'];
|
|
44050
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44051
|
+
node?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseUnion>;
|
|
44052
|
+
};
|
|
44053
|
+
export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
44054
|
+
export declare type GraphStoreSimplifiedPullRequestLinksToServiceUnion = DevOpsService;
|
|
42932
44055
|
export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection = HasPageInfo & {
|
|
42933
44056
|
__typename?: 'GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection';
|
|
42934
44057
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityEdge>>>;
|
|
@@ -42943,6 +44066,34 @@ export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabili
|
|
|
42943
44066
|
node?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityUnion>;
|
|
42944
44067
|
};
|
|
42945
44068
|
export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityUnion = DevOpsSecurityVulnerabilityDetails | ExternalVulnerability;
|
|
44069
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBranchConnection = HasPageInfo & {
|
|
44070
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedBranchConnection';
|
|
44071
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedBranchEdge>>>;
|
|
44072
|
+
pageInfo: PageInfo;
|
|
44073
|
+
};
|
|
44074
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBranchEdge = {
|
|
44075
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedBranchEdge';
|
|
44076
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44077
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44078
|
+
id: Scalars['ID']['output'];
|
|
44079
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44080
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchUnion>;
|
|
44081
|
+
};
|
|
44082
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBranchInverseConnection = HasPageInfo & {
|
|
44083
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedBranchInverseConnection';
|
|
44084
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedBranchInverseEdge>>>;
|
|
44085
|
+
pageInfo: PageInfo;
|
|
44086
|
+
};
|
|
44087
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBranchInverseEdge = {
|
|
44088
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedBranchInverseEdge';
|
|
44089
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44090
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44091
|
+
id: Scalars['ID']['output'];
|
|
44092
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44093
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchInverseUnion>;
|
|
44094
|
+
};
|
|
44095
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBranchInverseUnion = DevOpsService;
|
|
44096
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBranchUnion = ExternalBranch;
|
|
42946
44097
|
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentConnection = HasPageInfo & {
|
|
42947
44098
|
__typename?: 'GraphStoreSimplifiedServiceAssociatedDeploymentConnection';
|
|
42948
44099
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentEdge>>>;
|
|
@@ -43561,6 +44712,34 @@ export declare type GraphStoreSimplifiedUserAssignedIncidentInverseEdge = {
|
|
|
43561
44712
|
};
|
|
43562
44713
|
export declare type GraphStoreSimplifiedUserAssignedIncidentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43563
44714
|
export declare type GraphStoreSimplifiedUserAssignedIncidentUnion = JiraIssue;
|
|
44715
|
+
export declare type GraphStoreSimplifiedUserAssignedIssueConnection = HasPageInfo & {
|
|
44716
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedIssueConnection';
|
|
44717
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedIssueEdge>>>;
|
|
44718
|
+
pageInfo: PageInfo;
|
|
44719
|
+
};
|
|
44720
|
+
export declare type GraphStoreSimplifiedUserAssignedIssueEdge = {
|
|
44721
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedIssueEdge';
|
|
44722
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44723
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44724
|
+
id: Scalars['ID']['output'];
|
|
44725
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44726
|
+
node?: Maybe<GraphStoreSimplifiedUserAssignedIssueUnion>;
|
|
44727
|
+
};
|
|
44728
|
+
export declare type GraphStoreSimplifiedUserAssignedIssueInverseConnection = HasPageInfo & {
|
|
44729
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedIssueInverseConnection';
|
|
44730
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedIssueInverseEdge>>>;
|
|
44731
|
+
pageInfo: PageInfo;
|
|
44732
|
+
};
|
|
44733
|
+
export declare type GraphStoreSimplifiedUserAssignedIssueInverseEdge = {
|
|
44734
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedIssueInverseEdge';
|
|
44735
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44736
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44737
|
+
id: Scalars['ID']['output'];
|
|
44738
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44739
|
+
node?: Maybe<GraphStoreSimplifiedUserAssignedIssueInverseUnion>;
|
|
44740
|
+
};
|
|
44741
|
+
export declare type GraphStoreSimplifiedUserAssignedIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
44742
|
+
export declare type GraphStoreSimplifiedUserAssignedIssueUnion = JiraIssue;
|
|
43564
44743
|
export declare type GraphStoreSimplifiedUserAssignedPirConnection = HasPageInfo & {
|
|
43565
44744
|
__typename?: 'GraphStoreSimplifiedUserAssignedPirConnection';
|
|
43566
44745
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedPirEdge>>>;
|
|
@@ -44153,6 +45332,34 @@ export declare type GraphStoreSimplifiedUserCreatedDocumentInverseEdge = {
|
|
|
44153
45332
|
};
|
|
44154
45333
|
export declare type GraphStoreSimplifiedUserCreatedDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
44155
45334
|
export declare type GraphStoreSimplifiedUserCreatedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
45335
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueCommentConnection = HasPageInfo & {
|
|
45336
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueCommentConnection';
|
|
45337
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueCommentEdge>>>;
|
|
45338
|
+
pageInfo: PageInfo;
|
|
45339
|
+
};
|
|
45340
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueCommentEdge = {
|
|
45341
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueCommentEdge';
|
|
45342
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45343
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45344
|
+
id: Scalars['ID']['output'];
|
|
45345
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45346
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentUnion>;
|
|
45347
|
+
};
|
|
45348
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueCommentInverseConnection = HasPageInfo & {
|
|
45349
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueCommentInverseConnection';
|
|
45350
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueCommentInverseEdge>>>;
|
|
45351
|
+
pageInfo: PageInfo;
|
|
45352
|
+
};
|
|
45353
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueCommentInverseEdge = {
|
|
45354
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueCommentInverseEdge';
|
|
45355
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45356
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45357
|
+
id: Scalars['ID']['output'];
|
|
45358
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45359
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentInverseUnion>;
|
|
45360
|
+
};
|
|
45361
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45362
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
44156
45363
|
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogConnection = HasPageInfo & {
|
|
44157
45364
|
__typename?: 'GraphStoreSimplifiedUserCreatedIssueWorklogConnection';
|
|
44158
45365
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogEdge>>>;
|
|
@@ -44237,6 +45444,34 @@ export declare type GraphStoreSimplifiedUserCreatedMessageInverseEdge = {
|
|
|
44237
45444
|
};
|
|
44238
45445
|
export declare type GraphStoreSimplifiedUserCreatedMessageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
44239
45446
|
export declare type GraphStoreSimplifiedUserCreatedMessageUnion = ExternalMessage;
|
|
45447
|
+
export declare type GraphStoreSimplifiedUserCreatedReleaseConnection = HasPageInfo & {
|
|
45448
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedReleaseConnection';
|
|
45449
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedReleaseEdge>>>;
|
|
45450
|
+
pageInfo: PageInfo;
|
|
45451
|
+
};
|
|
45452
|
+
export declare type GraphStoreSimplifiedUserCreatedReleaseEdge = {
|
|
45453
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedReleaseEdge';
|
|
45454
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45455
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45456
|
+
id: Scalars['ID']['output'];
|
|
45457
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45458
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedReleaseUnion>;
|
|
45459
|
+
};
|
|
45460
|
+
export declare type GraphStoreSimplifiedUserCreatedReleaseInverseConnection = HasPageInfo & {
|
|
45461
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedReleaseInverseConnection';
|
|
45462
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedReleaseInverseEdge>>>;
|
|
45463
|
+
pageInfo: PageInfo;
|
|
45464
|
+
};
|
|
45465
|
+
export declare type GraphStoreSimplifiedUserCreatedReleaseInverseEdge = {
|
|
45466
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedReleaseInverseEdge';
|
|
45467
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45468
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45469
|
+
id: Scalars['ID']['output'];
|
|
45470
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45471
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedReleaseInverseUnion>;
|
|
45472
|
+
};
|
|
45473
|
+
export declare type GraphStoreSimplifiedUserCreatedReleaseInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45474
|
+
export declare type GraphStoreSimplifiedUserCreatedReleaseUnion = JiraVersion;
|
|
44240
45475
|
export declare type GraphStoreSimplifiedUserCreatedRemoteLinkConnection = HasPageInfo & {
|
|
44241
45476
|
__typename?: 'GraphStoreSimplifiedUserCreatedRemoteLinkConnection';
|
|
44242
45477
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkEdge>>>;
|
|
@@ -44893,6 +46128,34 @@ export declare type GraphStoreSimplifiedUserOwnsComponentInverseEdge = {
|
|
|
44893
46128
|
};
|
|
44894
46129
|
export declare type GraphStoreSimplifiedUserOwnsComponentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
44895
46130
|
export declare type GraphStoreSimplifiedUserOwnsComponentUnion = CompassComponent;
|
|
46131
|
+
export declare type GraphStoreSimplifiedUserOwnsFocusAreaConnection = HasPageInfo & {
|
|
46132
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsFocusAreaConnection';
|
|
46133
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsFocusAreaEdge>>>;
|
|
46134
|
+
pageInfo: PageInfo;
|
|
46135
|
+
};
|
|
46136
|
+
export declare type GraphStoreSimplifiedUserOwnsFocusAreaEdge = {
|
|
46137
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsFocusAreaEdge';
|
|
46138
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46139
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46140
|
+
id: Scalars['ID']['output'];
|
|
46141
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46142
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaUnion>;
|
|
46143
|
+
};
|
|
46144
|
+
export declare type GraphStoreSimplifiedUserOwnsFocusAreaInverseConnection = HasPageInfo & {
|
|
46145
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsFocusAreaInverseConnection';
|
|
46146
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsFocusAreaInverseEdge>>>;
|
|
46147
|
+
pageInfo: PageInfo;
|
|
46148
|
+
};
|
|
46149
|
+
export declare type GraphStoreSimplifiedUserOwnsFocusAreaInverseEdge = {
|
|
46150
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsFocusAreaInverseEdge';
|
|
46151
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46152
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46153
|
+
id: Scalars['ID']['output'];
|
|
46154
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46155
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaInverseUnion>;
|
|
46156
|
+
};
|
|
46157
|
+
export declare type GraphStoreSimplifiedUserOwnsFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46158
|
+
export declare type GraphStoreSimplifiedUserOwnsFocusAreaUnion = MercuryFocusArea;
|
|
44896
46159
|
export declare type GraphStoreSimplifiedUserReportedIncidentConnection = HasPageInfo & {
|
|
44897
46160
|
__typename?: 'GraphStoreSimplifiedUserReportedIncidentConnection';
|
|
44898
46161
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReportedIncidentEdge>>>;
|
|
@@ -45033,6 +46296,19 @@ export declare type GraphStoreSimplifiedUserTaggedInConfluencePageInverseEdge =
|
|
|
45033
46296
|
};
|
|
45034
46297
|
export declare type GraphStoreSimplifiedUserTaggedInConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45035
46298
|
export declare type GraphStoreSimplifiedUserTaggedInConfluencePageUnion = ConfluencePage;
|
|
46299
|
+
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentConnection = HasPageInfo & {
|
|
46300
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInIssueCommentConnection';
|
|
46301
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentEdge>>>;
|
|
46302
|
+
pageInfo: PageInfo;
|
|
46303
|
+
};
|
|
46304
|
+
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentEdge = {
|
|
46305
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInIssueCommentEdge';
|
|
46306
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46307
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46308
|
+
id: Scalars['ID']['output'];
|
|
46309
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46310
|
+
node?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentUnion>;
|
|
46311
|
+
};
|
|
45036
46312
|
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection = HasPageInfo & {
|
|
45037
46313
|
__typename?: 'GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection';
|
|
45038
46314
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseEdge>>>;
|
|
@@ -45047,6 +46323,7 @@ export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseEdge = {
|
|
|
45047
46323
|
node?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseUnion>;
|
|
45048
46324
|
};
|
|
45049
46325
|
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46326
|
+
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
45050
46327
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentConnection = HasPageInfo & {
|
|
45051
46328
|
__typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentConnection';
|
|
45052
46329
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTriggeredDeploymentEdge>>>;
|
|
@@ -45242,6 +46519,20 @@ export declare type GraphStoreSimplifiedUserUpdatedIssueInverseEdge = {
|
|
|
45242
46519
|
node?: Maybe<GraphStoreSimplifiedUserUpdatedIssueInverseUnion>;
|
|
45243
46520
|
};
|
|
45244
46521
|
export declare type GraphStoreSimplifiedUserUpdatedIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46522
|
+
export declare type GraphStoreSimplifiedUserUpdatedIssueStatusInverseConnection = HasPageInfo & {
|
|
46523
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedIssueStatusInverseConnection';
|
|
46524
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedIssueStatusInverseEdge>>>;
|
|
46525
|
+
pageInfo: PageInfo;
|
|
46526
|
+
};
|
|
46527
|
+
export declare type GraphStoreSimplifiedUserUpdatedIssueStatusInverseEdge = {
|
|
46528
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedIssueStatusInverseEdge';
|
|
46529
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46530
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46531
|
+
id: Scalars['ID']['output'];
|
|
46532
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46533
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedIssueStatusInverseUnion>;
|
|
46534
|
+
};
|
|
46535
|
+
export declare type GraphStoreSimplifiedUserUpdatedIssueStatusInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45245
46536
|
export declare type GraphStoreSimplifiedUserUpdatedIssueUnion = JiraIssue;
|
|
45246
46537
|
export declare type GraphStoreSimplifiedUserViewedAtlasGoalConnection = HasPageInfo & {
|
|
45247
46538
|
__typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalConnection';
|
|
@@ -46181,6 +47472,9 @@ export declare type GraphStoreThirdPartyToGraphRemoteLinkSortInput = {
|
|
|
46181
47472
|
export declare type GraphStoreUserAssignedIncidentSortInput = {
|
|
46182
47473
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46183
47474
|
};
|
|
47475
|
+
export declare type GraphStoreUserAssignedIssueSortInput = {
|
|
47476
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47477
|
+
};
|
|
46184
47478
|
export declare type GraphStoreUserAssignedPirSortInput = {
|
|
46185
47479
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46186
47480
|
};
|
|
@@ -46265,6 +47559,9 @@ export declare type GraphStoreUserCreatedDesignSortInput = {
|
|
|
46265
47559
|
export declare type GraphStoreUserCreatedDocumentSortInput = {
|
|
46266
47560
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46267
47561
|
};
|
|
47562
|
+
export declare type GraphStoreUserCreatedIssueCommentSortInput = {
|
|
47563
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47564
|
+
};
|
|
46268
47565
|
export declare type GraphStoreUserCreatedIssueWorklogSortInput = {
|
|
46269
47566
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46270
47567
|
};
|
|
@@ -46274,6 +47571,9 @@ export declare type GraphStoreUserCreatedLoomVideoSortInput = {
|
|
|
46274
47571
|
export declare type GraphStoreUserCreatedMessageSortInput = {
|
|
46275
47572
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46276
47573
|
};
|
|
47574
|
+
export declare type GraphStoreUserCreatedReleaseSortInput = {
|
|
47575
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47576
|
+
};
|
|
46277
47577
|
export declare type GraphStoreUserCreatedRemoteLinkSortInput = {
|
|
46278
47578
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46279
47579
|
};
|
|
@@ -46370,6 +47670,9 @@ export declare type GraphStoreUserOwnsComponentSortInput = {
|
|
|
46370
47670
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46371
47671
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
46372
47672
|
};
|
|
47673
|
+
export declare type GraphStoreUserOwnsFocusAreaSortInput = {
|
|
47674
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47675
|
+
};
|
|
46373
47676
|
export declare type GraphStoreUserReportedIncidentSortInput = {
|
|
46374
47677
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46375
47678
|
};
|
|
@@ -46409,6 +47712,9 @@ export declare type GraphStoreUserUpdatedGraphDocumentSortInput = {
|
|
|
46409
47712
|
export declare type GraphStoreUserUpdatedIssueSortInput = {
|
|
46410
47713
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46411
47714
|
};
|
|
47715
|
+
export declare type GraphStoreUserUpdatedIssueStatusSortInput = {
|
|
47716
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47717
|
+
};
|
|
46412
47718
|
export declare type GraphStoreUserViewedAtlasGoalSortInput = {
|
|
46413
47719
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46414
47720
|
};
|
|
@@ -49699,69 +51005,6 @@ export declare type IssueDevOpsTestSummary = {
|
|
|
49699
51005
|
numberSkipped?: Maybe<Scalars['Int']['output']>;
|
|
49700
51006
|
totalNumber?: Maybe<Scalars['Int']['output']>;
|
|
49701
51007
|
};
|
|
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
51008
|
export declare type JiraAdf = {
|
|
49766
51009
|
__typename?: 'JiraADF';
|
|
49767
51010
|
convertedPlainText?: Maybe<JiraAdfToConvertedPlainText>;
|
|
@@ -50835,6 +52078,18 @@ export declare enum JiraBoardLocationType {
|
|
|
50835
52078
|
User = "USER"
|
|
50836
52079
|
}
|
|
50837
52080
|
export declare type JiraBoardResult = JiraBoard | QueryError;
|
|
52081
|
+
export declare enum JiraBoardSwimlaneStrategy {
|
|
52082
|
+
AssigneeUnassignedFirst = "ASSIGNEE_UNASSIGNED_FIRST",
|
|
52083
|
+
AssigneeUnassignedLast = "ASSIGNEE_UNASSIGNED_LAST",
|
|
52084
|
+
Custom = "CUSTOM",
|
|
52085
|
+
Epic = "EPIC",
|
|
52086
|
+
IssueChildren = "ISSUE_CHILDREN",
|
|
52087
|
+
IssueParent = "ISSUE_PARENT",
|
|
52088
|
+
None = "NONE",
|
|
52089
|
+
ParentChild = "PARENT_CHILD",
|
|
52090
|
+
Project = "PROJECT",
|
|
52091
|
+
RequestType = "REQUEST_TYPE"
|
|
52092
|
+
}
|
|
50838
52093
|
export declare enum JiraBoardType {
|
|
50839
52094
|
Kanban = "KANBAN",
|
|
50840
52095
|
Scrum = "SCRUM"
|
|
@@ -51034,6 +52289,17 @@ export declare enum JiraBulkOperationType {
|
|
|
51034
52289
|
BulkUnwatch = "BULK_UNWATCH",
|
|
51035
52290
|
BulkWatch = "BULK_WATCH"
|
|
51036
52291
|
}
|
|
52292
|
+
export declare type JiraBulkSetBoardViewColumnStateInput = {
|
|
52293
|
+
collapsed: Scalars['Boolean']['input'];
|
|
52294
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
52295
|
+
viewId: Scalars['ID']['input'];
|
|
52296
|
+
};
|
|
52297
|
+
export declare type JiraBulkSetBoardViewColumnStatePayload = Payload & {
|
|
52298
|
+
__typename?: 'JiraBulkSetBoardViewColumnStatePayload';
|
|
52299
|
+
boardView?: Maybe<JiraBoardView>;
|
|
52300
|
+
errors?: Maybe<Array<MutationError>>;
|
|
52301
|
+
success: Scalars['Boolean']['output'];
|
|
52302
|
+
};
|
|
51037
52303
|
export declare type JiraBulkTransition = Node & {
|
|
51038
52304
|
__typename?: 'JiraBulkTransition';
|
|
51039
52305
|
id: Scalars['ID']['output'];
|
|
@@ -51879,6 +53145,7 @@ export declare type JiraCommentSortInput = {
|
|
|
51879
53145
|
};
|
|
51880
53146
|
export declare type JiraCommentSummary = {
|
|
51881
53147
|
__typename?: 'JiraCommentSummary';
|
|
53148
|
+
canAddComment?: Maybe<Scalars['Boolean']['output']>;
|
|
51882
53149
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
51883
53150
|
};
|
|
51884
53151
|
export declare type JiraCommentSummaryField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
@@ -52460,6 +53727,12 @@ export declare type JiraCreateJourneyConfigurationPayload = Payload & {
|
|
|
52460
53727
|
jiraJourneyConfigurationEdge?: Maybe<JiraJourneyConfigurationEdge>;
|
|
52461
53728
|
success: Scalars['Boolean']['output'];
|
|
52462
53729
|
};
|
|
53730
|
+
export declare type JiraCreateJourneyItemInput = {
|
|
53731
|
+
configuration?: InputMaybe<JiraJourneyItemConfigurationInput>;
|
|
53732
|
+
insertAfterItemId?: InputMaybe<Scalars['ID']['input']>;
|
|
53733
|
+
journeyId: Scalars['ID']['input'];
|
|
53734
|
+
journeyVersion: Scalars['Long']['input'];
|
|
53735
|
+
};
|
|
52463
53736
|
export declare type JiraCreateNavigationItemPayload = Payload & {
|
|
52464
53737
|
__typename?: 'JiraCreateNavigationItemPayload';
|
|
52465
53738
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -53256,6 +54529,7 @@ export declare type JiraDisableJourneyConfigurationInput = {
|
|
|
53256
54529
|
version: Scalars['Long']['input'];
|
|
53257
54530
|
};
|
|
53258
54531
|
export declare type JiraDiscardUserBoardViewConfigInput = {
|
|
54532
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
53259
54533
|
viewId: Scalars['ID']['input'];
|
|
53260
54534
|
};
|
|
53261
54535
|
export declare type JiraDiscardUserBoardViewConfigPayload = Payload & {
|
|
@@ -54560,6 +55834,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
54560
55834
|
issueId: Scalars['String']['output'];
|
|
54561
55835
|
issueLinks?: Maybe<JiraIssueLinkConnection>;
|
|
54562
55836
|
issuePropertyByKey?: Maybe<Scalars['JSON']['output']>;
|
|
55837
|
+
issueRestrictionField?: Maybe<JiraIssueRestrictionField>;
|
|
54563
55838
|
issueTypeAvatarUrl?: Maybe<Scalars['URL']['output']>;
|
|
54564
55839
|
issueTypeField?: Maybe<JiraIssueTypeField>;
|
|
54565
55840
|
issueTypesForHierarchyAbove?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -54597,6 +55872,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
54597
55872
|
resolutionField?: Maybe<JiraResolutionField>;
|
|
54598
55873
|
screenId?: Maybe<Scalars['Long']['output']>;
|
|
54599
55874
|
searchViewContext?: Maybe<JiraIssueSearchViewContexts>;
|
|
55875
|
+
securityLevelField?: Maybe<JiraSecurityLevelField>;
|
|
54600
55876
|
smartSummary?: Maybe<JiraAdf>;
|
|
54601
55877
|
startDateField?: Maybe<JiraDatePickerField>;
|
|
54602
55878
|
startDateViewField?: Maybe<JiraIssueField>;
|
|
@@ -54612,6 +55888,8 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
54612
55888
|
summaryField?: Maybe<JiraSingleLineTextField>;
|
|
54613
55889
|
timeTrackingField?: Maybe<JiraTimeTrackingField>;
|
|
54614
55890
|
updatedField?: Maybe<JiraDateTimePickerField>;
|
|
55891
|
+
votesField?: Maybe<JiraVotesField>;
|
|
55892
|
+
watchesField?: Maybe<JiraWatchesField>;
|
|
54615
55893
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
54616
55894
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
54617
55895
|
};
|
|
@@ -56143,6 +57421,10 @@ export declare type JiraJqlHistoryEdge = {
|
|
|
56143
57421
|
__typename?: 'JiraJQLHistoryEdge';
|
|
56144
57422
|
node?: Maybe<JiraJqlHistory>;
|
|
56145
57423
|
};
|
|
57424
|
+
export declare type JiraJourneyBuilderAssociatedAutomationRule = {
|
|
57425
|
+
__typename?: 'JiraJourneyBuilderAssociatedAutomationRule';
|
|
57426
|
+
id: Scalars['ID']['output'];
|
|
57427
|
+
};
|
|
56146
57428
|
export declare type JiraJourneyConfiguration = Node & {
|
|
56147
57429
|
__typename?: 'JiraJourneyConfiguration';
|
|
56148
57430
|
activityConfigurations?: Maybe<Array<Maybe<JiraActivityConfiguration>>>;
|
|
@@ -56176,6 +57458,10 @@ export declare type JiraJourneyItemCommon = {
|
|
|
56176
57458
|
id: Scalars['ID']['output'];
|
|
56177
57459
|
name?: Maybe<Scalars['String']['output']>;
|
|
56178
57460
|
};
|
|
57461
|
+
export declare type JiraJourneyItemConfigurationInput = {
|
|
57462
|
+
statusDependencyConfiguration?: InputMaybe<JiraJourneyStatusDependencyConfigurationInput>;
|
|
57463
|
+
workItemConfiguration?: InputMaybe<JiraJourneyWorkItemConfigurationInput>;
|
|
57464
|
+
};
|
|
56179
57465
|
export declare type JiraJourneyParentIssue = {
|
|
56180
57466
|
__typename?: 'JiraJourneyParentIssue';
|
|
56181
57467
|
project?: Maybe<JiraProject>;
|
|
@@ -56211,6 +57497,14 @@ export declare type JiraJourneyStatusDependency = JiraJourneyItemCommon & {
|
|
|
56211
57497
|
statusType?: Maybe<JiraJourneyStatusDependencyType>;
|
|
56212
57498
|
workItemIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
56213
57499
|
};
|
|
57500
|
+
export declare type JiraJourneyStatusDependencyConfigurationInput = {
|
|
57501
|
+
statuses?: InputMaybe<Array<JiraJourneyStatusDependencyConfigurationStatusInput>>;
|
|
57502
|
+
workItemIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
57503
|
+
};
|
|
57504
|
+
export declare type JiraJourneyStatusDependencyConfigurationStatusInput = {
|
|
57505
|
+
id: Scalars['ID']['input'];
|
|
57506
|
+
type: JiraJourneyStatusDependencyType;
|
|
57507
|
+
};
|
|
56214
57508
|
export declare enum JiraJourneyStatusDependencyType {
|
|
56215
57509
|
Status = "STATUS",
|
|
56216
57510
|
StatusCategory = "STATUS_CATEGORY"
|
|
@@ -56233,6 +57527,7 @@ export declare enum JiraJourneyTriggerType {
|
|
|
56233
57527
|
}
|
|
56234
57528
|
export declare type JiraJourneyWorkItem = JiraJourneyItemCommon & {
|
|
56235
57529
|
__typename?: 'JiraJourneyWorkItem';
|
|
57530
|
+
associatedAutomationRules?: Maybe<Array<JiraJourneyBuilderAssociatedAutomationRule>>;
|
|
56236
57531
|
fieldValues?: Maybe<Array<JiraJourneyWorkItemFieldValueKeyValuePair>>;
|
|
56237
57532
|
id: Scalars['ID']['output'];
|
|
56238
57533
|
issueType?: Maybe<JiraIssueType>;
|
|
@@ -56240,11 +57535,22 @@ export declare type JiraJourneyWorkItem = JiraJourneyItemCommon & {
|
|
|
56240
57535
|
project?: Maybe<JiraProject>;
|
|
56241
57536
|
requestType?: Maybe<JiraServiceManagementRequestType>;
|
|
56242
57537
|
};
|
|
57538
|
+
export declare type JiraJourneyWorkItemConfigurationInput = {
|
|
57539
|
+
fieldValues?: InputMaybe<Array<InputMaybe<JiraJourneyWorkItemFieldValueKeyValuePairInput>>>;
|
|
57540
|
+
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
57541
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
57542
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
57543
|
+
requestTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
57544
|
+
};
|
|
56243
57545
|
export declare type JiraJourneyWorkItemFieldValueKeyValuePair = {
|
|
56244
57546
|
__typename?: 'JiraJourneyWorkItemFieldValueKeyValuePair';
|
|
56245
57547
|
key?: Maybe<Scalars['String']['output']>;
|
|
56246
57548
|
value?: Maybe<Array<Scalars['String']['output']>>;
|
|
56247
57549
|
};
|
|
57550
|
+
export declare type JiraJourneyWorkItemFieldValueKeyValuePairInput = {
|
|
57551
|
+
key: Scalars['String']['input'];
|
|
57552
|
+
value: Array<InputMaybe<Scalars['String']['input']>>;
|
|
57553
|
+
};
|
|
56248
57554
|
export declare type JiraJourneyWorkdayIntegrationTriggerConfiguration = {
|
|
56249
57555
|
__typename?: 'JiraJourneyWorkdayIntegrationTriggerConfiguration';
|
|
56250
57556
|
ruleId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -56279,6 +57585,7 @@ export declare enum JiraJqlAutocompleteType {
|
|
|
56279
57585
|
}
|
|
56280
57586
|
export declare type JiraJqlBoardInput = {
|
|
56281
57587
|
boardId: Scalars['Long']['input'];
|
|
57588
|
+
swimlaneStrategy?: InputMaybe<JiraBoardSwimlaneStrategy>;
|
|
56282
57589
|
};
|
|
56283
57590
|
export declare type JiraJqlBuilder = {
|
|
56284
57591
|
__typename?: 'JiraJqlBuilder';
|
|
@@ -57344,6 +58651,7 @@ export declare type JiraMutation = {
|
|
|
57344
58651
|
__typename?: 'JiraMutation';
|
|
57345
58652
|
addFieldsToProject?: Maybe<JiraAddFieldsToProjectPayload>;
|
|
57346
58653
|
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
58654
|
+
addJiraJourneyWorkItemAssociatedAutomationRule?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
57347
58655
|
addJiraVersionApprover?: Maybe<JiraVersionAddApproverPayload>;
|
|
57348
58656
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
57349
58657
|
addPostIncidentReviewLink?: Maybe<JiraAddPostIncidentReviewLinkMutationPayload>;
|
|
@@ -57367,6 +58675,7 @@ export declare type JiraMutation = {
|
|
|
57367
58675
|
createIssueLinks?: Maybe<JiraBulkCreateIssueLinksPayload>;
|
|
57368
58676
|
createJiraActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
57369
58677
|
createJiraJourneyConfiguration?: Maybe<JiraCreateJourneyConfigurationPayload>;
|
|
58678
|
+
createJiraJourneyItem?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
57370
58679
|
createJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
57371
58680
|
createJwmFilter?: Maybe<JiraWorkManagementCreateFilterPayload>;
|
|
57372
58681
|
createJwmIssue?: Maybe<JiraWorkManagementCreateIssuePayload>;
|
|
@@ -57422,6 +58731,7 @@ export declare type JiraMutation = {
|
|
|
57422
58731
|
removeCustomField?: Maybe<JiraRemoveCustomFieldPayload>;
|
|
57423
58732
|
removeIssuesFromAllFixVersions?: Maybe<JiraRemoveIssuesFromAllFixVersionsPayload>;
|
|
57424
58733
|
removeIssuesFromFixVersion?: Maybe<JiraRemoveIssuesFromFixVersionPayload>;
|
|
58734
|
+
removeJiraJourneyWorkItemAssociatedAutomationRule?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
57425
58735
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
57426
58736
|
removePostIncidentReviewLink?: Maybe<JiraRemovePostIncidentReviewLinkMutationPayload>;
|
|
57427
58737
|
removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
|
|
@@ -57541,6 +58851,10 @@ export declare type JiraMutationAddFieldsToProjectArgs = {
|
|
|
57541
58851
|
export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
57542
58852
|
input: JiraAddIssuesToFixVersionInput;
|
|
57543
58853
|
};
|
|
58854
|
+
export declare type JiraMutationAddJiraJourneyWorkItemAssociatedAutomationRuleArgs = {
|
|
58855
|
+
cloudId: Scalars['ID']['input'];
|
|
58856
|
+
input: JiraUpdateJourneyWorkItemAssociatedAutomationRuleInput;
|
|
58857
|
+
};
|
|
57544
58858
|
export declare type JiraMutationAddJiraVersionApproverArgs = {
|
|
57545
58859
|
input: JiraVersionAddApproverInput;
|
|
57546
58860
|
};
|
|
@@ -57622,6 +58936,10 @@ export declare type JiraMutationCreateJiraJourneyConfigurationArgs = {
|
|
|
57622
58936
|
cloudId: Scalars['ID']['input'];
|
|
57623
58937
|
input: JiraCreateJourneyConfigurationInput;
|
|
57624
58938
|
};
|
|
58939
|
+
export declare type JiraMutationCreateJiraJourneyItemArgs = {
|
|
58940
|
+
cloudId: Scalars['ID']['input'];
|
|
58941
|
+
input: JiraCreateJourneyItemInput;
|
|
58942
|
+
};
|
|
57625
58943
|
export declare type JiraMutationCreateJiraVersionArgs = {
|
|
57626
58944
|
input: JiraVersionCreateMutationInput;
|
|
57627
58945
|
};
|
|
@@ -57797,6 +59115,10 @@ export declare type JiraMutationRemoveIssuesFromAllFixVersionsArgs = {
|
|
|
57797
59115
|
export declare type JiraMutationRemoveIssuesFromFixVersionArgs = {
|
|
57798
59116
|
input: JiraRemoveIssuesFromFixVersionInput;
|
|
57799
59117
|
};
|
|
59118
|
+
export declare type JiraMutationRemoveJiraJourneyWorkItemAssociatedAutomationRuleArgs = {
|
|
59119
|
+
cloudId: Scalars['ID']['input'];
|
|
59120
|
+
input: JiraUpdateJourneyWorkItemAssociatedAutomationRuleInput;
|
|
59121
|
+
};
|
|
57800
59122
|
export declare type JiraMutationRemovePermissionSchemeGrantsArgs = {
|
|
57801
59123
|
input: JiraPermissionSchemeRemoveGrantInput;
|
|
57802
59124
|
};
|
|
@@ -58222,6 +59544,7 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
58222
59544
|
Calendar = "CALENDAR",
|
|
58223
59545
|
Code = "CODE",
|
|
58224
59546
|
Components = "COMPONENTS",
|
|
59547
|
+
CustomerSupport = "CUSTOMER_SUPPORT",
|
|
58225
59548
|
Dependencies = "DEPENDENCIES",
|
|
58226
59549
|
Deployments = "DEPLOYMENTS",
|
|
58227
59550
|
Development = "DEVELOPMENT",
|
|
@@ -58271,7 +59594,8 @@ export declare enum JiraNotificationCategoryType {
|
|
|
58271
59594
|
IssueChanges = "ISSUE_CHANGES",
|
|
58272
59595
|
IssueMentioned = "ISSUE_MENTIONED",
|
|
58273
59596
|
IssueMiscellaneous = "ISSUE_MISCELLANEOUS",
|
|
58274
|
-
IssueWorklogChanges = "ISSUE_WORKLOG_CHANGES"
|
|
59597
|
+
IssueWorklogChanges = "ISSUE_WORKLOG_CHANGES",
|
|
59598
|
+
Recurring = "RECURRING"
|
|
58275
59599
|
}
|
|
58276
59600
|
export declare type JiraNotificationChannel = {
|
|
58277
59601
|
__typename?: 'JiraNotificationChannel';
|
|
@@ -58320,6 +59644,7 @@ export declare type JiraNotificationPreferences = {
|
|
|
58320
59644
|
commentCreated?: Maybe<JiraNotificationPreference>;
|
|
58321
59645
|
commentDeleted?: Maybe<JiraNotificationPreference>;
|
|
58322
59646
|
commentEdited?: Maybe<JiraNotificationPreference>;
|
|
59647
|
+
dailyDueDateNotification?: Maybe<JiraNotificationPreference>;
|
|
58323
59648
|
issueAssigned?: Maybe<JiraNotificationPreference>;
|
|
58324
59649
|
issueCreated?: Maybe<JiraNotificationPreference>;
|
|
58325
59650
|
issueDeleted?: Maybe<JiraNotificationPreference>;
|
|
@@ -58346,6 +59671,7 @@ export declare enum JiraNotificationType {
|
|
|
58346
59671
|
CommentCreated = "COMMENT_CREATED",
|
|
58347
59672
|
CommentDeleted = "COMMENT_DELETED",
|
|
58348
59673
|
CommentEdited = "COMMENT_EDITED",
|
|
59674
|
+
DailyDueDateNotification = "DAILY_DUE_DATE_NOTIFICATION",
|
|
58349
59675
|
IssueAssigned = "ISSUE_ASSIGNED",
|
|
58350
59676
|
IssueCreated = "ISSUE_CREATED",
|
|
58351
59677
|
IssueDeleted = "ISSUE_DELETED",
|
|
@@ -58984,11 +60310,18 @@ export declare type JiraPlan = Node & {
|
|
|
58984
60310
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
58985
60311
|
owner?: Maybe<User>;
|
|
58986
60312
|
planId?: Maybe<Scalars['Long']['output']>;
|
|
60313
|
+
planScenarios?: Maybe<JiraScenarioConnection>;
|
|
58987
60314
|
planStatus?: Maybe<JiraPlanStatus>;
|
|
58988
60315
|
planUrl?: Maybe<Scalars['URL']['output']>;
|
|
58989
60316
|
scenario?: Maybe<JiraScenario>;
|
|
58990
60317
|
title?: Maybe<Scalars['String']['output']>;
|
|
58991
60318
|
};
|
|
60319
|
+
export declare type JiraPlanPlanScenariosArgs = {
|
|
60320
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
60321
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
60322
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
60323
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
60324
|
+
};
|
|
58992
60325
|
export declare type JiraPlanFeatureMutationInput = {
|
|
58993
60326
|
enabled: Scalars['Boolean']['input'];
|
|
58994
60327
|
planId: Scalars['ID']['input'];
|
|
@@ -59353,6 +60686,8 @@ export declare type JiraProject = Node & {
|
|
|
59353
60686
|
opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
|
|
59354
60687
|
projectFieldTypeGroups?: Maybe<JiraFieldTypeGroupConnection>;
|
|
59355
60688
|
projectId?: Maybe<Scalars['String']['output']>;
|
|
60689
|
+
projectScopedFieldsCount?: Maybe<Scalars['Int']['output']>;
|
|
60690
|
+
projectScopedFieldsPerProjectLimit?: Maybe<Scalars['Int']['output']>;
|
|
59356
60691
|
projectStyle?: Maybe<JiraProjectStyle>;
|
|
59357
60692
|
projectType?: Maybe<JiraProjectType>;
|
|
59358
60693
|
projectTypeName?: Maybe<Scalars['String']['output']>;
|
|
@@ -60000,10 +61335,16 @@ export declare type JiraProjectUpdateNameMutationPayload = Payload & {
|
|
|
60000
61335
|
};
|
|
60001
61336
|
export declare type JiraProjectWithIssueTypeIds = {
|
|
60002
61337
|
__typename?: 'JiraProjectWithIssueTypeIds';
|
|
61338
|
+
aiSuggestedAvailableFields?: Maybe<JiraAvailableFieldsConnection>;
|
|
60003
61339
|
allowedCustomFieldTypes?: Maybe<JiraFieldTypeConnection>;
|
|
60004
61340
|
availableFields?: Maybe<JiraAvailableFieldsConnection>;
|
|
60005
61341
|
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypesConnection>;
|
|
60006
61342
|
};
|
|
61343
|
+
export declare type JiraProjectWithIssueTypeIdsAiSuggestedAvailableFieldsArgs = {
|
|
61344
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61345
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61346
|
+
input?: InputMaybe<JiraProjectAvailableFieldsInput>;
|
|
61347
|
+
};
|
|
60007
61348
|
export declare type JiraProjectWithIssueTypeIdsAllowedCustomFieldTypesArgs = {
|
|
60008
61349
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
60009
61350
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -61514,6 +62855,7 @@ export declare type JiraReorderBoardViewColumnInput = {
|
|
|
61514
62855
|
columnId: Scalars['ID']['input'];
|
|
61515
62856
|
position: JiraReorderBoardViewColumnPosition;
|
|
61516
62857
|
relativeColumnId: Scalars['ID']['input'];
|
|
62858
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
61517
62859
|
viewId: Scalars['ID']['input'];
|
|
61518
62860
|
};
|
|
61519
62861
|
export declare type JiraReorderBoardViewColumnPayload = Payload & {
|
|
@@ -61842,6 +63184,17 @@ export declare type JiraScenario = Node & {
|
|
|
61842
63184
|
scenarioUrl?: Maybe<Scalars['URL']['output']>;
|
|
61843
63185
|
title?: Maybe<Scalars['String']['output']>;
|
|
61844
63186
|
};
|
|
63187
|
+
export declare type JiraScenarioConnection = {
|
|
63188
|
+
__typename?: 'JiraScenarioConnection';
|
|
63189
|
+
edges?: Maybe<Array<Maybe<JiraScenarioEdge>>>;
|
|
63190
|
+
pageInfo?: Maybe<PageInfo>;
|
|
63191
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
63192
|
+
};
|
|
63193
|
+
export declare type JiraScenarioEdge = {
|
|
63194
|
+
__typename?: 'JiraScenarioEdge';
|
|
63195
|
+
cursor: Scalars['String']['output'];
|
|
63196
|
+
node?: Maybe<JiraScenario>;
|
|
63197
|
+
};
|
|
61845
63198
|
export declare type JiraScenarioIssue = JiraScenarioIssueLike & Node & {
|
|
61846
63199
|
__typename?: 'JiraScenarioIssue';
|
|
61847
63200
|
id: Scalars['ID']['output'];
|
|
@@ -63157,6 +64510,7 @@ export declare type JiraSetApplicationPropertyInput = {
|
|
|
63157
64510
|
export declare type JiraSetBoardViewCardFieldSelectedInput = {
|
|
63158
64511
|
fieldId: Scalars['String']['input'];
|
|
63159
64512
|
selected: Scalars['Boolean']['input'];
|
|
64513
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
63160
64514
|
viewId: Scalars['ID']['input'];
|
|
63161
64515
|
};
|
|
63162
64516
|
export declare type JiraSetBoardViewCardFieldSelectedPayload = Payload & {
|
|
@@ -63168,6 +64522,7 @@ export declare type JiraSetBoardViewCardFieldSelectedPayload = Payload & {
|
|
|
63168
64522
|
export declare type JiraSetBoardViewCardOptionStateInput = {
|
|
63169
64523
|
enabled: Scalars['Boolean']['input'];
|
|
63170
64524
|
id: Scalars['ID']['input'];
|
|
64525
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
63171
64526
|
viewId: Scalars['ID']['input'];
|
|
63172
64527
|
};
|
|
63173
64528
|
export declare type JiraSetBoardViewCardOptionStatePayload = Payload & {
|
|
@@ -63179,6 +64534,7 @@ export declare type JiraSetBoardViewCardOptionStatePayload = Payload & {
|
|
|
63179
64534
|
export declare type JiraSetBoardViewColumnStateInput = {
|
|
63180
64535
|
collapsed: Scalars['Boolean']['input'];
|
|
63181
64536
|
columnId: Scalars['ID']['input'];
|
|
64537
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
63182
64538
|
viewId: Scalars['ID']['input'];
|
|
63183
64539
|
};
|
|
63184
64540
|
export declare type JiraSetBoardViewColumnStatePayload = Payload & {
|
|
@@ -63187,8 +64543,20 @@ export declare type JiraSetBoardViewColumnStatePayload = Payload & {
|
|
|
63187
64543
|
errors?: Maybe<Array<MutationError>>;
|
|
63188
64544
|
success: Scalars['Boolean']['output'];
|
|
63189
64545
|
};
|
|
64546
|
+
export declare type JiraSetBoardViewColumnsOrderInput = {
|
|
64547
|
+
columnIds: Array<Scalars['ID']['input']>;
|
|
64548
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
64549
|
+
viewId: Scalars['ID']['input'];
|
|
64550
|
+
};
|
|
64551
|
+
export declare type JiraSetBoardViewColumnsOrderPayload = Payload & {
|
|
64552
|
+
__typename?: 'JiraSetBoardViewColumnsOrderPayload';
|
|
64553
|
+
boardView?: Maybe<JiraBoardView>;
|
|
64554
|
+
errors?: Maybe<Array<MutationError>>;
|
|
64555
|
+
success: Scalars['Boolean']['output'];
|
|
64556
|
+
};
|
|
63190
64557
|
export declare type JiraSetBoardViewCompletedIssueSearchCutOffInput = {
|
|
63191
64558
|
completedIssueSearchCutOffInDays: Scalars['Int']['input'];
|
|
64559
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
63192
64560
|
viewId: Scalars['ID']['input'];
|
|
63193
64561
|
};
|
|
63194
64562
|
export declare type JiraSetBoardViewCompletedIssueSearchCutOffPayload = Payload & {
|
|
@@ -63199,6 +64567,7 @@ export declare type JiraSetBoardViewCompletedIssueSearchCutOffPayload = Payload
|
|
|
63199
64567
|
};
|
|
63200
64568
|
export declare type JiraSetBoardViewFilterInput = {
|
|
63201
64569
|
jql: Scalars['String']['input'];
|
|
64570
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
63202
64571
|
viewId: Scalars['ID']['input'];
|
|
63203
64572
|
};
|
|
63204
64573
|
export declare type JiraSetBoardViewFilterPayload = Payload & {
|
|
@@ -63210,6 +64579,7 @@ export declare type JiraSetBoardViewFilterPayload = Payload & {
|
|
|
63210
64579
|
};
|
|
63211
64580
|
export declare type JiraSetBoardViewGroupByInput = {
|
|
63212
64581
|
fieldId: Scalars['String']['input'];
|
|
64582
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
63213
64583
|
viewId: Scalars['ID']['input'];
|
|
63214
64584
|
};
|
|
63215
64585
|
export declare type JiraSetBoardViewGroupByPayload = Payload & {
|
|
@@ -63221,6 +64591,7 @@ export declare type JiraSetBoardViewGroupByPayload = Payload & {
|
|
|
63221
64591
|
};
|
|
63222
64592
|
export declare type JiraSetBoardViewWorkflowSelectedInput = {
|
|
63223
64593
|
selectedWorkflowId: Scalars['ID']['input'];
|
|
64594
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
63224
64595
|
viewId: Scalars['ID']['input'];
|
|
63225
64596
|
};
|
|
63226
64597
|
export declare type JiraSetBoardViewWorkflowSelectedPayload = Payload & {
|
|
@@ -64679,6 +66050,12 @@ export declare type JiraUpdateJourneyTriggerConfigurationInput = {
|
|
|
64679
66050
|
triggerConfiguration?: InputMaybe<JiraJourneyTriggerConfigurationInput>;
|
|
64680
66051
|
version: Scalars['Long']['input'];
|
|
64681
66052
|
};
|
|
66053
|
+
export declare type JiraUpdateJourneyWorkItemAssociatedAutomationRuleInput = {
|
|
66054
|
+
associatedRuleId: Scalars['ID']['input'];
|
|
66055
|
+
journeyId: Scalars['ID']['input'];
|
|
66056
|
+
journeyItemId: Scalars['ID']['input'];
|
|
66057
|
+
journeyVersion: Scalars['Long']['input'];
|
|
66058
|
+
};
|
|
64682
66059
|
export declare type JiraUpdateLabelsFieldInput = {
|
|
64683
66060
|
id: Scalars['ID']['input'];
|
|
64684
66061
|
operations: Array<JiraLabelsFieldOperationInput>;
|
|
@@ -68047,6 +69424,18 @@ export declare type LookAndFeelSettings = {
|
|
|
68047
69424
|
selected?: Maybe<Scalars['String']['output']>;
|
|
68048
69425
|
theme?: Maybe<LookAndFeel>;
|
|
68049
69426
|
};
|
|
69427
|
+
export declare type LoomComment = Node & {
|
|
69428
|
+
__typename?: 'LoomComment';
|
|
69429
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
69430
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
69431
|
+
editedAt?: Maybe<Scalars['String']['output']>;
|
|
69432
|
+
id: Scalars['ID']['output'];
|
|
69433
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
69434
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
69435
|
+
user?: Maybe<User>;
|
|
69436
|
+
userId?: Maybe<Scalars['ID']['output']>;
|
|
69437
|
+
videoId: Scalars['ID']['output'];
|
|
69438
|
+
};
|
|
68050
69439
|
export declare type LoomMeeting = Node & {
|
|
68051
69440
|
__typename?: 'LoomMeeting';
|
|
68052
69441
|
endsAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -68060,6 +69449,15 @@ export declare type LoomMeeting = Node & {
|
|
|
68060
69449
|
title: Scalars['String']['output'];
|
|
68061
69450
|
video?: Maybe<LoomVideo>;
|
|
68062
69451
|
};
|
|
69452
|
+
export declare type LoomMeetingRecurrence = Node & {
|
|
69453
|
+
__typename?: 'LoomMeetingRecurrence';
|
|
69454
|
+
id: Scalars['ID']['output'];
|
|
69455
|
+
meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
69456
|
+
};
|
|
69457
|
+
export declare type LoomMeetingRecurrenceMeetingsArgs = {
|
|
69458
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69459
|
+
meetingIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
69460
|
+
};
|
|
68063
69461
|
export declare enum LoomMeetingSource {
|
|
68064
69462
|
GoogleCalendar = "GOOGLE_CALENDAR",
|
|
68065
69463
|
MicrosoftOutlook = "MICROSOFT_OUTLOOK",
|
|
@@ -68084,6 +69482,7 @@ export declare type LoomVideo = Node & {
|
|
|
68084
69482
|
__typename?: 'LoomVideo';
|
|
68085
69483
|
description?: Maybe<Scalars['String']['output']>;
|
|
68086
69484
|
id: Scalars['ID']['output'];
|
|
69485
|
+
isArchived: Scalars['Boolean']['output'];
|
|
68087
69486
|
name: Scalars['String']['output'];
|
|
68088
69487
|
owner?: Maybe<User>;
|
|
68089
69488
|
ownerId?: Maybe<Scalars['String']['output']>;
|
|
@@ -69988,6 +71387,7 @@ export declare type MarketplaceStoreHostStatusResponse = {
|
|
|
69988
71387
|
};
|
|
69989
71388
|
export declare type MarketplaceStoreInstallAppInput = {
|
|
69990
71389
|
appKey: Scalars['String']['input'];
|
|
71390
|
+
offeringId?: InputMaybe<Scalars['String']['input']>;
|
|
69991
71391
|
target: MarketplaceStoreInstallAppTargetInput;
|
|
69992
71392
|
};
|
|
69993
71393
|
export declare type MarketplaceStoreInstallAppResponse = {
|
|
@@ -70724,6 +72124,7 @@ export declare type MercuryFocusAreaActivityEdge = {
|
|
|
70724
72124
|
};
|
|
70725
72125
|
export declare type MercuryFocusAreaActivityHistory = Node & {
|
|
70726
72126
|
__typename?: 'MercuryFocusAreaActivityHistory';
|
|
72127
|
+
associatedEntityAri?: Maybe<Scalars['String']['output']>;
|
|
70727
72128
|
eventDate?: Maybe<Scalars['String']['output']>;
|
|
70728
72129
|
eventType?: Maybe<MercuryEventType>;
|
|
70729
72130
|
fields?: Maybe<Array<Maybe<MercuryUpdatedField>>>;
|
|
@@ -71319,6 +72720,14 @@ export declare type MercuryProviderOrchestrationMutationApiLinkAtlassianWorkToFo
|
|
|
71319
72720
|
export declare type MercuryProviderOrchestrationMutationApiLinkWorkToFocusAreaArgs = {
|
|
71320
72721
|
input: MercuryLinkWorkToFocusAreaInput;
|
|
71321
72722
|
};
|
|
72723
|
+
export declare type MercuryProviderOrchestrationQueryApi = {
|
|
72724
|
+
__typename?: 'MercuryProviderOrchestrationQueryApi';
|
|
72725
|
+
isWorkspaceConnected: Array<MercuryWorkspaceConnectionStatus>;
|
|
72726
|
+
};
|
|
72727
|
+
export declare type MercuryProviderOrchestrationQueryApiIsWorkspaceConnectedArgs = {
|
|
72728
|
+
cloudId: Scalars['ID']['input'];
|
|
72729
|
+
workspaceAris: Array<Scalars['String']['input']>;
|
|
72730
|
+
};
|
|
71322
72731
|
export declare type MercuryProviderUser = {
|
|
71323
72732
|
id: Scalars['ID']['output'];
|
|
71324
72733
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -71404,8 +72813,6 @@ export declare type MercuryQueryApi = {
|
|
|
71404
72813
|
myPreference?: Maybe<MercuryPreference>;
|
|
71405
72814
|
myPreferences?: Maybe<Array<MercuryPreference>>;
|
|
71406
72815
|
portfoliosByAris?: Maybe<Array<MercuryPortfolio>>;
|
|
71407
|
-
providerWork?: Maybe<MercuryProviderWork>;
|
|
71408
|
-
providerWorksByAris?: Maybe<Array<MercuryProviderWork>>;
|
|
71409
72816
|
team?: Maybe<MercuryTeam>;
|
|
71410
72817
|
teams?: Maybe<MercuryTeamConnection>;
|
|
71411
72818
|
workspaceContext: MercuryWorkspaceContext;
|
|
@@ -71504,13 +72911,6 @@ export declare type MercuryQueryApiMyPreferencesArgs = {
|
|
|
71504
72911
|
export declare type MercuryQueryApiPortfoliosByArisArgs = {
|
|
71505
72912
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
71506
72913
|
};
|
|
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
72914
|
export declare type MercuryQueryApiTeamArgs = {
|
|
71515
72915
|
cloudId: Scalars['ID']['input'];
|
|
71516
72916
|
id: Scalars['ID']['input'];
|
|
@@ -71713,6 +73113,11 @@ export declare type MercuryUserEdge = {
|
|
|
71713
73113
|
node?: Maybe<User>;
|
|
71714
73114
|
};
|
|
71715
73115
|
export declare type MercuryWorkResult = MercuryProviderWork | MercuryProviderWorkError;
|
|
73116
|
+
export declare type MercuryWorkspaceConnectionStatus = {
|
|
73117
|
+
__typename?: 'MercuryWorkspaceConnectionStatus';
|
|
73118
|
+
isConnected: Scalars['Boolean']['output'];
|
|
73119
|
+
workspaceAri: Scalars['String']['output'];
|
|
73120
|
+
};
|
|
71716
73121
|
export declare type MercuryWorkspaceContext = {
|
|
71717
73122
|
__typename?: 'MercuryWorkspaceContext';
|
|
71718
73123
|
activationId: Scalars['String']['output'];
|
|
@@ -71944,6 +73349,10 @@ export declare type Mutation = {
|
|
|
71944
73349
|
addLabels?: Maybe<AddLabelsPayload>;
|
|
71945
73350
|
addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
|
|
71946
73351
|
addReaction?: Maybe<SaveReactionResponse>;
|
|
73352
|
+
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
73353
|
+
agentStudio_updateAgentActions?: Maybe<AgentStudioUpdateAgentActionsPayload>;
|
|
73354
|
+
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
73355
|
+
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
71947
73356
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
71948
73357
|
appStorage?: Maybe<AppStorageMutation>;
|
|
71949
73358
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -72236,6 +73645,7 @@ export declare type Mutation = {
|
|
|
72236
73645
|
devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
|
|
72237
73646
|
devai_createTechnicalPlannerJob?: Maybe<DevAiCreateTechnicalPlannerJobPayload>;
|
|
72238
73647
|
devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
|
|
73648
|
+
devai_invokeAutodevRovoAgentInBulk?: Maybe<DevAiInvokeAutodevRovoAgentInBulkPayload>;
|
|
72239
73649
|
disableExperiment?: Maybe<TapExperiment>;
|
|
72240
73650
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
72241
73651
|
disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
|
|
@@ -72269,6 +73679,7 @@ export declare type Mutation = {
|
|
|
72269
73679
|
jira?: Maybe<JiraMutation>;
|
|
72270
73680
|
jiraCannedResponse?: Maybe<JiraCannedResponseMutationApi>;
|
|
72271
73681
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
73682
|
+
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
72272
73683
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
72273
73684
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
72274
73685
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
@@ -72277,6 +73688,7 @@ export declare type Mutation = {
|
|
|
72277
73688
|
jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
|
|
72278
73689
|
jira_setBoardViewCardOptionState?: Maybe<JiraSetBoardViewCardOptionStatePayload>;
|
|
72279
73690
|
jira_setBoardViewColumnState?: Maybe<JiraSetBoardViewColumnStatePayload>;
|
|
73691
|
+
jira_setBoardViewColumnsOrder?: Maybe<JiraSetBoardViewColumnsOrderPayload>;
|
|
72280
73692
|
jira_setBoardViewCompletedIssueSearchCutOff?: Maybe<JiraSetBoardViewCompletedIssueSearchCutOffPayload>;
|
|
72281
73693
|
jira_setBoardViewFilter?: Maybe<JiraSetBoardViewFilterPayload>;
|
|
72282
73694
|
jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
|
|
@@ -72494,6 +73906,22 @@ export declare type MutationAddReactionArgs = {
|
|
|
72494
73906
|
contentType: GraphQlReactionContentType;
|
|
72495
73907
|
emojiId: Scalars['String']['input'];
|
|
72496
73908
|
};
|
|
73909
|
+
export declare type MutationAgentStudio_CreateAgentArgs = {
|
|
73910
|
+
cloudId: Scalars['String']['input'];
|
|
73911
|
+
input: AgentStudioCreateAgentInput;
|
|
73912
|
+
};
|
|
73913
|
+
export declare type MutationAgentStudio_UpdateAgentActionsArgs = {
|
|
73914
|
+
id: Scalars['ID']['input'];
|
|
73915
|
+
input: AgentStudioActionConfigurationInput;
|
|
73916
|
+
};
|
|
73917
|
+
export declare type MutationAgentStudio_UpdateAgentDetailsArgs = {
|
|
73918
|
+
id: Scalars['ID']['input'];
|
|
73919
|
+
input: AgentStudioUpdateAgentDetailsInput;
|
|
73920
|
+
};
|
|
73921
|
+
export declare type MutationAgentStudio_UpdateConversationStartersArgs = {
|
|
73922
|
+
id: Scalars['ID']['input'];
|
|
73923
|
+
input: AgentStudioUpdateConversationStartersInput;
|
|
73924
|
+
};
|
|
72497
73925
|
export declare type MutationApplyPolarisProjectTemplateArgs = {
|
|
72498
73926
|
input: ApplyPolarisProjectTemplateInput;
|
|
72499
73927
|
};
|
|
@@ -73420,6 +74848,10 @@ export declare type MutationDevai_InvokeAutodevRovoAgentArgs = {
|
|
|
73420
74848
|
agentId: Scalars['ID']['input'];
|
|
73421
74849
|
issueId: Scalars['ID']['input'];
|
|
73422
74850
|
};
|
|
74851
|
+
export declare type MutationDevai_InvokeAutodevRovoAgentInBulkArgs = {
|
|
74852
|
+
agentId: Scalars['ID']['input'];
|
|
74853
|
+
issueIds: Array<Scalars['ID']['input']>;
|
|
74854
|
+
};
|
|
73423
74855
|
export declare type MutationDisableExperimentArgs = {
|
|
73424
74856
|
experimentKey: Scalars['String']['input'];
|
|
73425
74857
|
};
|
|
@@ -73487,6 +74919,9 @@ export declare type MutationInvokeExtensionArgs = {
|
|
|
73487
74919
|
export declare type MutationInvokePolarisObjectArgs = {
|
|
73488
74920
|
input: InvokePolarisObjectInput;
|
|
73489
74921
|
};
|
|
74922
|
+
export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
|
|
74923
|
+
input: JiraBulkSetBoardViewColumnStateInput;
|
|
74924
|
+
};
|
|
73490
74925
|
export declare type MutationJira_CreateCustomBackgroundArgs = {
|
|
73491
74926
|
input: JiraCreateCustomBackgroundInput;
|
|
73492
74927
|
};
|
|
@@ -73511,6 +74946,9 @@ export declare type MutationJira_SetBoardViewCardOptionStateArgs = {
|
|
|
73511
74946
|
export declare type MutationJira_SetBoardViewColumnStateArgs = {
|
|
73512
74947
|
input: JiraSetBoardViewColumnStateInput;
|
|
73513
74948
|
};
|
|
74949
|
+
export declare type MutationJira_SetBoardViewColumnsOrderArgs = {
|
|
74950
|
+
input: JiraSetBoardViewColumnsOrderInput;
|
|
74951
|
+
};
|
|
73514
74952
|
export declare type MutationJira_SetBoardViewCompletedIssueSearchCutOffArgs = {
|
|
73515
74953
|
input: JiraSetBoardViewCompletedIssueSearchCutOffInput;
|
|
73516
74954
|
};
|
|
@@ -76689,6 +78127,8 @@ export declare type Query = {
|
|
|
76689
78127
|
agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
|
|
76690
78128
|
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
76691
78129
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
78130
|
+
agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
|
|
78131
|
+
aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
|
|
76692
78132
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
76693
78133
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
76694
78134
|
allUpdatesFeed?: Maybe<PaginatedAllUpdatesFeed>;
|
|
@@ -76958,6 +78398,7 @@ export declare type Query = {
|
|
|
76958
78398
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
76959
78399
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
76960
78400
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
78401
|
+
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
76961
78402
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
76962
78403
|
confluence_refreshMigrationMediaSession?: Maybe<ContentMediaSession>;
|
|
76963
78404
|
confluence_search?: Maybe<ConfluenceSearchConnection>;
|
|
@@ -76971,9 +78412,6 @@ export declare type Query = {
|
|
|
76971
78412
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
76972
78413
|
confluence_userContentAccess?: Maybe<ConfluenceUserContentAccessResult>;
|
|
76973
78414
|
confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
|
|
76974
|
-
confluence_workflow?: Maybe<ConfluenceWorkflow>;
|
|
76975
|
-
confluence_workflowApplicationsByContentId?: Maybe<ConfluenceWorkflowApplicationConnection>;
|
|
76976
|
-
confluence_workflowsAll?: Maybe<ConfluenceWorkflowConnection>;
|
|
76977
78415
|
connectedData?: Maybe<ConnectedDataQuery>;
|
|
76978
78416
|
connectionManager_connectionsByJiraProject?: Maybe<ConnectionManagerConnectionsByJiraProjectResult>;
|
|
76979
78417
|
contactAdminPageConfig?: Maybe<ContactAdminPageConfig>;
|
|
@@ -77072,6 +78510,7 @@ export declare type Query = {
|
|
|
77072
78510
|
externalContentMediaSession?: Maybe<ContentMediaSession>;
|
|
77073
78511
|
external_entities?: Maybe<ExternalEntities>;
|
|
77074
78512
|
external_entitiesV2?: Maybe<ExternalEntities>;
|
|
78513
|
+
external_entitiesV2ForHydration?: Maybe<ExternalEntitiesV2ForHydration>;
|
|
77075
78514
|
favoriteContent?: Maybe<PaginatedContentList>;
|
|
77076
78515
|
featureDiscovery?: Maybe<Array<Maybe<DiscoveredFeature>>>;
|
|
77077
78516
|
feed?: Maybe<PaginatedFeed>;
|
|
@@ -77156,7 +78595,11 @@ export declare type Query = {
|
|
|
77156
78595
|
lookAndFeel?: Maybe<LookAndFeelSettings>;
|
|
77157
78596
|
loomToken?: Maybe<LoomToken>;
|
|
77158
78597
|
loomUserStatus?: Maybe<LoomUserStatus>;
|
|
78598
|
+
loom_comment?: Maybe<LoomComment>;
|
|
78599
|
+
loom_comments?: Maybe<Array<Maybe<LoomComment>>>;
|
|
77159
78600
|
loom_meeting?: Maybe<LoomMeeting>;
|
|
78601
|
+
loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
|
|
78602
|
+
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
77160
78603
|
loom_meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
77161
78604
|
loom_space?: Maybe<LoomSpace>;
|
|
77162
78605
|
loom_spaces?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
@@ -77175,6 +78618,7 @@ export declare type Query = {
|
|
|
77175
78618
|
marketplaceStore: MarketplaceStoreQueryApi;
|
|
77176
78619
|
me: AuthenticationContext;
|
|
77177
78620
|
mercury?: Maybe<MercuryQueryApi>;
|
|
78621
|
+
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
|
|
77178
78622
|
migration: MigrationQuery;
|
|
77179
78623
|
migrationCatalogue: MigrationCatalogueQuery;
|
|
77180
78624
|
migrationMediaSession?: Maybe<ContentMediaSession>;
|
|
@@ -77373,6 +78817,13 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
|
|
|
77373
78817
|
export declare type QueryAgentStudio_AgentByIdArgs = {
|
|
77374
78818
|
id: Scalars['ID']['input'];
|
|
77375
78819
|
};
|
|
78820
|
+
export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
|
|
78821
|
+
cloudId: Scalars['String']['input'];
|
|
78822
|
+
input: AgentStudioSuggestConversationStartersInput;
|
|
78823
|
+
};
|
|
78824
|
+
export declare type QueryAiCoreApi_VsaReportingByProjectArgs = {
|
|
78825
|
+
projectAri: Scalars['ID']['input'];
|
|
78826
|
+
};
|
|
77376
78827
|
export declare type QueryAllIndividualSpacesArgs = {
|
|
77377
78828
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
77378
78829
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -78538,6 +79989,18 @@ export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
|
78538
79989
|
export declare type QueryConfluence_CalendarTimezonesArgs = {
|
|
78539
79990
|
cloudId: Scalars['ID']['input'];
|
|
78540
79991
|
};
|
|
79992
|
+
export declare type QueryConfluence_ExternalCollaboratorsByCriteriaArgs = {
|
|
79993
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
79994
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
79995
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
79996
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
79997
|
+
groupIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
79998
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
79999
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
80000
|
+
sorts?: InputMaybe<Array<InputMaybe<ExternalCollaboratorsSortType>>>;
|
|
80001
|
+
spaceAssignmentType?: InputMaybe<SpaceAssignmentType>;
|
|
80002
|
+
spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
80003
|
+
};
|
|
78541
80004
|
export declare type QueryConfluence_RefreshMigrationMediaSessionArgs = {
|
|
78542
80005
|
cloudId: Scalars['ID']['input'];
|
|
78543
80006
|
migrationId: Scalars['String']['input'];
|
|
@@ -78545,7 +80008,7 @@ export declare type QueryConfluence_RefreshMigrationMediaSessionArgs = {
|
|
|
78545
80008
|
export declare type QueryConfluence_SearchArgs = {
|
|
78546
80009
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
78547
80010
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
78548
|
-
cloudId
|
|
80011
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
78549
80012
|
cql: Scalars['String']['input'];
|
|
78550
80013
|
cqlcontext?: InputMaybe<Scalars['String']['input']>;
|
|
78551
80014
|
disableArchivedSpaceFallback?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -78563,14 +80026,14 @@ export declare type QueryConfluence_SearchTeamLabelsArgs = {
|
|
|
78563
80026
|
};
|
|
78564
80027
|
export declare type QueryConfluence_SearchUserArgs = {
|
|
78565
80028
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
78566
|
-
cloudId
|
|
80029
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
78567
80030
|
cql: Scalars['String']['input'];
|
|
78568
80031
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
78569
80032
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
78570
80033
|
sitePermissionTypeFilter?: InputMaybe<Scalars['String']['input']>;
|
|
78571
80034
|
};
|
|
78572
80035
|
export declare type QueryConfluence_StorageArgs = {
|
|
78573
|
-
cloudId
|
|
80036
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
78574
80037
|
};
|
|
78575
80038
|
export declare type QueryConfluence_SubCalendarSubscribersCountArgs = {
|
|
78576
80039
|
cloudId: Scalars['ID']['input'];
|
|
@@ -78585,11 +80048,11 @@ export declare type QueryConfluence_TeamPresenceSpaceSettingsArgs = {
|
|
|
78585
80048
|
spaceId: Scalars['Long']['input'];
|
|
78586
80049
|
};
|
|
78587
80050
|
export declare type QueryConfluence_TemplateArgs = {
|
|
78588
|
-
cloudId
|
|
80051
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
78589
80052
|
contentTemplateId: Scalars['String']['input'];
|
|
78590
80053
|
};
|
|
78591
80054
|
export declare type QueryConfluence_TenantContextArgs = {
|
|
78592
|
-
cloudId
|
|
80055
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
78593
80056
|
};
|
|
78594
80057
|
export declare type QueryConfluence_UserContentAccessArgs = {
|
|
78595
80058
|
accessType: ResourceAccessType;
|
|
@@ -78602,19 +80065,6 @@ export declare type QueryConfluence_ValidateCalendarJqlArgs = {
|
|
|
78602
80065
|
cloudId: Scalars['ID']['input'];
|
|
78603
80066
|
jql: Scalars['String']['input'];
|
|
78604
80067
|
};
|
|
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
80068
|
export declare type QueryConnectionManager_ConnectionsByJiraProjectArgs = {
|
|
78619
80069
|
filter?: InputMaybe<ConnectionManagerConnectionsFilter>;
|
|
78620
80070
|
jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -78960,6 +80410,8 @@ export declare type QueryDevai_TechnicalPlannerJobByIdArgs = {
|
|
|
78960
80410
|
jobId: Scalars['ID']['input'];
|
|
78961
80411
|
};
|
|
78962
80412
|
export declare type QueryDevai_TechnicalPlannerJobsForIssueArgs = {
|
|
80413
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
80414
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
78963
80415
|
issueAri: Scalars['ID']['input'];
|
|
78964
80416
|
};
|
|
78965
80417
|
export declare type QueryDeveloperLogAccessArgs = {
|
|
@@ -79277,9 +80729,21 @@ export declare type QueryLabelSearchArgs = {
|
|
|
79277
80729
|
export declare type QueryLookAndFeelArgs = {
|
|
79278
80730
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
79279
80731
|
};
|
|
80732
|
+
export declare type QueryLoom_CommentArgs = {
|
|
80733
|
+
id: Scalars['ID']['input'];
|
|
80734
|
+
};
|
|
80735
|
+
export declare type QueryLoom_CommentsArgs = {
|
|
80736
|
+
ids: Array<Scalars['ID']['input']>;
|
|
80737
|
+
};
|
|
79280
80738
|
export declare type QueryLoom_MeetingArgs = {
|
|
79281
80739
|
id: Scalars['ID']['input'];
|
|
79282
80740
|
};
|
|
80741
|
+
export declare type QueryLoom_MeetingRecurrenceArgs = {
|
|
80742
|
+
id: Scalars['ID']['input'];
|
|
80743
|
+
};
|
|
80744
|
+
export declare type QueryLoom_MeetingRecurrencesArgs = {
|
|
80745
|
+
ids: Array<Scalars['ID']['input']>;
|
|
80746
|
+
};
|
|
79283
80747
|
export declare type QueryLoom_MeetingsArgs = {
|
|
79284
80748
|
ids: Array<Scalars['ID']['input']>;
|
|
79285
80749
|
};
|
|
@@ -79704,6 +81168,9 @@ export declare type QuerySitePermissionsArgs = {
|
|
|
79704
81168
|
operations?: InputMaybe<Array<InputMaybe<SitePermissionOperationType>>>;
|
|
79705
81169
|
permissionTypes?: InputMaybe<Array<InputMaybe<SitePermissionType>>>;
|
|
79706
81170
|
};
|
|
81171
|
+
export declare type QuerySiteSettingsArgs = {
|
|
81172
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
81173
|
+
};
|
|
79707
81174
|
export declare type QuerySnippetsArgs = {
|
|
79708
81175
|
accountId: Scalars['String']['input'];
|
|
79709
81176
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -79785,6 +81252,7 @@ export declare type QuerySpacesArgs = {
|
|
|
79785
81252
|
assignedToGroupId?: InputMaybe<Scalars['String']['input']>;
|
|
79786
81253
|
assignedToGroupName?: InputMaybe<Scalars['String']['input']>;
|
|
79787
81254
|
assignedToUser?: InputMaybe<Scalars['String']['input']>;
|
|
81255
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
79788
81256
|
creatorAccountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
79789
81257
|
excludeTypes?: InputMaybe<Scalars['String']['input']>;
|
|
79790
81258
|
favourite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -79931,6 +81399,9 @@ export declare type QueryTownsquareUnsharded_AllWorkspaceSummariesForOrgArgs = {
|
|
|
79931
81399
|
export declare type QueryUserArgs = {
|
|
79932
81400
|
accountId: Scalars['ID']['input'];
|
|
79933
81401
|
};
|
|
81402
|
+
export declare type QueryUserAccessStatusArgs = {
|
|
81403
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
81404
|
+
};
|
|
79934
81405
|
export declare type QueryUserGroupSearchArgs = {
|
|
79935
81406
|
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
79936
81407
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -80447,6 +81918,7 @@ export declare type RawStatus = {
|
|
|
80447
81918
|
export declare type ReactedUsersResponse = {
|
|
80448
81919
|
__typename?: 'ReactedUsersResponse';
|
|
80449
81920
|
ari: Scalars['String']['output'];
|
|
81921
|
+
confluencePerson: Array<Maybe<ConfluencePerson>>;
|
|
80450
81922
|
containerAri: Scalars['String']['output'];
|
|
80451
81923
|
count: Scalars['Int']['output'];
|
|
80452
81924
|
emojiId: Scalars['String']['output'];
|
|
@@ -81623,6 +83095,7 @@ export declare type ScheduledPublishSummary = {
|
|
|
81623
83095
|
export declare type ScheduledRestriction = {
|
|
81624
83096
|
__typename?: 'ScheduledRestriction';
|
|
81625
83097
|
group?: Maybe<PaginatedGroupList>;
|
|
83098
|
+
personConnection?: Maybe<ConfluencePersonConnection>;
|
|
81626
83099
|
};
|
|
81627
83100
|
export declare type ScheduledRestrictions = {
|
|
81628
83101
|
__typename?: 'ScheduledRestrictions';
|
|
@@ -82151,9 +83624,8 @@ export declare type SearchExperimentContextInput = {
|
|
|
82151
83624
|
experimentLayers?: InputMaybe<Array<InputMaybe<SearchExperimentLayer>>>;
|
|
82152
83625
|
};
|
|
82153
83626
|
export declare type SearchExperimentLayer = {
|
|
82154
|
-
|
|
83627
|
+
definitions?: InputMaybe<Array<InputMaybe<SearchLayerDefinition>>>;
|
|
82155
83628
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
82156
|
-
shadowId?: InputMaybe<Scalars['String']['input']>;
|
|
82157
83629
|
};
|
|
82158
83630
|
export declare type SearchExternalContainerFilter = {
|
|
82159
83631
|
type: Scalars['String']['input'];
|
|
@@ -82209,6 +83681,7 @@ export declare enum SearchIssueStatusCategory {
|
|
|
82209
83681
|
export declare type SearchItemConnection = {
|
|
82210
83682
|
__typename?: 'SearchItemConnection';
|
|
82211
83683
|
abTest?: Maybe<SearchAbTest>;
|
|
83684
|
+
deferredEdges?: Maybe<Array<SearchResultItemEdge>>;
|
|
82212
83685
|
edges: Array<SearchResultItemEdge>;
|
|
82213
83686
|
interleaverScrapingResult?: Maybe<SearchInterleaverScrapingResult>;
|
|
82214
83687
|
pageInfo: PageInfo;
|
|
@@ -82223,10 +83696,12 @@ export declare type SearchJiraFilter = {
|
|
|
82223
83696
|
};
|
|
82224
83697
|
export declare type SearchJiraIssueFilter = {
|
|
82225
83698
|
assigneeARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
83699
|
+
commenterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
82226
83700
|
issueTypeIDs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
82227
83701
|
projectARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
82228
83702
|
reporterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
82229
83703
|
statusCategories?: InputMaybe<Array<SearchIssueStatusCategory>>;
|
|
83704
|
+
watcherARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
82230
83705
|
};
|
|
82231
83706
|
export declare type SearchJiraProjectFilter = {
|
|
82232
83707
|
projectTypes?: InputMaybe<Array<SearchProjectType>>;
|
|
@@ -82239,6 +83714,12 @@ export declare type SearchL2Feature = {
|
|
|
82239
83714
|
export declare type SearchL2FeatureProvider = {
|
|
82240
83715
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
82241
83716
|
};
|
|
83717
|
+
export declare type SearchLayerDefinition = {
|
|
83718
|
+
entity?: InputMaybe<Scalars['String']['input']>;
|
|
83719
|
+
layerId?: InputMaybe<Scalars['String']['input']>;
|
|
83720
|
+
shadowId?: InputMaybe<Scalars['String']['input']>;
|
|
83721
|
+
subEntity?: InputMaybe<Scalars['String']['input']>;
|
|
83722
|
+
};
|
|
82242
83723
|
export declare type SearchMercuryFilter = {
|
|
82243
83724
|
focusAreaTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
82244
83725
|
owners?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -82315,6 +83796,18 @@ export declare type SearchResultAtlasGoal = SearchResult & {
|
|
|
82315
83796
|
type: SearchResultType;
|
|
82316
83797
|
url: Scalars['URL']['output'];
|
|
82317
83798
|
};
|
|
83799
|
+
export declare type SearchResultAtlasGoalUpdate = SearchResult & {
|
|
83800
|
+
__typename?: 'SearchResultAtlasGoalUpdate';
|
|
83801
|
+
description: Scalars['String']['output'];
|
|
83802
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
83803
|
+
id: Scalars['ID']['output'];
|
|
83804
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
83805
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
83806
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
83807
|
+
title: Scalars['String']['output'];
|
|
83808
|
+
type: SearchResultType;
|
|
83809
|
+
url: Scalars['URL']['output'];
|
|
83810
|
+
};
|
|
82318
83811
|
export declare type SearchResultAtlasProject = SearchResult & {
|
|
82319
83812
|
__typename?: 'SearchResultAtlasProject';
|
|
82320
83813
|
description: Scalars['String']['output'];
|
|
@@ -82327,6 +83820,18 @@ export declare type SearchResultAtlasProject = SearchResult & {
|
|
|
82327
83820
|
type: SearchResultType;
|
|
82328
83821
|
url: Scalars['URL']['output'];
|
|
82329
83822
|
};
|
|
83823
|
+
export declare type SearchResultAtlasProjectUpdate = SearchResult & {
|
|
83824
|
+
__typename?: 'SearchResultAtlasProjectUpdate';
|
|
83825
|
+
description: Scalars['String']['output'];
|
|
83826
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
83827
|
+
id: Scalars['ID']['output'];
|
|
83828
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
83829
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
83830
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
83831
|
+
title: Scalars['String']['output'];
|
|
83832
|
+
type: SearchResultType;
|
|
83833
|
+
url: Scalars['URL']['output'];
|
|
83834
|
+
};
|
|
82330
83835
|
export declare type SearchResultBitbucketRepository = SearchResult & {
|
|
82331
83836
|
__typename?: 'SearchResultBitbucketRepository';
|
|
82332
83837
|
description: Scalars['String']['output'];
|
|
@@ -82654,6 +84159,7 @@ export declare enum SearchResultType {
|
|
|
82654
84159
|
FocusAreaStatusUpdate = "focus_area_status_update",
|
|
82655
84160
|
Folder = "folder",
|
|
82656
84161
|
Goal = "goal",
|
|
84162
|
+
GoalUpdate = "goal_update",
|
|
82657
84163
|
Issue = "issue",
|
|
82658
84164
|
Learning = "learning",
|
|
82659
84165
|
Message = "message",
|
|
@@ -82661,6 +84167,7 @@ export declare enum SearchResultType {
|
|
|
82661
84167
|
Plan = "plan",
|
|
82662
84168
|
Presentation = "presentation",
|
|
82663
84169
|
Project = "project",
|
|
84170
|
+
ProjectUpdate = "project_update",
|
|
82664
84171
|
Question = "question",
|
|
82665
84172
|
Repository = "repository",
|
|
82666
84173
|
Space = "space",
|
|
@@ -84535,6 +86042,7 @@ export declare type SitePermission = {
|
|
|
84535
86042
|
anonymous?: Maybe<Anonymous>;
|
|
84536
86043
|
anonymousAccessDSPBlocked: Scalars['Boolean']['output'];
|
|
84537
86044
|
groups?: Maybe<PaginatedGroupWithPermissions>;
|
|
86045
|
+
personConnection?: Maybe<ConfluencePersonWithPermissionsConnection>;
|
|
84538
86046
|
unlicensedUserWithPermissions?: Maybe<UnlicensedUserWithPermissions>;
|
|
84539
86047
|
};
|
|
84540
86048
|
export declare type SitePermissionGroupsArgs = {
|
|
@@ -84542,6 +86050,11 @@ export declare type SitePermissionGroupsArgs = {
|
|
|
84542
86050
|
filterText?: InputMaybe<Scalars['String']['input']>;
|
|
84543
86051
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84544
86052
|
};
|
|
86053
|
+
export declare type SitePermissionPersonConnectionArgs = {
|
|
86054
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86055
|
+
filterText?: InputMaybe<Scalars['String']['input']>;
|
|
86056
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86057
|
+
};
|
|
84545
86058
|
export declare type SitePermissionInput = {
|
|
84546
86059
|
permissionsToAdd?: InputMaybe<UpdateSitePermissionInput>;
|
|
84547
86060
|
permissionsToRemove?: InputMaybe<UpdateSitePermissionInput>;
|
|
@@ -85086,6 +86599,10 @@ export declare type SpaceSpaceAdminsArgs = {
|
|
|
85086
86599
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85087
86600
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
85088
86601
|
};
|
|
86602
|
+
export declare enum SpaceAssignmentType {
|
|
86603
|
+
Assigned = "ASSIGNED",
|
|
86604
|
+
Unassigned = "UNASSIGNED"
|
|
86605
|
+
}
|
|
85089
86606
|
export declare type SpaceDescriptions = {
|
|
85090
86607
|
__typename?: 'SpaceDescriptions';
|
|
85091
86608
|
atlas_doc_format?: Maybe<FormattedBody>;
|
|
@@ -85216,6 +86733,8 @@ export declare type SpaceManagerRecordPageInfo = {
|
|
|
85216
86733
|
export declare type SpaceMetadata = {
|
|
85217
86734
|
__typename?: 'SpaceMetadata';
|
|
85218
86735
|
labels?: Maybe<PaginatedLabelList>;
|
|
86736
|
+
recentCommenterConnection?: Maybe<ConfluencePersonConnection>;
|
|
86737
|
+
recentWatcherConnection?: Maybe<ConfluencePersonConnection>;
|
|
85219
86738
|
totalCommenters: Scalars['Long']['output'];
|
|
85220
86739
|
totalCurrentBlogPosts: Scalars['Long']['output'];
|
|
85221
86740
|
totalCurrentPages: Scalars['Long']['output'];
|
|
@@ -85726,6 +87245,7 @@ export declare type SubjectsByType = {
|
|
|
85726
87245
|
group?: Maybe<PaginatedGroupList>;
|
|
85727
87246
|
groupWithRestrictions?: Maybe<PaginatedGroupWithRestrictions>;
|
|
85728
87247
|
links?: Maybe<LinksContextBase>;
|
|
87248
|
+
personConnection?: Maybe<ConfluencePersonConnection>;
|
|
85729
87249
|
userWithRestrictions?: Maybe<PaginatedUserWithRestrictions>;
|
|
85730
87250
|
};
|
|
85731
87251
|
export declare type SubjectsByTypeGroupArgs = {
|
|
@@ -85736,6 +87256,10 @@ export declare type SubjectsByTypeGroupWithRestrictionsArgs = {
|
|
|
85736
87256
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
85737
87257
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
85738
87258
|
};
|
|
87259
|
+
export declare type SubjectsByTypePersonConnectionArgs = {
|
|
87260
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
87261
|
+
start?: InputMaybe<Scalars['Int']['input']>;
|
|
87262
|
+
};
|
|
85739
87263
|
export declare type SubjectsByTypeUserWithRestrictionsArgs = {
|
|
85740
87264
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
85741
87265
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -87139,6 +88663,17 @@ export declare type TownsquareCreateGoalPayload = {
|
|
|
87139
88663
|
__typename?: 'TownsquareCreateGoalPayload';
|
|
87140
88664
|
goal?: Maybe<TownsquareGoal>;
|
|
87141
88665
|
};
|
|
88666
|
+
export declare type TownsquareCreateGoalTypeInput = {
|
|
88667
|
+
containerId: Scalars['String']['input'];
|
|
88668
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
88669
|
+
iconKey?: InputMaybe<TownsquareGoalIconKey>;
|
|
88670
|
+
name: Scalars['String']['input'];
|
|
88671
|
+
state?: InputMaybe<TownsquareGoalTypeState>;
|
|
88672
|
+
};
|
|
88673
|
+
export declare type TownsquareCreateGoalTypePayload = {
|
|
88674
|
+
__typename?: 'TownsquareCreateGoalTypePayload';
|
|
88675
|
+
goalTypeEdge?: Maybe<TownsquareGoalTypeEdge>;
|
|
88676
|
+
};
|
|
87142
88677
|
export declare type TownsquareCreateRelationshipsInput = {
|
|
87143
88678
|
relationships: Array<TownsquareRelationshipInput>;
|
|
87144
88679
|
};
|
|
@@ -87181,7 +88716,10 @@ export declare type TownsquareEditGoalPayload = {
|
|
|
87181
88716
|
goal?: Maybe<TownsquareGoal>;
|
|
87182
88717
|
};
|
|
87183
88718
|
export declare type TownsquareEditGoalTypeInput = {
|
|
88719
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
87184
88720
|
goalTypeAri: Scalars['String']['input'];
|
|
88721
|
+
iconKey?: InputMaybe<TownsquareGoalIconKey>;
|
|
88722
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
87185
88723
|
state?: InputMaybe<TownsquareGoalTypeState>;
|
|
87186
88724
|
};
|
|
87187
88725
|
export declare type TownsquareEditGoalTypePayload = {
|
|
@@ -87204,19 +88742,36 @@ export declare type TownsquareGoal = Node & {
|
|
|
87204
88742
|
name: Scalars['String']['output'];
|
|
87205
88743
|
owner?: Maybe<User>;
|
|
87206
88744
|
parentGoal?: Maybe<TownsquareGoal>;
|
|
88745
|
+
parentGoalSuggestions?: Maybe<TownsquareGoalConnection>;
|
|
87207
88746
|
state?: Maybe<TownsquareGoalState>;
|
|
87208
88747
|
status?: Maybe<TownsquareStatus>;
|
|
88748
|
+
subGoalSuggestions?: Maybe<TownsquareGoalConnection>;
|
|
87209
88749
|
subGoals?: Maybe<TownsquareGoalConnection>;
|
|
88750
|
+
tags?: Maybe<TownsquareTagConnection>;
|
|
87210
88751
|
targetDate?: Maybe<TownsquareTargetDate>;
|
|
87211
88752
|
updates?: Maybe<TownsquareGoalUpdateConnection>;
|
|
87212
88753
|
url?: Maybe<Scalars['String']['output']>;
|
|
87213
88754
|
uuid: Scalars['String']['output'];
|
|
87214
88755
|
watchers?: Maybe<TownsquareUserConnection>;
|
|
87215
88756
|
};
|
|
88757
|
+
export declare type TownsquareGoalParentGoalSuggestionsArgs = {
|
|
88758
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88759
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88760
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
88761
|
+
};
|
|
88762
|
+
export declare type TownsquareGoalSubGoalSuggestionsArgs = {
|
|
88763
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88764
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88765
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
88766
|
+
};
|
|
87216
88767
|
export declare type TownsquareGoalSubGoalsArgs = {
|
|
87217
88768
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87218
88769
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87219
88770
|
};
|
|
88771
|
+
export declare type TownsquareGoalTagsArgs = {
|
|
88772
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88773
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88774
|
+
};
|
|
87220
88775
|
export declare type TownsquareGoalUpdatesArgs = {
|
|
87221
88776
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87222
88777
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -87388,6 +88943,7 @@ export declare type TownsquareMutationApi = {
|
|
|
87388
88943
|
__typename?: 'TownsquareMutationApi';
|
|
87389
88944
|
archiveGoal?: Maybe<TownsquareArchiveGoalPayload>;
|
|
87390
88945
|
createGoal?: Maybe<TownsquareCreateGoalPayload>;
|
|
88946
|
+
createGoalType?: Maybe<TownsquareCreateGoalTypePayload>;
|
|
87391
88947
|
createRelationships?: Maybe<TownsquareCreateRelationshipsPayload>;
|
|
87392
88948
|
deleteRelationships?: Maybe<TownsquareDeleteRelationshipsPayload>;
|
|
87393
88949
|
editGoal?: Maybe<TownsquareEditGoalPayload>;
|
|
@@ -87402,6 +88958,9 @@ export declare type TownsquareMutationApiArchiveGoalArgs = {
|
|
|
87402
88958
|
export declare type TownsquareMutationApiCreateGoalArgs = {
|
|
87403
88959
|
input: TownsquareCreateGoalInput;
|
|
87404
88960
|
};
|
|
88961
|
+
export declare type TownsquareMutationApiCreateGoalTypeArgs = {
|
|
88962
|
+
input: TownsquareCreateGoalTypeInput;
|
|
88963
|
+
};
|
|
87405
88964
|
export declare type TownsquareMutationApiCreateRelationshipsArgs = {
|
|
87406
88965
|
input: TownsquareCreateRelationshipsInput;
|
|
87407
88966
|
};
|
|
@@ -87447,9 +89006,21 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
87447
89006
|
name: Scalars['String']['output'];
|
|
87448
89007
|
owner?: Maybe<User>;
|
|
87449
89008
|
state?: Maybe<TownsquareProjectState>;
|
|
89009
|
+
tags?: Maybe<TownsquareTagConnection>;
|
|
89010
|
+
updates?: Maybe<TownsquareProjectUpdateConnection>;
|
|
87450
89011
|
url?: Maybe<Scalars['String']['output']>;
|
|
87451
89012
|
uuid: Scalars['String']['output'];
|
|
87452
89013
|
};
|
|
89014
|
+
export declare type TownsquareProjectTagsArgs = {
|
|
89015
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89016
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89017
|
+
};
|
|
89018
|
+
export declare type TownsquareProjectUpdatesArgs = {
|
|
89019
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89020
|
+
createdAtOrAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
89021
|
+
createdAtOrBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
89022
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89023
|
+
};
|
|
87453
89024
|
export declare type TownsquareProjectConnection = {
|
|
87454
89025
|
__typename?: 'TownsquareProjectConnection';
|
|
87455
89026
|
edges?: Maybe<Array<Maybe<TownsquareProjectEdge>>>;
|
|
@@ -87543,6 +89114,17 @@ export declare type TownsquareProjectUpdateCommentsArgs = {
|
|
|
87543
89114
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87544
89115
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87545
89116
|
};
|
|
89117
|
+
export declare type TownsquareProjectUpdateConnection = {
|
|
89118
|
+
__typename?: 'TownsquareProjectUpdateConnection';
|
|
89119
|
+
count: Scalars['Int']['output'];
|
|
89120
|
+
edges?: Maybe<Array<Maybe<TownsquareProjectUpdateEdge>>>;
|
|
89121
|
+
pageInfo: PageInfo;
|
|
89122
|
+
};
|
|
89123
|
+
export declare type TownsquareProjectUpdateEdge = {
|
|
89124
|
+
__typename?: 'TownsquareProjectUpdateEdge';
|
|
89125
|
+
cursor: Scalars['String']['output'];
|
|
89126
|
+
node?: Maybe<TownsquareProjectUpdate>;
|
|
89127
|
+
};
|
|
87546
89128
|
export declare type TownsquareQueryApi = {
|
|
87547
89129
|
__typename?: 'TownsquareQueryApi';
|
|
87548
89130
|
allWorkspaceSummariesForOrg?: Maybe<TownsquareWorkspaceSummaryConnection>;
|
|
@@ -87670,7 +89252,9 @@ export declare type TownsquareStatus = {
|
|
|
87670
89252
|
};
|
|
87671
89253
|
export declare type TownsquareTag = Node & {
|
|
87672
89254
|
__typename?: 'TownsquareTag';
|
|
89255
|
+
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
87673
89256
|
description?: Maybe<Scalars['String']['output']>;
|
|
89257
|
+
iconData?: Maybe<Scalars['String']['output']>;
|
|
87674
89258
|
id: Scalars['ID']['output'];
|
|
87675
89259
|
name?: Maybe<Scalars['String']['output']>;
|
|
87676
89260
|
};
|
|
@@ -88326,6 +89910,7 @@ export declare type TrelloCard = Node & {
|
|
|
88326
89910
|
badges?: Maybe<TrelloCardBadges>;
|
|
88327
89911
|
checklists?: Maybe<TrelloChecklistConnection>;
|
|
88328
89912
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
89913
|
+
complete?: Maybe<Scalars['Boolean']['output']>;
|
|
88329
89914
|
cover?: Maybe<TrelloCardCover>;
|
|
88330
89915
|
creation?: Maybe<TrelloCardCreationInfo>;
|
|
88331
89916
|
customFieldItems?: Maybe<TrelloCustomFieldItemConnection>;
|
|
@@ -88519,6 +90104,7 @@ export declare type TrelloCardEdge = {
|
|
|
88519
90104
|
};
|
|
88520
90105
|
export declare enum TrelloCardExternalSource {
|
|
88521
90106
|
Email = "EMAIL",
|
|
90107
|
+
Siri = "SIRI",
|
|
88522
90108
|
Slack = "SLACK"
|
|
88523
90109
|
}
|
|
88524
90110
|
export declare type TrelloCardLimit = {
|
|
@@ -88550,6 +90136,7 @@ export declare type TrelloCardUpdated = {
|
|
|
88550
90136
|
badges?: Maybe<TrelloCardBadges>;
|
|
88551
90137
|
checklists?: Maybe<TrelloChecklistConnectionUpdated>;
|
|
88552
90138
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
90139
|
+
complete?: Maybe<Scalars['Boolean']['output']>;
|
|
88553
90140
|
cover?: Maybe<TrelloCardCoverUpdated>;
|
|
88554
90141
|
creation?: Maybe<TrelloCardCreationInfo>;
|
|
88555
90142
|
customFieldItems?: Maybe<TrelloCustomFieldItemUpdatedConnection>;
|
|
@@ -88696,15 +90283,9 @@ export declare type TrelloCreateOrUpdatePlannerCalendarInput = {
|
|
|
88696
90283
|
export declare type TrelloCreateOrUpdatePlannerCalendarPayload = Payload & {
|
|
88697
90284
|
__typename?: 'TrelloCreateOrUpdatePlannerCalendarPayload';
|
|
88698
90285
|
errors?: Maybe<Array<MutationError>>;
|
|
88699
|
-
plannerCalendar?: Maybe<TrelloPlannerCalendarConnection>;
|
|
88700
90286
|
plannerCalendarMutated?: Maybe<TrelloPlannerCalendarMutated>;
|
|
88701
|
-
plannerCalendarUpdated?: Maybe<TrelloPlannerCalendarUpdated>;
|
|
88702
90287
|
success: Scalars['Boolean']['output'];
|
|
88703
90288
|
};
|
|
88704
|
-
export declare type TrelloCreateOrUpdatePlannerCalendarPayloadPlannerCalendarArgs = {
|
|
88705
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
88706
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88707
|
-
};
|
|
88708
90289
|
export declare type TrelloCreatePlannerCalendarEventInput = {
|
|
88709
90290
|
event: TrelloCreatePlannerCalendarEventOptions;
|
|
88710
90291
|
plannerCalendarId: Scalars['ID']['input'];
|
|
@@ -89240,6 +90821,7 @@ export declare type TrelloPlannerCalendarAccount = Node & {
|
|
|
89240
90821
|
};
|
|
89241
90822
|
export declare type TrelloPlannerCalendarAccountEnabledCalendarsArgs = {
|
|
89242
90823
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
90824
|
+
filter?: InputMaybe<TrelloPlannerCalendarEnabledCalendarsFilter>;
|
|
89243
90825
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89244
90826
|
};
|
|
89245
90827
|
export declare type TrelloPlannerCalendarAccountProviderCalendarsArgs = {
|
|
@@ -89308,11 +90890,15 @@ export declare type TrelloPlannerCalendarDeleted = {
|
|
|
89308
90890
|
export declare type TrelloPlannerCalendarEdge = {
|
|
89309
90891
|
__typename?: 'TrelloPlannerCalendarEdge';
|
|
89310
90892
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
90893
|
+
deletedCalendar?: Maybe<TrelloPlannerCalendarDeleted>;
|
|
89311
90894
|
node?: Maybe<TrelloPlannerCalendar>;
|
|
89312
90895
|
};
|
|
89313
90896
|
export declare type TrelloPlannerCalendarEdgeUpdated = {
|
|
89314
90897
|
__typename?: 'TrelloPlannerCalendarEdgeUpdated';
|
|
89315
|
-
node:
|
|
90898
|
+
node: TrelloPlannerCalendarUpdated;
|
|
90899
|
+
};
|
|
90900
|
+
export declare type TrelloPlannerCalendarEnabledCalendarsFilter = {
|
|
90901
|
+
updateCursor?: InputMaybe<Scalars['String']['input']>;
|
|
89316
90902
|
};
|
|
89317
90903
|
export declare type TrelloPlannerCalendarEvent = Node & {
|
|
89318
90904
|
__typename?: 'TrelloPlannerCalendarEvent';
|
|
@@ -89430,7 +91016,11 @@ export declare type TrelloPlannerCalendarEventsFilter = {
|
|
|
89430
91016
|
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
89431
91017
|
};
|
|
89432
91018
|
export declare type TrelloPlannerCalendarMutated = TrelloPlannerCalendarAccount | TrelloPlannerCalendarDeleted;
|
|
89433
|
-
export declare type TrelloPlannerCalendarUpdated =
|
|
91019
|
+
export declare type TrelloPlannerCalendarUpdated = {
|
|
91020
|
+
__typename?: 'TrelloPlannerCalendarUpdated';
|
|
91021
|
+
events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
|
|
91022
|
+
id: Scalars['ID']['output'];
|
|
91023
|
+
};
|
|
89434
91024
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
89435
91025
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
89436
91026
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
@@ -89459,11 +91049,6 @@ export declare type TrelloPlannerUpdated = {
|
|
|
89459
91049
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnectionUpdated>;
|
|
89460
91050
|
id: Scalars['ID']['output'];
|
|
89461
91051
|
};
|
|
89462
|
-
export declare type TrelloPlannerUpdatedCalendar = {
|
|
89463
|
-
__typename?: 'TrelloPlannerUpdatedCalendar';
|
|
89464
|
-
events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
|
|
89465
|
-
id: Scalars['ID']['output'];
|
|
89466
|
-
};
|
|
89467
91052
|
export declare type TrelloPowerUp = {
|
|
89468
91053
|
__typename?: 'TrelloPowerUp';
|
|
89469
91054
|
author?: Maybe<Scalars['String']['output']>;
|
|
@@ -90028,6 +91613,7 @@ export declare type UnifiedAccount = UnifiedINode & {
|
|
|
90028
91613
|
emailId: Scalars['String']['output'];
|
|
90029
91614
|
id: Scalars['ID']['output'];
|
|
90030
91615
|
internalId: Scalars['String']['output'];
|
|
91616
|
+
isForumsAccountBanned: Scalars['Boolean']['output'];
|
|
90031
91617
|
isForumsModerator: Scalars['Boolean']['output'];
|
|
90032
91618
|
isLinked: Scalars['Boolean']['output'];
|
|
90033
91619
|
isManaged: Scalars['Boolean']['output'];
|
|
@@ -90594,6 +92180,7 @@ export declare type UnifiedProfile = UnifiedINode & {
|
|
|
90594
92180
|
isLinkedView?: Maybe<Scalars['Boolean']['output']>;
|
|
90595
92181
|
isPersonalView?: Maybe<Scalars['Boolean']['output']>;
|
|
90596
92182
|
isPrivate: Scalars['Boolean']['output'];
|
|
92183
|
+
isProfileBanned?: Maybe<Scalars['Boolean']['output']>;
|
|
90597
92184
|
learning?: Maybe<UnifiedULearningResult>;
|
|
90598
92185
|
linkedinUrl?: Maybe<Scalars['String']['output']>;
|
|
90599
92186
|
location?: Maybe<Scalars['String']['output']>;
|
|
@@ -90803,8 +92390,13 @@ export declare type UpdateAppDetailsInput = {
|
|
|
90803
92390
|
avatarFileId?: InputMaybe<Scalars['String']['input']>;
|
|
90804
92391
|
contactLink?: InputMaybe<Scalars['String']['input']>;
|
|
90805
92392
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
92393
|
+
distributionStatus?: InputMaybe<DistributionStatus>;
|
|
92394
|
+
hasPDReportingApiImplemented?: InputMaybe<Scalars['Boolean']['input']>;
|
|
90806
92395
|
name: Scalars['String']['input'];
|
|
90807
92396
|
privacyPolicy?: InputMaybe<Scalars['String']['input']>;
|
|
92397
|
+
storesPersonalData?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92398
|
+
termsOfService?: InputMaybe<Scalars['String']['input']>;
|
|
92399
|
+
vendorName?: InputMaybe<Scalars['String']['input']>;
|
|
90808
92400
|
};
|
|
90809
92401
|
export declare type UpdateAppDetailsResponse = Payload & {
|
|
90810
92402
|
__typename?: 'UpdateAppDetailsResponse';
|