@forge/cli-shared 6.8.0-next.21 → 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']>;
@@ -58702,6 +58758,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
58702
58758
  lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
58703
58759
  legacyContentPanels?: Maybe<JiraIssueContentPanelConnection>;
58704
58760
  lifecycleState?: Maybe<JiraIssueLifecycleState>;
58761
+ matchesIssueSearch?: Maybe<Scalars['Boolean']['output']>;
58705
58762
  mediaReadToken?: Maybe<JiraMediaReadToken>;
58706
58763
  mediaUploadToken?: Maybe<JiraMediaUploadTokenResult>;
58707
58764
  mercuryOriginalProjectStatus?: Maybe<MercuryOriginalProjectStatus>;
@@ -58882,6 +58939,9 @@ export declare type JiraIssueLegacyContentPanelsArgs = {
58882
58939
  first?: InputMaybe<Scalars['Int']['input']>;
58883
58940
  last?: InputMaybe<Scalars['Int']['input']>;
58884
58941
  };
58942
+ export declare type JiraIssueMatchesIssueSearchArgs = {
58943
+ issueSearchInput: JiraIssueSearchInput;
58944
+ };
58885
58945
  export declare type JiraIssueMediaReadTokenArgs = {
58886
58946
  maxTokenLength: Scalars['Int']['input'];
58887
58947
  };
