@forge/cli-shared 9.3.1-next.1 → 9.3.1-next.2

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'];
@@ -15897,6 +15907,7 @@ export type AssetsVerticalItemMappingEdge = {
15897
15907
  };
15898
15908
  export declare enum AssetsVerticalItemMappingErrorCode {
15899
15909
  Conflict = "CONFLICT",
15910
+ InvalidRequestTypeMapping = "INVALID_REQUEST_TYPE_MAPPING",
15900
15911
  InvalidVerticalInstantiationCategory = "INVALID_VERTICAL_INSTANTIATION_CATEGORY",
15901
15912
  NotFound = "NOT_FOUND",
15902
15913
  ParentVerticalInstantiationNotCompleted = "PARENT_VERTICAL_INSTANTIATION_NOT_COMPLETED",
@@ -20784,17 +20795,53 @@ export type CloudifyMetadataEntry = {
20784
20795
  key: Scalars['String']['output'];
20785
20796
  value: Scalars['String']['output'];
20786
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
+ }
20787
20821
  export type CloudifyProjectAri = {
20788
20822
  __typename?: 'CloudifyProjectARI';
20789
20823
  projectId: Scalars['ID']['output'];
20790
20824
  siteId: Scalars['ID']['output'];
20791
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
+ }
20792
20837
  export type CloudifyRecommendation = {
20793
20838
  __typename?: 'CloudifyRecommendation';
20794
20839
  analysisType: CloudifyAnalysisType;
20795
20840
  createdAt: Scalars['String']['output'];
20796
20841
  id: CloudifyRecommendationId;
20842
+ migrationAssessment?: Maybe<CloudifyMigrationAssessment>;
20797
20843
  reasoning: Scalars['String']['output'];
20844
+ resources: Array<CloudifyRecommendationResource>;
20798
20845
  source: CloudifyRecommendationSource;
20799
20846
  status: CloudifyRecommendationStatus;
20800
20847
  steps: Array<CloudifyRecommendationStep>;
@@ -20817,6 +20864,14 @@ export type CloudifyRecommendationInput = {
20817
20864
  target: CloudifyTargetInput;
20818
20865
  title: Scalars['String']['input'];
20819
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
+ }
20820
20875
  export type CloudifyRecommendationSource = {
20821
20876
  __typename?: 'CloudifyRecommendationSource';
20822
20877
  data: Array<CloudifySourceDataEntry>;
@@ -22149,6 +22204,7 @@ export type CommerceExpCcpPromotion = {
22149
22204
  promotionCodeType?: Maybe<CommerceExpPromotionCodeType>;
22150
22205
  promotionInstanceId?: Maybe<Scalars['String']['output']>;
22151
22206
  purpose?: Maybe<CommerceExpPromotionPurpose>;
22207
+ source?: Maybe<CommerceExpPromotionSource>;
22152
22208
  status?: Maybe<CommerceExpPromotionStatus>;
22153
22209
  title?: Maybe<Scalars['String']['output']>;
22154
22210
  type?: Maybe<CommerceExpPromotionType>;
@@ -24410,6 +24466,7 @@ export declare enum CommerceExpProcessingInfoStatus {
24410
24466
  }
24411
24467
  export type CommerceExpPromocodeIsApplicable = {
24412
24468
  __typename?: 'CommerceExpPromocodeIsApplicable';
24469
+ concessionKey?: Maybe<Scalars['String']['output']>;
24413
24470
  promotion?: Maybe<CommerceExpCcpPromotion>;
24414
24471
  promotionCode?: Maybe<Scalars['String']['output']>;
24415
24472
  promotionKey?: Maybe<Scalars['String']['output']>;
@@ -24474,6 +24531,10 @@ export type CommerceExpPromotionPurpose = {
24474
24531
  name?: Maybe<Scalars['String']['output']>;
24475
24532
  reasonCode?: Maybe<Scalars['String']['output']>;
24476
24533
  };
24534
+ export declare enum CommerceExpPromotionSource {
24535
+ Concession = "CONCESSION",
24536
+ Promotion = "PROMOTION"
24537
+ }
24477
24538
  export declare enum CommerceExpPromotionStatus {
24478
24539
  Active = "ACTIVE",
24479
24540
  Cancelled = "CANCELLED",
@@ -34599,6 +34660,8 @@ export type ConfluencePageInfo = {
34599
34660
  __typename?: 'ConfluencePageInfo';
34600
34661
  endCursor?: Maybe<Scalars['String']['output']>;
34601
34662
  hasNextPage: Scalars['Boolean']['output'];
34663
+ hasPreviousPage: Scalars['Boolean']['output'];
34664
+ startCursor?: Maybe<Scalars['String']['output']>;
34602
34665
  };
34603
34666
  export type ConfluencePageLinks = {
34604
34667
  __typename?: 'ConfluencePageLinks';
@@ -36853,6 +36916,7 @@ export type ConfluenceTemplatesSpaceTemplatesArgs = {
36853
36916
  export type ConfluenceTenantContext = {
36854
36917
  __typename?: 'ConfluenceTenantContext';
36855
36918
  baseUrl: Scalars['String']['output'];
36919
+ collabContextId?: Maybe<Scalars['String']['output']>;
36856
36920
  customDomainUrl?: Maybe<Scalars['String']['output']>;
36857
36921
  editions: Editions;
36858
36922
  initialProductList?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
@@ -45362,12 +45426,16 @@ export declare enum DevAiCodeSearchEnablementState {
45362
45426
  }
45363
45427
  export type DevAiConnectedRepoSearchResult = {
45364
45428
  __typename?: 'DevAiConnectedRepoSearchResult';
45429
+ hasNextPage: Scalars['Boolean']['output'];
45430
+ page: Scalars['Int']['output'];
45431
+ pagelen: Scalars['Int']['output'];
45365
45432
  repositories: Array<DevAiConnectedRepository>;
45433
+ size: Scalars['Int']['output'];
45366
45434
  };
45367
45435
  export type DevAiConnectedRepoWorkspaceFilter = {
45368
45436
  id: Scalars['String']['input'];
45369
45437
  name: Scalars['String']['input'];
45370
- scm?: InputMaybe<DevAiScmProvider>;
45438
+ scm: DevAiScmProvider;
45371
45439
  };
45372
45440
  export type DevAiConnectedRepository = {
45373
45441
  __typename?: 'DevAiConnectedRepository';
@@ -50329,6 +50397,7 @@ export type ExternalDocument = Node & {
50329
50397
  lastUpdatedBy?: Maybe<ExternalUser>;
50330
50398
  masterLanguage?: Maybe<Scalars['String']['output']>;
50331
50399
  nonIndexableContent?: Maybe<ExternalLargeContent>;
50400
+ ownerProviderUserId?: Maybe<Scalars['String']['output']>;
50332
50401
  owners?: Maybe<Array<Maybe<ExternalUser>>>;
50333
50402
  parent?: Maybe<ExternalEntity>;
50334
50403
  parentId?: Maybe<Scalars['ID']['output']>;
@@ -52893,7 +52962,7 @@ export type ForgeObservabilityFrontendLogContextInput = {
52893
52962
  userAgent: Scalars['String']['input'];
52894
52963
  };
52895
52964
  export type ForgeObservabilityFrontendLogEntryInput = {
52896
- args?: InputMaybe<Array<InputMaybe<Scalars['JSON']['input']>>>;
52965
+ args?: InputMaybe<Scalars['String']['input']>;
52897
52966
  errorType?: InputMaybe<Scalars['String']['input']>;
52898
52967
  logId: Scalars['ID']['input'];
52899
52968
  logSource: ForgeObservabilityFrontendLogSource;
@@ -54694,6 +54763,11 @@ export type GraphIntegrationConsentInput = {
54694
54763
  formUrlReferer: Scalars['URL']['input'];
54695
54764
  source: Scalars['String']['input'];
54696
54765
  };
54766
+ export type GraphIntegrationContainerRelationship = {
54767
+ __typename?: 'GraphIntegrationContainerRelationship';
54768
+ relationship: Scalars['String']['output'];
54769
+ type: Scalars['String']['output'];
54770
+ };
54697
54771
  export type GraphIntegrationCreateConnectionPayload = Payload & {
54698
54772
  __typename?: 'GraphIntegrationCreateConnectionPayload';
54699
54773
  connectionId?: Maybe<Scalars['ID']['output']>;
@@ -54857,6 +54931,21 @@ export type GraphIntegrationDataConnectorConnection = {
54857
54931
  id: Scalars['ID']['output'];
54858
54932
  name: Scalars['String']['output'];
54859
54933
  };
54934
+ export type GraphIntegrationDataProvider = {
54935
+ __typename?: 'GraphIntegrationDataProvider';
54936
+ documentationUrl?: Maybe<Scalars['String']['output']>;
54937
+ entityTypes: Array<GraphIntegrationDetailedEntityType>;
54938
+ externalProviderActions: Array<GraphIntegrationExternalProviderAction>;
54939
+ handledDomainName?: Maybe<Scalars['String']['output']>;
54940
+ homeUrl?: Maybe<Scalars['String']['output']>;
54941
+ id: Scalars['String']['output'];
54942
+ installationAri?: Maybe<Scalars['String']['output']>;
54943
+ logoUrl?: Maybe<Scalars['String']['output']>;
54944
+ name?: Maybe<Scalars['String']['output']>;
54945
+ namespace: GraphIntegrationProviderNamespace;
54946
+ projectContainerRelationships: Array<GraphIntegrationContainerRelationship>;
54947
+ providerType: GraphIntegrationProviderType;
54948
+ };
54860
54949
  export type GraphIntegrationDeleteConnectionPayload = Payload & {
54861
54950
  __typename?: 'GraphIntegrationDeleteConnectionPayload';
54862
54951
  errors?: Maybe<Array<MutationError>>;
@@ -54872,6 +54961,17 @@ export type GraphIntegrationDeleteSkillInput = {
54872
54961
  contextAri: Scalars['ID']['input'];
54873
54962
  skillAri: Scalars['ID']['input'];
54874
54963
  };
54964
+ export type GraphIntegrationDetailedEntityType = {
54965
+ __typename?: 'GraphIntegrationDetailedEntityType';
54966
+ ati?: Maybe<Scalars['String']['output']>;
54967
+ container?: Maybe<GraphIntegrationDetailedEntityTypeContainer>;
54968
+ name: GraphIntegrationProviderType;
54969
+ };
54970
+ export type GraphIntegrationDetailedEntityTypeContainer = {
54971
+ __typename?: 'GraphIntegrationDetailedEntityTypeContainer';
54972
+ ati: Scalars['String']['output'];
54973
+ name: GraphIntegrationProviderType;
54974
+ };
54875
54975
  export type GraphIntegrationDirectoryFilterDimension = {
54876
54976
  __typename?: 'GraphIntegrationDirectoryFilterDimension';
54877
54977
  displayName: Scalars['String']['output'];
@@ -54912,6 +55012,12 @@ export declare enum GraphIntegrationDirectoryItemType {
54912
55012
  PlatformSkill = "PLATFORM_SKILL",
54913
55013
  Skill = "SKILL"
54914
55014
  }
55015
+ export type GraphIntegrationExternalProviderAction = {
55016
+ __typename?: 'GraphIntegrationExternalProviderAction';
55017
+ id: Scalars['String']['output'];
55018
+ label?: Maybe<Scalars['String']['output']>;
55019
+ urlTemplate?: Maybe<Scalars['String']['output']>;
55020
+ };
54915
55021
  export type GraphIntegrationGlobalMcpServerNode = Node & {
54916
55022
  __typename?: 'GraphIntegrationGlobalMcpServerNode';
54917
55023
  displayName: Scalars['String']['output'];
@@ -55322,6 +55428,26 @@ export type GraphIntegrationMcpToolNodeEdge = {
55322
55428
  cursor: Scalars['String']['output'];
55323
55429
  node?: Maybe<GraphIntegrationMcpToolNode>;
55324
55430
  };
55431
+ export declare enum GraphIntegrationProviderNamespace {
55432
+ Asap = "ASAP",
55433
+ Classic = "CLASSIC",
55434
+ Forge = "FORGE",
55435
+ Oauth = "OAUTH",
55436
+ Unknown = "UNKNOWN"
55437
+ }
55438
+ export declare enum GraphIntegrationProviderType {
55439
+ Builds = "BUILDS",
55440
+ Deployments = "DEPLOYMENTS",
55441
+ Designs = "DESIGNS",
55442
+ DevelopmentInfo = "DEVELOPMENT_INFO",
55443
+ DevopsComponents = "DEVOPS_COMPONENTS",
55444
+ Documentation = "DOCUMENTATION",
55445
+ FeatureFlags = "FEATURE_FLAGS",
55446
+ Operations = "OPERATIONS",
55447
+ RemoteLinks = "REMOTE_LINKS",
55448
+ Repository = "REPOSITORY",
55449
+ Security = "SECURITY"
55450
+ }
55325
55451
  export type GraphIntegrationRbacCreateRecordInput = {
55326
55452
  cloudId: Scalars['ID']['input'];
55327
55453
  principalId: Scalars['String']['input'];
@@ -58418,6 +58544,7 @@ export type GraphStore = {
58418
58544
  atlassianUserOwnsExternalTestRunInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestRunInverseConnection>;
58419
58545
  atlassianUserOwnsExternalTestStatus?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusConnection>;
58420
58546
  atlassianUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection>;
58547
+ atlassianUserOwnsInferredProject?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectConnection>;
58421
58548
  atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
58422
58549
  atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
58423
58550
  atlassianUserTriggeredAtlassianAgentSessionInverse?: Maybe<GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection>;
@@ -58721,8 +58848,11 @@ export type GraphStore = {
58721
58848
  inferredDecisionSourceLineageEntity?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityConnection>;
58722
58849
  inferredDecisionSourceLineageEntityInverse?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseConnection>;
58723
58850
  inferredProjectLinksEntity?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityConnection>;
58851
+ inferredProjectLinksEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityInverseConnection>;
58852
+ inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
58724
58853
  inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
58725
58854
  inferredTeamLinksEntity?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityConnection>;
58855
+ inferredTeamLinksEntityInverse?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityInverseConnection>;
58726
58856
  issueAssociatedBranch?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchConnection>;
58727
58857
  issueAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseConnection>;
58728
58858
  issueAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
@@ -59167,6 +59297,8 @@ export type GraphStore = {
59167
59297
  testPerfhammerRelationshipInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
59168
59298
  testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
59169
59299
  thirdPartyToGraphRemoteLink?: Maybe<GraphStoreSimplifiedThirdPartyToGraphRemoteLinkConnection>;
59300
+ thirdPartyUserLinkedViaEmailThirdPartyUser?: Maybe<GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserConnection>;
59301
+ thirdPartyUserLinkedViaEmailThirdPartyUserInverse?: Maybe<GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseConnection>;
59170
59302
  topicHasRelatedEntity?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityConnection>;
59171
59303
  topicHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityInverseConnection>;
59172
59304
  townsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreSimplifiedTownsquareTagIsAliasOfTownsquareTagConnection>;
@@ -59298,6 +59430,7 @@ export type GraphStore = {
59298
59430
  userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
59299
59431
  userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
59300
59432
  userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
59433
+ userIsInInferredProject?: Maybe<GraphStoreSimplifiedUserIsInInferredProjectConnection>;
59301
59434
  userIsInInferredProjectInverse?: Maybe<GraphStoreSimplifiedUserIsInInferredProjectInverseConnection>;
59302
59435
  userIsInTeam?: Maybe<GraphStoreSimplifiedUserIsInTeamConnection>;
59303
59436
  userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
@@ -60609,6 +60742,14 @@ export type GraphStoreAtlassianUserOwnsExternalTestStatusInverseArgs = {
60609
60742
  queryContext?: InputMaybe<Scalars['String']['input']>;
60610
60743
  sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalTestStatusSortInput>;
60611
60744
  };
60745
+ export type GraphStoreAtlassianUserOwnsInferredProjectArgs = {
60746
+ after?: InputMaybe<Scalars['String']['input']>;
60747
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
60748
+ first?: InputMaybe<Scalars['Int']['input']>;
60749
+ id: Scalars['ID']['input'];
60750
+ queryContext?: InputMaybe<Scalars['String']['input']>;
60751
+ sort?: InputMaybe<GraphStoreAtlassianUserOwnsInferredProjectSortInput>;
60752
+ };
60612
60753
  export type GraphStoreAtlassianUserOwnsInferredProjectInverseArgs = {
60613
60754
  after?: InputMaybe<Scalars['String']['input']>;
60614
60755
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -62961,6 +63102,22 @@ export type GraphStoreInferredProjectLinksEntityArgs = {
62961
63102
  queryContext?: InputMaybe<Scalars['String']['input']>;
62962
63103
  sort?: InputMaybe<GraphStoreInferredProjectLinksEntitySortInput>;
62963
63104
  };
63105
+ export type GraphStoreInferredProjectLinksEntityInverseArgs = {
63106
+ after?: InputMaybe<Scalars['String']['input']>;
63107
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
63108
+ first?: InputMaybe<Scalars['Int']['input']>;
63109
+ id: Scalars['ID']['input'];
63110
+ queryContext?: InputMaybe<Scalars['String']['input']>;
63111
+ sort?: InputMaybe<GraphStoreInferredProjectLinksEntitySortInput>;
63112
+ };
63113
+ export type GraphStoreInferredTeamCollaboratesOnInferredProjectArgs = {
63114
+ after?: InputMaybe<Scalars['String']['input']>;
63115
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
63116
+ first?: InputMaybe<Scalars['Int']['input']>;
63117
+ id: Scalars['ID']['input'];
63118
+ queryContext?: InputMaybe<Scalars['String']['input']>;
63119
+ sort?: InputMaybe<GraphStoreInferredTeamCollaboratesOnInferredProjectSortInput>;
63120
+ };
62964
63121
  export type GraphStoreInferredTeamCollaboratesOnInferredProjectInverseArgs = {
62965
63122
  after?: InputMaybe<Scalars['String']['input']>;
62966
63123
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -62977,6 +63134,14 @@ export type GraphStoreInferredTeamLinksEntityArgs = {
62977
63134
  queryContext?: InputMaybe<Scalars['String']['input']>;
62978
63135
  sort?: InputMaybe<GraphStoreInferredTeamLinksEntitySortInput>;
62979
63136
  };
63137
+ export type GraphStoreInferredTeamLinksEntityInverseArgs = {
63138
+ after?: InputMaybe<Scalars['String']['input']>;
63139
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
63140
+ first?: InputMaybe<Scalars['Int']['input']>;
63141
+ id: Scalars['ID']['input'];
63142
+ queryContext?: InputMaybe<Scalars['String']['input']>;
63143
+ sort?: InputMaybe<GraphStoreInferredTeamLinksEntitySortInput>;
63144
+ };
62980
63145
  export type GraphStoreIssueAssociatedBranchArgs = {
62981
63146
  after?: InputMaybe<Scalars['String']['input']>;
62982
63147
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -66341,6 +66506,22 @@ export type GraphStoreThirdPartyToGraphRemoteLinkArgs = {
66341
66506
  queryContext?: InputMaybe<Scalars['String']['input']>;
66342
66507
  sort?: InputMaybe<GraphStoreThirdPartyToGraphRemoteLinkSortInput>;
66343
66508
  };
66509
+ export type GraphStoreThirdPartyUserLinkedViaEmailThirdPartyUserArgs = {
66510
+ after?: InputMaybe<Scalars['String']['input']>;
66511
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
66512
+ first?: InputMaybe<Scalars['Int']['input']>;
66513
+ id: Scalars['ID']['input'];
66514
+ queryContext?: InputMaybe<Scalars['String']['input']>;
66515
+ sort?: InputMaybe<GraphStoreThirdPartyUserLinkedViaEmailThirdPartyUserSortInput>;
66516
+ };
66517
+ export type GraphStoreThirdPartyUserLinkedViaEmailThirdPartyUserInverseArgs = {
66518
+ after?: InputMaybe<Scalars['String']['input']>;
66519
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
66520
+ first?: InputMaybe<Scalars['Int']['input']>;
66521
+ id: Scalars['ID']['input'];
66522
+ queryContext?: InputMaybe<Scalars['String']['input']>;
66523
+ sort?: InputMaybe<GraphStoreThirdPartyUserLinkedViaEmailThirdPartyUserSortInput>;
66524
+ };
66344
66525
  export type GraphStoreTopicHasRelatedEntityArgs = {
66345
66526
  after?: InputMaybe<Scalars['String']['input']>;
66346
66527
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -67393,6 +67574,14 @@ export type GraphStoreUserHasTopProjectInverseArgs = {
67393
67574
  queryContext?: InputMaybe<Scalars['String']['input']>;
67394
67575
  sort?: InputMaybe<GraphStoreUserHasTopProjectSortInput>;
67395
67576
  };
67577
+ export type GraphStoreUserIsInInferredProjectArgs = {
67578
+ after?: InputMaybe<Scalars['String']['input']>;
67579
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
67580
+ first?: InputMaybe<Scalars['Int']['input']>;
67581
+ id: Scalars['ID']['input'];
67582
+ queryContext?: InputMaybe<Scalars['String']['input']>;
67583
+ sort?: InputMaybe<GraphStoreUserIsInInferredProjectSortInput>;
67584
+ };
67396
67585
  export type GraphStoreUserIsInInferredProjectInverseArgs = {
67397
67586
  after?: InputMaybe<Scalars['String']['input']>;
67398
67587
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -76683,21 +76872,59 @@ export type GraphStoreIncidentLinkedJswIssueSortInput = {
76683
76872
  export type GraphStoreInferredDecisionImpactsEntitySortInput = {
76684
76873
  lastModified?: InputMaybe<GraphStoreSortInput>;
76685
76874
  };
76875
+ export type GraphStoreInferredDecisionNodeEvidenceSpanOutput = {
76876
+ __typename?: 'GraphStoreInferredDecisionNodeEvidenceSpanOutput';
76877
+ endOffset?: Maybe<Scalars['Long']['output']>;
76878
+ quote?: Maybe<Scalars['String']['output']>;
76879
+ source?: Maybe<Scalars['String']['output']>;
76880
+ startOffset?: Maybe<Scalars['Long']['output']>;
76881
+ };
76882
+ export declare enum GraphStoreInferredDecisionNodeInferredDecisionKindOutput {
76883
+ Decided = "DECIDED",
76884
+ NotSet = "NOT_SET",
76885
+ Open = "OPEN"
76886
+ }
76686
76887
  export declare enum GraphStoreInferredDecisionNodeInferredDecisionStatusOutput {
76687
76888
  Accepted = "ACCEPTED",
76688
76889
  NeedsReview = "NEEDS_REVIEW",
76689
76890
  NotSet = "NOT_SET",
76891
+ Published = "PUBLISHED",
76690
76892
  Rejected = "REJECTED"
76691
76893
  }
76894
+ export declare enum GraphStoreInferredDecisionNodeInferredDecisionSubtypeOutput {
76895
+ Commitment = "COMMITMENT",
76896
+ Design = "DESIGN",
76897
+ NotSet = "NOT_SET",
76898
+ Other = "OTHER",
76899
+ Prioritization = "PRIORITIZATION",
76900
+ Process = "PROCESS",
76901
+ Scope = "SCOPE",
76902
+ Staffing = "STAFFING",
76903
+ Technical = "TECHNICAL"
76904
+ }
76692
76905
  export type GraphStoreInferredDecisionNodeMetadata = {
76693
76906
  __typename?: 'GraphStoreInferredDecisionNodeMetadata';
76694
- claim?: Maybe<Scalars['String']['output']>;
76695
76907
  confidenceScore?: Maybe<Scalars['Float']['output']>;
76696
76908
  createdAt?: Maybe<Scalars['Long']['output']>;
76909
+ decidedBy?: Maybe<Scalars['String']['output']>;
76697
76910
  dedupeKey?: Maybe<Scalars['String']['output']>;
76911
+ evidenceSpans?: Maybe<GraphStoreInferredDecisionNodeEvidenceSpanOutput>;
76912
+ kind?: Maybe<GraphStoreInferredDecisionNodeInferredDecisionKindOutput>;
76698
76913
  lastUpdated?: Maybe<Scalars['Long']['output']>;
76699
76914
  normalizedClaimHash?: Maybe<Scalars['String']['output']>;
76915
+ provenance?: Maybe<GraphStoreInferredDecisionNodeProvenanceOutput>;
76700
76916
  status?: Maybe<GraphStoreInferredDecisionNodeInferredDecisionStatusOutput>;
76917
+ subtype?: Maybe<GraphStoreInferredDecisionNodeInferredDecisionSubtypeOutput>;
76918
+ summary?: Maybe<Scalars['String']['output']>;
76919
+ title?: Maybe<Scalars['String']['output']>;
76920
+ };
76921
+ export type GraphStoreInferredDecisionNodeProvenanceOutput = {
76922
+ __typename?: 'GraphStoreInferredDecisionNodeProvenanceOutput';
76923
+ appId?: Maybe<Scalars['String']['output']>;
76924
+ appVersion?: Maybe<Scalars['Int']['output']>;
76925
+ executionMode?: Maybe<Scalars['String']['output']>;
76926
+ modelProvider?: Maybe<Scalars['String']['output']>;
76927
+ sourceVersion?: Maybe<Scalars['String']['output']>;
76701
76928
  };
76702
76929
  export type GraphStoreInferredDecisionSourceLineageEntitySortInput = {
76703
76930
  lastModified?: InputMaybe<GraphStoreSortInput>;
@@ -79917,6 +80144,19 @@ export type GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseEdge =
79917
80144
  };
79918
80145
  export type GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
79919
80146
  export type GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusUnion = ExternalTestStatus;
80147
+ export type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectConnection = HasPageInfo & {
80148
+ __typename?: 'GraphStoreSimplifiedAtlassianUserOwnsInferredProjectConnection';
80149
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectEdge>>>;
80150
+ pageInfo: PageInfo;
80151
+ };
80152
+ export type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectEdge = {
80153
+ __typename?: 'GraphStoreSimplifiedAtlassianUserOwnsInferredProjectEdge';
80154
+ createdAt: Scalars['DateTime']['output'];
80155
+ cursor?: Maybe<Scalars['String']['output']>;
80156
+ id: Scalars['ID']['output'];
80157
+ lastUpdated: Scalars['DateTime']['output'];
80158
+ node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectUnion>;
80159
+ };
79920
80160
  export type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection = HasPageInfo & {
79921
80161
  __typename?: 'GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection';
79922
80162
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseEdge>>>;
@@ -79931,6 +80171,7 @@ export type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseEdge = {
79931
80171
  node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseUnion>;
79932
80172
  };
79933
80173
  export type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
80174
+ export type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectUnion = GraphStoreNodeResponse;
79934
80175
  export type GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection = HasPageInfo & {
79935
80176
  __typename?: 'GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection';
79936
80177
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge>>>;
@@ -83392,7 +83633,7 @@ export type GraphStoreSimplifiedInferredDecisionImpactsEntityInverseEdge = {
83392
83633
  node?: Maybe<GraphStoreSimplifiedInferredDecisionImpactsEntityInverseUnion>;
83393
83634
  };
83394
83635
  export type GraphStoreSimplifiedInferredDecisionImpactsEntityInverseUnion = GraphStoreNodeResponse;
83395
- export type GraphStoreSimplifiedInferredDecisionImpactsEntityUnion = TownsquareProject;
83636
+ export type GraphStoreSimplifiedInferredDecisionImpactsEntityUnion = GraphStoreNodeResponse | TownsquareProject;
83396
83637
  export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityConnection = HasPageInfo & {
83397
83638
  __typename?: 'GraphStoreSimplifiedInferredDecisionSourceLineageEntityConnection';
83398
83639
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityEdge>>>;
@@ -83434,7 +83675,34 @@ export type GraphStoreSimplifiedInferredProjectLinksEntityEdge = {
83434
83675
  lastUpdated: Scalars['DateTime']['output'];
83435
83676
  node?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityUnion>;
83436
83677
  };
83678
+ export type GraphStoreSimplifiedInferredProjectLinksEntityInverseConnection = HasPageInfo & {
83679
+ __typename?: 'GraphStoreSimplifiedInferredProjectLinksEntityInverseConnection';
83680
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredProjectLinksEntityInverseEdge>>>;
83681
+ pageInfo: PageInfo;
83682
+ };
83683
+ export type GraphStoreSimplifiedInferredProjectLinksEntityInverseEdge = {
83684
+ __typename?: 'GraphStoreSimplifiedInferredProjectLinksEntityInverseEdge';
83685
+ createdAt: Scalars['DateTime']['output'];
83686
+ cursor?: Maybe<Scalars['String']['output']>;
83687
+ id: Scalars['ID']['output'];
83688
+ lastUpdated: Scalars['DateTime']['output'];
83689
+ node?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityInverseUnion>;
83690
+ };
83691
+ export type GraphStoreSimplifiedInferredProjectLinksEntityInverseUnion = GraphStoreNodeResponse;
83437
83692
  export type GraphStoreSimplifiedInferredProjectLinksEntityUnion = ConfluencePage | JiraIssue | JiraProject;
83693
+ export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection = HasPageInfo & {
83694
+ __typename?: 'GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection';
83695
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectEdge>>>;
83696
+ pageInfo: PageInfo;
83697
+ };
83698
+ export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectEdge = {
83699
+ __typename?: 'GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectEdge';
83700
+ createdAt: Scalars['DateTime']['output'];
83701
+ cursor?: Maybe<Scalars['String']['output']>;
83702
+ id: Scalars['ID']['output'];
83703
+ lastUpdated: Scalars['DateTime']['output'];
83704
+ node?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectUnion>;
83705
+ };
83438
83706
  export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection = HasPageInfo & {
83439
83707
  __typename?: 'GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection';
83440
83708
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge>>>;
@@ -83448,7 +83716,8 @@ export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverse
83448
83716
  lastUpdated: Scalars['DateTime']['output'];
83449
83717
  node?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion>;
83450
83718
  };
83451
- export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion = JiraProject;
83719
+ export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion = GraphStoreNodeResponse | JiraProject;
83720
+ export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectUnion = GraphStoreNodeResponse;
83452
83721
  export type GraphStoreSimplifiedInferredTeamLinksEntityConnection = HasPageInfo & {
83453
83722
  __typename?: 'GraphStoreSimplifiedInferredTeamLinksEntityConnection';
83454
83723
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredTeamLinksEntityEdge>>>;
@@ -83462,6 +83731,20 @@ export type GraphStoreSimplifiedInferredTeamLinksEntityEdge = {
83462
83731
  lastUpdated: Scalars['DateTime']['output'];
83463
83732
  node?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityUnion>;
83464
83733
  };
83734
+ export type GraphStoreSimplifiedInferredTeamLinksEntityInverseConnection = HasPageInfo & {
83735
+ __typename?: 'GraphStoreSimplifiedInferredTeamLinksEntityInverseConnection';
83736
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredTeamLinksEntityInverseEdge>>>;
83737
+ pageInfo: PageInfo;
83738
+ };
83739
+ export type GraphStoreSimplifiedInferredTeamLinksEntityInverseEdge = {
83740
+ __typename?: 'GraphStoreSimplifiedInferredTeamLinksEntityInverseEdge';
83741
+ createdAt: Scalars['DateTime']['output'];
83742
+ cursor?: Maybe<Scalars['String']['output']>;
83743
+ id: Scalars['ID']['output'];
83744
+ lastUpdated: Scalars['DateTime']['output'];
83745
+ node?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityInverseUnion>;
83746
+ };
83747
+ export type GraphStoreSimplifiedInferredTeamLinksEntityInverseUnion = GraphStoreNodeResponse;
83465
83748
  export type GraphStoreSimplifiedInferredTeamLinksEntityUnion = ConfluenceSpace | JiraProject;
83466
83749
  export type GraphStoreSimplifiedIssueAssociatedBranchConnection = HasPageInfo & HasTotal & {
83467
83750
  __typename?: 'GraphStoreSimplifiedIssueAssociatedBranchConnection';
@@ -87627,6 +87910,34 @@ export type GraphStoreSimplifiedThirdPartyToGraphRemoteLinkEdge = {
87627
87910
  node?: Maybe<GraphStoreSimplifiedThirdPartyToGraphRemoteLinkUnion>;
87628
87911
  };
87629
87912
  export type GraphStoreSimplifiedThirdPartyToGraphRemoteLinkUnion = ExternalRemoteLink;
87913
+ export type GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserConnection = HasPageInfo & {
87914
+ __typename?: 'GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserConnection';
87915
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserEdge>>>;
87916
+ pageInfo: PageInfo;
87917
+ };
87918
+ export type GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserEdge = {
87919
+ __typename?: 'GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserEdge';
87920
+ createdAt: Scalars['DateTime']['output'];
87921
+ cursor?: Maybe<Scalars['String']['output']>;
87922
+ id: Scalars['ID']['output'];
87923
+ lastUpdated: Scalars['DateTime']['output'];
87924
+ node?: Maybe<GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserUnion>;
87925
+ };
87926
+ export type GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseConnection = HasPageInfo & {
87927
+ __typename?: 'GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseConnection';
87928
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseEdge>>>;
87929
+ pageInfo: PageInfo;
87930
+ };
87931
+ export type GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseEdge = {
87932
+ __typename?: 'GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseEdge';
87933
+ createdAt: Scalars['DateTime']['output'];
87934
+ cursor?: Maybe<Scalars['String']['output']>;
87935
+ id: Scalars['ID']['output'];
87936
+ lastUpdated: Scalars['DateTime']['output'];
87937
+ node?: Maybe<GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseUnion>;
87938
+ };
87939
+ export type GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseUnion = ThirdPartyUser;
87940
+ export type GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserUnion = ThirdPartyUser;
87630
87941
  export type GraphStoreSimplifiedTopicHasRelatedEntityConnection = HasPageInfo & {
87631
87942
  __typename?: 'GraphStoreSimplifiedTopicHasRelatedEntityConnection';
87632
87943
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTopicHasRelatedEntityEdge>>>;
@@ -89469,6 +89780,19 @@ export type GraphStoreSimplifiedUserHasTopProjectInverseEdge = {
89469
89780
  };
89470
89781
  export type GraphStoreSimplifiedUserHasTopProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
89471
89782
  export type GraphStoreSimplifiedUserHasTopProjectUnion = JiraProject;
89783
+ export type GraphStoreSimplifiedUserIsInInferredProjectConnection = HasPageInfo & {
89784
+ __typename?: 'GraphStoreSimplifiedUserIsInInferredProjectConnection';
89785
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserIsInInferredProjectEdge>>>;
89786
+ pageInfo: PageInfo;
89787
+ };
89788
+ export type GraphStoreSimplifiedUserIsInInferredProjectEdge = {
89789
+ __typename?: 'GraphStoreSimplifiedUserIsInInferredProjectEdge';
89790
+ createdAt: Scalars['DateTime']['output'];
89791
+ cursor?: Maybe<Scalars['String']['output']>;
89792
+ id: Scalars['ID']['output'];
89793
+ lastUpdated: Scalars['DateTime']['output'];
89794
+ node?: Maybe<GraphStoreSimplifiedUserIsInInferredProjectUnion>;
89795
+ };
89472
89796
  export type GraphStoreSimplifiedUserIsInInferredProjectInverseConnection = HasPageInfo & {
89473
89797
  __typename?: 'GraphStoreSimplifiedUserIsInInferredProjectInverseConnection';
89474
89798
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserIsInInferredProjectInverseEdge>>>;
@@ -89483,6 +89807,7 @@ export type GraphStoreSimplifiedUserIsInInferredProjectInverseEdge = {
89483
89807
  node?: Maybe<GraphStoreSimplifiedUserIsInInferredProjectInverseUnion>;
89484
89808
  };
89485
89809
  export type GraphStoreSimplifiedUserIsInInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
89810
+ export type GraphStoreSimplifiedUserIsInInferredProjectUnion = GraphStoreNodeResponse;
89486
89811
  export type GraphStoreSimplifiedUserIsInTeamConnection = HasPageInfo & {
89487
89812
  __typename?: 'GraphStoreSimplifiedUserIsInTeamConnection';
89488
89813
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserIsInTeamEdge>>>;
@@ -92366,6 +92691,9 @@ export type GraphStoreTestPerfhammerRelationshipSortInput = {
92366
92691
  export type GraphStoreThirdPartyToGraphRemoteLinkSortInput = {
92367
92692
  lastModified?: InputMaybe<GraphStoreSortInput>;
92368
92693
  };
92694
+ export type GraphStoreThirdPartyUserLinkedViaEmailThirdPartyUserSortInput = {
92695
+ lastModified?: InputMaybe<GraphStoreSortInput>;
92696
+ };
92369
92697
  export type GraphStoreTopicHasRelatedEntitySortInput = {
92370
92698
  lastModified?: InputMaybe<GraphStoreSortInput>;
92371
92699
  };
@@ -92995,6 +93323,7 @@ export type GraphStoreV2 = {
92995
93323
  atlassianUserAuthoritativelyLinkedExternalUserInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserAuthoritativelyLinkedExternalUserInverseConnection>;
92996
93324
  atlassianUserCanViewConfluenceSpace?: Maybe<GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceConnection>;
92997
93325
  atlassianUserCanViewConfluenceSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceInverseConnection>;
93326
+ atlassianUserCollaboratesOnInferredProject?: Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectConnection>;
92998
93327
  atlassianUserCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseConnection>;
92999
93328
  atlassianUserContributedToConfluenceBlogpost?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostConnection>;
93000
93329
  atlassianUserContributedToConfluenceBlogpostInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostInverseConnection>;
@@ -93134,6 +93463,7 @@ export type GraphStoreV2 = {
93134
93463
  atlassianUserOwnsFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusFocusAreaInverseConnection>;
93135
93464
  atlassianUserOwnsFocusStrategicPlan?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanConnection>;
93136
93465
  atlassianUserOwnsFocusStrategicPlanInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseConnection>;
93466
+ atlassianUserOwnsInferredProject?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectConnection>;
93137
93467
  atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
93138
93468
  atlassianUserReactedToJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection>;
93139
93469
  atlassianUserReactedToJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentInverseConnection>;
@@ -93629,8 +93959,11 @@ export type GraphStoreV2 = {
93629
93959
  inferredDecisionSourceLineageEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseConnection>;
93630
93960
  inferredEntities?: Maybe<Array<GraphStoreInferredEntityResponse>>;
93631
93961
  inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
93962
+ inferredProjectLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityInverseConnection>;
93963
+ inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
93632
93964
  inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
93633
93965
  inferredTeamLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityConnection>;
93966
+ inferredTeamLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityInverseConnection>;
93634
93967
  jiraEpicTracksAtlassianProject?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection>;
93635
93968
  jiraEpicTracksAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectInverseConnection>;
93636
93969
  jiraProjectAgentKnowledgeContextHasKnowledgeBaseEntity?: Maybe<GraphStoreV2SimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityConnection>;
@@ -93817,6 +94150,8 @@ export type GraphStoreV2 = {
93817
94150
  talentWorkerLinksExternalWorker?: Maybe<GraphStoreV2SimplifiedTalentWorkerLinksExternalWorkerConnection>;
93818
94151
  talentWorkerLinksExternalWorkerInverse?: Maybe<GraphStoreV2SimplifiedTalentWorkerLinksExternalWorkerInverseConnection>;
93819
94152
  thirdPartyRemoteLinkLinksExternalRemoteLink?: Maybe<GraphStoreV2SimplifiedThirdPartyRemoteLinkLinksExternalRemoteLinkConnection>;
94153
+ thirdPartyUserLinkedViaEmailThirdPartyUser?: Maybe<GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserConnection>;
94154
+ thirdPartyUserLinkedViaEmailThirdPartyUserInverse?: Maybe<GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseConnection>;
93820
94155
  topicHasRelatedEntity?: Maybe<GraphStoreV2SimplifiedTopicHasRelatedEntityConnection>;
93821
94156
  topicHasRelatedEntityInverse?: Maybe<GraphStoreV2SimplifiedTopicHasRelatedEntityInverseConnection>;
93822
94157
  };
@@ -94319,6 +94654,13 @@ export type GraphStoreV2AtlassianUserCanViewConfluenceSpaceInverseArgs = {
94319
94654
  id: Scalars['ID']['input'];
94320
94655
  sort?: InputMaybe<GraphStoreV2AtlassianUserCanViewConfluenceSpaceSortInput>;
94321
94656
  };
94657
+ export type GraphStoreV2AtlassianUserCollaboratesOnInferredProjectArgs = {
94658
+ after?: InputMaybe<Scalars['String']['input']>;
94659
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
94660
+ first?: InputMaybe<Scalars['Int']['input']>;
94661
+ id: Scalars['ID']['input'];
94662
+ sort?: InputMaybe<GraphStoreV2AtlassianUserCollaboratesOnInferredProjectSortInput>;
94663
+ };
94322
94664
  export type GraphStoreV2AtlassianUserCollaboratesOnInferredProjectInverseArgs = {
94323
94665
  after?: InputMaybe<Scalars['String']['input']>;
94324
94666
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -95298,6 +95640,13 @@ export type GraphStoreV2AtlassianUserOwnsFocusStrategicPlanInverseArgs = {
95298
95640
  id: Scalars['ID']['input'];
95299
95641
  sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsFocusStrategicPlanSortInput>;
95300
95642
  };
95643
+ export type GraphStoreV2AtlassianUserOwnsInferredProjectArgs = {
95644
+ after?: InputMaybe<Scalars['String']['input']>;
95645
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
95646
+ first?: InputMaybe<Scalars['Int']['input']>;
95647
+ id: Scalars['ID']['input'];
95648
+ sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsInferredProjectSortInput>;
95649
+ };
95301
95650
  export type GraphStoreV2AtlassianUserOwnsInferredProjectInverseArgs = {
95302
95651
  after?: InputMaybe<Scalars['String']['input']>;
95303
95652
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -98766,6 +99115,20 @@ export type GraphStoreV2InferredProjectLinksEntityArgs = {
98766
99115
  id: Scalars['ID']['input'];
98767
99116
  sort?: InputMaybe<GraphStoreV2InferredProjectLinksEntitySortInput>;
98768
99117
  };
99118
+ export type GraphStoreV2InferredProjectLinksEntityInverseArgs = {
99119
+ after?: InputMaybe<Scalars['String']['input']>;
99120
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
99121
+ first?: InputMaybe<Scalars['Int']['input']>;
99122
+ id: Scalars['ID']['input'];
99123
+ sort?: InputMaybe<GraphStoreV2InferredProjectLinksEntitySortInput>;
99124
+ };
99125
+ export type GraphStoreV2InferredTeamCollaboratesOnInferredProjectArgs = {
99126
+ after?: InputMaybe<Scalars['String']['input']>;
99127
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
99128
+ first?: InputMaybe<Scalars['Int']['input']>;
99129
+ id: Scalars['ID']['input'];
99130
+ sort?: InputMaybe<GraphStoreV2InferredTeamCollaboratesOnInferredProjectSortInput>;
99131
+ };
98769
99132
  export type GraphStoreV2InferredTeamCollaboratesOnInferredProjectInverseArgs = {
98770
99133
  after?: InputMaybe<Scalars['String']['input']>;
98771
99134
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -98780,6 +99143,13 @@ export type GraphStoreV2InferredTeamLinksEntityArgs = {
98780
99143
  id: Scalars['ID']['input'];
98781
99144
  sort?: InputMaybe<GraphStoreV2InferredTeamLinksEntitySortInput>;
98782
99145
  };
99146
+ export type GraphStoreV2InferredTeamLinksEntityInverseArgs = {
99147
+ after?: InputMaybe<Scalars['String']['input']>;
99148
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
99149
+ first?: InputMaybe<Scalars['Int']['input']>;
99150
+ id: Scalars['ID']['input'];
99151
+ sort?: InputMaybe<GraphStoreV2InferredTeamLinksEntitySortInput>;
99152
+ };
98783
99153
  export type GraphStoreV2JiraEpicTracksAtlassianProjectArgs = {
98784
99154
  after?: InputMaybe<Scalars['String']['input']>;
98785
99155
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -100118,6 +100488,20 @@ export type GraphStoreV2ThirdPartyRemoteLinkLinksExternalRemoteLinkArgs = {
100118
100488
  id: Scalars['ID']['input'];
100119
100489
  sort?: InputMaybe<GraphStoreV2ThirdPartyRemoteLinkLinksExternalRemoteLinkSortInput>;
100120
100490
  };
100491
+ export type GraphStoreV2ThirdPartyUserLinkedViaEmailThirdPartyUserArgs = {
100492
+ after?: InputMaybe<Scalars['String']['input']>;
100493
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
100494
+ first?: InputMaybe<Scalars['Int']['input']>;
100495
+ id: Scalars['ID']['input'];
100496
+ sort?: InputMaybe<GraphStoreV2ThirdPartyUserLinkedViaEmailThirdPartyUserSortInput>;
100497
+ };
100498
+ export type GraphStoreV2ThirdPartyUserLinkedViaEmailThirdPartyUserInverseArgs = {
100499
+ after?: InputMaybe<Scalars['String']['input']>;
100500
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
100501
+ first?: InputMaybe<Scalars['Int']['input']>;
100502
+ id: Scalars['ID']['input'];
100503
+ sort?: InputMaybe<GraphStoreV2ThirdPartyUserLinkedViaEmailThirdPartyUserSortInput>;
100504
+ };
100121
100505
  export type GraphStoreV2TopicHasRelatedEntityArgs = {
100122
100506
  after?: InputMaybe<Scalars['String']['input']>;
100123
100507
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -105197,6 +105581,19 @@ export type GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceInverseEdge
105197
105581
  };
105198
105582
  export type GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
105199
105583
  export type GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceUnion = ConfluenceSpace;
105584
+ export type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectConnection = HasPageInfo & {
105585
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectConnection';
105586
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectEdge>>>;
105587
+ pageInfo: PageInfo;
105588
+ };
105589
+ export type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectEdge = {
105590
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectEdge';
105591
+ createdAt: Scalars['DateTime']['output'];
105592
+ cursor?: Maybe<Scalars['String']['output']>;
105593
+ id: Scalars['ID']['output'];
105594
+ lastUpdated: Scalars['DateTime']['output'];
105595
+ node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectUnion>;
105596
+ };
105200
105597
  export type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseConnection = HasPageInfo & {
105201
105598
  __typename?: 'GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseConnection';
105202
105599
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseEdge>>>;
@@ -105211,6 +105608,7 @@ export type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInve
105211
105608
  node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseUnion>;
105212
105609
  };
105213
105610
  export type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
105611
+ export type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectUnion = GraphStoreNodeResponse;
105214
105612
  export type GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostConnection = HasPageInfo & {
105215
105613
  __typename?: 'GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostConnection';
105216
105614
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostEdge>>>;
@@ -107175,6 +107573,19 @@ export type GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseEdge
107175
107573
  };
107176
107574
  export type GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
107177
107575
  export type GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanUnion = SpfPlan;
107576
+ export type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectConnection = HasPageInfo & {
107577
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectConnection';
107578
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectEdge>>>;
107579
+ pageInfo: PageInfo;
107580
+ };
107581
+ export type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectEdge = {
107582
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectEdge';
107583
+ createdAt: Scalars['DateTime']['output'];
107584
+ cursor?: Maybe<Scalars['String']['output']>;
107585
+ id: Scalars['ID']['output'];
107586
+ lastUpdated: Scalars['DateTime']['output'];
107587
+ node?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectUnion>;
107588
+ };
107178
107589
  export type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseConnection = HasPageInfo & {
107179
107590
  __typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseConnection';
107180
107591
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseEdge>>>;
@@ -107189,6 +107600,7 @@ export type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseEdge =
107189
107600
  node?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseUnion>;
107190
107601
  };
107191
107602
  export type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
107603
+ export type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectUnion = GraphStoreNodeResponse;
107192
107604
  export type GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection = HasPageInfo & {
107193
107605
  __typename?: 'GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection';
107194
107606
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentEdge>>>;
@@ -114042,7 +114454,7 @@ export type GraphStoreV2SimplifiedInferredDecisionImpactsEntityInverseEdge = {
114042
114454
  node?: Maybe<GraphStoreV2SimplifiedInferredDecisionImpactsEntityInverseUnion>;
114043
114455
  };
114044
114456
  export type GraphStoreV2SimplifiedInferredDecisionImpactsEntityInverseUnion = GraphStoreNodeResponse;
114045
- export type GraphStoreV2SimplifiedInferredDecisionImpactsEntityUnion = TownsquareProject;
114457
+ export type GraphStoreV2SimplifiedInferredDecisionImpactsEntityUnion = GraphStoreNodeResponse | TownsquareProject;
114046
114458
  export type GraphStoreV2SimplifiedInferredDecisionLinksEntityConnection = HasPageInfo & {
114047
114459
  __typename?: 'GraphStoreV2SimplifiedInferredDecisionLinksEntityConnection';
114048
114460
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredDecisionLinksEntityEdge>>>;
@@ -114112,7 +114524,34 @@ export type GraphStoreV2SimplifiedInferredProjectLinksEntityEdge = {
114112
114524
  lastUpdated: Scalars['DateTime']['output'];
114113
114525
  node?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityUnion>;
114114
114526
  };
114527
+ export type GraphStoreV2SimplifiedInferredProjectLinksEntityInverseConnection = HasPageInfo & {
114528
+ __typename?: 'GraphStoreV2SimplifiedInferredProjectLinksEntityInverseConnection';
114529
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityInverseEdge>>>;
114530
+ pageInfo: PageInfo;
114531
+ };
114532
+ export type GraphStoreV2SimplifiedInferredProjectLinksEntityInverseEdge = {
114533
+ __typename?: 'GraphStoreV2SimplifiedInferredProjectLinksEntityInverseEdge';
114534
+ createdAt: Scalars['DateTime']['output'];
114535
+ cursor?: Maybe<Scalars['String']['output']>;
114536
+ id: Scalars['ID']['output'];
114537
+ lastUpdated: Scalars['DateTime']['output'];
114538
+ node?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityInverseUnion>;
114539
+ };
114540
+ export type GraphStoreV2SimplifiedInferredProjectLinksEntityInverseUnion = GraphStoreNodeResponse;
114115
114541
  export type GraphStoreV2SimplifiedInferredProjectLinksEntityUnion = ConfluencePage | JiraIssue | JiraProject;
114542
+ export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection = HasPageInfo & {
114543
+ __typename?: 'GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection';
114544
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectEdge>>>;
114545
+ pageInfo: PageInfo;
114546
+ };
114547
+ export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectEdge = {
114548
+ __typename?: 'GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectEdge';
114549
+ createdAt: Scalars['DateTime']['output'];
114550
+ cursor?: Maybe<Scalars['String']['output']>;
114551
+ id: Scalars['ID']['output'];
114552
+ lastUpdated: Scalars['DateTime']['output'];
114553
+ node?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectUnion>;
114554
+ };
114116
114555
  export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection = HasPageInfo & {
114117
114556
  __typename?: 'GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection';
114118
114557
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge>>>;
@@ -114126,7 +114565,8 @@ export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInver
114126
114565
  lastUpdated: Scalars['DateTime']['output'];
114127
114566
  node?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion>;
114128
114567
  };
114129
- export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion = JiraProject;
114568
+ export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion = GraphStoreNodeResponse | JiraProject;
114569
+ export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectUnion = GraphStoreNodeResponse;
114130
114570
  export type GraphStoreV2SimplifiedInferredTeamLinksEntityConnection = HasPageInfo & {
114131
114571
  __typename?: 'GraphStoreV2SimplifiedInferredTeamLinksEntityConnection';
114132
114572
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityEdge>>>;
@@ -114140,6 +114580,20 @@ export type GraphStoreV2SimplifiedInferredTeamLinksEntityEdge = {
114140
114580
  lastUpdated: Scalars['DateTime']['output'];
114141
114581
  node?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityUnion>;
114142
114582
  };
114583
+ export type GraphStoreV2SimplifiedInferredTeamLinksEntityInverseConnection = HasPageInfo & {
114584
+ __typename?: 'GraphStoreV2SimplifiedInferredTeamLinksEntityInverseConnection';
114585
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityInverseEdge>>>;
114586
+ pageInfo: PageInfo;
114587
+ };
114588
+ export type GraphStoreV2SimplifiedInferredTeamLinksEntityInverseEdge = {
114589
+ __typename?: 'GraphStoreV2SimplifiedInferredTeamLinksEntityInverseEdge';
114590
+ createdAt: Scalars['DateTime']['output'];
114591
+ cursor?: Maybe<Scalars['String']['output']>;
114592
+ id: Scalars['ID']['output'];
114593
+ lastUpdated: Scalars['DateTime']['output'];
114594
+ node?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityInverseUnion>;
114595
+ };
114596
+ export type GraphStoreV2SimplifiedInferredTeamLinksEntityInverseUnion = GraphStoreNodeResponse;
114143
114597
  export type GraphStoreV2SimplifiedInferredTeamLinksEntityUnion = ConfluenceSpace | JiraProject;
114144
114598
  export type GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection = HasPageInfo & {
114145
114599
  __typename?: 'GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection';
@@ -116967,6 +117421,34 @@ export type GraphStoreV2SimplifiedThirdPartyRemoteLinkLinksExternalRemoteLinkEdg
116967
117421
  node?: Maybe<GraphStoreV2SimplifiedThirdPartyRemoteLinkLinksExternalRemoteLinkUnion>;
116968
117422
  };
116969
117423
  export type GraphStoreV2SimplifiedThirdPartyRemoteLinkLinksExternalRemoteLinkUnion = ExternalRemoteLink;
117424
+ export type GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserConnection = HasPageInfo & {
117425
+ __typename?: 'GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserConnection';
117426
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserEdge>>>;
117427
+ pageInfo: PageInfo;
117428
+ };
117429
+ export type GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserEdge = {
117430
+ __typename?: 'GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserEdge';
117431
+ createdAt: Scalars['DateTime']['output'];
117432
+ cursor?: Maybe<Scalars['String']['output']>;
117433
+ id: Scalars['ID']['output'];
117434
+ lastUpdated: Scalars['DateTime']['output'];
117435
+ node?: Maybe<GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserUnion>;
117436
+ };
117437
+ export type GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseConnection = HasPageInfo & {
117438
+ __typename?: 'GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseConnection';
117439
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseEdge>>>;
117440
+ pageInfo: PageInfo;
117441
+ };
117442
+ export type GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseEdge = {
117443
+ __typename?: 'GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseEdge';
117444
+ createdAt: Scalars['DateTime']['output'];
117445
+ cursor?: Maybe<Scalars['String']['output']>;
117446
+ id: Scalars['ID']['output'];
117447
+ lastUpdated: Scalars['DateTime']['output'];
117448
+ node?: Maybe<GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseUnion>;
117449
+ };
117450
+ export type GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseUnion = ThirdPartyUser;
117451
+ export type GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserUnion = ThirdPartyUser;
116970
117452
  export type GraphStoreV2SimplifiedTopicHasRelatedEntityConnection = HasPageInfo & {
116971
117453
  __typename?: 'GraphStoreV2SimplifiedTopicHasRelatedEntityConnection';
116972
117454
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedTopicHasRelatedEntityEdge>>>;
@@ -117004,6 +117486,9 @@ export type GraphStoreV2TalentWorkerLinksExternalWorkerSortInput = {
117004
117486
  export type GraphStoreV2ThirdPartyRemoteLinkLinksExternalRemoteLinkSortInput = {
117005
117487
  lastModified?: InputMaybe<GraphStoreSortInput>;
117006
117488
  };
117489
+ export type GraphStoreV2ThirdPartyUserLinkedViaEmailThirdPartyUserSortInput = {
117490
+ lastModified?: InputMaybe<GraphStoreSortInput>;
117491
+ };
117007
117492
  export type GraphStoreV2TopicHasRelatedEntitySortInput = {
117008
117493
  lastModified?: InputMaybe<GraphStoreSortInput>;
117009
117494
  };
@@ -117145,6 +117630,15 @@ export type GravityAddCommentInput = {
117145
117630
  draftId: Scalars['String']['input'];
117146
117631
  parentCommentId?: InputMaybe<Scalars['String']['input']>;
117147
117632
  };
117633
+ export type GravityAddInlineCommentInput = {
117634
+ annotationId?: InputMaybe<Scalars['String']['input']>;
117635
+ commentContent: Scalars['String']['input'];
117636
+ content: Scalars['String']['input'];
117637
+ draftId: Scalars['String']['input'];
117638
+ expectedRevision: Scalars['Int']['input'];
117639
+ origin?: InputMaybe<GravityDraftOrigin>;
117640
+ parentCommentId?: InputMaybe<Scalars['String']['input']>;
117641
+ };
117148
117642
  export type GravityAddReactionInput = {
117149
117643
  emojiId: Scalars['ID']['input'];
117150
117644
  entity: GravityReactionEntityType;
@@ -117297,6 +117791,7 @@ export type GravityDraftComment = {
117297
117791
  draftId: Scalars['String']['output'];
117298
117792
  id: Scalars['String']['output'];
117299
117793
  parentCommentId?: Maybe<Scalars['String']['output']>;
117794
+ resolved: Scalars['Boolean']['output'];
117300
117795
  };
117301
117796
  export declare enum GravityDraftOrigin {
117302
117797
  Ai = "AI",
@@ -117500,6 +117995,14 @@ export declare enum GravityRefResolutionStrategy {
117500
117995
  FailIfUnmapped = "FAIL_IF_UNMAPPED",
117501
117996
  MatchThenCreateIfUnmapped = "MATCH_THEN_CREATE_IF_UNMAPPED"
117502
117997
  }
117998
+ export type GravityReviseDraftInput = {
117999
+ content: Scalars['String']['input'];
118000
+ draftId: Scalars['String']['input'];
118001
+ expectedRevision: Scalars['Int']['input'];
118002
+ origin?: InputMaybe<GravityDraftOrigin>;
118003
+ resolveCommentIds?: InputMaybe<Array<Scalars['String']['input']>>;
118004
+ upsertActions?: InputMaybe<Array<GravityUpsertActionInput>>;
118005
+ };
117503
118006
  export type GravitySetActionStatusInput = {
117504
118007
  actionId: Scalars['String']['input'];
117505
118008
  status: GravityActionStatus;
@@ -122778,6 +123281,7 @@ export type JiraAgentAssignableInput = {
122778
123281
  };
122779
123282
  export declare enum JiraAgentAutonomyLevel {
122780
123283
  AutoApply = "AUTO_APPLY",
123284
+ NotConfigured = "NOT_CONFIGURED",
122781
123285
  RequiresApproval = "REQUIRES_APPROVAL"
122782
123286
  }
122783
123287
  export type JiraAgentAutonomyPolicy = {
@@ -122936,12 +123440,14 @@ export type JiraAgentInSpaceEdge = {
122936
123440
  };
122937
123441
  export type JiraAgentInSpaceJiraAutomationTrigger = JiraAgentInSpaceTrigger & {
122938
123442
  __typename?: 'JiraAgentInSpaceJiraAutomationTrigger';
123443
+ editUrl?: Maybe<Scalars['String']['output']>;
122939
123444
  flow?: Maybe<Scalars['String']['output']>;
122940
123445
  id: Scalars['ID']['output'];
122941
123446
  kind: JiraAgentInSpaceTriggerKind;
122942
123447
  name: Scalars['String']['output'];
122943
123448
  owner?: Maybe<User>;
122944
123449
  prompt?: Maybe<Scalars['String']['output']>;
123450
+ ruleId?: Maybe<Scalars['String']['output']>;
122945
123451
  };
122946
123452
  export declare enum JiraAgentInSpaceSource {
122947
123453
  Assignable = "ASSIGNABLE",
@@ -125262,6 +125768,7 @@ export type JiraBoardView = JiraView & Node & {
125262
125768
  layout?: Maybe<JiraBoardViewLayout>;
125263
125769
  project?: Maybe<JiraProject>;
125264
125770
  selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
125771
+ showCustomFiltersAsButtons?: Maybe<Scalars['Boolean']['output']>;
125265
125772
  sprints?: Maybe<JiraSprintConnection>;
125266
125773
  unmappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
125267
125774
  };
@@ -125285,6 +125792,7 @@ export type JiraBoardViewCardOptionsArgs = {
125285
125792
  export type JiraBoardViewColumnsArgs = {
125286
125793
  after?: InputMaybe<Scalars['String']['input']>;
125287
125794
  first?: InputMaybe<Scalars['Int']['input']>;
125795
+ includeConfig?: InputMaybe<Scalars['Boolean']['input']>;
125288
125796
  settings?: InputMaybe<JiraBoardViewSettings>;
125289
125797
  };
125290
125798
  export type JiraBoardViewCustomFiltersArgs = {
@@ -125545,6 +126053,22 @@ export type JiraBoardViewIssuePositions = {
125545
126053
  swimlaneIdsToRemove?: Maybe<Array<Scalars['ID']['output']>>;
125546
126054
  swimlanesToInsert?: Maybe<Array<JiraBoardViewSwimlanePosition>>;
125547
126055
  };
126056
+ export type JiraBoardViewIssueTimeInColumnField = JiraIssueField & JiraListRowField & Node & {
126057
+ __typename?: 'JiraBoardViewIssueTimeInColumnField';
126058
+ aliasFieldId?: Maybe<Scalars['ID']['output']>;
126059
+ description?: Maybe<Scalars['String']['output']>;
126060
+ fieldId: Scalars['String']['output'];
126061
+ fieldOperations?: Maybe<JiraFieldOperation>;
126062
+ hasValue?: Maybe<Scalars['Boolean']['output']>;
126063
+ id: Scalars['ID']['output'];
126064
+ isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
126065
+ isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
126066
+ isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
126067
+ issue?: Maybe<JiraIssue>;
126068
+ name: Scalars['String']['output'];
126069
+ timeInColumn?: Maybe<Scalars['Long']['output']>;
126070
+ type: Scalars['String']['output'];
126071
+ };
125548
126072
  export type JiraBoardViewLayout = JiraBoardViewColumnLayout | JiraBoardViewSwimlaneLayout;
125549
126073
  export type JiraBoardViewMultiFieldValue = {
125550
126074
  __typename?: 'JiraBoardViewMultiFieldValue';
@@ -125622,6 +126146,7 @@ export type JiraBoardViewStatusColumn = JiraBoardViewColumn & Node & {
125622
126146
  canInlineRename?: Maybe<Scalars['Boolean']['output']>;
125623
126147
  collapsed?: Maybe<Scalars['Boolean']['output']>;
125624
126148
  id: Scalars['ID']['output'];
126149
+ isBacklog?: Maybe<Scalars['Boolean']['output']>;
125625
126150
  mappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
125626
126151
  mappedWorkflows?: Maybe<JiraBoardViewWorkflowConnection>;
125627
126152
  maximumIssueCount?: Maybe<Scalars['Int']['output']>;
@@ -140991,6 +141516,7 @@ export type JiraProjectPolicyRuleType = {
140991
141516
  export type JiraProjectPolicyRuleViolation = {
140992
141517
  __typename?: 'JiraProjectPolicyRuleViolation';
140993
141518
  domain?: Maybe<Scalars['String']['output']>;
141519
+ entity?: Maybe<JiraProjectPolicyViolationEntity>;
140994
141520
  entityAri?: Maybe<Scalars['ID']['output']>;
140995
141521
  entityId?: Maybe<Scalars['String']['output']>;
140996
141522
  entityName?: Maybe<Scalars['String']['output']>;
@@ -141018,6 +141544,7 @@ export type JiraProjectPolicyRuleViolationFilter = {
141018
141544
  domains?: InputMaybe<Array<Scalars['String']['input']>>;
141019
141545
  ruleTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
141020
141546
  };
141547
+ export type JiraProjectPolicyViolationEntity = JiraIssueFieldConfig | JiraStatus;
141021
141548
  export type JiraProjectRecommendation = {
141022
141549
  __typename?: 'JiraProjectRecommendation';
141023
141550
  details?: Maybe<JiraProjectRecommendationDetails>;
@@ -141471,6 +141998,7 @@ export type JiraQuery = {
141471
141998
  installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
141472
141999
  integerUserProperty?: Maybe<JiraEntityPropertyInt>;
141473
142000
  isAiEnabledForIssue?: Maybe<Scalars['Boolean']['output']>;
142001
+ isContactAdministratorFormEnabled?: Maybe<Scalars['Boolean']['output']>;
141474
142002
  isIssueViewEditorAiEnabled?: Maybe<Scalars['Boolean']['output']>;
141475
142003
  isJiraDefinitionsPermissionsEnabled?: Maybe<Scalars['Boolean']['output']>;
141476
142004
  isLinkingEnabled?: Maybe<Scalars['Boolean']['output']>;
@@ -142178,6 +142706,9 @@ export type JiraQueryIntegerUserPropertyArgs = {
142178
142706
  export type JiraQueryIsAiEnabledForIssueArgs = {
142179
142707
  issueInput: JiraAiEnablementIssueInput;
142180
142708
  };
142709
+ export type JiraQueryIsContactAdministratorFormEnabledArgs = {
142710
+ cloudId: Scalars['ID']['input'];
142711
+ };
142181
142712
  export type JiraQueryIsIssueViewEditorAiEnabledArgs = {
142182
142713
  cloudId: Scalars['ID']['input'];
142183
142714
  jiraProjectType: JiraProjectType;
@@ -143136,7 +143667,8 @@ export declare enum JiraRecommendationCategory {
143136
143667
  PermissionGrantScheme = "PERMISSION_GRANT_SCHEME",
143137
143668
  ProjectCleanup = "PROJECT_CLEANUP",
143138
143669
  ProjectRoleActor = "PROJECT_ROLE_ACTOR",
143139
- WorkflowScheme = "WORKFLOW_SCHEME"
143670
+ WorkflowScheme = "WORKFLOW_SCHEME",
143671
+ WorkflowStatus = "WORKFLOW_STATUS"
143140
143672
  }
143141
143673
  export type JiraRecommendedAction = {
143142
143674
  __typename?: 'JiraRecommendedAction';
@@ -146592,6 +147124,17 @@ export type JiraSetBoardViewGroupByPayload = Payload & {
146592
147124
  success: Scalars['Boolean']['output'];
146593
147125
  view?: Maybe<JiraBoardView>;
146594
147126
  };
147127
+ export type JiraSetBoardViewShowCustomFiltersAsButtonsInput = {
147128
+ settings?: InputMaybe<JiraBoardViewSettings>;
147129
+ showCustomFiltersAsButtons: Scalars['Boolean']['input'];
147130
+ viewId: Scalars['ID']['input'];
147131
+ };
147132
+ export type JiraSetBoardViewShowCustomFiltersAsButtonsPayload = Payload & {
147133
+ __typename?: 'JiraSetBoardViewShowCustomFiltersAsButtonsPayload';
147134
+ boardView?: Maybe<JiraBoardView>;
147135
+ errors?: Maybe<Array<MutationError>>;
147136
+ success: Scalars['Boolean']['output'];
147137
+ };
146595
147138
  export type JiraSetBoardViewStatusColumnIssueCountLimitInput = {
146596
147139
  columnId: Scalars['ID']['input'];
146597
147140
  maximumIssueCount?: InputMaybe<Scalars['Int']['input']>;
@@ -151473,6 +152016,26 @@ export type JiraWorkflowResourceUsageMetricValuesArgs = {
151473
152016
  last?: InputMaybe<Scalars['Int']['input']>;
151474
152017
  toDate?: InputMaybe<Scalars['Date']['input']>;
151475
152018
  };
152019
+ export type JiraWorkflowStatusResourceUsageMetric = JiraResourceUsageMetricV2 & Node & {
152020
+ __typename?: 'JiraWorkflowStatusResourceUsageMetric';
152021
+ cleanupValue?: Maybe<Scalars['Long']['output']>;
152022
+ currentValue?: Maybe<Scalars['Long']['output']>;
152023
+ id: Scalars['ID']['output'];
152024
+ key?: Maybe<Scalars['String']['output']>;
152025
+ thresholdValue?: Maybe<Scalars['Long']['output']>;
152026
+ values?: Maybe<JiraResourceUsageMetricValueConnection>;
152027
+ warningValue?: Maybe<Scalars['Long']['output']>;
152028
+ workflowsOverLimit?: Maybe<Scalars['Int']['output']>;
152029
+ workflowsReachingLimit?: Maybe<Scalars['Int']['output']>;
152030
+ };
152031
+ export type JiraWorkflowStatusResourceUsageMetricValuesArgs = {
152032
+ after?: InputMaybe<Scalars['String']['input']>;
152033
+ before?: InputMaybe<Scalars['String']['input']>;
152034
+ first?: InputMaybe<Scalars['Int']['input']>;
152035
+ fromDate?: InputMaybe<Scalars['Date']['input']>;
152036
+ last?: InputMaybe<Scalars['Int']['input']>;
152037
+ toDate?: InputMaybe<Scalars['Date']['input']>;
152038
+ };
151476
152039
  export type JiraWorklog = Node & {
151477
152040
  __typename?: 'JiraWorklog';
151478
152041
  author?: Maybe<User>;
@@ -154012,6 +154575,11 @@ export type JsmTelemetryChart = {
154012
154575
  source: JsmTelemetrySource;
154013
154576
  yLabel?: Maybe<Scalars['String']['output']>;
154014
154577
  };
154578
+ export type JsmTelemetryChartDataResult = {
154579
+ __typename?: 'JsmTelemetryChartDataResult';
154580
+ data?: Maybe<JsmTelemetryMetricData>;
154581
+ error?: Maybe<JsmTelemetryDomainError>;
154582
+ };
154015
154583
  export type JsmTelemetryChartMetricFilter = {
154016
154584
  __typename?: 'JsmTelemetryChartMetricFilter';
154017
154585
  attribute: Scalars['String']['output'];
@@ -154027,6 +154595,11 @@ export declare enum JsmTelemetryChartSource {
154027
154595
  Hypothesis = "HYPOTHESIS",
154028
154596
  Manual = "MANUAL"
154029
154597
  }
154598
+ export type JsmTelemetryChartTimeRangeInput = {
154599
+ from: Scalars['DateTime']['input'];
154600
+ resolutionSeconds?: InputMaybe<Scalars['Int']['input']>;
154601
+ to: Scalars['DateTime']['input'];
154602
+ };
154030
154603
  export type JsmTelemetryConnection = {
154031
154604
  __typename?: 'JsmTelemetryConnection';
154032
154605
  createdAt: Scalars['DateTime']['output'];
@@ -154270,11 +154843,6 @@ export type JsmTelemetryIncidentStringField = {
154270
154843
  fieldId?: Maybe<Scalars['String']['output']>;
154271
154844
  value?: Maybe<Scalars['String']['output']>;
154272
154845
  };
154273
- export type JsmTelemetryIncidentTelemetryResult = {
154274
- __typename?: 'JsmTelemetryIncidentTelemetryResult';
154275
- data?: Maybe<Array<JsmTelemetryMetricDataResponse>>;
154276
- error?: Maybe<JsmTelemetryDomainError>;
154277
- };
154278
154846
  export type JsmTelemetryIncidentUser = {
154279
154847
  __typename?: 'JsmTelemetryIncidentUser';
154280
154848
  accountId?: Maybe<Scalars['String']['output']>;
@@ -154342,6 +154910,10 @@ export type JsmTelemetryMetricAttributesResult = {
154342
154910
  data?: Maybe<JsmTelemetryMetricAttributeResultResponse>;
154343
154911
  error?: Maybe<JsmTelemetryDomainError>;
154344
154912
  };
154913
+ export type JsmTelemetryMetricData = {
154914
+ __typename?: 'JsmTelemetryMetricData';
154915
+ points: Array<JsmTelemetryPoint>;
154916
+ };
154345
154917
  export type JsmTelemetryMetricDataPoint = {
154346
154918
  __typename?: 'JsmTelemetryMetricDataPoint';
154347
154919
  timestamp: Scalars['DateTime']['output'];
@@ -154476,6 +155048,11 @@ export declare enum JsmTelemetryMetricType {
154476
155048
  Summary = "SUMMARY",
154477
155049
  Unknown = "UNKNOWN"
154478
155050
  }
155051
+ export type JsmTelemetryPoint = {
155052
+ __typename?: 'JsmTelemetryPoint';
155053
+ t: Scalars['DateTime']['output'];
155054
+ v?: Maybe<Scalars['Float']['output']>;
155055
+ };
154479
155056
  export type JsmTelemetryProvider = {
154480
155057
  __typename?: 'JsmTelemetryProvider';
154481
155058
  description?: Maybe<Scalars['String']['output']>;
@@ -155031,6 +155608,10 @@ export type KitsuneConnection = {
155031
155608
  edges: Array<KitsuneEdge>;
155032
155609
  pageInfo: PageInfo;
155033
155610
  };
155611
+ export type KitsuneCreateFieldOptionInput = {
155612
+ description?: InputMaybe<Scalars['String']['input']>;
155613
+ name: Scalars['String']['input'];
155614
+ };
155034
155615
  export type KitsuneCustomer = {
155035
155616
  __typename?: 'KitsuneCustomer';
155036
155617
  displayName?: Maybe<Scalars['String']['output']>;
@@ -163276,7 +163857,8 @@ export type MercuryAddOrganizationMembershipInput = {
163276
163857
  endDate?: InputMaybe<Scalars['Date']['input']>;
163277
163858
  organizationId: Scalars['ID']['input'];
163278
163859
  startDate: Scalars['Date']['input'];
163279
- userId: Scalars['ID']['input'];
163860
+ teamId?: InputMaybe<Scalars['ID']['input']>;
163861
+ userId?: InputMaybe<Scalars['ID']['input']>;
163280
163862
  };
163281
163863
  export type MercuryAddOrganizationMembershipsInput = {
163282
163864
  cloudId: Scalars['ID']['input'];
@@ -163288,6 +163870,16 @@ export type MercuryAddOrganizationMembershipsPayload = Payload & {
163288
163870
  organizationMemberships?: Maybe<Array<MercuryOrganizationMembership>>;
163289
163871
  success: Scalars['Boolean']['output'];
163290
163872
  };
163873
+ export type MercuryAddSponsorOrganizationInput = {
163874
+ focusAreaIds: Array<Scalars['ID']['input']>;
163875
+ organizationId: Scalars['ID']['input'];
163876
+ };
163877
+ export type MercuryAddSponsorOrganizationPayload = Payload & {
163878
+ __typename?: 'MercuryAddSponsorOrganizationPayload';
163879
+ addedFocusAreaIds: Array<Scalars['ID']['output']>;
163880
+ errors?: Maybe<Array<MutationError>>;
163881
+ success: Scalars['Boolean']['output'];
163882
+ };
163291
163883
  export type MercuryAddSponsoredFocusAreasInput = {
163292
163884
  focusAreaIds: Array<Scalars['ID']['input']>;
163293
163885
  organizationId: Scalars['ID']['input'];
@@ -165488,6 +166080,14 @@ export type MercuryDeleteFocusAreaBudgetPayload = Payload & {
165488
166080
  errors?: Maybe<Array<MutationError>>;
165489
166081
  success: Scalars['Boolean']['output'];
165490
166082
  };
166083
+ export type MercuryDeleteFocusAreaDraftStatusUpdateInput = {
166084
+ focusAreaId: Scalars['ID']['input'];
166085
+ };
166086
+ export type MercuryDeleteFocusAreaDraftStatusUpdatePayload = Payload & {
166087
+ __typename?: 'MercuryDeleteFocusAreaDraftStatusUpdatePayload';
166088
+ errors?: Maybe<Array<MutationError>>;
166089
+ success: Scalars['Boolean']['output'];
166090
+ };
165491
166091
  export type MercuryDeleteFocusAreaGoalLinksInput = {
165492
166092
  atlasGoalAris: Array<Scalars['String']['input']>;
165493
166093
  focusAreaAri: Scalars['String']['input'];
@@ -166018,6 +166618,7 @@ export type MercuryFocusArea = Node & {
166018
166618
  health?: Maybe<MercuryFocusAreaHealth>;
166019
166619
  icon: MercuryFocusAreaIcon;
166020
166620
  id: Scalars['ID']['output'];
166621
+ latestDraftUpdate?: Maybe<MercuryFocusAreaDraftStatusUpdate>;
166021
166622
  linkedGoalSummary?: Maybe<MercuryFocusAreaLinkedGoalSummary>;
166022
166623
  linkedGoals?: Maybe<GraphStoreSimplifiedFocusAreaHasAtlasGoalConnection>;
166023
166624
  linkedRisks?: Maybe<Array<MercuryRisk>>;
@@ -166237,6 +166838,19 @@ export type MercuryFocusAreaCustomFieldValuesByFocusArea = {
166237
166838
  customFields: Array<MercuryCustomField>;
166238
166839
  focusAreaId: Scalars['ID']['output'];
166239
166840
  };
166841
+ export type MercuryFocusAreaDraftStatusUpdate = {
166842
+ __typename?: 'MercuryFocusAreaDraftStatusUpdate';
166843
+ createdBy?: Maybe<User>;
166844
+ createdDate: Scalars['String']['output'];
166845
+ focusAreaId: Scalars['ID']['output'];
166846
+ health?: Maybe<MercuryFocusAreaHealth>;
166847
+ id: Scalars['ID']['output'];
166848
+ status?: Maybe<MercuryFocusAreaStatus>;
166849
+ summary?: Maybe<Scalars['String']['output']>;
166850
+ targetDate?: Maybe<MercuryTargetDate>;
166851
+ updatedBy?: Maybe<User>;
166852
+ updatedDate: Scalars['String']['output'];
166853
+ };
166240
166854
  export type MercuryFocusAreaEdge = {
166241
166855
  __typename?: 'MercuryFocusAreaEdge';
166242
166856
  cursor: Scalars['String']['output'];
@@ -167755,6 +168369,7 @@ export type MercuryMultiUserCustomFieldInput = {
167755
168369
  export type MercuryMutationApi = {
167756
168370
  __typename?: 'MercuryMutationApi';
167757
168371
  addFocusAreaCustomFieldDefinitionOptions?: Maybe<MercuryAddCustomFieldDefinitionOptionsPayload>;
168372
+ addSponsorOrganization?: Maybe<MercuryAddSponsorOrganizationPayload>;
167758
168373
  addWatcherToFocusArea?: Maybe<MercuryAddWatcherToFocusAreaPayload>;
167759
168374
  archiveFocusArea?: Maybe<MercuryArchiveFocusAreaPayload>;
167760
168375
  assignUserAccessToFocusArea?: Maybe<MercuryAssignUserAccessToFocusAreaPayload>;
@@ -167769,6 +168384,7 @@ export type MercuryMutationApi = {
167769
168384
  deleteFocusArea?: Maybe<MercuryDeleteFocusAreaPayload>;
167770
168385
  deleteFocusAreaCustomFieldDefinition?: Maybe<MercuryDeleteCustomFieldDefinitionPayload>;
167771
168386
  deleteFocusAreaCustomFieldDefinitionOptions?: Maybe<MercuryDeleteCustomFieldDefinitionOptionsPayload>;
168387
+ deleteFocusAreaDraftStatusUpdate?: Maybe<MercuryDeleteFocusAreaDraftStatusUpdatePayload>;
167772
168388
  deleteFocusAreaGoalLinks?: Maybe<MercuryDeleteFocusAreaGoalLinksPayload>;
167773
168389
  deleteFocusAreaHierarchy?: Maybe<MercuryDeleteFocusAreaHierarchyPayload>;
167774
168390
  deleteFocusAreaLink?: Maybe<MercuryDeleteFocusAreaLinkPayload>;
@@ -167782,11 +168398,13 @@ export type MercuryMutationApi = {
167782
168398
  linkGoalsToFocusArea?: Maybe<MercuryLinkGoalsToFocusAreaPayload>;
167783
168399
  publishFocusArea?: Maybe<MercuryPublishFocusAreaPayload>;
167784
168400
  recreatePortfolioFocusAreas?: Maybe<MercuryUpdatePortfolioPayload>;
168401
+ removeSponsorOrganization?: Maybe<MercuryRemoveSponsorOrganizationPayload>;
167785
168402
  removeUserAccessToFocusArea?: Maybe<MercuryRemoveUserAccessToFocusAreaPayload>;
167786
168403
  removeWatcherFromFocusArea?: Maybe<MercuryRemoveWatcherFromFocusAreaPayload>;
167787
168404
  reorderFocusAreaCustomFieldDefinitionOptions?: Maybe<MercuryReorderCustomFieldDefinitionOptionsPayload>;
167788
168405
  rerankFocusAreaAbsolute?: Maybe<MercuryRerankFocusAreaAbsolutePayload>;
167789
168406
  rerankFocusAreas?: Maybe<MercuryRerankFocusAreasPayload>;
168407
+ saveFocusAreaDraftStatusUpdate?: Maybe<MercurySaveFocusAreaDraftStatusUpdatePayload>;
167790
168408
  setFocusAreaCustomFieldValue?: Maybe<MercurySetFocusAreaCustomFieldPayload>;
167791
168409
  setFocusAreaCustomFieldValues?: Maybe<MercurySetFocusAreaCustomFieldsPayload>;
167792
168410
  setPreference?: Maybe<MercurySetPreferencePayload>;
@@ -167814,6 +168432,9 @@ export type MercuryMutationApi = {
167814
168432
  export type MercuryMutationApiAddFocusAreaCustomFieldDefinitionOptionsArgs = {
167815
168433
  input: MercuryAddCustomFieldDefinitionOptionsInput;
167816
168434
  };
168435
+ export type MercuryMutationApiAddSponsorOrganizationArgs = {
168436
+ input: MercuryAddSponsorOrganizationInput;
168437
+ };
167817
168438
  export type MercuryMutationApiAddWatcherToFocusAreaArgs = {
167818
168439
  input: MercuryAddWatcherToFocusAreaInput;
167819
168440
  };
@@ -167856,6 +168477,9 @@ export type MercuryMutationApiDeleteFocusAreaCustomFieldDefinitionArgs = {
167856
168477
  export type MercuryMutationApiDeleteFocusAreaCustomFieldDefinitionOptionsArgs = {
167857
168478
  input: MercuryDeleteCustomFieldDefinitionOptionsInput;
167858
168479
  };
168480
+ export type MercuryMutationApiDeleteFocusAreaDraftStatusUpdateArgs = {
168481
+ input: MercuryDeleteFocusAreaDraftStatusUpdateInput;
168482
+ };
167859
168483
  export type MercuryMutationApiDeleteFocusAreaGoalLinksArgs = {
167860
168484
  input: MercuryDeleteFocusAreaGoalLinksInput;
167861
168485
  };
@@ -167895,6 +168519,9 @@ export type MercuryMutationApiPublishFocusAreaArgs = {
167895
168519
  export type MercuryMutationApiRecreatePortfolioFocusAreasArgs = {
167896
168520
  input: MercuryRecreatePortfolioFocusAreasInput;
167897
168521
  };
168522
+ export type MercuryMutationApiRemoveSponsorOrganizationArgs = {
168523
+ input: MercuryRemoveSponsorOrganizationInput;
168524
+ };
167898
168525
  export type MercuryMutationApiRemoveUserAccessToFocusAreaArgs = {
167899
168526
  input: MercuryRemoveUserAccessToFocusAreaInput;
167900
168527
  };
@@ -167910,6 +168537,9 @@ export type MercuryMutationApiRerankFocusAreaAbsoluteArgs = {
167910
168537
  export type MercuryMutationApiRerankFocusAreasArgs = {
167911
168538
  input: MercuryRerankFocusAreasInput;
167912
168539
  };
168540
+ export type MercuryMutationApiSaveFocusAreaDraftStatusUpdateArgs = {
168541
+ input: MercurySaveFocusAreaDraftStatusUpdateInput;
168542
+ };
167913
168543
  export type MercuryMutationApiSetFocusAreaCustomFieldValueArgs = {
167914
168544
  input: MercurySetFocusAreaCustomFieldInput;
167915
168545
  };
@@ -169986,6 +170616,15 @@ export type MercuryRemoveOrganizationMembershipPayload = Payload & {
169986
170616
  id: Scalars['ID']['output'];
169987
170617
  success: Scalars['Boolean']['output'];
169988
170618
  };
170619
+ export type MercuryRemoveSponsorOrganizationInput = {
170620
+ focusAreaIds: Array<Scalars['ID']['input']>;
170621
+ organizationId: Scalars['ID']['input'];
170622
+ };
170623
+ export type MercuryRemoveSponsorOrganizationPayload = Payload & {
170624
+ __typename?: 'MercuryRemoveSponsorOrganizationPayload';
170625
+ errors?: Maybe<Array<MutationError>>;
170626
+ success: Scalars['Boolean']['output'];
170627
+ };
169989
170628
  export type MercuryRemoveSponsoredFocusAreasInput = {
169990
170629
  focusAreaIds: Array<Scalars['ID']['input']>;
169991
170630
  organizationId: Scalars['ID']['input'];
@@ -170520,6 +171159,19 @@ export type MercuryRisksQueryApiSearchRiskActivityHistoryArgs = {
170520
171159
  q?: InputMaybe<Scalars['String']['input']>;
170521
171160
  sort?: InputMaybe<Array<InputMaybe<MercuryRiskActivitySort>>>;
170522
171161
  };
171162
+ export type MercurySaveFocusAreaDraftStatusUpdateInput = {
171163
+ focusAreaId: Scalars['ID']['input'];
171164
+ healthId?: InputMaybe<Scalars['ID']['input']>;
171165
+ statusId?: InputMaybe<Scalars['ID']['input']>;
171166
+ summary?: InputMaybe<Scalars['String']['input']>;
171167
+ targetDate?: InputMaybe<MercuryFocusAreaTargetDateInput>;
171168
+ };
171169
+ export type MercurySaveFocusAreaDraftStatusUpdatePayload = Payload & {
171170
+ __typename?: 'MercurySaveFocusAreaDraftStatusUpdatePayload';
171171
+ draftStatusUpdate?: Maybe<MercuryFocusAreaDraftStatusUpdate>;
171172
+ errors?: Maybe<Array<MutationError>>;
171173
+ success: Scalars['Boolean']['output'];
171174
+ };
170523
171175
  export type MercurySetAskCustomFieldInput = {
170524
171176
  askId: Scalars['ID']['input'];
170525
171177
  coreField?: InputMaybe<MercuryCustomFieldInput>;
@@ -173777,6 +174429,7 @@ export type Mutation = {
173777
174429
  graphStore_deleteVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload>;
173778
174430
  graphStore_deleteVulnerabilityAssociatedIssue?: Maybe<GraphStoreDeleteVulnerabilityAssociatedIssuePayload>;
173779
174431
  gravity_addDraftComment?: Maybe<GravityCommentPayload>;
174432
+ gravity_addInlineComment?: Maybe<GravityDraftPayload>;
173780
174433
  gravity_addReaction?: Maybe<GravityAddReactionPayload>;
173781
174434
  gravity_applyDraft?: Maybe<GravityDraftPayload>;
173782
174435
  gravity_createDraft?: Maybe<GravityDraftPayload>;
@@ -173787,6 +174440,7 @@ export type Mutation = {
173787
174440
  gravity_discardDraft?: Maybe<GravityDraftPayload>;
173788
174441
  gravity_generateViewTemplateFromUserPrompt?: Maybe<GravityGenerateViewTemplateFromUserPromptPayload>;
173789
174442
  gravity_postFeedback?: Maybe<GravityPostFeedbackPayload>;
174443
+ gravity_reviseDraft?: Maybe<GravityDraftPayload>;
173790
174444
  gravity_setActionStatus?: Maybe<GravityActionPayload>;
173791
174445
  gravity_setViewArrangement?: Maybe<GravityViewArrangementPayload>;
173792
174446
  gravity_updateDeliverySettings?: Maybe<GravityUpdateDeliverySettingsPayload>;
@@ -173917,6 +174571,7 @@ export type Mutation = {
173917
174571
  jira_setBoardViewDensity?: Maybe<JiraSetBoardViewDensityPayload>;
173918
174572
  jira_setBoardViewFilter?: Maybe<JiraSetBoardViewFilterPayload>;
173919
174573
  jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
174574
+ jira_setBoardViewShowCustomFiltersAsButtons?: Maybe<JiraSetBoardViewShowCustomFiltersAsButtonsPayload>;
173920
174575
  jira_setBoardViewStatusColumnIssueCountLimit?: Maybe<JiraSetBoardViewStatusColumnIssueCountLimitPayload>;
173921
174576
  jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
173922
174577
  jira_setBoardViewSwimlaneState?: Maybe<JiraSetBoardViewSwimlaneStatePayload>;
@@ -178081,6 +178736,10 @@ export type MutationGravity_AddDraftCommentArgs = {
178081
178736
  cloudId: Scalars['ID']['input'];
178082
178737
  input: GravityAddCommentInput;
178083
178738
  };
178739
+ export type MutationGravity_AddInlineCommentArgs = {
178740
+ cloudId: Scalars['ID']['input'];
178741
+ input: GravityAddInlineCommentInput;
178742
+ };
178084
178743
  export type MutationGravity_AddReactionArgs = {
178085
178744
  cloudId: Scalars['ID']['input'];
178086
178745
  input: GravityAddReactionInput;
@@ -178121,6 +178780,10 @@ export type MutationGravity_PostFeedbackArgs = {
178121
178780
  cloudId: Scalars['ID']['input'];
178122
178781
  input: GravityPostFeedbackInput;
178123
178782
  };
178783
+ export type MutationGravity_ReviseDraftArgs = {
178784
+ cloudId: Scalars['ID']['input'];
178785
+ input: GravityReviseDraftInput;
178786
+ };
178124
178787
  export type MutationGravity_SetActionStatusArgs = {
178125
178788
  cloudId: Scalars['ID']['input'];
178126
178789
  input: GravitySetActionStatusInput;
@@ -178536,6 +179199,9 @@ export type MutationJira_SetBoardViewFilterArgs = {
178536
179199
  export type MutationJira_SetBoardViewGroupByArgs = {
178537
179200
  input: JiraSetBoardViewGroupByInput;
178538
179201
  };
179202
+ export type MutationJira_SetBoardViewShowCustomFiltersAsButtonsArgs = {
179203
+ input: JiraSetBoardViewShowCustomFiltersAsButtonsInput;
179204
+ };
178539
179205
  export type MutationJira_SetBoardViewStatusColumnIssueCountLimitArgs = {
178540
179206
  input: JiraSetBoardViewStatusColumnIssueCountLimitInput;
178541
179207
  };
@@ -178911,6 +179577,7 @@ export type MutationKitsune_CreateFieldArgs = {
178911
179577
  entityTypes: Array<KitsuneEntityType>;
178912
179578
  name: Scalars['String']['input'];
178913
179579
  options?: InputMaybe<Array<Scalars['String']['input']>>;
179580
+ optionsV2?: InputMaybe<Array<KitsuneCreateFieldOptionInput>>;
178914
179581
  valueType: KitsuneFieldValueType;
178915
179582
  workspaceAri: Scalars['ID']['input'];
178916
179583
  };
@@ -183168,33 +183835,76 @@ export type PsmDateRangeInput = {
183168
183835
  };
183169
183836
  export type PsmDevice = {
183170
183837
  __typename?: 'PsmDevice';
183171
- atlassianAccountId: Scalars['ID']['output'];
183838
+ activeSensorFaults?: Maybe<Array<PsmDeviceSensorFault>>;
183172
183839
  cloudId: Scalars['ID']['output'];
183840
+ configuration?: Maybe<PsmDeviceConfiguration>;
183173
183841
  createdAt: Scalars['DateTime']['output'];
183842
+ deviceName?: Maybe<Scalars['String']['output']>;
183843
+ enrolledAt?: Maybe<Scalars['DateTime']['output']>;
183844
+ health?: Maybe<PsmDeviceHealth>;
183174
183845
  lastSeen?: Maybe<Scalars['DateTime']['output']>;
183846
+ owner?: Maybe<PsmDeviceOwner>;
183175
183847
  providerSystemId?: Maybe<Scalars['ID']['output']>;
183176
183848
  serialNumber: Scalars['String']['output'];
183177
183849
  spaceId?: Maybe<Scalars['ID']['output']>;
183178
183850
  status: PsmDeviceStatus;
183179
183851
  updatedAt: Scalars['DateTime']['output'];
183180
183852
  };
183853
+ export type PsmDeviceConfiguration = {
183854
+ __typename?: 'PsmDeviceConfiguration';
183855
+ cpu?: Maybe<Scalars['String']['output']>;
183856
+ model?: Maybe<Scalars['String']['output']>;
183857
+ os?: Maybe<Scalars['String']['output']>;
183858
+ platform?: Maybe<Scalars['String']['output']>;
183859
+ ram?: Maybe<Scalars['String']['output']>;
183860
+ storage?: Maybe<Scalars['String']['output']>;
183861
+ };
183181
183862
  export type PsmDeviceConnection = {
183182
183863
  __typename?: 'PsmDeviceConnection';
183183
183864
  edges?: Maybe<Array<PsmDeviceEdge>>;
183184
183865
  errors?: Maybe<Array<QueryError>>;
183185
183866
  nodes?: Maybe<Array<Maybe<PsmDevice>>>;
183867
+ offlineDeviceCount?: Maybe<Scalars['Int']['output']>;
183186
183868
  pageInfo: PageInfo;
183869
+ totalRegisteredDevices?: Maybe<Scalars['Int']['output']>;
183187
183870
  };
183188
183871
  export type PsmDeviceEdge = {
183189
183872
  __typename?: 'PsmDeviceEdge';
183190
183873
  cursor: Scalars['String']['output'];
183191
183874
  node?: Maybe<PsmDevice>;
183192
183875
  };
183876
+ export type PsmDeviceHealth = {
183877
+ __typename?: 'PsmDeviceHealth';
183878
+ healthScorePercentage?: Maybe<Scalars['Float']['output']>;
183879
+ healthStatus?: Maybe<PsmDeviceHealthStatus>;
183880
+ };
183881
+ export declare enum PsmDeviceHealthStatus {
183882
+ Excellent = "EXCELLENT",
183883
+ Fair = "FAIR",
183884
+ Good = "GOOD",
183885
+ Poor = "POOR",
183886
+ Unknown = "UNKNOWN"
183887
+ }
183193
183888
  export type PsmDeviceIdentity = {
183194
183889
  __typename?: 'PsmDeviceIdentity';
183195
183890
  isDeviceOffline?: Maybe<Scalars['Boolean']['output']>;
183196
183891
  serialNumber: Scalars['String']['output'];
183197
183892
  };
183893
+ export type PsmDeviceOwner = {
183894
+ __typename?: 'PsmDeviceOwner';
183895
+ atlassianAccountId: Scalars['ID']['output'];
183896
+ email?: Maybe<Scalars['String']['output']>;
183897
+ name?: Maybe<Scalars['String']['output']>;
183898
+ };
183899
+ export type PsmDeviceSensorFault = {
183900
+ __typename?: 'PsmDeviceSensorFault';
183901
+ category?: Maybe<Scalars['String']['output']>;
183902
+ faultId: Scalars['ID']['output'];
183903
+ providerSensorId?: Maybe<Scalars['ID']['output']>;
183904
+ sensorId?: Maybe<Scalars['ID']['output']>;
183905
+ sensorName?: Maybe<Scalars['String']['output']>;
183906
+ triggerStates?: Maybe<Array<PsmSensorTriggerState>>;
183907
+ };
183198
183908
  export declare enum PsmDeviceStatus {
183199
183909
  Active = "ACTIVE",
183200
183910
  Offline = "OFFLINE",
@@ -183888,6 +184598,7 @@ export type Query = {
183888
184598
  agentStudio_testConversationListByContainerId?: Maybe<AgentStudioConversationListResult>;
183889
184599
  agentStudio_toolIntegrations?: Maybe<AgentStudioToolIntegrationsConnection>;
183890
184600
  agentStudio_tools?: Maybe<AgentStudioToolsConnection>;
184601
+ agentStudio_unlicensedRovoWidgetConfigByContainerAri?: Maybe<AgentStudioUnlicensedRovoWidgetConfigByContainerAriResult>;
183891
184602
  agentStudio_validateScenario?: Maybe<AgentStudioScenarioValidationPayload>;
183892
184603
  agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
183893
184604
  agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
@@ -184249,6 +184960,7 @@ export type Query = {
184249
184960
  cloudify_analysisExecutions: Array<CloudifyAnalysisExecution>;
184250
184961
  cloudify_enactment?: Maybe<CloudifyEnactment>;
184251
184962
  cloudify_enactments: Array<CloudifyEnactment>;
184963
+ cloudify_rawCustomizationRecommendations?: Maybe<Array<CloudifyRawCustomizationRecommendation>>;
184252
184964
  cloudify_recommendations: Array<CloudifyRecommendation>;
184253
184965
  codeInJira?: Maybe<CodeInJira>;
184254
184966
  collabContext_workspaceIsConnectedToWorkspace?: Maybe<CollabContextWorkspaceConnection>;
@@ -184730,6 +185442,7 @@ export type Query = {
184730
185442
  graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
184731
185443
  graphIntegration_customAuth?: Maybe<GraphIntegrationCustomAuthNode>;
184732
185444
  graphIntegration_customAuthsByProduct?: Maybe<Array<GraphIntegrationCustomAuthNode>>;
185445
+ graphIntegration_dataProviders?: Maybe<Array<GraphIntegrationDataProvider>>;
184733
185446
  graphIntegration_globalMcpServers?: Maybe<Array<Maybe<GraphIntegrationGlobalMcpServerNode>>>;
184734
185447
  graphIntegration_globalMcpTools?: Maybe<Array<Maybe<GraphIntegrationGlobalMcpToolNode>>>;
184735
185448
  graphIntegration_mcpAdminManagementCuratedMcpServerTemplates?: Maybe<GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateConnection>;
@@ -184822,6 +185535,7 @@ export type Query = {
184822
185535
  graphStoreV2_atlassianUserAuthoritativelyLinkedExternalUserInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserAuthoritativelyLinkedExternalUserInverseConnection>;
184823
185536
  graphStoreV2_atlassianUserCanViewConfluenceSpace?: Maybe<GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceConnection>;
184824
185537
  graphStoreV2_atlassianUserCanViewConfluenceSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceInverseConnection>;
185538
+ graphStoreV2_atlassianUserCollaboratesOnInferredProject?: Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectConnection>;
184825
185539
  graphStoreV2_atlassianUserCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseConnection>;
184826
185540
  graphStoreV2_atlassianUserContributedToConfluenceBlogpost?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostConnection>;
184827
185541
  graphStoreV2_atlassianUserContributedToConfluenceBlogpostInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostInverseConnection>;
@@ -184961,6 +185675,7 @@ export type Query = {
184961
185675
  graphStoreV2_atlassianUserOwnsFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusFocusAreaInverseConnection>;
184962
185676
  graphStoreV2_atlassianUserOwnsFocusStrategicPlan?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanConnection>;
184963
185677
  graphStoreV2_atlassianUserOwnsFocusStrategicPlanInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseConnection>;
185678
+ graphStoreV2_atlassianUserOwnsInferredProject?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectConnection>;
184964
185679
  graphStoreV2_atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
184965
185680
  graphStoreV2_atlassianUserReactedToJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection>;
184966
185681
  graphStoreV2_atlassianUserReactedToJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentInverseConnection>;
@@ -185456,8 +186171,11 @@ export type Query = {
185456
186171
  graphStoreV2_inferredDecisionSourceLineageEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseConnection>;
185457
186172
  graphStoreV2_inferredEntities?: Maybe<Array<GraphStoreInferredEntityResponse>>;
185458
186173
  graphStoreV2_inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
186174
+ graphStoreV2_inferredProjectLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityInverseConnection>;
186175
+ graphStoreV2_inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
185459
186176
  graphStoreV2_inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
185460
186177
  graphStoreV2_inferredTeamLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityConnection>;
186178
+ graphStoreV2_inferredTeamLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityInverseConnection>;
185461
186179
  graphStoreV2_jiraEpicTracksAtlassianProject?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection>;
185462
186180
  graphStoreV2_jiraEpicTracksAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectInverseConnection>;
185463
186181
  graphStoreV2_jiraProjectAgentKnowledgeContextHasKnowledgeBaseEntity?: Maybe<GraphStoreV2SimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityConnection>;
@@ -185644,6 +186362,8 @@ export type Query = {
185644
186362
  graphStoreV2_talentWorkerLinksExternalWorker?: Maybe<GraphStoreV2SimplifiedTalentWorkerLinksExternalWorkerConnection>;
185645
186363
  graphStoreV2_talentWorkerLinksExternalWorkerInverse?: Maybe<GraphStoreV2SimplifiedTalentWorkerLinksExternalWorkerInverseConnection>;
185646
186364
  graphStoreV2_thirdPartyRemoteLinkLinksExternalRemoteLink?: Maybe<GraphStoreV2SimplifiedThirdPartyRemoteLinkLinksExternalRemoteLinkConnection>;
186365
+ graphStoreV2_thirdPartyUserLinkedViaEmailThirdPartyUser?: Maybe<GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserConnection>;
186366
+ graphStoreV2_thirdPartyUserLinkedViaEmailThirdPartyUserInverse?: Maybe<GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseConnection>;
185647
186367
  graphStoreV2_topicHasRelatedEntity?: Maybe<GraphStoreV2SimplifiedTopicHasRelatedEntityConnection>;
185648
186368
  graphStoreV2_topicHasRelatedEntityInverse?: Maybe<GraphStoreV2SimplifiedTopicHasRelatedEntityInverseConnection>;
185649
186369
  graphStore_appInstallationAssociatedToOperationsWorkspaceInverseRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection>;
@@ -185787,6 +186507,7 @@ export type Query = {
185787
186507
  graphStore_atlassianUserOwnsExternalTestRunInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestRunInverseConnection>;
185788
186508
  graphStore_atlassianUserOwnsExternalTestStatus?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusConnection>;
185789
186509
  graphStore_atlassianUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection>;
186510
+ graphStore_atlassianUserOwnsInferredProject?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectConnection>;
185790
186511
  graphStore_atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
185791
186512
  graphStore_atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
185792
186513
  graphStore_atlassianUserTriggeredAtlassianAgentSessionInverse?: Maybe<GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection>;
@@ -186090,8 +186811,11 @@ export type Query = {
186090
186811
  graphStore_inferredDecisionSourceLineageEntity?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityConnection>;
186091
186812
  graphStore_inferredDecisionSourceLineageEntityInverse?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseConnection>;
186092
186813
  graphStore_inferredProjectLinksEntity?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityConnection>;
186814
+ graphStore_inferredProjectLinksEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityInverseConnection>;
186815
+ graphStore_inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
186093
186816
  graphStore_inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
186094
186817
  graphStore_inferredTeamLinksEntity?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityConnection>;
186818
+ graphStore_inferredTeamLinksEntityInverse?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityInverseConnection>;
186095
186819
  graphStore_issueAssociatedBranch?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchConnection>;
186096
186820
  graphStore_issueAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseConnection>;
186097
186821
  graphStore_issueAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
@@ -186536,6 +187260,8 @@ export type Query = {
186536
187260
  graphStore_testPerfhammerRelationshipInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
186537
187261
  graphStore_testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
186538
187262
  graphStore_thirdPartyToGraphRemoteLink?: Maybe<GraphStoreSimplifiedThirdPartyToGraphRemoteLinkConnection>;
187263
+ graphStore_thirdPartyUserLinkedViaEmailThirdPartyUser?: Maybe<GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserConnection>;
187264
+ graphStore_thirdPartyUserLinkedViaEmailThirdPartyUserInverse?: Maybe<GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseConnection>;
186539
187265
  graphStore_topicHasRelatedEntity?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityConnection>;
186540
187266
  graphStore_topicHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityInverseConnection>;
186541
187267
  graphStore_townsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreSimplifiedTownsquareTagIsAliasOfTownsquareTagConnection>;
@@ -186667,6 +187393,7 @@ export type Query = {
186667
187393
  graphStore_userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
186668
187394
  graphStore_userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
186669
187395
  graphStore_userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
187396
+ graphStore_userIsInInferredProject?: Maybe<GraphStoreSimplifiedUserIsInInferredProjectConnection>;
186670
187397
  graphStore_userIsInInferredProjectInverse?: Maybe<GraphStoreSimplifiedUserIsInInferredProjectInverseConnection>;
186671
187398
  graphStore_userIsInTeam?: Maybe<GraphStoreSimplifiedUserIsInTeamConnection>;
186672
187399
  graphStore_userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
@@ -186946,6 +187673,8 @@ export type Query = {
186946
187673
  jira_agentContextSettings?: Maybe<JiraAgentContextSettings>;
186947
187674
  jira_agentContextSources?: Maybe<JiraAgentContextItemConnection>;
186948
187675
  jira_agentSessionsIsPlanModeEnabled?: Maybe<Scalars['Boolean']['output']>;
187676
+ jira_agentSpaceCuratedSources?: Maybe<JiraAgentContextItemConnection>;
187677
+ jira_agentSpaceInstructions?: Maybe<JiraAgentSpaceInstruction>;
186949
187678
  jira_agentsInSpace?: Maybe<JiraAgentsInSpace>;
186950
187679
  jira_agentsInSpaceByAgentAris?: Maybe<Array<Maybe<JiraAgentInSpace>>>;
186951
187680
  jira_availableStatuses?: Maybe<JiraStatusConnection>;
@@ -187035,6 +187764,7 @@ export type Query = {
187035
187764
  jsmConversation_settings?: Maybe<JsmConversationSettings>;
187036
187765
  jsmSolutionComposerPlan?: Maybe<JsmSolutionComposerPlanQueryApi>;
187037
187766
  jsmTelemetry_aiPrompt?: Maybe<Scalars['String']['output']>;
187767
+ jsmTelemetry_chartData?: Maybe<JsmTelemetryChartDataResult>;
187038
187768
  jsmTelemetry_dashboard?: Maybe<JsmTelemetryDashboardResult>;
187039
187769
  jsmTelemetry_dashboardByScope?: Maybe<JsmTelemetryDashboardData>;
187040
187770
  jsmTelemetry_getIncidentContext?: Maybe<JsmTelemetryIncidentContextResult>;
@@ -187042,7 +187772,6 @@ export type Query = {
187042
187772
  jsmTelemetry_getMetricAttributes?: Maybe<JsmTelemetryMetricAttributesResult>;
187043
187773
  jsmTelemetry_getProviderContextSchema?: Maybe<JsmTelemetryProviderContextSchemaResult>;
187044
187774
  jsmTelemetry_getTelemetryConnection?: Maybe<JsmTelemetryConnection>;
187045
- jsmTelemetry_incidentTelemetry?: Maybe<JsmTelemetryIncidentTelemetryResult>;
187046
187775
  jsmTelemetry_listAvailableTelemetryProviders?: Maybe<Array<JsmTelemetryProviderAvailability>>;
187047
187776
  jsmTelemetry_listTelemetryConnections?: Maybe<Array<JsmTelemetryConnection>>;
187048
187777
  jsmTelemetry_listTelemetryProviders?: Maybe<Array<JsmTelemetryProvider>>;
@@ -187151,6 +187880,16 @@ export type Query = {
187151
187880
  marketplacePartner?: Maybe<MarketplacePartner>;
187152
187881
  marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
187153
187882
  marketplaceStore: MarketplaceStoreQueryApi;
187883
+ marketplaceStore_appReviewsByAppKeyV2?: Maybe<MarketplaceStoreReviewsResponse>;
187884
+ marketplaceStore_editionsByAppKeyV2?: Maybe<Array<MarketplaceStoreEdition>>;
187885
+ marketplaceStore_getProductListingV2?: Maybe<MarketplaceStoreProductListingResponse>;
187886
+ marketplaceStore_partnerByPartnerNameV2?: Maybe<MarketplaceStoreSearchPartnerResponse>;
187887
+ marketplaceStore_partnerV2?: Maybe<MarketplaceStorePartnerResponse>;
187888
+ marketplaceStore_privacyAndSecurityV2?: Maybe<MarketplaceStorePrivacyAndSecurityResponse>;
187889
+ marketplaceStore_productDetailsByCloudIdV2?: Maybe<MarketplaceStoreProductDetailsByCloudIdResponse>;
187890
+ marketplaceStore_productTagsV2?: Maybe<Array<Maybe<MarketplaceStoreProductTag>>>;
187891
+ marketplaceStore_recommendationsSectionV2?: Maybe<MarketplaceStoreRecommendationsSection>;
187892
+ marketplaceStore_reviewSummaryV2?: Maybe<MarketplaceStoreReviewSummaryResponse>;
187154
187893
  me: AuthenticationContext;
187155
187894
  mediaConfiguration?: Maybe<MediaConfiguration>;
187156
187895
  media_items?: Maybe<Array<MediaItem>>;
@@ -188233,6 +188972,10 @@ export type QueryAgentStudio_ToolsArgs = {
188233
188972
  scenarioVersion?: InputMaybe<Scalars['Int']['input']>;
188234
188973
  searchQuery?: InputMaybe<Scalars['String']['input']>;
188235
188974
  };
188975
+ export type QueryAgentStudio_UnlicensedRovoWidgetConfigByContainerAriArgs = {
188976
+ cloudId: Scalars['String']['input'];
188977
+ containerAri: Scalars['ID']['input'];
188978
+ };
188236
188979
  export type QueryAgentStudio_ValidateScenarioArgs = {
188237
188980
  cloudId: Scalars['String']['input'];
188238
188981
  containerId: Scalars['ID']['input'];
@@ -189928,6 +190671,10 @@ export type QueryCloudify_EnactmentsArgs = {
189928
190671
  orgId: Scalars['ID']['input'];
189929
190672
  recommendationId: Scalars['ID']['input'];
189930
190673
  };
190674
+ export type QueryCloudify_RawCustomizationRecommendationsArgs = {
190675
+ ids: Array<Scalars['ID']['input']>;
190676
+ orgId: Scalars['ID']['input'];
190677
+ };
189931
190678
  export type QueryCloudify_RecommendationsArgs = {
189932
190679
  filter: CloudifyRecommendationFilterInput;
189933
190680
  orgId: Scalars['ID']['input'];
@@ -191718,9 +192465,9 @@ export type QueryDevai_SearchConnectedReposArgs = {
191718
192465
  cloudId: Scalars['ID']['input'];
191719
192466
  language?: InputMaybe<Array<Scalars['String']['input']>>;
191720
192467
  owner?: InputMaybe<Array<Scalars['String']['input']>>;
192468
+ page?: InputMaybe<Scalars['Int']['input']>;
192469
+ pagelen?: InputMaybe<Scalars['Int']['input']>;
191721
192470
  repoName?: InputMaybe<Array<Scalars['String']['input']>>;
191722
- searchTerm?: InputMaybe<Array<Scalars['String']['input']>>;
191723
- workspace?: InputMaybe<Array<DevAiConnectedRepoWorkspaceFilter>>;
191724
192471
  workspaceFilter: Array<DevAiConnectedRepoWorkspaceFilter>;
191725
192472
  };
191726
192473
  export type QueryDevai_TechnicalPlannerJobByIdArgs = {
@@ -192153,6 +192900,10 @@ export type QueryGraphIntegration_CustomAuthsByProductArgs = {
192153
192900
  cloudId: Scalars['ID']['input'];
192154
192901
  productAri: Scalars['String']['input'];
192155
192902
  };
192903
+ export type QueryGraphIntegration_DataProvidersArgs = {
192904
+ cloudId: Scalars['ID']['input'];
192905
+ providerTypes?: InputMaybe<Array<GraphIntegrationProviderType>>;
192906
+ };
192156
192907
  export type QueryGraphIntegration_GlobalMcpServersArgs = {
192157
192908
  ids: Array<Scalars['ID']['input']>;
192158
192909
  };
@@ -192739,6 +193490,13 @@ export type QueryGraphStoreV2_AtlassianUserCanViewConfluenceSpaceInverseArgs = {
192739
193490
  id: Scalars['ID']['input'];
192740
193491
  sort?: InputMaybe<GraphStoreV2AtlassianUserCanViewConfluenceSpaceSortInput>;
192741
193492
  };
193493
+ export type QueryGraphStoreV2_AtlassianUserCollaboratesOnInferredProjectArgs = {
193494
+ after?: InputMaybe<Scalars['String']['input']>;
193495
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
193496
+ first?: InputMaybe<Scalars['Int']['input']>;
193497
+ id: Scalars['ID']['input'];
193498
+ sort?: InputMaybe<GraphStoreV2AtlassianUserCollaboratesOnInferredProjectSortInput>;
193499
+ };
192742
193500
  export type QueryGraphStoreV2_AtlassianUserCollaboratesOnInferredProjectInverseArgs = {
192743
193501
  after?: InputMaybe<Scalars['String']['input']>;
192744
193502
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -193718,6 +194476,13 @@ export type QueryGraphStoreV2_AtlassianUserOwnsFocusStrategicPlanInverseArgs = {
193718
194476
  id: Scalars['ID']['input'];
193719
194477
  sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsFocusStrategicPlanSortInput>;
193720
194478
  };
194479
+ export type QueryGraphStoreV2_AtlassianUserOwnsInferredProjectArgs = {
194480
+ after?: InputMaybe<Scalars['String']['input']>;
194481
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
194482
+ first?: InputMaybe<Scalars['Int']['input']>;
194483
+ id: Scalars['ID']['input'];
194484
+ sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsInferredProjectSortInput>;
194485
+ };
193721
194486
  export type QueryGraphStoreV2_AtlassianUserOwnsInferredProjectInverseArgs = {
193722
194487
  after?: InputMaybe<Scalars['String']['input']>;
193723
194488
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -197186,6 +197951,20 @@ export type QueryGraphStoreV2_InferredProjectLinksEntityArgs = {
197186
197951
  id: Scalars['ID']['input'];
197187
197952
  sort?: InputMaybe<GraphStoreV2InferredProjectLinksEntitySortInput>;
197188
197953
  };
197954
+ export type QueryGraphStoreV2_InferredProjectLinksEntityInverseArgs = {
197955
+ after?: InputMaybe<Scalars['String']['input']>;
197956
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
197957
+ first?: InputMaybe<Scalars['Int']['input']>;
197958
+ id: Scalars['ID']['input'];
197959
+ sort?: InputMaybe<GraphStoreV2InferredProjectLinksEntitySortInput>;
197960
+ };
197961
+ export type QueryGraphStoreV2_InferredTeamCollaboratesOnInferredProjectArgs = {
197962
+ after?: InputMaybe<Scalars['String']['input']>;
197963
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
197964
+ first?: InputMaybe<Scalars['Int']['input']>;
197965
+ id: Scalars['ID']['input'];
197966
+ sort?: InputMaybe<GraphStoreV2InferredTeamCollaboratesOnInferredProjectSortInput>;
197967
+ };
197189
197968
  export type QueryGraphStoreV2_InferredTeamCollaboratesOnInferredProjectInverseArgs = {
197190
197969
  after?: InputMaybe<Scalars['String']['input']>;
197191
197970
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -197200,6 +197979,13 @@ export type QueryGraphStoreV2_InferredTeamLinksEntityArgs = {
197200
197979
  id: Scalars['ID']['input'];
197201
197980
  sort?: InputMaybe<GraphStoreV2InferredTeamLinksEntitySortInput>;
197202
197981
  };
197982
+ export type QueryGraphStoreV2_InferredTeamLinksEntityInverseArgs = {
197983
+ after?: InputMaybe<Scalars['String']['input']>;
197984
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
197985
+ first?: InputMaybe<Scalars['Int']['input']>;
197986
+ id: Scalars['ID']['input'];
197987
+ sort?: InputMaybe<GraphStoreV2InferredTeamLinksEntitySortInput>;
197988
+ };
197203
197989
  export type QueryGraphStoreV2_JiraEpicTracksAtlassianProjectArgs = {
197204
197990
  after?: InputMaybe<Scalars['String']['input']>;
197205
197991
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -198538,6 +199324,20 @@ export type QueryGraphStoreV2_ThirdPartyRemoteLinkLinksExternalRemoteLinkArgs =
198538
199324
  id: Scalars['ID']['input'];
198539
199325
  sort?: InputMaybe<GraphStoreV2ThirdPartyRemoteLinkLinksExternalRemoteLinkSortInput>;
198540
199326
  };
199327
+ export type QueryGraphStoreV2_ThirdPartyUserLinkedViaEmailThirdPartyUserArgs = {
199328
+ after?: InputMaybe<Scalars['String']['input']>;
199329
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
199330
+ first?: InputMaybe<Scalars['Int']['input']>;
199331
+ id: Scalars['ID']['input'];
199332
+ sort?: InputMaybe<GraphStoreV2ThirdPartyUserLinkedViaEmailThirdPartyUserSortInput>;
199333
+ };
199334
+ export type QueryGraphStoreV2_ThirdPartyUserLinkedViaEmailThirdPartyUserInverseArgs = {
199335
+ after?: InputMaybe<Scalars['String']['input']>;
199336
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
199337
+ first?: InputMaybe<Scalars['Int']['input']>;
199338
+ id: Scalars['ID']['input'];
199339
+ sort?: InputMaybe<GraphStoreV2ThirdPartyUserLinkedViaEmailThirdPartyUserSortInput>;
199340
+ };
198541
199341
  export type QueryGraphStoreV2_TopicHasRelatedEntityArgs = {
198542
199342
  after?: InputMaybe<Scalars['String']['input']>;
198543
199343
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -199654,6 +200454,14 @@ export type QueryGraphStore_AtlassianUserOwnsExternalTestStatusInverseArgs = {
199654
200454
  queryContext?: InputMaybe<Scalars['String']['input']>;
199655
200455
  sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalTestStatusSortInput>;
199656
200456
  };
200457
+ export type QueryGraphStore_AtlassianUserOwnsInferredProjectArgs = {
200458
+ after?: InputMaybe<Scalars['String']['input']>;
200459
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
200460
+ first?: InputMaybe<Scalars['Int']['input']>;
200461
+ id: Scalars['ID']['input'];
200462
+ queryContext?: InputMaybe<Scalars['String']['input']>;
200463
+ sort?: InputMaybe<GraphStoreAtlassianUserOwnsInferredProjectSortInput>;
200464
+ };
199657
200465
  export type QueryGraphStore_AtlassianUserOwnsInferredProjectInverseArgs = {
199658
200466
  after?: InputMaybe<Scalars['String']['input']>;
199659
200467
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -202006,6 +202814,22 @@ export type QueryGraphStore_InferredProjectLinksEntityArgs = {
202006
202814
  queryContext?: InputMaybe<Scalars['String']['input']>;
202007
202815
  sort?: InputMaybe<GraphStoreInferredProjectLinksEntitySortInput>;
202008
202816
  };
202817
+ export type QueryGraphStore_InferredProjectLinksEntityInverseArgs = {
202818
+ after?: InputMaybe<Scalars['String']['input']>;
202819
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
202820
+ first?: InputMaybe<Scalars['Int']['input']>;
202821
+ id: Scalars['ID']['input'];
202822
+ queryContext?: InputMaybe<Scalars['String']['input']>;
202823
+ sort?: InputMaybe<GraphStoreInferredProjectLinksEntitySortInput>;
202824
+ };
202825
+ export type QueryGraphStore_InferredTeamCollaboratesOnInferredProjectArgs = {
202826
+ after?: InputMaybe<Scalars['String']['input']>;
202827
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
202828
+ first?: InputMaybe<Scalars['Int']['input']>;
202829
+ id: Scalars['ID']['input'];
202830
+ queryContext?: InputMaybe<Scalars['String']['input']>;
202831
+ sort?: InputMaybe<GraphStoreInferredTeamCollaboratesOnInferredProjectSortInput>;
202832
+ };
202009
202833
  export type QueryGraphStore_InferredTeamCollaboratesOnInferredProjectInverseArgs = {
202010
202834
  after?: InputMaybe<Scalars['String']['input']>;
202011
202835
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -202022,6 +202846,14 @@ export type QueryGraphStore_InferredTeamLinksEntityArgs = {
202022
202846
  queryContext?: InputMaybe<Scalars['String']['input']>;
202023
202847
  sort?: InputMaybe<GraphStoreInferredTeamLinksEntitySortInput>;
202024
202848
  };
202849
+ export type QueryGraphStore_InferredTeamLinksEntityInverseArgs = {
202850
+ after?: InputMaybe<Scalars['String']['input']>;
202851
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
202852
+ first?: InputMaybe<Scalars['Int']['input']>;
202853
+ id: Scalars['ID']['input'];
202854
+ queryContext?: InputMaybe<Scalars['String']['input']>;
202855
+ sort?: InputMaybe<GraphStoreInferredTeamLinksEntitySortInput>;
202856
+ };
202025
202857
  export type QueryGraphStore_IssueAssociatedBranchArgs = {
202026
202858
  after?: InputMaybe<Scalars['String']['input']>;
202027
202859
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -205386,6 +206218,22 @@ export type QueryGraphStore_ThirdPartyToGraphRemoteLinkArgs = {
205386
206218
  queryContext?: InputMaybe<Scalars['String']['input']>;
205387
206219
  sort?: InputMaybe<GraphStoreThirdPartyToGraphRemoteLinkSortInput>;
205388
206220
  };
206221
+ export type QueryGraphStore_ThirdPartyUserLinkedViaEmailThirdPartyUserArgs = {
206222
+ after?: InputMaybe<Scalars['String']['input']>;
206223
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
206224
+ first?: InputMaybe<Scalars['Int']['input']>;
206225
+ id: Scalars['ID']['input'];
206226
+ queryContext?: InputMaybe<Scalars['String']['input']>;
206227
+ sort?: InputMaybe<GraphStoreThirdPartyUserLinkedViaEmailThirdPartyUserSortInput>;
206228
+ };
206229
+ export type QueryGraphStore_ThirdPartyUserLinkedViaEmailThirdPartyUserInverseArgs = {
206230
+ after?: InputMaybe<Scalars['String']['input']>;
206231
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
206232
+ first?: InputMaybe<Scalars['Int']['input']>;
206233
+ id: Scalars['ID']['input'];
206234
+ queryContext?: InputMaybe<Scalars['String']['input']>;
206235
+ sort?: InputMaybe<GraphStoreThirdPartyUserLinkedViaEmailThirdPartyUserSortInput>;
206236
+ };
205389
206237
  export type QueryGraphStore_TopicHasRelatedEntityArgs = {
205390
206238
  after?: InputMaybe<Scalars['String']['input']>;
205391
206239
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -206438,6 +207286,14 @@ export type QueryGraphStore_UserHasTopProjectInverseArgs = {
206438
207286
  queryContext?: InputMaybe<Scalars['String']['input']>;
206439
207287
  sort?: InputMaybe<GraphStoreUserHasTopProjectSortInput>;
206440
207288
  };
207289
+ export type QueryGraphStore_UserIsInInferredProjectArgs = {
207290
+ after?: InputMaybe<Scalars['String']['input']>;
207291
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
207292
+ first?: InputMaybe<Scalars['Int']['input']>;
207293
+ id: Scalars['ID']['input'];
207294
+ queryContext?: InputMaybe<Scalars['String']['input']>;
207295
+ sort?: InputMaybe<GraphStoreUserIsInInferredProjectSortInput>;
207296
+ };
206441
207297
  export type QueryGraphStore_UserIsInInferredProjectInverseArgs = {
206442
207298
  after?: InputMaybe<Scalars['String']['input']>;
206443
207299
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -208318,6 +209174,16 @@ export type QueryJira_AgentContextSourcesArgs = {
208318
209174
  export type QueryJira_AgentSessionsIsPlanModeEnabledArgs = {
208319
209175
  cloudId: Scalars['ID']['input'];
208320
209176
  };
209177
+ export type QueryJira_AgentSpaceCuratedSourcesArgs = {
209178
+ after?: InputMaybe<Scalars['String']['input']>;
209179
+ agentAri?: InputMaybe<Scalars['ID']['input']>;
209180
+ first?: InputMaybe<Scalars['Int']['input']>;
209181
+ projectAri: Scalars['ID']['input'];
209182
+ };
209183
+ export type QueryJira_AgentSpaceInstructionsArgs = {
209184
+ agentAri?: InputMaybe<Scalars['ID']['input']>;
209185
+ projectAri: Scalars['ID']['input'];
209186
+ };
208321
209187
  export type QueryJira_AgentsInSpaceArgs = {
208322
209188
  after?: InputMaybe<Scalars['String']['input']>;
208323
209189
  cloudId: Scalars['ID']['input'];
@@ -208689,6 +209555,13 @@ export type QueryJsmTelemetry_AiPromptArgs = {
208689
209555
  prompt: Scalars['String']['input'];
208690
209556
  useCaseId?: InputMaybe<Scalars['String']['input']>;
208691
209557
  };
209558
+ export type QueryJsmTelemetry_ChartDataArgs = {
209559
+ chartId: Scalars['ID']['input'];
209560
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
209561
+ scopeId: Scalars['String']['input'];
209562
+ scopeType: JsmTelemetryScopeType;
209563
+ timeRange: JsmTelemetryChartTimeRangeInput;
209564
+ };
208692
209565
  export type QueryJsmTelemetry_DashboardArgs = {
208693
209566
  cloudId?: InputMaybe<Scalars['ID']['input']>;
208694
209567
  incidentId: Scalars['ID']['input'];
@@ -208726,10 +209599,6 @@ export type QueryJsmTelemetry_GetTelemetryConnectionArgs = {
208726
209599
  id: Scalars['ID']['input'];
208727
209600
  scopeId: Scalars['String']['input'];
208728
209601
  };
208729
- export type QueryJsmTelemetry_IncidentTelemetryArgs = {
208730
- cloudId?: InputMaybe<Scalars['ID']['input']>;
208731
- incidentId: Scalars['ID']['input'];
208732
- };
208733
209602
  export type QueryJsmTelemetry_ListAvailableTelemetryProvidersArgs = {
208734
209603
  cloudId?: InputMaybe<Scalars['ID']['input']>;
208735
209604
  };
@@ -209128,6 +209997,43 @@ export type QueryMarketplacePricingPlanArgs = {
209128
209997
  hostingType: AtlassianProductHostingType;
209129
209998
  pricingPlanOptions?: InputMaybe<MarketplacePricingPlanOptions>;
209130
209999
  };
210000
+ export type QueryMarketplaceStore_AppReviewsByAppKeyV2Args = {
210001
+ appKey: Scalars['String']['input'];
210002
+ filter?: InputMaybe<MarketplaceStoreReviewFilterInput>;
210003
+ limit?: InputMaybe<Scalars['Int']['input']>;
210004
+ offset?: InputMaybe<Scalars['Int']['input']>;
210005
+ };
210006
+ export type QueryMarketplaceStore_EditionsByAppKeyV2Args = {
210007
+ countryCode?: InputMaybe<Scalars['String']['input']>;
210008
+ product: MarketplaceStoreEditionsByAppKeyInput;
210009
+ };
210010
+ export type QueryMarketplaceStore_GetProductListingV2Args = {
210011
+ productId: Scalars['ID']['input'];
210012
+ };
210013
+ export type QueryMarketplaceStore_PartnerByPartnerNameV2Args = {
210014
+ partnerName: Scalars['String']['input'];
210015
+ };
210016
+ export type QueryMarketplaceStore_PartnerV2Args = {
210017
+ developerId?: InputMaybe<Scalars['ID']['input']>;
210018
+ vendorId: Scalars['ID']['input'];
210019
+ };
210020
+ export type QueryMarketplaceStore_PrivacyAndSecurityV2Args = {
210021
+ input: MarketplaceStorePrivacyAndSecurityRequestInput;
210022
+ };
210023
+ export type QueryMarketplaceStore_ProductDetailsByCloudIdV2Args = {
210024
+ cloudId: Scalars['String']['input'];
210025
+ };
210026
+ export type QueryMarketplaceStore_ProductTagsV2Args = {
210027
+ tagType?: InputMaybe<MarketplaceStoreProductTagType>;
210028
+ };
210029
+ export type QueryMarketplaceStore_RecommendationsSectionV2Args = {
210030
+ input?: InputMaybe<MarketplaceStoreRecommendationsSectionInput>;
210031
+ usecase: MarketplaceStoreRecommendationsUsecase;
210032
+ };
210033
+ export type QueryMarketplaceStore_ReviewSummaryV2Args = {
210034
+ appKey: Scalars['String']['input'];
210035
+ hostingType: MarketplaceStoreAtlassianProductHostingType;
210036
+ };
209131
210037
  export type QueryMedia_ItemsArgs = {
209132
210038
  clientId: Scalars['String']['input'];
209133
210039
  cloudId: Scalars['ID']['input'];
@@ -232455,6 +233361,7 @@ export type TrelloMemberOwnedWebhookLegacyApplication = {
232455
233361
  export type TrelloMemberOwnedWebhookOAuth2Client = {
232456
233362
  __typename?: 'TrelloMemberOwnedWebhookOAuth2Client';
232457
233363
  oauth2ClientId?: Maybe<Scalars['ID']['output']>;
233364
+ pluginName?: Maybe<Scalars['String']['output']>;
232458
233365
  };
232459
233366
  export type TrelloMemberPlannerEventCardsUpdated = {
232460
233367
  __typename?: 'TrelloMemberPlannerEventCardsUpdated';