@forge/cli-shared 8.23.1-next.6 → 8.24.0-next.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.24.0-next.7
4
+
5
+ ### Minor Changes
6
+
7
+ - 2415638: Prerelease of forge module add command
8
+
9
+ ### Patch Changes
10
+
11
+ - 8f4ff0a: Remove forge-cli-enable-developer-space-flow feature flag and GA developer space selection. The feature is now always enabled except in FedRAMP environments.
12
+
3
13
  ## 8.23.1-next.6
4
14
 
5
15
  ### Patch Changes
@@ -361,6 +361,42 @@ export declare type AiOpsIncidentSuggestionResponse = {
361
361
  probableRCATitle?: Maybe<Scalars['String']['output']>;
362
362
  suggestedActions?: Maybe<Array<AiOpsIncidentSuggestedAction>>;
363
363
  };
364
+ export declare enum AiOpsIncidentTimelineIccCategory {
365
+ AffectedServicesAdded = "AFFECTED_SERVICES_ADDED",
366
+ AssigneeAdded = "ASSIGNEE_ADDED",
367
+ CommsPosted = "COMMS_POSTED",
368
+ IncidentCreated = "INCIDENT_CREATED",
369
+ InvestigationCompleted = "INVESTIGATION_COMPLETED",
370
+ InvestigationStarted = "INVESTIGATION_STARTED",
371
+ MajorIncidentDeclared = "MAJOR_INCIDENT_DECLARED",
372
+ PriorityChanged = "PRIORITY_CHANGED",
373
+ Resolved = "RESOLVED",
374
+ RespondersAdded = "RESPONDERS_ADDED",
375
+ SeverityChanged = "SEVERITY_CHANGED",
376
+ SlaBreached = "SLA_BREACHED",
377
+ SlaMet = "SLA_MET",
378
+ SlaStarted = "SLA_STARTED",
379
+ StatusChanged = "STATUS_CHANGED"
380
+ }
381
+ export declare type AiOpsIncidentTimelineIccEntry = {
382
+ __typename?: 'AIOpsIncidentTimelineIccEntry';
383
+ actorName?: Maybe<Scalars['String']['output']>;
384
+ category?: Maybe<AiOpsIncidentTimelineIccCategory>;
385
+ description?: Maybe<Scalars['String']['output']>;
386
+ importance?: Maybe<AiOpsIncidentTimelineIccImportance>;
387
+ timestamp?: Maybe<Scalars['DateTime']['output']>;
388
+ };
389
+ export declare enum AiOpsIncidentTimelineIccImportance {
390
+ Critical = "CRITICAL",
391
+ High = "HIGH",
392
+ Low = "LOW",
393
+ Medium = "MEDIUM"
394
+ }
395
+ export declare type AiOpsIncidentTimelineIccResponse = {
396
+ __typename?: 'AIOpsIncidentTimelineIccResponse';
397
+ entries?: Maybe<Array<AiOpsIncidentTimelineIccEntry>>;
398
+ totalAvailable?: Maybe<Scalars['Int']['output']>;
399
+ };
364
400
  export declare type AiOpsInvestigatedServiceDetail = {
365
401
  __typename?: 'AIOpsInvestigatedServiceDetail';
366
402
  hasRepository?: Maybe<Scalars['Boolean']['output']>;
@@ -961,6 +997,9 @@ export declare type AvpAnalyticsGetModelsInput = {
961
997
  searchInput?: InputMaybe<AvpAnalyticsSearchInput>;
962
998
  sortInput?: InputMaybe<AvpAnalyticsSortInput>;
963
999
  };
1000
+ export declare type AvpAnalyticsGetPermissionInput = {
1001
+ resourceAri: Scalars['ID']['input'];
1002
+ };
964
1003
  export declare type AvpAnalyticsJoinColumnPairs = {
965
1004
  __typename?: 'AVPAnalyticsJoinColumnPairs';
966
1005
  joinOnOperator: AvpAnalyticsJoinOnOperator;
@@ -1339,6 +1378,12 @@ export declare type AvpAnalyticsPaginationInput = {
1339
1378
  pageNumber?: InputMaybe<Scalars['Int']['input']>;
1340
1379
  pageSize?: InputMaybe<Scalars['Int']['input']>;
1341
1380
  };
1381
+ export declare type AvpAnalyticsPermission = {
1382
+ __typename?: 'AVPAnalyticsPermission';
1383
+ resourceAri: Scalars['ID']['output'];
1384
+ resourcePermissionType: AvpAnalyticsResourcePermissionType;
1385
+ userPermissions: Array<AvpAnalyticsUserPermission>;
1386
+ };
1342
1387
  export declare enum AvpAnalyticsPermissionType {
1343
1388
  None = "NONE",
1344
1389
  Read = "READ",
@@ -1368,6 +1413,11 @@ export declare type AvpAnalyticsRangeValueInput = {
1368
1413
  toExpression?: InputMaybe<Scalars['String']['input']>;
1369
1414
  toValue?: InputMaybe<Scalars['String']['input']>;
1370
1415
  };
1416
+ export declare enum AvpAnalyticsResourcePermissionType {
1417
+ Closed = "CLOSED",
1418
+ Read = "READ",
1419
+ Write = "WRITE"
1420
+ }
1371
1421
  export declare type AvpAnalyticsRoundFormula = {
1372
1422
  __typename?: 'AVPAnalyticsRoundFormula';
1373
1423
  decimalPlaces: Scalars['Int']['output'];
@@ -1462,6 +1512,29 @@ export declare type AvpAnalyticsUpdateModelPayload = Payload & {
1462
1512
  model?: Maybe<AvpAnalyticsModel>;
1463
1513
  success: Scalars['Boolean']['output'];
1464
1514
  };
1515
+ export declare type AvpAnalyticsUpdatePermissionInput = {
1516
+ resourceAri: Scalars['ID']['input'];
1517
+ resourcePermissionType: AvpAnalyticsResourcePermissionType;
1518
+ userPermissions: Array<AvpAnalyticsUserPermissionInput>;
1519
+ };
1520
+ export declare type AvpAnalyticsUpdatePermissionPayload = Payload & {
1521
+ __typename?: 'AVPAnalyticsUpdatePermissionPayload';
1522
+ errors?: Maybe<Array<MutationError>>;
1523
+ success: Scalars['Boolean']['output'];
1524
+ };
1525
+ export declare type AvpAnalyticsUserPermission = {
1526
+ __typename?: 'AVPAnalyticsUserPermission';
1527
+ principalAri: Scalars['ID']['output'];
1528
+ userPermissionType: AvpAnalyticsUserPermissionType;
1529
+ };
1530
+ export declare type AvpAnalyticsUserPermissionInput = {
1531
+ principalAri: Scalars['ID']['input'];
1532
+ userPermissionType: AvpAnalyticsUserPermissionType;
1533
+ };
1534
+ export declare enum AvpAnalyticsUserPermissionType {
1535
+ Read = "READ",
1536
+ Write = "WRITE"
1537
+ }
1465
1538
  export declare type AvpAnalyticsVisualizationConfig = {
1466
1539
  __typename?: 'AVPAnalyticsVisualizationConfig';
1467
1540
  chartType?: Maybe<AvpAnalyticsChartType>;
@@ -2942,7 +3015,8 @@ export declare enum ActionsCapabilityType {
2942
3015
  AgentStudio = "AGENT_STUDIO",
2943
3016
  Ai = "AI",
2944
3017
  Automation = "AUTOMATION",
2945
- JsmTelemetry = "JSM_TELEMETRY"
3018
+ JsmTelemetry = "JSM_TELEMETRY",
3019
+ RovoMcp = "ROVO_MCP"
2946
3020
  }
2947
3021
  export declare enum ActionsConfigurationLayout {
2948
3022
  VerticalLayout = "VerticalLayout"
@@ -5015,6 +5089,29 @@ export declare type AdminUnitEdge = {
5015
5089
  __typename?: 'AdminUnitEdge';
5016
5090
  node: AdminUnit;
5017
5091
  };
5092
+ export declare type AdminUnitLinkedConnection = {
5093
+ __typename?: 'AdminUnitLinkedConnection';
5094
+ edges?: Maybe<Array<AdminUnitLinkedEdge>>;
5095
+ pageInfo: PageInfo;
5096
+ };
5097
+ export declare type AdminUnitLinkedEdge = {
5098
+ __typename?: 'AdminUnitLinkedEdge';
5099
+ cursor: Scalars['String']['output'];
5100
+ node?: Maybe<AdminUnitLinkedTo>;
5101
+ };
5102
+ export declare type AdminUnitLinkedResource = {
5103
+ __typename?: 'AdminUnitLinkedResource';
5104
+ id: Scalars['ID']['output'];
5105
+ links: AdminUnitLinkedConnection;
5106
+ };
5107
+ export declare type AdminUnitLinkedResourceLinksArgs = {
5108
+ after?: InputMaybe<Scalars['String']['input']>;
5109
+ first?: InputMaybe<Scalars['Int']['input']>;
5110
+ };
5111
+ export declare type AdminUnitLinkedTo = {
5112
+ __typename?: 'AdminUnitLinkedTo';
5113
+ id: Scalars['ID']['output'];
5114
+ };
5018
5115
  export declare type AdminUnitPageInfo = {
5019
5116
  __typename?: 'AdminUnitPageInfo';
5020
5117
  hasNextPage: Scalars['Boolean']['output'];
@@ -5382,6 +5479,7 @@ export declare type AgentSessionAssociation = AgentSessionAssociationNode & {
5382
5479
  id?: Maybe<Scalars['ID']['output']>;
5383
5480
  invocationType?: Maybe<Scalars['String']['output']>;
5384
5481
  startTime?: Maybe<Scalars['Long']['output']>;
5482
+ subEntityId?: Maybe<Scalars['String']['output']>;
5385
5483
  triggeredBy?: Maybe<User>;
5386
5484
  version?: Maybe<Scalars['Long']['output']>;
5387
5485
  };
@@ -8184,7 +8282,15 @@ export declare type AgentWorkspaceSkillUpdatePayload = {
8184
8282
  export declare type AgentWorkspaceSmartRoutingConfig = {
8185
8283
  __typename?: 'AgentWorkspaceSmartRoutingConfig';
8186
8284
  enabled: Scalars['Boolean']['output'];
8285
+ serviceFieldId?: Maybe<Scalars['String']['output']>;
8286
+ serviceFieldType?: Maybe<AgentWorkspaceSmartRoutingServiceFieldType>;
8287
+ setupVersion: Scalars['Int']['output'];
8187
8288
  };
8289
+ export declare enum AgentWorkspaceSmartRoutingServiceFieldType {
8290
+ AffectedServices = "AFFECTED_SERVICES",
8291
+ Asset = "ASSET",
8292
+ Select = "SELECT"
8293
+ }
8188
8294
  export declare enum AgentWorkspaceSortDirection {
8189
8295
  Asc = "ASC",
8190
8296
  Desc = "DESC"
@@ -8222,6 +8328,7 @@ export declare type AgentWorkspaceSubmitDraftedRoutingTableInput = {
8222
8328
  fieldId: Scalars['String']['input'];
8223
8329
  projectKey: Scalars['String']['input'];
8224
8330
  selectedServiceIds?: InputMaybe<Array<Scalars['String']['input']>>;
8331
+ serviceFieldType?: InputMaybe<AgentWorkspaceSmartRoutingServiceFieldType>;
8225
8332
  };
8226
8333
  export declare type AgentWorkspaceSubmitDraftedRoutingTablePayload = {
8227
8334
  __typename?: 'AgentWorkspaceSubmitDraftedRoutingTablePayload';
@@ -8368,6 +8475,8 @@ export declare type AgentWorkspaceUpdateRoutingConfigInput = {
8368
8475
  cloudId: Scalars['ID']['input'];
8369
8476
  enabled: Scalars['Boolean']['input'];
8370
8477
  projectKey: Scalars['String']['input'];
8478
+ serviceFieldId?: InputMaybe<Scalars['String']['input']>;
8479
+ serviceFieldType?: InputMaybe<AgentWorkspaceSmartRoutingServiceFieldType>;
8371
8480
  };
8372
8481
  export declare type AgentWorkspaceUpdateScheduleInput = {
8373
8482
  agentIds: Array<Scalars['ID']['input']>;
@@ -8593,6 +8702,7 @@ export declare type AiCoreApiRsaSkill = {
8593
8702
  export declare type AiCoreApiRsaSkillGapItem = {
8594
8703
  __typename?: 'AiCoreApiRsaSkillGapItem';
8595
8704
  requestType: Scalars['String']['output'];
8705
+ requestTypeId: Scalars['String']['output'];
8596
8706
  skills: Array<AiCoreApiRsaSkill>;
8597
8707
  tool: Scalars['String']['output'];
8598
8708
  totalTickets: Scalars['Int']['output'];
@@ -8727,11 +8837,13 @@ export declare type AiManagedObjectUpdateInput = {
8727
8837
  export declare type AiPlannerPlan = {
8728
8838
  __typename?: 'AiPlannerPlan';
8729
8839
  archivedAt?: Maybe<Scalars['String']['output']>;
8840
+ collaborators: AiPlannerPlanCollaboratorConnection;
8730
8841
  conversations: AiPlannerPlanConversationConnection;
8731
8842
  createdAt: Scalars['String']['output'];
8732
8843
  description?: Maybe<Scalars['String']['output']>;
8733
8844
  id: Scalars['String']['output'];
8734
8845
  name: Scalars['String']['output'];
8846
+ owner?: Maybe<AiPlannerPlanOwner>;
8735
8847
  readinessScore?: Maybe<Scalars['Int']['output']>;
8736
8848
  tasks: AiPlannerPlanTaskConnection;
8737
8849
  updatedAt: Scalars['String']['output'];
@@ -8740,6 +8852,16 @@ export declare type AiPlannerPlanConversationsArgs = {
8740
8852
  after?: InputMaybe<Scalars['String']['input']>;
8741
8853
  first?: InputMaybe<Scalars['Int']['input']>;
8742
8854
  };
8855
+ export declare type AiPlannerPlanCollaboratorConnection = {
8856
+ __typename?: 'AiPlannerPlanCollaboratorConnection';
8857
+ edges: Array<AiPlannerPlanCollaboratorEdge>;
8858
+ pageInfo: PageInfo;
8859
+ };
8860
+ export declare type AiPlannerPlanCollaboratorEdge = {
8861
+ __typename?: 'AiPlannerPlanCollaboratorEdge';
8862
+ cursor: Scalars['String']['output'];
8863
+ node: AiPlannerPlanOwner;
8864
+ };
8743
8865
  export declare type AiPlannerPlanConnection = {
8744
8866
  __typename?: 'AiPlannerPlanConnection';
8745
8867
  edges: Array<AiPlannerPlanEdge>;
@@ -8768,6 +8890,12 @@ export declare type AiPlannerPlanEdge = {
8768
8890
  cursor: Scalars['String']['output'];
8769
8891
  node: AiPlannerPlan;
8770
8892
  };
8893
+ export declare type AiPlannerPlanOwner = {
8894
+ __typename?: 'AiPlannerPlanOwner';
8895
+ atlassianId: Scalars['String']['output'];
8896
+ id: Scalars['String']['output'];
8897
+ user?: Maybe<User>;
8898
+ };
8771
8899
  export declare type AiPlannerPlanTask = {
8772
8900
  __typename?: 'AiPlannerPlanTask';
8773
8901
  archivedAt?: Maybe<Scalars['String']['output']>;
@@ -19008,6 +19136,7 @@ export declare type Comment = {
19008
19136
  commentSource?: Maybe<Platform>;
19009
19137
  container: Content;
19010
19138
  contentStatus: Scalars['String']['output'];
19139
+ contributors?: Maybe<Array<Maybe<Person>>>;
19011
19140
  createdAt: ConfluenceDate;
19012
19141
  createdAtNonLocalized: Scalars['String']['output'];
19013
19142
  excerpt: Scalars['String']['output'];
@@ -28378,6 +28507,11 @@ export declare type ConfluenceAcceptAnswerPayload = Payload & {
28378
28507
  errors?: Maybe<Array<MutationError>>;
28379
28508
  success: Scalars['Boolean']['output'];
28380
28509
  };
28510
+ export declare type ConfluenceAccessLinkInfo = {
28511
+ __typename?: 'ConfluenceAccessLinkInfo';
28512
+ accessType: ConfluenceShareableLinkAccessType;
28513
+ status: PublicLinkStatus;
28514
+ };
28381
28515
  export declare type ConfluenceAccessRequestSettings = {
28382
28516
  __typename?: 'ConfluenceAccessRequestSettings';
28383
28517
  enabled?: Maybe<Scalars['Boolean']['output']>;
@@ -30392,6 +30526,12 @@ export declare type ConfluenceDisableBlueprintPayload = Payload & {
30392
30526
  errors?: Maybe<Array<MutationError>>;
30393
30527
  success: Scalars['Boolean']['output'];
30394
30528
  };
30529
+ export declare type ConfluenceDisableCustomContentStatePayload = Payload & {
30530
+ __typename?: 'ConfluenceDisableCustomContentStatePayload';
30531
+ contentState?: Maybe<ContentState>;
30532
+ errors?: Maybe<Array<MutationError>>;
30533
+ success: Scalars['Boolean']['output'];
30534
+ };
30395
30535
  export declare type ConfluenceDisableDefaultSpaceLogoPayload = Payload & {
30396
30536
  __typename?: 'ConfluenceDisableDefaultSpaceLogoPayload';
30397
30537
  errors?: Maybe<Array<MutationError>>;
@@ -31073,7 +31213,6 @@ export declare type ConfluenceJiraMacroAppLinksScanningStatus = {
31073
31213
  problems?: Maybe<ConfluenceJiraMacroAppLinksValidatorResult>;
31074
31214
  reportDownloadUrl?: Maybe<Scalars['String']['output']>;
31075
31215
  reportFileStoreId?: Maybe<Scalars['String']['output']>;
31076
- startedAtEpochMillis?: Maybe<Scalars['Long']['output']>;
31077
31216
  status: ConfluenceJiraMacroAppLinksValidationStatus;
31078
31217
  };
31079
31218
  export declare enum ConfluenceJiraMacroAppLinksValidationStatus {
@@ -32224,6 +32363,11 @@ export declare type ConfluencePageCommentsArgs = {
32224
32363
  export declare type ConfluencePagePropertiesArgs = {
32225
32364
  keys: Array<InputMaybe<Scalars['String']['input']>>;
32226
32365
  };
32366
+ export declare enum ConfluencePageAnalyticsActorType {
32367
+ Agents = "AGENTS",
32368
+ All = "ALL",
32369
+ People = "PEOPLE"
32370
+ }
32227
32371
  export declare type ConfluencePageBlogified = {
32228
32372
  __typename?: 'ConfluencePageBlogified';
32229
32373
  blogTitle?: Maybe<Scalars['String']['output']>;
@@ -33459,6 +33603,14 @@ export declare type ConfluenceResolveInlineCommentPayload = {
33459
33603
  errors?: Maybe<Array<MutationError>>;
33460
33604
  success: Scalars['Boolean']['output'];
33461
33605
  };
33606
+ export declare type ConfluenceResolvedMacroPageLinkParameter = {
33607
+ __typename?: 'ConfluenceResolvedMacroPageLinkParameter';
33608
+ contentId?: Maybe<Scalars['ID']['output']>;
33609
+ name?: Maybe<Scalars['String']['output']>;
33610
+ pageTitle?: Maybe<Scalars['String']['output']>;
33611
+ spaceId?: Maybe<Scalars['ID']['output']>;
33612
+ spaceKey?: Maybe<Scalars['String']['output']>;
33613
+ };
33462
33614
  export declare type ConfluenceRestoreContentVersionInput = {
33463
33615
  contentId: Scalars['ID']['input'];
33464
33616
  expand?: InputMaybe<Scalars['String']['input']>;
@@ -35797,6 +35949,7 @@ export declare enum ContainerType {
35797
35949
  }
35798
35950
  export declare type Content = {
35799
35951
  __typename?: 'Content';
35952
+ accessLinkInfo?: Maybe<ConfluenceAccessLinkInfo>;
35800
35953
  aiProperty?: Maybe<ConfluenceContentAiSummaryResponse>;
35801
35954
  allCommentAgentSessions?: Maybe<AgentSessionAssociationConnection>;
35802
35955
  ancestors?: Maybe<Array<Maybe<Content>>>;
@@ -49278,6 +49431,7 @@ export declare type GenericQueryErrorExtension = QueryErrorExtension & {
49278
49431
  statusCode?: Maybe<Scalars['Int']['output']>;
49279
49432
  };
49280
49433
  export declare type GetAllPlansFilterInput = {
49434
+ excludeOwnerId?: InputMaybe<Scalars['String']['input']>;
49281
49435
  jiraProjectAri?: InputMaybe<Scalars['String']['input']>;
49282
49436
  ownerId?: InputMaybe<Scalars['String']['input']>;
49283
49437
  };
@@ -120716,6 +120870,26 @@ export declare enum JiraFieldOptionIdsFilterOperation {
120716
120870
  Allow = "ALLOW",
120717
120871
  Exclude = "EXCLUDE"
120718
120872
  }
120873
+ export declare type JiraFieldPredictionCandidate = {
120874
+ __typename?: 'JiraFieldPredictionCandidate';
120875
+ id?: Maybe<Scalars['String']['output']>;
120876
+ isAboveThreshold?: Maybe<Scalars['Boolean']['output']>;
120877
+ value?: Maybe<Scalars['String']['output']>;
120878
+ };
120879
+ export declare type JiraFieldPredictionCandidateInput = {
120880
+ id: Scalars['String']['input'];
120881
+ value?: InputMaybe<Scalars['String']['input']>;
120882
+ };
120883
+ export declare type JiraFieldPredictionResult = {
120884
+ __typename?: 'JiraFieldPredictionResult';
120885
+ candidatesAboveThreshold?: Maybe<Scalars['Int']['output']>;
120886
+ predictions?: Maybe<Array<Maybe<JiraFieldPredictionCandidate>>>;
120887
+ success?: Maybe<Scalars['Boolean']['output']>;
120888
+ };
120889
+ export declare enum JiraFieldPredictionSource {
120890
+ Agent = "AGENT",
120891
+ Gic = "GIC"
120892
+ }
120719
120893
  export declare type JiraFieldScheme = Node & {
120720
120894
  __typename?: 'JiraFieldScheme';
120721
120895
  associatedIssueTypes?: Maybe<JiraIssueTypeConnection>;
@@ -122545,12 +122719,14 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
122545
122719
  coverMedia?: Maybe<JiraWorkManagementBackground>;
122546
122720
  createBranchTargetCardinality?: Maybe<JiraZeroOneOrMany>;
122547
122721
  createBranchTargets?: Maybe<JiraRemoteAppConnection>;
122722
+ created?: Maybe<Scalars['DateTime']['output']>;
122548
122723
  createdField?: Maybe<JiraDateTimePickerField>;
122549
122724
  defaultAssignee?: Maybe<User>;
122550
122725
  delegator?: Maybe<User>;
122551
122726
  deletableAttachmentsCount?: Maybe<Scalars['Int']['output']>;
122552
122727
  deployments?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalDeploymentConnection>;
122553
122728
  deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
122729
+ description?: Maybe<JiraRichText>;
122554
122730
  descriptionField?: Maybe<JiraRichTextField>;
122555
122731
  designs?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignConnection>;
122556
122732
  devInfoDetails?: Maybe<JiraIssueDevInfoDetails>;
@@ -122659,6 +122835,8 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
122659
122835
  redactions?: Maybe<JiraRedactionConnection>;
122660
122836
  remoteLinks?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalRemoteLinkConnection>;
122661
122837
  reporter?: Maybe<User>;
122838
+ resolution?: Maybe<JiraResolution>;
122839
+ resolutionDate?: Maybe<Scalars['DateTime']['output']>;
122662
122840
  resolutionDateField?: Maybe<JiraDateTimePickerField>;
122663
122841
  resolutionField?: Maybe<JiraResolutionField>;
122664
122842
  screenId?: Maybe<Scalars['Long']['output']>;
@@ -122685,6 +122863,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
122685
122863
  timeOriginalEstimateField?: Maybe<JiraOriginalTimeEstimateField>;
122686
122864
  timeTrackingField?: Maybe<JiraTimeTrackingField>;
122687
122865
  totalAttachmentsCount?: Maybe<Scalars['Int']['output']>;
122866
+ updated?: Maybe<Scalars['DateTime']['output']>;
122688
122867
  updatedField?: Maybe<JiraDateTimePickerField>;
122689
122868
  votesField?: Maybe<JiraVotesField>;
122690
122869
  watchesField?: Maybe<JiraWatchesField>;
@@ -131425,6 +131604,7 @@ export declare type JiraQuery = {
131425
131604
  favouriteFilters?: Maybe<JiraFilterConnection>;
131426
131605
  favourites?: Maybe<JiraFavouriteConnection>;
131427
131606
  fieldConfigById?: Maybe<Array<Maybe<JiraIssueFieldConfig>>>;
131607
+ fieldPrediction?: Maybe<JiraFieldPredictionResult>;
131428
131608
  fieldSetViewQueryByProject?: Maybe<JiraFieldSetViewResult>;
131429
131609
  fieldSetsById?: Maybe<JiraIssueSearchFieldSetConnection>;
131430
131610
  fields?: Maybe<JiraJqlFieldConnectionResult>;
@@ -131895,6 +132075,17 @@ export declare type JiraQueryFavouritesArgs = {
131895
132075
  export declare type JiraQueryFieldConfigByIdArgs = {
131896
132076
  ids: Array<Scalars['ID']['input']>;
131897
132077
  };
132078
+ export declare type JiraQueryFieldPredictionArgs = {
132079
+ candidates?: InputMaybe<Array<InputMaybe<JiraFieldPredictionCandidateInput>>>;
132080
+ cloudId: Scalars['ID']['input'];
132081
+ fieldId: Scalars['String']['input'];
132082
+ projectId?: InputMaybe<Scalars['ID']['input']>;
132083
+ searchFilter?: InputMaybe<Scalars['String']['input']>;
132084
+ semanticContext?: InputMaybe<Scalars['String']['input']>;
132085
+ semanticContextDescription?: InputMaybe<Scalars['String']['input']>;
132086
+ sessionId: Scalars['String']['input'];
132087
+ source?: InputMaybe<JiraFieldPredictionSource>;
132088
+ };
131898
132089
  export declare type JiraQueryFieldSetViewQueryByProjectArgs = {
131899
132090
  cloudId: Scalars['ID']['input'];
131900
132091
  issueKey?: InputMaybe<Scalars['String']['input']>;
@@ -141489,6 +141680,26 @@ export declare enum JpdViewsServiceVisualizationType {
141489
141680
  Timeline = "TIMELINE",
141490
141681
  Tree = "TREE"
141491
141682
  }
141683
+ export declare type JsmAdaptiveLanguageGlossary = {
141684
+ __typename?: 'JsmAdaptiveLanguageGlossary';
141685
+ brandExceptions?: Maybe<Scalars['String']['output']>;
141686
+ compiledGlossary?: Maybe<Scalars['String']['output']>;
141687
+ domainId?: Maybe<Scalars['String']['output']>;
141688
+ locale?: Maybe<Scalars['String']['output']>;
141689
+ matchOrder?: Maybe<Scalars['String']['output']>;
141690
+ version?: Maybe<Scalars['String']['output']>;
141691
+ };
141692
+ export declare type JsmAdaptiveLanguageGlossaryResult = {
141693
+ __typename?: 'JsmAdaptiveLanguageGlossaryResult';
141694
+ glossary?: Maybe<JsmAdaptiveLanguageGlossary>;
141695
+ };
141696
+ export declare type JsmAdaptiveLanguageQueryApi = {
141697
+ __typename?: 'JsmAdaptiveLanguageQueryApi';
141698
+ glossaryForProject?: Maybe<JsmAdaptiveLanguageGlossaryResult>;
141699
+ };
141700
+ export declare type JsmAdaptiveLanguageQueryApiGlossaryForProjectArgs = {
141701
+ projectAri: Scalars['ID']['input'];
141702
+ };
141492
141703
  export declare type JsmChannelsConditionNode = JsmChannelsPlanNode & {
141493
141704
  __typename?: 'JsmChannelsConditionNode';
141494
141705
  customPlanNodeAttributes?: Maybe<Array<JsmChannelsCustomPlanNodeAttribute>>;
@@ -146188,6 +146399,7 @@ export declare type Macro = {
146188
146399
  contentId: Scalars['ID']['output'];
146189
146400
  macroId: Scalars['ID']['output'];
146190
146401
  renderedMacro?: Maybe<RenderedMacro>;
146402
+ resolvedPageLinkParameters?: Maybe<Array<Maybe<ConfluenceResolvedMacroPageLinkParameter>>>;
146191
146403
  };
146192
146404
  export declare type MacroRenderedMacroArgs = {
146193
146405
  mode?: InputMaybe<MacroRendererMode>;
@@ -157069,6 +157281,9 @@ export declare type MercuryThreadedComment = Node & {
157069
157281
  containerId?: Maybe<Scalars['ID']['output']>;
157070
157282
  createdAt?: Maybe<Scalars['DateTime']['output']>;
157071
157283
  createdBy?: Maybe<User>;
157284
+ creationDate?: Maybe<Scalars['DateTime']['output']>;
157285
+ creator?: Maybe<User>;
157286
+ editDate?: Maybe<Scalars['DateTime']['output']>;
157072
157287
  id: Scalars['ID']['output'];
157073
157288
  parentComment?: Maybe<MercuryThreadedComment>;
157074
157289
  parentId: Scalars['ID']['output'];
@@ -157078,6 +157293,7 @@ export declare type MercuryThreadedComment = Node & {
157078
157293
  export declare type MercuryThreadedCommentRepliesArgs = {
157079
157294
  after?: InputMaybe<Scalars['String']['input']>;
157080
157295
  first?: InputMaybe<Scalars['Int']['input']>;
157296
+ sort?: InputMaybe<Scalars['String']['input']>;
157081
157297
  };
157082
157298
  export declare type MercuryThreadedCommentConnection = {
157083
157299
  __typename?: 'MercuryThreadedCommentConnection';
@@ -158368,9 +158584,9 @@ export declare type Mutation = {
158368
158584
  agentWorkspace_upsertDraftedRoutingTableEntry?: Maybe<AgentWorkspaceUpsertDraftedRoutingTableEntryPayload>;
158369
158585
  aiCoreApi_initiateCsvExport?: Maybe<AiCoreApiCsvExportResult>;
158370
158586
  aiCoreApi_initiateRsaReport?: Maybe<AiCoreApiRsaInitiateReportResult>;
158587
+ aiManagedObject_archiveAiManagedObject?: Maybe<Scalars['Boolean']['output']>;
158371
158588
  aiManagedObject_createAiManagedObject?: Maybe<AiManagedObject>;
158372
158589
  aiManagedObject_createAiManagedObjectConfig?: Maybe<AiManagedObjectConfig>;
158373
- aiManagedObject_deleteAiManagedObject?: Maybe<Scalars['Boolean']['output']>;
158374
158590
  aiManagedObject_execute?: Maybe<AiManagedObjectExecutionResult>;
158375
158591
  aiManagedObject_updateAiManagedObject?: Maybe<AiManagedObject>;
158376
158592
  aiops_terminateInvestigation?: Maybe<AiOpsInvestigation>;
@@ -158525,6 +158741,7 @@ export declare type Mutation = {
158525
158741
  avpanalytics_discardModelUpdates?: Maybe<AvpAnalyticsDiscardModelUpdatesPayload>;
158526
158742
  avpanalytics_updateMetric?: Maybe<AvpAnalyticsUpdateMetricPayload>;
158527
158743
  avpanalytics_updateModel?: Maybe<AvpAnalyticsUpdateModelPayload>;
158744
+ avpanalytics_updatePermission?: Maybe<AvpAnalyticsUpdatePermissionPayload>;
158528
158745
  blockService_batchCreateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
158529
158746
  blockService_batchDeleteBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
158530
158747
  blockService_batchUpdateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
@@ -158614,6 +158831,7 @@ export declare type Mutation = {
158614
158831
  confluence_deleteSubCalendarPrivateUrl?: Maybe<ConfluenceDeleteSubCalendarPrivateUrlPayload>;
158615
158832
  confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
158616
158833
  confluence_deleteTopic?: Maybe<ConfluenceDeleteTopicPayload>;
158834
+ confluence_disableCustomContentState?: Maybe<ConfluenceDisableCustomContentStatePayload>;
158617
158835
  confluence_disableSystemRole?: Maybe<ConfluenceDisableSystemRolePayload>;
158618
158836
  confluence_enableGlobalAnonymousEnforcement?: Maybe<ConfluenceEnableGlobalAnonymousEnforcementPayload>;
158619
158837
  confluence_experimentInitAiFirstCreation?: Maybe<ConfluenceExperimentInitAiFirstCreationPayload>;
@@ -160205,6 +160423,9 @@ export declare type MutationAiCoreApi_InitiateCsvExportArgs = {
160205
160423
  export declare type MutationAiCoreApi_InitiateRsaReportArgs = {
160206
160424
  input: AiCoreApiRsaReportInput;
160207
160425
  };
160426
+ export declare type MutationAiManagedObject_ArchiveAiManagedObjectArgs = {
160427
+ id: Scalars['ID']['input'];
160428
+ };
160208
160429
  export declare type MutationAiManagedObject_CreateAiManagedObjectArgs = {
160209
160430
  cloudId: Scalars['ID']['input'];
160210
160431
  input: AiManagedObjectCreateInput;
@@ -160213,9 +160434,6 @@ export declare type MutationAiManagedObject_CreateAiManagedObjectConfigArgs = {
160213
160434
  aiManagedObjectId: Scalars['ID']['input'];
160214
160435
  input: AiManagedObjectConfigCreateInput;
160215
160436
  };
160216
- export declare type MutationAiManagedObject_DeleteAiManagedObjectArgs = {
160217
- id: Scalars['ID']['input'];
160218
- };
160219
160437
  export declare type MutationAiManagedObject_ExecuteArgs = {
160220
160438
  id: Scalars['ID']['input'];
160221
160439
  };
@@ -160828,6 +161046,10 @@ export declare type MutationAvpanalytics_UpdateModelArgs = {
160828
161046
  cloudId: Scalars['ID']['input'];
160829
161047
  input?: InputMaybe<AvpAnalyticsUpdateModelInput>;
160830
161048
  };
161049
+ export declare type MutationAvpanalytics_UpdatePermissionArgs = {
161050
+ cloudId: Scalars['ID']['input'];
161051
+ input: AvpAnalyticsUpdatePermissionInput;
161052
+ };
160831
161053
  export declare type MutationBlockService_BatchCreateBlocksArgs = {
160832
161054
  input: BlockServiceBatchCreateBlocksInput;
160833
161055
  };
@@ -161129,6 +161351,10 @@ export declare type MutationConfluence_DeleteTopicArgs = {
161129
161351
  cloudId: Scalars['ID']['input'];
161130
161352
  input: ConfluenceDeleteTopicInput;
161131
161353
  };
161354
+ export declare type MutationConfluence_DisableCustomContentStateArgs = {
161355
+ cloudId: Scalars['ID']['input'];
161356
+ contentStateId: Scalars['ID']['input'];
161357
+ };
161132
161358
  export declare type MutationConfluence_DisableSystemRoleArgs = {
161133
161359
  cloudId: Scalars['ID']['input'];
161134
161360
  input: ConfluenceDisableSystemRoleInput;
@@ -168069,6 +168295,7 @@ export declare type Query = {
168069
168295
  admin_test?: Maybe<AdminTest>;
168070
168296
  admin_tokens?: Maybe<AdminTokenConnection>;
168071
168297
  admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
168298
+ admin_unitLinkedResource?: Maybe<AdminUnitLinkedResource>;
168072
168299
  admin_unitProfile?: Maybe<AdminUnit>;
168073
168300
  admin_unitSettings?: Maybe<AdminOrgUnitsSettings>;
168074
168301
  admin_unitValidateName?: Maybe<AdminUnitValidateName>;
@@ -168195,6 +168422,7 @@ export declare type Query = {
168195
168422
  aiops_incidentRelatedAlerts?: Maybe<AiOpsIncidentRelatedAlertsResponse>;
168196
168423
  aiops_incidentSuggestion?: Maybe<AiOpsIncidentSuggestionResponse>;
168197
168424
  aiops_incidentSuggestionAsync?: Maybe<AiOpsIncidentSuggestionAsyncResult>;
168425
+ aiops_incidentTimelineIcc?: Maybe<AiOpsIncidentTimelineIccResponse>;
168198
168426
  aiops_investigationById?: Maybe<AiOpsInvestigationQueryResult>;
168199
168427
  aiops_latestInvestigationByEntityTypeId?: Maybe<AiOpsInvestigationQueryResult>;
168200
168428
  aiplanner_getAllPlans?: Maybe<AiPlannerPlanConnection>;
@@ -168373,6 +168601,7 @@ export declare type Query = {
168373
168601
  avpanalytics_getMetrics?: Maybe<AvpAnalyticsMetricConnection>;
168374
168602
  avpanalytics_getModel?: Maybe<AvpAnalyticsModel>;
168375
168603
  avpanalytics_getModels?: Maybe<AvpAnalyticsModelConnection>;
168604
+ avpanalytics_getPermission?: Maybe<AvpAnalyticsPermission>;
168376
168605
  avpanalytics_getSites?: Maybe<Array<AvpAnalyticsSite>>;
168377
168606
  avpanalytics_previewMetricData?: Maybe<AvpAnalyticsMetric>;
168378
168607
  avpanalytics_previewModelData?: Maybe<AvpAnalyticsModel>;
@@ -170978,6 +171207,7 @@ export declare type Query = {
170978
171207
  jpdViewsService_globalViewsById?: Maybe<Array<Maybe<JpdViewsServiceGlobalView>>>;
170979
171208
  jpdViewsService_globalViewsByIdV2?: Maybe<Array<Maybe<JpdViewsServiceGlobalView2>>>;
170980
171209
  jpdViewsService_hydrateUser?: Maybe<JpdViewsServiceUserHydrationExample>;
171210
+ jsmAdaptiveLanguage?: Maybe<JsmAdaptiveLanguageQueryApi>;
170981
171211
  jsmAgentWorkspace_dummy?: Maybe<Scalars['String']['output']>;
170982
171212
  jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
170983
171213
  jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
@@ -171695,6 +171925,9 @@ export declare type QueryAdmin_UnitCreateStatusArgs = {
171695
171925
  orgId: Scalars['ID']['input'];
171696
171926
  requestId: Scalars['ID']['input'];
171697
171927
  };
171928
+ export declare type QueryAdmin_UnitLinkedResourceArgs = {
171929
+ id: Scalars['ID']['input'];
171930
+ };
171698
171931
  export declare type QueryAdmin_UnitProfileArgs = {
171699
171932
  directoryId?: InputMaybe<Scalars['ID']['input']>;
171700
171933
  orgId: Scalars['ID']['input'];
@@ -172381,6 +172614,11 @@ export declare type QueryAiops_IncidentSuggestionAsyncArgs = {
172381
172614
  cloudId: Scalars['ID']['input'];
172382
172615
  issueKey: Scalars['String']['input'];
172383
172616
  };
172617
+ export declare type QueryAiops_IncidentTimelineIccArgs = {
172618
+ cloudId: Scalars['ID']['input'];
172619
+ issueKey: Scalars['String']['input'];
172620
+ limit?: InputMaybe<Scalars['Int']['input']>;
172621
+ };
172384
172622
  export declare type QueryAiops_InvestigationByIdArgs = {
172385
172623
  cloudId: Scalars['ID']['input'];
172386
172624
  investigationId: Scalars['ID']['input'];
@@ -173272,6 +173510,10 @@ export declare type QueryAvpanalytics_GetModelsArgs = {
173272
173510
  cloudId: Scalars['ID']['input'];
173273
173511
  input?: InputMaybe<AvpAnalyticsGetModelsInput>;
173274
173512
  };
173513
+ export declare type QueryAvpanalytics_GetPermissionArgs = {
173514
+ cloudId: Scalars['ID']['input'];
173515
+ input: AvpAnalyticsGetPermissionInput;
173516
+ };
173275
173517
  export declare type QueryAvpanalytics_GetSitesArgs = {
173276
173518
  cloudId: Scalars['ID']['input'];
173277
173519
  };
@@ -174424,6 +174666,7 @@ export declare type QueryContentAnalyticsViewsArgs = {
174424
174666
  fromDate?: InputMaybe<Scalars['String']['input']>;
174425
174667
  };
174426
174668
  export declare type QueryContentAnalyticsViewsByDateArgs = {
174669
+ actorType?: InputMaybe<ConfluencePageAnalyticsActorType>;
174427
174670
  contentId: Scalars['ID']['input'];
174428
174671
  contentType: Scalars['String']['input'];
174429
174672
  fromDate: Scalars['String']['input'];
@@ -191200,6 +191443,7 @@ export declare type QueryPageActivityArgs = {
191200
191443
  };
191201
191444
  export declare type QueryPageAnalyticsCountArgs = {
191202
191445
  accountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
191446
+ actorType?: InputMaybe<ConfluencePageAnalyticsActorType>;
191203
191447
  endTime?: InputMaybe<Scalars['String']['input']>;
191204
191448
  eventName: Array<AnalyticsEventName>;
191205
191449
  pageId: Scalars['ID']['input'];
@@ -191207,6 +191451,7 @@ export declare type QueryPageAnalyticsCountArgs = {
191207
191451
  uniqueBy?: InputMaybe<PageAnalyticsCountType>;
191208
191452
  };
191209
191453
  export declare type QueryPageAnalyticsTimeseriesCountArgs = {
191454
+ actorType?: InputMaybe<ConfluencePageAnalyticsActorType>;
191210
191455
  endTime?: InputMaybe<Scalars['String']['input']>;
191211
191456
  eventName: Array<AnalyticsEventName>;
191212
191457
  granularity: AnalyticsTimeseriesGranularity;
@@ -193144,6 +193389,7 @@ export declare type RadarNumericFieldValue = {
193144
193389
  export declare enum RadarOrgMetric {
193145
193390
  CraftRatio = "CRAFT_RATIO",
193146
193391
  Footprint = "FOOTPRINT",
193392
+ OrgShape = "ORG_SHAPE",
193147
193393
  SpanOfControl = "SPAN_OF_CONTROL"
193148
193394
  }
193149
193395
  export declare type RadarPermissions = {
@@ -196096,6 +196342,7 @@ export declare type SearchResultCodeRepository = {
196096
196342
  id: Scalars['ID']['output'];
196097
196343
  name: Scalars['String']['output'];
196098
196344
  namespace: Scalars['String']['output'];
196345
+ scm?: Maybe<Scalars['String']['output']>;
196099
196346
  url: Scalars['String']['output'];
196100
196347
  };
196101
196348
  export declare type SearchResultCompassComponent = SearchResult & {
@@ -228809,7 +229056,6 @@ export declare type TrelloEnableCardFrontCompleteTogglePayload = Payload & {
228809
229056
  success: Scalars['Boolean']['output'];
228810
229057
  };
228811
229058
  export declare type TrelloEndVoiceCaptureSessionInput = {
228812
- lastSequenceNumber: Scalars['Int']['input'];
228813
229059
  sessionId: Scalars['ID']['input'];
228814
229060
  };
228815
229061
  export declare type TrelloEndVoiceCaptureSessionPayload = Payload & {
@@ -228877,6 +229123,7 @@ export declare type TrelloGenerateBoardBackgroundWithAiInput = {
228877
229123
  };
228878
229124
  export declare type TrelloGenerateBoardBackgroundWithAiPayload = Payload & {
228879
229125
  __typename?: 'TrelloGenerateBoardBackgroundWithAiPayload';
229126
+ background?: Maybe<TrelloBoardBackground>;
228880
229127
  board?: Maybe<TrelloBaseBoard>;
228881
229128
  errors?: Maybe<Array<MutationError>>;
228882
229129
  member?: Maybe<TrelloMember>;
@@ -232490,6 +232737,7 @@ export declare type TrelloVoiceCaptureSessionUpdated = TrelloStatefulSessionUpda
232490
232737
  __typename?: 'TrelloVoiceCaptureSessionUpdated';
232491
232738
  cards?: Maybe<TrelloVoiceCaptureSessionCardConnectionUpdated>;
232492
232739
  sessionId: Scalars['ID']['output'];
232740
+ transcript?: Maybe<Scalars['String']['output']>;
232493
232741
  };
232494
232742
  export declare type TrelloWatchCardInput = {
232495
232743
  cardId: Scalars['ID']['input'];