@forge/cli-shared 6.8.0-next.22 → 6.8.0-next.24
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 +19 -0
- package/out/config/config-file.d.ts.map +1 -1
- package/out/config/config-file.js +6 -5
- package/out/graphql/graphql-types.d.ts +373 -76
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +14 -6
- package/out/ui/command-line-ui.d.ts +1 -1
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/command-line-ui.js +2 -2
- package/out/ui/text.d.ts +1 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +4 -0
- package/out/ui/ui.d.ts +1 -1
- package/out/ui/ui.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -2189,6 +2189,8 @@ export declare type AquaIssueContext = {
|
|
|
2189
2189
|
};
|
|
2190
2190
|
export declare type AquaNotificationDetails = {
|
|
2191
2191
|
__typename?: 'AquaNotificationDetails';
|
|
2192
|
+
actionTaken?: Maybe<Scalars['String']['output']>;
|
|
2193
|
+
actionTakenTimestamp?: Maybe<Scalars['String']['output']>;
|
|
2192
2194
|
errorKey?: Maybe<Scalars['String']['output']>;
|
|
2193
2195
|
hasRecipientJoined?: Maybe<Scalars['Boolean']['output']>;
|
|
2194
2196
|
mailboxMessage?: Maybe<Scalars['String']['output']>;
|
|
@@ -5157,6 +5159,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
5157
5159
|
scorecards?: Maybe<CompassScorecardsQueryResult>;
|
|
5158
5160
|
searchComponentLabels?: Maybe<CompassComponentLabelsQueryResult>;
|
|
5159
5161
|
searchComponents?: Maybe<CompassComponentQueryResult>;
|
|
5162
|
+
searchPackages?: Maybe<CompassSearchPackagesConnection>;
|
|
5160
5163
|
searchTeamLabels?: Maybe<CompassSearchTeamLabelsConnectionResult>;
|
|
5161
5164
|
searchTeams?: Maybe<CompassSearchTeamsConnectionResult>;
|
|
5162
5165
|
starredComponents?: Maybe<CompassStarredComponentsResult>;
|
|
@@ -5305,6 +5308,12 @@ export declare type CompassCatalogQueryApiSearchComponentsArgs = {
|
|
|
5305
5308
|
cloudId: Scalars['String']['input'];
|
|
5306
5309
|
query?: InputMaybe<CompassSearchComponentQuery>;
|
|
5307
5310
|
};
|
|
5311
|
+
export declare type CompassCatalogQueryApiSearchPackagesArgs = {
|
|
5312
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
5313
|
+
cloudId: Scalars['ID']['input'];
|
|
5314
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5315
|
+
query?: InputMaybe<CompassSearchPackagesQuery>;
|
|
5316
|
+
};
|
|
5308
5317
|
export declare type CompassCatalogQueryApiSearchTeamLabelsArgs = {
|
|
5309
5318
|
input: CompassSearchTeamLabelsInput;
|
|
5310
5319
|
};
|
|
@@ -5366,6 +5375,7 @@ export declare type CompassComponent = Node & {
|
|
|
5366
5375
|
type: CompassComponentType;
|
|
5367
5376
|
typeId: Scalars['ID']['output'];
|
|
5368
5377
|
typeMetadata?: Maybe<CompassComponentTypeObject>;
|
|
5378
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
5369
5379
|
viewerApplicableScorecards?: Maybe<CompassComponentViewerApplicableScorecardsConnection>;
|
|
5370
5380
|
viewerPermissions?: Maybe<CompassComponentInstancePermissions>;
|
|
5371
5381
|
viewerSubscription?: Maybe<CompassViewerSubscription>;
|
|
@@ -7670,6 +7680,7 @@ export declare type CompassPackageDependentComponentsConnection = {
|
|
|
7670
7680
|
edges?: Maybe<Array<CompassPackageDependentComponentsEdge>>;
|
|
7671
7681
|
nodes?: Maybe<Array<CompassComponent>>;
|
|
7672
7682
|
pageInfo?: Maybe<PageInfo>;
|
|
7683
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
7673
7684
|
};
|
|
7674
7685
|
export declare type CompassPackageDependentComponentsEdge = {
|
|
7675
7686
|
__typename?: 'CompassPackageDependentComponentsEdge';
|
|
@@ -8584,6 +8595,20 @@ export declare type CompassSearchComponentResult = {
|
|
|
8584
8595
|
component?: Maybe<CompassComponent>;
|
|
8585
8596
|
link: Scalars['URL']['output'];
|
|
8586
8597
|
};
|
|
8598
|
+
export declare type CompassSearchPackagesConnection = {
|
|
8599
|
+
__typename?: 'CompassSearchPackagesConnection';
|
|
8600
|
+
edges?: Maybe<Array<CompassSearchPackagesEdge>>;
|
|
8601
|
+
nodes?: Maybe<Array<CompassPackage>>;
|
|
8602
|
+
pageInfo?: Maybe<PageInfo>;
|
|
8603
|
+
};
|
|
8604
|
+
export declare type CompassSearchPackagesEdge = {
|
|
8605
|
+
__typename?: 'CompassSearchPackagesEdge';
|
|
8606
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
8607
|
+
node?: Maybe<CompassPackage>;
|
|
8608
|
+
};
|
|
8609
|
+
export declare type CompassSearchPackagesQuery = {
|
|
8610
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
8611
|
+
};
|
|
8587
8612
|
export declare type CompassSearchTeamLabelsConnection = {
|
|
8588
8613
|
__typename?: 'CompassSearchTeamLabelsConnection';
|
|
8589
8614
|
edges?: Maybe<Array<CompassSearchTeamLabelsEdge>>;
|
|
@@ -9492,6 +9517,7 @@ export declare type ConfluenceContent = {
|
|
|
9492
9517
|
__typename?: 'ConfluenceContent';
|
|
9493
9518
|
contentTitleUpdate?: Maybe<ConfluenceContentTitleUpdate>;
|
|
9494
9519
|
contentType: ConfluenceSubscriptionContentType;
|
|
9520
|
+
deltas?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
9495
9521
|
eventType: Scalars['String']['output'];
|
|
9496
9522
|
id: Scalars['ID']['output'];
|
|
9497
9523
|
};
|
|
@@ -22125,14 +22151,17 @@ export declare enum DevAiFlowPipelinesStatus {
|
|
|
22125
22151
|
Failed = "FAILED",
|
|
22126
22152
|
InProgress = "IN_PROGRESS",
|
|
22127
22153
|
Provisioned = "PROVISIONED",
|
|
22154
|
+
Starting = "STARTING",
|
|
22128
22155
|
Stopped = "STOPPED"
|
|
22129
22156
|
}
|
|
22130
22157
|
export declare type DevAiFlowSession = {
|
|
22131
22158
|
__typename?: 'DevAiFlowSession';
|
|
22159
|
+
additionalInfoJSON?: Maybe<Scalars['String']['output']>;
|
|
22132
22160
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
22133
22161
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
22134
22162
|
createdBy?: Maybe<Scalars['String']['output']>;
|
|
22135
22163
|
id: Scalars['ID']['output'];
|
|
22164
|
+
issue?: Maybe<JiraIssue>;
|
|
22136
22165
|
issueARI?: Maybe<Scalars['ID']['output']>;
|
|
22137
22166
|
issueJSON?: Maybe<Scalars['String']['output']>;
|
|
22138
22167
|
jiraHost?: Maybe<Scalars['String']['output']>;
|
|
@@ -34255,6 +34284,7 @@ export declare type GraphStoreServiceAssociatedBuildInverseArgs = {
|
|
|
34255
34284
|
export declare type GraphStoreServiceAssociatedDeploymentArgs = {
|
|
34256
34285
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34257
34286
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34287
|
+
filter?: InputMaybe<GraphStoreServiceAssociatedDeploymentFilterInput>;
|
|
34258
34288
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34259
34289
|
id: Scalars['ID']['input'];
|
|
34260
34290
|
sort?: InputMaybe<GraphStoreServiceAssociatedDeploymentSortInput>;
|
|
@@ -34262,6 +34292,7 @@ export declare type GraphStoreServiceAssociatedDeploymentArgs = {
|
|
|
34262
34292
|
export declare type GraphStoreServiceAssociatedDeploymentInverseArgs = {
|
|
34263
34293
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34264
34294
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34295
|
+
filter?: InputMaybe<GraphStoreServiceAssociatedDeploymentFilterInput>;
|
|
34265
34296
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34266
34297
|
id: Scalars['ID']['input'];
|
|
34267
34298
|
sort?: InputMaybe<GraphStoreServiceAssociatedDeploymentSortInput>;
|
|
@@ -42616,8 +42647,21 @@ export declare type GraphStoreServiceAssociatedBranchSortInput = {
|
|
|
42616
42647
|
export declare type GraphStoreServiceAssociatedBuildSortInput = {
|
|
42617
42648
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42618
42649
|
};
|
|
42650
|
+
export declare type GraphStoreServiceAssociatedDeploymentConditionalFilterInput = {
|
|
42651
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
42652
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
42653
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
42654
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
42655
|
+
};
|
|
42656
|
+
export declare type GraphStoreServiceAssociatedDeploymentFilterInput = {
|
|
42657
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreServiceAssociatedDeploymentConditionalFilterInput>>>;
|
|
42658
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreServiceAssociatedDeploymentConditionalFilterInput>>>;
|
|
42659
|
+
};
|
|
42619
42660
|
export declare type GraphStoreServiceAssociatedDeploymentSortInput = {
|
|
42661
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
42662
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
42620
42663
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42664
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
42621
42665
|
};
|
|
42622
42666
|
export declare type GraphStoreServiceAssociatedFeatureFlagSortInput = {
|
|
42623
42667
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -46321,10 +46365,12 @@ export declare type GraphStoreSimplifiedServiceAssociatedBuildInverseEdge = {
|
|
|
46321
46365
|
};
|
|
46322
46366
|
export declare type GraphStoreSimplifiedServiceAssociatedBuildInverseUnion = DevOpsService;
|
|
46323
46367
|
export declare type GraphStoreSimplifiedServiceAssociatedBuildUnion = ExternalBuildInfo;
|
|
46324
|
-
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentConnection = HasPageInfo & {
|
|
46368
|
+
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
46325
46369
|
__typename?: 'GraphStoreSimplifiedServiceAssociatedDeploymentConnection';
|
|
46326
46370
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentEdge>>>;
|
|
46371
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
46327
46372
|
pageInfo: PageInfo;
|
|
46373
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
46328
46374
|
};
|
|
46329
46375
|
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentEdge = {
|
|
46330
46376
|
__typename?: 'GraphStoreSimplifiedServiceAssociatedDeploymentEdge';
|
|
@@ -46334,10 +46380,12 @@ export declare type GraphStoreSimplifiedServiceAssociatedDeploymentEdge = {
|
|
|
46334
46380
|
lastUpdated: Scalars['DateTime']['output'];
|
|
46335
46381
|
node?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentUnion>;
|
|
46336
46382
|
};
|
|
46337
|
-
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentInverseConnection = HasPageInfo & {
|
|
46383
|
+
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentInverseConnection = HasPageInfo & HasTotal & {
|
|
46338
46384
|
__typename?: 'GraphStoreSimplifiedServiceAssociatedDeploymentInverseConnection';
|
|
46339
46385
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentInverseEdge>>>;
|
|
46386
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
46340
46387
|
pageInfo: PageInfo;
|
|
46388
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
46341
46389
|
};
|
|
46342
46390
|
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentInverseEdge = {
|
|
46343
46391
|
__typename?: 'GraphStoreSimplifiedServiceAssociatedDeploymentInverseEdge';
|
|
@@ -52760,6 +52808,12 @@ export declare type Icon = {
|
|
|
52760
52808
|
export declare type IconPathArgs = {
|
|
52761
52809
|
type?: InputMaybe<PathType>;
|
|
52762
52810
|
};
|
|
52811
|
+
export declare type IdentityGroup = Node & {
|
|
52812
|
+
__typename?: 'IdentityGroup';
|
|
52813
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
52814
|
+
id: Scalars['ID']['output'];
|
|
52815
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
52816
|
+
};
|
|
52763
52817
|
export declare type InCompleteCardsDestination = {
|
|
52764
52818
|
__typename?: 'InCompleteCardsDestination';
|
|
52765
52819
|
destination?: Maybe<SoftwareCardsDestinationEnum>;
|
|
@@ -53819,6 +53873,7 @@ export declare type JiraAffectedServicesField = JiraHasMultipleSelectedValues &
|
|
|
53819
53873
|
fieldId: Scalars['String']['output'];
|
|
53820
53874
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
53821
53875
|
id: Scalars['ID']['output'];
|
|
53876
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
53822
53877
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
53823
53878
|
issue?: Maybe<JiraIssue>;
|
|
53824
53879
|
name: Scalars['String']['output'];
|
|
@@ -54015,8 +54070,10 @@ export declare enum JiraApplicationKey {
|
|
|
54015
54070
|
export declare type JiraApplicationLink = {
|
|
54016
54071
|
__typename?: 'JiraApplicationLink';
|
|
54017
54072
|
applicationId?: Maybe<Scalars['String']['output']>;
|
|
54073
|
+
authenticationUrl?: Maybe<Scalars['URL']['output']>;
|
|
54018
54074
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
54019
54075
|
displayUrl?: Maybe<Scalars['URL']['output']>;
|
|
54076
|
+
isAuthenticationRequired?: Maybe<Scalars['Boolean']['output']>;
|
|
54020
54077
|
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
54021
54078
|
isSystem?: Maybe<Scalars['Boolean']['output']>;
|
|
54022
54079
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -54159,6 +54216,7 @@ export declare type JiraAssetField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
54159
54216
|
fieldId: Scalars['String']['output'];
|
|
54160
54217
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
54161
54218
|
id: Scalars['ID']['output'];
|
|
54219
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
54162
54220
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
54163
54221
|
issue?: Maybe<JiraIssue>;
|
|
54164
54222
|
name: Scalars['String']['output'];
|
|
@@ -54244,6 +54302,7 @@ export declare type JiraAtlassianTeamField = JiraIssueField & JiraIssueFieldConf
|
|
|
54244
54302
|
fieldId: Scalars['String']['output'];
|
|
54245
54303
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
54246
54304
|
id: Scalars['ID']['output'];
|
|
54305
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
54247
54306
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
54248
54307
|
issue?: Maybe<JiraIssue>;
|
|
54249
54308
|
name: Scalars['String']['output'];
|
|
@@ -54368,6 +54427,7 @@ export declare type JiraAttachmentsField = JiraIssueField & JiraIssueFieldConfig
|
|
|
54368
54427
|
fieldId: Scalars['String']['output'];
|
|
54369
54428
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
54370
54429
|
id: Scalars['ID']['output'];
|
|
54430
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
54371
54431
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
54372
54432
|
issue?: Maybe<JiraIssue>;
|
|
54373
54433
|
maxAllowedTotalAttachmentsSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -54910,6 +54970,7 @@ export declare type JiraBooleanField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
54910
54970
|
fieldId: Scalars['String']['output'];
|
|
54911
54971
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
54912
54972
|
id: Scalars['ID']['output'];
|
|
54973
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
54913
54974
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
54914
54975
|
issue?: Maybe<JiraIssue>;
|
|
54915
54976
|
name: Scalars['String']['output'];
|
|
@@ -55064,6 +55125,7 @@ export declare type JiraCmdbField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
55064
55125
|
fieldId: Scalars['String']['output'];
|
|
55065
55126
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
55066
55127
|
id: Scalars['ID']['output'];
|
|
55128
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
55067
55129
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
55068
55130
|
isInsightAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
55069
55131
|
isMulti?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -55365,6 +55427,7 @@ export declare type JiraCascadingSelectField = JiraHasSelectableValueOptions & J
|
|
|
55365
55427
|
fieldId: Scalars['String']['output'];
|
|
55366
55428
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
55367
55429
|
id: Scalars['ID']['output'];
|
|
55430
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
55368
55431
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
55369
55432
|
issue?: Maybe<JiraIssue>;
|
|
55370
55433
|
name: Scalars['String']['output'];
|
|
@@ -55430,6 +55493,7 @@ export declare type JiraCheckboxesField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
55430
55493
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
55431
55494
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
55432
55495
|
id: Scalars['ID']['output'];
|
|
55496
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
55433
55497
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
55434
55498
|
issue?: Maybe<JiraIssue>;
|
|
55435
55499
|
name: Scalars['String']['output'];
|
|
@@ -55781,6 +55845,7 @@ export declare type JiraColorField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
55781
55845
|
fieldId: Scalars['String']['output'];
|
|
55782
55846
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
55783
55847
|
id: Scalars['ID']['output'];
|
|
55848
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
55784
55849
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
55785
55850
|
issue?: Maybe<JiraIssue>;
|
|
55786
55851
|
name: Scalars['String']['output'];
|
|
@@ -55866,6 +55931,7 @@ export declare type JiraCommentSummaryField = JiraIssueField & JiraIssueFieldCon
|
|
|
55866
55931
|
fieldId: Scalars['String']['output'];
|
|
55867
55932
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
55868
55933
|
id: Scalars['ID']['output'];
|
|
55934
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
55869
55935
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
55870
55936
|
issue?: Maybe<JiraIssue>;
|
|
55871
55937
|
name: Scalars['String']['output'];
|
|
@@ -55908,6 +55974,7 @@ export declare type JiraComponentsField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
55908
55974
|
fieldId: Scalars['String']['output'];
|
|
55909
55975
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
55910
55976
|
id: Scalars['ID']['output'];
|
|
55977
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
55911
55978
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
55912
55979
|
issue?: Maybe<JiraIssue>;
|
|
55913
55980
|
name: Scalars['String']['output'];
|
|
@@ -56100,6 +56167,7 @@ export declare type JiraConfluenceRemoteIssueLinksField = JiraIssueField & JiraI
|
|
|
56100
56167
|
fieldId: Scalars['String']['output'];
|
|
56101
56168
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
56102
56169
|
id: Scalars['ID']['output'];
|
|
56170
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
56103
56171
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
56104
56172
|
issue?: Maybe<JiraIssue>;
|
|
56105
56173
|
name: Scalars['String']['output'];
|
|
@@ -56122,6 +56190,7 @@ export declare type JiraConnectDateTimeField = JiraIssueField & JiraIssueFieldCo
|
|
|
56122
56190
|
fieldId: Scalars['String']['output'];
|
|
56123
56191
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
56124
56192
|
id: Scalars['ID']['output'];
|
|
56193
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
56125
56194
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
56126
56195
|
issue?: Maybe<JiraIssue>;
|
|
56127
56196
|
name: Scalars['String']['output'];
|
|
@@ -56137,6 +56206,7 @@ export declare type JiraConnectMultipleSelectField = JiraHasMultipleSelectedValu
|
|
|
56137
56206
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
56138
56207
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
56139
56208
|
id: Scalars['ID']['output'];
|
|
56209
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
56140
56210
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
56141
56211
|
issue?: Maybe<JiraIssue>;
|
|
56142
56212
|
name: Scalars['String']['output'];
|
|
@@ -56184,6 +56254,7 @@ export declare type JiraConnectNumberField = JiraIssueField & JiraIssueFieldConf
|
|
|
56184
56254
|
fieldId: Scalars['String']['output'];
|
|
56185
56255
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
56186
56256
|
id: Scalars['ID']['output'];
|
|
56257
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
56187
56258
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
56188
56259
|
issue?: Maybe<JiraIssue>;
|
|
56189
56260
|
name: Scalars['String']['output'];
|
|
@@ -56199,6 +56270,7 @@ export declare type JiraConnectReadOnlyField = JiraIssueField & JiraIssueFieldCo
|
|
|
56199
56270
|
fieldId: Scalars['String']['output'];
|
|
56200
56271
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
56201
56272
|
id: Scalars['ID']['output'];
|
|
56273
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
56202
56274
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
56203
56275
|
issue?: Maybe<JiraIssue>;
|
|
56204
56276
|
name: Scalars['String']['output'];
|
|
@@ -56214,6 +56286,7 @@ export declare type JiraConnectRichTextField = JiraIssueField & JiraIssueFieldCo
|
|
|
56214
56286
|
fieldId: Scalars['String']['output'];
|
|
56215
56287
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
56216
56288
|
id: Scalars['ID']['output'];
|
|
56289
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
56217
56290
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
56218
56291
|
issue?: Maybe<JiraIssue>;
|
|
56219
56292
|
mediaContext?: Maybe<JiraMediaContext>;
|
|
@@ -56233,6 +56306,7 @@ export declare type JiraConnectSingleSelectField = JiraHasSelectableValueOptions
|
|
|
56233
56306
|
fieldOption?: Maybe<JiraOption>;
|
|
56234
56307
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
56235
56308
|
id: Scalars['ID']['output'];
|
|
56309
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
56236
56310
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
56237
56311
|
issue?: Maybe<JiraIssue>;
|
|
56238
56312
|
name: Scalars['String']['output'];
|
|
@@ -56265,6 +56339,7 @@ export declare type JiraConnectTextField = JiraIssueField & JiraIssueFieldConfig
|
|
|
56265
56339
|
fieldId: Scalars['String']['output'];
|
|
56266
56340
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
56267
56341
|
id: Scalars['ID']['output'];
|
|
56342
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
56268
56343
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
56269
56344
|
issue?: Maybe<JiraIssue>;
|
|
56270
56345
|
name: Scalars['String']['output'];
|
|
@@ -56668,6 +56743,7 @@ export declare type JiraCustomerServiceOrganizationField = JiraIssueField & Jira
|
|
|
56668
56743
|
fieldId: Scalars['String']['output'];
|
|
56669
56744
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
56670
56745
|
id: Scalars['ID']['output'];
|
|
56746
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
56671
56747
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
56672
56748
|
issue?: Maybe<JiraIssue>;
|
|
56673
56749
|
name: Scalars['String']['output'];
|
|
@@ -56719,6 +56795,7 @@ export declare type JiraDataClassificationField = JiraIssueField & JiraIssueFiel
|
|
|
56719
56795
|
fieldId: Scalars['String']['output'];
|
|
56720
56796
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
56721
56797
|
id: Scalars['ID']['output'];
|
|
56798
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
56722
56799
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
56723
56800
|
issue?: Maybe<JiraIssue>;
|
|
56724
56801
|
name: Scalars['String']['output'];
|
|
@@ -56775,6 +56852,7 @@ export declare type JiraDatePickerField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
56775
56852
|
fieldId: Scalars['String']['output'];
|
|
56776
56853
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
56777
56854
|
id: Scalars['ID']['output'];
|
|
56855
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
56778
56856
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
56779
56857
|
issue?: Maybe<JiraIssue>;
|
|
56780
56858
|
name: Scalars['String']['output'];
|
|
@@ -56811,6 +56889,7 @@ export declare type JiraDateTimePickerField = JiraIssueField & JiraIssueFieldCon
|
|
|
56811
56889
|
fieldId: Scalars['String']['output'];
|
|
56812
56890
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
56813
56891
|
id: Scalars['ID']['output'];
|
|
56892
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
56814
56893
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
56815
56894
|
issue?: Maybe<JiraIssue>;
|
|
56816
56895
|
name: Scalars['String']['output'];
|
|
@@ -57287,6 +57366,7 @@ export declare type JiraDevSummaryField = JiraIssueField & Node & {
|
|
|
57287
57366
|
fieldId: Scalars['String']['output'];
|
|
57288
57367
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
57289
57368
|
id: Scalars['ID']['output'];
|
|
57369
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
57290
57370
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
57291
57371
|
issue?: Maybe<JiraIssue>;
|
|
57292
57372
|
name: Scalars['String']['output'];
|
|
@@ -57349,6 +57429,7 @@ export declare type JiraDurationField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
57349
57429
|
fieldId: Scalars['String']['output'];
|
|
57350
57430
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
57351
57431
|
id: Scalars['ID']['output'];
|
|
57432
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
57352
57433
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
57353
57434
|
issue?: Maybe<JiraIssue>;
|
|
57354
57435
|
name: Scalars['String']['output'];
|
|
@@ -57460,6 +57541,7 @@ export declare type JiraEpicLinkField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
57460
57541
|
fieldId: Scalars['String']['output'];
|
|
57461
57542
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
57462
57543
|
id: Scalars['ID']['output'];
|
|
57544
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
57463
57545
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
57464
57546
|
issue?: Maybe<JiraIssue>;
|
|
57465
57547
|
name: Scalars['String']['output'];
|
|
@@ -57520,6 +57602,7 @@ export declare type JiraFallbackField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
57520
57602
|
fieldId: Scalars['String']['output'];
|
|
57521
57603
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
57522
57604
|
id: Scalars['ID']['output'];
|
|
57605
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
57523
57606
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
57524
57607
|
issue?: Maybe<JiraIssue>;
|
|
57525
57608
|
name: Scalars['String']['output'];
|
|
@@ -57897,6 +57980,7 @@ export declare type JiraFlagField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
57897
57980
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
57898
57981
|
flag?: Maybe<JiraFlag>;
|
|
57899
57982
|
id: Scalars['ID']['output'];
|
|
57983
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
57900
57984
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
57901
57985
|
issue?: Maybe<JiraIssue>;
|
|
57902
57986
|
name: Scalars['String']['output'];
|
|
@@ -57919,6 +58003,7 @@ export declare type JiraForgeDateField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
57919
58003
|
fieldId: Scalars['String']['output'];
|
|
57920
58004
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
57921
58005
|
id: Scalars['ID']['output'];
|
|
58006
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
57922
58007
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
57923
58008
|
issue?: Maybe<JiraIssue>;
|
|
57924
58009
|
name: Scalars['String']['output'];
|
|
@@ -57935,6 +58020,7 @@ export declare type JiraForgeDatetimeField = JiraIssueField & JiraIssueFieldConf
|
|
|
57935
58020
|
fieldId: Scalars['String']['output'];
|
|
57936
58021
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
57937
58022
|
id: Scalars['ID']['output'];
|
|
58023
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
57938
58024
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
57939
58025
|
issue?: Maybe<JiraIssue>;
|
|
57940
58026
|
name: Scalars['String']['output'];
|
|
@@ -57988,6 +58074,7 @@ export declare type JiraForgeGroupField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
57988
58074
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
57989
58075
|
groups?: Maybe<JiraGroupConnection>;
|
|
57990
58076
|
id: Scalars['ID']['output'];
|
|
58077
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
57991
58078
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
57992
58079
|
issue?: Maybe<JiraIssue>;
|
|
57993
58080
|
name: Scalars['String']['output'];
|
|
@@ -58013,6 +58100,7 @@ export declare type JiraForgeGroupsField = JiraIssueField & JiraIssueFieldConfig
|
|
|
58013
58100
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
58014
58101
|
groups?: Maybe<JiraGroupConnection>;
|
|
58015
58102
|
id: Scalars['ID']['output'];
|
|
58103
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
58016
58104
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
58017
58105
|
issue?: Maybe<JiraIssue>;
|
|
58018
58106
|
name: Scalars['String']['output'];
|
|
@@ -58054,6 +58142,7 @@ export declare type JiraForgeNumberField = JiraIssueField & JiraIssueFieldConfig
|
|
|
58054
58142
|
fieldId: Scalars['String']['output'];
|
|
58055
58143
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
58056
58144
|
id: Scalars['ID']['output'];
|
|
58145
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
58057
58146
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
58058
58147
|
issue?: Maybe<JiraIssue>;
|
|
58059
58148
|
name: Scalars['String']['output'];
|
|
@@ -58070,6 +58159,7 @@ export declare type JiraForgeObjectField = JiraIssueField & JiraIssueFieldConfig
|
|
|
58070
58159
|
fieldId: Scalars['String']['output'];
|
|
58071
58160
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
58072
58161
|
id: Scalars['ID']['output'];
|
|
58162
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
58073
58163
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
58074
58164
|
issue?: Maybe<JiraIssue>;
|
|
58075
58165
|
name: Scalars['String']['output'];
|
|
@@ -58111,6 +58201,7 @@ export declare type JiraForgeStringField = JiraIssueField & JiraIssueFieldConfig
|
|
|
58111
58201
|
fieldId: Scalars['String']['output'];
|
|
58112
58202
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
58113
58203
|
id: Scalars['ID']['output'];
|
|
58204
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
58114
58205
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
58115
58206
|
issue?: Maybe<JiraIssue>;
|
|
58116
58207
|
name: Scalars['String']['output'];
|
|
@@ -58127,6 +58218,7 @@ export declare type JiraForgeStringsField = JiraIssueField & JiraIssueFieldConfi
|
|
|
58127
58218
|
fieldId: Scalars['String']['output'];
|
|
58128
58219
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
58129
58220
|
id: Scalars['ID']['output'];
|
|
58221
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
58130
58222
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
58131
58223
|
issue?: Maybe<JiraIssue>;
|
|
58132
58224
|
labels?: Maybe<JiraLabelConnection>;
|
|
@@ -58160,6 +58252,7 @@ export declare type JiraForgeUserField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
58160
58252
|
fieldId: Scalars['String']['output'];
|
|
58161
58253
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
58162
58254
|
id: Scalars['ID']['output'];
|
|
58255
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
58163
58256
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
58164
58257
|
issue?: Maybe<JiraIssue>;
|
|
58165
58258
|
name: Scalars['String']['output'];
|
|
@@ -58186,6 +58279,7 @@ export declare type JiraForgeUsersField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
58186
58279
|
fieldId: Scalars['String']['output'];
|
|
58187
58280
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
58188
58281
|
id: Scalars['ID']['output'];
|
|
58282
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
58189
58283
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
58190
58284
|
issue?: Maybe<JiraIssue>;
|
|
58191
58285
|
name: Scalars['String']['output'];
|
|
@@ -58331,6 +58425,7 @@ export declare type JiraGenericIssueField = JiraIssueField & JiraIssueFieldConfi
|
|
|
58331
58425
|
fieldId: Scalars['String']['output'];
|
|
58332
58426
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
58333
58427
|
id: Scalars['ID']['output'];
|
|
58428
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
58334
58429
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
58335
58430
|
issue?: Maybe<JiraIssue>;
|
|
58336
58431
|
name: Scalars['String']['output'];
|
|
@@ -58445,6 +58540,7 @@ export declare type JiraGoalsField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
58445
58540
|
fieldId: Scalars['String']['output'];
|
|
58446
58541
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
58447
58542
|
id: Scalars['ID']['output'];
|
|
58543
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
58448
58544
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
58449
58545
|
issue?: Maybe<JiraIssue>;
|
|
58450
58546
|
name: Scalars['String']['output'];
|
|
@@ -59285,6 +59381,7 @@ export declare type JiraIssueField = {
|
|
|
59285
59381
|
fieldId: Scalars['String']['output'];
|
|
59286
59382
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
59287
59383
|
id: Scalars['ID']['output'];
|
|
59384
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
59288
59385
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
59289
59386
|
issue?: Maybe<JiraIssue>;
|
|
59290
59387
|
name: Scalars['String']['output'];
|
|
@@ -59612,6 +59709,7 @@ export declare type JiraIssueLinkField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
59612
59709
|
fieldId: Scalars['String']['output'];
|
|
59613
59710
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
59614
59711
|
id: Scalars['ID']['output'];
|
|
59712
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
59615
59713
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
59616
59714
|
issue?: Maybe<JiraIssue>;
|
|
59617
59715
|
issueLinkConnection?: Maybe<JiraIssueLinkConnection>;
|
|
@@ -59752,6 +59850,7 @@ export declare type JiraIssueRestrictionField = JiraIssueField & JiraIssueFieldC
|
|
|
59752
59850
|
fieldId: Scalars['String']['output'];
|
|
59753
59851
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
59754
59852
|
id: Scalars['ID']['output'];
|
|
59853
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
59755
59854
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
59756
59855
|
issue?: Maybe<JiraIssue>;
|
|
59757
59856
|
name: Scalars['String']['output'];
|
|
@@ -60110,6 +60209,10 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
60110
60209
|
view?: Maybe<JiraIssueSearchView>;
|
|
60111
60210
|
};
|
|
60112
60211
|
export declare type JiraIssueSearchViewResult = JiraIssueSearchView | QueryError;
|
|
60212
|
+
export declare type JiraIssueStreamHubEventPayloadProject = {
|
|
60213
|
+
__typename?: 'JiraIssueStreamHubEventPayloadProject';
|
|
60214
|
+
id: Scalars['Int']['output'];
|
|
60215
|
+
};
|
|
60113
60216
|
export declare type JiraIssueTransitionComment = {
|
|
60114
60217
|
__typename?: 'JiraIssueTransitionComment';
|
|
60115
60218
|
adminRichTextConfig?: Maybe<JiraAdminRichTextFieldConfig>;
|
|
@@ -60242,6 +60345,7 @@ export declare type JiraIssueTypeField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
60242
60345
|
fieldId: Scalars['String']['output'];
|
|
60243
60346
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
60244
60347
|
id: Scalars['ID']['output'];
|
|
60348
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
60245
60349
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
60246
60350
|
issue?: Maybe<JiraIssue>;
|
|
60247
60351
|
issueType?: Maybe<JiraIssueType>;
|
|
@@ -60378,6 +60482,13 @@ export declare type JiraJqlHistoryEdge = {
|
|
|
60378
60482
|
__typename?: 'JiraJQLHistoryEdge';
|
|
60379
60483
|
node?: Maybe<JiraJqlHistory>;
|
|
60380
60484
|
};
|
|
60485
|
+
export declare type JiraJirtEventPayload = {
|
|
60486
|
+
__typename?: 'JiraJirtEventPayload';
|
|
60487
|
+
actionerAccountId?: Maybe<Scalars['String']['output']>;
|
|
60488
|
+
project: JiraIssueStreamHubEventPayloadProject;
|
|
60489
|
+
resource: Scalars['String']['output'];
|
|
60490
|
+
type: Scalars['String']['output'];
|
|
60491
|
+
};
|
|
60381
60492
|
export declare enum JiraJourneyActiveState {
|
|
60382
60493
|
Active = "ACTIVE",
|
|
60383
60494
|
Inactive = "INACTIVE",
|
|
@@ -61143,6 +61254,7 @@ export declare type JiraLabelsField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
61143
61254
|
fieldId: Scalars['String']['output'];
|
|
61144
61255
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
61145
61256
|
id: Scalars['ID']['output'];
|
|
61257
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
61146
61258
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
61147
61259
|
issue?: Maybe<JiraIssue>;
|
|
61148
61260
|
labels?: Maybe<JiraLabelConnection>;
|
|
@@ -61417,6 +61529,7 @@ export declare type JiraMultipleGroupPickerField = JiraIssueField & JiraIssueFie
|
|
|
61417
61529
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
61418
61530
|
groups?: Maybe<JiraGroupConnection>;
|
|
61419
61531
|
id: Scalars['ID']['output'];
|
|
61532
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
61420
61533
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
61421
61534
|
issue?: Maybe<JiraIssue>;
|
|
61422
61535
|
name: Scalars['String']['output'];
|
|
@@ -61467,6 +61580,7 @@ export declare type JiraMultipleSelectField = JiraHasMultipleSelectedValues & Ji
|
|
|
61467
61580
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
61468
61581
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
61469
61582
|
id: Scalars['ID']['output'];
|
|
61583
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
61470
61584
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
61471
61585
|
issue?: Maybe<JiraIssue>;
|
|
61472
61586
|
name: Scalars['String']['output'];
|
|
@@ -61529,6 +61643,7 @@ export declare type JiraMultipleSelectUserPickerField = JiraIssueField & JiraIss
|
|
|
61529
61643
|
fieldId: Scalars['String']['output'];
|
|
61530
61644
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
61531
61645
|
id: Scalars['ID']['output'];
|
|
61646
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
61532
61647
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
61533
61648
|
issue?: Maybe<JiraIssue>;
|
|
61534
61649
|
name: Scalars['String']['output'];
|
|
@@ -61576,6 +61691,7 @@ export declare type JiraMultipleVersionPickerField = JiraHasMultipleSelectedValu
|
|
|
61576
61691
|
fieldId: Scalars['String']['output'];
|
|
61577
61692
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
61578
61693
|
id: Scalars['ID']['output'];
|
|
61694
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
61579
61695
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
61580
61696
|
issue?: Maybe<JiraIssue>;
|
|
61581
61697
|
name: Scalars['String']['output'];
|
|
@@ -62709,6 +62825,7 @@ export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
62709
62825
|
fieldId: Scalars['String']['output'];
|
|
62710
62826
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
62711
62827
|
id: Scalars['ID']['output'];
|
|
62828
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
62712
62829
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
62713
62830
|
isStoryPointField?: Maybe<Scalars['Boolean']['output']>;
|
|
62714
62831
|
issue?: Maybe<JiraIssue>;
|
|
@@ -63011,6 +63128,7 @@ export declare type JiraOriginalTimeEstimateField = JiraIssueField & JiraIssueFi
|
|
|
63011
63128
|
fieldId: Scalars['String']['output'];
|
|
63012
63129
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
63013
63130
|
id: Scalars['ID']['output'];
|
|
63131
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
63014
63132
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
63015
63133
|
issue?: Maybe<JiraIssue>;
|
|
63016
63134
|
name: Scalars['String']['output'];
|
|
@@ -63078,6 +63196,7 @@ export declare type JiraParentIssueField = JiraIssueField & JiraIssueFieldConfig
|
|
|
63078
63196
|
fieldId: Scalars['String']['output'];
|
|
63079
63197
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
63080
63198
|
id: Scalars['ID']['output'];
|
|
63199
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
63081
63200
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
63082
63201
|
issue?: Maybe<JiraIssue>;
|
|
63083
63202
|
name: Scalars['String']['output'];
|
|
@@ -63151,6 +63270,7 @@ export declare type JiraPeopleField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
63151
63270
|
fieldId: Scalars['String']['output'];
|
|
63152
63271
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
63153
63272
|
id: Scalars['ID']['output'];
|
|
63273
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
63154
63274
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
63155
63275
|
isMulti?: Maybe<Scalars['Boolean']['output']>;
|
|
63156
63276
|
issue?: Maybe<JiraIssue>;
|
|
@@ -63595,6 +63715,7 @@ export declare type JiraPriorityField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
63595
63715
|
fieldId: Scalars['String']['output'];
|
|
63596
63716
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
63597
63717
|
id: Scalars['ID']['output'];
|
|
63718
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
63598
63719
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
63599
63720
|
issue?: Maybe<JiraIssue>;
|
|
63600
63721
|
name: Scalars['String']['output'];
|
|
@@ -63645,6 +63766,7 @@ export declare type JiraProformaFormsField = JiraIssueField & JiraIssueFieldConf
|
|
|
63645
63766
|
fieldId: Scalars['String']['output'];
|
|
63646
63767
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
63647
63768
|
id: Scalars['ID']['output'];
|
|
63769
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
63648
63770
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
63649
63771
|
issue?: Maybe<JiraIssue>;
|
|
63650
63772
|
name: Scalars['String']['output'];
|
|
@@ -64036,6 +64158,7 @@ export declare type JiraProjectField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
64036
64158
|
fieldId: Scalars['String']['output'];
|
|
64037
64159
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
64038
64160
|
id: Scalars['ID']['output'];
|
|
64161
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
64039
64162
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
64040
64163
|
issue?: Maybe<JiraIssue>;
|
|
64041
64164
|
name: Scalars['String']['output'];
|
|
@@ -64400,6 +64523,9 @@ export declare type JiraProjectsSidebarMenu = {
|
|
|
64400
64523
|
favouriteLimit?: Maybe<Scalars['Int']['output']>;
|
|
64401
64524
|
favourites?: Maybe<JiraProjectConnection>;
|
|
64402
64525
|
id: Scalars['ID']['output'];
|
|
64526
|
+
more?: Maybe<JiraProjectConnection>;
|
|
64527
|
+
moreFavourites?: Maybe<JiraProjectConnection>;
|
|
64528
|
+
moreRecents?: Maybe<JiraProjectConnection>;
|
|
64403
64529
|
recentLimit?: Maybe<Scalars['Int']['output']>;
|
|
64404
64530
|
recents?: Maybe<JiraProjectConnection>;
|
|
64405
64531
|
};
|
|
@@ -64409,6 +64535,18 @@ export declare type JiraProjectsSidebarMenuFavouritesArgs = {
|
|
|
64409
64535
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64410
64536
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64411
64537
|
};
|
|
64538
|
+
export declare type JiraProjectsSidebarMenuMoreArgs = {
|
|
64539
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
64540
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64541
|
+
};
|
|
64542
|
+
export declare type JiraProjectsSidebarMenuMoreFavouritesArgs = {
|
|
64543
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
64544
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64545
|
+
};
|
|
64546
|
+
export declare type JiraProjectsSidebarMenuMoreRecentsArgs = {
|
|
64547
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
64548
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64549
|
+
};
|
|
64412
64550
|
export declare type JiraProjectsSidebarMenuRecentsArgs = {
|
|
64413
64551
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
64414
64552
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -64506,6 +64644,7 @@ export declare type JiraQuery = {
|
|
|
64506
64644
|
globalTimeTrackingSettings?: Maybe<JiraTimeTrackingSettings>;
|
|
64507
64645
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
64508
64646
|
groupCommentVisibilities?: Maybe<JiraGroupConnection>;
|
|
64647
|
+
groupsForIssues?: Maybe<JiraSpreadsheetGroupConnection>;
|
|
64509
64648
|
hasGlobalPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
64510
64649
|
hasProjectPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
64511
64650
|
installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
|
|
@@ -64949,6 +65088,18 @@ export declare type JiraQueryGroupCommentVisibilitiesArgs = {
|
|
|
64949
65088
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64950
65089
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64951
65090
|
};
|
|
65091
|
+
export declare type JiraQueryGroupsForIssuesArgs = {
|
|
65092
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
65093
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
65094
|
+
cloudId: Scalars['ID']['input'];
|
|
65095
|
+
fieldId: Scalars['String']['input'];
|
|
65096
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65097
|
+
firstNGroupsToSearch: Scalars['Int']['input'];
|
|
65098
|
+
issueChanges?: InputMaybe<Array<JiraIssueChangeInput>>;
|
|
65099
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
65100
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
65101
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
65102
|
+
};
|
|
64952
65103
|
export declare type JiraQueryHasGlobalPermissionArgs = {
|
|
64953
65104
|
cloudId: Scalars['ID']['input'];
|
|
64954
65105
|
key: JiraGlobalPermissionType;
|
|
@@ -65630,6 +65781,7 @@ export declare type JiraRadioSelectField = JiraIssueField & JiraIssueFieldConfig
|
|
|
65630
65781
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
65631
65782
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
65632
65783
|
id: Scalars['ID']['output'];
|
|
65784
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
65633
65785
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
65634
65786
|
issue?: Maybe<JiraIssue>;
|
|
65635
65787
|
name: Scalars['String']['output'];
|
|
@@ -65880,6 +66032,7 @@ export declare type JiraRemainingTimeEstimateField = JiraIssueField & JiraIssueF
|
|
|
65880
66032
|
fieldId: Scalars['String']['output'];
|
|
65881
66033
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
65882
66034
|
id: Scalars['ID']['output'];
|
|
66035
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
65883
66036
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
65884
66037
|
issue?: Maybe<JiraIssue>;
|
|
65885
66038
|
name: Scalars['String']['output'];
|
|
@@ -66081,6 +66234,7 @@ export declare type JiraResolutionField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
66081
66234
|
fieldId: Scalars['String']['output'];
|
|
66082
66235
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
66083
66236
|
id: Scalars['ID']['output'];
|
|
66237
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
66084
66238
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
66085
66239
|
issue?: Maybe<JiraIssue>;
|
|
66086
66240
|
name: Scalars['String']['output'];
|
|
@@ -66270,6 +66424,7 @@ export declare type JiraRichTextField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
66270
66424
|
fieldId: Scalars['String']['output'];
|
|
66271
66425
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
66272
66426
|
id: Scalars['ID']['output'];
|
|
66427
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
66273
66428
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
66274
66429
|
issue?: Maybe<JiraIssue>;
|
|
66275
66430
|
mediaContext?: Maybe<JiraMediaContext>;
|
|
@@ -66581,6 +66736,7 @@ export declare type JiraSecurityLevelField = JiraIssueField & JiraIssueFieldConf
|
|
|
66581
66736
|
fieldId: Scalars['String']['output'];
|
|
66582
66737
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
66583
66738
|
id: Scalars['ID']['output'];
|
|
66739
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
66584
66740
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
66585
66741
|
issue?: Maybe<JiraIssue>;
|
|
66586
66742
|
name: Scalars['String']['output'];
|
|
@@ -66715,6 +66871,7 @@ export declare type JiraServiceManagementApprovalField = JiraIssueField & JiraIs
|
|
|
66715
66871
|
fieldId: Scalars['String']['output'];
|
|
66716
66872
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
66717
66873
|
id: Scalars['ID']['output'];
|
|
66874
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
66718
66875
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
66719
66876
|
issue?: Maybe<JiraIssue>;
|
|
66720
66877
|
name: Scalars['String']['output'];
|
|
@@ -66958,6 +67115,7 @@ export declare type JiraServiceManagementDateTimeField = JiraIssueField & JiraIs
|
|
|
66958
67115
|
fieldId: Scalars['String']['output'];
|
|
66959
67116
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
66960
67117
|
id: Scalars['ID']['output'];
|
|
67118
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
66961
67119
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
66962
67120
|
issue?: Maybe<JiraIssue>;
|
|
66963
67121
|
name: Scalars['String']['output'];
|
|
@@ -67015,6 +67173,7 @@ export declare type JiraServiceManagementEntitlementField = JiraIssueField & Jir
|
|
|
67015
67173
|
fieldId: Scalars['String']['output'];
|
|
67016
67174
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
67017
67175
|
id: Scalars['ID']['output'];
|
|
67176
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
67018
67177
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
67019
67178
|
issue?: Maybe<JiraIssue>;
|
|
67020
67179
|
name: Scalars['String']['output'];
|
|
@@ -67056,6 +67215,7 @@ export declare type JiraServiceManagementIncidentLinkingField = JiraIssueField &
|
|
|
67056
67215
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
67057
67216
|
id: Scalars['ID']['output'];
|
|
67058
67217
|
incident?: Maybe<JiraServiceManagementIncident>;
|
|
67218
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
67059
67219
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
67060
67220
|
issue?: Maybe<JiraIssue>;
|
|
67061
67221
|
name: Scalars['String']['output'];
|
|
@@ -67077,6 +67237,7 @@ export declare type JiraServiceManagementMajorIncidentField = JiraIssueField & J
|
|
|
67077
67237
|
fieldId: Scalars['String']['output'];
|
|
67078
67238
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
67079
67239
|
id: Scalars['ID']['output'];
|
|
67240
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
67080
67241
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
67081
67242
|
issue?: Maybe<JiraIssue>;
|
|
67082
67243
|
majorIncident?: Maybe<JiraServiceManagementMajorIncident>;
|
|
@@ -67126,6 +67287,7 @@ export declare type JiraServiceManagementMultipleSelectUserPickerField = JiraIss
|
|
|
67126
67287
|
fieldId: Scalars['String']['output'];
|
|
67127
67288
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
67128
67289
|
id: Scalars['ID']['output'];
|
|
67290
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
67129
67291
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
67130
67292
|
issue?: Maybe<JiraIssue>;
|
|
67131
67293
|
name: Scalars['String']['output'];
|
|
@@ -67181,6 +67343,7 @@ export declare type JiraServiceManagementOrganizationField = JiraHasMultipleSele
|
|
|
67181
67343
|
fieldId: Scalars['String']['output'];
|
|
67182
67344
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
67183
67345
|
id: Scalars['ID']['output'];
|
|
67346
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
67184
67347
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
67185
67348
|
issue?: Maybe<JiraIssue>;
|
|
67186
67349
|
name: Scalars['String']['output'];
|
|
@@ -67240,6 +67403,7 @@ export declare type JiraServiceManagementPeopleField = JiraIssueField & JiraIssu
|
|
|
67240
67403
|
fieldId: Scalars['String']['output'];
|
|
67241
67404
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
67242
67405
|
id: Scalars['ID']['output'];
|
|
67406
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
67243
67407
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
67244
67408
|
isMulti?: Maybe<Scalars['Boolean']['output']>;
|
|
67245
67409
|
issue?: Maybe<JiraIssue>;
|
|
@@ -67321,6 +67485,7 @@ export declare type JiraServiceManagementRequestFeedbackField = JiraIssueField &
|
|
|
67321
67485
|
fieldId: Scalars['String']['output'];
|
|
67322
67486
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
67323
67487
|
id: Scalars['ID']['output'];
|
|
67488
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
67324
67489
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
67325
67490
|
issue?: Maybe<JiraIssue>;
|
|
67326
67491
|
name: Scalars['String']['output'];
|
|
@@ -67335,6 +67500,7 @@ export declare type JiraServiceManagementRequestLanguageField = JiraIssueField &
|
|
|
67335
67500
|
fieldId: Scalars['String']['output'];
|
|
67336
67501
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
67337
67502
|
id: Scalars['ID']['output'];
|
|
67503
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
67338
67504
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
67339
67505
|
issue?: Maybe<JiraIssue>;
|
|
67340
67506
|
language?: Maybe<JiraServiceManagementLanguage>;
|
|
@@ -67424,6 +67590,7 @@ export declare type JiraServiceManagementRequestTypeField = JiraIssueField & Jir
|
|
|
67424
67590
|
fieldId: Scalars['String']['output'];
|
|
67425
67591
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
67426
67592
|
id: Scalars['ID']['output'];
|
|
67593
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
67427
67594
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
67428
67595
|
issue?: Maybe<JiraIssue>;
|
|
67429
67596
|
name: Scalars['String']['output'];
|
|
@@ -67524,6 +67691,7 @@ export declare type JiraServiceManagementRespondersField = JiraIssueField & Jira
|
|
|
67524
67691
|
fieldId: Scalars['String']['output'];
|
|
67525
67692
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
67526
67693
|
id: Scalars['ID']['output'];
|
|
67694
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
67527
67695
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
67528
67696
|
issue?: Maybe<JiraIssue>;
|
|
67529
67697
|
name: Scalars['String']['output'];
|
|
@@ -67560,6 +67728,7 @@ export declare type JiraServiceManagementSentimentField = JiraIssueField & JiraI
|
|
|
67560
67728
|
fieldId: Scalars['String']['output'];
|
|
67561
67729
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
67562
67730
|
id: Scalars['ID']['output'];
|
|
67731
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
67563
67732
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
67564
67733
|
issue?: Maybe<JiraIssue>;
|
|
67565
67734
|
name: Scalars['String']['output'];
|
|
@@ -67684,6 +67853,19 @@ export declare type JiraSetApplicationPropertyInput = {
|
|
|
67684
67853
|
key: Scalars['String']['input'];
|
|
67685
67854
|
value: Scalars['String']['input'];
|
|
67686
67855
|
};
|
|
67856
|
+
export declare type JiraSetBoardIssueCardCoverInput = {
|
|
67857
|
+
coverType: JiraBackgroundType;
|
|
67858
|
+
coverValue: Scalars['String']['input'];
|
|
67859
|
+
issueId: Scalars['ID']['input'];
|
|
67860
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
67861
|
+
viewId: Scalars['ID']['input'];
|
|
67862
|
+
};
|
|
67863
|
+
export declare type JiraSetBoardIssueCardCoverPayload = Payload & {
|
|
67864
|
+
__typename?: 'JiraSetBoardIssueCardCoverPayload';
|
|
67865
|
+
boardView?: Maybe<JiraBoardView>;
|
|
67866
|
+
errors?: Maybe<Array<MutationError>>;
|
|
67867
|
+
success: Scalars['Boolean']['output'];
|
|
67868
|
+
};
|
|
67687
67869
|
export declare type JiraSetBoardViewCardFieldSelectedInput = {
|
|
67688
67870
|
fieldId: Scalars['String']['input'];
|
|
67689
67871
|
selected: Scalars['Boolean']['input'];
|
|
@@ -67988,6 +68170,7 @@ export declare type JiraSingleGroupPickerField = JiraIssueField & JiraIssueField
|
|
|
67988
68170
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
67989
68171
|
groups?: Maybe<JiraGroupConnection>;
|
|
67990
68172
|
id: Scalars['ID']['output'];
|
|
68173
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
67991
68174
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
67992
68175
|
issue?: Maybe<JiraIssue>;
|
|
67993
68176
|
name: Scalars['String']['output'];
|
|
@@ -68026,6 +68209,7 @@ export declare type JiraSingleLineTextField = JiraIssueField & JiraIssueFieldCon
|
|
|
68026
68209
|
fieldId: Scalars['String']['output'];
|
|
68027
68210
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
68028
68211
|
id: Scalars['ID']['output'];
|
|
68212
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
68029
68213
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
68030
68214
|
issue?: Maybe<JiraIssue>;
|
|
68031
68215
|
name: Scalars['String']['output'];
|
|
@@ -68061,6 +68245,7 @@ export declare type JiraSingleSelectField = JiraHasSelectableValueOptions & Jira
|
|
|
68061
68245
|
fieldOption?: Maybe<JiraOption>;
|
|
68062
68246
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
68063
68247
|
id: Scalars['ID']['output'];
|
|
68248
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
68064
68249
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
68065
68250
|
issue?: Maybe<JiraIssue>;
|
|
68066
68251
|
name: Scalars['String']['output'];
|
|
@@ -68108,6 +68293,7 @@ export declare type JiraSingleSelectUserPickerField = JiraIssueField & JiraIssue
|
|
|
68108
68293
|
fieldId: Scalars['String']['output'];
|
|
68109
68294
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
68110
68295
|
id: Scalars['ID']['output'];
|
|
68296
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
68111
68297
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
68112
68298
|
issue?: Maybe<JiraIssue>;
|
|
68113
68299
|
name: Scalars['String']['output'];
|
|
@@ -68152,6 +68338,7 @@ export declare type JiraSingleVersionPickerField = JiraHasSelectableValueOptions
|
|
|
68152
68338
|
fieldId: Scalars['String']['output'];
|
|
68153
68339
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
68154
68340
|
id: Scalars['ID']['output'];
|
|
68341
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
68155
68342
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
68156
68343
|
issue?: Maybe<JiraIssue>;
|
|
68157
68344
|
name: Scalars['String']['output'];
|
|
@@ -68359,6 +68546,7 @@ export declare type JiraSprintField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
68359
68546
|
fieldId: Scalars['String']['output'];
|
|
68360
68547
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
68361
68548
|
id: Scalars['ID']['output'];
|
|
68549
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
68362
68550
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
68363
68551
|
issue?: Maybe<JiraIssue>;
|
|
68364
68552
|
name: Scalars['String']['output'];
|
|
@@ -68472,6 +68660,7 @@ export declare type JiraStatusCategoryField = JiraIssueField & JiraIssueFieldCon
|
|
|
68472
68660
|
fieldId: Scalars['String']['output'];
|
|
68473
68661
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
68474
68662
|
id: Scalars['ID']['output'];
|
|
68663
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
68475
68664
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
68476
68665
|
issue?: Maybe<JiraIssue>;
|
|
68477
68666
|
name: Scalars['String']['output'];
|
|
@@ -68504,6 +68693,7 @@ export declare type JiraStatusField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
68504
68693
|
fieldId: Scalars['String']['output'];
|
|
68505
68694
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
68506
68695
|
id: Scalars['ID']['output'];
|
|
68696
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
68507
68697
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
68508
68698
|
issue?: Maybe<JiraIssue>;
|
|
68509
68699
|
name: Scalars['String']['output'];
|
|
@@ -68579,6 +68769,7 @@ export declare type JiraSubscription = {
|
|
|
68579
68769
|
onIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
68580
68770
|
onIssueExported?: Maybe<JiraIssueExportEvent>;
|
|
68581
68771
|
onIssueUpdatedByProject?: Maybe<JiraIssue>;
|
|
68772
|
+
onJirtIssueSubscription?: Maybe<JiraJirtEventPayload>;
|
|
68582
68773
|
onJwmFieldMutation?: Maybe<JiraJwmField>;
|
|
68583
68774
|
onJwmIssueCreatedByProject?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
68584
68775
|
onJwmIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
@@ -68641,6 +68832,12 @@ export declare type JiraSubscriptionOnIssueUpdatedByProjectArgs = {
|
|
|
68641
68832
|
cloudId: Scalars['ID']['input'];
|
|
68642
68833
|
projectId: Scalars['String']['input'];
|
|
68643
68834
|
};
|
|
68835
|
+
export declare type JiraSubscriptionOnJirtIssueSubscriptionArgs = {
|
|
68836
|
+
atlassianAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
68837
|
+
cloudId: Scalars['ID']['input'];
|
|
68838
|
+
events: Array<Scalars['String']['input']>;
|
|
68839
|
+
projectIds: Array<Scalars['String']['input']>;
|
|
68840
|
+
};
|
|
68644
68841
|
export declare type JiraSubscriptionOnJwmFieldMutationArgs = {
|
|
68645
68842
|
siteId: Scalars['ID']['input'];
|
|
68646
68843
|
};
|
|
@@ -68674,6 +68871,7 @@ export declare type JiraSubtasksField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
68674
68871
|
fieldId: Scalars['String']['output'];
|
|
68675
68872
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
68676
68873
|
id: Scalars['ID']['output'];
|
|
68874
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
68677
68875
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
68678
68876
|
issue?: Maybe<JiraIssue>;
|
|
68679
68877
|
name: Scalars['String']['output'];
|
|
@@ -68798,6 +68996,7 @@ export declare type JiraTeamField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
68798
68996
|
fieldId: Scalars['String']['output'];
|
|
68799
68997
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
68800
68998
|
id: Scalars['ID']['output'];
|
|
68999
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
68801
69000
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
68802
69001
|
issue?: Maybe<JiraIssue>;
|
|
68803
69002
|
name: Scalars['String']['output'];
|
|
@@ -68866,6 +69065,7 @@ export declare type JiraTeamViewField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
68866
69065
|
fieldId: Scalars['String']['output'];
|
|
68867
69066
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
68868
69067
|
id: Scalars['ID']['output'];
|
|
69068
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
68869
69069
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
68870
69070
|
issue?: Maybe<JiraIssue>;
|
|
68871
69071
|
name: Scalars['String']['output'];
|
|
@@ -68914,6 +69114,7 @@ export declare type JiraTimeTrackingField = JiraIssueField & JiraIssueFieldConfi
|
|
|
68914
69114
|
fieldId: Scalars['String']['output'];
|
|
68915
69115
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
68916
69116
|
id: Scalars['ID']['output'];
|
|
69117
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
68917
69118
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
68918
69119
|
issue?: Maybe<JiraIssue>;
|
|
68919
69120
|
name: Scalars['String']['output'];
|
|
@@ -69535,6 +69736,7 @@ export declare type JiraUrlField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
69535
69736
|
fieldId: Scalars['String']['output'];
|
|
69536
69737
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
69537
69738
|
id: Scalars['ID']['output'];
|
|
69739
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
69538
69740
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
69539
69741
|
issue?: Maybe<JiraIssue>;
|
|
69540
69742
|
name: Scalars['String']['output'];
|
|
@@ -70320,6 +70522,7 @@ export declare type JiraVotesField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
70320
70522
|
fieldId: Scalars['String']['output'];
|
|
70321
70523
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
70322
70524
|
id: Scalars['ID']['output'];
|
|
70525
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
70323
70526
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
70324
70527
|
issue?: Maybe<JiraIssue>;
|
|
70325
70528
|
name: Scalars['String']['output'];
|
|
@@ -70360,6 +70563,7 @@ export declare type JiraWatchesField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
70360
70563
|
fieldId: Scalars['String']['output'];
|
|
70361
70564
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
70362
70565
|
id: Scalars['ID']['output'];
|
|
70566
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
70363
70567
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
70364
70568
|
issue?: Maybe<JiraIssue>;
|
|
70365
70569
|
name: Scalars['String']['output'];
|
|
@@ -70416,6 +70620,7 @@ export declare type JiraWorkCategoryField = JiraIssueField & JiraIssueFieldConfi
|
|
|
70416
70620
|
fieldId: Scalars['String']['output'];
|
|
70417
70621
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
70418
70622
|
id: Scalars['ID']['output'];
|
|
70623
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
70419
70624
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
70420
70625
|
issue?: Maybe<JiraIssue>;
|
|
70421
70626
|
name: Scalars['String']['output'];
|
|
@@ -70442,6 +70647,7 @@ export declare type JiraWorkLogField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
70442
70647
|
fieldId: Scalars['String']['output'];
|
|
70443
70648
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
70444
70649
|
id: Scalars['ID']['output'];
|
|
70650
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
70445
70651
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
70446
70652
|
issue?: Maybe<JiraIssue>;
|
|
70447
70653
|
mediaContext?: Maybe<JiraMediaContext>;
|
|
@@ -75362,6 +75568,9 @@ export declare type MercuryAggregatedPortfolioStatusCount = {
|
|
|
75362
75568
|
__typename?: 'MercuryAggregatedPortfolioStatusCount';
|
|
75363
75569
|
children: MercuryFocusAreaStatusCount;
|
|
75364
75570
|
};
|
|
75571
|
+
export declare type MercuryArchiveFocusAreaChangeInput = {
|
|
75572
|
+
targetFocusAreaId: Scalars['ID']['input'];
|
|
75573
|
+
};
|
|
75365
75574
|
export declare type MercuryArchiveFocusAreaInput = {
|
|
75366
75575
|
cloudId: Scalars['ID']['input'];
|
|
75367
75576
|
id: Scalars['ID']['input'];
|
|
@@ -75377,6 +75586,17 @@ export declare type MercuryBudgetAggregation = {
|
|
|
75377
75586
|
totalAssignedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
75378
75587
|
};
|
|
75379
75588
|
export declare type MercuryChange = MercuryCreateFocusAreaChange | MercuryPositionAllocationChange;
|
|
75589
|
+
export declare type MercuryChangeConnection = {
|
|
75590
|
+
__typename?: 'MercuryChangeConnection';
|
|
75591
|
+
edges?: Maybe<Array<Maybe<MercuryChangeEdge>>>;
|
|
75592
|
+
pageInfo: PageInfo;
|
|
75593
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
75594
|
+
};
|
|
75595
|
+
export declare type MercuryChangeEdge = {
|
|
75596
|
+
__typename?: 'MercuryChangeEdge';
|
|
75597
|
+
cursor: Scalars['String']['output'];
|
|
75598
|
+
node?: Maybe<MercuryChange>;
|
|
75599
|
+
};
|
|
75380
75600
|
export declare type MercuryChangeInterface = {
|
|
75381
75601
|
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
75382
75602
|
changeType: MercuryChangeType;
|
|
@@ -75425,26 +75645,6 @@ export declare type MercuryChangeProposalConnection = {
|
|
|
75425
75645
|
pageInfo: PageInfo;
|
|
75426
75646
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
75427
75647
|
};
|
|
75428
|
-
export declare type MercuryChangeProposalCreateCommentInput = {
|
|
75429
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
75430
|
-
content: Scalars['String']['input'];
|
|
75431
|
-
id: Scalars['ID']['input'];
|
|
75432
|
-
};
|
|
75433
|
-
export declare type MercuryChangeProposalCreateCommentPayload = Payload & {
|
|
75434
|
-
__typename?: 'MercuryChangeProposalCreateCommentPayload';
|
|
75435
|
-
createdComment?: Maybe<MercuryChangeProposalComment>;
|
|
75436
|
-
errors?: Maybe<Array<MutationError>>;
|
|
75437
|
-
success: Scalars['Boolean']['output'];
|
|
75438
|
-
};
|
|
75439
|
-
export declare type MercuryChangeProposalDeleteCommentInput = {
|
|
75440
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
75441
|
-
id: Scalars['ID']['input'];
|
|
75442
|
-
};
|
|
75443
|
-
export declare type MercuryChangeProposalDeleteCommentPayload = Payload & {
|
|
75444
|
-
__typename?: 'MercuryChangeProposalDeleteCommentPayload';
|
|
75445
|
-
errors?: Maybe<Array<MutationError>>;
|
|
75446
|
-
success: Scalars['Boolean']['output'];
|
|
75447
|
-
};
|
|
75448
75648
|
export declare type MercuryChangeProposalEdge = {
|
|
75449
75649
|
__typename?: 'MercuryChangeProposalEdge';
|
|
75450
75650
|
cursor: Scalars['String']['output'];
|
|
@@ -75474,17 +75674,13 @@ export declare type MercuryChangeProposalStatusTransitions = {
|
|
|
75474
75674
|
__typename?: 'MercuryChangeProposalStatusTransitions';
|
|
75475
75675
|
available: Array<MercuryChangeProposalStatusTransition>;
|
|
75476
75676
|
};
|
|
75477
|
-
export declare type
|
|
75478
|
-
|
|
75479
|
-
|
|
75480
|
-
id: Scalars['ID']['input'];
|
|
75481
|
-
};
|
|
75482
|
-
export declare type MercuryChangeProposalUpdateCommentPayload = {
|
|
75483
|
-
__typename?: 'MercuryChangeProposalUpdateCommentPayload';
|
|
75484
|
-
errors?: Maybe<Array<MutationError>>;
|
|
75485
|
-
success: Scalars['Boolean']['output'];
|
|
75486
|
-
updatedComment?: Maybe<MercuryChangeProposalComment>;
|
|
75677
|
+
export declare type MercuryChangeSort = {
|
|
75678
|
+
field: MercuryChangeSortField;
|
|
75679
|
+
order: SortOrder;
|
|
75487
75680
|
};
|
|
75681
|
+
export declare enum MercuryChangeSortField {
|
|
75682
|
+
Type = "TYPE"
|
|
75683
|
+
}
|
|
75488
75684
|
export declare enum MercuryChangeType {
|
|
75489
75685
|
CreateFocusArea = "CREATE_FOCUS_AREA",
|
|
75490
75686
|
PositionAllocation = "POSITION_ALLOCATION"
|
|
@@ -75509,6 +75705,17 @@ export declare type MercuryCommentEdge = {
|
|
|
75509
75705
|
cursor: Scalars['String']['output'];
|
|
75510
75706
|
node?: Maybe<MercuryComment>;
|
|
75511
75707
|
};
|
|
75708
|
+
export declare type MercuryCreateChangeProposalCommentInput = {
|
|
75709
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
75710
|
+
content: Scalars['String']['input'];
|
|
75711
|
+
id: Scalars['ID']['input'];
|
|
75712
|
+
};
|
|
75713
|
+
export declare type MercuryCreateChangeProposalCommentPayload = Payload & {
|
|
75714
|
+
__typename?: 'MercuryCreateChangeProposalCommentPayload';
|
|
75715
|
+
createdComment?: Maybe<MercuryChangeProposalComment>;
|
|
75716
|
+
errors?: Maybe<Array<MutationError>>;
|
|
75717
|
+
success: Scalars['Boolean']['output'];
|
|
75718
|
+
};
|
|
75512
75719
|
export declare type MercuryCreateChangeProposalInput = {
|
|
75513
75720
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
75514
75721
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -75547,6 +75754,11 @@ export declare type MercuryCreateFocusAreaChange = MercuryChangeInterface & Node
|
|
|
75547
75754
|
updatedBy?: Maybe<User>;
|
|
75548
75755
|
updatedDate: Scalars['DateTime']['output'];
|
|
75549
75756
|
};
|
|
75757
|
+
export declare type MercuryCreateFocusAreaChangeInput = {
|
|
75758
|
+
focusAreaName: Scalars['String']['input'];
|
|
75759
|
+
focusAreaTypeId: Scalars['ID']['input'];
|
|
75760
|
+
targetFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
75761
|
+
};
|
|
75550
75762
|
export declare type MercuryCreateFocusAreaInput = {
|
|
75551
75763
|
cloudId: Scalars['ID']['input'];
|
|
75552
75764
|
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -75585,6 +75797,17 @@ export declare type MercuryCreatePortfolioPayload = Payload & {
|
|
|
75585
75797
|
errors?: Maybe<Array<MutationError>>;
|
|
75586
75798
|
success: Scalars['Boolean']['output'];
|
|
75587
75799
|
};
|
|
75800
|
+
export declare type MercuryCreateStrategicEventCommentInput = {
|
|
75801
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
75802
|
+
content: Scalars['String']['input'];
|
|
75803
|
+
id: Scalars['ID']['input'];
|
|
75804
|
+
};
|
|
75805
|
+
export declare type MercuryCreateStrategicEventCommentPayload = Payload & {
|
|
75806
|
+
__typename?: 'MercuryCreateStrategicEventCommentPayload';
|
|
75807
|
+
createdComment?: Maybe<MercuryStrategicEventComment>;
|
|
75808
|
+
errors?: Maybe<Array<MutationError>>;
|
|
75809
|
+
success: Scalars['Boolean']['output'];
|
|
75810
|
+
};
|
|
75588
75811
|
export declare type MercuryCreateStrategicEventInput = {
|
|
75589
75812
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
75590
75813
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -75606,6 +75829,15 @@ export declare type MercuryDeleteAllPreferencesByUserPayload = Payload & {
|
|
|
75606
75829
|
errors?: Maybe<Array<MutationError>>;
|
|
75607
75830
|
success: Scalars['Boolean']['output'];
|
|
75608
75831
|
};
|
|
75832
|
+
export declare type MercuryDeleteChangeProposalCommentInput = {
|
|
75833
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
75834
|
+
id: Scalars['ID']['input'];
|
|
75835
|
+
};
|
|
75836
|
+
export declare type MercuryDeleteChangeProposalCommentPayload = Payload & {
|
|
75837
|
+
__typename?: 'MercuryDeleteChangeProposalCommentPayload';
|
|
75838
|
+
errors?: Maybe<Array<MutationError>>;
|
|
75839
|
+
success: Scalars['Boolean']['output'];
|
|
75840
|
+
};
|
|
75609
75841
|
export declare type MercuryDeleteChangesInput = {
|
|
75610
75842
|
changeIds: Array<Scalars['ID']['input']>;
|
|
75611
75843
|
};
|
|
@@ -75714,6 +75946,15 @@ export declare type MercuryDeletePreferencePayload = Payload & {
|
|
|
75714
75946
|
errors?: Maybe<Array<MutationError>>;
|
|
75715
75947
|
success: Scalars['Boolean']['output'];
|
|
75716
75948
|
};
|
|
75949
|
+
export declare type MercuryDeleteStrategicEventCommentInput = {
|
|
75950
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
75951
|
+
id: Scalars['ID']['input'];
|
|
75952
|
+
};
|
|
75953
|
+
export declare type MercuryDeleteStrategicEventCommentPayload = Payload & {
|
|
75954
|
+
__typename?: 'MercuryDeleteStrategicEventCommentPayload';
|
|
75955
|
+
errors?: Maybe<Array<MutationError>>;
|
|
75956
|
+
success: Scalars['Boolean']['output'];
|
|
75957
|
+
};
|
|
75717
75958
|
export declare enum MercuryEntityType {
|
|
75718
75959
|
Comment = "COMMENT",
|
|
75719
75960
|
FocusArea = "FOCUS_AREA",
|
|
@@ -76158,6 +76399,17 @@ export declare type MercuryMediaToken = {
|
|
|
76158
76399
|
__typename?: 'MercuryMediaToken';
|
|
76159
76400
|
token: Scalars['String']['output'];
|
|
76160
76401
|
};
|
|
76402
|
+
export declare type MercuryMoveFundsChangeInput = {
|
|
76403
|
+
amount: Scalars['BigDecimal']['input'];
|
|
76404
|
+
sourceFocusAreaId: Scalars['ID']['input'];
|
|
76405
|
+
targetFocusAreaId: Scalars['ID']['input'];
|
|
76406
|
+
};
|
|
76407
|
+
export declare type MercuryMovePositionsChangeInput = {
|
|
76408
|
+
cost?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
76409
|
+
positionsAmount: Scalars['Int']['input'];
|
|
76410
|
+
sourceFocusAreaId: Scalars['ID']['input'];
|
|
76411
|
+
targetFocusAreaId: Scalars['ID']['input'];
|
|
76412
|
+
};
|
|
76161
76413
|
export declare type MercuryMutationApi = {
|
|
76162
76414
|
__typename?: 'MercuryMutationApi';
|
|
76163
76415
|
addWatcherToFocusArea?: Maybe<MercuryAddWatcherToFocusAreaPayload>;
|
|
@@ -76355,6 +76607,7 @@ export declare type MercuryPositionAllocationChange = MercuryChangeInterface & N
|
|
|
76355
76607
|
};
|
|
76356
76608
|
export declare type MercuryPositionAllocationChangeInput = {
|
|
76357
76609
|
positionId: Scalars['ID']['input'];
|
|
76610
|
+
sourceFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
76358
76611
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
76359
76612
|
};
|
|
76360
76613
|
export declare type MercuryPreference = Node & {
|
|
@@ -76380,8 +76633,14 @@ export declare enum MercuryProjectTargetDateType {
|
|
|
76380
76633
|
Quarter = "QUARTER"
|
|
76381
76634
|
}
|
|
76382
76635
|
export declare type MercuryProposeChangesInput = {
|
|
76636
|
+
archiveFocusAreas?: InputMaybe<Array<MercuryArchiveFocusAreaChangeInput>>;
|
|
76383
76637
|
changeProposalId: Scalars['ID']['input'];
|
|
76638
|
+
createFocusAreas?: InputMaybe<Array<MercuryCreateFocusAreaChangeInput>>;
|
|
76639
|
+
moveFunds?: InputMaybe<Array<MercuryMoveFundsChangeInput>>;
|
|
76640
|
+
movePositions?: InputMaybe<Array<MercuryMovePositionsChangeInput>>;
|
|
76384
76641
|
positionAllocations: Array<MercuryPositionAllocationChangeInput>;
|
|
76642
|
+
requestFunds?: InputMaybe<Array<MercuryRequestFundsChangeInput>>;
|
|
76643
|
+
requestPositions?: InputMaybe<Array<MercuryRequestPositionsChangeInput>>;
|
|
76385
76644
|
};
|
|
76386
76645
|
export declare type MercuryProposeChangesPayload = Payload & {
|
|
76387
76646
|
__typename?: 'MercuryProposeChangesPayload';
|
|
@@ -76731,6 +76990,15 @@ export declare type MercuryRemoveWatcherFromFocusAreaPayload = Payload & {
|
|
|
76731
76990
|
errors?: Maybe<Array<MutationError>>;
|
|
76732
76991
|
success: Scalars['Boolean']['output'];
|
|
76733
76992
|
};
|
|
76993
|
+
export declare type MercuryRequestFundsChangeInput = {
|
|
76994
|
+
amount: Scalars['BigDecimal']['input'];
|
|
76995
|
+
targetFocusAreaId: Scalars['ID']['input'];
|
|
76996
|
+
};
|
|
76997
|
+
export declare type MercuryRequestPositionsChangeInput = {
|
|
76998
|
+
cost?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
76999
|
+
positionsAmount: Scalars['Int']['input'];
|
|
77000
|
+
targetFocusAreaId: Scalars['ID']['input'];
|
|
77001
|
+
};
|
|
76734
77002
|
export declare type MercurySetPreferenceInput = {
|
|
76735
77003
|
cloudId: Scalars['ID']['input'];
|
|
76736
77004
|
key: Scalars['String']['input'];
|
|
@@ -76793,26 +77061,6 @@ export declare type MercuryStrategicEventConnection = {
|
|
|
76793
77061
|
pageInfo: PageInfo;
|
|
76794
77062
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
76795
77063
|
};
|
|
76796
|
-
export declare type MercuryStrategicEventCreateCommentInput = {
|
|
76797
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
76798
|
-
content: Scalars['String']['input'];
|
|
76799
|
-
id: Scalars['ID']['input'];
|
|
76800
|
-
};
|
|
76801
|
-
export declare type MercuryStrategicEventCreateCommentPayload = Payload & {
|
|
76802
|
-
__typename?: 'MercuryStrategicEventCreateCommentPayload';
|
|
76803
|
-
createdComment?: Maybe<MercuryStrategicEventComment>;
|
|
76804
|
-
errors?: Maybe<Array<MutationError>>;
|
|
76805
|
-
success: Scalars['Boolean']['output'];
|
|
76806
|
-
};
|
|
76807
|
-
export declare type MercuryStrategicEventDeleteCommentInput = {
|
|
76808
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
76809
|
-
id: Scalars['ID']['input'];
|
|
76810
|
-
};
|
|
76811
|
-
export declare type MercuryStrategicEventDeleteCommentPayload = Payload & {
|
|
76812
|
-
__typename?: 'MercuryStrategicEventDeleteCommentPayload';
|
|
76813
|
-
errors?: Maybe<Array<MutationError>>;
|
|
76814
|
-
success: Scalars['Boolean']['output'];
|
|
76815
|
-
};
|
|
76816
77064
|
export declare type MercuryStrategicEventEdge = {
|
|
76817
77065
|
__typename?: 'MercuryStrategicEventEdge';
|
|
76818
77066
|
cursor: Scalars['String']['output'];
|
|
@@ -76844,34 +77092,23 @@ export declare type MercuryStrategicEventStatusTransitions = {
|
|
|
76844
77092
|
__typename?: 'MercuryStrategicEventStatusTransitions';
|
|
76845
77093
|
available: Array<MercuryStrategicEventStatusTransition>;
|
|
76846
77094
|
};
|
|
76847
|
-
export declare type MercuryStrategicEventUpdateCommentInput = {
|
|
76848
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
76849
|
-
content: Scalars['String']['input'];
|
|
76850
|
-
id: Scalars['ID']['input'];
|
|
76851
|
-
};
|
|
76852
|
-
export declare type MercuryStrategicEventUpdateCommentPayload = {
|
|
76853
|
-
__typename?: 'MercuryStrategicEventUpdateCommentPayload';
|
|
76854
|
-
errors?: Maybe<Array<MutationError>>;
|
|
76855
|
-
success: Scalars['Boolean']['output'];
|
|
76856
|
-
updatedComment?: Maybe<MercuryStrategicEventComment>;
|
|
76857
|
-
};
|
|
76858
77095
|
export declare type MercuryStrategicEventsMutationApi = {
|
|
76859
77096
|
__typename?: 'MercuryStrategicEventsMutationApi';
|
|
76860
77097
|
createChangeProposal?: Maybe<MercuryCreateChangeProposalPayload>;
|
|
76861
|
-
createChangeProposalComment?: Maybe<
|
|
77098
|
+
createChangeProposalComment?: Maybe<MercuryCreateChangeProposalCommentPayload>;
|
|
76862
77099
|
createStrategicEvent?: Maybe<MercuryCreateStrategicEventPayload>;
|
|
76863
|
-
createStrategicEventComment?: Maybe<
|
|
76864
|
-
deleteChangeProposalComment?: Maybe<
|
|
77100
|
+
createStrategicEventComment?: Maybe<MercuryCreateStrategicEventCommentPayload>;
|
|
77101
|
+
deleteChangeProposalComment?: Maybe<MercuryDeleteChangeProposalCommentPayload>;
|
|
76865
77102
|
deleteChanges?: Maybe<MercuryDeleteChangesPayload>;
|
|
76866
|
-
deleteStrategicEventComment?: Maybe<
|
|
77103
|
+
deleteStrategicEventComment?: Maybe<MercuryDeleteStrategicEventCommentPayload>;
|
|
76867
77104
|
proposeChanges?: Maybe<MercuryProposeChangesPayload>;
|
|
76868
77105
|
transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
|
|
76869
77106
|
transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
|
|
76870
|
-
updateChangeProposalComment?: Maybe<
|
|
77107
|
+
updateChangeProposalComment?: Maybe<MercuryUpdateChangeProposalCommentPayload>;
|
|
76871
77108
|
updateChangeProposalDescription?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
76872
77109
|
updateChangeProposalName?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
76873
77110
|
updateChangeProposalOwner?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
76874
|
-
updateStrategicEventComment?: Maybe<
|
|
77111
|
+
updateStrategicEventComment?: Maybe<MercuryUpdateStrategicEventCommentPayload>;
|
|
76875
77112
|
updateStrategicEventDescription?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
76876
77113
|
updateStrategicEventName?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
76877
77114
|
updateStrategicEventOwner?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
@@ -76881,22 +77118,22 @@ export declare type MercuryStrategicEventsMutationApiCreateChangeProposalArgs =
|
|
|
76881
77118
|
input: MercuryCreateChangeProposalInput;
|
|
76882
77119
|
};
|
|
76883
77120
|
export declare type MercuryStrategicEventsMutationApiCreateChangeProposalCommentArgs = {
|
|
76884
|
-
input:
|
|
77121
|
+
input: MercuryCreateChangeProposalCommentInput;
|
|
76885
77122
|
};
|
|
76886
77123
|
export declare type MercuryStrategicEventsMutationApiCreateStrategicEventArgs = {
|
|
76887
77124
|
input: MercuryCreateStrategicEventInput;
|
|
76888
77125
|
};
|
|
76889
77126
|
export declare type MercuryStrategicEventsMutationApiCreateStrategicEventCommentArgs = {
|
|
76890
|
-
input:
|
|
77127
|
+
input: MercuryCreateStrategicEventCommentInput;
|
|
76891
77128
|
};
|
|
76892
77129
|
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalCommentArgs = {
|
|
76893
|
-
input:
|
|
77130
|
+
input: MercuryDeleteChangeProposalCommentInput;
|
|
76894
77131
|
};
|
|
76895
77132
|
export declare type MercuryStrategicEventsMutationApiDeleteChangesArgs = {
|
|
76896
77133
|
input?: InputMaybe<MercuryDeleteChangesInput>;
|
|
76897
77134
|
};
|
|
76898
77135
|
export declare type MercuryStrategicEventsMutationApiDeleteStrategicEventCommentArgs = {
|
|
76899
|
-
input:
|
|
77136
|
+
input: MercuryDeleteStrategicEventCommentInput;
|
|
76900
77137
|
};
|
|
76901
77138
|
export declare type MercuryStrategicEventsMutationApiProposeChangesArgs = {
|
|
76902
77139
|
input: MercuryProposeChangesInput;
|
|
@@ -76908,7 +77145,7 @@ export declare type MercuryStrategicEventsMutationApiTransitionStrategicEventSta
|
|
|
76908
77145
|
input: MercuryTransitionStrategicEventStatusInput;
|
|
76909
77146
|
};
|
|
76910
77147
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalCommentArgs = {
|
|
76911
|
-
input:
|
|
77148
|
+
input: MercuryUpdateChangeProposalCommentInput;
|
|
76912
77149
|
};
|
|
76913
77150
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalDescriptionArgs = {
|
|
76914
77151
|
input: MercuryUpdateChangeProposalDescriptionInput;
|
|
@@ -76920,7 +77157,7 @@ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalOwnerAr
|
|
|
76920
77157
|
input: MercuryUpdateChangeProposalOwnerInput;
|
|
76921
77158
|
};
|
|
76922
77159
|
export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventCommentArgs = {
|
|
76923
|
-
input:
|
|
77160
|
+
input: MercuryUpdateStrategicEventCommentInput;
|
|
76924
77161
|
};
|
|
76925
77162
|
export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventDescriptionArgs = {
|
|
76926
77163
|
input: MercuryUpdateStrategicEventDescriptionInput;
|
|
@@ -76941,6 +77178,7 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
76941
77178
|
changeProposals?: Maybe<Array<Maybe<MercuryChangeProposal>>>;
|
|
76942
77179
|
changeProposalsSearch?: Maybe<MercuryChangeProposalConnection>;
|
|
76943
77180
|
changes?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
77181
|
+
changesSearch?: Maybe<MercuryChangeConnection>;
|
|
76944
77182
|
strategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
76945
77183
|
strategicEventStatuses: Array<MercuryStrategicEventStatus>;
|
|
76946
77184
|
strategicEvents?: Maybe<Array<Maybe<MercuryStrategicEvent>>>;
|
|
@@ -76965,6 +77203,13 @@ export declare type MercuryStrategicEventsQueryApiChangeProposalsSearchArgs = {
|
|
|
76965
77203
|
export declare type MercuryStrategicEventsQueryApiChangesArgs = {
|
|
76966
77204
|
ids: Array<Scalars['ID']['input']>;
|
|
76967
77205
|
};
|
|
77206
|
+
export declare type MercuryStrategicEventsQueryApiChangesSearchArgs = {
|
|
77207
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
77208
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
77209
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
77210
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
77211
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryChangeSort>>>;
|
|
77212
|
+
};
|
|
76968
77213
|
export declare type MercuryStrategicEventsQueryApiStrategicEventArgs = {
|
|
76969
77214
|
id: Scalars['ID']['input'];
|
|
76970
77215
|
};
|
|
@@ -77084,6 +77329,17 @@ export declare type MercuryUnarchiveFocusAreaPayload = Payload & {
|
|
|
77084
77329
|
errors?: Maybe<Array<MutationError>>;
|
|
77085
77330
|
success: Scalars['Boolean']['output'];
|
|
77086
77331
|
};
|
|
77332
|
+
export declare type MercuryUpdateChangeProposalCommentInput = {
|
|
77333
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
77334
|
+
content: Scalars['String']['input'];
|
|
77335
|
+
id: Scalars['ID']['input'];
|
|
77336
|
+
};
|
|
77337
|
+
export declare type MercuryUpdateChangeProposalCommentPayload = {
|
|
77338
|
+
__typename?: 'MercuryUpdateChangeProposalCommentPayload';
|
|
77339
|
+
errors?: Maybe<Array<MutationError>>;
|
|
77340
|
+
success: Scalars['Boolean']['output'];
|
|
77341
|
+
updatedComment?: Maybe<MercuryChangeProposalComment>;
|
|
77342
|
+
};
|
|
77087
77343
|
export declare type MercuryUpdateChangeProposalDescriptionInput = {
|
|
77088
77344
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
77089
77345
|
description: Scalars['String']['input'];
|
|
@@ -77167,6 +77423,17 @@ export declare type MercuryUpdatePortfolioPayload = Payload & {
|
|
|
77167
77423
|
success: Scalars['Boolean']['output'];
|
|
77168
77424
|
updatedPortfolio?: Maybe<MercuryPortfolio>;
|
|
77169
77425
|
};
|
|
77426
|
+
export declare type MercuryUpdateStrategicEventCommentInput = {
|
|
77427
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
77428
|
+
content: Scalars['String']['input'];
|
|
77429
|
+
id: Scalars['ID']['input'];
|
|
77430
|
+
};
|
|
77431
|
+
export declare type MercuryUpdateStrategicEventCommentPayload = {
|
|
77432
|
+
__typename?: 'MercuryUpdateStrategicEventCommentPayload';
|
|
77433
|
+
errors?: Maybe<Array<MutationError>>;
|
|
77434
|
+
success: Scalars['Boolean']['output'];
|
|
77435
|
+
updatedComment?: Maybe<MercuryStrategicEventComment>;
|
|
77436
|
+
};
|
|
77170
77437
|
export declare type MercuryUpdateStrategicEventDescriptionInput = {
|
|
77171
77438
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
77172
77439
|
description: Scalars['String']['input'];
|
|
@@ -77806,6 +78073,7 @@ export declare type Mutation = {
|
|
|
77806
78073
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
77807
78074
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
77808
78075
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
78076
|
+
jira_setBoardIssueCardCover?: Maybe<JiraSetBoardIssueCardCoverPayload>;
|
|
77809
78077
|
jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
|
|
77810
78078
|
jira_setBoardViewCardOptionState?: Maybe<JiraSetBoardViewCardOptionStatePayload>;
|
|
77811
78079
|
jira_setBoardViewColumnState?: Maybe<JiraSetBoardViewColumnStatePayload>;
|
|
@@ -77859,6 +78127,7 @@ export declare type Mutation = {
|
|
|
77859
78127
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
77860
78128
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
77861
78129
|
radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
|
|
78130
|
+
radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
|
|
77862
78131
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
77863
78132
|
rankColumn?: Maybe<RankColumnOutput>;
|
|
77864
78133
|
rankCustomFilter?: Maybe<GenericMutationResponse>;
|
|
@@ -79028,6 +79297,7 @@ export declare type MutationDevai_CreateTechnicalPlannerJobArgs = {
|
|
|
79028
79297
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
79029
79298
|
};
|
|
79030
79299
|
export declare type MutationDevai_FlowCreateArgs = {
|
|
79300
|
+
additionalInfoJSON?: InputMaybe<Scalars['String']['input']>;
|
|
79031
79301
|
cloudId: Scalars['String']['input'];
|
|
79032
79302
|
createdBy: Scalars['String']['input'];
|
|
79033
79303
|
issueARI?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -79137,6 +79407,9 @@ export declare type MutationJira_PublishBoardViewConfigArgs = {
|
|
|
79137
79407
|
export declare type MutationJira_ReorderBoardViewColumnArgs = {
|
|
79138
79408
|
input: JiraReorderBoardViewColumnInput;
|
|
79139
79409
|
};
|
|
79410
|
+
export declare type MutationJira_SetBoardIssueCardCoverArgs = {
|
|
79411
|
+
input: JiraSetBoardIssueCardCoverInput;
|
|
79412
|
+
};
|
|
79140
79413
|
export declare type MutationJira_SetBoardViewCardFieldSelectedArgs = {
|
|
79141
79414
|
input: JiraSetBoardViewCardFieldSelectedInput;
|
|
79142
79415
|
};
|
|
@@ -79269,6 +79542,10 @@ export declare type MutationRadar_UpdateFocusAreaMappingsArgs = {
|
|
|
79269
79542
|
cloudId: Scalars['ID']['input'];
|
|
79270
79543
|
input: Array<RadarFocusAreaMappingsInput>;
|
|
79271
79544
|
};
|
|
79545
|
+
export declare type MutationRadar_UpdateWorkspaceSettingsArgs = {
|
|
79546
|
+
cloudId: Scalars['ID']['input'];
|
|
79547
|
+
input: RadarWorkspaceSettingsInput;
|
|
79548
|
+
};
|
|
79272
79549
|
export declare type MutationRankCardParentArgs = {
|
|
79273
79550
|
input: CardParentRankInput;
|
|
79274
79551
|
};
|
|
@@ -82779,6 +83056,7 @@ export declare type Query = {
|
|
|
82779
83056
|
helpObjectStore_searchPortals?: Maybe<HelpObjectStorePortalSearchResponse>;
|
|
82780
83057
|
helpObjectStore_searchRequestTypes?: Maybe<HelpObjectStoreRequestTypeSearchResponse>;
|
|
82781
83058
|
homeUserSettings?: Maybe<HomeUserSettings>;
|
|
83059
|
+
identity_groupsByIds?: Maybe<Array<IdentityGroup>>;
|
|
82782
83060
|
incomingLinksCount?: Maybe<IncomingLinksCount>;
|
|
82783
83061
|
inlineTasks?: Maybe<InlineTasksQueryResult>;
|
|
82784
83062
|
insights?: Maybe<Insights>;
|
|
@@ -84926,7 +85204,7 @@ export declare type QueryHelpObjectStore_SearchArticlesArgs = {
|
|
|
84926
85204
|
highlight?: InputMaybe<Scalars['Boolean']['input']>;
|
|
84927
85205
|
limit: Scalars['Int']['input'];
|
|
84928
85206
|
portalIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
84929
|
-
queryTerm
|
|
85207
|
+
queryTerm?: InputMaybe<Scalars['String']['input']>;
|
|
84930
85208
|
skipRestrictedPages?: InputMaybe<Scalars['Boolean']['input']>;
|
|
84931
85209
|
};
|
|
84932
85210
|
export declare type QueryHelpObjectStore_SearchPortalsArgs = {
|
|
@@ -84942,6 +85220,9 @@ export declare type QueryHelpObjectStore_SearchRequestTypesArgs = {
|
|
|
84942
85220
|
portalId?: InputMaybe<Scalars['String']['input']>;
|
|
84943
85221
|
queryTerm: Scalars['String']['input'];
|
|
84944
85222
|
};
|
|
85223
|
+
export declare type QueryIdentity_GroupsByIdsArgs = {
|
|
85224
|
+
ids: Array<Scalars['ID']['input']>;
|
|
85225
|
+
};
|
|
84945
85226
|
export declare type QueryIncomingLinksCountArgs = {
|
|
84946
85227
|
contentId: Scalars['ID']['input'];
|
|
84947
85228
|
};
|
|
@@ -85880,6 +86161,7 @@ export declare type RadarAriFieldValue = {
|
|
|
85880
86161
|
export declare type RadarAriObject = MercuryFocusArea | RadarPosition | RadarWorker;
|
|
85881
86162
|
export declare type RadarBooleanFieldValue = {
|
|
85882
86163
|
__typename?: 'RadarBooleanFieldValue';
|
|
86164
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
85883
86165
|
value?: Maybe<Scalars['Boolean']['output']>;
|
|
85884
86166
|
};
|
|
85885
86167
|
export declare type RadarConnection = {
|
|
@@ -85888,6 +86170,7 @@ export declare type RadarConnection = {
|
|
|
85888
86170
|
};
|
|
85889
86171
|
export declare type RadarDateFieldValue = {
|
|
85890
86172
|
__typename?: 'RadarDateFieldValue';
|
|
86173
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
85891
86174
|
value?: Maybe<Scalars['DateTime']['output']>;
|
|
85892
86175
|
};
|
|
85893
86176
|
export declare type RadarDynamicFilterOptions = RadarFilterOptions & {
|
|
@@ -86058,6 +86341,7 @@ export declare type RadarNumericFieldDefinition = RadarFieldDefinition & {
|
|
|
86058
86341
|
export declare type RadarNumericFieldValue = {
|
|
86059
86342
|
__typename?: 'RadarNumericFieldValue';
|
|
86060
86343
|
displayValue?: Maybe<Scalars['Int']['output']>;
|
|
86344
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
86061
86345
|
value?: Maybe<Scalars['Int']['output']>;
|
|
86062
86346
|
};
|
|
86063
86347
|
export declare type RadarPermissions = {
|
|
@@ -86065,6 +86349,10 @@ export declare type RadarPermissions = {
|
|
|
86065
86349
|
canManagersAllocate: Scalars['Boolean']['output'];
|
|
86066
86350
|
canManagersViewSensitiveFields: Scalars['Boolean']['output'];
|
|
86067
86351
|
};
|
|
86352
|
+
export declare type RadarPermissionsInput = {
|
|
86353
|
+
canManagersAllocate: Scalars['Boolean']['input'];
|
|
86354
|
+
canManagersViewSensitiveFields: Scalars['Boolean']['input'];
|
|
86355
|
+
};
|
|
86068
86356
|
export declare type RadarPosition = Node & RadarEntity & {
|
|
86069
86357
|
__typename?: 'RadarPosition';
|
|
86070
86358
|
directReports?: Maybe<Array<RadarPosition>>;
|
|
@@ -86114,16 +86402,19 @@ export declare type RadarStatusFieldValue = {
|
|
|
86114
86402
|
__typename?: 'RadarStatusFieldValue';
|
|
86115
86403
|
appearance?: Maybe<RadarStatusAppearance>;
|
|
86116
86404
|
displayValue?: Maybe<Scalars['String']['output']>;
|
|
86405
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
86117
86406
|
value?: Maybe<Scalars['String']['output']>;
|
|
86118
86407
|
};
|
|
86119
86408
|
export declare type RadarStringFieldValue = {
|
|
86120
86409
|
__typename?: 'RadarStringFieldValue';
|
|
86410
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
86121
86411
|
value?: Maybe<Scalars['String']['output']>;
|
|
86122
86412
|
};
|
|
86123
86413
|
export declare type RadarUrlFieldValue = {
|
|
86124
86414
|
__typename?: 'RadarUrlFieldValue';
|
|
86125
86415
|
displayValue?: Maybe<Scalars['String']['output']>;
|
|
86126
86416
|
icon?: Maybe<Scalars['String']['output']>;
|
|
86417
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
86127
86418
|
value?: Maybe<Scalars['String']['output']>;
|
|
86128
86419
|
};
|
|
86129
86420
|
export declare type RadarUserContext = {
|
|
@@ -86163,6 +86454,9 @@ export declare type RadarWorkspace = {
|
|
|
86163
86454
|
userContext?: Maybe<RadarUserContext>;
|
|
86164
86455
|
workerFields: Array<RadarFieldDefinition>;
|
|
86165
86456
|
};
|
|
86457
|
+
export declare type RadarWorkspaceSettingsInput = {
|
|
86458
|
+
permissions: RadarPermissionsInput;
|
|
86459
|
+
};
|
|
86166
86460
|
export declare type RankColumnInput = {
|
|
86167
86461
|
boardId: Scalars['ID']['input'];
|
|
86168
86462
|
columnId: Scalars['ID']['input'];
|
|
@@ -89980,6 +90274,8 @@ export declare enum ShepherdRemediationActionType {
|
|
|
89980
90274
|
ArchiveRestoreClassificationRemediation = "ARCHIVE_RESTORE_CLASSIFICATION_REMEDIATION",
|
|
89981
90275
|
BlockchainExplorerRemediation = "BLOCKCHAIN_EXPLORER_REMEDIATION",
|
|
89982
90276
|
BlockIpAllowlistRemediation = "BLOCK_IP_ALLOWLIST_REMEDIATION",
|
|
90277
|
+
ChangeConfluenceSpaceAttachmentPermissionsRemediation = "CHANGE_CONFLUENCE_SPACE_ATTACHMENT_PERMISSIONS_REMEDIATION",
|
|
90278
|
+
ChangeJiraAttachmentPermissionsRemediation = "CHANGE_JIRA_ATTACHMENT_PERMISSIONS_REMEDIATION",
|
|
89983
90279
|
CheckAutomationsRemediation = "CHECK_AUTOMATIONS_REMEDIATION",
|
|
89984
90280
|
ClassificationLevelChangeRemediation = "CLASSIFICATION_LEVEL_CHANGE_REMEDIATION",
|
|
89985
90281
|
CompromisedDeviceRemediation = "COMPROMISED_DEVICE_REMEDIATION",
|
|
@@ -89999,6 +90295,7 @@ export declare enum ShepherdRemediationActionType {
|
|
|
89999
90295
|
ManageAppsRemediation = "MANAGE_APPS_REMEDIATION",
|
|
90000
90296
|
ManageDomainRemediation = "MANAGE_DOMAIN_REMEDIATION",
|
|
90001
90297
|
ManageDspRemediation = "MANAGE_DSP_REMEDIATION",
|
|
90298
|
+
MoveOrRemoveAttachmentRemediation = "MOVE_OR_REMOVE_ATTACHMENT_REMEDIATION",
|
|
90002
90299
|
PublicAccessDspRemediation = "PUBLIC_ACCESS_DSP_REMEDIATION",
|
|
90003
90300
|
ResetAccountPasswordRemediation = "RESET_ACCOUNT_PASSWORD_REMEDIATION",
|
|
90004
90301
|
RestoreAccessRemediation = "RESTORE_ACCESS_REMEDIATION",
|