@forge/cli-shared 6.4.1-next.0 → 6.4.1
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 +18 -0
- package/out/graphql/graphql-types.d.ts +578 -22
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +69 -21
- package/package.json +2 -2
|
@@ -1152,6 +1152,7 @@ export declare type AppLogsWithMetaDataResponse = {
|
|
|
1152
1152
|
__typename?: 'AppLogsWithMetaDataResponse';
|
|
1153
1153
|
appLogs: Array<AppLogsWithMetaData>;
|
|
1154
1154
|
hasNextPage: Scalars['Boolean']['output'];
|
|
1155
|
+
offset?: Maybe<Scalars['Int']['output']>;
|
|
1155
1156
|
totalLogs: Scalars['Int']['output'];
|
|
1156
1157
|
};
|
|
1157
1158
|
export declare type AppNetworkEgressPermission = {
|
|
@@ -1983,21 +1984,9 @@ export declare type BasicBoardFeatureView = Node & {
|
|
|
1983
1984
|
status?: Maybe<Scalars['String']['output']>;
|
|
1984
1985
|
title?: Maybe<Scalars['String']['output']>;
|
|
1985
1986
|
};
|
|
1986
|
-
export declare type BitbucketPrAuthor = {
|
|
1987
|
-
__typename?: 'BitbucketPRAuthor';
|
|
1988
|
-
authorAccountId?: Maybe<Scalars['String']['output']>;
|
|
1989
|
-
};
|
|
1990
1987
|
export declare enum BitbucketPermission {
|
|
1991
1988
|
Admin = "ADMIN"
|
|
1992
1989
|
}
|
|
1993
|
-
export declare type BitbucketPullRequest = Node & {
|
|
1994
|
-
__typename?: 'BitbucketPullRequest';
|
|
1995
|
-
author?: Maybe<BitbucketPrAuthor>;
|
|
1996
|
-
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
1997
|
-
id: Scalars['ID']['output'];
|
|
1998
|
-
state?: Maybe<Scalars['String']['output']>;
|
|
1999
|
-
title: Scalars['String']['output'];
|
|
2000
|
-
};
|
|
2001
1990
|
export declare type BitbucketQuery = {
|
|
2002
1991
|
__typename?: 'BitbucketQuery';
|
|
2003
1992
|
bitbucketRepositories?: Maybe<Array<Maybe<BitbucketRepository>>>;
|
|
@@ -2217,6 +2206,14 @@ export declare type Book = {
|
|
|
2217
2206
|
id?: Maybe<Scalars['String']['output']>;
|
|
2218
2207
|
title?: Maybe<Scalars['String']['output']>;
|
|
2219
2208
|
};
|
|
2209
|
+
export declare type BooleanUserInput = {
|
|
2210
|
+
type: BooleanUserInputType;
|
|
2211
|
+
value?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2212
|
+
variableName: Scalars['String']['input'];
|
|
2213
|
+
};
|
|
2214
|
+
export declare enum BooleanUserInputType {
|
|
2215
|
+
Boolean = "BOOLEAN"
|
|
2216
|
+
}
|
|
2220
2217
|
export declare enum BuiltinPolarisIdeaField {
|
|
2221
2218
|
Archived = "ARCHIVED",
|
|
2222
2219
|
ArchivedBy = "ARCHIVED_BY",
|
|
@@ -5047,7 +5044,7 @@ export declare type CompassCustomSingleSelectFieldFilter = CompassCustomFieldFil
|
|
|
5047
5044
|
export declare type CompassCustomSingleSelectFieldFilterInput = {
|
|
5048
5045
|
comparator?: InputMaybe<CustomSingleSelectFieldInputComparators>;
|
|
5049
5046
|
customFieldId: Scalars['String']['input'];
|
|
5050
|
-
|
|
5047
|
+
values: Array<Scalars['ID']['input']>;
|
|
5051
5048
|
};
|
|
5052
5049
|
export declare type CompassCustomSingleSelectFieldInput = {
|
|
5053
5050
|
annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
|
|
@@ -5092,6 +5089,7 @@ export declare type CompassCustomUserFieldFilter = CompassCustomFieldFilter & {
|
|
|
5092
5089
|
__typename?: 'CompassCustomUserFieldFilter';
|
|
5093
5090
|
comparator: Scalars['String']['output'];
|
|
5094
5091
|
customFieldId: Scalars['String']['output'];
|
|
5092
|
+
users?: Maybe<Array<User>>;
|
|
5095
5093
|
values: Array<Scalars['String']['output']>;
|
|
5096
5094
|
};
|
|
5097
5095
|
export declare type CompassCustomUserFieldFilterInput = {
|
|
@@ -6402,6 +6400,7 @@ export declare type CompassScorecardCriteriaScore = {
|
|
|
6402
6400
|
maxScore: Scalars['Int']['output'];
|
|
6403
6401
|
score: Scalars['Int']['output'];
|
|
6404
6402
|
status?: Maybe<Scalars['String']['output']>;
|
|
6403
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
6405
6404
|
};
|
|
6406
6405
|
export declare type CompassScorecardCriteriaScoreHistory = {
|
|
6407
6406
|
__typename?: 'CompassScorecardCriteriaScoreHistory';
|
|
@@ -6571,9 +6570,11 @@ export declare type CompassScorecardScore = {
|
|
|
6571
6570
|
__typename?: 'CompassScorecardScore';
|
|
6572
6571
|
criteriaScores?: Maybe<Array<CompassScorecardCriteriaScore>>;
|
|
6573
6572
|
maxTotalScore: Scalars['Int']['output'];
|
|
6573
|
+
points?: Maybe<CompassScorecardScorePoints>;
|
|
6574
6574
|
status?: Maybe<CompassScorecardScoreStatus>;
|
|
6575
6575
|
statusDuration?: Maybe<CompassScorecardScoreStatusDuration>;
|
|
6576
6576
|
totalScore: Scalars['Int']['output'];
|
|
6577
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
6577
6578
|
};
|
|
6578
6579
|
export declare type CompassScorecardScoreDurationRange = {
|
|
6579
6580
|
__typename?: 'CompassScorecardScoreDurationRange';
|
|
@@ -6625,6 +6626,11 @@ export declare type CompassScorecardScoreHistoryQueryFilter = {
|
|
|
6625
6626
|
periodicity?: InputMaybe<CompassScorecardScoreHistoryPeriodicity>;
|
|
6626
6627
|
startFrom?: InputMaybe<Scalars['DateTime']['input']>;
|
|
6627
6628
|
};
|
|
6629
|
+
export declare type CompassScorecardScorePoints = {
|
|
6630
|
+
__typename?: 'CompassScorecardScorePoints';
|
|
6631
|
+
maxTotalPoints?: Maybe<Scalars['Int']['output']>;
|
|
6632
|
+
totalPoints?: Maybe<Scalars['Int']['output']>;
|
|
6633
|
+
};
|
|
6628
6634
|
export declare type CompassScorecardScoreQuery = {
|
|
6629
6635
|
componentId: Scalars['ID']['input'];
|
|
6630
6636
|
};
|
|
@@ -16297,6 +16303,37 @@ export declare type CreateIncomingWebhookToken = {
|
|
|
16297
16303
|
name?: Maybe<Scalars['String']['output']>;
|
|
16298
16304
|
value: Scalars['String']['output'];
|
|
16299
16305
|
};
|
|
16306
|
+
export declare type CreateJiraPlaybookInput = {
|
|
16307
|
+
cloudId: Scalars['ID']['input'];
|
|
16308
|
+
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
16309
|
+
name: Scalars['String']['input'];
|
|
16310
|
+
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
16311
|
+
scopeType: JiraPlaybookScopeType;
|
|
16312
|
+
state?: InputMaybe<JiraPlaybookStateField>;
|
|
16313
|
+
steps: Array<CreateJiraPlaybookStepInput>;
|
|
16314
|
+
};
|
|
16315
|
+
export declare type CreateJiraPlaybookPayload = Payload & {
|
|
16316
|
+
__typename?: 'CreateJiraPlaybookPayload';
|
|
16317
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16318
|
+
playbook?: Maybe<JiraPlaybook>;
|
|
16319
|
+
success: Scalars['Boolean']['output'];
|
|
16320
|
+
};
|
|
16321
|
+
export declare type CreateJiraPlaybookStepInput = {
|
|
16322
|
+
description?: InputMaybe<Scalars['JSON']['input']>;
|
|
16323
|
+
name: Scalars['String']['input'];
|
|
16324
|
+
ruleId?: InputMaybe<Scalars['String']['input']>;
|
|
16325
|
+
type: JiraPlaybookStepType;
|
|
16326
|
+
};
|
|
16327
|
+
export declare type CreateJiraPlaybookStepRunInput = {
|
|
16328
|
+
playbookInstanceStepAri: Scalars['ID']['input'];
|
|
16329
|
+
userInputs?: InputMaybe<Array<UserInput>>;
|
|
16330
|
+
};
|
|
16331
|
+
export declare type CreateJiraPlaybookStepRunPayload = Payload & {
|
|
16332
|
+
__typename?: 'CreateJiraPlaybookStepRunPayload';
|
|
16333
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16334
|
+
playbookInstanceStep?: Maybe<JiraPlaybookInstanceStep>;
|
|
16335
|
+
success: Scalars['Boolean']['output'];
|
|
16336
|
+
};
|
|
16300
16337
|
export declare type CreatePolarisCommentInput = {
|
|
16301
16338
|
content?: InputMaybe<Scalars['JSON']['input']>;
|
|
16302
16339
|
kind?: InputMaybe<PolarisCommentKind>;
|
|
@@ -17706,6 +17743,15 @@ export declare type DeleteEventSourcePayload = Payload & {
|
|
|
17706
17743
|
errors?: Maybe<Array<MutationError>>;
|
|
17707
17744
|
success: Scalars['Boolean']['output'];
|
|
17708
17745
|
};
|
|
17746
|
+
export declare type DeleteJiraPlaybookInput = {
|
|
17747
|
+
id: Scalars['ID']['input'];
|
|
17748
|
+
};
|
|
17749
|
+
export declare type DeleteJiraPlaybookPayload = Payload & {
|
|
17750
|
+
__typename?: 'DeleteJiraPlaybookPayload';
|
|
17751
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17752
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
17753
|
+
success: Scalars['Boolean']['output'];
|
|
17754
|
+
};
|
|
17709
17755
|
export declare type DeletePolarisIdeaTemplateInput = {
|
|
17710
17756
|
id: Scalars['ID']['input'];
|
|
17711
17757
|
project: Scalars['ID']['input'];
|
|
@@ -19948,6 +19994,7 @@ export declare type EcosystemMutation = {
|
|
|
19948
19994
|
updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
|
|
19949
19995
|
updateAppOAuthClient: EcosystemUpdateAppOAuthClientResult;
|
|
19950
19996
|
updateAppOwnership?: Maybe<UpdateAppOwnershipResponsePayload>;
|
|
19997
|
+
updateInstallationRemoteRegion?: Maybe<EcosystemUpdateInstallationRemoteRegionResponse>;
|
|
19951
19998
|
updateUserInstallationRules?: Maybe<UserInstallationRulesPayload>;
|
|
19952
19999
|
};
|
|
19953
20000
|
export declare type EcosystemMutationAddAppContributorArgs = {
|
|
@@ -19992,6 +20039,9 @@ export declare type EcosystemMutationUpdateAppOAuthClientArgs = {
|
|
|
19992
20039
|
export declare type EcosystemMutationUpdateAppOwnershipArgs = {
|
|
19993
20040
|
input: UpdateAppOwnershipInput;
|
|
19994
20041
|
};
|
|
20042
|
+
export declare type EcosystemMutationUpdateInstallationRemoteRegionArgs = {
|
|
20043
|
+
input: EcosystemUpdateInstallationRemoteRegionInput;
|
|
20044
|
+
};
|
|
19995
20045
|
export declare type EcosystemMutationUpdateUserInstallationRulesArgs = {
|
|
19996
20046
|
input: UpdateUserInstallationRulesInput;
|
|
19997
20047
|
};
|
|
@@ -20106,6 +20156,16 @@ export declare type EcosystemUpdateAppOAuthClientResult = Payload & {
|
|
|
20106
20156
|
errors?: Maybe<Array<MutationError>>;
|
|
20107
20157
|
success: Scalars['Boolean']['output'];
|
|
20108
20158
|
};
|
|
20159
|
+
export declare type EcosystemUpdateInstallationRemoteRegionInput = {
|
|
20160
|
+
allowCleanRegion?: InputMaybe<Scalars['Boolean']['input']>;
|
|
20161
|
+
installationId: Scalars['ID']['input'];
|
|
20162
|
+
remoteInstallationRegion?: InputMaybe<Scalars['String']['input']>;
|
|
20163
|
+
};
|
|
20164
|
+
export declare type EcosystemUpdateInstallationRemoteRegionResponse = Payload & {
|
|
20165
|
+
__typename?: 'EcosystemUpdateInstallationRemoteRegionResponse';
|
|
20166
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20167
|
+
success: Scalars['Boolean']['output'];
|
|
20168
|
+
};
|
|
20109
20169
|
export declare type EditSprintInput = {
|
|
20110
20170
|
boardId: Scalars['ID']['input'];
|
|
20111
20171
|
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -20205,7 +20265,7 @@ export declare type Extension = {
|
|
|
20205
20265
|
scopes: Array<Scalars['String']['output']>;
|
|
20206
20266
|
securityPolicies?: Maybe<Array<AppSecurityPoliciesPermissionExtension>>;
|
|
20207
20267
|
type: Scalars['String']['output'];
|
|
20208
|
-
userAccess
|
|
20268
|
+
userAccess?: Maybe<UserAccess>;
|
|
20209
20269
|
versionId: Scalars['ID']['output'];
|
|
20210
20270
|
};
|
|
20211
20271
|
export declare type ExtensionDataClassificationPolicyDecisionArgs = {
|
|
@@ -25640,6 +25700,7 @@ export declare type GraphStore = {
|
|
|
25640
25700
|
appInstallationAssociatedToOperationsWorkspaceRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection>;
|
|
25641
25701
|
appInstallationAssociatedToSecurityWorkspaceInverseRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection>;
|
|
25642
25702
|
appInstallationAssociatedToSecurityWorkspaceRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection>;
|
|
25703
|
+
atlasGoalHasContributor?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorConnection>;
|
|
25643
25704
|
atlasGoalHasContributorInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorInverseConnection>;
|
|
25644
25705
|
atlasGoalHasFollower?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerConnection>;
|
|
25645
25706
|
atlasGoalHasFollowerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerInverseConnection>;
|
|
@@ -25977,7 +26038,9 @@ export declare type GraphStore = {
|
|
|
25977
26038
|
sprintRetrospectiveWhiteboardInverseRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
25978
26039
|
sprintRetrospectiveWhiteboardRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
25979
26040
|
teamOwnsComponent?: Maybe<GraphStoreSimplifiedTeamOwnsComponentConnection>;
|
|
26041
|
+
teamOwnsComponentInverse?: Maybe<GraphStoreSimplifiedTeamOwnsComponentInverseConnection>;
|
|
25980
26042
|
teamWorksOnProject?: Maybe<GraphStoreSimplifiedTeamWorksOnProjectConnection>;
|
|
26043
|
+
teamWorksOnProjectInverse?: Maybe<GraphStoreSimplifiedTeamWorksOnProjectInverseConnection>;
|
|
25981
26044
|
teamWorksOnProjectInverseRelationship?: Maybe<GraphStoreFullTeamWorksOnProjectConnection>;
|
|
25982
26045
|
teamWorksOnProjectRelationship?: Maybe<GraphStoreFullTeamWorksOnProjectConnection>;
|
|
25983
26046
|
testPerfhammerMaterializationA?: Maybe<GraphStoreSimplifiedTestPerfhammerMaterializationAConnection>;
|
|
@@ -26005,6 +26068,7 @@ export declare type GraphStore = {
|
|
|
26005
26068
|
userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
|
|
26006
26069
|
userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
|
|
26007
26070
|
userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
|
|
26071
|
+
userIsInTeam?: Maybe<GraphStoreSimplifiedUserIsInTeamConnection>;
|
|
26008
26072
|
userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
|
|
26009
26073
|
userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
|
|
26010
26074
|
userOwnsComponentInverse?: Maybe<GraphStoreSimplifiedUserOwnsComponentInverseConnection>;
|
|
@@ -26074,6 +26138,13 @@ export declare type GraphStoreAppInstallationAssociatedToSecurityWorkspaceRelati
|
|
|
26074
26138
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26075
26139
|
id: Scalars['ID']['input'];
|
|
26076
26140
|
};
|
|
26141
|
+
export declare type GraphStoreAtlasGoalHasContributorArgs = {
|
|
26142
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
26143
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26144
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26145
|
+
id: Scalars['ID']['input'];
|
|
26146
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasContributorSortInput>;
|
|
26147
|
+
};
|
|
26077
26148
|
export declare type GraphStoreAtlasGoalHasContributorInverseArgs = {
|
|
26078
26149
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26079
26150
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -26124,8 +26195,7 @@ export declare type GraphStoreAtlasGoalHasSubAtlasGoalInverseArgs = {
|
|
|
26124
26195
|
sort?: InputMaybe<GraphStoreAtlasGoalHasSubAtlasGoalSortInput>;
|
|
26125
26196
|
};
|
|
26126
26197
|
export declare type GraphStoreAtlasHomeFeedArgs = {
|
|
26127
|
-
|
|
26128
|
-
userId: Scalars['ID']['input'];
|
|
26198
|
+
container_ids: Array<Scalars['ID']['input']>;
|
|
26129
26199
|
};
|
|
26130
26200
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalArgs = {
|
|
26131
26201
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -28208,6 +28278,13 @@ export declare type GraphStoreTeamOwnsComponentArgs = {
|
|
|
28208
28278
|
id: Scalars['ID']['input'];
|
|
28209
28279
|
sort?: InputMaybe<GraphStoreTeamOwnsComponentSortInput>;
|
|
28210
28280
|
};
|
|
28281
|
+
export declare type GraphStoreTeamOwnsComponentInverseArgs = {
|
|
28282
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28283
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28284
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28285
|
+
id: Scalars['ID']['input'];
|
|
28286
|
+
sort?: InputMaybe<GraphStoreTeamOwnsComponentSortInput>;
|
|
28287
|
+
};
|
|
28211
28288
|
export declare type GraphStoreTeamWorksOnProjectArgs = {
|
|
28212
28289
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28213
28290
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28215,6 +28292,13 @@ export declare type GraphStoreTeamWorksOnProjectArgs = {
|
|
|
28215
28292
|
id: Scalars['ID']['input'];
|
|
28216
28293
|
sort?: InputMaybe<GraphStoreTeamWorksOnProjectSortInput>;
|
|
28217
28294
|
};
|
|
28295
|
+
export declare type GraphStoreTeamWorksOnProjectInverseArgs = {
|
|
28296
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28297
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28298
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28299
|
+
id: Scalars['ID']['input'];
|
|
28300
|
+
sort?: InputMaybe<GraphStoreTeamWorksOnProjectSortInput>;
|
|
28301
|
+
};
|
|
28218
28302
|
export declare type GraphStoreTeamWorksOnProjectInverseRelationshipArgs = {
|
|
28219
28303
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28220
28304
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -28382,6 +28466,13 @@ export declare type GraphStoreUserHasTopProjectInverseArgs = {
|
|
|
28382
28466
|
id: Scalars['ID']['input'];
|
|
28383
28467
|
sort?: InputMaybe<GraphStoreUserHasTopProjectSortInput>;
|
|
28384
28468
|
};
|
|
28469
|
+
export declare type GraphStoreUserIsInTeamArgs = {
|
|
28470
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28471
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28472
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28473
|
+
id: Scalars['ID']['input'];
|
|
28474
|
+
sort?: InputMaybe<GraphStoreUserIsInTeamSortInput>;
|
|
28475
|
+
};
|
|
28385
28476
|
export declare type GraphStoreUserIsInTeamInverseArgs = {
|
|
28386
28477
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28387
28478
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28722,7 +28813,7 @@ export declare type GraphStoreAtlasGoalHasOwnerSortInput = {
|
|
|
28722
28813
|
export declare type GraphStoreAtlasGoalHasSubAtlasGoalSortInput = {
|
|
28723
28814
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28724
28815
|
};
|
|
28725
|
-
export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = JiraIssue | TownsquareGoal | TownsquareProject;
|
|
28816
|
+
export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
|
|
28726
28817
|
export declare type GraphStoreAtlasHomeQueryConnection = {
|
|
28727
28818
|
__typename?: 'GraphStoreAtlasHomeQueryConnection';
|
|
28728
28819
|
nodes: Array<GraphStoreAtlasHomeQueryNode>;
|
|
@@ -29821,7 +29912,7 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
29821
29912
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
29822
29913
|
id: Scalars['ID']['output'];
|
|
29823
29914
|
};
|
|
29824
|
-
export declare type GraphStoreCypherQueryToNodeUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
29915
|
+
export declare type GraphStoreCypherQueryToNodeUnion = ConfluenceBlogPost | ConfluencePage | DevOpsPullRequestDetails | JiraIssue;
|
|
29825
29916
|
export declare type GraphStoreDateFilterInput = {
|
|
29826
29917
|
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
29827
29918
|
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -32994,8 +33085,10 @@ export declare type GraphStoreFullTeamWorksOnProjectNode = Node & {
|
|
|
32994
33085
|
};
|
|
32995
33086
|
export declare type GraphStoreFullTeamWorksOnProjectStartNode = {
|
|
32996
33087
|
__typename?: 'GraphStoreFullTeamWorksOnProjectStartNode';
|
|
33088
|
+
data?: Maybe<GraphStoreFullTeamWorksOnProjectStartUnion>;
|
|
32997
33089
|
id: Scalars['ID']['output'];
|
|
32998
33090
|
};
|
|
33091
|
+
export declare type GraphStoreFullTeamWorksOnProjectStartUnion = TeamV2;
|
|
32999
33092
|
export declare type GraphStoreFullTestPerfhammerMaterializationAConnection = HasPageInfo & HasTotal & {
|
|
33000
33093
|
__typename?: 'GraphStoreFullTestPerfhammerMaterializationAConnection';
|
|
33001
33094
|
edges: Array<Maybe<GraphStoreFullTestPerfhammerMaterializationAEdge>>;
|
|
@@ -34479,6 +34572,19 @@ export declare type GraphStoreShipit57IssueRecursiveLinksToPageSortInput = {
|
|
|
34479
34572
|
export declare type GraphStoreShipit57PullRequestLinksToPageSortInput = {
|
|
34480
34573
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34481
34574
|
};
|
|
34575
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasContributorConnection = HasPageInfo & {
|
|
34576
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasContributorConnection';
|
|
34577
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasContributorEdge>>>;
|
|
34578
|
+
pageInfo: PageInfo;
|
|
34579
|
+
};
|
|
34580
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasContributorEdge = {
|
|
34581
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasContributorEdge';
|
|
34582
|
+
createdAt: Scalars['DateTime']['output'];
|
|
34583
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
34584
|
+
id: Scalars['ID']['output'];
|
|
34585
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
34586
|
+
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorUnion>;
|
|
34587
|
+
};
|
|
34482
34588
|
export declare type GraphStoreSimplifiedAtlasGoalHasContributorInverseConnection = HasPageInfo & {
|
|
34483
34589
|
__typename?: 'GraphStoreSimplifiedAtlasGoalHasContributorInverseConnection';
|
|
34484
34590
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasContributorInverseEdge>>>;
|
|
@@ -34493,6 +34599,7 @@ export declare type GraphStoreSimplifiedAtlasGoalHasContributorInverseEdge = {
|
|
|
34493
34599
|
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorInverseUnion>;
|
|
34494
34600
|
};
|
|
34495
34601
|
export declare type GraphStoreSimplifiedAtlasGoalHasContributorInverseUnion = TownsquareGoal;
|
|
34602
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasContributorUnion = TeamV2;
|
|
34496
34603
|
export declare type GraphStoreSimplifiedAtlasGoalHasFollowerConnection = HasPageInfo & {
|
|
34497
34604
|
__typename?: 'GraphStoreSimplifiedAtlasGoalHasFollowerConnection';
|
|
34498
34605
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerEdge>>>;
|
|
@@ -34660,7 +34767,7 @@ export declare type GraphStoreSimplifiedAtlasProjectHasContributorInverseEdge =
|
|
|
34660
34767
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasContributorInverseUnion>;
|
|
34661
34768
|
};
|
|
34662
34769
|
export declare type GraphStoreSimplifiedAtlasProjectHasContributorInverseUnion = TownsquareProject;
|
|
34663
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasContributorUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
34770
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasContributorUnion = AppUser | AtlassianAccountUser | CustomerUser | TeamV2;
|
|
34664
34771
|
export declare type GraphStoreSimplifiedAtlasProjectHasFollowerConnection = HasPageInfo & {
|
|
34665
34772
|
__typename?: 'GraphStoreSimplifiedAtlasProjectHasFollowerConnection';
|
|
34666
34773
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerEdge>>>;
|
|
@@ -37038,6 +37145,20 @@ export declare type GraphStoreSimplifiedTeamOwnsComponentEdge = {
|
|
|
37038
37145
|
lastUpdated: Scalars['DateTime']['output'];
|
|
37039
37146
|
node?: Maybe<GraphStoreSimplifiedTeamOwnsComponentUnion>;
|
|
37040
37147
|
};
|
|
37148
|
+
export declare type GraphStoreSimplifiedTeamOwnsComponentInverseConnection = HasPageInfo & {
|
|
37149
|
+
__typename?: 'GraphStoreSimplifiedTeamOwnsComponentInverseConnection';
|
|
37150
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamOwnsComponentInverseEdge>>>;
|
|
37151
|
+
pageInfo: PageInfo;
|
|
37152
|
+
};
|
|
37153
|
+
export declare type GraphStoreSimplifiedTeamOwnsComponentInverseEdge = {
|
|
37154
|
+
__typename?: 'GraphStoreSimplifiedTeamOwnsComponentInverseEdge';
|
|
37155
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37156
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37157
|
+
id: Scalars['ID']['output'];
|
|
37158
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37159
|
+
node?: Maybe<GraphStoreSimplifiedTeamOwnsComponentInverseUnion>;
|
|
37160
|
+
};
|
|
37161
|
+
export declare type GraphStoreSimplifiedTeamOwnsComponentInverseUnion = TeamV2;
|
|
37041
37162
|
export declare type GraphStoreSimplifiedTeamOwnsComponentUnion = CompassComponent;
|
|
37042
37163
|
export declare type GraphStoreSimplifiedTeamWorksOnProjectConnection = HasPageInfo & HasTotal & {
|
|
37043
37164
|
__typename?: 'GraphStoreSimplifiedTeamWorksOnProjectConnection';
|
|
@@ -37054,6 +37175,22 @@ export declare type GraphStoreSimplifiedTeamWorksOnProjectEdge = {
|
|
|
37054
37175
|
lastUpdated: Scalars['DateTime']['output'];
|
|
37055
37176
|
node?: Maybe<GraphStoreSimplifiedTeamWorksOnProjectUnion>;
|
|
37056
37177
|
};
|
|
37178
|
+
export declare type GraphStoreSimplifiedTeamWorksOnProjectInverseConnection = HasPageInfo & HasTotal & {
|
|
37179
|
+
__typename?: 'GraphStoreSimplifiedTeamWorksOnProjectInverseConnection';
|
|
37180
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamWorksOnProjectInverseEdge>>>;
|
|
37181
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
37182
|
+
pageInfo: PageInfo;
|
|
37183
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
37184
|
+
};
|
|
37185
|
+
export declare type GraphStoreSimplifiedTeamWorksOnProjectInverseEdge = {
|
|
37186
|
+
__typename?: 'GraphStoreSimplifiedTeamWorksOnProjectInverseEdge';
|
|
37187
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37188
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37189
|
+
id: Scalars['ID']['output'];
|
|
37190
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37191
|
+
node?: Maybe<GraphStoreSimplifiedTeamWorksOnProjectInverseUnion>;
|
|
37192
|
+
};
|
|
37193
|
+
export declare type GraphStoreSimplifiedTeamWorksOnProjectInverseUnion = TeamV2;
|
|
37057
37194
|
export declare type GraphStoreSimplifiedTeamWorksOnProjectUnion = JiraProject;
|
|
37058
37195
|
export declare type GraphStoreSimplifiedTestPerfhammerMaterializationAConnection = HasPageInfo & HasTotal & {
|
|
37059
37196
|
__typename?: 'GraphStoreSimplifiedTestPerfhammerMaterializationAConnection';
|
|
@@ -37277,6 +37414,19 @@ export declare type GraphStoreSimplifiedUserHasTopProjectInverseEdge = {
|
|
|
37277
37414
|
};
|
|
37278
37415
|
export declare type GraphStoreSimplifiedUserHasTopProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
37279
37416
|
export declare type GraphStoreSimplifiedUserHasTopProjectUnion = JiraProject;
|
|
37417
|
+
export declare type GraphStoreSimplifiedUserIsInTeamConnection = HasPageInfo & {
|
|
37418
|
+
__typename?: 'GraphStoreSimplifiedUserIsInTeamConnection';
|
|
37419
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserIsInTeamEdge>>>;
|
|
37420
|
+
pageInfo: PageInfo;
|
|
37421
|
+
};
|
|
37422
|
+
export declare type GraphStoreSimplifiedUserIsInTeamEdge = {
|
|
37423
|
+
__typename?: 'GraphStoreSimplifiedUserIsInTeamEdge';
|
|
37424
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37425
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37426
|
+
id: Scalars['ID']['output'];
|
|
37427
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37428
|
+
node?: Maybe<GraphStoreSimplifiedUserIsInTeamUnion>;
|
|
37429
|
+
};
|
|
37280
37430
|
export declare type GraphStoreSimplifiedUserIsInTeamInverseConnection = HasPageInfo & {
|
|
37281
37431
|
__typename?: 'GraphStoreSimplifiedUserIsInTeamInverseConnection';
|
|
37282
37432
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserIsInTeamInverseEdge>>>;
|
|
@@ -37291,6 +37441,7 @@ export declare type GraphStoreSimplifiedUserIsInTeamInverseEdge = {
|
|
|
37291
37441
|
node?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseUnion>;
|
|
37292
37442
|
};
|
|
37293
37443
|
export declare type GraphStoreSimplifiedUserIsInTeamInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
37444
|
+
export declare type GraphStoreSimplifiedUserIsInTeamUnion = TeamV2;
|
|
37294
37445
|
export declare type GraphStoreSimplifiedUserOwnsComponentConnection = HasPageInfo & HasTotal & {
|
|
37295
37446
|
__typename?: 'GraphStoreSimplifiedUserOwnsComponentConnection';
|
|
37296
37447
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsComponentEdge>>>;
|
|
@@ -38387,8 +38538,10 @@ export declare type GrowthUnifiedProfilePaidChannelContextByProduct = {
|
|
|
38387
38538
|
trello?: Maybe<GrowthUnifiedProfilePaidChannelContext>;
|
|
38388
38539
|
};
|
|
38389
38540
|
export declare enum GrowthUnifiedProfileProduct {
|
|
38541
|
+
Compass = "compass",
|
|
38390
38542
|
Confluence = "confluence",
|
|
38391
38543
|
Jira = "jira",
|
|
38544
|
+
Jpd = "jpd",
|
|
38392
38545
|
Jsm = "jsm",
|
|
38393
38546
|
Jwm = "jwm",
|
|
38394
38547
|
Trello = "trello"
|
|
@@ -38624,6 +38777,7 @@ export declare type HelpCenter = Node & {
|
|
|
38624
38777
|
announcements?: Maybe<HelpCenterAnnouncements>;
|
|
38625
38778
|
helpCenterBranding?: Maybe<HelpCenterBranding>;
|
|
38626
38779
|
hoistedProjectId?: Maybe<Scalars['ID']['output']>;
|
|
38780
|
+
hoistedProjectKey?: Maybe<Scalars['String']['output']>;
|
|
38627
38781
|
homePageLayout?: Maybe<HelpCenterHomePageLayout>;
|
|
38628
38782
|
id: Scalars['ID']['output'];
|
|
38629
38783
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
@@ -41234,6 +41388,27 @@ export declare type JiraAiEnablementIssueInput = {
|
|
|
41234
41388
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
41235
41389
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
41236
41390
|
};
|
|
41391
|
+
export declare type JiraAlignAggMercuryProjectStatusDto = MercuryProjectStatus & {
|
|
41392
|
+
__typename?: 'JiraAlignAggMercuryProjectStatusDto';
|
|
41393
|
+
mercuryColor?: Maybe<MercuryProjectStatusColor>;
|
|
41394
|
+
mercuryName?: Maybe<Scalars['String']['output']>;
|
|
41395
|
+
};
|
|
41396
|
+
export declare type JiraAlignAggProject = HasMercuryProjectFields & Node & {
|
|
41397
|
+
__typename?: 'JiraAlignAggProject';
|
|
41398
|
+
id: Scalars['ID']['output'];
|
|
41399
|
+
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
41400
|
+
mercuryProjectKey?: Maybe<Scalars['String']['output']>;
|
|
41401
|
+
mercuryProjectName?: Maybe<Scalars['String']['output']>;
|
|
41402
|
+
mercuryProjectOwner?: Maybe<User>;
|
|
41403
|
+
mercuryProjectOwnerId?: Maybe<Scalars['String']['output']>;
|
|
41404
|
+
mercuryProjectProviderName?: Maybe<Scalars['String']['output']>;
|
|
41405
|
+
mercuryProjectStatus?: Maybe<MercuryProjectStatus>;
|
|
41406
|
+
mercuryProjectUrl?: Maybe<Scalars['URL']['output']>;
|
|
41407
|
+
mercuryTargetDate?: Maybe<Scalars['String']['output']>;
|
|
41408
|
+
mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
41409
|
+
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
41410
|
+
mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
|
|
41411
|
+
};
|
|
41237
41412
|
export declare type JiraAnnouncementBanner = Node & {
|
|
41238
41413
|
__typename?: 'JiraAnnouncementBanner';
|
|
41239
41414
|
id: Scalars['ID']['output'];
|
|
@@ -43979,6 +44154,7 @@ export declare type JiraDevOpsMutation = {
|
|
|
43979
44154
|
dismissInContextConfigPrompt?: Maybe<JiraDismissInContextConfigPromptPayload>;
|
|
43980
44155
|
modifyAutodevCode?: Maybe<JiraAutodevBasicPayload>;
|
|
43981
44156
|
optoutOfDevOpsIssuePanelNotConnectedState?: Maybe<JiraOptoutDevOpsIssuePanelNotConnectedPayload>;
|
|
44157
|
+
pauseAutodevCodeGeneration?: Maybe<JiraAutodevBasicPayload>;
|
|
43982
44158
|
regenerateAutodevPlan?: Maybe<JiraAutodevBasicPayload>;
|
|
43983
44159
|
removeJiraBitbucketWorkspaceConnection?: Maybe<JiraRemoveJiraBitbucketWorkspaceConnectionPayload>;
|
|
43984
44160
|
resumeAutodevJob?: Maybe<JiraAutodevBasicPayload>;
|
|
@@ -44054,6 +44230,10 @@ export declare type JiraDevOpsMutationModifyAutodevCodeArgs = {
|
|
|
44054
44230
|
export declare type JiraDevOpsMutationOptoutOfDevOpsIssuePanelNotConnectedStateArgs = {
|
|
44055
44231
|
input: JiraOptoutDevOpsIssuePanelNotConnectedInput;
|
|
44056
44232
|
};
|
|
44233
|
+
export declare type JiraDevOpsMutationPauseAutodevCodeGenerationArgs = {
|
|
44234
|
+
issueAri: Scalars['ID']['input'];
|
|
44235
|
+
jobId: Scalars['ID']['input'];
|
|
44236
|
+
};
|
|
44057
44237
|
export declare type JiraDevOpsMutationRegenerateAutodevPlanArgs = {
|
|
44058
44238
|
issueAri: Scalars['ID']['input'];
|
|
44059
44239
|
jobId: Scalars['ID']['input'];
|
|
@@ -44553,6 +44733,16 @@ export declare type JiraFieldType = {
|
|
|
44553
44733
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
44554
44734
|
name: Scalars['String']['output'];
|
|
44555
44735
|
};
|
|
44736
|
+
export declare type JiraFieldTypeConnection = {
|
|
44737
|
+
__typename?: 'JiraFieldTypeConnection';
|
|
44738
|
+
edges?: Maybe<Array<Maybe<JiraFieldTypeEdge>>>;
|
|
44739
|
+
pageInfo: PageInfo;
|
|
44740
|
+
};
|
|
44741
|
+
export declare type JiraFieldTypeEdge = {
|
|
44742
|
+
__typename?: 'JiraFieldTypeEdge';
|
|
44743
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44744
|
+
node?: Maybe<JiraProjectFieldsPageFieldType>;
|
|
44745
|
+
};
|
|
44556
44746
|
export declare type JiraFieldTypeGroup = {
|
|
44557
44747
|
__typename?: 'JiraFieldTypeGroup';
|
|
44558
44748
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -45375,6 +45565,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
45375
45565
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
45376
45566
|
autodevIssueScopingResult?: Maybe<DevAiIssueScopingResult>;
|
|
45377
45567
|
canBeExported?: Maybe<Scalars['Boolean']['output']>;
|
|
45568
|
+
canHaveChildIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
45378
45569
|
childIssues?: Maybe<JiraChildIssues>;
|
|
45379
45570
|
commandPaletteActions?: Maybe<JiraIssueCommandPaletteActionConnection>;
|
|
45380
45571
|
commandPaletteFields?: Maybe<JiraIssueFieldConnection>;
|
|
@@ -45473,6 +45664,9 @@ export declare type JiraIssueAttachmentsArgs = {
|
|
|
45473
45664
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
45474
45665
|
sortBy?: InputMaybe<JiraAttachmentSortInput>;
|
|
45475
45666
|
};
|
|
45667
|
+
export declare type JiraIssueCanHaveChildIssuesArgs = {
|
|
45668
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
45669
|
+
};
|
|
45476
45670
|
export declare type JiraIssueCommandPaletteActionsArgs = {
|
|
45477
45671
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45478
45672
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -45492,6 +45686,7 @@ export declare type JiraIssueCommentsArgs = {
|
|
|
45492
45686
|
beforeTarget?: InputMaybe<Scalars['Int']['input']>;
|
|
45493
45687
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45494
45688
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
45689
|
+
rootCommentsOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
45495
45690
|
sortBy?: InputMaybe<JiraCommentSortInput>;
|
|
45496
45691
|
targetId?: InputMaybe<Scalars['String']['input']>;
|
|
45497
45692
|
};
|
|
@@ -48149,6 +48344,7 @@ export declare type JiraMutation = {
|
|
|
48149
48344
|
removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
|
|
48150
48345
|
renameNavigationItem?: Maybe<JiraRenameNavigationItemPayload>;
|
|
48151
48346
|
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
48347
|
+
replaceSpreadsheetViewFieldSets?: Maybe<JiraSpreadsheetViewPayload>;
|
|
48152
48348
|
saveBusinessBoardSettings?: Maybe<JiraWorkManagementBoardSettingsPayload>;
|
|
48153
48349
|
saveVersionDetailsCollapsedUis?: Maybe<JiraVersionDetailsCollapsedUisPayload>;
|
|
48154
48350
|
saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
|
|
@@ -48186,6 +48382,8 @@ export declare type JiraMutation = {
|
|
|
48186
48382
|
updateIssueTypeField?: Maybe<JiraIssueTypeFieldPayload>;
|
|
48187
48383
|
updateJiraJourneyActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
48188
48384
|
updateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
48385
|
+
updateJiraJourneyName?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
48386
|
+
updateJiraJourneyParentIssueConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
48189
48387
|
updateJiraJourneyTriggerConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
48190
48388
|
updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
48191
48389
|
updateJiraVersionApproverDeclineReason?: Maybe<JiraVersionUpdateApproverDeclineReasonPayload>;
|
|
@@ -48498,6 +48696,10 @@ export declare type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
|
|
|
48498
48696
|
fieldSetsInput?: InputMaybe<JiraFieldSetsMutationInput>;
|
|
48499
48697
|
id: Scalars['ID']['input'];
|
|
48500
48698
|
};
|
|
48699
|
+
export declare type JiraMutationReplaceSpreadsheetViewFieldSetsArgs = {
|
|
48700
|
+
fieldSetsInput?: InputMaybe<JiraFieldSetsMutationInput>;
|
|
48701
|
+
id: Scalars['ID']['input'];
|
|
48702
|
+
};
|
|
48501
48703
|
export declare type JiraMutationSaveBusinessBoardSettingsArgs = {
|
|
48502
48704
|
input: JiraWorkManagementBoardSettingsInput;
|
|
48503
48705
|
};
|
|
@@ -48628,6 +48830,14 @@ export declare type JiraMutationUpdateJiraJourneyConfigurationArgs = {
|
|
|
48628
48830
|
cloudId: Scalars['ID']['input'];
|
|
48629
48831
|
input: JiraUpdateJourneyConfigurationInput;
|
|
48630
48832
|
};
|
|
48833
|
+
export declare type JiraMutationUpdateJiraJourneyNameArgs = {
|
|
48834
|
+
cloudId: Scalars['ID']['input'];
|
|
48835
|
+
input: JiraUpdateJourneyNameInput;
|
|
48836
|
+
};
|
|
48837
|
+
export declare type JiraMutationUpdateJiraJourneyParentIssueConfigurationArgs = {
|
|
48838
|
+
cloudId: Scalars['ID']['input'];
|
|
48839
|
+
input: JiraUpdateJourneyParentIssueConfigurationInput;
|
|
48840
|
+
};
|
|
48631
48841
|
export declare type JiraMutationUpdateJiraJourneyTriggerConfigurationArgs = {
|
|
48632
48842
|
cloudId: Scalars['ID']['input'];
|
|
48633
48843
|
input: JiraUpdateJourneyTriggerConfigurationInput;
|
|
@@ -49638,16 +49848,172 @@ export declare type JiraPlatformAttachmentSearchViewContextArgs = {
|
|
|
49638
49848
|
export declare type JiraPlatformComment = JiraComment & Node & {
|
|
49639
49849
|
__typename?: 'JiraPlatformComment';
|
|
49640
49850
|
author?: Maybe<User>;
|
|
49851
|
+
childComments?: Maybe<JiraCommentConnection>;
|
|
49641
49852
|
commentId: Scalars['ID']['output'];
|
|
49642
49853
|
created: Scalars['DateTime']['output'];
|
|
49643
49854
|
id: Scalars['ID']['output'];
|
|
49855
|
+
isDeleted?: Maybe<Scalars['Boolean']['output']>;
|
|
49644
49856
|
issue?: Maybe<JiraIssue>;
|
|
49645
49857
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
49646
49858
|
richText?: Maybe<JiraRichText>;
|
|
49859
|
+
threadParentId?: Maybe<Scalars['ID']['output']>;
|
|
49647
49860
|
updateAuthor?: Maybe<User>;
|
|
49648
49861
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
49649
49862
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
49650
49863
|
};
|
|
49864
|
+
export declare type JiraPlatformCommentChildCommentsArgs = {
|
|
49865
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
49866
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
49867
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49868
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
49869
|
+
};
|
|
49870
|
+
export declare type JiraPlaybook = Node & {
|
|
49871
|
+
__typename?: 'JiraPlaybook';
|
|
49872
|
+
filters?: Maybe<Array<JiraPlaybookIssueFilter>>;
|
|
49873
|
+
id: Scalars['ID']['output'];
|
|
49874
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
49875
|
+
owner?: Maybe<User>;
|
|
49876
|
+
scopeId?: Maybe<Scalars['String']['output']>;
|
|
49877
|
+
scopeType?: Maybe<JiraPlaybookScopeType>;
|
|
49878
|
+
state?: Maybe<JiraPlaybookStateField>;
|
|
49879
|
+
steps?: Maybe<Array<JiraPlaybookStep>>;
|
|
49880
|
+
};
|
|
49881
|
+
export declare type JiraPlaybookConnection = HasPageInfo & QueryPayload & {
|
|
49882
|
+
__typename?: 'JiraPlaybookConnection';
|
|
49883
|
+
edges?: Maybe<Array<JiraPlaybookEdge>>;
|
|
49884
|
+
errors?: Maybe<Array<QueryError>>;
|
|
49885
|
+
nodes?: Maybe<Array<Maybe<JiraPlaybook>>>;
|
|
49886
|
+
pageInfo: PageInfo;
|
|
49887
|
+
success: Scalars['Boolean']['output'];
|
|
49888
|
+
};
|
|
49889
|
+
export declare type JiraPlaybookEdge = {
|
|
49890
|
+
__typename?: 'JiraPlaybookEdge';
|
|
49891
|
+
cursor: Scalars['String']['output'];
|
|
49892
|
+
node?: Maybe<JiraPlaybook>;
|
|
49893
|
+
};
|
|
49894
|
+
export declare type JiraPlaybookFilter = {
|
|
49895
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
49896
|
+
};
|
|
49897
|
+
export declare type JiraPlaybookInstance = Node & {
|
|
49898
|
+
__typename?: 'JiraPlaybookInstance';
|
|
49899
|
+
countOfAllSteps?: Maybe<Scalars['Int']['output']>;
|
|
49900
|
+
countOfCompletedSteps?: Maybe<Scalars['Int']['output']>;
|
|
49901
|
+
id: Scalars['ID']['output'];
|
|
49902
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
49903
|
+
steps?: Maybe<Array<JiraPlaybookInstanceStep>>;
|
|
49904
|
+
};
|
|
49905
|
+
export declare type JiraPlaybookInstanceConnection = HasPageInfo & QueryPayload & {
|
|
49906
|
+
__typename?: 'JiraPlaybookInstanceConnection';
|
|
49907
|
+
edges?: Maybe<Array<JiraPlaybookInstanceEdge>>;
|
|
49908
|
+
errors?: Maybe<Array<QueryError>>;
|
|
49909
|
+
nodes?: Maybe<Array<Maybe<JiraPlaybookInstance>>>;
|
|
49910
|
+
pageInfo: PageInfo;
|
|
49911
|
+
success: Scalars['Boolean']['output'];
|
|
49912
|
+
};
|
|
49913
|
+
export declare type JiraPlaybookInstanceEdge = {
|
|
49914
|
+
__typename?: 'JiraPlaybookInstanceEdge';
|
|
49915
|
+
cursor: Scalars['String']['output'];
|
|
49916
|
+
node?: Maybe<JiraPlaybookInstance>;
|
|
49917
|
+
};
|
|
49918
|
+
export declare type JiraPlaybookInstanceStep = Node & {
|
|
49919
|
+
__typename?: 'JiraPlaybookInstanceStep';
|
|
49920
|
+
description?: Maybe<Scalars['JSON']['output']>;
|
|
49921
|
+
id: Scalars['ID']['output'];
|
|
49922
|
+
lastRun?: Maybe<JiraPlaybookStepRun>;
|
|
49923
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
49924
|
+
ruleId?: Maybe<Scalars['String']['output']>;
|
|
49925
|
+
type?: Maybe<JiraPlaybookStepType>;
|
|
49926
|
+
};
|
|
49927
|
+
export declare type JiraPlaybookIssueFilter = {
|
|
49928
|
+
__typename?: 'JiraPlaybookIssueFilter';
|
|
49929
|
+
type?: Maybe<JiraPlaybookIssueFilterType>;
|
|
49930
|
+
values?: Maybe<Array<Scalars['String']['output']>>;
|
|
49931
|
+
};
|
|
49932
|
+
export declare type JiraPlaybookIssueFilterInput = {
|
|
49933
|
+
type?: InputMaybe<JiraPlaybookIssueFilterType>;
|
|
49934
|
+
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
49935
|
+
};
|
|
49936
|
+
export declare enum JiraPlaybookIssueFilterType {
|
|
49937
|
+
Groups = "GROUPS",
|
|
49938
|
+
IssueTypes = "ISSUE_TYPES",
|
|
49939
|
+
RequestTypes = "REQUEST_TYPES"
|
|
49940
|
+
}
|
|
49941
|
+
export declare type JiraPlaybookQueryPayload = QueryPayload & {
|
|
49942
|
+
__typename?: 'JiraPlaybookQueryPayload';
|
|
49943
|
+
errors?: Maybe<Array<QueryError>>;
|
|
49944
|
+
playbook?: Maybe<JiraPlaybook>;
|
|
49945
|
+
success: Scalars['Boolean']['output'];
|
|
49946
|
+
};
|
|
49947
|
+
export declare enum JiraPlaybookScopeType {
|
|
49948
|
+
Global = "GLOBAL",
|
|
49949
|
+
Project = "PROJECT",
|
|
49950
|
+
Team = "TEAM"
|
|
49951
|
+
}
|
|
49952
|
+
export declare enum JiraPlaybookStateField {
|
|
49953
|
+
Disabled = "DISABLED",
|
|
49954
|
+
Enabled = "ENABLED"
|
|
49955
|
+
}
|
|
49956
|
+
export declare type JiraPlaybookStep = {
|
|
49957
|
+
__typename?: 'JiraPlaybookStep';
|
|
49958
|
+
description?: Maybe<Scalars['JSON']['output']>;
|
|
49959
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
49960
|
+
ruleId?: Maybe<Scalars['String']['output']>;
|
|
49961
|
+
stepId: Scalars['ID']['output'];
|
|
49962
|
+
type?: Maybe<JiraPlaybookStepType>;
|
|
49963
|
+
};
|
|
49964
|
+
export declare type JiraPlaybookStepOutput = {
|
|
49965
|
+
__typename?: 'JiraPlaybookStepOutput';
|
|
49966
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
49967
|
+
results?: Maybe<Array<JiraPlaybookStepOutputKeyValuePair>>;
|
|
49968
|
+
};
|
|
49969
|
+
export declare type JiraPlaybookStepOutputKeyValuePair = {
|
|
49970
|
+
__typename?: 'JiraPlaybookStepOutputKeyValuePair';
|
|
49971
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
49972
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
49973
|
+
};
|
|
49974
|
+
export declare type JiraPlaybookStepRun = Node & {
|
|
49975
|
+
__typename?: 'JiraPlaybookStepRun';
|
|
49976
|
+
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
49977
|
+
id: Scalars['ID']['output'];
|
|
49978
|
+
playbookName?: Maybe<Scalars['String']['output']>;
|
|
49979
|
+
stepDuration?: Maybe<Scalars['Long']['output']>;
|
|
49980
|
+
stepId?: Maybe<Scalars['ID']['output']>;
|
|
49981
|
+
stepName?: Maybe<Scalars['String']['output']>;
|
|
49982
|
+
stepOutput?: Maybe<Array<JiraPlaybookStepOutput>>;
|
|
49983
|
+
stepStatus?: Maybe<JiraPlaybookStepRunStatus>;
|
|
49984
|
+
stepType?: Maybe<JiraPlaybookStepType>;
|
|
49985
|
+
triggeredAt?: Maybe<Scalars['DateTime']['output']>;
|
|
49986
|
+
triggeredBy?: Maybe<User>;
|
|
49987
|
+
};
|
|
49988
|
+
export declare type JiraPlaybookStepRunConnection = HasPageInfo & QueryPayload & {
|
|
49989
|
+
__typename?: 'JiraPlaybookStepRunConnection';
|
|
49990
|
+
edges?: Maybe<Array<JiraPlaybookStepRunEdge>>;
|
|
49991
|
+
errors?: Maybe<Array<QueryError>>;
|
|
49992
|
+
nodes?: Maybe<Array<Maybe<JiraPlaybookStepRun>>>;
|
|
49993
|
+
pageInfo: PageInfo;
|
|
49994
|
+
success: Scalars['Boolean']['output'];
|
|
49995
|
+
};
|
|
49996
|
+
export declare type JiraPlaybookStepRunEdge = {
|
|
49997
|
+
__typename?: 'JiraPlaybookStepRunEdge';
|
|
49998
|
+
cursor: Scalars['String']['output'];
|
|
49999
|
+
node?: Maybe<JiraPlaybookStepRun>;
|
|
50000
|
+
};
|
|
50001
|
+
export declare enum JiraPlaybookStepRunStatus {
|
|
50002
|
+
Failed = "FAILED",
|
|
50003
|
+
InProgress = "IN_PROGRESS",
|
|
50004
|
+
Success = "SUCCESS"
|
|
50005
|
+
}
|
|
50006
|
+
export declare enum JiraPlaybookStepType {
|
|
50007
|
+
AutomationRule = "AUTOMATION_RULE",
|
|
50008
|
+
InstructionalRule = "INSTRUCTIONAL_RULE"
|
|
50009
|
+
}
|
|
50010
|
+
export declare enum JiraPlaybooksSortBy {
|
|
50011
|
+
Name = "NAME"
|
|
50012
|
+
}
|
|
50013
|
+
export declare type JiraPlaybooksSortInput = {
|
|
50014
|
+
by: JiraPlaybooksSortBy;
|
|
50015
|
+
order?: SortDirection;
|
|
50016
|
+
};
|
|
49651
50017
|
export declare type JiraPostIncidentReviewLink = Node & {
|
|
49652
50018
|
__typename?: 'JiraPostIncidentReviewLink';
|
|
49653
50019
|
id: Scalars['ID']['output'];
|
|
@@ -49771,6 +50137,7 @@ export declare type JiraProject = Node & {
|
|
|
49771
50137
|
isAIEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
49772
50138
|
isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
49773
50139
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
50140
|
+
isLiveTemplate?: Maybe<Scalars['Boolean']['output']>;
|
|
49774
50141
|
isVirtualAgentEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
49775
50142
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
49776
50143
|
jsmChatInitialNativeConfig?: Maybe<JsmChatInitializeNativeConfigResponse>;
|
|
@@ -50128,6 +50495,11 @@ export declare type JiraProjectFieldPayload = Payload & {
|
|
|
50128
50495
|
field?: Maybe<JiraProjectField>;
|
|
50129
50496
|
success: Scalars['Boolean']['output'];
|
|
50130
50497
|
};
|
|
50498
|
+
export declare type JiraProjectFieldsPageFieldType = {
|
|
50499
|
+
__typename?: 'JiraProjectFieldsPageFieldType';
|
|
50500
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
50501
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
50502
|
+
};
|
|
50131
50503
|
export declare type JiraProjectFilterInput = {
|
|
50132
50504
|
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
50133
50505
|
notificationConfigurationState?: InputMaybe<JiraProjectNotificationConfigurationState>;
|
|
@@ -50403,9 +50775,14 @@ export declare type JiraProjectUpdateNameMutationPayload = Payload & {
|
|
|
50403
50775
|
};
|
|
50404
50776
|
export declare type JiraProjectWithIssueTypeIds = {
|
|
50405
50777
|
__typename?: 'JiraProjectWithIssueTypeIds';
|
|
50778
|
+
allowedCustomFieldTypes?: Maybe<JiraFieldTypeConnection>;
|
|
50406
50779
|
availableFields?: Maybe<JiraAvailableFieldsConnection>;
|
|
50407
50780
|
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypesConnection>;
|
|
50408
50781
|
};
|
|
50782
|
+
export declare type JiraProjectWithIssueTypeIdsAllowedCustomFieldTypesArgs = {
|
|
50783
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
50784
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50785
|
+
};
|
|
50409
50786
|
export declare type JiraProjectWithIssueTypeIdsAvailableFieldsArgs = {
|
|
50410
50787
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
50411
50788
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -50587,6 +50964,7 @@ export declare type JiraQuery = {
|
|
|
50587
50964
|
projectRoleActorRecommendations?: Maybe<JiraProjectRoleActorRecommendationConnection>;
|
|
50588
50965
|
rankField?: Maybe<JiraJqlFieldWithAliases>;
|
|
50589
50966
|
recentItems?: Maybe<JiraSearchableEntityConnection>;
|
|
50967
|
+
recentProjects?: Maybe<JiraProjectConnection>;
|
|
50590
50968
|
remoteIssueLinksById?: Maybe<Array<Maybe<JiraRemoteIssueLink>>>;
|
|
50591
50969
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
50592
50970
|
requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
|
|
@@ -51310,6 +51688,12 @@ export declare type JiraQueryRecentItemsArgs = {
|
|
|
51310
51688
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
51311
51689
|
types: Array<JiraSearchableEntityType>;
|
|
51312
51690
|
};
|
|
51691
|
+
export declare type JiraQueryRecentProjectsArgs = {
|
|
51692
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51693
|
+
cloudId: Scalars['ID']['input'];
|
|
51694
|
+
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
51695
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51696
|
+
};
|
|
51313
51697
|
export declare type JiraQueryRemoteIssueLinksByIdArgs = {
|
|
51314
51698
|
ids: Array<Scalars['ID']['input']>;
|
|
51315
51699
|
};
|
|
@@ -53791,6 +54175,7 @@ export declare type JiraSpreadsheetGroupConnection = {
|
|
|
53791
54175
|
edges?: Maybe<Array<Maybe<JiraSpreadsheetGroupEdge>>>;
|
|
53792
54176
|
errors?: Maybe<Array<QueryError>>;
|
|
53793
54177
|
firstGroup?: Maybe<JiraSpreadsheetGroup>;
|
|
54178
|
+
groupByField?: Maybe<Scalars['String']['output']>;
|
|
53794
54179
|
jql?: Maybe<Scalars['String']['output']>;
|
|
53795
54180
|
pageInfo: PageInfo;
|
|
53796
54181
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -53820,6 +54205,12 @@ export declare type JiraSpreadsheetViewFieldSetsArgs = {
|
|
|
53820
54205
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53821
54206
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
53822
54207
|
};
|
|
54208
|
+
export declare type JiraSpreadsheetViewPayload = Payload & {
|
|
54209
|
+
__typename?: 'JiraSpreadsheetViewPayload';
|
|
54210
|
+
errors?: Maybe<Array<MutationError>>;
|
|
54211
|
+
success: Scalars['Boolean']['output'];
|
|
54212
|
+
view?: Maybe<JiraSpreadsheetView>;
|
|
54213
|
+
};
|
|
53823
54214
|
export declare type JiraSpreadsheetViewSettings = {
|
|
53824
54215
|
__typename?: 'JiraSpreadsheetViewSettings';
|
|
53825
54216
|
groupByConfig?: Maybe<JiraSpreadsheetGroupByConfig>;
|
|
@@ -54708,6 +55099,16 @@ export declare type JiraUpdateJourneyConfigurationPayload = Payload & {
|
|
|
54708
55099
|
jiraJourneyConfigurationEdge?: Maybe<JiraJourneyConfigurationEdge>;
|
|
54709
55100
|
success: Scalars['Boolean']['output'];
|
|
54710
55101
|
};
|
|
55102
|
+
export declare type JiraUpdateJourneyNameInput = {
|
|
55103
|
+
id: Scalars['ID']['input'];
|
|
55104
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
55105
|
+
version: Scalars['Long']['input'];
|
|
55106
|
+
};
|
|
55107
|
+
export declare type JiraUpdateJourneyParentIssueConfigurationInput = {
|
|
55108
|
+
id: Scalars['ID']['input'];
|
|
55109
|
+
parentIssue?: InputMaybe<JiraJourneyParentIssueInput>;
|
|
55110
|
+
version: Scalars['Long']['input'];
|
|
55111
|
+
};
|
|
54711
55112
|
export declare type JiraUpdateJourneyTriggerConfigurationInput = {
|
|
54712
55113
|
id: Scalars['ID']['input'];
|
|
54713
55114
|
triggerConfiguration?: InputMaybe<JiraJourneyTriggerConfigurationInput>;
|
|
@@ -57235,6 +57636,15 @@ export declare type KnowledgeDiscoveryAutoDefinition = {
|
|
|
57235
57636
|
definition: Scalars['String']['output'];
|
|
57236
57637
|
};
|
|
57237
57638
|
export declare type KnowledgeDiscoveryAutoDefinitionResult = KnowledgeDiscoveryAutoDefinition | QueryError;
|
|
57639
|
+
export declare type KnowledgeDiscoveryBatchCreateAdminhubBookmarkInput = {
|
|
57640
|
+
bookmarks?: InputMaybe<Array<KnowledgeDiscoveryCreateAdminhubBookmarkInput>>;
|
|
57641
|
+
};
|
|
57642
|
+
export declare type KnowledgeDiscoveryBatchCreateAdminhubBookmarkPayload = Payload & {
|
|
57643
|
+
__typename?: 'KnowledgeDiscoveryBatchCreateAdminhubBookmarkPayload';
|
|
57644
|
+
adminhubBookmark?: Maybe<Array<Maybe<KnowledgeDiscoveryAdminhubBookmark>>>;
|
|
57645
|
+
errors?: Maybe<Array<MutationError>>;
|
|
57646
|
+
success: Scalars['Boolean']['output'];
|
|
57647
|
+
};
|
|
57238
57648
|
export declare type KnowledgeDiscoveryBookmark = {
|
|
57239
57649
|
__typename?: 'KnowledgeDiscoveryBookmark';
|
|
57240
57650
|
id: Scalars['ID']['output'];
|
|
@@ -57412,6 +57822,7 @@ export declare type KnowledgeDiscoveryKeyPhrasesResult = KnowledgeDiscoveryKeyPh
|
|
|
57412
57822
|
export declare type KnowledgeDiscoveryMutationApi = {
|
|
57413
57823
|
__typename?: 'KnowledgeDiscoveryMutationApi';
|
|
57414
57824
|
createBookmark?: Maybe<KnowledgeDiscoveryCreateAdminhubBookmarkPayload>;
|
|
57825
|
+
createBookmarks?: Maybe<KnowledgeDiscoveryBatchCreateAdminhubBookmarkPayload>;
|
|
57415
57826
|
createDefinition?: Maybe<KnowledgeDiscoveryCreateDefinitionPayload>;
|
|
57416
57827
|
deleteBookmarks?: Maybe<KnowledgeDiscoveryDeleteBookmarksPayload>;
|
|
57417
57828
|
updateBookmark?: Maybe<KnowledgeDiscoveryUpdateAdminhubBookmarkPayload>;
|
|
@@ -57421,6 +57832,9 @@ export declare type KnowledgeDiscoveryMutationApi = {
|
|
|
57421
57832
|
export declare type KnowledgeDiscoveryMutationApiCreateBookmarkArgs = {
|
|
57422
57833
|
input: KnowledgeDiscoveryCreateAdminhubBookmarkInput;
|
|
57423
57834
|
};
|
|
57835
|
+
export declare type KnowledgeDiscoveryMutationApiCreateBookmarksArgs = {
|
|
57836
|
+
input: KnowledgeDiscoveryBatchCreateAdminhubBookmarkInput;
|
|
57837
|
+
};
|
|
57424
57838
|
export declare type KnowledgeDiscoveryMutationApiCreateDefinitionArgs = {
|
|
57425
57839
|
input: KnowledgeDiscoveryCreateDefinitionInput;
|
|
57426
57840
|
};
|
|
@@ -61335,6 +61749,11 @@ export declare type Mutation = {
|
|
|
61335
61749
|
partnerEarlyAccess?: Maybe<PeapMutationApi>;
|
|
61336
61750
|
planModeCardCreate?: Maybe<CreateCardsOutput>;
|
|
61337
61751
|
planModeCardMove?: Maybe<MoveCardOutput>;
|
|
61752
|
+
playbook_createJiraPlaybook?: Maybe<CreateJiraPlaybookPayload>;
|
|
61753
|
+
playbook_createJiraPlaybookStepRun?: Maybe<CreateJiraPlaybookStepRunPayload>;
|
|
61754
|
+
playbook_deleteJiraPlaybook?: Maybe<DeleteJiraPlaybookPayload>;
|
|
61755
|
+
playbook_updateJiraPlaybook?: Maybe<UpdateJiraPlaybookPayload>;
|
|
61756
|
+
playbook_updateJiraPlaybookState?: Maybe<UpdateJiraPlaybookStatePayload>;
|
|
61338
61757
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
61339
61758
|
polarisAddReaction?: Maybe<PolarisAddReactionPayload>;
|
|
61340
61759
|
polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
|
|
@@ -62134,6 +62553,21 @@ export declare type MutationPlanModeCardCreateArgs = {
|
|
|
62134
62553
|
export declare type MutationPlanModeCardMoveArgs = {
|
|
62135
62554
|
input?: InputMaybe<PlanModeCardMoveInput>;
|
|
62136
62555
|
};
|
|
62556
|
+
export declare type MutationPlaybook_CreateJiraPlaybookArgs = {
|
|
62557
|
+
input: CreateJiraPlaybookInput;
|
|
62558
|
+
};
|
|
62559
|
+
export declare type MutationPlaybook_CreateJiraPlaybookStepRunArgs = {
|
|
62560
|
+
input: CreateJiraPlaybookStepRunInput;
|
|
62561
|
+
};
|
|
62562
|
+
export declare type MutationPlaybook_DeleteJiraPlaybookArgs = {
|
|
62563
|
+
input: DeleteJiraPlaybookInput;
|
|
62564
|
+
};
|
|
62565
|
+
export declare type MutationPlaybook_UpdateJiraPlaybookArgs = {
|
|
62566
|
+
input: UpdateJiraPlaybookInput;
|
|
62567
|
+
};
|
|
62568
|
+
export declare type MutationPlaybook_UpdateJiraPlaybookStateArgs = {
|
|
62569
|
+
input: UpdateJiraPlaybookStateInput;
|
|
62570
|
+
};
|
|
62137
62571
|
export declare type MutationPolarisAddReactionArgs = {
|
|
62138
62572
|
input: PolarisAddReactionInput;
|
|
62139
62573
|
};
|
|
@@ -62528,6 +62962,14 @@ export declare type NlpSource = {
|
|
|
62528
62962
|
export declare type Node = {
|
|
62529
62963
|
id: Scalars['ID']['output'];
|
|
62530
62964
|
};
|
|
62965
|
+
export declare type NumberUserInput = {
|
|
62966
|
+
type: NumberUserInputType;
|
|
62967
|
+
value?: InputMaybe<Scalars['Float']['input']>;
|
|
62968
|
+
variableName: Scalars['String']['input'];
|
|
62969
|
+
};
|
|
62970
|
+
export declare enum NumberUserInputType {
|
|
62971
|
+
Number = "NUMBER"
|
|
62972
|
+
}
|
|
62531
62973
|
export declare type OAuthClientsAccountGrant = {
|
|
62532
62974
|
__typename?: 'OAuthClientsAccountGrant';
|
|
62533
62975
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -64274,6 +64716,7 @@ export declare type Query = {
|
|
|
64274
64716
|
ipmMultiSteps: ContentPlatformIpmMultiStepSearchConnection;
|
|
64275
64717
|
isSainSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
64276
64718
|
jira?: Maybe<JiraQuery>;
|
|
64719
|
+
jiraAlignAgg_projectsByAris?: Maybe<Array<JiraAlignAggProject>>;
|
|
64277
64720
|
jiraCannedResponse?: Maybe<JiraCannedResponseQueryApi>;
|
|
64278
64721
|
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
64279
64722
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
@@ -64306,6 +64749,15 @@ export declare type Query = {
|
|
|
64306
64749
|
opsgenieTeamRelationshipForDevOpsService?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
|
|
64307
64750
|
partner?: Maybe<Partner>;
|
|
64308
64751
|
partnerEarlyAccess?: Maybe<PeapQueryApi>;
|
|
64752
|
+
playbook_jiraPlaybook?: Maybe<JiraPlaybookQueryPayload>;
|
|
64753
|
+
playbook_jiraPlaybookInstanceSteps?: Maybe<Array<Maybe<JiraPlaybookInstanceStep>>>;
|
|
64754
|
+
playbook_jiraPlaybookInstances?: Maybe<Array<Maybe<JiraPlaybookInstance>>>;
|
|
64755
|
+
playbook_jiraPlaybookInstancesForIssue?: Maybe<JiraPlaybookInstanceConnection>;
|
|
64756
|
+
playbook_jiraPlaybookStepRuns?: Maybe<Array<Maybe<JiraPlaybookStepRun>>>;
|
|
64757
|
+
playbook_jiraPlaybookStepRunsForPlaybookInstance?: Maybe<JiraPlaybookStepRunConnection>;
|
|
64758
|
+
playbook_jiraPlaybookStepRunsForProject?: Maybe<JiraPlaybookStepRunConnection>;
|
|
64759
|
+
playbook_jiraPlaybooks?: Maybe<Array<Maybe<JiraPlaybook>>>;
|
|
64760
|
+
playbook_jiraPlaybooksForProject?: Maybe<JiraPlaybookConnection>;
|
|
64309
64761
|
pokemon?: Maybe<PokemonQuery>;
|
|
64310
64762
|
pokemonTrainers?: Maybe<PokemonTrainersQuery>;
|
|
64311
64763
|
polaris?: Maybe<PolarisQueryNamespace>;
|
|
@@ -64330,7 +64782,9 @@ export declare type Query = {
|
|
|
64330
64782
|
productListings: Array<ProductListingResult>;
|
|
64331
64783
|
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
64332
64784
|
radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
|
|
64785
|
+
radar_position?: Maybe<RadarPosition>;
|
|
64333
64786
|
radar_positions?: Maybe<RadarPositionConnection>;
|
|
64787
|
+
radar_positionsByAris?: Maybe<Array<RadarPosition>>;
|
|
64334
64788
|
radar_workspace: RadarWorkspace;
|
|
64335
64789
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
64336
64790
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
@@ -65620,6 +66074,9 @@ export declare type QueryIpmMultiStepsArgs = {
|
|
|
65620
66074
|
export declare type QueryIsSainSearchEnabledArgs = {
|
|
65621
66075
|
cloudId: Scalars['String']['input'];
|
|
65622
66076
|
};
|
|
66077
|
+
export declare type QueryJiraAlignAgg_ProjectsByArisArgs = {
|
|
66078
|
+
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
66079
|
+
};
|
|
65623
66080
|
export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
65624
66081
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
65625
66082
|
filter?: InputMaybe<DevOpsServiceAndJiraProjectRelationshipFilter>;
|
|
@@ -65673,6 +66130,48 @@ export declare type QueryNodeArgs = {
|
|
|
65673
66130
|
export declare type QueryOpsgenieTeamRelationshipForDevOpsServiceArgs = {
|
|
65674
66131
|
id: Scalars['ID']['input'];
|
|
65675
66132
|
};
|
|
66133
|
+
export declare type QueryPlaybook_JiraPlaybookArgs = {
|
|
66134
|
+
playbookAri: Scalars['ID']['input'];
|
|
66135
|
+
};
|
|
66136
|
+
export declare type QueryPlaybook_JiraPlaybookInstanceStepsArgs = {
|
|
66137
|
+
ids: Array<Scalars['ID']['input']>;
|
|
66138
|
+
};
|
|
66139
|
+
export declare type QueryPlaybook_JiraPlaybookInstancesArgs = {
|
|
66140
|
+
ids: Array<Scalars['ID']['input']>;
|
|
66141
|
+
};
|
|
66142
|
+
export declare type QueryPlaybook_JiraPlaybookInstancesForIssueArgs = {
|
|
66143
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66144
|
+
cloudId: Scalars['ID']['input'];
|
|
66145
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66146
|
+
issueId: Scalars['String']['input'];
|
|
66147
|
+
projectKey: Scalars['String']['input'];
|
|
66148
|
+
};
|
|
66149
|
+
export declare type QueryPlaybook_JiraPlaybookStepRunsArgs = {
|
|
66150
|
+
ids: Array<Scalars['ID']['input']>;
|
|
66151
|
+
};
|
|
66152
|
+
export declare type QueryPlaybook_JiraPlaybookStepRunsForPlaybookInstanceArgs = {
|
|
66153
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66154
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66155
|
+
playbookInstanceAri: Scalars['ID']['input'];
|
|
66156
|
+
};
|
|
66157
|
+
export declare type QueryPlaybook_JiraPlaybookStepRunsForProjectArgs = {
|
|
66158
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66159
|
+
cloudId: Scalars['ID']['input'];
|
|
66160
|
+
filter?: InputMaybe<JiraPlaybookFilter>;
|
|
66161
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66162
|
+
projectKey: Scalars['String']['input'];
|
|
66163
|
+
};
|
|
66164
|
+
export declare type QueryPlaybook_JiraPlaybooksArgs = {
|
|
66165
|
+
ids: Array<Scalars['ID']['input']>;
|
|
66166
|
+
};
|
|
66167
|
+
export declare type QueryPlaybook_JiraPlaybooksForProjectArgs = {
|
|
66168
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66169
|
+
cloudId: Scalars['ID']['input'];
|
|
66170
|
+
filter?: InputMaybe<JiraPlaybookFilter>;
|
|
66171
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66172
|
+
projectKey: Scalars['String']['input'];
|
|
66173
|
+
sort?: InputMaybe<Array<JiraPlaybooksSortInput>>;
|
|
66174
|
+
};
|
|
65676
66175
|
export declare type QueryPolarisCollabTokenArgs = {
|
|
65677
66176
|
viewID: Scalars['ID']['input'];
|
|
65678
66177
|
};
|
|
@@ -65756,6 +66255,9 @@ export declare type QueryRadar_GroupMetricsArgs = {
|
|
|
65756
66255
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
65757
66256
|
uniqueFieldIdIsIn: Array<Scalars['ID']['input']>;
|
|
65758
66257
|
};
|
|
66258
|
+
export declare type QueryRadar_PositionArgs = {
|
|
66259
|
+
id: Scalars['ID']['input'];
|
|
66260
|
+
};
|
|
65759
66261
|
export declare type QueryRadar_PositionsArgs = {
|
|
65760
66262
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
65761
66263
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -65765,6 +66267,9 @@ export declare type QueryRadar_PositionsArgs = {
|
|
|
65765
66267
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
65766
66268
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
65767
66269
|
};
|
|
66270
|
+
export declare type QueryRadar_PositionsByArisArgs = {
|
|
66271
|
+
ids: Array<Scalars['ID']['input']>;
|
|
66272
|
+
};
|
|
65768
66273
|
export declare type QueryRadar_WorkspaceArgs = {
|
|
65769
66274
|
cloudId: Scalars['ID']['input'];
|
|
65770
66275
|
};
|
|
@@ -65854,6 +66359,10 @@ export declare type QueryErrorExtension = {
|
|
|
65854
66359
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
65855
66360
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
65856
66361
|
};
|
|
66362
|
+
export declare type QueryPayload = {
|
|
66363
|
+
errors?: Maybe<Array<QueryError>>;
|
|
66364
|
+
success: Scalars['Boolean']['output'];
|
|
66365
|
+
};
|
|
65857
66366
|
export declare type QuerySuggestionApi = {
|
|
65858
66367
|
__typename?: 'QuerySuggestionAPI';
|
|
65859
66368
|
suggest?: Maybe<QuerySuggestionItemConnection>;
|
|
@@ -65893,8 +66402,9 @@ export declare type QuotaInfo = {
|
|
|
65893
66402
|
};
|
|
65894
66403
|
export declare type RadarAriFieldValue = {
|
|
65895
66404
|
__typename?: 'RadarAriFieldValue';
|
|
65896
|
-
value?: Maybe<
|
|
66405
|
+
value?: Maybe<RadarAriObject>;
|
|
65897
66406
|
};
|
|
66407
|
+
export declare type RadarAriObject = MercuryFocusArea | RadarPosition;
|
|
65898
66408
|
export declare type RadarBooleanFieldValue = {
|
|
65899
66409
|
__typename?: 'RadarBooleanFieldValue';
|
|
65900
66410
|
value?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -65923,8 +66433,8 @@ export declare type RadarEntity = {
|
|
|
65923
66433
|
};
|
|
65924
66434
|
export declare enum RadarEntityType {
|
|
65925
66435
|
FocusArea = "focusArea",
|
|
65926
|
-
|
|
65927
|
-
|
|
66436
|
+
Position = "position",
|
|
66437
|
+
Worker = "worker"
|
|
65928
66438
|
}
|
|
65929
66439
|
export declare type RadarFieldDefinition = Node & {
|
|
65930
66440
|
__typename?: 'RadarFieldDefinition';
|
|
@@ -69987,6 +70497,16 @@ export declare type Storage = {
|
|
|
69987
70497
|
hosted?: Maybe<HostedStorage>;
|
|
69988
70498
|
remotes?: Maybe<Array<Remote>>;
|
|
69989
70499
|
};
|
|
70500
|
+
export declare type StringUserInput = {
|
|
70501
|
+
type: StringUserInputType;
|
|
70502
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
70503
|
+
variableName: Scalars['String']['input'];
|
|
70504
|
+
};
|
|
70505
|
+
export declare enum StringUserInputType {
|
|
70506
|
+
Dropdown = "DROPDOWN",
|
|
70507
|
+
Paragraph = "PARAGRAPH",
|
|
70508
|
+
Text = "TEXT"
|
|
70509
|
+
}
|
|
69990
70510
|
export declare type Subscription = {
|
|
69991
70511
|
__typename?: 'Subscription';
|
|
69992
70512
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
@@ -74332,6 +74852,37 @@ export declare type UpdateDeveloperLogAccessPayload = Payload & {
|
|
|
74332
74852
|
errors?: Maybe<Array<MutationError>>;
|
|
74333
74853
|
success: Scalars['Boolean']['output'];
|
|
74334
74854
|
};
|
|
74855
|
+
export declare type UpdateJiraPlaybookInput = {
|
|
74856
|
+
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
74857
|
+
id: Scalars['ID']['input'];
|
|
74858
|
+
name: Scalars['String']['input'];
|
|
74859
|
+
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
74860
|
+
scopeType: JiraPlaybookScopeType;
|
|
74861
|
+
state?: InputMaybe<JiraPlaybookStateField>;
|
|
74862
|
+
steps: Array<UpdateJiraPlaybookStepInput>;
|
|
74863
|
+
};
|
|
74864
|
+
export declare type UpdateJiraPlaybookPayload = Payload & {
|
|
74865
|
+
__typename?: 'UpdateJiraPlaybookPayload';
|
|
74866
|
+
errors?: Maybe<Array<MutationError>>;
|
|
74867
|
+
playbook?: Maybe<JiraPlaybook>;
|
|
74868
|
+
success: Scalars['Boolean']['output'];
|
|
74869
|
+
};
|
|
74870
|
+
export declare type UpdateJiraPlaybookStateInput = {
|
|
74871
|
+
id: Scalars['ID']['input'];
|
|
74872
|
+
state: JiraPlaybookStateField;
|
|
74873
|
+
};
|
|
74874
|
+
export declare type UpdateJiraPlaybookStatePayload = Payload & {
|
|
74875
|
+
__typename?: 'UpdateJiraPlaybookStatePayload';
|
|
74876
|
+
errors?: Maybe<Array<MutationError>>;
|
|
74877
|
+
playbook?: Maybe<JiraPlaybook>;
|
|
74878
|
+
success: Scalars['Boolean']['output'];
|
|
74879
|
+
};
|
|
74880
|
+
export declare type UpdateJiraPlaybookStepInput = {
|
|
74881
|
+
description?: InputMaybe<Scalars['JSON']['input']>;
|
|
74882
|
+
name: Scalars['String']['input'];
|
|
74883
|
+
ruleId?: InputMaybe<Scalars['String']['input']>;
|
|
74884
|
+
type: JiraPlaybookStepType;
|
|
74885
|
+
};
|
|
74335
74886
|
export declare type UpdatePolarisCommentInput = {
|
|
74336
74887
|
content?: InputMaybe<Scalars['JSON']['input']>;
|
|
74337
74888
|
delete?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -74607,6 +75158,11 @@ export declare type UserGrantPageInfo = {
|
|
|
74607
75158
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
74608
75159
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
74609
75160
|
};
|
|
75161
|
+
export declare type UserInput = {
|
|
75162
|
+
booleanUserInput?: InputMaybe<BooleanUserInput>;
|
|
75163
|
+
numberUserInput?: InputMaybe<NumberUserInput>;
|
|
75164
|
+
stringUserInput?: InputMaybe<StringUserInput>;
|
|
75165
|
+
};
|
|
74610
75166
|
export declare enum UserInstallationRuleValue {
|
|
74611
75167
|
Allow = "allow",
|
|
74612
75168
|
Deny = "deny"
|