@forge/cli-shared 6.3.0-next.15 → 6.3.1-next.0
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 +36 -0
- package/out/graphql/graphql-types.d.ts +239 -36
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +31 -15
- package/package.json +4 -4
|
@@ -140,6 +140,8 @@ export declare type ActionsAction = {
|
|
|
140
140
|
inputs?: Maybe<Array<ActionsActionInputTuple>>;
|
|
141
141
|
isConsequential: Scalars['Boolean']['output'];
|
|
142
142
|
name?: Maybe<Scalars['String']['output']>;
|
|
143
|
+
outputs?: Maybe<Array<ActionsActionTypeOutputTuple>>;
|
|
144
|
+
target?: Maybe<ActionsTargetInputs>;
|
|
143
145
|
};
|
|
144
146
|
export declare type ActionsActionInput = {
|
|
145
147
|
__typename?: 'ActionsActionInput';
|
|
@@ -267,6 +269,31 @@ export declare type ActionsMutationExecuteBulkArgs = {
|
|
|
267
269
|
filter: ActionsExecuteActionFilter;
|
|
268
270
|
workspace?: InputMaybe<Scalars['String']['input']>;
|
|
269
271
|
};
|
|
272
|
+
export declare type ActionsTargetAri = {
|
|
273
|
+
__typename?: 'ActionsTargetAri';
|
|
274
|
+
ati?: Maybe<Scalars['String']['output']>;
|
|
275
|
+
description?: Maybe<ActionsDescription>;
|
|
276
|
+
};
|
|
277
|
+
export declare type ActionsTargetAriInput = {
|
|
278
|
+
__typename?: 'ActionsTargetAriInput';
|
|
279
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
280
|
+
value?: Maybe<ActionsTargetAri>;
|
|
281
|
+
};
|
|
282
|
+
export declare type ActionsTargetId = {
|
|
283
|
+
__typename?: 'ActionsTargetId';
|
|
284
|
+
description?: Maybe<ActionsDescription>;
|
|
285
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
286
|
+
};
|
|
287
|
+
export declare type ActionsTargetIdInput = {
|
|
288
|
+
__typename?: 'ActionsTargetIdInput';
|
|
289
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
290
|
+
value?: Maybe<ActionsTargetId>;
|
|
291
|
+
};
|
|
292
|
+
export declare type ActionsTargetInputs = {
|
|
293
|
+
__typename?: 'ActionsTargetInputs';
|
|
294
|
+
ari?: Maybe<Array<Maybe<ActionsTargetAriInput>>>;
|
|
295
|
+
id?: Maybe<Array<Maybe<ActionsTargetIdInput>>>;
|
|
296
|
+
};
|
|
270
297
|
export declare type Activities = {
|
|
271
298
|
__typename?: 'Activities';
|
|
272
299
|
all: ActivitiesConnection;
|
|
@@ -484,7 +511,7 @@ export declare type ActivityObject = {
|
|
|
484
511
|
subProduct?: Maybe<Scalars['String']['output']>;
|
|
485
512
|
type: Scalars['String']['output'];
|
|
486
513
|
};
|
|
487
|
-
export declare type ActivityObjectData = ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | MercuryFocusArea | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloBoard | TrelloCard;
|
|
514
|
+
export declare type ActivityObjectData = ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | MercuryFocusArea | MercuryPortfolio | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloBoard | TrelloCard;
|
|
488
515
|
export declare enum ActivityObjectType {
|
|
489
516
|
Blogpost = "BLOGPOST",
|
|
490
517
|
Comment = "COMMENT",
|
|
@@ -4961,6 +4988,7 @@ export declare type CompassDeactivatedScorecard = {
|
|
|
4961
4988
|
id: Scalars['ID']['output'];
|
|
4962
4989
|
name: Scalars['String']['output'];
|
|
4963
4990
|
ownerId?: Maybe<Scalars['ID']['output']>;
|
|
4991
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
4964
4992
|
type: Scalars['String']['output'];
|
|
4965
4993
|
};
|
|
4966
4994
|
export declare type CompassDeactivatedScorecardActiveIssuesArgs = {
|
|
@@ -6099,6 +6127,7 @@ export declare type CompassScorecard = Node & {
|
|
|
6099
6127
|
scorecardScoreDurationStatistics?: Maybe<CompassScorecardScoreDurationStatisticsResult>;
|
|
6100
6128
|
scorecardScoreStatisticsHistories?: Maybe<CompassScorecardScoreStatisticsHistoryConnection>;
|
|
6101
6129
|
scoringStrategyType?: Maybe<Scalars['String']['output']>;
|
|
6130
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
6102
6131
|
type: Scalars['String']['output'];
|
|
6103
6132
|
viewerPermissions?: Maybe<CompassScorecardInstancePermissions>;
|
|
6104
6133
|
};
|
|
@@ -15922,6 +15951,7 @@ export declare type CreateCompassScorecardInput = {
|
|
|
15922
15951
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
15923
15952
|
repositoryValues?: InputMaybe<CompassRepositoryValueInput>;
|
|
15924
15953
|
scoringStrategyType?: InputMaybe<CompassScorecardScoringStrategyType>;
|
|
15954
|
+
state?: InputMaybe<Scalars['String']['input']>;
|
|
15925
15955
|
};
|
|
15926
15956
|
export declare type CreateCompassScorecardPayload = Payload & {
|
|
15927
15957
|
__typename?: 'CreateCompassScorecardPayload';
|
|
@@ -17488,6 +17518,7 @@ export declare type DevAiGetSupportedReposArgs = {
|
|
|
17488
17518
|
export declare type DevAiAutodevLog = {
|
|
17489
17519
|
id: Scalars['ID']['output'];
|
|
17490
17520
|
phase?: Maybe<DevAiAutodevLogPhase>;
|
|
17521
|
+
priority?: Maybe<DevAiAutodevLogPriority>;
|
|
17491
17522
|
status?: Maybe<DevAiAutodevLogStatus>;
|
|
17492
17523
|
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
17493
17524
|
};
|
|
@@ -17544,6 +17575,10 @@ export declare enum DevAiAutodevLogPhase {
|
|
|
17544
17575
|
PlanReview = "PLAN_REVIEW",
|
|
17545
17576
|
PlanReGenerating = "PLAN_RE_GENERATING"
|
|
17546
17577
|
}
|
|
17578
|
+
export declare enum DevAiAutodevLogPriority {
|
|
17579
|
+
Lowest = "LOWEST",
|
|
17580
|
+
Medium = "MEDIUM"
|
|
17581
|
+
}
|
|
17547
17582
|
export declare enum DevAiAutodevLogStatus {
|
|
17548
17583
|
Completed = "COMPLETED",
|
|
17549
17584
|
Failed = "FAILED",
|
|
@@ -17698,6 +17733,7 @@ export declare type DevAiGenericAutodevLog = DevAiAutodevLog & {
|
|
|
17698
17733
|
id: Scalars['ID']['output'];
|
|
17699
17734
|
kind?: Maybe<Scalars['String']['output']>;
|
|
17700
17735
|
phase?: Maybe<DevAiAutodevLogPhase>;
|
|
17736
|
+
priority?: Maybe<DevAiAutodevLogPriority>;
|
|
17701
17737
|
status?: Maybe<DevAiAutodevLogStatus>;
|
|
17702
17738
|
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
17703
17739
|
};
|
|
@@ -17706,6 +17742,20 @@ export declare type DevAiGenericMutationErrorExtension = MutationErrorExtension
|
|
|
17706
17742
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
17707
17743
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
17708
17744
|
};
|
|
17745
|
+
export declare enum DevAiIssueScopingLabel {
|
|
17746
|
+
Complex = "COMPLEX",
|
|
17747
|
+
InScope = "IN_SCOPE",
|
|
17748
|
+
Recoverable = "RECOVERABLE",
|
|
17749
|
+
Unsolvable = "UNSOLVABLE"
|
|
17750
|
+
}
|
|
17751
|
+
export declare type DevAiIssueScopingResult = {
|
|
17752
|
+
__typename?: 'DevAiIssueScopingResult';
|
|
17753
|
+
isAddingCodeFilePathSuggested?: Maybe<Scalars['Boolean']['output']>;
|
|
17754
|
+
isAddingCodeSnippetSuggested?: Maybe<Scalars['Boolean']['output']>;
|
|
17755
|
+
isAddingCodingTermsSuggested?: Maybe<Scalars['Boolean']['output']>;
|
|
17756
|
+
issueId: Scalars['ID']['output'];
|
|
17757
|
+
label?: Maybe<DevAiIssueScopingLabel>;
|
|
17758
|
+
};
|
|
17709
17759
|
export declare type DevAiMutations = {
|
|
17710
17760
|
__typename?: 'DevAiMutations';
|
|
17711
17761
|
cancelAutofixScan?: Maybe<DevAiCancelAutofixScanPayload>;
|
|
@@ -17733,6 +17783,7 @@ export declare type DevAiPhaseEndedAutodevLog = DevAiAutodevLog & {
|
|
|
17733
17783
|
__typename?: 'DevAiPhaseEndedAutodevLog';
|
|
17734
17784
|
id: Scalars['ID']['output'];
|
|
17735
17785
|
phase?: Maybe<DevAiAutodevLogPhase>;
|
|
17786
|
+
priority?: Maybe<DevAiAutodevLogPriority>;
|
|
17736
17787
|
status?: Maybe<DevAiAutodevLogStatus>;
|
|
17737
17788
|
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
17738
17789
|
};
|
|
@@ -17740,6 +17791,7 @@ export declare type DevAiPhaseStartedAutodevLog = DevAiAutodevLog & {
|
|
|
17740
17791
|
__typename?: 'DevAiPhaseStartedAutodevLog';
|
|
17741
17792
|
id: Scalars['ID']['output'];
|
|
17742
17793
|
phase?: Maybe<DevAiAutodevLogPhase>;
|
|
17794
|
+
priority?: Maybe<DevAiAutodevLogPriority>;
|
|
17743
17795
|
status?: Maybe<DevAiAutodevLogStatus>;
|
|
17744
17796
|
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
17745
17797
|
};
|
|
@@ -17749,6 +17801,7 @@ export declare type DevAiPlaintextAutodevLog = DevAiAutodevLog & {
|
|
|
17749
17801
|
id: Scalars['ID']['output'];
|
|
17750
17802
|
message?: Maybe<Scalars['String']['output']>;
|
|
17751
17803
|
phase?: Maybe<DevAiAutodevLogPhase>;
|
|
17804
|
+
priority?: Maybe<DevAiAutodevLogPriority>;
|
|
17752
17805
|
status?: Maybe<DevAiAutodevLogStatus>;
|
|
17753
17806
|
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
17754
17807
|
};
|
|
@@ -25179,7 +25232,9 @@ export declare type GraphStore = {
|
|
|
25179
25232
|
appInstallationAssociatedToOperationsWorkspaceRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection>;
|
|
25180
25233
|
appInstallationAssociatedToSecurityWorkspaceInverseRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection>;
|
|
25181
25234
|
appInstallationAssociatedToSecurityWorkspaceRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection>;
|
|
25235
|
+
atlasGoalHasContributorInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorInverseConnection>;
|
|
25182
25236
|
atlasGoalHasFollowerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerInverseConnection>;
|
|
25237
|
+
atlasGoalHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection>;
|
|
25183
25238
|
atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
|
|
25184
25239
|
atlasGoalHasSubAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection>;
|
|
25185
25240
|
atlasProjectContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection>;
|
|
@@ -25190,6 +25245,7 @@ export declare type GraphStore = {
|
|
|
25190
25245
|
atlasProjectDependsOnAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverseConnection>;
|
|
25191
25246
|
atlasProjectHasContributorInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasContributorInverseConnection>;
|
|
25192
25247
|
atlasProjectHasFollowerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerInverseConnection>;
|
|
25248
|
+
atlasProjectHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerInverseConnection>;
|
|
25193
25249
|
atlasProjectIsRelatedToAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection>;
|
|
25194
25250
|
atlasProjectIsRelatedToAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectInverseConnection>;
|
|
25195
25251
|
atlasProjectIsTrackedOnJiraEpic?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
@@ -25588,6 +25644,13 @@ export declare type GraphStoreAppInstallationAssociatedToSecurityWorkspaceRelati
|
|
|
25588
25644
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25589
25645
|
id: Scalars['ID']['input'];
|
|
25590
25646
|
};
|
|
25647
|
+
export declare type GraphStoreAtlasGoalHasContributorInverseArgs = {
|
|
25648
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25649
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25650
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25651
|
+
id: Scalars['ID']['input'];
|
|
25652
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasContributorSortInput>;
|
|
25653
|
+
};
|
|
25591
25654
|
export declare type GraphStoreAtlasGoalHasFollowerInverseArgs = {
|
|
25592
25655
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25593
25656
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -25595,6 +25658,13 @@ export declare type GraphStoreAtlasGoalHasFollowerInverseArgs = {
|
|
|
25595
25658
|
id: Scalars['ID']['input'];
|
|
25596
25659
|
sort?: InputMaybe<GraphStoreAtlasGoalHasFollowerSortInput>;
|
|
25597
25660
|
};
|
|
25661
|
+
export declare type GraphStoreAtlasGoalHasOwnerInverseArgs = {
|
|
25662
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25663
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25664
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25665
|
+
id: Scalars['ID']['input'];
|
|
25666
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasOwnerSortInput>;
|
|
25667
|
+
};
|
|
25598
25668
|
export declare type GraphStoreAtlasGoalHasSubAtlasGoalArgs = {
|
|
25599
25669
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25600
25670
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -25661,6 +25731,13 @@ export declare type GraphStoreAtlasProjectHasFollowerInverseArgs = {
|
|
|
25661
25731
|
id: Scalars['ID']['input'];
|
|
25662
25732
|
sort?: InputMaybe<GraphStoreAtlasProjectHasFollowerSortInput>;
|
|
25663
25733
|
};
|
|
25734
|
+
export declare type GraphStoreAtlasProjectHasOwnerInverseArgs = {
|
|
25735
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25736
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25737
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25738
|
+
id: Scalars['ID']['input'];
|
|
25739
|
+
sort?: InputMaybe<GraphStoreAtlasProjectHasOwnerSortInput>;
|
|
25740
|
+
};
|
|
25664
25741
|
export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectArgs = {
|
|
25665
25742
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25666
25743
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28052,9 +28129,15 @@ export declare type GraphStoreAtiFilterInput = {
|
|
|
28052
28129
|
is?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
28053
28130
|
isNot?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
28054
28131
|
};
|
|
28132
|
+
export declare type GraphStoreAtlasGoalHasContributorSortInput = {
|
|
28133
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28134
|
+
};
|
|
28055
28135
|
export declare type GraphStoreAtlasGoalHasFollowerSortInput = {
|
|
28056
28136
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28057
28137
|
};
|
|
28138
|
+
export declare type GraphStoreAtlasGoalHasOwnerSortInput = {
|
|
28139
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28140
|
+
};
|
|
28058
28141
|
export declare type GraphStoreAtlasGoalHasSubAtlasGoalSortInput = {
|
|
28059
28142
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28060
28143
|
};
|
|
@@ -28070,6 +28153,9 @@ export declare type GraphStoreAtlasProjectHasContributorSortInput = {
|
|
|
28070
28153
|
export declare type GraphStoreAtlasProjectHasFollowerSortInput = {
|
|
28071
28154
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28072
28155
|
};
|
|
28156
|
+
export declare type GraphStoreAtlasProjectHasOwnerSortInput = {
|
|
28157
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28158
|
+
};
|
|
28073
28159
|
export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectSortInput = {
|
|
28074
28160
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28075
28161
|
};
|
|
@@ -28086,7 +28172,7 @@ export declare type GraphStoreBatchContentReferencedEntityEdge = {
|
|
|
28086
28172
|
__typename?: 'GraphStoreBatchContentReferencedEntityEdge';
|
|
28087
28173
|
node: GraphStoreBatchContentReferencedEntityInnerConnection;
|
|
28088
28174
|
};
|
|
28089
|
-
export declare type GraphStoreBatchContentReferencedEntityEndNode =
|
|
28175
|
+
export declare type GraphStoreBatchContentReferencedEntityEndNode = {
|
|
28090
28176
|
__typename?: 'GraphStoreBatchContentReferencedEntityEndNode';
|
|
28091
28177
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
28092
28178
|
id: Scalars['ID']['output'];
|
|
@@ -28111,7 +28197,7 @@ export declare type GraphStoreBatchContentReferencedEntityNode = Node & {
|
|
|
28111
28197
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28112
28198
|
to: GraphStoreBatchContentReferencedEntityEndNode;
|
|
28113
28199
|
};
|
|
28114
|
-
export declare type GraphStoreBatchContentReferencedEntityStartNode =
|
|
28200
|
+
export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
28115
28201
|
__typename?: 'GraphStoreBatchContentReferencedEntityStartNode';
|
|
28116
28202
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
28117
28203
|
id: Scalars['ID']['output'];
|
|
@@ -28127,7 +28213,7 @@ export declare type GraphStoreBatchFocusAreaAssociatedToProjectEdge = {
|
|
|
28127
28213
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectEdge';
|
|
28128
28214
|
node: GraphStoreBatchFocusAreaAssociatedToProjectInnerConnection;
|
|
28129
28215
|
};
|
|
28130
|
-
export declare type GraphStoreBatchFocusAreaAssociatedToProjectEndNode =
|
|
28216
|
+
export declare type GraphStoreBatchFocusAreaAssociatedToProjectEndNode = {
|
|
28131
28217
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectEndNode';
|
|
28132
28218
|
data?: Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEndUnion>;
|
|
28133
28219
|
id: Scalars['ID']['output'];
|
|
@@ -28152,7 +28238,7 @@ export declare type GraphStoreBatchFocusAreaAssociatedToProjectNode = Node & {
|
|
|
28152
28238
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28153
28239
|
to: GraphStoreBatchFocusAreaAssociatedToProjectEndNode;
|
|
28154
28240
|
};
|
|
28155
|
-
export declare type GraphStoreBatchFocusAreaAssociatedToProjectStartNode =
|
|
28241
|
+
export declare type GraphStoreBatchFocusAreaAssociatedToProjectStartNode = {
|
|
28156
28242
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectStartNode';
|
|
28157
28243
|
data?: Maybe<GraphStoreBatchFocusAreaAssociatedToProjectStartUnion>;
|
|
28158
28244
|
id: Scalars['ID']['output'];
|
|
@@ -28168,7 +28254,7 @@ export declare type GraphStoreBatchFocusAreaHasAtlasGoalEdge = {
|
|
|
28168
28254
|
__typename?: 'GraphStoreBatchFocusAreaHasAtlasGoalEdge';
|
|
28169
28255
|
node: GraphStoreBatchFocusAreaHasAtlasGoalInnerConnection;
|
|
28170
28256
|
};
|
|
28171
|
-
export declare type GraphStoreBatchFocusAreaHasAtlasGoalEndNode =
|
|
28257
|
+
export declare type GraphStoreBatchFocusAreaHasAtlasGoalEndNode = {
|
|
28172
28258
|
__typename?: 'GraphStoreBatchFocusAreaHasAtlasGoalEndNode';
|
|
28173
28259
|
data?: Maybe<GraphStoreBatchFocusAreaHasAtlasGoalEndUnion>;
|
|
28174
28260
|
id: Scalars['ID']['output'];
|
|
@@ -28193,7 +28279,7 @@ export declare type GraphStoreBatchFocusAreaHasAtlasGoalNode = Node & {
|
|
|
28193
28279
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28194
28280
|
to: GraphStoreBatchFocusAreaHasAtlasGoalEndNode;
|
|
28195
28281
|
};
|
|
28196
|
-
export declare type GraphStoreBatchFocusAreaHasAtlasGoalStartNode =
|
|
28282
|
+
export declare type GraphStoreBatchFocusAreaHasAtlasGoalStartNode = {
|
|
28197
28283
|
__typename?: 'GraphStoreBatchFocusAreaHasAtlasGoalStartNode';
|
|
28198
28284
|
data?: Maybe<GraphStoreBatchFocusAreaHasAtlasGoalStartUnion>;
|
|
28199
28285
|
id: Scalars['ID']['output'];
|
|
@@ -28209,7 +28295,7 @@ export declare type GraphStoreBatchFocusAreaHasFocusAreaEdge = {
|
|
|
28209
28295
|
__typename?: 'GraphStoreBatchFocusAreaHasFocusAreaEdge';
|
|
28210
28296
|
node: GraphStoreBatchFocusAreaHasFocusAreaInnerConnection;
|
|
28211
28297
|
};
|
|
28212
|
-
export declare type GraphStoreBatchFocusAreaHasFocusAreaEndNode =
|
|
28298
|
+
export declare type GraphStoreBatchFocusAreaHasFocusAreaEndNode = {
|
|
28213
28299
|
__typename?: 'GraphStoreBatchFocusAreaHasFocusAreaEndNode';
|
|
28214
28300
|
data?: Maybe<GraphStoreBatchFocusAreaHasFocusAreaEndUnion>;
|
|
28215
28301
|
id: Scalars['ID']['output'];
|
|
@@ -28234,7 +28320,7 @@ export declare type GraphStoreBatchFocusAreaHasFocusAreaNode = Node & {
|
|
|
28234
28320
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28235
28321
|
to: GraphStoreBatchFocusAreaHasFocusAreaEndNode;
|
|
28236
28322
|
};
|
|
28237
|
-
export declare type GraphStoreBatchFocusAreaHasFocusAreaStartNode =
|
|
28323
|
+
export declare type GraphStoreBatchFocusAreaHasFocusAreaStartNode = {
|
|
28238
28324
|
__typename?: 'GraphStoreBatchFocusAreaHasFocusAreaStartNode';
|
|
28239
28325
|
data?: Maybe<GraphStoreBatchFocusAreaHasFocusAreaStartUnion>;
|
|
28240
28326
|
id: Scalars['ID']['output'];
|
|
@@ -28250,7 +28336,7 @@ export declare type GraphStoreBatchFocusAreaHasProjectEdge = {
|
|
|
28250
28336
|
__typename?: 'GraphStoreBatchFocusAreaHasProjectEdge';
|
|
28251
28337
|
node: GraphStoreBatchFocusAreaHasProjectInnerConnection;
|
|
28252
28338
|
};
|
|
28253
|
-
export declare type GraphStoreBatchFocusAreaHasProjectEndNode =
|
|
28339
|
+
export declare type GraphStoreBatchFocusAreaHasProjectEndNode = {
|
|
28254
28340
|
__typename?: 'GraphStoreBatchFocusAreaHasProjectEndNode';
|
|
28255
28341
|
data?: Maybe<GraphStoreBatchFocusAreaHasProjectEndUnion>;
|
|
28256
28342
|
id: Scalars['ID']['output'];
|
|
@@ -28275,7 +28361,7 @@ export declare type GraphStoreBatchFocusAreaHasProjectNode = Node & {
|
|
|
28275
28361
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28276
28362
|
to: GraphStoreBatchFocusAreaHasProjectEndNode;
|
|
28277
28363
|
};
|
|
28278
|
-
export declare type GraphStoreBatchFocusAreaHasProjectStartNode =
|
|
28364
|
+
export declare type GraphStoreBatchFocusAreaHasProjectStartNode = {
|
|
28279
28365
|
__typename?: 'GraphStoreBatchFocusAreaHasProjectStartNode';
|
|
28280
28366
|
data?: Maybe<GraphStoreBatchFocusAreaHasProjectStartUnion>;
|
|
28281
28367
|
id: Scalars['ID']['output'];
|
|
@@ -28291,7 +28377,7 @@ export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewEdge = {
|
|
|
28291
28377
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewEdge';
|
|
28292
28378
|
node: GraphStoreBatchIncidentAssociatedPostIncidentReviewInnerConnection;
|
|
28293
28379
|
};
|
|
28294
|
-
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewEndNode =
|
|
28380
|
+
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewEndNode = {
|
|
28295
28381
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewEndNode';
|
|
28296
28382
|
data?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewEndUnion>;
|
|
28297
28383
|
id: Scalars['ID']['output'];
|
|
@@ -28318,7 +28404,7 @@ export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkEdge
|
|
|
28318
28404
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkEdge';
|
|
28319
28405
|
node: GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkInnerConnection;
|
|
28320
28406
|
};
|
|
28321
|
-
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkEndNode =
|
|
28407
|
+
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkEndNode = {
|
|
28322
28408
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkEndNode';
|
|
28323
28409
|
data?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkEndUnion>;
|
|
28324
28410
|
id: Scalars['ID']['output'];
|
|
@@ -28343,7 +28429,7 @@ export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkNode
|
|
|
28343
28429
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28344
28430
|
to: GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkEndNode;
|
|
28345
28431
|
};
|
|
28346
|
-
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkStartNode =
|
|
28432
|
+
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkStartNode = {
|
|
28347
28433
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkStartNode';
|
|
28348
28434
|
data?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkStartUnion>;
|
|
28349
28435
|
id: Scalars['ID']['output'];
|
|
@@ -28357,7 +28443,7 @@ export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewNode = No
|
|
|
28357
28443
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28358
28444
|
to: GraphStoreBatchIncidentAssociatedPostIncidentReviewEndNode;
|
|
28359
28445
|
};
|
|
28360
|
-
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewStartNode =
|
|
28446
|
+
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewStartNode = {
|
|
28361
28447
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewStartNode';
|
|
28362
28448
|
data?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewStartUnion>;
|
|
28363
28449
|
id: Scalars['ID']['output'];
|
|
@@ -28373,7 +28459,7 @@ export declare type GraphStoreBatchIncidentHasActionItemEdge = {
|
|
|
28373
28459
|
__typename?: 'GraphStoreBatchIncidentHasActionItemEdge';
|
|
28374
28460
|
node: GraphStoreBatchIncidentHasActionItemInnerConnection;
|
|
28375
28461
|
};
|
|
28376
|
-
export declare type GraphStoreBatchIncidentHasActionItemEndNode =
|
|
28462
|
+
export declare type GraphStoreBatchIncidentHasActionItemEndNode = {
|
|
28377
28463
|
__typename?: 'GraphStoreBatchIncidentHasActionItemEndNode';
|
|
28378
28464
|
data?: Maybe<GraphStoreBatchIncidentHasActionItemEndUnion>;
|
|
28379
28465
|
id: Scalars['ID']['output'];
|
|
@@ -28398,7 +28484,7 @@ export declare type GraphStoreBatchIncidentHasActionItemNode = Node & {
|
|
|
28398
28484
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28399
28485
|
to: GraphStoreBatchIncidentHasActionItemEndNode;
|
|
28400
28486
|
};
|
|
28401
|
-
export declare type GraphStoreBatchIncidentHasActionItemStartNode =
|
|
28487
|
+
export declare type GraphStoreBatchIncidentHasActionItemStartNode = {
|
|
28402
28488
|
__typename?: 'GraphStoreBatchIncidentHasActionItemStartNode';
|
|
28403
28489
|
data?: Maybe<GraphStoreBatchIncidentHasActionItemStartUnion>;
|
|
28404
28490
|
id: Scalars['ID']['output'];
|
|
@@ -28414,7 +28500,7 @@ export declare type GraphStoreBatchIncidentLinkedJswIssueEdge = {
|
|
|
28414
28500
|
__typename?: 'GraphStoreBatchIncidentLinkedJswIssueEdge';
|
|
28415
28501
|
node: GraphStoreBatchIncidentLinkedJswIssueInnerConnection;
|
|
28416
28502
|
};
|
|
28417
|
-
export declare type GraphStoreBatchIncidentLinkedJswIssueEndNode =
|
|
28503
|
+
export declare type GraphStoreBatchIncidentLinkedJswIssueEndNode = {
|
|
28418
28504
|
__typename?: 'GraphStoreBatchIncidentLinkedJswIssueEndNode';
|
|
28419
28505
|
data?: Maybe<GraphStoreBatchIncidentLinkedJswIssueEndUnion>;
|
|
28420
28506
|
id: Scalars['ID']['output'];
|
|
@@ -28439,7 +28525,7 @@ export declare type GraphStoreBatchIncidentLinkedJswIssueNode = Node & {
|
|
|
28439
28525
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28440
28526
|
to: GraphStoreBatchIncidentLinkedJswIssueEndNode;
|
|
28441
28527
|
};
|
|
28442
|
-
export declare type GraphStoreBatchIncidentLinkedJswIssueStartNode =
|
|
28528
|
+
export declare type GraphStoreBatchIncidentLinkedJswIssueStartNode = {
|
|
28443
28529
|
__typename?: 'GraphStoreBatchIncidentLinkedJswIssueStartNode';
|
|
28444
28530
|
data?: Maybe<GraphStoreBatchIncidentLinkedJswIssueStartUnion>;
|
|
28445
28531
|
id: Scalars['ID']['output'];
|
|
@@ -28455,7 +28541,7 @@ export declare type GraphStoreBatchIssueAssociatedBuildEdge = {
|
|
|
28455
28541
|
__typename?: 'GraphStoreBatchIssueAssociatedBuildEdge';
|
|
28456
28542
|
node: GraphStoreBatchIssueAssociatedBuildInnerConnection;
|
|
28457
28543
|
};
|
|
28458
|
-
export declare type GraphStoreBatchIssueAssociatedBuildEndNode =
|
|
28544
|
+
export declare type GraphStoreBatchIssueAssociatedBuildEndNode = {
|
|
28459
28545
|
__typename?: 'GraphStoreBatchIssueAssociatedBuildEndNode';
|
|
28460
28546
|
id: Scalars['ID']['output'];
|
|
28461
28547
|
};
|
|
@@ -28478,7 +28564,7 @@ export declare type GraphStoreBatchIssueAssociatedBuildNode = Node & {
|
|
|
28478
28564
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28479
28565
|
to: GraphStoreBatchIssueAssociatedBuildEndNode;
|
|
28480
28566
|
};
|
|
28481
|
-
export declare type GraphStoreBatchIssueAssociatedBuildStartNode =
|
|
28567
|
+
export declare type GraphStoreBatchIssueAssociatedBuildStartNode = {
|
|
28482
28568
|
__typename?: 'GraphStoreBatchIssueAssociatedBuildStartNode';
|
|
28483
28569
|
data?: Maybe<GraphStoreBatchIssueAssociatedBuildStartUnion>;
|
|
28484
28570
|
id: Scalars['ID']['output'];
|
|
@@ -28494,7 +28580,7 @@ export declare type GraphStoreBatchIssueAssociatedDeploymentEdge = {
|
|
|
28494
28580
|
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentEdge';
|
|
28495
28581
|
node: GraphStoreBatchIssueAssociatedDeploymentInnerConnection;
|
|
28496
28582
|
};
|
|
28497
|
-
export declare type GraphStoreBatchIssueAssociatedDeploymentEndNode =
|
|
28583
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentEndNode = {
|
|
28498
28584
|
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentEndNode';
|
|
28499
28585
|
data?: Maybe<GraphStoreBatchIssueAssociatedDeploymentEndUnion>;
|
|
28500
28586
|
id: Scalars['ID']['output'];
|
|
@@ -28519,7 +28605,7 @@ export declare type GraphStoreBatchIssueAssociatedDeploymentNode = Node & {
|
|
|
28519
28605
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28520
28606
|
to: GraphStoreBatchIssueAssociatedDeploymentEndNode;
|
|
28521
28607
|
};
|
|
28522
|
-
export declare type GraphStoreBatchIssueAssociatedDeploymentStartNode =
|
|
28608
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentStartNode = {
|
|
28523
28609
|
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentStartNode';
|
|
28524
28610
|
data?: Maybe<GraphStoreBatchIssueAssociatedDeploymentStartUnion>;
|
|
28525
28611
|
id: Scalars['ID']['output'];
|
|
@@ -28535,7 +28621,7 @@ export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkEdge = {
|
|
|
28535
28621
|
__typename?: 'GraphStoreBatchIssueAssociatedIssueRemoteLinkEdge';
|
|
28536
28622
|
node: GraphStoreBatchIssueAssociatedIssueRemoteLinkInnerConnection;
|
|
28537
28623
|
};
|
|
28538
|
-
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkEndNode =
|
|
28624
|
+
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkEndNode = {
|
|
28539
28625
|
__typename?: 'GraphStoreBatchIssueAssociatedIssueRemoteLinkEndNode';
|
|
28540
28626
|
data?: Maybe<GraphStoreBatchIssueAssociatedIssueRemoteLinkEndUnion>;
|
|
28541
28627
|
id: Scalars['ID']['output'];
|
|
@@ -28560,7 +28646,7 @@ export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkNode = Node & {
|
|
|
28560
28646
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28561
28647
|
to: GraphStoreBatchIssueAssociatedIssueRemoteLinkEndNode;
|
|
28562
28648
|
};
|
|
28563
|
-
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkStartNode =
|
|
28649
|
+
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkStartNode = {
|
|
28564
28650
|
__typename?: 'GraphStoreBatchIssueAssociatedIssueRemoteLinkStartNode';
|
|
28565
28651
|
data?: Maybe<GraphStoreBatchIssueAssociatedIssueRemoteLinkStartUnion>;
|
|
28566
28652
|
id: Scalars['ID']['output'];
|
|
@@ -28576,7 +28662,7 @@ export declare type GraphStoreBatchJsmProjectAssociatedServiceEdge = {
|
|
|
28576
28662
|
__typename?: 'GraphStoreBatchJsmProjectAssociatedServiceEdge';
|
|
28577
28663
|
node: GraphStoreBatchJsmProjectAssociatedServiceInnerConnection;
|
|
28578
28664
|
};
|
|
28579
|
-
export declare type GraphStoreBatchJsmProjectAssociatedServiceEndNode =
|
|
28665
|
+
export declare type GraphStoreBatchJsmProjectAssociatedServiceEndNode = {
|
|
28580
28666
|
__typename?: 'GraphStoreBatchJsmProjectAssociatedServiceEndNode';
|
|
28581
28667
|
data?: Maybe<GraphStoreBatchJsmProjectAssociatedServiceEndUnion>;
|
|
28582
28668
|
id: Scalars['ID']['output'];
|
|
@@ -28601,7 +28687,7 @@ export declare type GraphStoreBatchJsmProjectAssociatedServiceNode = Node & {
|
|
|
28601
28687
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28602
28688
|
to: GraphStoreBatchJsmProjectAssociatedServiceEndNode;
|
|
28603
28689
|
};
|
|
28604
|
-
export declare type GraphStoreBatchJsmProjectAssociatedServiceStartNode =
|
|
28690
|
+
export declare type GraphStoreBatchJsmProjectAssociatedServiceStartNode = {
|
|
28605
28691
|
__typename?: 'GraphStoreBatchJsmProjectAssociatedServiceStartNode';
|
|
28606
28692
|
data?: Maybe<GraphStoreBatchJsmProjectAssociatedServiceStartUnion>;
|
|
28607
28693
|
id: Scalars['ID']['output'];
|
|
@@ -28617,7 +28703,7 @@ export declare type GraphStoreBatchMediaAttachedToContentEdge = {
|
|
|
28617
28703
|
__typename?: 'GraphStoreBatchMediaAttachedToContentEdge';
|
|
28618
28704
|
node: GraphStoreBatchMediaAttachedToContentInnerConnection;
|
|
28619
28705
|
};
|
|
28620
|
-
export declare type GraphStoreBatchMediaAttachedToContentEndNode =
|
|
28706
|
+
export declare type GraphStoreBatchMediaAttachedToContentEndNode = {
|
|
28621
28707
|
__typename?: 'GraphStoreBatchMediaAttachedToContentEndNode';
|
|
28622
28708
|
data?: Maybe<GraphStoreBatchMediaAttachedToContentEndUnion>;
|
|
28623
28709
|
id: Scalars['ID']['output'];
|
|
@@ -28642,7 +28728,7 @@ export declare type GraphStoreBatchMediaAttachedToContentNode = Node & {
|
|
|
28642
28728
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28643
28729
|
to: GraphStoreBatchMediaAttachedToContentEndNode;
|
|
28644
28730
|
};
|
|
28645
|
-
export declare type GraphStoreBatchMediaAttachedToContentStartNode =
|
|
28731
|
+
export declare type GraphStoreBatchMediaAttachedToContentStartNode = {
|
|
28646
28732
|
__typename?: 'GraphStoreBatchMediaAttachedToContentStartNode';
|
|
28647
28733
|
id: Scalars['ID']['output'];
|
|
28648
28734
|
};
|
|
@@ -28656,7 +28742,7 @@ export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEdg
|
|
|
28656
28742
|
__typename?: 'GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEdge';
|
|
28657
28743
|
node: GraphStoreBatchSecurityContainerAssociatedToVulnerabilityInnerConnection;
|
|
28658
28744
|
};
|
|
28659
|
-
export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEndNode =
|
|
28745
|
+
export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEndNode = {
|
|
28660
28746
|
__typename?: 'GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEndNode';
|
|
28661
28747
|
data?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEndUnion>;
|
|
28662
28748
|
id: Scalars['ID']['output'];
|
|
@@ -28681,7 +28767,7 @@ export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityNod
|
|
|
28681
28767
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28682
28768
|
to: GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEndNode;
|
|
28683
28769
|
};
|
|
28684
|
-
export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityStartNode =
|
|
28770
|
+
export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityStartNode = {
|
|
28685
28771
|
__typename?: 'GraphStoreBatchSecurityContainerAssociatedToVulnerabilityStartNode';
|
|
28686
28772
|
id: Scalars['ID']['output'];
|
|
28687
28773
|
};
|
|
@@ -28695,7 +28781,7 @@ export declare type GraphStoreBatchTestPerfhammerRelationshipEdge = {
|
|
|
28695
28781
|
__typename?: 'GraphStoreBatchTestPerfhammerRelationshipEdge';
|
|
28696
28782
|
node: GraphStoreBatchTestPerfhammerRelationshipInnerConnection;
|
|
28697
28783
|
};
|
|
28698
|
-
export declare type GraphStoreBatchTestPerfhammerRelationshipEndNode =
|
|
28784
|
+
export declare type GraphStoreBatchTestPerfhammerRelationshipEndNode = {
|
|
28699
28785
|
__typename?: 'GraphStoreBatchTestPerfhammerRelationshipEndNode';
|
|
28700
28786
|
id: Scalars['ID']['output'];
|
|
28701
28787
|
};
|
|
@@ -28718,7 +28804,7 @@ export declare type GraphStoreBatchTestPerfhammerRelationshipNode = Node & {
|
|
|
28718
28804
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28719
28805
|
to: GraphStoreBatchTestPerfhammerRelationshipEndNode;
|
|
28720
28806
|
};
|
|
28721
|
-
export declare type GraphStoreBatchTestPerfhammerRelationshipStartNode =
|
|
28807
|
+
export declare type GraphStoreBatchTestPerfhammerRelationshipStartNode = {
|
|
28722
28808
|
__typename?: 'GraphStoreBatchTestPerfhammerRelationshipStartNode';
|
|
28723
28809
|
data?: Maybe<GraphStoreBatchTestPerfhammerRelationshipStartUnion>;
|
|
28724
28810
|
id: Scalars['ID']['output'];
|
|
@@ -33763,6 +33849,20 @@ export declare type GraphStoreShipit57IssueRecursiveLinksToPageSortInput = {
|
|
|
33763
33849
|
export declare type GraphStoreShipit57PullRequestLinksToPageSortInput = {
|
|
33764
33850
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
33765
33851
|
};
|
|
33852
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasContributorInverseConnection = HasPageInfo & {
|
|
33853
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasContributorInverseConnection';
|
|
33854
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasContributorInverseEdge>>>;
|
|
33855
|
+
pageInfo: PageInfo;
|
|
33856
|
+
};
|
|
33857
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasContributorInverseEdge = {
|
|
33858
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasContributorInverseEdge';
|
|
33859
|
+
createdAt: Scalars['DateTime']['output'];
|
|
33860
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
33861
|
+
id: Scalars['ID']['output'];
|
|
33862
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
33863
|
+
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorInverseUnion>;
|
|
33864
|
+
};
|
|
33865
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasContributorInverseUnion = TownsquareGoal;
|
|
33766
33866
|
export declare type GraphStoreSimplifiedAtlasGoalHasFollowerInverseConnection = HasPageInfo & {
|
|
33767
33867
|
__typename?: 'GraphStoreSimplifiedAtlasGoalHasFollowerInverseConnection';
|
|
33768
33868
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerInverseEdge>>>;
|
|
@@ -33777,6 +33877,20 @@ export declare type GraphStoreSimplifiedAtlasGoalHasFollowerInverseEdge = {
|
|
|
33777
33877
|
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerInverseUnion>;
|
|
33778
33878
|
};
|
|
33779
33879
|
export declare type GraphStoreSimplifiedAtlasGoalHasFollowerInverseUnion = TownsquareGoal;
|
|
33880
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection = HasPageInfo & {
|
|
33881
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection';
|
|
33882
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseEdge>>>;
|
|
33883
|
+
pageInfo: PageInfo;
|
|
33884
|
+
};
|
|
33885
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasOwnerInverseEdge = {
|
|
33886
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasOwnerInverseEdge';
|
|
33887
|
+
createdAt: Scalars['DateTime']['output'];
|
|
33888
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
33889
|
+
id: Scalars['ID']['output'];
|
|
33890
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
33891
|
+
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseUnion>;
|
|
33892
|
+
};
|
|
33893
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasOwnerInverseUnion = TownsquareGoal;
|
|
33780
33894
|
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection = HasPageInfo & {
|
|
33781
33895
|
__typename?: 'GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection';
|
|
33782
33896
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalEdge>>>;
|
|
@@ -33889,6 +34003,20 @@ export declare type GraphStoreSimplifiedAtlasProjectHasFollowerInverseEdge = {
|
|
|
33889
34003
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerInverseUnion>;
|
|
33890
34004
|
};
|
|
33891
34005
|
export declare type GraphStoreSimplifiedAtlasProjectHasFollowerInverseUnion = TownsquareProject;
|
|
34006
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseConnection = HasPageInfo & {
|
|
34007
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasOwnerInverseConnection';
|
|
34008
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerInverseEdge>>>;
|
|
34009
|
+
pageInfo: PageInfo;
|
|
34010
|
+
};
|
|
34011
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseEdge = {
|
|
34012
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasOwnerInverseEdge';
|
|
34013
|
+
createdAt: Scalars['DateTime']['output'];
|
|
34014
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
34015
|
+
id: Scalars['ID']['output'];
|
|
34016
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
34017
|
+
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerInverseUnion>;
|
|
34018
|
+
};
|
|
34019
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseUnion = TownsquareProject;
|
|
33892
34020
|
export declare type GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection = HasPageInfo & {
|
|
33893
34021
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection';
|
|
33894
34022
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectEdge>>>;
|
|
@@ -40673,7 +40801,11 @@ export declare type JiraAutodevJob = {
|
|
|
40673
40801
|
statusHistory?: Maybe<JiraAutodevStatusHistoryItemConnection>;
|
|
40674
40802
|
};
|
|
40675
40803
|
export declare type JiraAutodevJobJobLogsArgs = {
|
|
40804
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40676
40805
|
cloudId: Scalars['ID']['input'];
|
|
40806
|
+
excludePriorities?: InputMaybe<Array<InputMaybe<DevAiAutodevLogPriority>>>;
|
|
40807
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40808
|
+
minPriority?: InputMaybe<DevAiAutodevLogPriority>;
|
|
40677
40809
|
};
|
|
40678
40810
|
export declare type JiraAutodevJobConnection = {
|
|
40679
40811
|
__typename?: 'JiraAutodevJobConnection';
|
|
@@ -42748,6 +42880,7 @@ export declare enum JiraDeploymentsFeaturePrecondition {
|
|
|
42748
42880
|
}
|
|
42749
42881
|
export declare type JiraDetailedView = JiraIssueSearchViewType & JiraView & Node & {
|
|
42750
42882
|
__typename?: 'JiraDetailedView';
|
|
42883
|
+
error?: Maybe<QueryError>;
|
|
42751
42884
|
id: Scalars['ID']['output'];
|
|
42752
42885
|
issues?: Maybe<JiraIssueConnection>;
|
|
42753
42886
|
};
|
|
@@ -42759,6 +42892,7 @@ export declare type JiraDetailedViewIssuesArgs = {
|
|
|
42759
42892
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
42760
42893
|
options?: InputMaybe<JiraIssueSearchOptions>;
|
|
42761
42894
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42895
|
+
viewConfigInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
42762
42896
|
};
|
|
42763
42897
|
export declare type JiraDevInfoConfigError = {
|
|
42764
42898
|
__typename?: 'JiraDevInfoConfigError';
|
|
@@ -43101,6 +43235,9 @@ export declare type JiraDismissInContextConfigPromptPayload = Payload & {
|
|
|
43101
43235
|
errors?: Maybe<Array<MutationError>>;
|
|
43102
43236
|
success: Scalars['Boolean']['output'];
|
|
43103
43237
|
};
|
|
43238
|
+
export declare type JiraDuplicateJourneyConfigurationInput = {
|
|
43239
|
+
id: Scalars['ID']['input'];
|
|
43240
|
+
};
|
|
43104
43241
|
export declare type JiraDurationField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
43105
43242
|
__typename?: 'JiraDurationField';
|
|
43106
43243
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -44107,13 +44244,15 @@ export declare type JiraGroupGrantTypeValue = Node & {
|
|
|
44107
44244
|
export declare type JiraGroupInput = {
|
|
44108
44245
|
groupName: Scalars['ID']['input'];
|
|
44109
44246
|
};
|
|
44110
|
-
export declare type JiraGroupedListView = JiraIssueSearchViewType & JiraSpreadsheetView & JiraView & Node & {
|
|
44247
|
+
export declare type JiraGroupedListView = JiraIssueSearchViewMetadata & JiraIssueSearchViewType & JiraSpreadsheetView & JiraView & Node & {
|
|
44111
44248
|
__typename?: 'JiraGroupedListView';
|
|
44249
|
+
error?: Maybe<QueryError>;
|
|
44112
44250
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
44113
44251
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
44114
44252
|
groups?: Maybe<JiraSpreadsheetGroupConnection>;
|
|
44115
44253
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
44116
44254
|
id: Scalars['ID']['output'];
|
|
44255
|
+
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
44117
44256
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
44118
44257
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
44119
44258
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
@@ -44224,6 +44363,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
44224
44363
|
archivedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
44225
44364
|
assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
|
|
44226
44365
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
44366
|
+
autodevIssueScopingResult?: Maybe<DevAiIssueScopingResult>;
|
|
44227
44367
|
canBeExported?: Maybe<Scalars['Boolean']['output']>;
|
|
44228
44368
|
childIssues?: Maybe<JiraChildIssues>;
|
|
44229
44369
|
commandPaletteActions?: Maybe<JiraIssueCommandPaletteActionConnection>;
|
|
@@ -45426,7 +45566,7 @@ export declare type JiraIssueSearchStatus = {
|
|
|
45426
45566
|
__typename?: 'JiraIssueSearchStatus';
|
|
45427
45567
|
functions?: Maybe<Array<Maybe<JiraJqlFunctionProcessingStatus>>>;
|
|
45428
45568
|
};
|
|
45429
|
-
export declare type JiraIssueSearchView = Node & {
|
|
45569
|
+
export declare type JiraIssueSearchView = JiraIssueSearchViewMetadata & Node & {
|
|
45430
45570
|
__typename?: 'JiraIssueSearchView';
|
|
45431
45571
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
45432
45572
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
@@ -45501,6 +45641,22 @@ export declare type JiraIssueSearchViewInput = {
|
|
|
45501
45641
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
45502
45642
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
45503
45643
|
};
|
|
45644
|
+
export declare type JiraIssueSearchViewMetadata = {
|
|
45645
|
+
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
45646
|
+
filterId?: Maybe<Scalars['String']['output']>;
|
|
45647
|
+
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
45648
|
+
id: Scalars['ID']['output'];
|
|
45649
|
+
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
45650
|
+
namespace?: Maybe<Scalars['String']['output']>;
|
|
45651
|
+
viewId?: Maybe<Scalars['String']['output']>;
|
|
45652
|
+
};
|
|
45653
|
+
export declare type JiraIssueSearchViewMetadataFieldSetsArgs = {
|
|
45654
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
45655
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
45656
|
+
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
45657
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45658
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
45659
|
+
};
|
|
45504
45660
|
export declare type JiraIssueSearchViewPayload = Payload & {
|
|
45505
45661
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
45506
45662
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -45509,6 +45665,7 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
45509
45665
|
};
|
|
45510
45666
|
export declare type JiraIssueSearchViewResult = JiraIssueSearchView | QueryError;
|
|
45511
45667
|
export declare type JiraIssueSearchViewType = {
|
|
45668
|
+
error?: Maybe<QueryError>;
|
|
45512
45669
|
id: Scalars['ID']['output'];
|
|
45513
45670
|
};
|
|
45514
45671
|
export declare type JiraIssueTransitionComment = {
|
|
@@ -46463,12 +46620,14 @@ export declare type JiraLinkedIssuesInput = {
|
|
|
46463
46620
|
inwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
46464
46621
|
outwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
46465
46622
|
};
|
|
46466
|
-
export declare type JiraListView = JiraIssueSearchViewType & JiraSpreadsheetView & JiraView & Node & {
|
|
46623
|
+
export declare type JiraListView = JiraIssueSearchViewMetadata & JiraIssueSearchViewType & JiraSpreadsheetView & JiraView & Node & {
|
|
46467
46624
|
__typename?: 'JiraListView';
|
|
46625
|
+
error?: Maybe<QueryError>;
|
|
46468
46626
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
46469
46627
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
46470
46628
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
46471
46629
|
id: Scalars['ID']['output'];
|
|
46630
|
+
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
46472
46631
|
issues?: Maybe<JiraIssueConnection>;
|
|
46473
46632
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
46474
46633
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
@@ -46900,6 +47059,7 @@ export declare type JiraMutation = {
|
|
|
46900
47059
|
deleteProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
46901
47060
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
46902
47061
|
disableJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
47062
|
+
duplicateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
46903
47063
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
46904
47064
|
initializeProjectNotificationPreferences?: Maybe<JiraInitializeProjectNotificationPreferencesPayload>;
|
|
46905
47065
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
@@ -47172,6 +47332,10 @@ export declare type JiraMutationDisableJiraJourneyConfigurationArgs = {
|
|
|
47172
47332
|
cloudId: Scalars['ID']['input'];
|
|
47173
47333
|
input: JiraDisableJourneyConfigurationInput;
|
|
47174
47334
|
};
|
|
47335
|
+
export declare type JiraMutationDuplicateJiraJourneyConfigurationArgs = {
|
|
47336
|
+
cloudId: Scalars['ID']['input'];
|
|
47337
|
+
input: JiraDuplicateJourneyConfigurationInput;
|
|
47338
|
+
};
|
|
47175
47339
|
export declare type JiraMutationGrantGlobalPermissionArgs = {
|
|
47176
47340
|
cloudId: Scalars['ID']['input'];
|
|
47177
47341
|
input: JiraGlobalPermissionAddGroupGrantInput;
|
|
@@ -49398,6 +49562,7 @@ export declare type JiraQueryAllGrantTypeKeysArgs = {
|
|
|
49398
49562
|
export declare type JiraQueryAllJiraJourneyConfigurationsArgs = {
|
|
49399
49563
|
cloudId: Scalars['ID']['input'];
|
|
49400
49564
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49565
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
49401
49566
|
};
|
|
49402
49567
|
export declare type JiraQueryAllJiraProjectCategoriesArgs = {
|
|
49403
49568
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -52539,10 +52704,12 @@ export declare type JiraSpreadsheetGroupEdge = {
|
|
|
52539
52704
|
};
|
|
52540
52705
|
export declare type JiraSpreadsheetGroupFieldValue = JiraGoal | JiraOption | JiraPriority | JiraStatus | JiraStoryPoint;
|
|
52541
52706
|
export declare type JiraSpreadsheetView = {
|
|
52707
|
+
error?: Maybe<QueryError>;
|
|
52542
52708
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
52543
52709
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
52544
52710
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
52545
52711
|
id: Scalars['ID']['output'];
|
|
52712
|
+
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
52546
52713
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
52547
52714
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
52548
52715
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
@@ -53069,6 +53236,7 @@ export declare type JiraTeamView = {
|
|
|
53069
53236
|
jiraMemberCount?: Maybe<Scalars['Int']['output']>;
|
|
53070
53237
|
jiraSuppliedAvatar?: Maybe<JiraAvatar>;
|
|
53071
53238
|
jiraSuppliedId: Scalars['ID']['output'];
|
|
53239
|
+
jiraSuppliedIsVerified?: Maybe<Scalars['Boolean']['output']>;
|
|
53072
53240
|
jiraSuppliedName?: Maybe<Scalars['String']['output']>;
|
|
53073
53241
|
jiraSuppliedTeamId: Scalars['String']['output'];
|
|
53074
53242
|
jiraSuppliedVisibility?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -54399,6 +54567,7 @@ export declare enum JiraVersionWarningConfigState {
|
|
|
54399
54567
|
NotApplicable = "NOT_APPLICABLE"
|
|
54400
54568
|
}
|
|
54401
54569
|
export declare type JiraView = {
|
|
54570
|
+
error?: Maybe<QueryError>;
|
|
54402
54571
|
id: Scalars['ID']['output'];
|
|
54403
54572
|
};
|
|
54404
54573
|
export declare type JiraViewScopeInput = {
|
|
@@ -56194,6 +56363,8 @@ export declare type KnowledgeDiscoveryQueryApiKeyPhrasesArgs = {
|
|
|
56194
56363
|
entityAri?: InputMaybe<Scalars['String']['input']>;
|
|
56195
56364
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
56196
56365
|
inputText?: InputMaybe<KnowledgeDiscoveryKeyPhraseInputText>;
|
|
56366
|
+
jiraAssigneeAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
56367
|
+
jiraReporterAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
56197
56368
|
limited?: InputMaybe<Scalars['Boolean']['input']>;
|
|
56198
56369
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
56199
56370
|
};
|
|
@@ -57379,12 +57550,14 @@ export declare type MarketplaceConsolePricingPlan = {
|
|
|
57379
57550
|
__typename?: 'MarketplaceConsolePricingPlan';
|
|
57380
57551
|
currency: MarketplaceConsolePricingCurrency;
|
|
57381
57552
|
expertDiscountOptOut: Scalars['Boolean']['output'];
|
|
57553
|
+
isDefaultPricing?: Maybe<Scalars['Boolean']['output']>;
|
|
57382
57554
|
status: MarketplaceConsolePricingPlanStatus;
|
|
57383
57555
|
tieredPricing: Array<MarketplaceConsolePricingItem>;
|
|
57384
57556
|
};
|
|
57385
57557
|
export declare type MarketplaceConsolePricingPlanInput = {
|
|
57386
57558
|
currency: MarketplaceConsolePricingCurrency;
|
|
57387
57559
|
expertDiscountOptOut: Scalars['Boolean']['input'];
|
|
57560
|
+
isDefaultPricing?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57388
57561
|
status: MarketplaceConsolePricingPlanStatus;
|
|
57389
57562
|
tieredPricing: Array<MarketplaceConsolePricingItemInput>;
|
|
57390
57563
|
};
|
|
@@ -58505,7 +58678,11 @@ export declare enum MercuryEntityType {
|
|
|
58505
58678
|
}
|
|
58506
58679
|
export declare enum MercuryEventType {
|
|
58507
58680
|
Create = "CREATE",
|
|
58681
|
+
CreateUpdate = "CREATE_UPDATE",
|
|
58508
58682
|
Delete = "DELETE",
|
|
58683
|
+
DeleteUpdate = "DELETE_UPDATE",
|
|
58684
|
+
EditUpdate = "EDIT_UPDATE",
|
|
58685
|
+
Export = "EXPORT",
|
|
58509
58686
|
Import = "IMPORT",
|
|
58510
58687
|
Link = "LINK",
|
|
58511
58688
|
Unlink = "UNLINK",
|
|
@@ -62841,6 +63018,7 @@ export declare type Query = {
|
|
|
62841
63018
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
62842
63019
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
62843
63020
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
63021
|
+
devai_autodevIssueScoping?: Maybe<DevAiIssueScopingResult>;
|
|
62844
63022
|
devai_autodevJobFileContents?: Maybe<Scalars['String']['output']>;
|
|
62845
63023
|
devai_autodevJobLogGroups?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
62846
63024
|
devai_autodevJobLogs?: Maybe<DevAiAutodevLogConnection>;
|
|
@@ -62975,6 +63153,7 @@ export declare type Query = {
|
|
|
62975
63153
|
};
|
|
62976
63154
|
export declare type QueryAnchorArgs = {
|
|
62977
63155
|
id: Scalars['String']['input'];
|
|
63156
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
62978
63157
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62979
63158
|
};
|
|
62980
63159
|
export declare type QueryAnchorsArgs = {
|
|
@@ -64035,6 +64214,7 @@ export declare type QueryCustomerStoriesArgs = {
|
|
|
64035
64214
|
};
|
|
64036
64215
|
export declare type QueryCustomerStoryArgs = {
|
|
64037
64216
|
id: Scalars['String']['input'];
|
|
64217
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
64038
64218
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64039
64219
|
};
|
|
64040
64220
|
export declare type QueryDemoMercury_GetByIdArgs = {
|
|
@@ -64089,6 +64269,11 @@ export declare type QueryDevOpsServicesArgs = {
|
|
|
64089
64269
|
export declare type QueryDevOpsServicesByIdArgs = {
|
|
64090
64270
|
ids: Array<Scalars['ID']['input']>;
|
|
64091
64271
|
};
|
|
64272
|
+
export declare type QueryDevai_AutodevIssueScopingArgs = {
|
|
64273
|
+
issueDescription?: InputMaybe<Scalars['String']['input']>;
|
|
64274
|
+
issueId: Scalars['ID']['input'];
|
|
64275
|
+
issueSummary: Scalars['String']['input'];
|
|
64276
|
+
};
|
|
64092
64277
|
export declare type QueryDevai_AutodevJobFileContentsArgs = {
|
|
64093
64278
|
cloudId: Scalars['ID']['input'];
|
|
64094
64279
|
endLine?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -64105,8 +64290,10 @@ export declare type QueryDevai_AutodevJobLogGroupsArgs = {
|
|
|
64105
64290
|
export declare type QueryDevai_AutodevJobLogsArgs = {
|
|
64106
64291
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
64107
64292
|
cloudId: Scalars['ID']['input'];
|
|
64293
|
+
excludePriorities?: InputMaybe<Array<InputMaybe<DevAiAutodevLogPriority>>>;
|
|
64108
64294
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64109
64295
|
jobId: Scalars['ID']['input'];
|
|
64296
|
+
minPriority?: InputMaybe<DevAiAutodevLogPriority>;
|
|
64110
64297
|
};
|
|
64111
64298
|
export declare type QueryDeveloperLogAccessArgs = {
|
|
64112
64299
|
appId: Scalars['ID']['input'];
|
|
@@ -64136,6 +64323,7 @@ export declare type QueryExternal_EntitiesArgs = {
|
|
|
64136
64323
|
};
|
|
64137
64324
|
export declare type QueryFullHubArticleArgs = {
|
|
64138
64325
|
id: Scalars['String']['input'];
|
|
64326
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
64139
64327
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64140
64328
|
};
|
|
64141
64329
|
export declare type QueryFullHubArticlesArgs = {
|
|
@@ -64143,6 +64331,7 @@ export declare type QueryFullHubArticlesArgs = {
|
|
|
64143
64331
|
};
|
|
64144
64332
|
export declare type QueryFullTutorialArgs = {
|
|
64145
64333
|
id: Scalars['String']['input'];
|
|
64334
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
64146
64335
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64147
64336
|
};
|
|
64148
64337
|
export declare type QueryFullTutorialsArgs = {
|
|
@@ -64174,6 +64363,7 @@ export declare type QueryInstallationContextsWithLogAccessArgs = {
|
|
|
64174
64363
|
};
|
|
64175
64364
|
export declare type QueryIpmFlagArgs = {
|
|
64176
64365
|
id: Scalars['String']['input'];
|
|
64366
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
64177
64367
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64178
64368
|
};
|
|
64179
64369
|
export declare type QueryIpmFlagsArgs = {
|
|
@@ -64181,6 +64371,7 @@ export declare type QueryIpmFlagsArgs = {
|
|
|
64181
64371
|
};
|
|
64182
64372
|
export declare type QueryIpmImageModalArgs = {
|
|
64183
64373
|
id: Scalars['String']['input'];
|
|
64374
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
64184
64375
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64185
64376
|
};
|
|
64186
64377
|
export declare type QueryIpmImageModalsArgs = {
|
|
@@ -64188,6 +64379,7 @@ export declare type QueryIpmImageModalsArgs = {
|
|
|
64188
64379
|
};
|
|
64189
64380
|
export declare type QueryIpmInlineDialogArgs = {
|
|
64190
64381
|
id: Scalars['String']['input'];
|
|
64382
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
64191
64383
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64192
64384
|
};
|
|
64193
64385
|
export declare type QueryIpmInlineDialogsArgs = {
|
|
@@ -64195,6 +64387,7 @@ export declare type QueryIpmInlineDialogsArgs = {
|
|
|
64195
64387
|
};
|
|
64196
64388
|
export declare type QueryIpmMultiStepArgs = {
|
|
64197
64389
|
id: Scalars['String']['input'];
|
|
64390
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
64198
64391
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64199
64392
|
};
|
|
64200
64393
|
export declare type QueryIpmMultiStepsArgs = {
|
|
@@ -64307,6 +64500,7 @@ export declare type QueryPolarisViewArrangementInfoArgs = {
|
|
|
64307
64500
|
};
|
|
64308
64501
|
export declare type QueryPricingArgs = {
|
|
64309
64502
|
id: Scalars['String']['input'];
|
|
64503
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
64310
64504
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64311
64505
|
};
|
|
64312
64506
|
export declare type QueryPricingsArgs = {
|
|
@@ -64343,6 +64537,7 @@ export declare type QueryRadar_WorkspaceArgs = {
|
|
|
64343
64537
|
};
|
|
64344
64538
|
export declare type QueryReleaseNoteArgs = {
|
|
64345
64539
|
id: Scalars['String']['input'];
|
|
64540
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
64346
64541
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64347
64542
|
};
|
|
64348
64543
|
export declare type QueryReleaseNotesArgs = {
|
|
@@ -64374,10 +64569,12 @@ export declare type QuerySoftwareBoardsArgs = {
|
|
|
64374
64569
|
};
|
|
64375
64570
|
export declare type QueryTemplateArgs = {
|
|
64376
64571
|
id: Scalars['String']['input'];
|
|
64572
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
64377
64573
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64378
64574
|
};
|
|
64379
64575
|
export declare type QueryTemplateCollectionArgs = {
|
|
64380
64576
|
id: Scalars['String']['input'];
|
|
64577
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
64381
64578
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64382
64579
|
};
|
|
64383
64580
|
export declare type QueryTemplateCollectionsArgs = {
|
|
@@ -64392,6 +64589,7 @@ export declare type QueryTenantContextsArgs = {
|
|
|
64392
64589
|
};
|
|
64393
64590
|
export declare type QueryTopicOverviewArgs = {
|
|
64394
64591
|
id: Scalars['String']['input'];
|
|
64592
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
64395
64593
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64396
64594
|
};
|
|
64397
64595
|
export declare type QueryTopicOverviewsArgs = {
|
|
@@ -72614,6 +72812,7 @@ export declare type UpdateCompassScorecardInput = {
|
|
|
72614
72812
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
72615
72813
|
repositoryValues?: InputMaybe<CompassRepositoryValueInput>;
|
|
72616
72814
|
scoringStrategyType?: InputMaybe<CompassScorecardScoringStrategyType>;
|
|
72815
|
+
state?: InputMaybe<Scalars['String']['input']>;
|
|
72617
72816
|
updateCriteria?: InputMaybe<Array<UpdateCompassScorecardCriteriaInput>>;
|
|
72618
72817
|
};
|
|
72619
72818
|
export declare type UpdateCompassScorecardPayload = Payload & {
|
|
@@ -73255,6 +73454,8 @@ export declare type VirtualAgentGlobalStatisticsProjection = {
|
|
|
73255
73454
|
assistanceRate?: Maybe<Scalars['Float']['output']>;
|
|
73256
73455
|
averageCsat?: Maybe<Scalars['Float']['output']>;
|
|
73257
73456
|
resolutionRate?: Maybe<Scalars['Float']['output']>;
|
|
73457
|
+
totalAiResolved?: Maybe<Scalars['Float']['output']>;
|
|
73458
|
+
totalMatched?: Maybe<Scalars['Float']['output']>;
|
|
73258
73459
|
totalTraffic?: Maybe<Scalars['Int']['output']>;
|
|
73259
73460
|
};
|
|
73260
73461
|
export declare type VirtualAgentIntentProjection = Node & {
|
|
@@ -73469,8 +73670,10 @@ export declare type VirtualAgentSlackChannel = {
|
|
|
73469
73670
|
};
|
|
73470
73671
|
export declare type VirtualAgentStatisticsPercentageChangeProjection = {
|
|
73471
73672
|
__typename?: 'VirtualAgentStatisticsPercentageChangeProjection';
|
|
73673
|
+
aiResolution?: Maybe<Scalars['Float']['output']>;
|
|
73472
73674
|
assistance?: Maybe<Scalars['Float']['output']>;
|
|
73473
73675
|
csat?: Maybe<Scalars['Float']['output']>;
|
|
73676
|
+
match?: Maybe<Scalars['Float']['output']>;
|
|
73474
73677
|
resolution?: Maybe<Scalars['Float']['output']>;
|
|
73475
73678
|
traffic?: Maybe<Scalars['Float']['output']>;
|
|
73476
73679
|
};
|