@forge/cli-shared 9.3.1-next.0 → 9.3.1-next.1-experimental-0b00ed8

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.
@@ -6107,6 +6107,7 @@ export type AgentStudioAgentPermissions = {
6107
6107
  };
6108
6108
  export type AgentStudioAgentQueryInput = {
6109
6109
  includeDraftAgents?: InputMaybe<Scalars['Boolean']['input']>;
6110
+ includeJiraCodingAgent?: InputMaybe<Scalars['Boolean']['input']>;
6110
6111
  name?: InputMaybe<Scalars['String']['input']>;
6111
6112
  onlyEditableAgents?: InputMaybe<Scalars['Boolean']['input']>;
6112
6113
  onlyFavouriteAgents?: InputMaybe<Scalars['Boolean']['input']>;
@@ -7578,6 +7579,13 @@ export type AgentStudioToolsConnection = {
7578
7579
  edges: Array<AgentStudioToolEdge>;
7579
7580
  pageInfo: PageInfo;
7580
7581
  };
7582
+ export type AgentStudioUnlicensedRovoWidgetConfig = {
7583
+ __typename?: 'AgentStudioUnlicensedRovoWidgetConfig';
7584
+ agentId?: Maybe<Scalars['String']['output']>;
7585
+ isRovoEntitled?: Maybe<Scalars['Boolean']['output']>;
7586
+ isWidgetEnabled?: Maybe<Scalars['Boolean']['output']>;
7587
+ };
7588
+ export type AgentStudioUnlicensedRovoWidgetConfigByContainerAriResult = AgentStudioUnlicensedRovoWidgetConfig | QueryError;
7581
7589
  export type AgentStudioUpdateAgentActionsPayload = Payload & {
7582
7590
  __typename?: 'AgentStudioUpdateAgentActionsPayload';
7583
7591
  agent?: Maybe<AgentStudioAgent>;
@@ -8645,6 +8653,7 @@ export type AgentWorkspaceRoutingHistoryEvent = {
8645
8653
  kind: AgentWorkspaceRoutingHistoryEventKind;
8646
8654
  message: Scalars['String']['output'];
8647
8655
  occurredAt: Scalars['DateTime']['output'];
8656
+ trigger?: Maybe<Scalars['String']['output']>;
8648
8657
  };
8649
8658
  export type AgentWorkspaceRoutingHistoryEventConnection = {
8650
8659
  __typename?: 'AgentWorkspaceRoutingHistoryEventConnection';
@@ -8722,6 +8731,7 @@ export type AgentWorkspaceSchedule = {
8722
8731
  __typename?: 'AgentWorkspaceSchedule';
8723
8732
  agents: Array<AgentWorkspaceAgent>;
8724
8733
  cloudId: Scalars['ID']['output'];
8734
+ computedEffectiveUntil?: Maybe<Scalars['DateTime']['output']>;
8725
8735
  coverageGapDetails?: Maybe<Array<AgentWorkspaceCoverageGap>>;
8726
8736
  createdAt: Scalars['DateTime']['output'];
8727
8737
  createdBy: Scalars['String']['output'];
@@ -10115,7 +10125,6 @@ export declare enum AiManagedObjectSourceRetrievalErrorCategory {
10115
10125
  export type AiManagedObjectSourceRetrievalFailure = {
10116
10126
  __typename?: 'AiManagedObjectSourceRetrievalFailure';
10117
10127
  errorCategory: AiManagedObjectSourceRetrievalErrorCategory;
10118
- errorMessage?: Maybe<Scalars['String']['output']>;
10119
10128
  sourceApp: AiManagedObjectSourceApp;
10120
10129
  url: Scalars['String']['output'];
10121
10130
  };
@@ -15122,6 +15131,7 @@ export type AssetsTextAttribute = AssetsObjectTypeAttribute & {
15122
15131
  displayName?: Maybe<Scalars['String']['output']>;
15123
15132
  id: Scalars['ID']['output'];
15124
15133
  isEditable?: Maybe<Scalars['Boolean']['output']>;
15134
+ isLabel?: Maybe<Scalars['Boolean']['output']>;
15125
15135
  maximumCardinality?: Maybe<Scalars['Int']['output']>;
15126
15136
  name?: Maybe<Scalars['String']['output']>;
15127
15137
  objectTypeId?: Maybe<Scalars['ID']['output']>;
@@ -15252,6 +15262,7 @@ export type AssetsVerticalAssetTypesTrackingEdge = {
15252
15262
  };
15253
15263
  export declare enum AssetsVerticalAssetTypesTrackingErrorCode {
15254
15264
  Conflict = "CONFLICT",
15265
+ IneligibleHardwareAssetType = "INELIGIBLE_HARDWARE_ASSET_TYPE",
15255
15266
  InvalidVerticalInstantiationCategory = "INVALID_VERTICAL_INSTANTIATION_CATEGORY",
15256
15267
  NotFound = "NOT_FOUND",
15257
15268
  ParentVerticalInstantiationNotCompleted = "PARENT_VERTICAL_INSTANTIATION_NOT_COMPLETED",
@@ -15629,6 +15640,7 @@ export type AssetsVerticalDepreciationRuleEdge = {
15629
15640
  export declare enum AssetsVerticalDepreciationRuleErrorCode {
15630
15641
  AssetTypeConflict = "ASSET_TYPE_CONFLICT",
15631
15642
  Conflict = "CONFLICT",
15643
+ IneligibleHardwareAssetType = "INELIGIBLE_HARDWARE_ASSET_TYPE",
15632
15644
  NotFound = "NOT_FOUND",
15633
15645
  PermissionDenied = "PERMISSION_DENIED",
15634
15646
  RateLimited = "RATE_LIMITED",
@@ -15895,6 +15907,7 @@ export type AssetsVerticalItemMappingEdge = {
15895
15907
  };
15896
15908
  export declare enum AssetsVerticalItemMappingErrorCode {
15897
15909
  Conflict = "CONFLICT",
15910
+ InvalidRequestTypeMapping = "INVALID_REQUEST_TYPE_MAPPING",
15898
15911
  InvalidVerticalInstantiationCategory = "INVALID_VERTICAL_INSTANTIATION_CATEGORY",
15899
15912
  NotFound = "NOT_FOUND",
15900
15913
  ParentVerticalInstantiationNotCompleted = "PARENT_VERTICAL_INSTANTIATION_NOT_COMPLETED",
@@ -20782,17 +20795,53 @@ export type CloudifyMetadataEntry = {
20782
20795
  key: Scalars['String']['output'];
20783
20796
  value: Scalars['String']['output'];
20784
20797
  };
20798
+ export type CloudifyMigrationAssessment = {
20799
+ __typename?: 'CloudifyMigrationAssessment';
20800
+ migrationPaths: Array<CloudifyMigrationPath>;
20801
+ };
20802
+ export declare enum CloudifyMigrationComplexity {
20803
+ High = "HIGH",
20804
+ Low = "LOW",
20805
+ Medium = "MEDIUM"
20806
+ }
20807
+ export type CloudifyMigrationPath = {
20808
+ __typename?: 'CloudifyMigrationPath';
20809
+ complexity: CloudifyMigrationComplexity;
20810
+ path: CloudifyMigrationPathLabel;
20811
+ setupInstructions: Scalars['String']['output'];
20812
+ summary: Scalars['String']['output'];
20813
+ };
20814
+ export declare enum CloudifyMigrationPathLabel {
20815
+ AiBasedSolution = "AI_BASED_SOLUTION",
20816
+ CloudNative = "CLOUD_NATIVE",
20817
+ ForgeRebuild = "FORGE_REBUILD",
20818
+ MarketplaceApp = "MARKETPLACE_APP",
20819
+ NoMigrationPath = "NO_MIGRATION_PATH"
20820
+ }
20785
20821
  export type CloudifyProjectAri = {
20786
20822
  __typename?: 'CloudifyProjectARI';
20787
20823
  projectId: Scalars['ID']['output'];
20788
20824
  siteId: Scalars['ID']['output'];
20789
20825
  };
20826
+ export type CloudifyRawCustomizationRecommendation = {
20827
+ __typename?: 'CloudifyRawCustomizationRecommendation';
20828
+ analysisType: CloudifyAnalysisType;
20829
+ content: Scalars['String']['output'];
20830
+ customizationId: Scalars['String']['output'];
20831
+ id: Scalars['ID']['output'];
20832
+ type: CloudifyRawCustomizationRecommendationType;
20833
+ };
20834
+ export declare enum CloudifyRawCustomizationRecommendationType {
20835
+ L2 = "L2"
20836
+ }
20790
20837
  export type CloudifyRecommendation = {
20791
20838
  __typename?: 'CloudifyRecommendation';
20792
20839
  analysisType: CloudifyAnalysisType;
20793
20840
  createdAt: Scalars['String']['output'];
20794
20841
  id: CloudifyRecommendationId;
20842
+ migrationAssessment?: Maybe<CloudifyMigrationAssessment>;
20795
20843
  reasoning: Scalars['String']['output'];
20844
+ resources: Array<CloudifyRecommendationResource>;
20796
20845
  source: CloudifyRecommendationSource;
20797
20846
  status: CloudifyRecommendationStatus;
20798
20847
  steps: Array<CloudifyRecommendationStep>;
@@ -20815,6 +20864,14 @@ export type CloudifyRecommendationInput = {
20815
20864
  target: CloudifyTargetInput;
20816
20865
  title: Scalars['String']['input'];
20817
20866
  };
20867
+ export type CloudifyRecommendationResource = {
20868
+ __typename?: 'CloudifyRecommendationResource';
20869
+ id: Scalars['ID']['output'];
20870
+ type: CloudifyRecommendationResourceType;
20871
+ };
20872
+ export declare enum CloudifyRecommendationResourceType {
20873
+ RawCustomizationRecommendation = "RAW_CUSTOMIZATION_RECOMMENDATION"
20874
+ }
20818
20875
  export type CloudifyRecommendationSource = {
20819
20876
  __typename?: 'CloudifyRecommendationSource';
20820
20877
  data: Array<CloudifySourceDataEntry>;
@@ -22147,6 +22204,7 @@ export type CommerceExpCcpPromotion = {
22147
22204
  promotionCodeType?: Maybe<CommerceExpPromotionCodeType>;
22148
22205
  promotionInstanceId?: Maybe<Scalars['String']['output']>;
22149
22206
  purpose?: Maybe<CommerceExpPromotionPurpose>;
22207
+ source?: Maybe<CommerceExpPromotionSource>;
22150
22208
  status?: Maybe<CommerceExpPromotionStatus>;
22151
22209
  title?: Maybe<Scalars['String']['output']>;
22152
22210
  type?: Maybe<CommerceExpPromotionType>;
@@ -24408,6 +24466,7 @@ export declare enum CommerceExpProcessingInfoStatus {
24408
24466
  }
24409
24467
  export type CommerceExpPromocodeIsApplicable = {
24410
24468
  __typename?: 'CommerceExpPromocodeIsApplicable';
24469
+ concessionKey?: Maybe<Scalars['String']['output']>;
24411
24470
  promotion?: Maybe<CommerceExpCcpPromotion>;
24412
24471
  promotionCode?: Maybe<Scalars['String']['output']>;
24413
24472
  promotionKey?: Maybe<Scalars['String']['output']>;
@@ -24472,6 +24531,10 @@ export type CommerceExpPromotionPurpose = {
24472
24531
  name?: Maybe<Scalars['String']['output']>;
24473
24532
  reasonCode?: Maybe<Scalars['String']['output']>;
24474
24533
  };
24534
+ export declare enum CommerceExpPromotionSource {
24535
+ Concession = "CONCESSION",
24536
+ Promotion = "PROMOTION"
24537
+ }
24475
24538
  export declare enum CommerceExpPromotionStatus {
24476
24539
  Active = "ACTIVE",
24477
24540
  Cancelled = "CANCELLED",
@@ -30599,6 +30662,12 @@ export type ConfluenceAdvancedDiagramsFeature = {
30599
30662
  __typename?: 'ConfluenceAdvancedDiagramsFeature';
30600
30663
  isEntitled: Scalars['Boolean']['output'];
30601
30664
  };
30665
+ export type ConfluenceAgent = {
30666
+ __typename?: 'ConfluenceAgent';
30667
+ accountId: Scalars['String']['output'];
30668
+ displayName?: Maybe<Scalars['String']['output']>;
30669
+ profilePicture?: Maybe<Icon>;
30670
+ };
30602
30671
  export declare enum ConfluenceAggregationDimension {
30603
30672
  PerformanceRating = "PERFORMANCE_RATING"
30604
30673
  }
@@ -31261,6 +31330,24 @@ export declare enum ConfluenceCollaborativeEditingService {
31261
31330
  Ncs = "NCS",
31262
31331
  Synchrony = "SYNCHRONY"
31263
31332
  }
31333
+ export type ConfluenceCollaborator = {
31334
+ __typename?: 'ConfluenceCollaborator';
31335
+ agent?: Maybe<ConfluenceAgent>;
31336
+ person: Person;
31337
+ };
31338
+ export type ConfluenceCollaboratorConnection = {
31339
+ __typename?: 'ConfluenceCollaboratorConnection';
31340
+ count?: Maybe<Scalars['Int']['output']>;
31341
+ edges?: Maybe<Array<Maybe<ConfluenceCollaboratorEdge>>>;
31342
+ links?: Maybe<LinksContextBase>;
31343
+ nodes?: Maybe<Array<Maybe<ConfluenceCollaborator>>>;
31344
+ pageInfo?: Maybe<PageInfo>;
31345
+ };
31346
+ export type ConfluenceCollaboratorEdge = {
31347
+ __typename?: 'ConfluenceCollaboratorEdge';
31348
+ cursor?: Maybe<Scalars['String']['output']>;
31349
+ node?: Maybe<ConfluenceCollaborator>;
31350
+ };
31264
31351
  export type ConfluenceComment = {
31265
31352
  author?: Maybe<ConfluenceUserInfo>;
31266
31353
  body?: Maybe<ConfluenceBodies>;
@@ -32637,9 +32724,16 @@ export type ConfluenceDesktopSendPayload = Payload & {
32637
32724
  errors?: Maybe<Array<MutationError>>;
32638
32725
  success: Scalars['Boolean']['output'];
32639
32726
  };
32727
+ export type ConfluenceDevDocsDocTypeConfig = {
32728
+ __typename?: 'ConfluenceDevDocsDocTypeConfig';
32729
+ customPrompt?: Maybe<Scalars['String']['output']>;
32730
+ docType: Scalars['String']['output'];
32731
+ docTypeId: Scalars['ID']['output'];
32732
+ };
32640
32733
  export type ConfluenceDevDocsDocTypeConfigInput = {
32641
32734
  customPrompt?: InputMaybe<Scalars['String']['input']>;
32642
32735
  docType: Scalars['String']['input'];
32736
+ docTypeId?: InputMaybe<Scalars['ID']['input']>;
32643
32737
  };
32644
32738
  export type ConfluenceDevDocsRepositoryConfigInput = {
32645
32739
  docTypes: Array<ConfluenceDevDocsDocTypeConfigInput>;
@@ -34566,6 +34660,8 @@ export type ConfluencePageInfo = {
34566
34660
  __typename?: 'ConfluencePageInfo';
34567
34661
  endCursor?: Maybe<Scalars['String']['output']>;
34568
34662
  hasNextPage: Scalars['Boolean']['output'];
34663
+ hasPreviousPage: Scalars['Boolean']['output'];
34664
+ startCursor?: Maybe<Scalars['String']['output']>;
34569
34665
  };
34570
34666
  export type ConfluencePageLinks = {
34571
34667
  __typename?: 'ConfluencePageLinks';
@@ -36057,6 +36153,7 @@ export type ConfluenceSetupDevDocsSmartFolderInput = {
36057
36153
  };
36058
36154
  export type ConfluenceSetupDevDocsSmartFolderPayload = Payload & {
36059
36155
  __typename?: 'ConfluenceSetupDevDocsSmartFolderPayload';
36156
+ docTypes?: Maybe<Array<ConfluenceDevDocsDocTypeConfig>>;
36060
36157
  errors?: Maybe<Array<MutationError>>;
36061
36158
  folderId?: Maybe<Scalars['ID']['output']>;
36062
36159
  success: Scalars['Boolean']['output'];
@@ -36381,6 +36478,7 @@ export type ConfluenceSpaceEnabledContentTypes = {
36381
36478
  isEmbedsEnabled?: Maybe<Scalars['Boolean']['output']>;
36382
36479
  isFoldersEnabled?: Maybe<Scalars['Boolean']['output']>;
36383
36480
  isLivePagesEnabled?: Maybe<Scalars['Boolean']['output']>;
36481
+ isSmartFoldersEnabled?: Maybe<Scalars['Boolean']['output']>;
36384
36482
  isWhiteboardsEnabled?: Maybe<Scalars['Boolean']['output']>;
36385
36483
  };
36386
36484
  export type ConfluenceSpaceEnabledFeatures = {
@@ -36818,6 +36916,7 @@ export type ConfluenceTemplatesSpaceTemplatesArgs = {
36818
36916
  export type ConfluenceTenantContext = {
36819
36917
  __typename?: 'ConfluenceTenantContext';
36820
36918
  baseUrl: Scalars['String']['output'];
36919
+ collabContextId?: Maybe<Scalars['String']['output']>;
36821
36920
  customDomainUrl?: Maybe<Scalars['String']['output']>;
36822
36921
  editions: Editions;
36823
36922
  initialProductList?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
@@ -45327,12 +45426,16 @@ export declare enum DevAiCodeSearchEnablementState {
45327
45426
  }
45328
45427
  export type DevAiConnectedRepoSearchResult = {
45329
45428
  __typename?: 'DevAiConnectedRepoSearchResult';
45429
+ hasNextPage: Scalars['Boolean']['output'];
45430
+ page: Scalars['Int']['output'];
45431
+ pagelen: Scalars['Int']['output'];
45330
45432
  repositories: Array<DevAiConnectedRepository>;
45433
+ size: Scalars['Int']['output'];
45331
45434
  };
45332
45435
  export type DevAiConnectedRepoWorkspaceFilter = {
45333
45436
  id: Scalars['String']['input'];
45334
45437
  name: Scalars['String']['input'];
45335
- scm?: InputMaybe<DevAiScmProvider>;
45438
+ scm: DevAiScmProvider;
45336
45439
  };
45337
45440
  export type DevAiConnectedRepository = {
45338
45441
  __typename?: 'DevAiConnectedRepository';
@@ -50294,6 +50397,7 @@ export type ExternalDocument = Node & {
50294
50397
  lastUpdatedBy?: Maybe<ExternalUser>;
50295
50398
  masterLanguage?: Maybe<Scalars['String']['output']>;
50296
50399
  nonIndexableContent?: Maybe<ExternalLargeContent>;
50400
+ ownerProviderUserId?: Maybe<Scalars['String']['output']>;
50297
50401
  owners?: Maybe<Array<Maybe<ExternalUser>>>;
50298
50402
  parent?: Maybe<ExternalEntity>;
50299
50403
  parentId?: Maybe<Scalars['ID']['output']>;
@@ -52530,14 +52634,14 @@ export type ForgeMetricsLabelGroup = {
52530
52634
  export declare enum ForgeMetricsLabels {
52531
52635
  ContainerCpuUsagePercentage = "CONTAINER_CPU_USAGE_PERCENTAGE",
52532
52636
  ContainerMemoryUsagePercentage = "CONTAINER_MEMORY_USAGE_PERCENTAGE",
52637
+ ContainerStatusRestartsTotal = "CONTAINER_STATUS_RESTARTS_TOTAL",
52638
+ ContainerUptimeSeconds = "CONTAINER_UPTIME_SECONDS",
52533
52639
  ForgeApiRequestCount = "FORGE_API_REQUEST_COUNT",
52534
52640
  ForgeApiRequestLatency = "FORGE_API_REQUEST_LATENCY",
52535
52641
  ForgeBackendCustomMetricsCount = "FORGE_BACKEND_CUSTOM_METRICS_COUNT",
52536
52642
  ForgeBackendInvocationCount = "FORGE_BACKEND_INVOCATION_COUNT",
52537
52643
  ForgeBackendInvocationErrors = "FORGE_BACKEND_INVOCATION_ERRORS",
52538
52644
  ForgeBackendInvocationLatency = "FORGE_BACKEND_INVOCATION_LATENCY",
52539
- KubeContainerUptimeSeconds = "KUBE_CONTAINER_UPTIME_SECONDS",
52540
- KubePodContainerStatusRestartsTotal = "KUBE_POD_CONTAINER_STATUS_RESTARTS_TOTAL",
52541
52645
  ServiceInstanceCount = "SERVICE_INSTANCE_COUNT"
52542
52646
  }
52543
52647
  export type ForgeMetricsLatenciesData = ForgeMetricsData & {
@@ -52858,7 +52962,7 @@ export type ForgeObservabilityFrontendLogContextInput = {
52858
52962
  userAgent: Scalars['String']['input'];
52859
52963
  };
52860
52964
  export type ForgeObservabilityFrontendLogEntryInput = {
52861
- args?: InputMaybe<Array<InputMaybe<Scalars['JSON']['input']>>>;
52965
+ args?: InputMaybe<Scalars['String']['input']>;
52862
52966
  errorType?: InputMaybe<Scalars['String']['input']>;
52863
52967
  logId: Scalars['ID']['input'];
52864
52968
  logSource: ForgeObservabilityFrontendLogSource;
@@ -58383,6 +58487,7 @@ export type GraphStore = {
58383
58487
  atlassianUserOwnsExternalTestRunInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestRunInverseConnection>;
58384
58488
  atlassianUserOwnsExternalTestStatus?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusConnection>;
58385
58489
  atlassianUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection>;
58490
+ atlassianUserOwnsInferredProject?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectConnection>;
58386
58491
  atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
58387
58492
  atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
58388
58493
  atlassianUserTriggeredAtlassianAgentSessionInverse?: Maybe<GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection>;
@@ -58686,8 +58791,11 @@ export type GraphStore = {
58686
58791
  inferredDecisionSourceLineageEntity?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityConnection>;
58687
58792
  inferredDecisionSourceLineageEntityInverse?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseConnection>;
58688
58793
  inferredProjectLinksEntity?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityConnection>;
58794
+ inferredProjectLinksEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityInverseConnection>;
58795
+ inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
58689
58796
  inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
58690
58797
  inferredTeamLinksEntity?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityConnection>;
58798
+ inferredTeamLinksEntityInverse?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityInverseConnection>;
58691
58799
  issueAssociatedBranch?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchConnection>;
58692
58800
  issueAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseConnection>;
58693
58801
  issueAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
@@ -59132,6 +59240,8 @@ export type GraphStore = {
59132
59240
  testPerfhammerRelationshipInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
59133
59241
  testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
59134
59242
  thirdPartyToGraphRemoteLink?: Maybe<GraphStoreSimplifiedThirdPartyToGraphRemoteLinkConnection>;
59243
+ thirdPartyUserLinkedViaEmailThirdPartyUser?: Maybe<GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserConnection>;
59244
+ thirdPartyUserLinkedViaEmailThirdPartyUserInverse?: Maybe<GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseConnection>;
59135
59245
  topicHasRelatedEntity?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityConnection>;
59136
59246
  topicHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityInverseConnection>;
59137
59247
  townsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreSimplifiedTownsquareTagIsAliasOfTownsquareTagConnection>;
@@ -59263,6 +59373,7 @@ export type GraphStore = {
59263
59373
  userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
59264
59374
  userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
59265
59375
  userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
59376
+ userIsInInferredProject?: Maybe<GraphStoreSimplifiedUserIsInInferredProjectConnection>;
59266
59377
  userIsInInferredProjectInverse?: Maybe<GraphStoreSimplifiedUserIsInInferredProjectInverseConnection>;
59267
59378
  userIsInTeam?: Maybe<GraphStoreSimplifiedUserIsInTeamConnection>;
59268
59379
  userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
@@ -60574,6 +60685,14 @@ export type GraphStoreAtlassianUserOwnsExternalTestStatusInverseArgs = {
60574
60685
  queryContext?: InputMaybe<Scalars['String']['input']>;
60575
60686
  sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalTestStatusSortInput>;
60576
60687
  };
60688
+ export type GraphStoreAtlassianUserOwnsInferredProjectArgs = {
60689
+ after?: InputMaybe<Scalars['String']['input']>;
60690
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
60691
+ first?: InputMaybe<Scalars['Int']['input']>;
60692
+ id: Scalars['ID']['input'];
60693
+ queryContext?: InputMaybe<Scalars['String']['input']>;
60694
+ sort?: InputMaybe<GraphStoreAtlassianUserOwnsInferredProjectSortInput>;
60695
+ };
60577
60696
  export type GraphStoreAtlassianUserOwnsInferredProjectInverseArgs = {
60578
60697
  after?: InputMaybe<Scalars['String']['input']>;
60579
60698
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -62926,6 +63045,22 @@ export type GraphStoreInferredProjectLinksEntityArgs = {
62926
63045
  queryContext?: InputMaybe<Scalars['String']['input']>;
62927
63046
  sort?: InputMaybe<GraphStoreInferredProjectLinksEntitySortInput>;
62928
63047
  };
63048
+ export type GraphStoreInferredProjectLinksEntityInverseArgs = {
63049
+ after?: InputMaybe<Scalars['String']['input']>;
63050
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
63051
+ first?: InputMaybe<Scalars['Int']['input']>;
63052
+ id: Scalars['ID']['input'];
63053
+ queryContext?: InputMaybe<Scalars['String']['input']>;
63054
+ sort?: InputMaybe<GraphStoreInferredProjectLinksEntitySortInput>;
63055
+ };
63056
+ export type GraphStoreInferredTeamCollaboratesOnInferredProjectArgs = {
63057
+ after?: InputMaybe<Scalars['String']['input']>;
63058
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
63059
+ first?: InputMaybe<Scalars['Int']['input']>;
63060
+ id: Scalars['ID']['input'];
63061
+ queryContext?: InputMaybe<Scalars['String']['input']>;
63062
+ sort?: InputMaybe<GraphStoreInferredTeamCollaboratesOnInferredProjectSortInput>;
63063
+ };
62929
63064
  export type GraphStoreInferredTeamCollaboratesOnInferredProjectInverseArgs = {
62930
63065
  after?: InputMaybe<Scalars['String']['input']>;
62931
63066
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -62942,6 +63077,14 @@ export type GraphStoreInferredTeamLinksEntityArgs = {
62942
63077
  queryContext?: InputMaybe<Scalars['String']['input']>;
62943
63078
  sort?: InputMaybe<GraphStoreInferredTeamLinksEntitySortInput>;
62944
63079
  };
63080
+ export type GraphStoreInferredTeamLinksEntityInverseArgs = {
63081
+ after?: InputMaybe<Scalars['String']['input']>;
63082
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
63083
+ first?: InputMaybe<Scalars['Int']['input']>;
63084
+ id: Scalars['ID']['input'];
63085
+ queryContext?: InputMaybe<Scalars['String']['input']>;
63086
+ sort?: InputMaybe<GraphStoreInferredTeamLinksEntitySortInput>;
63087
+ };
62945
63088
  export type GraphStoreIssueAssociatedBranchArgs = {
62946
63089
  after?: InputMaybe<Scalars['String']['input']>;
62947
63090
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -66306,6 +66449,22 @@ export type GraphStoreThirdPartyToGraphRemoteLinkArgs = {
66306
66449
  queryContext?: InputMaybe<Scalars['String']['input']>;
66307
66450
  sort?: InputMaybe<GraphStoreThirdPartyToGraphRemoteLinkSortInput>;
66308
66451
  };
66452
+ export type GraphStoreThirdPartyUserLinkedViaEmailThirdPartyUserArgs = {
66453
+ after?: InputMaybe<Scalars['String']['input']>;
66454
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
66455
+ first?: InputMaybe<Scalars['Int']['input']>;
66456
+ id: Scalars['ID']['input'];
66457
+ queryContext?: InputMaybe<Scalars['String']['input']>;
66458
+ sort?: InputMaybe<GraphStoreThirdPartyUserLinkedViaEmailThirdPartyUserSortInput>;
66459
+ };
66460
+ export type GraphStoreThirdPartyUserLinkedViaEmailThirdPartyUserInverseArgs = {
66461
+ after?: InputMaybe<Scalars['String']['input']>;
66462
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
66463
+ first?: InputMaybe<Scalars['Int']['input']>;
66464
+ id: Scalars['ID']['input'];
66465
+ queryContext?: InputMaybe<Scalars['String']['input']>;
66466
+ sort?: InputMaybe<GraphStoreThirdPartyUserLinkedViaEmailThirdPartyUserSortInput>;
66467
+ };
66309
66468
  export type GraphStoreTopicHasRelatedEntityArgs = {
66310
66469
  after?: InputMaybe<Scalars['String']['input']>;
66311
66470
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -67358,6 +67517,14 @@ export type GraphStoreUserHasTopProjectInverseArgs = {
67358
67517
  queryContext?: InputMaybe<Scalars['String']['input']>;
67359
67518
  sort?: InputMaybe<GraphStoreUserHasTopProjectSortInput>;
67360
67519
  };
67520
+ export type GraphStoreUserIsInInferredProjectArgs = {
67521
+ after?: InputMaybe<Scalars['String']['input']>;
67522
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
67523
+ first?: InputMaybe<Scalars['Int']['input']>;
67524
+ id: Scalars['ID']['input'];
67525
+ queryContext?: InputMaybe<Scalars['String']['input']>;
67526
+ sort?: InputMaybe<GraphStoreUserIsInInferredProjectSortInput>;
67527
+ };
67361
67528
  export type GraphStoreUserIsInInferredProjectInverseArgs = {
67362
67529
  after?: InputMaybe<Scalars['String']['input']>;
67363
67530
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -76648,21 +76815,59 @@ export type GraphStoreIncidentLinkedJswIssueSortInput = {
76648
76815
  export type GraphStoreInferredDecisionImpactsEntitySortInput = {
76649
76816
  lastModified?: InputMaybe<GraphStoreSortInput>;
76650
76817
  };
76818
+ export type GraphStoreInferredDecisionNodeEvidenceSpanOutput = {
76819
+ __typename?: 'GraphStoreInferredDecisionNodeEvidenceSpanOutput';
76820
+ endOffset?: Maybe<Scalars['Long']['output']>;
76821
+ quote?: Maybe<Scalars['String']['output']>;
76822
+ source?: Maybe<Scalars['String']['output']>;
76823
+ startOffset?: Maybe<Scalars['Long']['output']>;
76824
+ };
76825
+ export declare enum GraphStoreInferredDecisionNodeInferredDecisionKindOutput {
76826
+ Decided = "DECIDED",
76827
+ NotSet = "NOT_SET",
76828
+ Open = "OPEN"
76829
+ }
76651
76830
  export declare enum GraphStoreInferredDecisionNodeInferredDecisionStatusOutput {
76652
76831
  Accepted = "ACCEPTED",
76653
76832
  NeedsReview = "NEEDS_REVIEW",
76654
76833
  NotSet = "NOT_SET",
76834
+ Published = "PUBLISHED",
76655
76835
  Rejected = "REJECTED"
76656
76836
  }
76837
+ export declare enum GraphStoreInferredDecisionNodeInferredDecisionSubtypeOutput {
76838
+ Commitment = "COMMITMENT",
76839
+ Design = "DESIGN",
76840
+ NotSet = "NOT_SET",
76841
+ Other = "OTHER",
76842
+ Prioritization = "PRIORITIZATION",
76843
+ Process = "PROCESS",
76844
+ Scope = "SCOPE",
76845
+ Staffing = "STAFFING",
76846
+ Technical = "TECHNICAL"
76847
+ }
76657
76848
  export type GraphStoreInferredDecisionNodeMetadata = {
76658
76849
  __typename?: 'GraphStoreInferredDecisionNodeMetadata';
76659
- claim?: Maybe<Scalars['String']['output']>;
76660
76850
  confidenceScore?: Maybe<Scalars['Float']['output']>;
76661
76851
  createdAt?: Maybe<Scalars['Long']['output']>;
76852
+ decidedBy?: Maybe<Scalars['String']['output']>;
76662
76853
  dedupeKey?: Maybe<Scalars['String']['output']>;
76854
+ evidenceSpans?: Maybe<GraphStoreInferredDecisionNodeEvidenceSpanOutput>;
76855
+ kind?: Maybe<GraphStoreInferredDecisionNodeInferredDecisionKindOutput>;
76663
76856
  lastUpdated?: Maybe<Scalars['Long']['output']>;
76664
76857
  normalizedClaimHash?: Maybe<Scalars['String']['output']>;
76858
+ provenance?: Maybe<GraphStoreInferredDecisionNodeProvenanceOutput>;
76665
76859
  status?: Maybe<GraphStoreInferredDecisionNodeInferredDecisionStatusOutput>;
76860
+ subtype?: Maybe<GraphStoreInferredDecisionNodeInferredDecisionSubtypeOutput>;
76861
+ summary?: Maybe<Scalars['String']['output']>;
76862
+ title?: Maybe<Scalars['String']['output']>;
76863
+ };
76864
+ export type GraphStoreInferredDecisionNodeProvenanceOutput = {
76865
+ __typename?: 'GraphStoreInferredDecisionNodeProvenanceOutput';
76866
+ appId?: Maybe<Scalars['String']['output']>;
76867
+ appVersion?: Maybe<Scalars['Int']['output']>;
76868
+ executionMode?: Maybe<Scalars['String']['output']>;
76869
+ modelProvider?: Maybe<Scalars['String']['output']>;
76870
+ sourceVersion?: Maybe<Scalars['String']['output']>;
76666
76871
  };
76667
76872
  export type GraphStoreInferredDecisionSourceLineageEntitySortInput = {
76668
76873
  lastModified?: InputMaybe<GraphStoreSortInput>;
@@ -76683,6 +76888,22 @@ export type GraphStoreInferredProjectMetadata = {
76683
76888
  summary?: Maybe<Scalars['String']['output']>;
76684
76889
  title?: Maybe<Scalars['String']['output']>;
76685
76890
  };
76891
+ export declare enum GraphStoreInferredProjectNodeInferredProjectStatusOutput {
76892
+ Active = "ACTIVE",
76893
+ Inactive = "INACTIVE",
76894
+ NotSet = "NOT_SET"
76895
+ }
76896
+ export type GraphStoreInferredProjectNodeMetadata = {
76897
+ __typename?: 'GraphStoreInferredProjectNodeMetadata';
76898
+ confidenceScore?: Maybe<Scalars['Float']['output']>;
76899
+ createdAt?: Maybe<Scalars['Long']['output']>;
76900
+ lastActivityDate?: Maybe<Scalars['Long']['output']>;
76901
+ lastUpdated?: Maybe<Scalars['Long']['output']>;
76902
+ startDate?: Maybe<Scalars['Long']['output']>;
76903
+ status?: Maybe<GraphStoreInferredProjectNodeInferredProjectStatusOutput>;
76904
+ summary?: Maybe<Scalars['String']['output']>;
76905
+ title?: Maybe<Scalars['String']['output']>;
76906
+ };
76686
76907
  export type GraphStoreInferredTeamCollaboratesOnInferredProjectSortInput = {
76687
76908
  lastModified?: InputMaybe<GraphStoreSortInput>;
76688
76909
  };
@@ -77475,7 +77696,7 @@ export type GraphStoreMutationDeleteVersionUserAssociatedFeatureFlagArgs = {
77475
77696
  export type GraphStoreMutationDeleteVulnerabilityAssociatedIssueArgs = {
77476
77697
  input?: InputMaybe<GraphStoreDeleteVulnerabilityAssociatedIssueInput>;
77477
77698
  };
77478
- export type GraphStoreNodeMetadata = GraphStoreGraphMemoryNodeMetadata | GraphStoreInferredDecisionNodeMetadata | GraphStoreInferredTeamNodeMetadata;
77699
+ export type GraphStoreNodeMetadata = GraphStoreGraphMemoryNodeMetadata | GraphStoreInferredDecisionNodeMetadata | GraphStoreInferredProjectNodeMetadata | GraphStoreInferredTeamNodeMetadata;
77479
77700
  export type GraphStoreNodeResponse = Node & {
77480
77701
  __typename?: 'GraphStoreNodeResponse';
77481
77702
  id: Scalars['ID']['output'];
@@ -79866,6 +80087,19 @@ export type GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseEdge =
79866
80087
  };
79867
80088
  export type GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
79868
80089
  export type GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusUnion = ExternalTestStatus;
80090
+ export type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectConnection = HasPageInfo & {
80091
+ __typename?: 'GraphStoreSimplifiedAtlassianUserOwnsInferredProjectConnection';
80092
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectEdge>>>;
80093
+ pageInfo: PageInfo;
80094
+ };
80095
+ export type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectEdge = {
80096
+ __typename?: 'GraphStoreSimplifiedAtlassianUserOwnsInferredProjectEdge';
80097
+ createdAt: Scalars['DateTime']['output'];
80098
+ cursor?: Maybe<Scalars['String']['output']>;
80099
+ id: Scalars['ID']['output'];
80100
+ lastUpdated: Scalars['DateTime']['output'];
80101
+ node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectUnion>;
80102
+ };
79869
80103
  export type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection = HasPageInfo & {
79870
80104
  __typename?: 'GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection';
79871
80105
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseEdge>>>;
@@ -79880,6 +80114,7 @@ export type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseEdge = {
79880
80114
  node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseUnion>;
79881
80115
  };
79882
80116
  export type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
80117
+ export type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectUnion = GraphStoreNodeResponse;
79883
80118
  export type GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection = HasPageInfo & {
79884
80119
  __typename?: 'GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection';
79885
80120
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge>>>;
@@ -83341,7 +83576,7 @@ export type GraphStoreSimplifiedInferredDecisionImpactsEntityInverseEdge = {
83341
83576
  node?: Maybe<GraphStoreSimplifiedInferredDecisionImpactsEntityInverseUnion>;
83342
83577
  };
83343
83578
  export type GraphStoreSimplifiedInferredDecisionImpactsEntityInverseUnion = GraphStoreNodeResponse;
83344
- export type GraphStoreSimplifiedInferredDecisionImpactsEntityUnion = TownsquareProject;
83579
+ export type GraphStoreSimplifiedInferredDecisionImpactsEntityUnion = GraphStoreNodeResponse | TownsquareProject;
83345
83580
  export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityConnection = HasPageInfo & {
83346
83581
  __typename?: 'GraphStoreSimplifiedInferredDecisionSourceLineageEntityConnection';
83347
83582
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityEdge>>>;
@@ -83383,7 +83618,34 @@ export type GraphStoreSimplifiedInferredProjectLinksEntityEdge = {
83383
83618
  lastUpdated: Scalars['DateTime']['output'];
83384
83619
  node?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityUnion>;
83385
83620
  };
83621
+ export type GraphStoreSimplifiedInferredProjectLinksEntityInverseConnection = HasPageInfo & {
83622
+ __typename?: 'GraphStoreSimplifiedInferredProjectLinksEntityInverseConnection';
83623
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredProjectLinksEntityInverseEdge>>>;
83624
+ pageInfo: PageInfo;
83625
+ };
83626
+ export type GraphStoreSimplifiedInferredProjectLinksEntityInverseEdge = {
83627
+ __typename?: 'GraphStoreSimplifiedInferredProjectLinksEntityInverseEdge';
83628
+ createdAt: Scalars['DateTime']['output'];
83629
+ cursor?: Maybe<Scalars['String']['output']>;
83630
+ id: Scalars['ID']['output'];
83631
+ lastUpdated: Scalars['DateTime']['output'];
83632
+ node?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityInverseUnion>;
83633
+ };
83634
+ export type GraphStoreSimplifiedInferredProjectLinksEntityInverseUnion = GraphStoreNodeResponse;
83386
83635
  export type GraphStoreSimplifiedInferredProjectLinksEntityUnion = ConfluencePage | JiraIssue | JiraProject;
83636
+ export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection = HasPageInfo & {
83637
+ __typename?: 'GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection';
83638
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectEdge>>>;
83639
+ pageInfo: PageInfo;
83640
+ };
83641
+ export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectEdge = {
83642
+ __typename?: 'GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectEdge';
83643
+ createdAt: Scalars['DateTime']['output'];
83644
+ cursor?: Maybe<Scalars['String']['output']>;
83645
+ id: Scalars['ID']['output'];
83646
+ lastUpdated: Scalars['DateTime']['output'];
83647
+ node?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectUnion>;
83648
+ };
83387
83649
  export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection = HasPageInfo & {
83388
83650
  __typename?: 'GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection';
83389
83651
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge>>>;
@@ -83397,7 +83659,8 @@ export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverse
83397
83659
  lastUpdated: Scalars['DateTime']['output'];
83398
83660
  node?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion>;
83399
83661
  };
83400
- export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion = JiraProject;
83662
+ export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion = GraphStoreNodeResponse | JiraProject;
83663
+ export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectUnion = GraphStoreNodeResponse;
83401
83664
  export type GraphStoreSimplifiedInferredTeamLinksEntityConnection = HasPageInfo & {
83402
83665
  __typename?: 'GraphStoreSimplifiedInferredTeamLinksEntityConnection';
83403
83666
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredTeamLinksEntityEdge>>>;
@@ -83411,6 +83674,20 @@ export type GraphStoreSimplifiedInferredTeamLinksEntityEdge = {
83411
83674
  lastUpdated: Scalars['DateTime']['output'];
83412
83675
  node?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityUnion>;
83413
83676
  };
83677
+ export type GraphStoreSimplifiedInferredTeamLinksEntityInverseConnection = HasPageInfo & {
83678
+ __typename?: 'GraphStoreSimplifiedInferredTeamLinksEntityInverseConnection';
83679
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredTeamLinksEntityInverseEdge>>>;
83680
+ pageInfo: PageInfo;
83681
+ };
83682
+ export type GraphStoreSimplifiedInferredTeamLinksEntityInverseEdge = {
83683
+ __typename?: 'GraphStoreSimplifiedInferredTeamLinksEntityInverseEdge';
83684
+ createdAt: Scalars['DateTime']['output'];
83685
+ cursor?: Maybe<Scalars['String']['output']>;
83686
+ id: Scalars['ID']['output'];
83687
+ lastUpdated: Scalars['DateTime']['output'];
83688
+ node?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityInverseUnion>;
83689
+ };
83690
+ export type GraphStoreSimplifiedInferredTeamLinksEntityInverseUnion = GraphStoreNodeResponse;
83414
83691
  export type GraphStoreSimplifiedInferredTeamLinksEntityUnion = ConfluenceSpace | JiraProject;
83415
83692
  export type GraphStoreSimplifiedIssueAssociatedBranchConnection = HasPageInfo & HasTotal & {
83416
83693
  __typename?: 'GraphStoreSimplifiedIssueAssociatedBranchConnection';
@@ -87576,6 +87853,34 @@ export type GraphStoreSimplifiedThirdPartyToGraphRemoteLinkEdge = {
87576
87853
  node?: Maybe<GraphStoreSimplifiedThirdPartyToGraphRemoteLinkUnion>;
87577
87854
  };
87578
87855
  export type GraphStoreSimplifiedThirdPartyToGraphRemoteLinkUnion = ExternalRemoteLink;
87856
+ export type GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserConnection = HasPageInfo & {
87857
+ __typename?: 'GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserConnection';
87858
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserEdge>>>;
87859
+ pageInfo: PageInfo;
87860
+ };
87861
+ export type GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserEdge = {
87862
+ __typename?: 'GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserEdge';
87863
+ createdAt: Scalars['DateTime']['output'];
87864
+ cursor?: Maybe<Scalars['String']['output']>;
87865
+ id: Scalars['ID']['output'];
87866
+ lastUpdated: Scalars['DateTime']['output'];
87867
+ node?: Maybe<GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserUnion>;
87868
+ };
87869
+ export type GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseConnection = HasPageInfo & {
87870
+ __typename?: 'GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseConnection';
87871
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseEdge>>>;
87872
+ pageInfo: PageInfo;
87873
+ };
87874
+ export type GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseEdge = {
87875
+ __typename?: 'GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseEdge';
87876
+ createdAt: Scalars['DateTime']['output'];
87877
+ cursor?: Maybe<Scalars['String']['output']>;
87878
+ id: Scalars['ID']['output'];
87879
+ lastUpdated: Scalars['DateTime']['output'];
87880
+ node?: Maybe<GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseUnion>;
87881
+ };
87882
+ export type GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseUnion = ThirdPartyUser;
87883
+ export type GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserUnion = ThirdPartyUser;
87579
87884
  export type GraphStoreSimplifiedTopicHasRelatedEntityConnection = HasPageInfo & {
87580
87885
  __typename?: 'GraphStoreSimplifiedTopicHasRelatedEntityConnection';
87581
87886
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTopicHasRelatedEntityEdge>>>;
@@ -89418,6 +89723,19 @@ export type GraphStoreSimplifiedUserHasTopProjectInverseEdge = {
89418
89723
  };
89419
89724
  export type GraphStoreSimplifiedUserHasTopProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
89420
89725
  export type GraphStoreSimplifiedUserHasTopProjectUnion = JiraProject;
89726
+ export type GraphStoreSimplifiedUserIsInInferredProjectConnection = HasPageInfo & {
89727
+ __typename?: 'GraphStoreSimplifiedUserIsInInferredProjectConnection';
89728
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserIsInInferredProjectEdge>>>;
89729
+ pageInfo: PageInfo;
89730
+ };
89731
+ export type GraphStoreSimplifiedUserIsInInferredProjectEdge = {
89732
+ __typename?: 'GraphStoreSimplifiedUserIsInInferredProjectEdge';
89733
+ createdAt: Scalars['DateTime']['output'];
89734
+ cursor?: Maybe<Scalars['String']['output']>;
89735
+ id: Scalars['ID']['output'];
89736
+ lastUpdated: Scalars['DateTime']['output'];
89737
+ node?: Maybe<GraphStoreSimplifiedUserIsInInferredProjectUnion>;
89738
+ };
89421
89739
  export type GraphStoreSimplifiedUserIsInInferredProjectInverseConnection = HasPageInfo & {
89422
89740
  __typename?: 'GraphStoreSimplifiedUserIsInInferredProjectInverseConnection';
89423
89741
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserIsInInferredProjectInverseEdge>>>;
@@ -89432,6 +89750,7 @@ export type GraphStoreSimplifiedUserIsInInferredProjectInverseEdge = {
89432
89750
  node?: Maybe<GraphStoreSimplifiedUserIsInInferredProjectInverseUnion>;
89433
89751
  };
89434
89752
  export type GraphStoreSimplifiedUserIsInInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
89753
+ export type GraphStoreSimplifiedUserIsInInferredProjectUnion = GraphStoreNodeResponse;
89435
89754
  export type GraphStoreSimplifiedUserIsInTeamConnection = HasPageInfo & {
89436
89755
  __typename?: 'GraphStoreSimplifiedUserIsInTeamConnection';
89437
89756
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserIsInTeamEdge>>>;
@@ -92315,6 +92634,9 @@ export type GraphStoreTestPerfhammerRelationshipSortInput = {
92315
92634
  export type GraphStoreThirdPartyToGraphRemoteLinkSortInput = {
92316
92635
  lastModified?: InputMaybe<GraphStoreSortInput>;
92317
92636
  };
92637
+ export type GraphStoreThirdPartyUserLinkedViaEmailThirdPartyUserSortInput = {
92638
+ lastModified?: InputMaybe<GraphStoreSortInput>;
92639
+ };
92318
92640
  export type GraphStoreTopicHasRelatedEntitySortInput = {
92319
92641
  lastModified?: InputMaybe<GraphStoreSortInput>;
92320
92642
  };
@@ -92944,6 +93266,7 @@ export type GraphStoreV2 = {
92944
93266
  atlassianUserAuthoritativelyLinkedExternalUserInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserAuthoritativelyLinkedExternalUserInverseConnection>;
92945
93267
  atlassianUserCanViewConfluenceSpace?: Maybe<GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceConnection>;
92946
93268
  atlassianUserCanViewConfluenceSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceInverseConnection>;
93269
+ atlassianUserCollaboratesOnInferredProject?: Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectConnection>;
92947
93270
  atlassianUserCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseConnection>;
92948
93271
  atlassianUserContributedToConfluenceBlogpost?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostConnection>;
92949
93272
  atlassianUserContributedToConfluenceBlogpostInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostInverseConnection>;
@@ -93083,6 +93406,7 @@ export type GraphStoreV2 = {
93083
93406
  atlassianUserOwnsFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusFocusAreaInverseConnection>;
93084
93407
  atlassianUserOwnsFocusStrategicPlan?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanConnection>;
93085
93408
  atlassianUserOwnsFocusStrategicPlanInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseConnection>;
93409
+ atlassianUserOwnsInferredProject?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectConnection>;
93086
93410
  atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
93087
93411
  atlassianUserReactedToJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection>;
93088
93412
  atlassianUserReactedToJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentInverseConnection>;
@@ -93578,8 +93902,11 @@ export type GraphStoreV2 = {
93578
93902
  inferredDecisionSourceLineageEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseConnection>;
93579
93903
  inferredEntities?: Maybe<Array<GraphStoreInferredEntityResponse>>;
93580
93904
  inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
93905
+ inferredProjectLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityInverseConnection>;
93906
+ inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
93581
93907
  inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
93582
93908
  inferredTeamLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityConnection>;
93909
+ inferredTeamLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityInverseConnection>;
93583
93910
  jiraEpicTracksAtlassianProject?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection>;
93584
93911
  jiraEpicTracksAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectInverseConnection>;
93585
93912
  jiraProjectAgentKnowledgeContextHasKnowledgeBaseEntity?: Maybe<GraphStoreV2SimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityConnection>;
@@ -93766,6 +94093,8 @@ export type GraphStoreV2 = {
93766
94093
  talentWorkerLinksExternalWorker?: Maybe<GraphStoreV2SimplifiedTalentWorkerLinksExternalWorkerConnection>;
93767
94094
  talentWorkerLinksExternalWorkerInverse?: Maybe<GraphStoreV2SimplifiedTalentWorkerLinksExternalWorkerInverseConnection>;
93768
94095
  thirdPartyRemoteLinkLinksExternalRemoteLink?: Maybe<GraphStoreV2SimplifiedThirdPartyRemoteLinkLinksExternalRemoteLinkConnection>;
94096
+ thirdPartyUserLinkedViaEmailThirdPartyUser?: Maybe<GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserConnection>;
94097
+ thirdPartyUserLinkedViaEmailThirdPartyUserInverse?: Maybe<GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseConnection>;
93769
94098
  topicHasRelatedEntity?: Maybe<GraphStoreV2SimplifiedTopicHasRelatedEntityConnection>;
93770
94099
  topicHasRelatedEntityInverse?: Maybe<GraphStoreV2SimplifiedTopicHasRelatedEntityInverseConnection>;
93771
94100
  };
@@ -94268,6 +94597,13 @@ export type GraphStoreV2AtlassianUserCanViewConfluenceSpaceInverseArgs = {
94268
94597
  id: Scalars['ID']['input'];
94269
94598
  sort?: InputMaybe<GraphStoreV2AtlassianUserCanViewConfluenceSpaceSortInput>;
94270
94599
  };
94600
+ export type GraphStoreV2AtlassianUserCollaboratesOnInferredProjectArgs = {
94601
+ after?: InputMaybe<Scalars['String']['input']>;
94602
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
94603
+ first?: InputMaybe<Scalars['Int']['input']>;
94604
+ id: Scalars['ID']['input'];
94605
+ sort?: InputMaybe<GraphStoreV2AtlassianUserCollaboratesOnInferredProjectSortInput>;
94606
+ };
94271
94607
  export type GraphStoreV2AtlassianUserCollaboratesOnInferredProjectInverseArgs = {
94272
94608
  after?: InputMaybe<Scalars['String']['input']>;
94273
94609
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -95247,6 +95583,13 @@ export type GraphStoreV2AtlassianUserOwnsFocusStrategicPlanInverseArgs = {
95247
95583
  id: Scalars['ID']['input'];
95248
95584
  sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsFocusStrategicPlanSortInput>;
95249
95585
  };
95586
+ export type GraphStoreV2AtlassianUserOwnsInferredProjectArgs = {
95587
+ after?: InputMaybe<Scalars['String']['input']>;
95588
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
95589
+ first?: InputMaybe<Scalars['Int']['input']>;
95590
+ id: Scalars['ID']['input'];
95591
+ sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsInferredProjectSortInput>;
95592
+ };
95250
95593
  export type GraphStoreV2AtlassianUserOwnsInferredProjectInverseArgs = {
95251
95594
  after?: InputMaybe<Scalars['String']['input']>;
95252
95595
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -98715,6 +99058,20 @@ export type GraphStoreV2InferredProjectLinksEntityArgs = {
98715
99058
  id: Scalars['ID']['input'];
98716
99059
  sort?: InputMaybe<GraphStoreV2InferredProjectLinksEntitySortInput>;
98717
99060
  };
99061
+ export type GraphStoreV2InferredProjectLinksEntityInverseArgs = {
99062
+ after?: InputMaybe<Scalars['String']['input']>;
99063
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
99064
+ first?: InputMaybe<Scalars['Int']['input']>;
99065
+ id: Scalars['ID']['input'];
99066
+ sort?: InputMaybe<GraphStoreV2InferredProjectLinksEntitySortInput>;
99067
+ };
99068
+ export type GraphStoreV2InferredTeamCollaboratesOnInferredProjectArgs = {
99069
+ after?: InputMaybe<Scalars['String']['input']>;
99070
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
99071
+ first?: InputMaybe<Scalars['Int']['input']>;
99072
+ id: Scalars['ID']['input'];
99073
+ sort?: InputMaybe<GraphStoreV2InferredTeamCollaboratesOnInferredProjectSortInput>;
99074
+ };
98718
99075
  export type GraphStoreV2InferredTeamCollaboratesOnInferredProjectInverseArgs = {
98719
99076
  after?: InputMaybe<Scalars['String']['input']>;
98720
99077
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -98729,6 +99086,13 @@ export type GraphStoreV2InferredTeamLinksEntityArgs = {
98729
99086
  id: Scalars['ID']['input'];
98730
99087
  sort?: InputMaybe<GraphStoreV2InferredTeamLinksEntitySortInput>;
98731
99088
  };
99089
+ export type GraphStoreV2InferredTeamLinksEntityInverseArgs = {
99090
+ after?: InputMaybe<Scalars['String']['input']>;
99091
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
99092
+ first?: InputMaybe<Scalars['Int']['input']>;
99093
+ id: Scalars['ID']['input'];
99094
+ sort?: InputMaybe<GraphStoreV2InferredTeamLinksEntitySortInput>;
99095
+ };
98732
99096
  export type GraphStoreV2JiraEpicTracksAtlassianProjectArgs = {
98733
99097
  after?: InputMaybe<Scalars['String']['input']>;
98734
99098
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -100067,6 +100431,20 @@ export type GraphStoreV2ThirdPartyRemoteLinkLinksExternalRemoteLinkArgs = {
100067
100431
  id: Scalars['ID']['input'];
100068
100432
  sort?: InputMaybe<GraphStoreV2ThirdPartyRemoteLinkLinksExternalRemoteLinkSortInput>;
100069
100433
  };
100434
+ export type GraphStoreV2ThirdPartyUserLinkedViaEmailThirdPartyUserArgs = {
100435
+ after?: InputMaybe<Scalars['String']['input']>;
100436
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
100437
+ first?: InputMaybe<Scalars['Int']['input']>;
100438
+ id: Scalars['ID']['input'];
100439
+ sort?: InputMaybe<GraphStoreV2ThirdPartyUserLinkedViaEmailThirdPartyUserSortInput>;
100440
+ };
100441
+ export type GraphStoreV2ThirdPartyUserLinkedViaEmailThirdPartyUserInverseArgs = {
100442
+ after?: InputMaybe<Scalars['String']['input']>;
100443
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
100444
+ first?: InputMaybe<Scalars['Int']['input']>;
100445
+ id: Scalars['ID']['input'];
100446
+ sort?: InputMaybe<GraphStoreV2ThirdPartyUserLinkedViaEmailThirdPartyUserSortInput>;
100447
+ };
100070
100448
  export type GraphStoreV2TopicHasRelatedEntityArgs = {
100071
100449
  after?: InputMaybe<Scalars['String']['input']>;
100072
100450
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -105146,6 +105524,19 @@ export type GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceInverseEdge
105146
105524
  };
105147
105525
  export type GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
105148
105526
  export type GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceUnion = ConfluenceSpace;
105527
+ export type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectConnection = HasPageInfo & {
105528
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectConnection';
105529
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectEdge>>>;
105530
+ pageInfo: PageInfo;
105531
+ };
105532
+ export type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectEdge = {
105533
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectEdge';
105534
+ createdAt: Scalars['DateTime']['output'];
105535
+ cursor?: Maybe<Scalars['String']['output']>;
105536
+ id: Scalars['ID']['output'];
105537
+ lastUpdated: Scalars['DateTime']['output'];
105538
+ node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectUnion>;
105539
+ };
105149
105540
  export type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseConnection = HasPageInfo & {
105150
105541
  __typename?: 'GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseConnection';
105151
105542
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseEdge>>>;
@@ -105160,6 +105551,7 @@ export type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInve
105160
105551
  node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseUnion>;
105161
105552
  };
105162
105553
  export type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
105554
+ export type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectUnion = GraphStoreNodeResponse;
105163
105555
  export type GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostConnection = HasPageInfo & {
105164
105556
  __typename?: 'GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostConnection';
105165
105557
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostEdge>>>;
@@ -107124,6 +107516,19 @@ export type GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseEdge
107124
107516
  };
107125
107517
  export type GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
107126
107518
  export type GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanUnion = SpfPlan;
107519
+ export type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectConnection = HasPageInfo & {
107520
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectConnection';
107521
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectEdge>>>;
107522
+ pageInfo: PageInfo;
107523
+ };
107524
+ export type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectEdge = {
107525
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectEdge';
107526
+ createdAt: Scalars['DateTime']['output'];
107527
+ cursor?: Maybe<Scalars['String']['output']>;
107528
+ id: Scalars['ID']['output'];
107529
+ lastUpdated: Scalars['DateTime']['output'];
107530
+ node?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectUnion>;
107531
+ };
107127
107532
  export type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseConnection = HasPageInfo & {
107128
107533
  __typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseConnection';
107129
107534
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseEdge>>>;
@@ -107138,6 +107543,7 @@ export type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseEdge =
107138
107543
  node?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseUnion>;
107139
107544
  };
107140
107545
  export type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
107546
+ export type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectUnion = GraphStoreNodeResponse;
107141
107547
  export type GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection = HasPageInfo & {
107142
107548
  __typename?: 'GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection';
107143
107549
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentEdge>>>;
@@ -113991,7 +114397,7 @@ export type GraphStoreV2SimplifiedInferredDecisionImpactsEntityInverseEdge = {
113991
114397
  node?: Maybe<GraphStoreV2SimplifiedInferredDecisionImpactsEntityInverseUnion>;
113992
114398
  };
113993
114399
  export type GraphStoreV2SimplifiedInferredDecisionImpactsEntityInverseUnion = GraphStoreNodeResponse;
113994
- export type GraphStoreV2SimplifiedInferredDecisionImpactsEntityUnion = TownsquareProject;
114400
+ export type GraphStoreV2SimplifiedInferredDecisionImpactsEntityUnion = GraphStoreNodeResponse | TownsquareProject;
113995
114401
  export type GraphStoreV2SimplifiedInferredDecisionLinksEntityConnection = HasPageInfo & {
113996
114402
  __typename?: 'GraphStoreV2SimplifiedInferredDecisionLinksEntityConnection';
113997
114403
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredDecisionLinksEntityEdge>>>;
@@ -114061,7 +114467,34 @@ export type GraphStoreV2SimplifiedInferredProjectLinksEntityEdge = {
114061
114467
  lastUpdated: Scalars['DateTime']['output'];
114062
114468
  node?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityUnion>;
114063
114469
  };
114470
+ export type GraphStoreV2SimplifiedInferredProjectLinksEntityInverseConnection = HasPageInfo & {
114471
+ __typename?: 'GraphStoreV2SimplifiedInferredProjectLinksEntityInverseConnection';
114472
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityInverseEdge>>>;
114473
+ pageInfo: PageInfo;
114474
+ };
114475
+ export type GraphStoreV2SimplifiedInferredProjectLinksEntityInverseEdge = {
114476
+ __typename?: 'GraphStoreV2SimplifiedInferredProjectLinksEntityInverseEdge';
114477
+ createdAt: Scalars['DateTime']['output'];
114478
+ cursor?: Maybe<Scalars['String']['output']>;
114479
+ id: Scalars['ID']['output'];
114480
+ lastUpdated: Scalars['DateTime']['output'];
114481
+ node?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityInverseUnion>;
114482
+ };
114483
+ export type GraphStoreV2SimplifiedInferredProjectLinksEntityInverseUnion = GraphStoreNodeResponse;
114064
114484
  export type GraphStoreV2SimplifiedInferredProjectLinksEntityUnion = ConfluencePage | JiraIssue | JiraProject;
114485
+ export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection = HasPageInfo & {
114486
+ __typename?: 'GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection';
114487
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectEdge>>>;
114488
+ pageInfo: PageInfo;
114489
+ };
114490
+ export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectEdge = {
114491
+ __typename?: 'GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectEdge';
114492
+ createdAt: Scalars['DateTime']['output'];
114493
+ cursor?: Maybe<Scalars['String']['output']>;
114494
+ id: Scalars['ID']['output'];
114495
+ lastUpdated: Scalars['DateTime']['output'];
114496
+ node?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectUnion>;
114497
+ };
114065
114498
  export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection = HasPageInfo & {
114066
114499
  __typename?: 'GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection';
114067
114500
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge>>>;
@@ -114075,7 +114508,8 @@ export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInver
114075
114508
  lastUpdated: Scalars['DateTime']['output'];
114076
114509
  node?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion>;
114077
114510
  };
114078
- export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion = JiraProject;
114511
+ export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion = GraphStoreNodeResponse | JiraProject;
114512
+ export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectUnion = GraphStoreNodeResponse;
114079
114513
  export type GraphStoreV2SimplifiedInferredTeamLinksEntityConnection = HasPageInfo & {
114080
114514
  __typename?: 'GraphStoreV2SimplifiedInferredTeamLinksEntityConnection';
114081
114515
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityEdge>>>;
@@ -114089,6 +114523,20 @@ export type GraphStoreV2SimplifiedInferredTeamLinksEntityEdge = {
114089
114523
  lastUpdated: Scalars['DateTime']['output'];
114090
114524
  node?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityUnion>;
114091
114525
  };
114526
+ export type GraphStoreV2SimplifiedInferredTeamLinksEntityInverseConnection = HasPageInfo & {
114527
+ __typename?: 'GraphStoreV2SimplifiedInferredTeamLinksEntityInverseConnection';
114528
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityInverseEdge>>>;
114529
+ pageInfo: PageInfo;
114530
+ };
114531
+ export type GraphStoreV2SimplifiedInferredTeamLinksEntityInverseEdge = {
114532
+ __typename?: 'GraphStoreV2SimplifiedInferredTeamLinksEntityInverseEdge';
114533
+ createdAt: Scalars['DateTime']['output'];
114534
+ cursor?: Maybe<Scalars['String']['output']>;
114535
+ id: Scalars['ID']['output'];
114536
+ lastUpdated: Scalars['DateTime']['output'];
114537
+ node?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityInverseUnion>;
114538
+ };
114539
+ export type GraphStoreV2SimplifiedInferredTeamLinksEntityInverseUnion = GraphStoreNodeResponse;
114092
114540
  export type GraphStoreV2SimplifiedInferredTeamLinksEntityUnion = ConfluenceSpace | JiraProject;
114093
114541
  export type GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection = HasPageInfo & {
114094
114542
  __typename?: 'GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection';
@@ -116916,6 +117364,34 @@ export type GraphStoreV2SimplifiedThirdPartyRemoteLinkLinksExternalRemoteLinkEdg
116916
117364
  node?: Maybe<GraphStoreV2SimplifiedThirdPartyRemoteLinkLinksExternalRemoteLinkUnion>;
116917
117365
  };
116918
117366
  export type GraphStoreV2SimplifiedThirdPartyRemoteLinkLinksExternalRemoteLinkUnion = ExternalRemoteLink;
117367
+ export type GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserConnection = HasPageInfo & {
117368
+ __typename?: 'GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserConnection';
117369
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserEdge>>>;
117370
+ pageInfo: PageInfo;
117371
+ };
117372
+ export type GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserEdge = {
117373
+ __typename?: 'GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserEdge';
117374
+ createdAt: Scalars['DateTime']['output'];
117375
+ cursor?: Maybe<Scalars['String']['output']>;
117376
+ id: Scalars['ID']['output'];
117377
+ lastUpdated: Scalars['DateTime']['output'];
117378
+ node?: Maybe<GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserUnion>;
117379
+ };
117380
+ export type GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseConnection = HasPageInfo & {
117381
+ __typename?: 'GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseConnection';
117382
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseEdge>>>;
117383
+ pageInfo: PageInfo;
117384
+ };
117385
+ export type GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseEdge = {
117386
+ __typename?: 'GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseEdge';
117387
+ createdAt: Scalars['DateTime']['output'];
117388
+ cursor?: Maybe<Scalars['String']['output']>;
117389
+ id: Scalars['ID']['output'];
117390
+ lastUpdated: Scalars['DateTime']['output'];
117391
+ node?: Maybe<GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseUnion>;
117392
+ };
117393
+ export type GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseUnion = ThirdPartyUser;
117394
+ export type GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserUnion = ThirdPartyUser;
116919
117395
  export type GraphStoreV2SimplifiedTopicHasRelatedEntityConnection = HasPageInfo & {
116920
117396
  __typename?: 'GraphStoreV2SimplifiedTopicHasRelatedEntityConnection';
116921
117397
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedTopicHasRelatedEntityEdge>>>;
@@ -116953,6 +117429,9 @@ export type GraphStoreV2TalentWorkerLinksExternalWorkerSortInput = {
116953
117429
  export type GraphStoreV2ThirdPartyRemoteLinkLinksExternalRemoteLinkSortInput = {
116954
117430
  lastModified?: InputMaybe<GraphStoreSortInput>;
116955
117431
  };
117432
+ export type GraphStoreV2ThirdPartyUserLinkedViaEmailThirdPartyUserSortInput = {
117433
+ lastModified?: InputMaybe<GraphStoreSortInput>;
117434
+ };
116956
117435
  export type GraphStoreV2TopicHasRelatedEntitySortInput = {
116957
117436
  lastModified?: InputMaybe<GraphStoreSortInput>;
116958
117437
  };
@@ -117094,6 +117573,15 @@ export type GravityAddCommentInput = {
117094
117573
  draftId: Scalars['String']['input'];
117095
117574
  parentCommentId?: InputMaybe<Scalars['String']['input']>;
117096
117575
  };
117576
+ export type GravityAddInlineCommentInput = {
117577
+ annotationId?: InputMaybe<Scalars['String']['input']>;
117578
+ commentContent: Scalars['String']['input'];
117579
+ content: Scalars['String']['input'];
117580
+ draftId: Scalars['String']['input'];
117581
+ expectedRevision: Scalars['Int']['input'];
117582
+ origin?: InputMaybe<GravityDraftOrigin>;
117583
+ parentCommentId?: InputMaybe<Scalars['String']['input']>;
117584
+ };
117097
117585
  export type GravityAddReactionInput = {
117098
117586
  emojiId: Scalars['ID']['input'];
117099
117587
  entity: GravityReactionEntityType;
@@ -117246,6 +117734,7 @@ export type GravityDraftComment = {
117246
117734
  draftId: Scalars['String']['output'];
117247
117735
  id: Scalars['String']['output'];
117248
117736
  parentCommentId?: Maybe<Scalars['String']['output']>;
117737
+ resolved: Scalars['Boolean']['output'];
117249
117738
  };
117250
117739
  export declare enum GravityDraftOrigin {
117251
117740
  Ai = "AI",
@@ -117449,6 +117938,14 @@ export declare enum GravityRefResolutionStrategy {
117449
117938
  FailIfUnmapped = "FAIL_IF_UNMAPPED",
117450
117939
  MatchThenCreateIfUnmapped = "MATCH_THEN_CREATE_IF_UNMAPPED"
117451
117940
  }
117941
+ export type GravityReviseDraftInput = {
117942
+ content: Scalars['String']['input'];
117943
+ draftId: Scalars['String']['input'];
117944
+ expectedRevision: Scalars['Int']['input'];
117945
+ origin?: InputMaybe<GravityDraftOrigin>;
117946
+ resolveCommentIds?: InputMaybe<Array<Scalars['String']['input']>>;
117947
+ upsertActions?: InputMaybe<Array<GravityUpsertActionInput>>;
117948
+ };
117452
117949
  export type GravitySetActionStatusInput = {
117453
117950
  actionId: Scalars['String']['input'];
117454
117951
  status: GravityActionStatus;
@@ -119083,9 +119580,9 @@ export type HelpCenterCreateTopicPayload = Payload & {
119083
119580
  successfullyCreatedTopicIds: Array<Maybe<HelpCenterSuccessfullyCreatedTopicIds>>;
119084
119581
  };
119085
119582
  export type HelpCenterDeleteHubTranslationsInput = {
119086
- helpCenterAri: Scalars['String']['input'];
119583
+ helpCenterAri: Scalars['ID']['input'];
119087
119584
  locale: Scalars['String']['input'];
119088
- parentAri: Scalars['String']['input'];
119585
+ parentAri: Scalars['ID']['input'];
119089
119586
  };
119090
119587
  export type HelpCenterDeleteInput = {
119091
119588
  helpCenterAri: Scalars['String']['input'];
@@ -119106,6 +119603,14 @@ export declare enum HelpCenterDescriptionType {
119106
119603
  RichText = "RICH_TEXT",
119107
119604
  WikiMarkup = "WIKI_MARKUP"
119108
119605
  }
119606
+ export type HelpCenterDraftPublishInput = {
119607
+ helpCenterAri: Scalars['ID']['input'];
119608
+ };
119609
+ export type HelpCenterDraftPublishPayload = Payload & {
119610
+ __typename?: 'HelpCenterDraftPublishPayload';
119611
+ errors: Array<MutationError>;
119612
+ success: Scalars['Boolean']['output'];
119613
+ };
119109
119614
  export type HelpCenterFilter = {
119110
119615
  autoLinkingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
119111
119616
  status?: InputMaybe<HelpCenterStatusFilter>;
@@ -119193,9 +119698,9 @@ export type HelpCenterHubTranslationFieldInput = {
119193
119698
  };
119194
119699
  export type HelpCenterHubTranslationsInput = {
119195
119700
  blocks: Array<HelpCenterHubTranslationBlockInput>;
119196
- helpCenterAri: Scalars['String']['input'];
119701
+ helpCenterAri: Scalars['ID']['input'];
119197
119702
  locale: Scalars['String']['input'];
119198
- parentAri: Scalars['String']['input'];
119703
+ parentAri: Scalars['ID']['input'];
119199
119704
  };
119200
119705
  export type HelpCenterLayoutAdf = {
119201
119706
  __typename?: 'HelpCenterLayoutAdf';
@@ -119277,6 +119782,7 @@ export type HelpCenterMutationApi = {
119277
119782
  deleteTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
119278
119783
  goLiveHelpCenter?: Maybe<HelpCenterHubGoLiveHelpCenterPayload>;
119279
119784
  migrateHelpCenter?: Maybe<HelpCenterHubMigrateHelpCenterPayload>;
119785
+ publishDraftHelpCenterChanges?: Maybe<HelpCenterDraftPublishPayload>;
119280
119786
  setLayoutTranslations: HelpCenterHubLayoutTranslationsPayload;
119281
119787
  updateHelpCenter?: Maybe<HelpCenterUpdatePayload>;
119282
119788
  updateHelpCenterPage?: Maybe<HelpCenterPageUpdatePayload>;
@@ -119315,6 +119821,9 @@ export type HelpCenterMutationApiGoLiveHelpCenterArgs = {
119315
119821
  export type HelpCenterMutationApiMigrateHelpCenterArgs = {
119316
119822
  input: HelpCenterHubMigrateHelpCenterInput;
119317
119823
  };
119824
+ export type HelpCenterMutationApiPublishDraftHelpCenterChangesArgs = {
119825
+ input: HelpCenterDraftPublishInput;
119826
+ };
119318
119827
  export type HelpCenterMutationApiSetLayoutTranslationsArgs = {
119319
119828
  input: HelpCenterHubTranslationsInput;
119320
119829
  };
@@ -119475,6 +119984,7 @@ export type HelpCenterPageUpdatePayload = Payload & {
119475
119984
  };
119476
119985
  export type HelpCenterPagesFilter = {
119477
119986
  ids: Array<Scalars['ID']['input']>;
119987
+ isEditMode?: InputMaybe<Scalars['Boolean']['input']>;
119478
119988
  sendDraftPages?: InputMaybe<Scalars['Boolean']['input']>;
119479
119989
  type?: InputMaybe<HelpCenterPageType>;
119480
119990
  };
@@ -119738,8 +120248,8 @@ export type HelpCenterQueryApiHubProductEntitiesArgs = {
119738
120248
  inputs: Array<HelpCenterProductEntityRequestInput>;
119739
120249
  };
119740
120250
  export type HelpCenterQueryApiLayoutTranslationsArgs = {
119741
- helpCenterAri: Scalars['String']['input'];
119742
- parentAri: Scalars['String']['input'];
120251
+ helpCenterAri: Scalars['ID']['input'];
120252
+ parentAri: Scalars['ID']['input'];
119743
120253
  };
119744
120254
  export type HelpCenterQueryApiMediaConfigArgs = {
119745
120255
  helpCenterAri: Scalars['ID']['input'];
@@ -122714,6 +123224,7 @@ export type JiraAgentAssignableInput = {
122714
123224
  };
122715
123225
  export declare enum JiraAgentAutonomyLevel {
122716
123226
  AutoApply = "AUTO_APPLY",
123227
+ NotConfigured = "NOT_CONFIGURED",
122717
123228
  RequiresApproval = "REQUIRES_APPROVAL"
122718
123229
  }
122719
123230
  export type JiraAgentAutonomyPolicy = {
@@ -122872,12 +123383,14 @@ export type JiraAgentInSpaceEdge = {
122872
123383
  };
122873
123384
  export type JiraAgentInSpaceJiraAutomationTrigger = JiraAgentInSpaceTrigger & {
122874
123385
  __typename?: 'JiraAgentInSpaceJiraAutomationTrigger';
123386
+ editUrl?: Maybe<Scalars['String']['output']>;
122875
123387
  flow?: Maybe<Scalars['String']['output']>;
122876
123388
  id: Scalars['ID']['output'];
122877
123389
  kind: JiraAgentInSpaceTriggerKind;
122878
123390
  name: Scalars['String']['output'];
122879
123391
  owner?: Maybe<User>;
122880
123392
  prompt?: Maybe<Scalars['String']['output']>;
123393
+ ruleId?: Maybe<Scalars['String']['output']>;
122881
123394
  };
122882
123395
  export declare enum JiraAgentInSpaceSource {
122883
123396
  Assignable = "ASSIGNABLE",
@@ -125198,6 +125711,7 @@ export type JiraBoardView = JiraView & Node & {
125198
125711
  layout?: Maybe<JiraBoardViewLayout>;
125199
125712
  project?: Maybe<JiraProject>;
125200
125713
  selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
125714
+ showCustomFiltersAsButtons?: Maybe<Scalars['Boolean']['output']>;
125201
125715
  sprints?: Maybe<JiraSprintConnection>;
125202
125716
  unmappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
125203
125717
  };
@@ -125221,6 +125735,7 @@ export type JiraBoardViewCardOptionsArgs = {
125221
125735
  export type JiraBoardViewColumnsArgs = {
125222
125736
  after?: InputMaybe<Scalars['String']['input']>;
125223
125737
  first?: InputMaybe<Scalars['Int']['input']>;
125738
+ includeConfig?: InputMaybe<Scalars['Boolean']['input']>;
125224
125739
  settings?: InputMaybe<JiraBoardViewSettings>;
125225
125740
  };
125226
125741
  export type JiraBoardViewCustomFiltersArgs = {
@@ -125481,6 +125996,22 @@ export type JiraBoardViewIssuePositions = {
125481
125996
  swimlaneIdsToRemove?: Maybe<Array<Scalars['ID']['output']>>;
125482
125997
  swimlanesToInsert?: Maybe<Array<JiraBoardViewSwimlanePosition>>;
125483
125998
  };
125999
+ export type JiraBoardViewIssueTimeInColumnField = JiraIssueField & JiraListRowField & Node & {
126000
+ __typename?: 'JiraBoardViewIssueTimeInColumnField';
126001
+ aliasFieldId?: Maybe<Scalars['ID']['output']>;
126002
+ description?: Maybe<Scalars['String']['output']>;
126003
+ fieldId: Scalars['String']['output'];
126004
+ fieldOperations?: Maybe<JiraFieldOperation>;
126005
+ hasValue?: Maybe<Scalars['Boolean']['output']>;
126006
+ id: Scalars['ID']['output'];
126007
+ isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
126008
+ isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
126009
+ isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
126010
+ issue?: Maybe<JiraIssue>;
126011
+ name: Scalars['String']['output'];
126012
+ timeInColumn?: Maybe<Scalars['Long']['output']>;
126013
+ type: Scalars['String']['output'];
126014
+ };
125484
126015
  export type JiraBoardViewLayout = JiraBoardViewColumnLayout | JiraBoardViewSwimlaneLayout;
125485
126016
  export type JiraBoardViewMultiFieldValue = {
125486
126017
  __typename?: 'JiraBoardViewMultiFieldValue';
@@ -125558,6 +126089,7 @@ export type JiraBoardViewStatusColumn = JiraBoardViewColumn & Node & {
125558
126089
  canInlineRename?: Maybe<Scalars['Boolean']['output']>;
125559
126090
  collapsed?: Maybe<Scalars['Boolean']['output']>;
125560
126091
  id: Scalars['ID']['output'];
126092
+ isBacklog?: Maybe<Scalars['Boolean']['output']>;
125561
126093
  mappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
125562
126094
  mappedWorkflows?: Maybe<JiraBoardViewWorkflowConnection>;
125563
126095
  maximumIssueCount?: Maybe<Scalars['Int']['output']>;
@@ -140927,6 +141459,7 @@ export type JiraProjectPolicyRuleType = {
140927
141459
  export type JiraProjectPolicyRuleViolation = {
140928
141460
  __typename?: 'JiraProjectPolicyRuleViolation';
140929
141461
  domain?: Maybe<Scalars['String']['output']>;
141462
+ entity?: Maybe<JiraProjectPolicyViolationEntity>;
140930
141463
  entityAri?: Maybe<Scalars['ID']['output']>;
140931
141464
  entityId?: Maybe<Scalars['String']['output']>;
140932
141465
  entityName?: Maybe<Scalars['String']['output']>;
@@ -140954,6 +141487,7 @@ export type JiraProjectPolicyRuleViolationFilter = {
140954
141487
  domains?: InputMaybe<Array<Scalars['String']['input']>>;
140955
141488
  ruleTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
140956
141489
  };
141490
+ export type JiraProjectPolicyViolationEntity = JiraIssueFieldConfig | JiraStatus;
140957
141491
  export type JiraProjectRecommendation = {
140958
141492
  __typename?: 'JiraProjectRecommendation';
140959
141493
  details?: Maybe<JiraProjectRecommendationDetails>;
@@ -143072,7 +143606,8 @@ export declare enum JiraRecommendationCategory {
143072
143606
  PermissionGrantScheme = "PERMISSION_GRANT_SCHEME",
143073
143607
  ProjectCleanup = "PROJECT_CLEANUP",
143074
143608
  ProjectRoleActor = "PROJECT_ROLE_ACTOR",
143075
- WorkflowScheme = "WORKFLOW_SCHEME"
143609
+ WorkflowScheme = "WORKFLOW_SCHEME",
143610
+ WorkflowStatus = "WORKFLOW_STATUS"
143076
143611
  }
143077
143612
  export type JiraRecommendedAction = {
143078
143613
  __typename?: 'JiraRecommendedAction';
@@ -146528,6 +147063,17 @@ export type JiraSetBoardViewGroupByPayload = Payload & {
146528
147063
  success: Scalars['Boolean']['output'];
146529
147064
  view?: Maybe<JiraBoardView>;
146530
147065
  };
147066
+ export type JiraSetBoardViewShowCustomFiltersAsButtonsInput = {
147067
+ settings?: InputMaybe<JiraBoardViewSettings>;
147068
+ showCustomFiltersAsButtons: Scalars['Boolean']['input'];
147069
+ viewId: Scalars['ID']['input'];
147070
+ };
147071
+ export type JiraSetBoardViewShowCustomFiltersAsButtonsPayload = Payload & {
147072
+ __typename?: 'JiraSetBoardViewShowCustomFiltersAsButtonsPayload';
147073
+ boardView?: Maybe<JiraBoardView>;
147074
+ errors?: Maybe<Array<MutationError>>;
147075
+ success: Scalars['Boolean']['output'];
147076
+ };
146531
147077
  export type JiraSetBoardViewStatusColumnIssueCountLimitInput = {
146532
147078
  columnId: Scalars['ID']['input'];
146533
147079
  maximumIssueCount?: InputMaybe<Scalars['Int']['input']>;
@@ -151409,6 +151955,26 @@ export type JiraWorkflowResourceUsageMetricValuesArgs = {
151409
151955
  last?: InputMaybe<Scalars['Int']['input']>;
151410
151956
  toDate?: InputMaybe<Scalars['Date']['input']>;
151411
151957
  };
151958
+ export type JiraWorkflowStatusResourceUsageMetric = JiraResourceUsageMetricV2 & Node & {
151959
+ __typename?: 'JiraWorkflowStatusResourceUsageMetric';
151960
+ cleanupValue?: Maybe<Scalars['Long']['output']>;
151961
+ currentValue?: Maybe<Scalars['Long']['output']>;
151962
+ id: Scalars['ID']['output'];
151963
+ key?: Maybe<Scalars['String']['output']>;
151964
+ thresholdValue?: Maybe<Scalars['Long']['output']>;
151965
+ values?: Maybe<JiraResourceUsageMetricValueConnection>;
151966
+ warningValue?: Maybe<Scalars['Long']['output']>;
151967
+ workflowsOverLimit?: Maybe<Scalars['Int']['output']>;
151968
+ workflowsReachingLimit?: Maybe<Scalars['Int']['output']>;
151969
+ };
151970
+ export type JiraWorkflowStatusResourceUsageMetricValuesArgs = {
151971
+ after?: InputMaybe<Scalars['String']['input']>;
151972
+ before?: InputMaybe<Scalars['String']['input']>;
151973
+ first?: InputMaybe<Scalars['Int']['input']>;
151974
+ fromDate?: InputMaybe<Scalars['Date']['input']>;
151975
+ last?: InputMaybe<Scalars['Int']['input']>;
151976
+ toDate?: InputMaybe<Scalars['Date']['input']>;
151977
+ };
151412
151978
  export type JiraWorklog = Node & {
151413
151979
  __typename?: 'JiraWorklog';
151414
151980
  author?: Maybe<User>;
@@ -151829,7 +152395,6 @@ export declare enum JpdViewRankingSortOrder {
151829
152395
  Asc = "ASC",
151830
152396
  Desc = "DESC"
151831
152397
  }
151832
- export type JpdViewResult = JpdView | QueryError;
151833
152398
  export type JpdViewSetCreatedEvent = {
151834
152399
  __typename?: 'JpdViewSetCreatedEvent';
151835
152400
  projectAri: Scalars['ID']['output'];
@@ -152078,6 +152643,7 @@ export type JpdViewsServiceGlobalView2 = JpdViewsServiceViewBase & Node & {
152078
152643
  hideEmptyColumns: Scalars['Boolean']['output'];
152079
152644
  hideEmptyGroups?: Maybe<Scalars['Boolean']['output']>;
152080
152645
  id: Scalars['ID']['output'];
152646
+ jql?: Maybe<Scalars['String']['output']>;
152081
152647
  layoutType?: Maybe<JpdViewsServiceViewLayoutType>;
152082
152648
  matrixConfig?: Maybe<JpdViewsServiceMatrixConfig>;
152083
152649
  name: Scalars['String']['output'];
@@ -152350,6 +152916,7 @@ export type JpdViewsServiceUpdateGlobalViewInput2 = {
152350
152916
  hideEmptyColumns?: InputMaybe<Scalars['Boolean']['input']>;
152351
152917
  hideEmptyGroups?: InputMaybe<Scalars['Boolean']['input']>;
152352
152918
  id: Scalars['ID']['input'];
152919
+ jql?: InputMaybe<Scalars['String']['input']>;
152353
152920
  layoutType?: InputMaybe<Scalars['String']['input']>;
152354
152921
  matrixConfig?: InputMaybe<JpdViewsServiceMatrixConfigInput>;
152355
152922
  name?: InputMaybe<Scalars['String']['input']>;
@@ -153947,6 +154514,11 @@ export type JsmTelemetryChart = {
153947
154514
  source: JsmTelemetrySource;
153948
154515
  yLabel?: Maybe<Scalars['String']['output']>;
153949
154516
  };
154517
+ export type JsmTelemetryChartDataResult = {
154518
+ __typename?: 'JsmTelemetryChartDataResult';
154519
+ data?: Maybe<JsmTelemetryMetricData>;
154520
+ error?: Maybe<JsmTelemetryDomainError>;
154521
+ };
153950
154522
  export type JsmTelemetryChartMetricFilter = {
153951
154523
  __typename?: 'JsmTelemetryChartMetricFilter';
153952
154524
  attribute: Scalars['String']['output'];
@@ -153962,6 +154534,11 @@ export declare enum JsmTelemetryChartSource {
153962
154534
  Hypothesis = "HYPOTHESIS",
153963
154535
  Manual = "MANUAL"
153964
154536
  }
154537
+ export type JsmTelemetryChartTimeRangeInput = {
154538
+ from: Scalars['DateTime']['input'];
154539
+ resolutionSeconds?: InputMaybe<Scalars['Int']['input']>;
154540
+ to: Scalars['DateTime']['input'];
154541
+ };
153965
154542
  export type JsmTelemetryConnection = {
153966
154543
  __typename?: 'JsmTelemetryConnection';
153967
154544
  createdAt: Scalars['DateTime']['output'];
@@ -154205,11 +154782,6 @@ export type JsmTelemetryIncidentStringField = {
154205
154782
  fieldId?: Maybe<Scalars['String']['output']>;
154206
154783
  value?: Maybe<Scalars['String']['output']>;
154207
154784
  };
154208
- export type JsmTelemetryIncidentTelemetryResult = {
154209
- __typename?: 'JsmTelemetryIncidentTelemetryResult';
154210
- data?: Maybe<Array<JsmTelemetryMetricDataResponse>>;
154211
- error?: Maybe<JsmTelemetryDomainError>;
154212
- };
154213
154785
  export type JsmTelemetryIncidentUser = {
154214
154786
  __typename?: 'JsmTelemetryIncidentUser';
154215
154787
  accountId?: Maybe<Scalars['String']['output']>;
@@ -154277,6 +154849,10 @@ export type JsmTelemetryMetricAttributesResult = {
154277
154849
  data?: Maybe<JsmTelemetryMetricAttributeResultResponse>;
154278
154850
  error?: Maybe<JsmTelemetryDomainError>;
154279
154851
  };
154852
+ export type JsmTelemetryMetricData = {
154853
+ __typename?: 'JsmTelemetryMetricData';
154854
+ points: Array<JsmTelemetryPoint>;
154855
+ };
154280
154856
  export type JsmTelemetryMetricDataPoint = {
154281
154857
  __typename?: 'JsmTelemetryMetricDataPoint';
154282
154858
  timestamp: Scalars['DateTime']['output'];
@@ -154411,6 +154987,11 @@ export declare enum JsmTelemetryMetricType {
154411
154987
  Summary = "SUMMARY",
154412
154988
  Unknown = "UNKNOWN"
154413
154989
  }
154990
+ export type JsmTelemetryPoint = {
154991
+ __typename?: 'JsmTelemetryPoint';
154992
+ t: Scalars['DateTime']['output'];
154993
+ v?: Maybe<Scalars['Float']['output']>;
154994
+ };
154414
154995
  export type JsmTelemetryProvider = {
154415
154996
  __typename?: 'JsmTelemetryProvider';
154416
154997
  description?: Maybe<Scalars['String']['output']>;
@@ -154966,6 +155547,10 @@ export type KitsuneConnection = {
154966
155547
  edges: Array<KitsuneEdge>;
154967
155548
  pageInfo: PageInfo;
154968
155549
  };
155550
+ export type KitsuneCreateFieldOptionInput = {
155551
+ description?: InputMaybe<Scalars['String']['input']>;
155552
+ name: Scalars['String']['input'];
155553
+ };
154969
155554
  export type KitsuneCustomer = {
154970
155555
  __typename?: 'KitsuneCustomer';
154971
155556
  displayName?: Maybe<Scalars['String']['output']>;
@@ -163211,7 +163796,8 @@ export type MercuryAddOrganizationMembershipInput = {
163211
163796
  endDate?: InputMaybe<Scalars['Date']['input']>;
163212
163797
  organizationId: Scalars['ID']['input'];
163213
163798
  startDate: Scalars['Date']['input'];
163214
- userId: Scalars['ID']['input'];
163799
+ teamId?: InputMaybe<Scalars['ID']['input']>;
163800
+ userId?: InputMaybe<Scalars['ID']['input']>;
163215
163801
  };
163216
163802
  export type MercuryAddOrganizationMembershipsInput = {
163217
163803
  cloudId: Scalars['ID']['input'];
@@ -163223,6 +163809,16 @@ export type MercuryAddOrganizationMembershipsPayload = Payload & {
163223
163809
  organizationMemberships?: Maybe<Array<MercuryOrganizationMembership>>;
163224
163810
  success: Scalars['Boolean']['output'];
163225
163811
  };
163812
+ export type MercuryAddSponsorOrganizationInput = {
163813
+ focusAreaIds: Array<Scalars['ID']['input']>;
163814
+ organizationId: Scalars['ID']['input'];
163815
+ };
163816
+ export type MercuryAddSponsorOrganizationPayload = Payload & {
163817
+ __typename?: 'MercuryAddSponsorOrganizationPayload';
163818
+ addedFocusAreaIds: Array<Scalars['ID']['output']>;
163819
+ errors?: Maybe<Array<MutationError>>;
163820
+ success: Scalars['Boolean']['output'];
163821
+ };
163226
163822
  export type MercuryAddSponsoredFocusAreasInput = {
163227
163823
  focusAreaIds: Array<Scalars['ID']['input']>;
163228
163824
  organizationId: Scalars['ID']['input'];
@@ -165423,6 +166019,14 @@ export type MercuryDeleteFocusAreaBudgetPayload = Payload & {
165423
166019
  errors?: Maybe<Array<MutationError>>;
165424
166020
  success: Scalars['Boolean']['output'];
165425
166021
  };
166022
+ export type MercuryDeleteFocusAreaDraftStatusUpdateInput = {
166023
+ focusAreaId: Scalars['ID']['input'];
166024
+ };
166025
+ export type MercuryDeleteFocusAreaDraftStatusUpdatePayload = Payload & {
166026
+ __typename?: 'MercuryDeleteFocusAreaDraftStatusUpdatePayload';
166027
+ errors?: Maybe<Array<MutationError>>;
166028
+ success: Scalars['Boolean']['output'];
166029
+ };
165426
166030
  export type MercuryDeleteFocusAreaGoalLinksInput = {
165427
166031
  atlasGoalAris: Array<Scalars['String']['input']>;
165428
166032
  focusAreaAri: Scalars['String']['input'];
@@ -165953,6 +166557,7 @@ export type MercuryFocusArea = Node & {
165953
166557
  health?: Maybe<MercuryFocusAreaHealth>;
165954
166558
  icon: MercuryFocusAreaIcon;
165955
166559
  id: Scalars['ID']['output'];
166560
+ latestDraftUpdate?: Maybe<MercuryFocusAreaDraftStatusUpdate>;
165956
166561
  linkedGoalSummary?: Maybe<MercuryFocusAreaLinkedGoalSummary>;
165957
166562
  linkedGoals?: Maybe<GraphStoreSimplifiedFocusAreaHasAtlasGoalConnection>;
165958
166563
  linkedRisks?: Maybe<Array<MercuryRisk>>;
@@ -166024,6 +166629,9 @@ export type MercuryFocusAreaFundsCommentsArgs = {
166024
166629
  first?: InputMaybe<Scalars['Int']['input']>;
166025
166630
  sortOrder?: InputMaybe<MercuryCommentSortOrder>;
166026
166631
  };
166632
+ export type MercuryFocusAreaLinkedGoalSummaryArgs = {
166633
+ input?: InputMaybe<MercuryFocusAreaLinkedGoalSummaryFilterInput>;
166634
+ };
166027
166635
  export type MercuryFocusAreaLinkedGoalsArgs = {
166028
166636
  after?: InputMaybe<Scalars['String']['input']>;
166029
166637
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -166169,6 +166777,19 @@ export type MercuryFocusAreaCustomFieldValuesByFocusArea = {
166169
166777
  customFields: Array<MercuryCustomField>;
166170
166778
  focusAreaId: Scalars['ID']['output'];
166171
166779
  };
166780
+ export type MercuryFocusAreaDraftStatusUpdate = {
166781
+ __typename?: 'MercuryFocusAreaDraftStatusUpdate';
166782
+ createdBy?: Maybe<User>;
166783
+ createdDate: Scalars['String']['output'];
166784
+ focusAreaId: Scalars['ID']['output'];
166785
+ health?: Maybe<MercuryFocusAreaHealth>;
166786
+ id: Scalars['ID']['output'];
166787
+ status?: Maybe<MercuryFocusAreaStatus>;
166788
+ summary?: Maybe<Scalars['String']['output']>;
166789
+ targetDate?: Maybe<MercuryTargetDate>;
166790
+ updatedBy?: Maybe<User>;
166791
+ updatedDate: Scalars['String']['output'];
166792
+ };
166172
166793
  export type MercuryFocusAreaEdge = {
166173
166794
  __typename?: 'MercuryFocusAreaEdge';
166174
166795
  cursor: Scalars['String']['output'];
@@ -166298,6 +166919,17 @@ export type MercuryFocusAreaLinkedGoalSummary = {
166298
166919
  count: Scalars['Int']['output'];
166299
166920
  countIncludingSubFocusAreas?: Maybe<Scalars['Int']['output']>;
166300
166921
  };
166922
+ export type MercuryFocusAreaLinkedGoalSummaryFilterInput = {
166923
+ followingOnly?: InputMaybe<Scalars['Boolean']['input']>;
166924
+ includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
166925
+ owners?: InputMaybe<Array<Scalars['ID']['input']>>;
166926
+ statuses?: InputMaybe<Array<MercuryGoalStatus>>;
166927
+ targetDateRange?: InputMaybe<MercuryFocusAreaLinkedGoalTargetDateRangeInput>;
166928
+ };
166929
+ export type MercuryFocusAreaLinkedGoalTargetDateRangeInput = {
166930
+ targetDateMax?: InputMaybe<Scalars['String']['input']>;
166931
+ targetDateMin?: InputMaybe<Scalars['String']['input']>;
166932
+ };
166301
166933
  export type MercuryFocusAreaLinkedWorkContextData = {
166302
166934
  __typename?: 'MercuryFocusAreaLinkedWorkContextData';
166303
166935
  icon?: Maybe<Scalars['String']['output']>;
@@ -167009,6 +167641,16 @@ export type MercuryGoalInsight = MercuryInsight & {
167009
167641
  summary?: Maybe<Scalars['String']['output']>;
167010
167642
  title?: Maybe<Scalars['String']['output']>;
167011
167643
  };
167644
+ export declare enum MercuryGoalStatus {
167645
+ Archived = "ARCHIVED",
167646
+ AtRisk = "AT_RISK",
167647
+ Cancelled = "CANCELLED",
167648
+ Done = "DONE",
167649
+ OffTrack = "OFF_TRACK",
167650
+ OnTrack = "ON_TRACK",
167651
+ Paused = "PAUSED",
167652
+ Pending = "PENDING"
167653
+ }
167012
167654
  export type MercuryGoalStatusCount = {
167013
167655
  __typename?: 'MercuryGoalStatusCount';
167014
167656
  atRisk?: Maybe<Scalars['Int']['output']>;
@@ -167666,6 +168308,7 @@ export type MercuryMultiUserCustomFieldInput = {
167666
168308
  export type MercuryMutationApi = {
167667
168309
  __typename?: 'MercuryMutationApi';
167668
168310
  addFocusAreaCustomFieldDefinitionOptions?: Maybe<MercuryAddCustomFieldDefinitionOptionsPayload>;
168311
+ addSponsorOrganization?: Maybe<MercuryAddSponsorOrganizationPayload>;
167669
168312
  addWatcherToFocusArea?: Maybe<MercuryAddWatcherToFocusAreaPayload>;
167670
168313
  archiveFocusArea?: Maybe<MercuryArchiveFocusAreaPayload>;
167671
168314
  assignUserAccessToFocusArea?: Maybe<MercuryAssignUserAccessToFocusAreaPayload>;
@@ -167680,6 +168323,7 @@ export type MercuryMutationApi = {
167680
168323
  deleteFocusArea?: Maybe<MercuryDeleteFocusAreaPayload>;
167681
168324
  deleteFocusAreaCustomFieldDefinition?: Maybe<MercuryDeleteCustomFieldDefinitionPayload>;
167682
168325
  deleteFocusAreaCustomFieldDefinitionOptions?: Maybe<MercuryDeleteCustomFieldDefinitionOptionsPayload>;
168326
+ deleteFocusAreaDraftStatusUpdate?: Maybe<MercuryDeleteFocusAreaDraftStatusUpdatePayload>;
167683
168327
  deleteFocusAreaGoalLinks?: Maybe<MercuryDeleteFocusAreaGoalLinksPayload>;
167684
168328
  deleteFocusAreaHierarchy?: Maybe<MercuryDeleteFocusAreaHierarchyPayload>;
167685
168329
  deleteFocusAreaLink?: Maybe<MercuryDeleteFocusAreaLinkPayload>;
@@ -167693,11 +168337,13 @@ export type MercuryMutationApi = {
167693
168337
  linkGoalsToFocusArea?: Maybe<MercuryLinkGoalsToFocusAreaPayload>;
167694
168338
  publishFocusArea?: Maybe<MercuryPublishFocusAreaPayload>;
167695
168339
  recreatePortfolioFocusAreas?: Maybe<MercuryUpdatePortfolioPayload>;
168340
+ removeSponsorOrganization?: Maybe<MercuryRemoveSponsorOrganizationPayload>;
167696
168341
  removeUserAccessToFocusArea?: Maybe<MercuryRemoveUserAccessToFocusAreaPayload>;
167697
168342
  removeWatcherFromFocusArea?: Maybe<MercuryRemoveWatcherFromFocusAreaPayload>;
167698
168343
  reorderFocusAreaCustomFieldDefinitionOptions?: Maybe<MercuryReorderCustomFieldDefinitionOptionsPayload>;
167699
168344
  rerankFocusAreaAbsolute?: Maybe<MercuryRerankFocusAreaAbsolutePayload>;
167700
168345
  rerankFocusAreas?: Maybe<MercuryRerankFocusAreasPayload>;
168346
+ saveFocusAreaDraftStatusUpdate?: Maybe<MercurySaveFocusAreaDraftStatusUpdatePayload>;
167701
168347
  setFocusAreaCustomFieldValue?: Maybe<MercurySetFocusAreaCustomFieldPayload>;
167702
168348
  setFocusAreaCustomFieldValues?: Maybe<MercurySetFocusAreaCustomFieldsPayload>;
167703
168349
  setPreference?: Maybe<MercurySetPreferencePayload>;
@@ -167718,12 +168364,16 @@ export type MercuryMutationApi = {
167718
168364
  updateFocusAreaStatusUpdate?: Maybe<MercuryUpdateFocusAreaStatusUpdatePayload>;
167719
168365
  updateFocusAreaTargetDate?: Maybe<MercuryUpdateFocusAreaPayload>;
167720
168366
  updatePortfolioName?: Maybe<MercuryUpdatePortfolioPayload>;
168367
+ updateUserNotificationSettings?: Maybe<MercuryUpdateUserNotificationSettingsPayload>;
167721
168368
  validateFocusAreaArchival?: Maybe<MercuryArchiveFocusAreaValidationPayload>;
167722
168369
  validateFocusAreasForRanking?: Maybe<MercuryValidateFocusAreasForRankingPayload>;
167723
168370
  };
167724
168371
  export type MercuryMutationApiAddFocusAreaCustomFieldDefinitionOptionsArgs = {
167725
168372
  input: MercuryAddCustomFieldDefinitionOptionsInput;
167726
168373
  };
168374
+ export type MercuryMutationApiAddSponsorOrganizationArgs = {
168375
+ input: MercuryAddSponsorOrganizationInput;
168376
+ };
167727
168377
  export type MercuryMutationApiAddWatcherToFocusAreaArgs = {
167728
168378
  input: MercuryAddWatcherToFocusAreaInput;
167729
168379
  };
@@ -167766,6 +168416,9 @@ export type MercuryMutationApiDeleteFocusAreaCustomFieldDefinitionArgs = {
167766
168416
  export type MercuryMutationApiDeleteFocusAreaCustomFieldDefinitionOptionsArgs = {
167767
168417
  input: MercuryDeleteCustomFieldDefinitionOptionsInput;
167768
168418
  };
168419
+ export type MercuryMutationApiDeleteFocusAreaDraftStatusUpdateArgs = {
168420
+ input: MercuryDeleteFocusAreaDraftStatusUpdateInput;
168421
+ };
167769
168422
  export type MercuryMutationApiDeleteFocusAreaGoalLinksArgs = {
167770
168423
  input: MercuryDeleteFocusAreaGoalLinksInput;
167771
168424
  };
@@ -167805,6 +168458,9 @@ export type MercuryMutationApiPublishFocusAreaArgs = {
167805
168458
  export type MercuryMutationApiRecreatePortfolioFocusAreasArgs = {
167806
168459
  input: MercuryRecreatePortfolioFocusAreasInput;
167807
168460
  };
168461
+ export type MercuryMutationApiRemoveSponsorOrganizationArgs = {
168462
+ input: MercuryRemoveSponsorOrganizationInput;
168463
+ };
167808
168464
  export type MercuryMutationApiRemoveUserAccessToFocusAreaArgs = {
167809
168465
  input: MercuryRemoveUserAccessToFocusAreaInput;
167810
168466
  };
@@ -167820,6 +168476,9 @@ export type MercuryMutationApiRerankFocusAreaAbsoluteArgs = {
167820
168476
  export type MercuryMutationApiRerankFocusAreasArgs = {
167821
168477
  input: MercuryRerankFocusAreasInput;
167822
168478
  };
168479
+ export type MercuryMutationApiSaveFocusAreaDraftStatusUpdateArgs = {
168480
+ input: MercurySaveFocusAreaDraftStatusUpdateInput;
168481
+ };
167823
168482
  export type MercuryMutationApiSetFocusAreaCustomFieldValueArgs = {
167824
168483
  input: MercurySetFocusAreaCustomFieldInput;
167825
168484
  };
@@ -167880,6 +168539,9 @@ export type MercuryMutationApiUpdateFocusAreaTargetDateArgs = {
167880
168539
  export type MercuryMutationApiUpdatePortfolioNameArgs = {
167881
168540
  input: MercuryUpdatePortfolioNameInput;
167882
168541
  };
168542
+ export type MercuryMutationApiUpdateUserNotificationSettingsArgs = {
168543
+ input: MercuryUpdateUserNotificationSettingsInput;
168544
+ };
167883
168545
  export type MercuryMutationApiValidateFocusAreaArchivalArgs = {
167884
168546
  input: MercuryArchiveFocusAreaValidationInput;
167885
168547
  };
@@ -167997,6 +168659,12 @@ export type MercuryNotificationPreference = {
167997
168659
  group: MercuryNotificationGroup;
167998
168660
  type: MercuryNotificationType;
167999
168661
  };
168662
+ export type MercuryNotificationPreferenceInput = {
168663
+ channel: MercuryNotificationChannel;
168664
+ enabled: Scalars['Boolean']['input'];
168665
+ group: MercuryNotificationGroup;
168666
+ type: MercuryNotificationType;
168667
+ };
168000
168668
  export declare enum MercuryNotificationType {
168001
168669
  MonthlyDigest = "MONTHLY_DIGEST",
168002
168670
  OwnerUpdated = "OWNER_UPDATED",
@@ -169887,6 +170555,15 @@ export type MercuryRemoveOrganizationMembershipPayload = Payload & {
169887
170555
  id: Scalars['ID']['output'];
169888
170556
  success: Scalars['Boolean']['output'];
169889
170557
  };
170558
+ export type MercuryRemoveSponsorOrganizationInput = {
170559
+ focusAreaIds: Array<Scalars['ID']['input']>;
170560
+ organizationId: Scalars['ID']['input'];
170561
+ };
170562
+ export type MercuryRemoveSponsorOrganizationPayload = Payload & {
170563
+ __typename?: 'MercuryRemoveSponsorOrganizationPayload';
170564
+ errors?: Maybe<Array<MutationError>>;
170565
+ success: Scalars['Boolean']['output'];
170566
+ };
169890
170567
  export type MercuryRemoveSponsoredFocusAreasInput = {
169891
170568
  focusAreaIds: Array<Scalars['ID']['input']>;
169892
170569
  organizationId: Scalars['ID']['input'];
@@ -170421,6 +171098,19 @@ export type MercuryRisksQueryApiSearchRiskActivityHistoryArgs = {
170421
171098
  q?: InputMaybe<Scalars['String']['input']>;
170422
171099
  sort?: InputMaybe<Array<InputMaybe<MercuryRiskActivitySort>>>;
170423
171100
  };
171101
+ export type MercurySaveFocusAreaDraftStatusUpdateInput = {
171102
+ focusAreaId: Scalars['ID']['input'];
171103
+ healthId?: InputMaybe<Scalars['ID']['input']>;
171104
+ statusId?: InputMaybe<Scalars['ID']['input']>;
171105
+ summary?: InputMaybe<Scalars['String']['input']>;
171106
+ targetDate?: InputMaybe<MercuryFocusAreaTargetDateInput>;
171107
+ };
171108
+ export type MercurySaveFocusAreaDraftStatusUpdatePayload = Payload & {
171109
+ __typename?: 'MercurySaveFocusAreaDraftStatusUpdatePayload';
171110
+ draftStatusUpdate?: Maybe<MercuryFocusAreaDraftStatusUpdate>;
171111
+ errors?: Maybe<Array<MutationError>>;
171112
+ success: Scalars['Boolean']['output'];
171113
+ };
170424
171114
  export type MercurySetAskCustomFieldInput = {
170425
171115
  askId: Scalars['ID']['input'];
170426
171116
  coreField?: InputMaybe<MercuryCustomFieldInput>;
@@ -172078,6 +172768,16 @@ export type MercuryUpdateThreadedCommentPayload = Payload & {
172078
172768
  success: Scalars['Boolean']['output'];
172079
172769
  updatedComment?: Maybe<MercuryThreadedComment>;
172080
172770
  };
172771
+ export type MercuryUpdateUserNotificationSettingsInput = {
172772
+ cloudId: Scalars['ID']['input'];
172773
+ preferences: Array<MercuryNotificationPreferenceInput>;
172774
+ };
172775
+ export type MercuryUpdateUserNotificationSettingsPayload = Payload & {
172776
+ __typename?: 'MercuryUpdateUserNotificationSettingsPayload';
172777
+ errors?: Maybe<Array<MutationError>>;
172778
+ success: Scalars['Boolean']['output'];
172779
+ userNotificationSettings?: Maybe<MercuryUserNotificationSettings>;
172780
+ };
172081
172781
  export type MercuryUpdateViewNameInput = {
172082
172782
  id: Scalars['ID']['input'];
172083
172783
  name: Scalars['String']['input'];
@@ -173668,6 +174368,7 @@ export type Mutation = {
173668
174368
  graphStore_deleteVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload>;
173669
174369
  graphStore_deleteVulnerabilityAssociatedIssue?: Maybe<GraphStoreDeleteVulnerabilityAssociatedIssuePayload>;
173670
174370
  gravity_addDraftComment?: Maybe<GravityCommentPayload>;
174371
+ gravity_addInlineComment?: Maybe<GravityDraftPayload>;
173671
174372
  gravity_addReaction?: Maybe<GravityAddReactionPayload>;
173672
174373
  gravity_applyDraft?: Maybe<GravityDraftPayload>;
173673
174374
  gravity_createDraft?: Maybe<GravityDraftPayload>;
@@ -173678,6 +174379,7 @@ export type Mutation = {
173678
174379
  gravity_discardDraft?: Maybe<GravityDraftPayload>;
173679
174380
  gravity_generateViewTemplateFromUserPrompt?: Maybe<GravityGenerateViewTemplateFromUserPromptPayload>;
173680
174381
  gravity_postFeedback?: Maybe<GravityPostFeedbackPayload>;
174382
+ gravity_reviseDraft?: Maybe<GravityDraftPayload>;
173681
174383
  gravity_setActionStatus?: Maybe<GravityActionPayload>;
173682
174384
  gravity_setViewArrangement?: Maybe<GravityViewArrangementPayload>;
173683
174385
  gravity_updateDeliverySettings?: Maybe<GravityUpdateDeliverySettingsPayload>;
@@ -173808,6 +174510,7 @@ export type Mutation = {
173808
174510
  jira_setBoardViewDensity?: Maybe<JiraSetBoardViewDensityPayload>;
173809
174511
  jira_setBoardViewFilter?: Maybe<JiraSetBoardViewFilterPayload>;
173810
174512
  jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
174513
+ jira_setBoardViewShowCustomFiltersAsButtons?: Maybe<JiraSetBoardViewShowCustomFiltersAsButtonsPayload>;
173811
174514
  jira_setBoardViewStatusColumnIssueCountLimit?: Maybe<JiraSetBoardViewStatusColumnIssueCountLimitPayload>;
173812
174515
  jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
173813
174516
  jira_setBoardViewSwimlaneState?: Maybe<JiraSetBoardViewSwimlaneStatePayload>;
@@ -177972,6 +178675,10 @@ export type MutationGravity_AddDraftCommentArgs = {
177972
178675
  cloudId: Scalars['ID']['input'];
177973
178676
  input: GravityAddCommentInput;
177974
178677
  };
178678
+ export type MutationGravity_AddInlineCommentArgs = {
178679
+ cloudId: Scalars['ID']['input'];
178680
+ input: GravityAddInlineCommentInput;
178681
+ };
177975
178682
  export type MutationGravity_AddReactionArgs = {
177976
178683
  cloudId: Scalars['ID']['input'];
177977
178684
  input: GravityAddReactionInput;
@@ -178012,6 +178719,10 @@ export type MutationGravity_PostFeedbackArgs = {
178012
178719
  cloudId: Scalars['ID']['input'];
178013
178720
  input: GravityPostFeedbackInput;
178014
178721
  };
178722
+ export type MutationGravity_ReviseDraftArgs = {
178723
+ cloudId: Scalars['ID']['input'];
178724
+ input: GravityReviseDraftInput;
178725
+ };
178015
178726
  export type MutationGravity_SetActionStatusArgs = {
178016
178727
  cloudId: Scalars['ID']['input'];
178017
178728
  input: GravitySetActionStatusInput;
@@ -178427,6 +179138,9 @@ export type MutationJira_SetBoardViewFilterArgs = {
178427
179138
  export type MutationJira_SetBoardViewGroupByArgs = {
178428
179139
  input: JiraSetBoardViewGroupByInput;
178429
179140
  };
179141
+ export type MutationJira_SetBoardViewShowCustomFiltersAsButtonsArgs = {
179142
+ input: JiraSetBoardViewShowCustomFiltersAsButtonsInput;
179143
+ };
178430
179144
  export type MutationJira_SetBoardViewStatusColumnIssueCountLimitArgs = {
178431
179145
  input: JiraSetBoardViewStatusColumnIssueCountLimitInput;
178432
179146
  };
@@ -178802,6 +179516,7 @@ export type MutationKitsune_CreateFieldArgs = {
178802
179516
  entityTypes: Array<KitsuneEntityType>;
178803
179517
  name: Scalars['String']['input'];
178804
179518
  options?: InputMaybe<Array<Scalars['String']['input']>>;
179519
+ optionsV2?: InputMaybe<Array<KitsuneCreateFieldOptionInput>>;
178805
179520
  valueType: KitsuneFieldValueType;
178806
179521
  workspaceAri: Scalars['ID']['input'];
178807
179522
  };
@@ -183059,33 +183774,76 @@ export type PsmDateRangeInput = {
183059
183774
  };
183060
183775
  export type PsmDevice = {
183061
183776
  __typename?: 'PsmDevice';
183062
- atlassianAccountId: Scalars['ID']['output'];
183777
+ activeSensorFaults?: Maybe<Array<PsmDeviceSensorFault>>;
183063
183778
  cloudId: Scalars['ID']['output'];
183779
+ configuration?: Maybe<PsmDeviceConfiguration>;
183064
183780
  createdAt: Scalars['DateTime']['output'];
183781
+ deviceName?: Maybe<Scalars['String']['output']>;
183782
+ enrolledAt?: Maybe<Scalars['DateTime']['output']>;
183783
+ health?: Maybe<PsmDeviceHealth>;
183065
183784
  lastSeen?: Maybe<Scalars['DateTime']['output']>;
183785
+ owner?: Maybe<PsmDeviceOwner>;
183066
183786
  providerSystemId?: Maybe<Scalars['ID']['output']>;
183067
183787
  serialNumber: Scalars['String']['output'];
183068
183788
  spaceId?: Maybe<Scalars['ID']['output']>;
183069
183789
  status: PsmDeviceStatus;
183070
183790
  updatedAt: Scalars['DateTime']['output'];
183071
183791
  };
183792
+ export type PsmDeviceConfiguration = {
183793
+ __typename?: 'PsmDeviceConfiguration';
183794
+ cpu?: Maybe<Scalars['String']['output']>;
183795
+ model?: Maybe<Scalars['String']['output']>;
183796
+ os?: Maybe<Scalars['String']['output']>;
183797
+ platform?: Maybe<Scalars['String']['output']>;
183798
+ ram?: Maybe<Scalars['String']['output']>;
183799
+ storage?: Maybe<Scalars['String']['output']>;
183800
+ };
183072
183801
  export type PsmDeviceConnection = {
183073
183802
  __typename?: 'PsmDeviceConnection';
183074
183803
  edges?: Maybe<Array<PsmDeviceEdge>>;
183075
183804
  errors?: Maybe<Array<QueryError>>;
183076
183805
  nodes?: Maybe<Array<Maybe<PsmDevice>>>;
183806
+ offlineDeviceCount?: Maybe<Scalars['Int']['output']>;
183077
183807
  pageInfo: PageInfo;
183808
+ totalRegisteredDevices?: Maybe<Scalars['Int']['output']>;
183078
183809
  };
183079
183810
  export type PsmDeviceEdge = {
183080
183811
  __typename?: 'PsmDeviceEdge';
183081
183812
  cursor: Scalars['String']['output'];
183082
183813
  node?: Maybe<PsmDevice>;
183083
183814
  };
183815
+ export type PsmDeviceHealth = {
183816
+ __typename?: 'PsmDeviceHealth';
183817
+ healthScorePercentage?: Maybe<Scalars['Float']['output']>;
183818
+ healthStatus?: Maybe<PsmDeviceHealthStatus>;
183819
+ };
183820
+ export declare enum PsmDeviceHealthStatus {
183821
+ Excellent = "EXCELLENT",
183822
+ Fair = "FAIR",
183823
+ Good = "GOOD",
183824
+ Poor = "POOR",
183825
+ Unknown = "UNKNOWN"
183826
+ }
183084
183827
  export type PsmDeviceIdentity = {
183085
183828
  __typename?: 'PsmDeviceIdentity';
183086
183829
  isDeviceOffline?: Maybe<Scalars['Boolean']['output']>;
183087
183830
  serialNumber: Scalars['String']['output'];
183088
183831
  };
183832
+ export type PsmDeviceOwner = {
183833
+ __typename?: 'PsmDeviceOwner';
183834
+ atlassianAccountId: Scalars['ID']['output'];
183835
+ email?: Maybe<Scalars['String']['output']>;
183836
+ name?: Maybe<Scalars['String']['output']>;
183837
+ };
183838
+ export type PsmDeviceSensorFault = {
183839
+ __typename?: 'PsmDeviceSensorFault';
183840
+ category?: Maybe<Scalars['String']['output']>;
183841
+ faultId: Scalars['ID']['output'];
183842
+ providerSensorId?: Maybe<Scalars['ID']['output']>;
183843
+ sensorId?: Maybe<Scalars['ID']['output']>;
183844
+ sensorName?: Maybe<Scalars['String']['output']>;
183845
+ triggerStates?: Maybe<Array<PsmSensorTriggerState>>;
183846
+ };
183089
183847
  export declare enum PsmDeviceStatus {
183090
183848
  Active = "ACTIVE",
183091
183849
  Offline = "OFFLINE",
@@ -183109,14 +183867,14 @@ export type PsmFleetHealth = {
183109
183867
  warningPct: Scalars['Float']['output'];
183110
183868
  };
183111
183869
  export type PsmLinkSensorKbArticlesInput = {
183112
- kbLinks?: InputMaybe<Array<Scalars['String']['input']>>;
183870
+ kbArticleAris?: InputMaybe<Array<Scalars['String']['input']>>;
183113
183871
  sensorId: Scalars['String']['input'];
183114
183872
  spaceId: Scalars['ID']['input'];
183115
183873
  };
183116
183874
  export type PsmLinkSensorKbArticlesPayload = Payload & {
183117
183875
  __typename?: 'PsmLinkSensorKbArticlesPayload';
183118
183876
  errors?: Maybe<Array<MutationError>>;
183119
- sensor?: Maybe<PsmSensorConfigDetails>;
183877
+ kbArticleAris?: Maybe<Array<Scalars['String']['output']>>;
183120
183878
  success: Scalars['Boolean']['output'];
183121
183879
  };
183122
183880
  export type PsmLinkedTicket = {
@@ -183201,6 +183959,7 @@ export type PsmSensorCategoriesInput = {
183201
183959
  export type PsmSensorCategoriesResult = {
183202
183960
  __typename?: 'PsmSensorCategoriesResult';
183203
183961
  categories: Array<Scalars['String']['output']>;
183962
+ errors?: Maybe<Array<QueryError>>;
183204
183963
  };
183205
183964
  export type PsmSensorConfig = {
183206
183965
  __typename?: 'PsmSensorConfig';
@@ -183218,7 +183977,7 @@ export type PsmSensorConfigDetails = {
183218
183977
  description?: Maybe<Scalars['String']['output']>;
183219
183978
  enabled?: Maybe<Scalars['Boolean']['output']>;
183220
183979
  id: Scalars['ID']['output'];
183221
- kbLinks?: Maybe<Array<Scalars['String']['output']>>;
183980
+ kbArticleAris?: Maybe<Array<Scalars['String']['output']>>;
183222
183981
  name?: Maybe<Scalars['String']['output']>;
183223
183982
  remediationDesc?: Maybe<Scalars['String']['output']>;
183224
183983
  remediationFrequency?: Maybe<Scalars['String']['output']>;
@@ -183226,6 +183985,11 @@ export type PsmSensorConfigDetails = {
183226
183985
  sensorId?: Maybe<Scalars['String']['output']>;
183227
183986
  triggerCondition?: Maybe<Scalars['String']['output']>;
183228
183987
  };
183988
+ export type PsmSensorConfigResult = {
183989
+ __typename?: 'PsmSensorConfigResult';
183990
+ errors?: Maybe<Array<QueryError>>;
183991
+ sensor?: Maybe<PsmSensorConfigDetails>;
183992
+ };
183229
183993
  export type PsmSensorConnection = {
183230
183994
  __typename?: 'PsmSensorConnection';
183231
183995
  edges?: Maybe<Array<PsmSensorEdge>>;
@@ -183251,6 +184015,11 @@ export declare enum PsmSensorEnablementAction {
183251
184015
  Disable = "DISABLE",
183252
184016
  Enable = "ENABLE"
183253
184017
  }
184018
+ export type PsmSensorEnablementFailure = {
184019
+ __typename?: 'PsmSensorEnablementFailure';
184020
+ errorMessage?: Maybe<Scalars['String']['output']>;
184021
+ sensorId: Scalars['String']['output'];
184022
+ };
183254
184023
  export type PsmSensorListInput = {
183255
184024
  after?: InputMaybe<Scalars['String']['input']>;
183256
184025
  categories?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -183344,7 +184113,8 @@ export type PsmUpdateSensorEnablementPayload = Payload & {
183344
184113
  __typename?: 'PsmUpdateSensorEnablementPayload';
183345
184114
  action: PsmSensorEnablementAction;
183346
184115
  errors?: Maybe<Array<MutationError>>;
183347
- sensorIds: Array<Scalars['String']['output']>;
184116
+ failedSensors?: Maybe<Array<PsmSensorEnablementFailure>>;
184117
+ sensorIds?: Maybe<Array<Scalars['String']['output']>>;
183348
184118
  success: Scalars['Boolean']['output'];
183349
184119
  };
183350
184120
  export type PublicLink = {
@@ -183767,6 +184537,7 @@ export type Query = {
183767
184537
  agentStudio_testConversationListByContainerId?: Maybe<AgentStudioConversationListResult>;
183768
184538
  agentStudio_toolIntegrations?: Maybe<AgentStudioToolIntegrationsConnection>;
183769
184539
  agentStudio_tools?: Maybe<AgentStudioToolsConnection>;
184540
+ agentStudio_unlicensedRovoWidgetConfigByContainerAri?: Maybe<AgentStudioUnlicensedRovoWidgetConfigByContainerAriResult>;
183770
184541
  agentStudio_validateScenario?: Maybe<AgentStudioScenarioValidationPayload>;
183771
184542
  agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
183772
184543
  agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
@@ -184128,6 +184899,7 @@ export type Query = {
184128
184899
  cloudify_analysisExecutions: Array<CloudifyAnalysisExecution>;
184129
184900
  cloudify_enactment?: Maybe<CloudifyEnactment>;
184130
184901
  cloudify_enactments: Array<CloudifyEnactment>;
184902
+ cloudify_rawCustomizationRecommendations?: Maybe<Array<CloudifyRawCustomizationRecommendation>>;
184131
184903
  cloudify_recommendations: Array<CloudifyRecommendation>;
184132
184904
  codeInJira?: Maybe<CodeInJira>;
184133
184905
  collabContext_workspaceIsConnectedToWorkspace?: Maybe<CollabContextWorkspaceConnection>;
@@ -184172,6 +184944,7 @@ export type Query = {
184172
184944
  confluence_contentApprovalStatuses?: Maybe<Array<Maybe<ConfluenceApprovalsWorkflowStatus>>>;
184173
184945
  confluence_contentApprovalsSiteSettings?: Maybe<ConfluenceContentApprovalsSiteSettings>;
184174
184946
  confluence_contentApprovalsSpaceSettingConfig?: Maybe<ConfluenceContentApprovalsSpaceSettingConfigPayload>;
184947
+ confluence_contentCollaborators?: Maybe<ConfluenceCollaboratorConnection>;
184175
184948
  confluence_contentPerformanceList?: Maybe<ConfluenceContentPerformanceConnection>;
184176
184949
  confluence_contentPerformanceSummary?: Maybe<ConfluenceContentPerformanceSummary>;
184177
184950
  confluence_contentPermissions?: Maybe<ConfluenceContentPermissions>;
@@ -184700,6 +185473,7 @@ export type Query = {
184700
185473
  graphStoreV2_atlassianUserAuthoritativelyLinkedExternalUserInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserAuthoritativelyLinkedExternalUserInverseConnection>;
184701
185474
  graphStoreV2_atlassianUserCanViewConfluenceSpace?: Maybe<GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceConnection>;
184702
185475
  graphStoreV2_atlassianUserCanViewConfluenceSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceInverseConnection>;
185476
+ graphStoreV2_atlassianUserCollaboratesOnInferredProject?: Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectConnection>;
184703
185477
  graphStoreV2_atlassianUserCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseConnection>;
184704
185478
  graphStoreV2_atlassianUserContributedToConfluenceBlogpost?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostConnection>;
184705
185479
  graphStoreV2_atlassianUserContributedToConfluenceBlogpostInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostInverseConnection>;
@@ -184839,6 +185613,7 @@ export type Query = {
184839
185613
  graphStoreV2_atlassianUserOwnsFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusFocusAreaInverseConnection>;
184840
185614
  graphStoreV2_atlassianUserOwnsFocusStrategicPlan?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanConnection>;
184841
185615
  graphStoreV2_atlassianUserOwnsFocusStrategicPlanInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseConnection>;
185616
+ graphStoreV2_atlassianUserOwnsInferredProject?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectConnection>;
184842
185617
  graphStoreV2_atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
184843
185618
  graphStoreV2_atlassianUserReactedToJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection>;
184844
185619
  graphStoreV2_atlassianUserReactedToJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentInverseConnection>;
@@ -185334,8 +186109,11 @@ export type Query = {
185334
186109
  graphStoreV2_inferredDecisionSourceLineageEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseConnection>;
185335
186110
  graphStoreV2_inferredEntities?: Maybe<Array<GraphStoreInferredEntityResponse>>;
185336
186111
  graphStoreV2_inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
186112
+ graphStoreV2_inferredProjectLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityInverseConnection>;
186113
+ graphStoreV2_inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
185337
186114
  graphStoreV2_inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
185338
186115
  graphStoreV2_inferredTeamLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityConnection>;
186116
+ graphStoreV2_inferredTeamLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityInverseConnection>;
185339
186117
  graphStoreV2_jiraEpicTracksAtlassianProject?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection>;
185340
186118
  graphStoreV2_jiraEpicTracksAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectInverseConnection>;
185341
186119
  graphStoreV2_jiraProjectAgentKnowledgeContextHasKnowledgeBaseEntity?: Maybe<GraphStoreV2SimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityConnection>;
@@ -185522,6 +186300,8 @@ export type Query = {
185522
186300
  graphStoreV2_talentWorkerLinksExternalWorker?: Maybe<GraphStoreV2SimplifiedTalentWorkerLinksExternalWorkerConnection>;
185523
186301
  graphStoreV2_talentWorkerLinksExternalWorkerInverse?: Maybe<GraphStoreV2SimplifiedTalentWorkerLinksExternalWorkerInverseConnection>;
185524
186302
  graphStoreV2_thirdPartyRemoteLinkLinksExternalRemoteLink?: Maybe<GraphStoreV2SimplifiedThirdPartyRemoteLinkLinksExternalRemoteLinkConnection>;
186303
+ graphStoreV2_thirdPartyUserLinkedViaEmailThirdPartyUser?: Maybe<GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserConnection>;
186304
+ graphStoreV2_thirdPartyUserLinkedViaEmailThirdPartyUserInverse?: Maybe<GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseConnection>;
185525
186305
  graphStoreV2_topicHasRelatedEntity?: Maybe<GraphStoreV2SimplifiedTopicHasRelatedEntityConnection>;
185526
186306
  graphStoreV2_topicHasRelatedEntityInverse?: Maybe<GraphStoreV2SimplifiedTopicHasRelatedEntityInverseConnection>;
185527
186307
  graphStore_appInstallationAssociatedToOperationsWorkspaceInverseRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection>;
@@ -185665,6 +186445,7 @@ export type Query = {
185665
186445
  graphStore_atlassianUserOwnsExternalTestRunInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestRunInverseConnection>;
185666
186446
  graphStore_atlassianUserOwnsExternalTestStatus?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusConnection>;
185667
186447
  graphStore_atlassianUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection>;
186448
+ graphStore_atlassianUserOwnsInferredProject?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectConnection>;
185668
186449
  graphStore_atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
185669
186450
  graphStore_atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
185670
186451
  graphStore_atlassianUserTriggeredAtlassianAgentSessionInverse?: Maybe<GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection>;
@@ -185968,8 +186749,11 @@ export type Query = {
185968
186749
  graphStore_inferredDecisionSourceLineageEntity?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityConnection>;
185969
186750
  graphStore_inferredDecisionSourceLineageEntityInverse?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseConnection>;
185970
186751
  graphStore_inferredProjectLinksEntity?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityConnection>;
186752
+ graphStore_inferredProjectLinksEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityInverseConnection>;
186753
+ graphStore_inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
185971
186754
  graphStore_inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
185972
186755
  graphStore_inferredTeamLinksEntity?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityConnection>;
186756
+ graphStore_inferredTeamLinksEntityInverse?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityInverseConnection>;
185973
186757
  graphStore_issueAssociatedBranch?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchConnection>;
185974
186758
  graphStore_issueAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseConnection>;
185975
186759
  graphStore_issueAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
@@ -186414,6 +187198,8 @@ export type Query = {
186414
187198
  graphStore_testPerfhammerRelationshipInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
186415
187199
  graphStore_testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
186416
187200
  graphStore_thirdPartyToGraphRemoteLink?: Maybe<GraphStoreSimplifiedThirdPartyToGraphRemoteLinkConnection>;
187201
+ graphStore_thirdPartyUserLinkedViaEmailThirdPartyUser?: Maybe<GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserConnection>;
187202
+ graphStore_thirdPartyUserLinkedViaEmailThirdPartyUserInverse?: Maybe<GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseConnection>;
186417
187203
  graphStore_topicHasRelatedEntity?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityConnection>;
186418
187204
  graphStore_topicHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityInverseConnection>;
186419
187205
  graphStore_townsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreSimplifiedTownsquareTagIsAliasOfTownsquareTagConnection>;
@@ -186545,6 +187331,7 @@ export type Query = {
186545
187331
  graphStore_userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
186546
187332
  graphStore_userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
186547
187333
  graphStore_userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
187334
+ graphStore_userIsInInferredProject?: Maybe<GraphStoreSimplifiedUserIsInInferredProjectConnection>;
186548
187335
  graphStore_userIsInInferredProjectInverse?: Maybe<GraphStoreSimplifiedUserIsInInferredProjectInverseConnection>;
186549
187336
  graphStore_userIsInTeam?: Maybe<GraphStoreSimplifiedUserIsInTeamConnection>;
186550
187337
  graphStore_userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
@@ -186761,7 +187548,7 @@ export type Query = {
186761
187548
  gravity_importIdeas: GravityImportIdeasResult;
186762
187549
  gravity_matchDelivery?: Maybe<GravityDeliveryMatchingResult>;
186763
187550
  gravity_reactions?: Maybe<GravityReactionsResult>;
186764
- gravity_view?: Maybe<JpdViewResult>;
187551
+ gravity_view?: Maybe<JpdView>;
186765
187552
  gravity_viewArrangement?: Maybe<GravityViewArrangementResult>;
186766
187553
  gravity_viewTemplateMappingProposals: GravityViewTemplateMappingProposalsResult;
186767
187554
  gravity_viewTemplates: GravityViewTemplatesResult;
@@ -186824,6 +187611,8 @@ export type Query = {
186824
187611
  jira_agentContextSettings?: Maybe<JiraAgentContextSettings>;
186825
187612
  jira_agentContextSources?: Maybe<JiraAgentContextItemConnection>;
186826
187613
  jira_agentSessionsIsPlanModeEnabled?: Maybe<Scalars['Boolean']['output']>;
187614
+ jira_agentSpaceCuratedSources?: Maybe<JiraAgentContextItemConnection>;
187615
+ jira_agentSpaceInstructions?: Maybe<JiraAgentSpaceInstruction>;
186827
187616
  jira_agentsInSpace?: Maybe<JiraAgentsInSpace>;
186828
187617
  jira_agentsInSpaceByAgentAris?: Maybe<Array<Maybe<JiraAgentInSpace>>>;
186829
187618
  jira_availableStatuses?: Maybe<JiraStatusConnection>;
@@ -186913,6 +187702,7 @@ export type Query = {
186913
187702
  jsmConversation_settings?: Maybe<JsmConversationSettings>;
186914
187703
  jsmSolutionComposerPlan?: Maybe<JsmSolutionComposerPlanQueryApi>;
186915
187704
  jsmTelemetry_aiPrompt?: Maybe<Scalars['String']['output']>;
187705
+ jsmTelemetry_chartData?: Maybe<JsmTelemetryChartDataResult>;
186916
187706
  jsmTelemetry_dashboard?: Maybe<JsmTelemetryDashboardResult>;
186917
187707
  jsmTelemetry_dashboardByScope?: Maybe<JsmTelemetryDashboardData>;
186918
187708
  jsmTelemetry_getIncidentContext?: Maybe<JsmTelemetryIncidentContextResult>;
@@ -186920,7 +187710,6 @@ export type Query = {
186920
187710
  jsmTelemetry_getMetricAttributes?: Maybe<JsmTelemetryMetricAttributesResult>;
186921
187711
  jsmTelemetry_getProviderContextSchema?: Maybe<JsmTelemetryProviderContextSchemaResult>;
186922
187712
  jsmTelemetry_getTelemetryConnection?: Maybe<JsmTelemetryConnection>;
186923
- jsmTelemetry_incidentTelemetry?: Maybe<JsmTelemetryIncidentTelemetryResult>;
186924
187713
  jsmTelemetry_listAvailableTelemetryProviders?: Maybe<Array<JsmTelemetryProviderAvailability>>;
186925
187714
  jsmTelemetry_listTelemetryConnections?: Maybe<Array<JsmTelemetryConnection>>;
186926
187715
  jsmTelemetry_listTelemetryProviders?: Maybe<Array<JsmTelemetryProvider>>;
@@ -187029,6 +187818,16 @@ export type Query = {
187029
187818
  marketplacePartner?: Maybe<MarketplacePartner>;
187030
187819
  marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
187031
187820
  marketplaceStore: MarketplaceStoreQueryApi;
187821
+ marketplaceStore_appReviewsByAppKeyV2?: Maybe<MarketplaceStoreReviewsResponse>;
187822
+ marketplaceStore_editionsByAppKeyV2?: Maybe<Array<MarketplaceStoreEdition>>;
187823
+ marketplaceStore_getProductListingV2?: Maybe<MarketplaceStoreProductListingResponse>;
187824
+ marketplaceStore_partnerByPartnerNameV2?: Maybe<MarketplaceStoreSearchPartnerResponse>;
187825
+ marketplaceStore_partnerV2?: Maybe<MarketplaceStorePartnerResponse>;
187826
+ marketplaceStore_privacyAndSecurityV2?: Maybe<MarketplaceStorePrivacyAndSecurityResponse>;
187827
+ marketplaceStore_productDetailsByCloudIdV2?: Maybe<MarketplaceStoreProductDetailsByCloudIdResponse>;
187828
+ marketplaceStore_productTagsV2?: Maybe<Array<Maybe<MarketplaceStoreProductTag>>>;
187829
+ marketplaceStore_recommendationsSectionV2?: Maybe<MarketplaceStoreRecommendationsSection>;
187830
+ marketplaceStore_reviewSummaryV2?: Maybe<MarketplaceStoreReviewSummaryResponse>;
187032
187831
  me: AuthenticationContext;
187033
187832
  mediaConfiguration?: Maybe<MediaConfiguration>;
187034
187833
  media_items?: Maybe<Array<MediaItem>>;
@@ -187156,7 +187955,7 @@ export type Query = {
187156
187955
  psm_devices?: Maybe<PsmDeviceConnection>;
187157
187956
  psm_onboardTenantStatus?: Maybe<PsmOnboardTenantStatusResult>;
187158
187957
  psm_sensorCategories?: Maybe<PsmSensorCategoriesResult>;
187159
- psm_sensorDetails?: Maybe<PsmSensorConfigDetails>;
187958
+ psm_sensorDetails?: Maybe<PsmSensorConfigResult>;
187160
187959
  psm_sensors?: Maybe<PsmSensorConnection>;
187161
187960
  psm_triggeredSensors?: Maybe<PsmTriggeredSensorsList>;
187162
187961
  ptpage?: Maybe<PtPage>;
@@ -188111,6 +188910,10 @@ export type QueryAgentStudio_ToolsArgs = {
188111
188910
  scenarioVersion?: InputMaybe<Scalars['Int']['input']>;
188112
188911
  searchQuery?: InputMaybe<Scalars['String']['input']>;
188113
188912
  };
188913
+ export type QueryAgentStudio_UnlicensedRovoWidgetConfigByContainerAriArgs = {
188914
+ cloudId: Scalars['String']['input'];
188915
+ containerAri: Scalars['ID']['input'];
188916
+ };
188114
188917
  export type QueryAgentStudio_ValidateScenarioArgs = {
188115
188918
  cloudId: Scalars['String']['input'];
188116
188919
  containerId: Scalars['ID']['input'];
@@ -189806,6 +190609,10 @@ export type QueryCloudify_EnactmentsArgs = {
189806
190609
  orgId: Scalars['ID']['input'];
189807
190610
  recommendationId: Scalars['ID']['input'];
189808
190611
  };
190612
+ export type QueryCloudify_RawCustomizationRecommendationsArgs = {
190613
+ ids: Array<Scalars['ID']['input']>;
190614
+ orgId: Scalars['ID']['input'];
190615
+ };
189809
190616
  export type QueryCloudify_RecommendationsArgs = {
189810
190617
  filter: CloudifyRecommendationFilterInput;
189811
190618
  orgId: Scalars['ID']['input'];
@@ -190015,6 +190822,14 @@ export type QueryConfluence_ContentApprovalsSpaceSettingConfigArgs = {
190015
190822
  filterSelf?: InputMaybe<Scalars['Boolean']['input']>;
190016
190823
  spaceKey: Scalars['String']['input'];
190017
190824
  };
190825
+ export type QueryConfluence_ContentCollaboratorsArgs = {
190826
+ after?: InputMaybe<Scalars['String']['input']>;
190827
+ cloudId: Scalars['ID']['input'];
190828
+ first?: InputMaybe<Scalars['Int']['input']>;
190829
+ id: Scalars['ID']['input'];
190830
+ status?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
190831
+ version?: InputMaybe<Scalars['Int']['input']>;
190832
+ };
190018
190833
  export type QueryConfluence_ContentPerformanceListArgs = {
190019
190834
  after?: InputMaybe<Scalars['String']['input']>;
190020
190835
  cloudId: Scalars['ID']['input'];
@@ -191588,9 +192403,9 @@ export type QueryDevai_SearchConnectedReposArgs = {
191588
192403
  cloudId: Scalars['ID']['input'];
191589
192404
  language?: InputMaybe<Array<Scalars['String']['input']>>;
191590
192405
  owner?: InputMaybe<Array<Scalars['String']['input']>>;
192406
+ page?: InputMaybe<Scalars['Int']['input']>;
192407
+ pagelen?: InputMaybe<Scalars['Int']['input']>;
191591
192408
  repoName?: InputMaybe<Array<Scalars['String']['input']>>;
191592
- searchTerm?: InputMaybe<Array<Scalars['String']['input']>>;
191593
- workspace?: InputMaybe<Array<DevAiConnectedRepoWorkspaceFilter>>;
191594
192409
  workspaceFilter: Array<DevAiConnectedRepoWorkspaceFilter>;
191595
192410
  };
191596
192411
  export type QueryDevai_TechnicalPlannerJobByIdArgs = {
@@ -192609,6 +193424,13 @@ export type QueryGraphStoreV2_AtlassianUserCanViewConfluenceSpaceInverseArgs = {
192609
193424
  id: Scalars['ID']['input'];
192610
193425
  sort?: InputMaybe<GraphStoreV2AtlassianUserCanViewConfluenceSpaceSortInput>;
192611
193426
  };
193427
+ export type QueryGraphStoreV2_AtlassianUserCollaboratesOnInferredProjectArgs = {
193428
+ after?: InputMaybe<Scalars['String']['input']>;
193429
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
193430
+ first?: InputMaybe<Scalars['Int']['input']>;
193431
+ id: Scalars['ID']['input'];
193432
+ sort?: InputMaybe<GraphStoreV2AtlassianUserCollaboratesOnInferredProjectSortInput>;
193433
+ };
192612
193434
  export type QueryGraphStoreV2_AtlassianUserCollaboratesOnInferredProjectInverseArgs = {
192613
193435
  after?: InputMaybe<Scalars['String']['input']>;
192614
193436
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -193588,6 +194410,13 @@ export type QueryGraphStoreV2_AtlassianUserOwnsFocusStrategicPlanInverseArgs = {
193588
194410
  id: Scalars['ID']['input'];
193589
194411
  sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsFocusStrategicPlanSortInput>;
193590
194412
  };
194413
+ export type QueryGraphStoreV2_AtlassianUserOwnsInferredProjectArgs = {
194414
+ after?: InputMaybe<Scalars['String']['input']>;
194415
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
194416
+ first?: InputMaybe<Scalars['Int']['input']>;
194417
+ id: Scalars['ID']['input'];
194418
+ sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsInferredProjectSortInput>;
194419
+ };
193591
194420
  export type QueryGraphStoreV2_AtlassianUserOwnsInferredProjectInverseArgs = {
193592
194421
  after?: InputMaybe<Scalars['String']['input']>;
193593
194422
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -197056,6 +197885,20 @@ export type QueryGraphStoreV2_InferredProjectLinksEntityArgs = {
197056
197885
  id: Scalars['ID']['input'];
197057
197886
  sort?: InputMaybe<GraphStoreV2InferredProjectLinksEntitySortInput>;
197058
197887
  };
197888
+ export type QueryGraphStoreV2_InferredProjectLinksEntityInverseArgs = {
197889
+ after?: InputMaybe<Scalars['String']['input']>;
197890
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
197891
+ first?: InputMaybe<Scalars['Int']['input']>;
197892
+ id: Scalars['ID']['input'];
197893
+ sort?: InputMaybe<GraphStoreV2InferredProjectLinksEntitySortInput>;
197894
+ };
197895
+ export type QueryGraphStoreV2_InferredTeamCollaboratesOnInferredProjectArgs = {
197896
+ after?: InputMaybe<Scalars['String']['input']>;
197897
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
197898
+ first?: InputMaybe<Scalars['Int']['input']>;
197899
+ id: Scalars['ID']['input'];
197900
+ sort?: InputMaybe<GraphStoreV2InferredTeamCollaboratesOnInferredProjectSortInput>;
197901
+ };
197059
197902
  export type QueryGraphStoreV2_InferredTeamCollaboratesOnInferredProjectInverseArgs = {
197060
197903
  after?: InputMaybe<Scalars['String']['input']>;
197061
197904
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -197070,6 +197913,13 @@ export type QueryGraphStoreV2_InferredTeamLinksEntityArgs = {
197070
197913
  id: Scalars['ID']['input'];
197071
197914
  sort?: InputMaybe<GraphStoreV2InferredTeamLinksEntitySortInput>;
197072
197915
  };
197916
+ export type QueryGraphStoreV2_InferredTeamLinksEntityInverseArgs = {
197917
+ after?: InputMaybe<Scalars['String']['input']>;
197918
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
197919
+ first?: InputMaybe<Scalars['Int']['input']>;
197920
+ id: Scalars['ID']['input'];
197921
+ sort?: InputMaybe<GraphStoreV2InferredTeamLinksEntitySortInput>;
197922
+ };
197073
197923
  export type QueryGraphStoreV2_JiraEpicTracksAtlassianProjectArgs = {
197074
197924
  after?: InputMaybe<Scalars['String']['input']>;
197075
197925
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -198408,6 +199258,20 @@ export type QueryGraphStoreV2_ThirdPartyRemoteLinkLinksExternalRemoteLinkArgs =
198408
199258
  id: Scalars['ID']['input'];
198409
199259
  sort?: InputMaybe<GraphStoreV2ThirdPartyRemoteLinkLinksExternalRemoteLinkSortInput>;
198410
199260
  };
199261
+ export type QueryGraphStoreV2_ThirdPartyUserLinkedViaEmailThirdPartyUserArgs = {
199262
+ after?: InputMaybe<Scalars['String']['input']>;
199263
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
199264
+ first?: InputMaybe<Scalars['Int']['input']>;
199265
+ id: Scalars['ID']['input'];
199266
+ sort?: InputMaybe<GraphStoreV2ThirdPartyUserLinkedViaEmailThirdPartyUserSortInput>;
199267
+ };
199268
+ export type QueryGraphStoreV2_ThirdPartyUserLinkedViaEmailThirdPartyUserInverseArgs = {
199269
+ after?: InputMaybe<Scalars['String']['input']>;
199270
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
199271
+ first?: InputMaybe<Scalars['Int']['input']>;
199272
+ id: Scalars['ID']['input'];
199273
+ sort?: InputMaybe<GraphStoreV2ThirdPartyUserLinkedViaEmailThirdPartyUserSortInput>;
199274
+ };
198411
199275
  export type QueryGraphStoreV2_TopicHasRelatedEntityArgs = {
198412
199276
  after?: InputMaybe<Scalars['String']['input']>;
198413
199277
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -199524,6 +200388,14 @@ export type QueryGraphStore_AtlassianUserOwnsExternalTestStatusInverseArgs = {
199524
200388
  queryContext?: InputMaybe<Scalars['String']['input']>;
199525
200389
  sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalTestStatusSortInput>;
199526
200390
  };
200391
+ export type QueryGraphStore_AtlassianUserOwnsInferredProjectArgs = {
200392
+ after?: InputMaybe<Scalars['String']['input']>;
200393
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
200394
+ first?: InputMaybe<Scalars['Int']['input']>;
200395
+ id: Scalars['ID']['input'];
200396
+ queryContext?: InputMaybe<Scalars['String']['input']>;
200397
+ sort?: InputMaybe<GraphStoreAtlassianUserOwnsInferredProjectSortInput>;
200398
+ };
199527
200399
  export type QueryGraphStore_AtlassianUserOwnsInferredProjectInverseArgs = {
199528
200400
  after?: InputMaybe<Scalars['String']['input']>;
199529
200401
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -201876,6 +202748,22 @@ export type QueryGraphStore_InferredProjectLinksEntityArgs = {
201876
202748
  queryContext?: InputMaybe<Scalars['String']['input']>;
201877
202749
  sort?: InputMaybe<GraphStoreInferredProjectLinksEntitySortInput>;
201878
202750
  };
202751
+ export type QueryGraphStore_InferredProjectLinksEntityInverseArgs = {
202752
+ after?: InputMaybe<Scalars['String']['input']>;
202753
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
202754
+ first?: InputMaybe<Scalars['Int']['input']>;
202755
+ id: Scalars['ID']['input'];
202756
+ queryContext?: InputMaybe<Scalars['String']['input']>;
202757
+ sort?: InputMaybe<GraphStoreInferredProjectLinksEntitySortInput>;
202758
+ };
202759
+ export type QueryGraphStore_InferredTeamCollaboratesOnInferredProjectArgs = {
202760
+ after?: InputMaybe<Scalars['String']['input']>;
202761
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
202762
+ first?: InputMaybe<Scalars['Int']['input']>;
202763
+ id: Scalars['ID']['input'];
202764
+ queryContext?: InputMaybe<Scalars['String']['input']>;
202765
+ sort?: InputMaybe<GraphStoreInferredTeamCollaboratesOnInferredProjectSortInput>;
202766
+ };
201879
202767
  export type QueryGraphStore_InferredTeamCollaboratesOnInferredProjectInverseArgs = {
201880
202768
  after?: InputMaybe<Scalars['String']['input']>;
201881
202769
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -201892,6 +202780,14 @@ export type QueryGraphStore_InferredTeamLinksEntityArgs = {
201892
202780
  queryContext?: InputMaybe<Scalars['String']['input']>;
201893
202781
  sort?: InputMaybe<GraphStoreInferredTeamLinksEntitySortInput>;
201894
202782
  };
202783
+ export type QueryGraphStore_InferredTeamLinksEntityInverseArgs = {
202784
+ after?: InputMaybe<Scalars['String']['input']>;
202785
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
202786
+ first?: InputMaybe<Scalars['Int']['input']>;
202787
+ id: Scalars['ID']['input'];
202788
+ queryContext?: InputMaybe<Scalars['String']['input']>;
202789
+ sort?: InputMaybe<GraphStoreInferredTeamLinksEntitySortInput>;
202790
+ };
201895
202791
  export type QueryGraphStore_IssueAssociatedBranchArgs = {
201896
202792
  after?: InputMaybe<Scalars['String']['input']>;
201897
202793
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -205256,6 +206152,22 @@ export type QueryGraphStore_ThirdPartyToGraphRemoteLinkArgs = {
205256
206152
  queryContext?: InputMaybe<Scalars['String']['input']>;
205257
206153
  sort?: InputMaybe<GraphStoreThirdPartyToGraphRemoteLinkSortInput>;
205258
206154
  };
206155
+ export type QueryGraphStore_ThirdPartyUserLinkedViaEmailThirdPartyUserArgs = {
206156
+ after?: InputMaybe<Scalars['String']['input']>;
206157
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
206158
+ first?: InputMaybe<Scalars['Int']['input']>;
206159
+ id: Scalars['ID']['input'];
206160
+ queryContext?: InputMaybe<Scalars['String']['input']>;
206161
+ sort?: InputMaybe<GraphStoreThirdPartyUserLinkedViaEmailThirdPartyUserSortInput>;
206162
+ };
206163
+ export type QueryGraphStore_ThirdPartyUserLinkedViaEmailThirdPartyUserInverseArgs = {
206164
+ after?: InputMaybe<Scalars['String']['input']>;
206165
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
206166
+ first?: InputMaybe<Scalars['Int']['input']>;
206167
+ id: Scalars['ID']['input'];
206168
+ queryContext?: InputMaybe<Scalars['String']['input']>;
206169
+ sort?: InputMaybe<GraphStoreThirdPartyUserLinkedViaEmailThirdPartyUserSortInput>;
206170
+ };
205259
206171
  export type QueryGraphStore_TopicHasRelatedEntityArgs = {
205260
206172
  after?: InputMaybe<Scalars['String']['input']>;
205261
206173
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -206308,6 +207220,14 @@ export type QueryGraphStore_UserHasTopProjectInverseArgs = {
206308
207220
  queryContext?: InputMaybe<Scalars['String']['input']>;
206309
207221
  sort?: InputMaybe<GraphStoreUserHasTopProjectSortInput>;
206310
207222
  };
207223
+ export type QueryGraphStore_UserIsInInferredProjectArgs = {
207224
+ after?: InputMaybe<Scalars['String']['input']>;
207225
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
207226
+ first?: InputMaybe<Scalars['Int']['input']>;
207227
+ id: Scalars['ID']['input'];
207228
+ queryContext?: InputMaybe<Scalars['String']['input']>;
207229
+ sort?: InputMaybe<GraphStoreUserIsInInferredProjectSortInput>;
207230
+ };
206311
207231
  export type QueryGraphStore_UserIsInInferredProjectInverseArgs = {
206312
207232
  after?: InputMaybe<Scalars['String']['input']>;
206313
207233
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -208188,6 +209108,16 @@ export type QueryJira_AgentContextSourcesArgs = {
208188
209108
  export type QueryJira_AgentSessionsIsPlanModeEnabledArgs = {
208189
209109
  cloudId: Scalars['ID']['input'];
208190
209110
  };
209111
+ export type QueryJira_AgentSpaceCuratedSourcesArgs = {
209112
+ after?: InputMaybe<Scalars['String']['input']>;
209113
+ agentAri?: InputMaybe<Scalars['ID']['input']>;
209114
+ first?: InputMaybe<Scalars['Int']['input']>;
209115
+ projectAri: Scalars['ID']['input'];
209116
+ };
209117
+ export type QueryJira_AgentSpaceInstructionsArgs = {
209118
+ agentAri?: InputMaybe<Scalars['ID']['input']>;
209119
+ projectAri: Scalars['ID']['input'];
209120
+ };
208191
209121
  export type QueryJira_AgentsInSpaceArgs = {
208192
209122
  after?: InputMaybe<Scalars['String']['input']>;
208193
209123
  cloudId: Scalars['ID']['input'];
@@ -208559,6 +209489,13 @@ export type QueryJsmTelemetry_AiPromptArgs = {
208559
209489
  prompt: Scalars['String']['input'];
208560
209490
  useCaseId?: InputMaybe<Scalars['String']['input']>;
208561
209491
  };
209492
+ export type QueryJsmTelemetry_ChartDataArgs = {
209493
+ chartId: Scalars['ID']['input'];
209494
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
209495
+ scopeId: Scalars['String']['input'];
209496
+ scopeType: JsmTelemetryScopeType;
209497
+ timeRange: JsmTelemetryChartTimeRangeInput;
209498
+ };
208562
209499
  export type QueryJsmTelemetry_DashboardArgs = {
208563
209500
  cloudId?: InputMaybe<Scalars['ID']['input']>;
208564
209501
  incidentId: Scalars['ID']['input'];
@@ -208596,10 +209533,6 @@ export type QueryJsmTelemetry_GetTelemetryConnectionArgs = {
208596
209533
  id: Scalars['ID']['input'];
208597
209534
  scopeId: Scalars['String']['input'];
208598
209535
  };
208599
- export type QueryJsmTelemetry_IncidentTelemetryArgs = {
208600
- cloudId?: InputMaybe<Scalars['ID']['input']>;
208601
- incidentId: Scalars['ID']['input'];
208602
- };
208603
209536
  export type QueryJsmTelemetry_ListAvailableTelemetryProvidersArgs = {
208604
209537
  cloudId?: InputMaybe<Scalars['ID']['input']>;
208605
209538
  };
@@ -208998,6 +209931,43 @@ export type QueryMarketplacePricingPlanArgs = {
208998
209931
  hostingType: AtlassianProductHostingType;
208999
209932
  pricingPlanOptions?: InputMaybe<MarketplacePricingPlanOptions>;
209000
209933
  };
209934
+ export type QueryMarketplaceStore_AppReviewsByAppKeyV2Args = {
209935
+ appKey: Scalars['String']['input'];
209936
+ filter?: InputMaybe<MarketplaceStoreReviewFilterInput>;
209937
+ limit?: InputMaybe<Scalars['Int']['input']>;
209938
+ offset?: InputMaybe<Scalars['Int']['input']>;
209939
+ };
209940
+ export type QueryMarketplaceStore_EditionsByAppKeyV2Args = {
209941
+ countryCode?: InputMaybe<Scalars['String']['input']>;
209942
+ product: MarketplaceStoreEditionsByAppKeyInput;
209943
+ };
209944
+ export type QueryMarketplaceStore_GetProductListingV2Args = {
209945
+ productId: Scalars['ID']['input'];
209946
+ };
209947
+ export type QueryMarketplaceStore_PartnerByPartnerNameV2Args = {
209948
+ partnerName: Scalars['String']['input'];
209949
+ };
209950
+ export type QueryMarketplaceStore_PartnerV2Args = {
209951
+ developerId?: InputMaybe<Scalars['ID']['input']>;
209952
+ vendorId: Scalars['ID']['input'];
209953
+ };
209954
+ export type QueryMarketplaceStore_PrivacyAndSecurityV2Args = {
209955
+ input: MarketplaceStorePrivacyAndSecurityRequestInput;
209956
+ };
209957
+ export type QueryMarketplaceStore_ProductDetailsByCloudIdV2Args = {
209958
+ cloudId: Scalars['String']['input'];
209959
+ };
209960
+ export type QueryMarketplaceStore_ProductTagsV2Args = {
209961
+ tagType?: InputMaybe<MarketplaceStoreProductTagType>;
209962
+ };
209963
+ export type QueryMarketplaceStore_RecommendationsSectionV2Args = {
209964
+ input?: InputMaybe<MarketplaceStoreRecommendationsSectionInput>;
209965
+ usecase: MarketplaceStoreRecommendationsUsecase;
209966
+ };
209967
+ export type QueryMarketplaceStore_ReviewSummaryV2Args = {
209968
+ appKey: Scalars['String']['input'];
209969
+ hostingType: MarketplaceStoreAtlassianProductHostingType;
209970
+ };
209001
209971
  export type QueryMedia_ItemsArgs = {
209002
209972
  clientId: Scalars['String']['input'];
209003
209973
  cloudId: Scalars['ID']['input'];
@@ -231297,6 +232267,15 @@ export type TrelloDeleteBoardPayload = Payload & {
231297
232267
  errors?: Maybe<Array<MutationError>>;
231298
232268
  success: Scalars['Boolean']['output'];
231299
232269
  };
232270
+ export type TrelloDeleteChecklistInput = {
232271
+ id: Scalars['ID']['input'];
232272
+ };
232273
+ export type TrelloDeleteChecklistPayload = Payload & {
232274
+ __typename?: 'TrelloDeleteChecklistPayload';
232275
+ checklist?: Maybe<TrelloChecklist>;
232276
+ errors?: Maybe<Array<MutationError>>;
232277
+ success: Scalars['Boolean']['output'];
232278
+ };
231300
232279
  export type TrelloDeleteCustomFieldInput = {
231301
232280
  customFieldId: Scalars['ID']['input'];
231302
232281
  };
@@ -232316,6 +233295,7 @@ export type TrelloMemberOwnedWebhookLegacyApplication = {
232316
233295
  export type TrelloMemberOwnedWebhookOAuth2Client = {
232317
233296
  __typename?: 'TrelloMemberOwnedWebhookOAuth2Client';
232318
233297
  oauth2ClientId?: Maybe<Scalars['ID']['output']>;
233298
+ pluginName?: Maybe<Scalars['String']['output']>;
232319
233299
  };
232320
233300
  export type TrelloMemberPlannerEventCardsUpdated = {
232321
233301
  __typename?: 'TrelloMemberPlannerEventCardsUpdated';
@@ -232631,6 +233611,7 @@ export type TrelloMutationApi = {
232631
233611
  deleteAiRule?: Maybe<TrelloDeleteAiRulePayload>;
232632
233612
  deleteBoard?: Maybe<TrelloDeleteBoardPayload>;
232633
233613
  deleteBoardBackground?: Maybe<TrelloDeleteBoardBackgroundPayload>;
233614
+ deleteChecklist?: Maybe<TrelloDeleteChecklistPayload>;
232634
233615
  deleteCustomField?: Maybe<TrelloDeleteCustomFieldPayload>;
232635
233616
  deleteCustomFieldOption?: Maybe<TrelloDeleteCustomFieldOptionPayload>;
232636
233617
  deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
@@ -232864,6 +233845,9 @@ export type TrelloMutationApiDeleteBoardArgs = {
232864
233845
  export type TrelloMutationApiDeleteBoardBackgroundArgs = {
232865
233846
  input: TrelloDeleteBoardBackgroundInput;
232866
233847
  };
233848
+ export type TrelloMutationApiDeleteChecklistArgs = {
233849
+ input: TrelloDeleteChecklistInput;
233850
+ };
232867
233851
  export type TrelloMutationApiDeleteCustomFieldArgs = {
232868
233852
  input: TrelloDeleteCustomFieldInput;
232869
233853
  };