@forge/cli-shared 6.8.0-next.22 → 6.8.0-next.23

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.
@@ -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>;
@@ -54015,8 +54069,10 @@ export declare enum JiraApplicationKey {
54015
54069
  export declare type JiraApplicationLink = {
54016
54070
  __typename?: 'JiraApplicationLink';
54017
54071
  applicationId?: Maybe<Scalars['String']['output']>;
54072
+ authenticationUrl?: Maybe<Scalars['URL']['output']>;
54018
54073
  cloudId?: Maybe<Scalars['String']['output']>;
54019
54074
  displayUrl?: Maybe<Scalars['URL']['output']>;
54075
+ isAuthenticationRequired?: Maybe<Scalars['Boolean']['output']>;
54020
54076
  isPrimary?: Maybe<Scalars['Boolean']['output']>;
54021
54077
  isSystem?: Maybe<Scalars['Boolean']['output']>;
54022
54078
  name?: Maybe<Scalars['String']['output']>;
@@ -60110,6 +60166,10 @@ export declare type JiraIssueSearchViewPayload = Payload & {
60110
60166
  view?: Maybe<JiraIssueSearchView>;
60111
60167
  };
60112
60168
  export declare type JiraIssueSearchViewResult = JiraIssueSearchView | QueryError;
60169
+ export declare type JiraIssueStreamHubEventPayloadProject = {
60170
+ __typename?: 'JiraIssueStreamHubEventPayloadProject';
60171
+ id: Scalars['Int']['output'];
60172
+ };
60113
60173
  export declare type JiraIssueTransitionComment = {
60114
60174
  __typename?: 'JiraIssueTransitionComment';
60115
60175
  adminRichTextConfig?: Maybe<JiraAdminRichTextFieldConfig>;
@@ -60378,6 +60438,13 @@ export declare type JiraJqlHistoryEdge = {
60378
60438
  __typename?: 'JiraJQLHistoryEdge';
60379
60439
  node?: Maybe<JiraJqlHistory>;
60380
60440
  };
60441
+ export declare type JiraJirtEventPayload = {
60442
+ __typename?: 'JiraJirtEventPayload';
60443
+ actionerAccountId?: Maybe<Scalars['String']['output']>;
60444
+ project: JiraIssueStreamHubEventPayloadProject;
60445
+ resource: Scalars['String']['output'];
60446
+ type: Scalars['String']['output'];
60447
+ };
60381
60448
  export declare enum JiraJourneyActiveState {
60382
60449
  Active = "ACTIVE",
60383
60450
  Inactive = "INACTIVE",
@@ -64400,6 +64467,9 @@ export declare type JiraProjectsSidebarMenu = {
64400
64467
  favouriteLimit?: Maybe<Scalars['Int']['output']>;
64401
64468
  favourites?: Maybe<JiraProjectConnection>;
64402
64469
  id: Scalars['ID']['output'];
64470
+ more?: Maybe<JiraProjectConnection>;
64471
+ moreFavourites?: Maybe<JiraProjectConnection>;
64472
+ moreRecents?: Maybe<JiraProjectConnection>;
64403
64473
  recentLimit?: Maybe<Scalars['Int']['output']>;
64404
64474
  recents?: Maybe<JiraProjectConnection>;
64405
64475
  };
@@ -64409,6 +64479,18 @@ export declare type JiraProjectsSidebarMenuFavouritesArgs = {
64409
64479
  first?: InputMaybe<Scalars['Int']['input']>;
64410
64480
  last?: InputMaybe<Scalars['Int']['input']>;
64411
64481
  };
64482
+ export declare type JiraProjectsSidebarMenuMoreArgs = {
64483
+ after?: InputMaybe<Scalars['String']['input']>;
64484
+ first?: InputMaybe<Scalars['Int']['input']>;
64485
+ };
64486
+ export declare type JiraProjectsSidebarMenuMoreFavouritesArgs = {
64487
+ after?: InputMaybe<Scalars['String']['input']>;
64488
+ first?: InputMaybe<Scalars['Int']['input']>;
64489
+ };
64490
+ export declare type JiraProjectsSidebarMenuMoreRecentsArgs = {
64491
+ after?: InputMaybe<Scalars['String']['input']>;
64492
+ first?: InputMaybe<Scalars['Int']['input']>;
64493
+ };
64412
64494
  export declare type JiraProjectsSidebarMenuRecentsArgs = {
64413
64495
  after?: InputMaybe<Scalars['String']['input']>;
64414
64496
  before?: InputMaybe<Scalars['String']['input']>;
@@ -64506,6 +64588,7 @@ export declare type JiraQuery = {
64506
64588
  globalTimeTrackingSettings?: Maybe<JiraTimeTrackingSettings>;
64507
64589
  grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
64508
64590
  groupCommentVisibilities?: Maybe<JiraGroupConnection>;
64591
+ groupsForIssues?: Maybe<JiraSpreadsheetGroupConnection>;
64509
64592
  hasGlobalPermission?: Maybe<Scalars['Boolean']['output']>;
64510
64593
  hasProjectPermission?: Maybe<Scalars['Boolean']['output']>;
64511
64594
  installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
@@ -64949,6 +65032,18 @@ export declare type JiraQueryGroupCommentVisibilitiesArgs = {
64949
65032
  first?: InputMaybe<Scalars['Int']['input']>;
64950
65033
  last?: InputMaybe<Scalars['Int']['input']>;
64951
65034
  };
65035
+ export declare type JiraQueryGroupsForIssuesArgs = {
65036
+ after?: InputMaybe<Scalars['String']['input']>;
65037
+ before?: InputMaybe<Scalars['String']['input']>;
65038
+ cloudId: Scalars['ID']['input'];
65039
+ fieldId: Scalars['String']['input'];
65040
+ first?: InputMaybe<Scalars['Int']['input']>;
65041
+ firstNGroupsToSearch: Scalars['Int']['input'];
65042
+ issueChanges?: InputMaybe<Array<JiraIssueChangeInput>>;
65043
+ issueSearchInput: JiraIssueSearchInput;
65044
+ last?: InputMaybe<Scalars['Int']['input']>;
65045
+ staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
65046
+ };
64952
65047
  export declare type JiraQueryHasGlobalPermissionArgs = {
64953
65048
  cloudId: Scalars['ID']['input'];
64954
65049
  key: JiraGlobalPermissionType;
@@ -67684,6 +67779,19 @@ export declare type JiraSetApplicationPropertyInput = {
67684
67779
  key: Scalars['String']['input'];
67685
67780
  value: Scalars['String']['input'];
67686
67781
  };
67782
+ export declare type JiraSetBoardIssueCardCoverInput = {
67783
+ coverType: JiraBackgroundType;
67784
+ coverValue: Scalars['String']['input'];
67785
+ issueId: Scalars['ID']['input'];
67786
+ settings?: InputMaybe<JiraBoardViewSettings>;
67787
+ viewId: Scalars['ID']['input'];
67788
+ };
67789
+ export declare type JiraSetBoardIssueCardCoverPayload = Payload & {
67790
+ __typename?: 'JiraSetBoardIssueCardCoverPayload';
67791
+ boardView?: Maybe<JiraBoardView>;
67792
+ errors?: Maybe<Array<MutationError>>;
67793
+ success: Scalars['Boolean']['output'];
67794
+ };
67687
67795
  export declare type JiraSetBoardViewCardFieldSelectedInput = {
67688
67796
  fieldId: Scalars['String']['input'];
67689
67797
  selected: Scalars['Boolean']['input'];
@@ -68579,6 +68687,7 @@ export declare type JiraSubscription = {
68579
68687
  onIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
68580
68688
  onIssueExported?: Maybe<JiraIssueExportEvent>;
68581
68689
  onIssueUpdatedByProject?: Maybe<JiraIssue>;
68690
+ onJirtIssueSubscription?: Maybe<JiraJirtEventPayload>;
68582
68691
  onJwmFieldMutation?: Maybe<JiraJwmField>;
68583
68692
  onJwmIssueCreatedByProject?: Maybe<JiraIssueCreatedStreamHubPayload>;
68584
68693
  onJwmIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
@@ -68641,6 +68750,12 @@ export declare type JiraSubscriptionOnIssueUpdatedByProjectArgs = {
68641
68750
  cloudId: Scalars['ID']['input'];
68642
68751
  projectId: Scalars['String']['input'];
68643
68752
  };
68753
+ export declare type JiraSubscriptionOnJirtIssueSubscriptionArgs = {
68754
+ atlassianAccountId?: InputMaybe<Scalars['String']['input']>;
68755
+ cloudId: Scalars['ID']['input'];
68756
+ events: Array<Scalars['String']['input']>;
68757
+ projectIds: Array<Scalars['String']['input']>;
68758
+ };
68644
68759
  export declare type JiraSubscriptionOnJwmFieldMutationArgs = {
68645
68760
  siteId: Scalars['ID']['input'];
68646
68761
  };
@@ -75362,6 +75477,9 @@ export declare type MercuryAggregatedPortfolioStatusCount = {
75362
75477
  __typename?: 'MercuryAggregatedPortfolioStatusCount';
75363
75478
  children: MercuryFocusAreaStatusCount;
75364
75479
  };
75480
+ export declare type MercuryArchiveFocusAreaChangeInput = {
75481
+ targetFocusAreaId: Scalars['ID']['input'];
75482
+ };
75365
75483
  export declare type MercuryArchiveFocusAreaInput = {
75366
75484
  cloudId: Scalars['ID']['input'];
75367
75485
  id: Scalars['ID']['input'];
@@ -75377,6 +75495,17 @@ export declare type MercuryBudgetAggregation = {
75377
75495
  totalAssignedBudget?: Maybe<Scalars['BigDecimal']['output']>;
75378
75496
  };
75379
75497
  export declare type MercuryChange = MercuryCreateFocusAreaChange | MercuryPositionAllocationChange;
75498
+ export declare type MercuryChangeConnection = {
75499
+ __typename?: 'MercuryChangeConnection';
75500
+ edges?: Maybe<Array<Maybe<MercuryChangeEdge>>>;
75501
+ pageInfo: PageInfo;
75502
+ totalCount?: Maybe<Scalars['Int']['output']>;
75503
+ };
75504
+ export declare type MercuryChangeEdge = {
75505
+ __typename?: 'MercuryChangeEdge';
75506
+ cursor: Scalars['String']['output'];
75507
+ node?: Maybe<MercuryChange>;
75508
+ };
75380
75509
  export declare type MercuryChangeInterface = {
75381
75510
  changeProposal?: Maybe<MercuryChangeProposal>;
75382
75511
  changeType: MercuryChangeType;
@@ -75425,26 +75554,6 @@ export declare type MercuryChangeProposalConnection = {
75425
75554
  pageInfo: PageInfo;
75426
75555
  totalCount?: Maybe<Scalars['Int']['output']>;
75427
75556
  };
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
75557
  export declare type MercuryChangeProposalEdge = {
75449
75558
  __typename?: 'MercuryChangeProposalEdge';
75450
75559
  cursor: Scalars['String']['output'];
@@ -75474,17 +75583,13 @@ export declare type MercuryChangeProposalStatusTransitions = {
75474
75583
  __typename?: 'MercuryChangeProposalStatusTransitions';
75475
75584
  available: Array<MercuryChangeProposalStatusTransition>;
75476
75585
  };
75477
- export declare type MercuryChangeProposalUpdateCommentInput = {
75478
- cloudId?: InputMaybe<Scalars['ID']['input']>;
75479
- content: Scalars['String']['input'];
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>;
75586
+ export declare type MercuryChangeSort = {
75587
+ field: MercuryChangeSortField;
75588
+ order: SortOrder;
75487
75589
  };
75590
+ export declare enum MercuryChangeSortField {
75591
+ Type = "TYPE"
75592
+ }
75488
75593
  export declare enum MercuryChangeType {
75489
75594
  CreateFocusArea = "CREATE_FOCUS_AREA",
75490
75595
  PositionAllocation = "POSITION_ALLOCATION"
@@ -75509,6 +75614,17 @@ export declare type MercuryCommentEdge = {
75509
75614
  cursor: Scalars['String']['output'];
75510
75615
  node?: Maybe<MercuryComment>;
75511
75616
  };
75617
+ export declare type MercuryCreateChangeProposalCommentInput = {
75618
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
75619
+ content: Scalars['String']['input'];
75620
+ id: Scalars['ID']['input'];
75621
+ };
75622
+ export declare type MercuryCreateChangeProposalCommentPayload = Payload & {
75623
+ __typename?: 'MercuryCreateChangeProposalCommentPayload';
75624
+ createdComment?: Maybe<MercuryChangeProposalComment>;
75625
+ errors?: Maybe<Array<MutationError>>;
75626
+ success: Scalars['Boolean']['output'];
75627
+ };
75512
75628
  export declare type MercuryCreateChangeProposalInput = {
75513
75629
  cloudId?: InputMaybe<Scalars['ID']['input']>;
75514
75630
  description?: InputMaybe<Scalars['String']['input']>;
@@ -75547,6 +75663,11 @@ export declare type MercuryCreateFocusAreaChange = MercuryChangeInterface & Node
75547
75663
  updatedBy?: Maybe<User>;
75548
75664
  updatedDate: Scalars['DateTime']['output'];
75549
75665
  };
75666
+ export declare type MercuryCreateFocusAreaChangeInput = {
75667
+ focusAreaName: Scalars['String']['input'];
75668
+ focusAreaTypeId: Scalars['ID']['input'];
75669
+ targetFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
75670
+ };
75550
75671
  export declare type MercuryCreateFocusAreaInput = {
75551
75672
  cloudId: Scalars['ID']['input'];
75552
75673
  externalId?: InputMaybe<Scalars['String']['input']>;
@@ -75585,6 +75706,17 @@ export declare type MercuryCreatePortfolioPayload = Payload & {
75585
75706
  errors?: Maybe<Array<MutationError>>;
75586
75707
  success: Scalars['Boolean']['output'];
75587
75708
  };
75709
+ export declare type MercuryCreateStrategicEventCommentInput = {
75710
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
75711
+ content: Scalars['String']['input'];
75712
+ id: Scalars['ID']['input'];
75713
+ };
75714
+ export declare type MercuryCreateStrategicEventCommentPayload = Payload & {
75715
+ __typename?: 'MercuryCreateStrategicEventCommentPayload';
75716
+ createdComment?: Maybe<MercuryStrategicEventComment>;
75717
+ errors?: Maybe<Array<MutationError>>;
75718
+ success: Scalars['Boolean']['output'];
75719
+ };
75588
75720
  export declare type MercuryCreateStrategicEventInput = {
75589
75721
  cloudId?: InputMaybe<Scalars['ID']['input']>;
75590
75722
  description?: InputMaybe<Scalars['String']['input']>;
@@ -75606,6 +75738,15 @@ export declare type MercuryDeleteAllPreferencesByUserPayload = Payload & {
75606
75738
  errors?: Maybe<Array<MutationError>>;
75607
75739
  success: Scalars['Boolean']['output'];
75608
75740
  };
75741
+ export declare type MercuryDeleteChangeProposalCommentInput = {
75742
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
75743
+ id: Scalars['ID']['input'];
75744
+ };
75745
+ export declare type MercuryDeleteChangeProposalCommentPayload = Payload & {
75746
+ __typename?: 'MercuryDeleteChangeProposalCommentPayload';
75747
+ errors?: Maybe<Array<MutationError>>;
75748
+ success: Scalars['Boolean']['output'];
75749
+ };
75609
75750
  export declare type MercuryDeleteChangesInput = {
75610
75751
  changeIds: Array<Scalars['ID']['input']>;
75611
75752
  };
@@ -75714,6 +75855,15 @@ export declare type MercuryDeletePreferencePayload = Payload & {
75714
75855
  errors?: Maybe<Array<MutationError>>;
75715
75856
  success: Scalars['Boolean']['output'];
75716
75857
  };
75858
+ export declare type MercuryDeleteStrategicEventCommentInput = {
75859
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
75860
+ id: Scalars['ID']['input'];
75861
+ };
75862
+ export declare type MercuryDeleteStrategicEventCommentPayload = Payload & {
75863
+ __typename?: 'MercuryDeleteStrategicEventCommentPayload';
75864
+ errors?: Maybe<Array<MutationError>>;
75865
+ success: Scalars['Boolean']['output'];
75866
+ };
75717
75867
  export declare enum MercuryEntityType {
75718
75868
  Comment = "COMMENT",
75719
75869
  FocusArea = "FOCUS_AREA",
@@ -76158,6 +76308,17 @@ export declare type MercuryMediaToken = {
76158
76308
  __typename?: 'MercuryMediaToken';
76159
76309
  token: Scalars['String']['output'];
76160
76310
  };
76311
+ export declare type MercuryMoveFundsChangeInput = {
76312
+ amount: Scalars['BigDecimal']['input'];
76313
+ sourceFocusAreaId: Scalars['ID']['input'];
76314
+ targetFocusAreaId: Scalars['ID']['input'];
76315
+ };
76316
+ export declare type MercuryMovePositionsChangeInput = {
76317
+ cost?: InputMaybe<Scalars['BigDecimal']['input']>;
76318
+ positionsAmount: Scalars['Int']['input'];
76319
+ sourceFocusAreaId: Scalars['ID']['input'];
76320
+ targetFocusAreaId: Scalars['ID']['input'];
76321
+ };
76161
76322
  export declare type MercuryMutationApi = {
76162
76323
  __typename?: 'MercuryMutationApi';
76163
76324
  addWatcherToFocusArea?: Maybe<MercuryAddWatcherToFocusAreaPayload>;
@@ -76355,6 +76516,7 @@ export declare type MercuryPositionAllocationChange = MercuryChangeInterface & N
76355
76516
  };
76356
76517
  export declare type MercuryPositionAllocationChangeInput = {
76357
76518
  positionId: Scalars['ID']['input'];
76519
+ sourceFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
76358
76520
  targetFocusAreaId: Scalars['ID']['input'];
76359
76521
  };
76360
76522
  export declare type MercuryPreference = Node & {
@@ -76380,8 +76542,14 @@ export declare enum MercuryProjectTargetDateType {
76380
76542
  Quarter = "QUARTER"
76381
76543
  }
76382
76544
  export declare type MercuryProposeChangesInput = {
76545
+ archiveFocusAreas?: InputMaybe<Array<MercuryArchiveFocusAreaChangeInput>>;
76383
76546
  changeProposalId: Scalars['ID']['input'];
76547
+ createFocusAreas?: InputMaybe<Array<MercuryCreateFocusAreaChangeInput>>;
76548
+ moveFunds?: InputMaybe<Array<MercuryMoveFundsChangeInput>>;
76549
+ movePositions?: InputMaybe<Array<MercuryMovePositionsChangeInput>>;
76384
76550
  positionAllocations: Array<MercuryPositionAllocationChangeInput>;
76551
+ requestFunds?: InputMaybe<Array<MercuryRequestFundsChangeInput>>;
76552
+ requestPositions?: InputMaybe<Array<MercuryRequestPositionsChangeInput>>;
76385
76553
  };
76386
76554
  export declare type MercuryProposeChangesPayload = Payload & {
76387
76555
  __typename?: 'MercuryProposeChangesPayload';
@@ -76731,6 +76899,15 @@ export declare type MercuryRemoveWatcherFromFocusAreaPayload = Payload & {
76731
76899
  errors?: Maybe<Array<MutationError>>;
76732
76900
  success: Scalars['Boolean']['output'];
76733
76901
  };
76902
+ export declare type MercuryRequestFundsChangeInput = {
76903
+ amount: Scalars['BigDecimal']['input'];
76904
+ targetFocusAreaId: Scalars['ID']['input'];
76905
+ };
76906
+ export declare type MercuryRequestPositionsChangeInput = {
76907
+ cost?: InputMaybe<Scalars['BigDecimal']['input']>;
76908
+ positionsAmount: Scalars['Int']['input'];
76909
+ targetFocusAreaId: Scalars['ID']['input'];
76910
+ };
76734
76911
  export declare type MercurySetPreferenceInput = {
76735
76912
  cloudId: Scalars['ID']['input'];
76736
76913
  key: Scalars['String']['input'];
@@ -76793,26 +76970,6 @@ export declare type MercuryStrategicEventConnection = {
76793
76970
  pageInfo: PageInfo;
76794
76971
  totalCount?: Maybe<Scalars['Int']['output']>;
76795
76972
  };
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
76973
  export declare type MercuryStrategicEventEdge = {
76817
76974
  __typename?: 'MercuryStrategicEventEdge';
76818
76975
  cursor: Scalars['String']['output'];
@@ -76844,34 +77001,23 @@ export declare type MercuryStrategicEventStatusTransitions = {
76844
77001
  __typename?: 'MercuryStrategicEventStatusTransitions';
76845
77002
  available: Array<MercuryStrategicEventStatusTransition>;
76846
77003
  };
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
77004
  export declare type MercuryStrategicEventsMutationApi = {
76859
77005
  __typename?: 'MercuryStrategicEventsMutationApi';
76860
77006
  createChangeProposal?: Maybe<MercuryCreateChangeProposalPayload>;
76861
- createChangeProposalComment?: Maybe<MercuryChangeProposalCreateCommentPayload>;
77007
+ createChangeProposalComment?: Maybe<MercuryCreateChangeProposalCommentPayload>;
76862
77008
  createStrategicEvent?: Maybe<MercuryCreateStrategicEventPayload>;
76863
- createStrategicEventComment?: Maybe<MercuryStrategicEventCreateCommentPayload>;
76864
- deleteChangeProposalComment?: Maybe<MercuryChangeProposalDeleteCommentPayload>;
77009
+ createStrategicEventComment?: Maybe<MercuryCreateStrategicEventCommentPayload>;
77010
+ deleteChangeProposalComment?: Maybe<MercuryDeleteChangeProposalCommentPayload>;
76865
77011
  deleteChanges?: Maybe<MercuryDeleteChangesPayload>;
76866
- deleteStrategicEventComment?: Maybe<MercuryStrategicEventDeleteCommentPayload>;
77012
+ deleteStrategicEventComment?: Maybe<MercuryDeleteStrategicEventCommentPayload>;
76867
77013
  proposeChanges?: Maybe<MercuryProposeChangesPayload>;
76868
77014
  transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
76869
77015
  transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
76870
- updateChangeProposalComment?: Maybe<MercuryChangeProposalUpdateCommentPayload>;
77016
+ updateChangeProposalComment?: Maybe<MercuryUpdateChangeProposalCommentPayload>;
76871
77017
  updateChangeProposalDescription?: Maybe<MercuryUpdateChangeProposalPayload>;
76872
77018
  updateChangeProposalName?: Maybe<MercuryUpdateChangeProposalPayload>;
76873
77019
  updateChangeProposalOwner?: Maybe<MercuryUpdateChangeProposalPayload>;
76874
- updateStrategicEventComment?: Maybe<MercuryStrategicEventUpdateCommentPayload>;
77020
+ updateStrategicEventComment?: Maybe<MercuryUpdateStrategicEventCommentPayload>;
76875
77021
  updateStrategicEventDescription?: Maybe<MercuryUpdateStrategicEventPayload>;
76876
77022
  updateStrategicEventName?: Maybe<MercuryUpdateStrategicEventPayload>;
76877
77023
  updateStrategicEventOwner?: Maybe<MercuryUpdateStrategicEventPayload>;
@@ -76881,22 +77027,22 @@ export declare type MercuryStrategicEventsMutationApiCreateChangeProposalArgs =
76881
77027
  input: MercuryCreateChangeProposalInput;
76882
77028
  };
76883
77029
  export declare type MercuryStrategicEventsMutationApiCreateChangeProposalCommentArgs = {
76884
- input: MercuryChangeProposalCreateCommentInput;
77030
+ input: MercuryCreateChangeProposalCommentInput;
76885
77031
  };
76886
77032
  export declare type MercuryStrategicEventsMutationApiCreateStrategicEventArgs = {
76887
77033
  input: MercuryCreateStrategicEventInput;
76888
77034
  };
76889
77035
  export declare type MercuryStrategicEventsMutationApiCreateStrategicEventCommentArgs = {
76890
- input: MercuryStrategicEventCreateCommentInput;
77036
+ input: MercuryCreateStrategicEventCommentInput;
76891
77037
  };
76892
77038
  export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalCommentArgs = {
76893
- input: MercuryChangeProposalDeleteCommentInput;
77039
+ input: MercuryDeleteChangeProposalCommentInput;
76894
77040
  };
76895
77041
  export declare type MercuryStrategicEventsMutationApiDeleteChangesArgs = {
76896
77042
  input?: InputMaybe<MercuryDeleteChangesInput>;
76897
77043
  };
76898
77044
  export declare type MercuryStrategicEventsMutationApiDeleteStrategicEventCommentArgs = {
76899
- input: MercuryStrategicEventDeleteCommentInput;
77045
+ input: MercuryDeleteStrategicEventCommentInput;
76900
77046
  };
76901
77047
  export declare type MercuryStrategicEventsMutationApiProposeChangesArgs = {
76902
77048
  input: MercuryProposeChangesInput;
@@ -76908,7 +77054,7 @@ export declare type MercuryStrategicEventsMutationApiTransitionStrategicEventSta
76908
77054
  input: MercuryTransitionStrategicEventStatusInput;
76909
77055
  };
76910
77056
  export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalCommentArgs = {
76911
- input: MercuryChangeProposalUpdateCommentInput;
77057
+ input: MercuryUpdateChangeProposalCommentInput;
76912
77058
  };
76913
77059
  export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalDescriptionArgs = {
76914
77060
  input: MercuryUpdateChangeProposalDescriptionInput;
@@ -76920,7 +77066,7 @@ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalOwnerAr
76920
77066
  input: MercuryUpdateChangeProposalOwnerInput;
76921
77067
  };
76922
77068
  export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventCommentArgs = {
76923
- input: MercuryStrategicEventUpdateCommentInput;
77069
+ input: MercuryUpdateStrategicEventCommentInput;
76924
77070
  };
76925
77071
  export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventDescriptionArgs = {
76926
77072
  input: MercuryUpdateStrategicEventDescriptionInput;
@@ -76941,6 +77087,7 @@ export declare type MercuryStrategicEventsQueryApi = {
76941
77087
  changeProposals?: Maybe<Array<Maybe<MercuryChangeProposal>>>;
76942
77088
  changeProposalsSearch?: Maybe<MercuryChangeProposalConnection>;
76943
77089
  changes?: Maybe<Array<Maybe<MercuryChange>>>;
77090
+ changesSearch?: Maybe<MercuryChangeConnection>;
76944
77091
  strategicEvent?: Maybe<MercuryStrategicEvent>;
76945
77092
  strategicEventStatuses: Array<MercuryStrategicEventStatus>;
76946
77093
  strategicEvents?: Maybe<Array<Maybe<MercuryStrategicEvent>>>;
@@ -76965,6 +77112,13 @@ export declare type MercuryStrategicEventsQueryApiChangeProposalsSearchArgs = {
76965
77112
  export declare type MercuryStrategicEventsQueryApiChangesArgs = {
76966
77113
  ids: Array<Scalars['ID']['input']>;
76967
77114
  };
77115
+ export declare type MercuryStrategicEventsQueryApiChangesSearchArgs = {
77116
+ after?: InputMaybe<Scalars['String']['input']>;
77117
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
77118
+ first?: InputMaybe<Scalars['Int']['input']>;
77119
+ q?: InputMaybe<Scalars['String']['input']>;
77120
+ sort?: InputMaybe<Array<InputMaybe<MercuryChangeSort>>>;
77121
+ };
76968
77122
  export declare type MercuryStrategicEventsQueryApiStrategicEventArgs = {
76969
77123
  id: Scalars['ID']['input'];
76970
77124
  };
@@ -77084,6 +77238,17 @@ export declare type MercuryUnarchiveFocusAreaPayload = Payload & {
77084
77238
  errors?: Maybe<Array<MutationError>>;
77085
77239
  success: Scalars['Boolean']['output'];
77086
77240
  };
77241
+ export declare type MercuryUpdateChangeProposalCommentInput = {
77242
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
77243
+ content: Scalars['String']['input'];
77244
+ id: Scalars['ID']['input'];
77245
+ };
77246
+ export declare type MercuryUpdateChangeProposalCommentPayload = {
77247
+ __typename?: 'MercuryUpdateChangeProposalCommentPayload';
77248
+ errors?: Maybe<Array<MutationError>>;
77249
+ success: Scalars['Boolean']['output'];
77250
+ updatedComment?: Maybe<MercuryChangeProposalComment>;
77251
+ };
77087
77252
  export declare type MercuryUpdateChangeProposalDescriptionInput = {
77088
77253
  cloudId?: InputMaybe<Scalars['ID']['input']>;
77089
77254
  description: Scalars['String']['input'];
@@ -77167,6 +77332,17 @@ export declare type MercuryUpdatePortfolioPayload = Payload & {
77167
77332
  success: Scalars['Boolean']['output'];
77168
77333
  updatedPortfolio?: Maybe<MercuryPortfolio>;
77169
77334
  };
77335
+ export declare type MercuryUpdateStrategicEventCommentInput = {
77336
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
77337
+ content: Scalars['String']['input'];
77338
+ id: Scalars['ID']['input'];
77339
+ };
77340
+ export declare type MercuryUpdateStrategicEventCommentPayload = {
77341
+ __typename?: 'MercuryUpdateStrategicEventCommentPayload';
77342
+ errors?: Maybe<Array<MutationError>>;
77343
+ success: Scalars['Boolean']['output'];
77344
+ updatedComment?: Maybe<MercuryStrategicEventComment>;
77345
+ };
77170
77346
  export declare type MercuryUpdateStrategicEventDescriptionInput = {
77171
77347
  cloudId?: InputMaybe<Scalars['ID']['input']>;
77172
77348
  description: Scalars['String']['input'];
@@ -77806,6 +77982,7 @@ export declare type Mutation = {
77806
77982
  jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
77807
77983
  jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
77808
77984
  jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
77985
+ jira_setBoardIssueCardCover?: Maybe<JiraSetBoardIssueCardCoverPayload>;
77809
77986
  jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
77810
77987
  jira_setBoardViewCardOptionState?: Maybe<JiraSetBoardViewCardOptionStatePayload>;
77811
77988
  jira_setBoardViewColumnState?: Maybe<JiraSetBoardViewColumnStatePayload>;
@@ -77859,6 +78036,7 @@ export declare type Mutation = {
77859
78036
  publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
77860
78037
  publishReleaseNote: ContentPlatformReleaseNote;
77861
78038
  radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
78039
+ radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
77862
78040
  rankCardParent?: Maybe<GenericMutationResponse>;
77863
78041
  rankColumn?: Maybe<RankColumnOutput>;
77864
78042
  rankCustomFilter?: Maybe<GenericMutationResponse>;
@@ -79028,6 +79206,7 @@ export declare type MutationDevai_CreateTechnicalPlannerJobArgs = {
79028
79206
  summary?: InputMaybe<Scalars['String']['input']>;
79029
79207
  };
79030
79208
  export declare type MutationDevai_FlowCreateArgs = {
79209
+ additionalInfoJSON?: InputMaybe<Scalars['String']['input']>;
79031
79210
  cloudId: Scalars['String']['input'];
79032
79211
  createdBy: Scalars['String']['input'];
79033
79212
  issueARI?: InputMaybe<Scalars['ID']['input']>;
@@ -79137,6 +79316,9 @@ export declare type MutationJira_PublishBoardViewConfigArgs = {
79137
79316
  export declare type MutationJira_ReorderBoardViewColumnArgs = {
79138
79317
  input: JiraReorderBoardViewColumnInput;
79139
79318
  };
79319
+ export declare type MutationJira_SetBoardIssueCardCoverArgs = {
79320
+ input: JiraSetBoardIssueCardCoverInput;
79321
+ };
79140
79322
  export declare type MutationJira_SetBoardViewCardFieldSelectedArgs = {
79141
79323
  input: JiraSetBoardViewCardFieldSelectedInput;
79142
79324
  };
@@ -79269,6 +79451,10 @@ export declare type MutationRadar_UpdateFocusAreaMappingsArgs = {
79269
79451
  cloudId: Scalars['ID']['input'];
79270
79452
  input: Array<RadarFocusAreaMappingsInput>;
79271
79453
  };
79454
+ export declare type MutationRadar_UpdateWorkspaceSettingsArgs = {
79455
+ cloudId: Scalars['ID']['input'];
79456
+ input: RadarWorkspaceSettingsInput;
79457
+ };
79272
79458
  export declare type MutationRankCardParentArgs = {
79273
79459
  input: CardParentRankInput;
79274
79460
  };
@@ -82779,6 +82965,7 @@ export declare type Query = {
82779
82965
  helpObjectStore_searchPortals?: Maybe<HelpObjectStorePortalSearchResponse>;
82780
82966
  helpObjectStore_searchRequestTypes?: Maybe<HelpObjectStoreRequestTypeSearchResponse>;
82781
82967
  homeUserSettings?: Maybe<HomeUserSettings>;
82968
+ identity_groupsByIds?: Maybe<Array<IdentityGroup>>;
82782
82969
  incomingLinksCount?: Maybe<IncomingLinksCount>;
82783
82970
  inlineTasks?: Maybe<InlineTasksQueryResult>;
82784
82971
  insights?: Maybe<Insights>;
@@ -84926,7 +85113,7 @@ export declare type QueryHelpObjectStore_SearchArticlesArgs = {
84926
85113
  highlight?: InputMaybe<Scalars['Boolean']['input']>;
84927
85114
  limit: Scalars['Int']['input'];
84928
85115
  portalIds?: InputMaybe<Array<Scalars['String']['input']>>;
84929
- queryTerm: Scalars['String']['input'];
85116
+ queryTerm?: InputMaybe<Scalars['String']['input']>;
84930
85117
  skipRestrictedPages?: InputMaybe<Scalars['Boolean']['input']>;
84931
85118
  };
84932
85119
  export declare type QueryHelpObjectStore_SearchPortalsArgs = {
@@ -84942,6 +85129,9 @@ export declare type QueryHelpObjectStore_SearchRequestTypesArgs = {
84942
85129
  portalId?: InputMaybe<Scalars['String']['input']>;
84943
85130
  queryTerm: Scalars['String']['input'];
84944
85131
  };
85132
+ export declare type QueryIdentity_GroupsByIdsArgs = {
85133
+ ids: Array<Scalars['ID']['input']>;
85134
+ };
84945
85135
  export declare type QueryIncomingLinksCountArgs = {
84946
85136
  contentId: Scalars['ID']['input'];
84947
85137
  };
@@ -85880,6 +86070,7 @@ export declare type RadarAriFieldValue = {
85880
86070
  export declare type RadarAriObject = MercuryFocusArea | RadarPosition | RadarWorker;
85881
86071
  export declare type RadarBooleanFieldValue = {
85882
86072
  __typename?: 'RadarBooleanFieldValue';
86073
+ isHidden?: Maybe<Scalars['Boolean']['output']>;
85883
86074
  value?: Maybe<Scalars['Boolean']['output']>;
85884
86075
  };
85885
86076
  export declare type RadarConnection = {
@@ -85888,6 +86079,7 @@ export declare type RadarConnection = {
85888
86079
  };
85889
86080
  export declare type RadarDateFieldValue = {
85890
86081
  __typename?: 'RadarDateFieldValue';
86082
+ isHidden?: Maybe<Scalars['Boolean']['output']>;
85891
86083
  value?: Maybe<Scalars['DateTime']['output']>;
85892
86084
  };
85893
86085
  export declare type RadarDynamicFilterOptions = RadarFilterOptions & {
@@ -86058,6 +86250,7 @@ export declare type RadarNumericFieldDefinition = RadarFieldDefinition & {
86058
86250
  export declare type RadarNumericFieldValue = {
86059
86251
  __typename?: 'RadarNumericFieldValue';
86060
86252
  displayValue?: Maybe<Scalars['Int']['output']>;
86253
+ isHidden?: Maybe<Scalars['Boolean']['output']>;
86061
86254
  value?: Maybe<Scalars['Int']['output']>;
86062
86255
  };
86063
86256
  export declare type RadarPermissions = {
@@ -86065,6 +86258,10 @@ export declare type RadarPermissions = {
86065
86258
  canManagersAllocate: Scalars['Boolean']['output'];
86066
86259
  canManagersViewSensitiveFields: Scalars['Boolean']['output'];
86067
86260
  };
86261
+ export declare type RadarPermissionsInput = {
86262
+ canManagersAllocate: Scalars['Boolean']['input'];
86263
+ canManagersViewSensitiveFields: Scalars['Boolean']['input'];
86264
+ };
86068
86265
  export declare type RadarPosition = Node & RadarEntity & {
86069
86266
  __typename?: 'RadarPosition';
86070
86267
  directReports?: Maybe<Array<RadarPosition>>;
@@ -86114,16 +86311,19 @@ export declare type RadarStatusFieldValue = {
86114
86311
  __typename?: 'RadarStatusFieldValue';
86115
86312
  appearance?: Maybe<RadarStatusAppearance>;
86116
86313
  displayValue?: Maybe<Scalars['String']['output']>;
86314
+ isHidden?: Maybe<Scalars['Boolean']['output']>;
86117
86315
  value?: Maybe<Scalars['String']['output']>;
86118
86316
  };
86119
86317
  export declare type RadarStringFieldValue = {
86120
86318
  __typename?: 'RadarStringFieldValue';
86319
+ isHidden?: Maybe<Scalars['Boolean']['output']>;
86121
86320
  value?: Maybe<Scalars['String']['output']>;
86122
86321
  };
86123
86322
  export declare type RadarUrlFieldValue = {
86124
86323
  __typename?: 'RadarUrlFieldValue';
86125
86324
  displayValue?: Maybe<Scalars['String']['output']>;
86126
86325
  icon?: Maybe<Scalars['String']['output']>;
86326
+ isHidden?: Maybe<Scalars['Boolean']['output']>;
86127
86327
  value?: Maybe<Scalars['String']['output']>;
86128
86328
  };
86129
86329
  export declare type RadarUserContext = {
@@ -86163,6 +86363,9 @@ export declare type RadarWorkspace = {
86163
86363
  userContext?: Maybe<RadarUserContext>;
86164
86364
  workerFields: Array<RadarFieldDefinition>;
86165
86365
  };
86366
+ export declare type RadarWorkspaceSettingsInput = {
86367
+ permissions: RadarPermissionsInput;
86368
+ };
86166
86369
  export declare type RankColumnInput = {
86167
86370
  boardId: Scalars['ID']['input'];
86168
86371
  columnId: Scalars['ID']['input'];
@@ -89980,6 +90183,8 @@ export declare enum ShepherdRemediationActionType {
89980
90183
  ArchiveRestoreClassificationRemediation = "ARCHIVE_RESTORE_CLASSIFICATION_REMEDIATION",
89981
90184
  BlockchainExplorerRemediation = "BLOCKCHAIN_EXPLORER_REMEDIATION",
89982
90185
  BlockIpAllowlistRemediation = "BLOCK_IP_ALLOWLIST_REMEDIATION",
90186
+ ChangeConfluenceSpaceAttachmentPermissionsRemediation = "CHANGE_CONFLUENCE_SPACE_ATTACHMENT_PERMISSIONS_REMEDIATION",
90187
+ ChangeJiraAttachmentPermissionsRemediation = "CHANGE_JIRA_ATTACHMENT_PERMISSIONS_REMEDIATION",
89983
90188
  CheckAutomationsRemediation = "CHECK_AUTOMATIONS_REMEDIATION",
89984
90189
  ClassificationLevelChangeRemediation = "CLASSIFICATION_LEVEL_CHANGE_REMEDIATION",
89985
90190
  CompromisedDeviceRemediation = "COMPROMISED_DEVICE_REMEDIATION",
@@ -89999,6 +90204,7 @@ export declare enum ShepherdRemediationActionType {
89999
90204
  ManageAppsRemediation = "MANAGE_APPS_REMEDIATION",
90000
90205
  ManageDomainRemediation = "MANAGE_DOMAIN_REMEDIATION",
90001
90206
  ManageDspRemediation = "MANAGE_DSP_REMEDIATION",
90207
+ MoveOrRemoveAttachmentRemediation = "MOVE_OR_REMOVE_ATTACHMENT_REMEDIATION",
90002
90208
  PublicAccessDspRemediation = "PUBLIC_ACCESS_DSP_REMEDIATION",
90003
90209
  ResetAccountPasswordRemediation = "RESET_ACCOUNT_PASSWORD_REMEDIATION",
90004
90210
  RestoreAccessRemediation = "RESTORE_ACCESS_REMEDIATION",