@@ -59416,6 +59476,7 @@ export declare type JiraIssueFieldsInput = {
59416
59476
  singleSelectUserPickerFields?: InputMaybe<Array<JiraSingleSelectUserPickerFieldInput>>;
59417
59477
  singleVersionPickerFields?: InputMaybe<Array<JiraSingleVersionPickerFieldInput>>;
59418
59478
  sprintsField?: InputMaybe<JiraSprintFieldInput>;
59479
+ status?: InputMaybe<JiraStatusInput>;
59419
59480
  teamFields?: InputMaybe<Array<JiraTeamFieldInput>>;
59420
59481
  timeTrackingField?: InputMaybe<JiraTimeTrackingFieldInput>;
59421
59482
  urlFields?: InputMaybe<Array<JiraUrlFieldInput>>;
@@ -60105,6 +60166,10 @@ export declare type JiraIssueSearchViewPayload = Payload & {
60105
60166
  view?: Maybe<JiraIssueSearchView>;
60106
60167
  };
60107
60168
  export declare type JiraIssueSearchViewResult = JiraIssueSearchView | QueryError;
60169
+ export declare type JiraIssueStreamHubEventPayloadProject = {
60170
+ __typename?: 'JiraIssueStreamHubEventPayloadProject';
60171
+ id: Scalars['Int']['output'];
60172
+ };
60108
60173
  export declare type JiraIssueTransitionComment = {
60109
60174
  __typename?: 'JiraIssueTransitionComment';
60110
60175
  adminRichTextConfig?: Maybe<JiraAdminRichTextFieldConfig>;
@@ -60373,6 +60438,13 @@ export declare type JiraJqlHistoryEdge = {
60373
60438
  __typename?: 'JiraJQLHistoryEdge';
60374
60439
  node?: Maybe<JiraJqlHistory>;
60375
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
+ };
60376
60448
  export declare enum JiraJourneyActiveState {
60377
60449
  Active = "ACTIVE",
60378
60450
  Inactive = "INACTIVE",
@@ -64395,6 +64467,9 @@ export declare type JiraProjectsSidebarMenu = {
64395
64467
  favouriteLimit?: Maybe<Scalars['Int']['output']>;
64396
64468
  favourites?: Maybe<JiraProjectConnection>;
64397
64469
  id: Scalars['ID']['output'];
64470
+ more?: Maybe<JiraProjectConnection>;
64471
+ moreFavourites?: Maybe<JiraProjectConnection>;
64472
+ moreRecents?: Maybe<JiraProjectConnection>;
64398
64473
  recentLimit?: Maybe<Scalars['Int']['output']>;
64399
64474
  recents?: Maybe<JiraProjectConnection>;
64400
64475
  };
@@ -64404,6 +64479,18 @@ export declare type JiraProjectsSidebarMenuFavouritesArgs = {
64404
64479
  first?: InputMaybe<Scalars['Int']['input']>;
64405
64480
  last?: InputMaybe<Scalars['Int']['input']>;
64406
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
+ };
64407
64494
  export declare type JiraProjectsSidebarMenuRecentsArgs = {
64408
64495
  after?: InputMaybe<Scalars['String']['input']>;
64409
64496
  before?: InputMaybe<Scalars['String']['input']>;
@@ -64501,6 +64588,7 @@ export declare type JiraQuery = {
64501
64588
  globalTimeTrackingSettings?: Maybe<JiraTimeTrackingSettings>;
64502
64589
  grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
64503
64590
  groupCommentVisibilities?: Maybe<JiraGroupConnection>;
64591
+ groupsForIssues?: Maybe<JiraSpreadsheetGroupConnection>;
64504
64592
  hasGlobalPermission?: Maybe<Scalars['Boolean']['output']>;
64505
64593
  hasProjectPermission?: Maybe<Scalars['Boolean']['output']>;
64506
64594
  installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
@@ -64944,6 +65032,18 @@ export declare type JiraQueryGroupCommentVisibilitiesArgs = {
64944
65032
  first?: InputMaybe<Scalars['Int']['input']>;
64945
65033
  last?: InputMaybe<Scalars['Int']['input']>;
64946
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
+ };
64947
65047
  export declare type JiraQueryHasGlobalPermissionArgs = {
64948
65048
  cloudId: Scalars['ID']['input'];
64949
65049
  key: JiraGlobalPermissionType;
@@ -67679,6 +67779,19 @@ export declare type JiraSetApplicationPropertyInput = {
67679
67779
  key: Scalars['String']['input'];
67680
67780
  value: Scalars['String']['input'];
67681
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
+ };
67682
67795
  export declare type JiraSetBoardViewCardFieldSelectedInput = {
67683
67796
  fieldId: Scalars['String']['input'];
67684
67797
  selected: Scalars['Boolean']['input'];
@@ -68523,6 +68636,9 @@ export declare type JiraStatusFieldPayload = Payload & {
68523
68636
  field?: Maybe<JiraStatusField>;
68524
68637
  success: Scalars['Boolean']['output'];
68525
68638
  };
68639
+ export declare type JiraStatusInput = {
68640
+ statusId: Scalars['ID']['input'];
68641
+ };
68526
68642
  export declare type JiraStoryPoint = {
68527
68643
  __typename?: 'JiraStoryPoint';
68528
68644
  value: Scalars['Float']['output'];
@@ -68571,6 +68687,7 @@ export declare type JiraSubscription = {
68571
68687
  onIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
68572
68688
  onIssueExported?: Maybe<JiraIssueExportEvent>;
68573
68689
  onIssueUpdatedByProject?: Maybe<JiraIssue>;
68690
+ onJirtIssueSubscription?: Maybe<JiraJirtEventPayload>;
68574
68691
  onJwmFieldMutation?: Maybe<JiraJwmField>;
68575
68692
  onJwmIssueCreatedByProject?: Maybe<JiraIssueCreatedStreamHubPayload>;
68576
68693
  onJwmIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
@@ -68633,6 +68750,12 @@ export declare type JiraSubscriptionOnIssueUpdatedByProjectArgs = {
68633
68750
  cloudId: Scalars['ID']['input'];
68634
68751
  projectId: Scalars['String']['input'];
68635
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
+ };
68636
68759
  export declare type JiraSubscriptionOnJwmFieldMutationArgs = {
68637
68760
  siteId: Scalars['ID']['input'];
68638
68761
  };
@@ -75354,6 +75477,9 @@ export declare type MercuryAggregatedPortfolioStatusCount = {
75354
75477
  __typename?: 'MercuryAggregatedPortfolioStatusCount';
75355
75478
  children: MercuryFocusAreaStatusCount;
75356
75479
  };
75480
+ export declare type MercuryArchiveFocusAreaChangeInput = {
75481
+ targetFocusAreaId: Scalars['ID']['input'];
75482
+ };
75357
75483
  export declare type MercuryArchiveFocusAreaInput = {
75358
75484
  cloudId: Scalars['ID']['input'];
75359
75485
  id: Scalars['ID']['input'];
@@ -75369,6 +75495,17 @@ export declare type MercuryBudgetAggregation = {
75369
75495
  totalAssignedBudget?: Maybe<Scalars['BigDecimal']['output']>;
75370
75496
  };
75371
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
+ };
75372
75509
  export declare type MercuryChangeInterface = {
75373
75510
  changeProposal?: Maybe<MercuryChangeProposal>;
75374
75511
  changeType: MercuryChangeType;
@@ -75417,26 +75554,6 @@ export declare type MercuryChangeProposalConnection = {
75417
75554
  pageInfo: PageInfo;
75418
75555
  totalCount?: Maybe<Scalars['Int']['output']>;
75419
75556
  };
75420
- export declare type MercuryChangeProposalCreateCommentInput = {
75421
- cloudId?: InputMaybe<Scalars['ID']['input']>;
75422
- content: Scalars['String']['input'];
75423
- id: Scalars['ID']['input'];
75424
- };
75425
- export declare type MercuryChangeProposalCreateCommentPayload = Payload & {
75426
- __typename?: 'MercuryChangeProposalCreateCommentPayload';
75427
- createdComment?: Maybe<MercuryChangeProposalComment>;
75428
- errors?: Maybe<Array<MutationError>>;
75429
- success: Scalars['Boolean']['output'];
75430
- };
75431
- export declare type MercuryChangeProposalDeleteCommentInput = {
75432
- cloudId?: InputMaybe<Scalars['ID']['input']>;
75433
- id: Scalars['ID']['input'];
75434
- };
75435
- export declare type MercuryChangeProposalDeleteCommentPayload = Payload & {
75436
- __typename?: 'MercuryChangeProposalDeleteCommentPayload';
75437
- errors?: Maybe<Array<MutationError>>;
75438
- success: Scalars['Boolean']['output'];
75439
- };
75440
75557
  export declare type MercuryChangeProposalEdge = {
75441
75558
  __typename?: 'MercuryChangeProposalEdge';
75442
75559
  cursor: Scalars['String']['output'];
@@ -75466,17 +75583,13 @@ export declare type MercuryChangeProposalStatusTransitions = {
75466
75583
  __typename?: 'MercuryChangeProposalStatusTransitions';
75467
75584
  available: Array<MercuryChangeProposalStatusTransition>;
75468
75585
  };
75469
- export declare type MercuryChangeProposalUpdateCommentInput = {
75470
- cloudId?: InputMaybe<Scalars['ID']['input']>;
75471
- content: Scalars['String']['input'];
75472
- id: Scalars['ID']['input'];
75473
- };
75474
- export declare type MercuryChangeProposalUpdateCommentPayload = {
75475
- __typename?: 'MercuryChangeProposalUpdateCommentPayload';
75476
- errors?: Maybe<Array<MutationError>>;
75477
- success: Scalars['Boolean']['output'];
75478
- updatedComment?: Maybe<MercuryChangeProposalComment>;
75586
+ export declare type MercuryChangeSort = {
75587
+ field: MercuryChangeSortField;
75588
+ order: SortOrder;
75479
75589
  };
75590
+ export declare enum MercuryChangeSortField {
75591
+ Type = "TYPE"
75592
+ }
75480
75593
  export declare enum MercuryChangeType {
75481
75594
  CreateFocusArea = "CREATE_FOCUS_AREA",
75482
75595
  PositionAllocation = "POSITION_ALLOCATION"
@@ -75501,6 +75614,17 @@ export declare type MercuryCommentEdge = {
75501
75614
  cursor: Scalars['String']['output'];
75502
75615
  node?: Maybe<MercuryComment>;
75503
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
+ };
75504
75628
  export declare type MercuryCreateChangeProposalInput = {
75505
75629
  cloudId?: InputMaybe<Scalars['ID']['input']>;
75506
75630
  description?: InputMaybe<Scalars['String']['input']>;
@@ -75539,6 +75663,11 @@ export declare type MercuryCreateFocusAreaChange = MercuryChangeInterface & Node
75539
75663
  updatedBy?: Maybe<User>;
75540
75664
  updatedDate: Scalars['DateTime']['output'];
75541
75665
  };
75666
+ export declare type MercuryCreateFocusAreaChangeInput = {
75667
+ focusAreaName: Scalars['String']['input'];
75668
+ focusAreaTypeId: Scalars['ID']['input'];
75669
+ targetFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
75670
+ };
75542
75671
  export declare type MercuryCreateFocusAreaInput = {
75543
75672
  cloudId: Scalars['ID']['input'];
75544
75673
  externalId?: InputMaybe<Scalars['String']['input']>;
@@ -75577,6 +75706,17 @@ export declare type MercuryCreatePortfolioPayload = Payload & {
75577
75706
  errors?: Maybe<Array<MutationError>>;
75578
75707
  success: Scalars['Boolean']['output'];
75579
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
+ };
75580
75720
  export declare type MercuryCreateStrategicEventInput = {
75581
75721
  cloudId?: InputMaybe<Scalars['ID']['input']>;
75582
75722
  description?: InputMaybe<Scalars['String']['input']>;
@@ -75598,6 +75738,15 @@ export declare type MercuryDeleteAllPreferencesByUserPayload = Payload & {
75598
75738
  errors?: Maybe<Array<MutationError>>;
75599
75739
  success: Scalars['Boolean']['output'];
75600
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
+ };
75601
75750
  export declare type MercuryDeleteChangesInput = {
75602
75751
  changeIds: Array<Scalars['ID']['input']>;
75603
75752
  };
@@ -75706,6 +75855,15 @@ export declare type MercuryDeletePreferencePayload = Payload & {
75706
75855
  errors?: Maybe<Array<MutationError>>;
75707
75856
  success: Scalars['Boolean']['output'];
75708
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
+ };
75709
75867
  export declare enum MercuryEntityType {
75710
75868
  Comment = "COMMENT",
75711
75869
  FocusArea = "FOCUS_AREA",
@@ -76150,6 +76308,17 @@ export declare type MercuryMediaToken = {
76150
76308
  __typename?: 'MercuryMediaToken';
76151
76309
  token: Scalars['String']['output'];
76152
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
+ };
76153
76322
  export declare type MercuryMutationApi = {
76154
76323
  __typename?: 'MercuryMutationApi';
76155
76324
  addWatcherToFocusArea?: Maybe<MercuryAddWatcherToFocusAreaPayload>;
@@ -76347,6 +76516,7 @@ export declare type MercuryPositionAllocationChange = MercuryChangeInterface & N
76347
76516
  };
76348
76517
  export declare type MercuryPositionAllocationChangeInput = {
76349
76518
  positionId: Scalars['ID']['input'];
76519
+ sourceFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
76350
76520
  targetFocusAreaId: Scalars['ID']['input'];
76351
76521
  };
76352
76522
  export declare type MercuryPreference = Node & {
@@ -76372,8 +76542,14 @@ export declare enum MercuryProjectTargetDateType {
76372
76542
  Quarter = "QUARTER"
76373
76543
  }
76374
76544
  export declare type MercuryProposeChangesInput = {
76545
+ archiveFocusAreas?: InputMaybe<Array<MercuryArchiveFocusAreaChangeInput>>;
76375
76546
  changeProposalId: Scalars['ID']['input'];
76547
+ createFocusAreas?: InputMaybe<Array<MercuryCreateFocusAreaChangeInput>>;
76548
+ moveFunds?: InputMaybe<Array<MercuryMoveFundsChangeInput>>;
76549
+ movePositions?: InputMaybe<Array<MercuryMovePositionsChangeInput>>;
76376
76550
  positionAllocations: Array<MercuryPositionAllocationChangeInput>;
76551
+ requestFunds?: InputMaybe<Array<MercuryRequestFundsChangeInput>>;
76552
+ requestPositions?: InputMaybe<Array<MercuryRequestPositionsChangeInput>>;
76377
76553
  };
76378
76554
  export declare type MercuryProposeChangesPayload = Payload & {
76379
76555
  __typename?: 'MercuryProposeChangesPayload';
@@ -76723,6 +76899,15 @@ export declare type MercuryRemoveWatcherFromFocusAreaPayload = Payload & {
76723
76899
  errors?: Maybe<Array<MutationError>>;
76724
76900
  success: Scalars['Boolean']['output'];
76725
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
+ };
76726
76911
  export declare type MercurySetPreferenceInput = {
76727
76912
  cloudId: Scalars['ID']['input'];
76728
76913
  key: Scalars['String']['input'];
@@ -76785,26 +76970,6 @@ export declare type MercuryStrategicEventConnection = {
76785
76970
  pageInfo: PageInfo;
76786
76971
  totalCount?: Maybe<Scalars['Int']['output']>;
76787
76972
  };
76788
- export declare type MercuryStrategicEventCreateCommentInput = {
76789
- cloudId?: InputMaybe<Scalars['ID']['input']>;
76790
- content: Scalars['String']['input'];
76791
- id: Scalars['ID']['input'];
76792
- };
76793
- export declare type MercuryStrategicEventCreateCommentPayload = Payload & {
76794
- __typename?: 'MercuryStrategicEventCreateCommentPayload';
76795
- createdComment?: Maybe<MercuryStrategicEventComment>;
76796
- errors?: Maybe<Array<MutationError>>;
76797
- success: Scalars['Boolean']['output'];
76798
- };
76799
- export declare type MercuryStrategicEventDeleteCommentInput = {
76800
- cloudId?: InputMaybe<Scalars['ID']['input']>;
76801
- id: Scalars['ID']['input'];
76802
- };
76803
- export declare type MercuryStrategicEventDeleteCommentPayload = Payload & {
76804
- __typename?: 'MercuryStrategicEventDeleteCommentPayload';
76805
- errors?: Maybe<Array<MutationError>>;
76806
- success: Scalars['Boolean']['output'];
76807
- };
76808
76973
  export declare type MercuryStrategicEventEdge = {
76809
76974
  __typename?: 'MercuryStrategicEventEdge';
76810
76975
  cursor: Scalars['String']['output'];
@@ -76836,34 +77001,23 @@ export declare type MercuryStrategicEventStatusTransitions = {
76836
77001
  __typename?: 'MercuryStrategicEventStatusTransitions';
76837
77002
  available: Array<MercuryStrategicEventStatusTransition>;
76838
77003
  };
76839
- export declare type MercuryStrategicEventUpdateCommentInput = {
76840
- cloudId?: InputMaybe<Scalars['ID']['input']>;
76841
- content: Scalars['String']['input'];
76842
- id: Scalars['ID']['input'];
76843
- };
76844
- export declare type MercuryStrategicEventUpdateCommentPayload = {
76845
- __typename?: 'MercuryStrategicEventUpdateCommentPayload';
76846
- errors?: Maybe<Array<MutationError>>;
76847
- success: Scalars['Boolean']['output'];
76848
- updatedComment?: Maybe<MercuryStrategicEventComment>;
76849
- };
76850
77004
  export declare type MercuryStrategicEventsMutationApi = {
76851
77005
  __typename?: 'MercuryStrategicEventsMutationApi';
76852
77006
  createChangeProposal?: Maybe<MercuryCreateChangeProposalPayload>;
76853
- createChangeProposalComment?: Maybe<MercuryChangeProposalCreateCommentPayload>;
77007
+ createChangeProposalComment?: Maybe<MercuryCreateChangeProposalCommentPayload>;
76854
77008
  createStrategicEvent?: Maybe<MercuryCreateStrategicEventPayload>;
76855
- createStrategicEventComment?: Maybe<MercuryStrategicEventCreateCommentPayload>;
76856
- deleteChangeProposalComment?: Maybe<MercuryChangeProposalDeleteCommentPayload>;
77009
+ createStrategicEventComment?: Maybe<MercuryCreateStrategicEventCommentPayload>;
77010
+ deleteChangeProposalComment?: Maybe<MercuryDeleteChangeProposalCommentPayload>;
76857
77011
  deleteChanges?: Maybe<MercuryDeleteChangesPayload>;
76858
- deleteStrategicEventComment?: Maybe<MercuryStrategicEventDeleteCommentPayload>;
77012
+ deleteStrategicEventComment?: Maybe<MercuryDeleteStrategicEventCommentPayload>;
76859
77013
  proposeChanges?: Maybe<MercuryProposeChangesPayload>;
76860
77014
  transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
76861
77015
  transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
76862
- updateChangeProposalComment?: Maybe<MercuryChangeProposalUpdateCommentPayload>;
77016
+ updateChangeProposalComment?: Maybe<MercuryUpdateChangeProposalCommentPayload>;
76863
77017
  updateChangeProposalDescription?: Maybe<MercuryUpdateChangeProposalPayload>;
76864
77018
  updateChangeProposalName?: Maybe<MercuryUpdateChangeProposalPayload>;
76865
77019
  updateChangeProposalOwner?: Maybe<MercuryUpdateChangeProposalPayload>;
76866
- updateStrategicEventComment?: Maybe<MercuryStrategicEventUpdateCommentPayload>;
77020
+ updateStrategicEventComment?: Maybe<MercuryUpdateStrategicEventCommentPayload>;
76867
77021
  updateStrategicEventDescription?: Maybe<MercuryUpdateStrategicEventPayload>;
76868
77022
  updateStrategicEventName?: Maybe<MercuryUpdateStrategicEventPayload>;
76869
77023
  updateStrategicEventOwner?: Maybe<MercuryUpdateStrategicEventPayload>;
@@ -76873,22 +77027,22 @@ export declare type MercuryStrategicEventsMutationApiCreateChangeProposalArgs =
76873
77027
  input: MercuryCreateChangeProposalInput;
76874
77028
  };
76875
77029
  export declare type MercuryStrategicEventsMutationApiCreateChangeProposalCommentArgs = {
76876
- input: MercuryChangeProposalCreateCommentInput;
77030
+ input: MercuryCreateChangeProposalCommentInput;
76877
77031
  };
76878
77032
  export declare type MercuryStrategicEventsMutationApiCreateStrategicEventArgs = {
76879
77033
  input: MercuryCreateStrategicEventInput;
76880
77034
  };
76881
77035
  export declare type MercuryStrategicEventsMutationApiCreateStrategicEventCommentArgs = {
76882
- input: MercuryStrategicEventCreateCommentInput;
77036
+ input: MercuryCreateStrategicEventCommentInput;
76883
77037
  };
76884
77038
  export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalCommentArgs = {
76885
- input: MercuryChangeProposalDeleteCommentInput;
77039
+ input: MercuryDeleteChangeProposalCommentInput;
76886
77040
  };
76887
77041
  export declare type MercuryStrategicEventsMutationApiDeleteChangesArgs = {
76888
77042
  input?: InputMaybe<MercuryDeleteChangesInput>;
76889
77043
  };
76890
77044
  export declare type MercuryStrategicEventsMutationApiDeleteStrategicEventCommentArgs = {
76891
- input: MercuryStrategicEventDeleteCommentInput;
77045
+ input: MercuryDeleteStrategicEventCommentInput;
76892
77046
  };
76893
77047
  export declare type MercuryStrategicEventsMutationApiProposeChangesArgs = {
76894
77048
  input: MercuryProposeChangesInput;
@@ -76900,7 +77054,7 @@ export declare type MercuryStrategicEventsMutationApiTransitionStrategicEventSta
76900
77054
  input: MercuryTransitionStrategicEventStatusInput;
76901
77055
  };
76902
77056
  export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalCommentArgs = {
76903
- input: MercuryChangeProposalUpdateCommentInput;
77057
+ input: MercuryUpdateChangeProposalCommentInput;
76904
77058
  };
76905
77059
  export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalDescriptionArgs = {
76906
77060
  input: MercuryUpdateChangeProposalDescriptionInput;
@@ -76912,7 +77066,7 @@ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalOwnerAr
76912
77066
  input: MercuryUpdateChangeProposalOwnerInput;
76913
77067
  };
76914
77068
  export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventCommentArgs = {
76915
- input: MercuryStrategicEventUpdateCommentInput;
77069
+ input: MercuryUpdateStrategicEventCommentInput;
76916
77070
  };
76917
77071
  export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventDescriptionArgs = {
76918
77072
  input: MercuryUpdateStrategicEventDescriptionInput;
@@ -76933,6 +77087,7 @@ export declare type MercuryStrategicEventsQueryApi = {
76933
77087
  changeProposals?: Maybe<Array<Maybe<MercuryChangeProposal>>>;
76934
77088
  changeProposalsSearch?: Maybe<MercuryChangeProposalConnection>;
76935
77089
  changes?: Maybe<Array<Maybe<MercuryChange>>>;
77090
+ changesSearch?: Maybe<MercuryChangeConnection>;
76936
77091
  strategicEvent?: Maybe<MercuryStrategicEvent>;
76937
77092
  strategicEventStatuses: Array<MercuryStrategicEventStatus>;
76938
77093
  strategicEvents?: Maybe<Array<Maybe<MercuryStrategicEvent>>>;
@@ -76957,6 +77112,13 @@ export declare type MercuryStrategicEventsQueryApiChangeProposalsSearchArgs = {
76957
77112
  export declare type MercuryStrategicEventsQueryApiChangesArgs = {
76958
77113
  ids: Array<Scalars['ID']['input']>;
76959
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
+ };
76960
77122
  export declare type MercuryStrategicEventsQueryApiStrategicEventArgs = {
76961
77123
  id: Scalars['ID']['input'];
76962
77124
  };
@@ -77076,6 +77238,17 @@ export declare type MercuryUnarchiveFocusAreaPayload = Payload & {
77076
77238
  errors?: Maybe<Array<MutationError>>;
77077
77239
  success: Scalars['Boolean']['output'];
77078
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
+ };
77079
77252
  export declare type MercuryUpdateChangeProposalDescriptionInput = {
77080
77253
  cloudId?: InputMaybe<Scalars['ID']['input']>;
77081
77254
  description: Scalars['String']['input'];
@@ -77159,6 +77332,17 @@ export declare type MercuryUpdatePortfolioPayload = Payload & {
77159
77332
  success: Scalars['Boolean']['output'];
77160
77333
  updatedPortfolio?: Maybe<MercuryPortfolio>;
77161
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
+ };
77162
77346
  export declare type MercuryUpdateStrategicEventDescriptionInput = {
77163
77347
  cloudId?: InputMaybe<Scalars['ID']['input']>;
77164
77348
  description: Scalars['String']['input'];
@@ -77798,6 +77982,7 @@ export declare type Mutation = {
77798
77982
  jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
77799
77983
  jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
77800
77984
  jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
77985
+ jira_setBoardIssueCardCover?: Maybe<JiraSetBoardIssueCardCoverPayload>;
77801
77986
  jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
77802
77987
  jira_setBoardViewCardOptionState?: Maybe<JiraSetBoardViewCardOptionStatePayload>;
77803
77988
  jira_setBoardViewColumnState?: Maybe<JiraSetBoardViewColumnStatePayload>;
@@ -77851,6 +78036,7 @@ export declare type Mutation = {
77851
78036
  publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
77852
78037
  publishReleaseNote: ContentPlatformReleaseNote;
77853
78038
  radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
78039
+ radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
77854
78040
  rankCardParent?: Maybe<GenericMutationResponse>;
77855
78041
  rankColumn?: Maybe<RankColumnOutput>;
77856
78042
  rankCustomFilter?: Maybe<GenericMutationResponse>;
@@ -79020,6 +79206,7 @@ export declare type MutationDevai_CreateTechnicalPlannerJobArgs = {
79020
79206
  summary?: InputMaybe<Scalars['String']['input']>;
79021
79207
  };
79022
79208
  export declare type MutationDevai_FlowCreateArgs = {
79209
+ additionalInfoJSON?: InputMaybe<Scalars['String']['input']>;
79023
79210
  cloudId: Scalars['String']['input'];
79024
79211
  createdBy: Scalars['String']['input'];
79025
79212
  issueARI?: InputMaybe<Scalars['ID']['input']>;
@@ -79129,6 +79316,9 @@ export declare type MutationJira_PublishBoardViewConfigArgs = {
79129
79316
  export declare type MutationJira_ReorderBoardViewColumnArgs = {
79130
79317
  input: JiraReorderBoardViewColumnInput;
79131
79318
  };
79319
+ export declare type MutationJira_SetBoardIssueCardCoverArgs = {
79320
+ input: JiraSetBoardIssueCardCoverInput;
79321
+ };
79132
79322
  export declare type MutationJira_SetBoardViewCardFieldSelectedArgs = {
79133
79323
  input: JiraSetBoardViewCardFieldSelectedInput;
79134
79324
  };
@@ -79261,6 +79451,10 @@ export declare type MutationRadar_UpdateFocusAreaMappingsArgs = {
79261
79451
  cloudId: Scalars['ID']['input'];
79262
79452
  input: Array<RadarFocusAreaMappingsInput>;
79263
79453
  };
79454
+ export declare type MutationRadar_UpdateWorkspaceSettingsArgs = {
79455
+ cloudId: Scalars['ID']['input'];
79456
+ input: RadarWorkspaceSettingsInput;
79457
+ };
79264
79458
  export declare type MutationRankCardParentArgs = {
79265
79459
  input: CardParentRankInput;
79266
79460
  };
@@ -82771,6 +82965,7 @@ export declare type Query = {
82771
82965
  helpObjectStore_searchPortals?: Maybe<HelpObjectStorePortalSearchResponse>;
82772
82966
  helpObjectStore_searchRequestTypes?: Maybe<HelpObjectStoreRequestTypeSearchResponse>;
82773
82967
  homeUserSettings?: Maybe<HomeUserSettings>;
82968
+ identity_groupsByIds?: Maybe<Array<IdentityGroup>>;
82774
82969
  incomingLinksCount?: Maybe<IncomingLinksCount>;
82775
82970
  inlineTasks?: Maybe<InlineTasksQueryResult>;
82776
82971
  insights?: Maybe<Insights>;
@@ -84918,7 +85113,7 @@ export declare type QueryHelpObjectStore_SearchArticlesArgs = {
84918
85113
  highlight?: InputMaybe<Scalars['Boolean']['input']>;
84919
85114
  limit: Scalars['Int']['input'];
84920
85115
  portalIds?: InputMaybe<Array<Scalars['String']['input']>>;
84921
- queryTerm: Scalars['String']['input'];
85116
+ queryTerm?: InputMaybe<Scalars['String']['input']>;
84922
85117
  skipRestrictedPages?: InputMaybe<Scalars['Boolean']['input']>;
84923
85118
  };
84924
85119
  export declare type QueryHelpObjectStore_SearchPortalsArgs = {
@@ -84934,6 +85129,9 @@ export declare type QueryHelpObjectStore_SearchRequestTypesArgs = {
84934
85129
  portalId?: InputMaybe<Scalars['String']['input']>;
84935
85130
  queryTerm: Scalars['String']['input'];
84936
85131
  };
85132
+ export declare type QueryIdentity_GroupsByIdsArgs = {
85133
+ ids: Array<Scalars['ID']['input']>;
85134
+ };
84937
85135
  export declare type QueryIncomingLinksCountArgs = {
84938
85136
  contentId: Scalars['ID']['input'];
84939
85137
  };
@@ -85872,6 +86070,7 @@ export declare type RadarAriFieldValue = {
85872
86070
  export declare type RadarAriObject = MercuryFocusArea | RadarPosition | RadarWorker;
85873
86071
  export declare type RadarBooleanFieldValue = {
85874
86072
  __typename?: 'RadarBooleanFieldValue';
86073
+ isHidden?: Maybe<Scalars['Boolean']['output']>;
85875
86074
  value?: Maybe<Scalars['Boolean']['output']>;
85876
86075
  };
85877
86076
  export declare type RadarConnection = {
@@ -85880,6 +86079,7 @@ export declare type RadarConnection = {
85880
86079
  };
85881
86080
  export declare type RadarDateFieldValue = {
85882
86081
  __typename?: 'RadarDateFieldValue';
86082
+ isHidden?: Maybe<Scalars['Boolean']['output']>;
85883
86083
  value?: Maybe<Scalars['DateTime']['output']>;
85884
86084
  };
85885
86085
  export declare type RadarDynamicFilterOptions = RadarFilterOptions & {
@@ -86050,6 +86250,7 @@ export declare type RadarNumericFieldDefinition = RadarFieldDefinition & {
86050
86250
  export declare type RadarNumericFieldValue = {
86051
86251
  __typename?: 'RadarNumericFieldValue';
86052
86252
  displayValue?: Maybe<Scalars['Int']['output']>;
86253
+ isHidden?: Maybe<Scalars['Boolean']['output']>;
86053
86254
  value?: Maybe<Scalars['Int']['output']>;
86054
86255
  };
86055
86256
  export declare type RadarPermissions = {
@@ -86057,6 +86258,10 @@ export declare type RadarPermissions = {
86057
86258
  canManagersAllocate: Scalars['Boolean']['output'];
86058
86259
  canManagersViewSensitiveFields: Scalars['Boolean']['output'];
86059
86260
  };
86261
+ export declare type RadarPermissionsInput = {
86262
+ canManagersAllocate: Scalars['Boolean']['input'];
86263
+ canManagersViewSensitiveFields: Scalars['Boolean']['input'];
86264
+ };
86060
86265
  export declare type RadarPosition = Node & RadarEntity & {
86061
86266
  __typename?: 'RadarPosition';
86062
86267
  directReports?: Maybe<Array<RadarPosition>>;
@@ -86106,16 +86311,19 @@ export declare type RadarStatusFieldValue = {
86106
86311
  __typename?: 'RadarStatusFieldValue';
86107
86312
  appearance?: Maybe<RadarStatusAppearance>;
86108
86313
  displayValue?: Maybe<Scalars['String']['output']>;
86314
+ isHidden?: Maybe<Scalars['Boolean']['output']>;
86109
86315
  value?: Maybe<Scalars['String']['output']>;
86110
86316
  };
86111
86317
  export declare type RadarStringFieldValue = {
86112
86318
  __typename?: 'RadarStringFieldValue';
86319
+ isHidden?: Maybe<Scalars['Boolean']['output']>;
86113
86320
  value?: Maybe<Scalars['String']['output']>;
86114
86321
  };
86115
86322
  export declare type RadarUrlFieldValue = {
86116
86323
  __typename?: 'RadarUrlFieldValue';
86117
86324
  displayValue?: Maybe<Scalars['String']['output']>;
86118
86325
  icon?: Maybe<Scalars['String']['output']>;
86326
+ isHidden?: Maybe<Scalars['Boolean']['output']>;
86119
86327
  value?: Maybe<Scalars['String']['output']>;
86120
86328
  };
86121
86329
  export declare type RadarUserContext = {
@@ -86155,6 +86363,9 @@ export declare type RadarWorkspace = {
86155
86363
  userContext?: Maybe<RadarUserContext>;
86156
86364
  workerFields: Array<RadarFieldDefinition>;
86157
86365
  };
86366
+ export declare type RadarWorkspaceSettingsInput = {
86367
+ permissions: RadarPermissionsInput;
86368
+ };
86158
86369
  export declare type RankColumnInput = {
86159
86370
  boardId: Scalars['ID']['input'];
86160
86371
  columnId: Scalars['ID']['input'];
@@ -89972,6 +90183,8 @@ export declare enum ShepherdRemediationActionType {
89972
90183
  ArchiveRestoreClassificationRemediation = "ARCHIVE_RESTORE_CLASSIFICATION_REMEDIATION",
89973
90184
  BlockchainExplorerRemediation = "BLOCKCHAIN_EXPLORER_REMEDIATION",
89974
90185
  BlockIpAllowlistRemediation = "BLOCK_IP_ALLOWLIST_REMEDIATION",
90186
+ ChangeConfluenceSpaceAttachmentPermissionsRemediation = "CHANGE_CONFLUENCE_SPACE_ATTACHMENT_PERMISSIONS_REMEDIATION",
90187
+ ChangeJiraAttachmentPermissionsRemediation = "CHANGE_JIRA_ATTACHMENT_PERMISSIONS_REMEDIATION",
89975
90188
  CheckAutomationsRemediation = "CHECK_AUTOMATIONS_REMEDIATION",
89976
90189
  ClassificationLevelChangeRemediation = "CLASSIFICATION_LEVEL_CHANGE_REMEDIATION",
89977
90190
  CompromisedDeviceRemediation = "COMPROMISED_DEVICE_REMEDIATION",
@@ -89991,6 +90204,7 @@ export declare enum ShepherdRemediationActionType {
89991
90204
  ManageAppsRemediation = "MANAGE_APPS_REMEDIATION",
89992
90205
  ManageDomainRemediation = "MANAGE_DOMAIN_REMEDIATION",
89993
90206
  ManageDspRemediation = "MANAGE_DSP_REMEDIATION",
90207
+ MoveOrRemoveAttachmentRemediation = "MOVE_OR_REMOVE_ATTACHMENT_REMEDIATION",
89994
90208
  PublicAccessDspRemediation = "PUBLIC_ACCESS_DSP_REMEDIATION",
89995
90209
  ResetAccountPasswordRemediation = "RESET_ACCOUNT_PASSWORD_REMEDIATION",
89996
90210
  RestoreAccessRemediation = "RESTORE_ACCESS_REMEDIATION",