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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6107,6 +6107,7 @@ export type AgentStudioAgentPermissions = {
6107
6107
  };
6108
6108
  export type AgentStudioAgentQueryInput = {
6109
6109
  includeDraftAgents?: InputMaybe<Scalars['Boolean']['input']>;
6110
+ includeJiraCodingAgent?: InputMaybe<Scalars['Boolean']['input']>;
6110
6111
  name?: InputMaybe<Scalars['String']['input']>;
6111
6112
  onlyEditableAgents?: InputMaybe<Scalars['Boolean']['input']>;
6112
6113
  onlyFavouriteAgents?: InputMaybe<Scalars['Boolean']['input']>;
@@ -7578,6 +7579,13 @@ export type AgentStudioToolsConnection = {
7578
7579
  edges: Array<AgentStudioToolEdge>;
7579
7580
  pageInfo: PageInfo;
7580
7581
  };
7582
+ export type AgentStudioUnlicensedRovoWidgetConfig = {
7583
+ __typename?: 'AgentStudioUnlicensedRovoWidgetConfig';
7584
+ agentId?: Maybe<Scalars['String']['output']>;
7585
+ isRovoEntitled?: Maybe<Scalars['Boolean']['output']>;
7586
+ isWidgetEnabled?: Maybe<Scalars['Boolean']['output']>;
7587
+ };
7588
+ export type AgentStudioUnlicensedRovoWidgetConfigByContainerAriResult = AgentStudioUnlicensedRovoWidgetConfig | QueryError;
7581
7589
  export type AgentStudioUpdateAgentActionsPayload = Payload & {
7582
7590
  __typename?: 'AgentStudioUpdateAgentActionsPayload';
7583
7591
  agent?: Maybe<AgentStudioAgent>;
@@ -8645,6 +8653,7 @@ export type AgentWorkspaceRoutingHistoryEvent = {
8645
8653
  kind: AgentWorkspaceRoutingHistoryEventKind;
8646
8654
  message: Scalars['String']['output'];
8647
8655
  occurredAt: Scalars['DateTime']['output'];
8656
+ trigger?: Maybe<Scalars['String']['output']>;
8648
8657
  };
8649
8658
  export type AgentWorkspaceRoutingHistoryEventConnection = {
8650
8659
  __typename?: 'AgentWorkspaceRoutingHistoryEventConnection';
@@ -8722,6 +8731,7 @@ export type AgentWorkspaceSchedule = {
8722
8731
  __typename?: 'AgentWorkspaceSchedule';
8723
8732
  agents: Array<AgentWorkspaceAgent>;
8724
8733
  cloudId: Scalars['ID']['output'];
8734
+ computedEffectiveUntil?: Maybe<Scalars['DateTime']['output']>;
8725
8735
  coverageGapDetails?: Maybe<Array<AgentWorkspaceCoverageGap>>;
8726
8736
  createdAt: Scalars['DateTime']['output'];
8727
8737
  createdBy: Scalars['String']['output'];
@@ -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;
@@ -58418,6 +58487,7 @@ export type GraphStore = {
58418
58487
  atlassianUserOwnsExternalTestRunInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestRunInverseConnection>;
58419
58488
  atlassianUserOwnsExternalTestStatus?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusConnection>;
58420
58489
  atlassianUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection>;
58490
+ atlassianUserOwnsInferredProject?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectConnection>;
58421
58491
  atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
58422
58492
  atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
58423
58493
  atlassianUserTriggeredAtlassianAgentSessionInverse?: Maybe<GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection>;
@@ -58721,8 +58791,11 @@ export type GraphStore = {
58721
58791
  inferredDecisionSourceLineageEntity?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityConnection>;
58722
58792
  inferredDecisionSourceLineageEntityInverse?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseConnection>;
58723
58793
  inferredProjectLinksEntity?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityConnection>;
58794
+ inferredProjectLinksEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityInverseConnection>;
58795
+ inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
58724
58796
  inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
58725
58797
  inferredTeamLinksEntity?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityConnection>;
58798
+ inferredTeamLinksEntityInverse?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityInverseConnection>;
58726
58799
  issueAssociatedBranch?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchConnection>;
58727
58800
  issueAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseConnection>;
58728
58801
  issueAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
@@ -59167,6 +59240,8 @@ export type GraphStore = {
59167
59240
  testPerfhammerRelationshipInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
59168
59241
  testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
59169
59242
  thirdPartyToGraphRemoteLink?: Maybe<GraphStoreSimplifiedThirdPartyToGraphRemoteLinkConnection>;
59243
+ thirdPartyUserLinkedViaEmailThirdPartyUser?: Maybe<GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserConnection>;
59244
+ thirdPartyUserLinkedViaEmailThirdPartyUserInverse?: Maybe<GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseConnection>;
59170
59245
  topicHasRelatedEntity?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityConnection>;
59171
59246
  topicHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityInverseConnection>;
59172
59247
  townsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreSimplifiedTownsquareTagIsAliasOfTownsquareTagConnection>;
@@ -59298,6 +59373,7 @@ export type GraphStore = {
59298
59373
  userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
59299
59374
  userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
59300
59375
  userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
59376
+ userIsInInferredProject?: Maybe<GraphStoreSimplifiedUserIsInInferredProjectConnection>;
59301
59377
  userIsInInferredProjectInverse?: Maybe<GraphStoreSimplifiedUserIsInInferredProjectInverseConnection>;
59302
59378
  userIsInTeam?: Maybe<GraphStoreSimplifiedUserIsInTeamConnection>;
59303
59379
  userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
@@ -60609,6 +60685,14 @@ export type GraphStoreAtlassianUserOwnsExternalTestStatusInverseArgs = {
60609
60685
  queryContext?: InputMaybe<Scalars['String']['input']>;
60610
60686
  sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalTestStatusSortInput>;
60611
60687
  };
60688
+ export type GraphStoreAtlassianUserOwnsInferredProjectArgs = {
60689
+ after?: InputMaybe<Scalars['String']['input']>;
60690
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
60691
+ first?: InputMaybe<Scalars['Int']['input']>;
60692
+ id: Scalars['ID']['input'];
60693
+ queryContext?: InputMaybe<Scalars['String']['input']>;
60694
+ sort?: InputMaybe<GraphStoreAtlassianUserOwnsInferredProjectSortInput>;
60695
+ };
60612
60696
  export type GraphStoreAtlassianUserOwnsInferredProjectInverseArgs = {
60613
60697
  after?: InputMaybe<Scalars['String']['input']>;
60614
60698
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -62961,6 +63045,22 @@ export type GraphStoreInferredProjectLinksEntityArgs = {
62961
63045
  queryContext?: InputMaybe<Scalars['String']['input']>;
62962
63046
  sort?: InputMaybe<GraphStoreInferredProjectLinksEntitySortInput>;
62963
63047
  };
63048
+ export type GraphStoreInferredProjectLinksEntityInverseArgs = {
63049
+ after?: InputMaybe<Scalars['String']['input']>;
63050
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
63051
+ first?: InputMaybe<Scalars['Int']['input']>;
63052
+ id: Scalars['ID']['input'];
63053
+ queryContext?: InputMaybe<Scalars['String']['input']>;
63054
+ sort?: InputMaybe<GraphStoreInferredProjectLinksEntitySortInput>;
63055
+ };
63056
+ export type GraphStoreInferredTeamCollaboratesOnInferredProjectArgs = {
63057
+ after?: InputMaybe<Scalars['String']['input']>;
63058
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
63059
+ first?: InputMaybe<Scalars['Int']['input']>;
63060
+ id: Scalars['ID']['input'];
63061
+ queryContext?: InputMaybe<Scalars['String']['input']>;
63062
+ sort?: InputMaybe<GraphStoreInferredTeamCollaboratesOnInferredProjectSortInput>;
63063
+ };
62964
63064
  export type GraphStoreInferredTeamCollaboratesOnInferredProjectInverseArgs = {
62965
63065
  after?: InputMaybe<Scalars['String']['input']>;
62966
63066
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -62977,6 +63077,14 @@ export type GraphStoreInferredTeamLinksEntityArgs = {
62977
63077
  queryContext?: InputMaybe<Scalars['String']['input']>;
62978
63078
  sort?: InputMaybe<GraphStoreInferredTeamLinksEntitySortInput>;
62979
63079
  };
63080
+ export type GraphStoreInferredTeamLinksEntityInverseArgs = {
63081
+ after?: InputMaybe<Scalars['String']['input']>;
63082
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
63083
+ first?: InputMaybe<Scalars['Int']['input']>;
63084
+ id: Scalars['ID']['input'];
63085
+ queryContext?: InputMaybe<Scalars['String']['input']>;
63086
+ sort?: InputMaybe<GraphStoreInferredTeamLinksEntitySortInput>;
63087
+ };
62980
63088
  export type GraphStoreIssueAssociatedBranchArgs = {
62981
63089
  after?: InputMaybe<Scalars['String']['input']>;
62982
63090
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -66341,6 +66449,22 @@ export type GraphStoreThirdPartyToGraphRemoteLinkArgs = {
66341
66449
  queryContext?: InputMaybe<Scalars['String']['input']>;
66342
66450
  sort?: InputMaybe<GraphStoreThirdPartyToGraphRemoteLinkSortInput>;
66343
66451
  };
66452
+ export type GraphStoreThirdPartyUserLinkedViaEmailThirdPartyUserArgs = {
66453
+ after?: InputMaybe<Scalars['String']['input']>;
66454
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
66455
+ first?: InputMaybe<Scalars['Int']['input']>;
66456
+ id: Scalars['ID']['input'];
66457
+ queryContext?: InputMaybe<Scalars['String']['input']>;
66458
+ sort?: InputMaybe<GraphStoreThirdPartyUserLinkedViaEmailThirdPartyUserSortInput>;
66459
+ };
66460
+ export type GraphStoreThirdPartyUserLinkedViaEmailThirdPartyUserInverseArgs = {
66461
+ after?: InputMaybe<Scalars['String']['input']>;
66462
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
66463
+ first?: InputMaybe<Scalars['Int']['input']>;
66464
+ id: Scalars['ID']['input'];
66465
+ queryContext?: InputMaybe<Scalars['String']['input']>;
66466
+ sort?: InputMaybe<GraphStoreThirdPartyUserLinkedViaEmailThirdPartyUserSortInput>;
66467
+ };
66344
66468
  export type GraphStoreTopicHasRelatedEntityArgs = {
66345
66469
  after?: InputMaybe<Scalars['String']['input']>;
66346
66470
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -67393,6 +67517,14 @@ export type GraphStoreUserHasTopProjectInverseArgs = {
67393
67517
  queryContext?: InputMaybe<Scalars['String']['input']>;
67394
67518
  sort?: InputMaybe<GraphStoreUserHasTopProjectSortInput>;
67395
67519
  };
67520
+ export type GraphStoreUserIsInInferredProjectArgs = {
67521
+ after?: InputMaybe<Scalars['String']['input']>;
67522
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
67523
+ first?: InputMaybe<Scalars['Int']['input']>;
67524
+ id: Scalars['ID']['input'];
67525
+ queryContext?: InputMaybe<Scalars['String']['input']>;
67526
+ sort?: InputMaybe<GraphStoreUserIsInInferredProjectSortInput>;
67527
+ };
67396
67528
  export type GraphStoreUserIsInInferredProjectInverseArgs = {
67397
67529
  after?: InputMaybe<Scalars['String']['input']>;
67398
67530
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -76683,21 +76815,59 @@ export type GraphStoreIncidentLinkedJswIssueSortInput = {
76683
76815
  export type GraphStoreInferredDecisionImpactsEntitySortInput = {
76684
76816
  lastModified?: InputMaybe<GraphStoreSortInput>;
76685
76817
  };
76818
+ export type GraphStoreInferredDecisionNodeEvidenceSpanOutput = {
76819
+ __typename?: 'GraphStoreInferredDecisionNodeEvidenceSpanOutput';
76820
+ endOffset?: Maybe<Scalars['Long']['output']>;
76821
+ quote?: Maybe<Scalars['String']['output']>;
76822
+ source?: Maybe<Scalars['String']['output']>;
76823
+ startOffset?: Maybe<Scalars['Long']['output']>;
76824
+ };
76825
+ export declare enum GraphStoreInferredDecisionNodeInferredDecisionKindOutput {
76826
+ Decided = "DECIDED",
76827
+ NotSet = "NOT_SET",
76828
+ Open = "OPEN"
76829
+ }
76686
76830
  export declare enum GraphStoreInferredDecisionNodeInferredDecisionStatusOutput {
76687
76831
  Accepted = "ACCEPTED",
76688
76832
  NeedsReview = "NEEDS_REVIEW",
76689
76833
  NotSet = "NOT_SET",
76834
+ Published = "PUBLISHED",
76690
76835
  Rejected = "REJECTED"
76691
76836
  }
76837
+ export declare enum GraphStoreInferredDecisionNodeInferredDecisionSubtypeOutput {
76838
+ Commitment = "COMMITMENT",
76839
+ Design = "DESIGN",
76840
+ NotSet = "NOT_SET",
76841
+ Other = "OTHER",
76842
+ Prioritization = "PRIORITIZATION",
76843
+ Process = "PROCESS",
76844
+ Scope = "SCOPE",
76845
+ Staffing = "STAFFING",
76846
+ Technical = "TECHNICAL"
76847
+ }
76692
76848
  export type GraphStoreInferredDecisionNodeMetadata = {
76693
76849
  __typename?: 'GraphStoreInferredDecisionNodeMetadata';
76694
- claim?: Maybe<Scalars['String']['output']>;
76695
76850
  confidenceScore?: Maybe<Scalars['Float']['output']>;
76696
76851
  createdAt?: Maybe<Scalars['Long']['output']>;
76852
+ decidedBy?: Maybe<Scalars['String']['output']>;
76697
76853
  dedupeKey?: Maybe<Scalars['String']['output']>;
76854
+ evidenceSpans?: Maybe<GraphStoreInferredDecisionNodeEvidenceSpanOutput>;
76855
+ kind?: Maybe<GraphStoreInferredDecisionNodeInferredDecisionKindOutput>;
76698
76856
  lastUpdated?: Maybe<Scalars['Long']['output']>;
76699
76857
  normalizedClaimHash?: Maybe<Scalars['String']['output']>;
76858
+ provenance?: Maybe<GraphStoreInferredDecisionNodeProvenanceOutput>;
76700
76859
  status?: Maybe<GraphStoreInferredDecisionNodeInferredDecisionStatusOutput>;
76860
+ subtype?: Maybe<GraphStoreInferredDecisionNodeInferredDecisionSubtypeOutput>;
76861
+ summary?: Maybe<Scalars['String']['output']>;
76862
+ title?: Maybe<Scalars['String']['output']>;
76863
+ };
76864
+ export type GraphStoreInferredDecisionNodeProvenanceOutput = {
76865
+ __typename?: 'GraphStoreInferredDecisionNodeProvenanceOutput';
76866
+ appId?: Maybe<Scalars['String']['output']>;
76867
+ appVersion?: Maybe<Scalars['Int']['output']>;
76868
+ executionMode?: Maybe<Scalars['String']['output']>;
76869
+ modelProvider?: Maybe<Scalars['String']['output']>;
76870
+ sourceVersion?: Maybe<Scalars['String']['output']>;
76701
76871
  };
76702
76872
  export type GraphStoreInferredDecisionSourceLineageEntitySortInput = {
76703
76873
  lastModified?: InputMaybe<GraphStoreSortInput>;
@@ -79917,6 +80087,19 @@ export type GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseEdge =
79917
80087
  };
79918
80088
  export type GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
79919
80089
  export type GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusUnion = ExternalTestStatus;
80090
+ export type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectConnection = HasPageInfo & {
80091
+ __typename?: 'GraphStoreSimplifiedAtlassianUserOwnsInferredProjectConnection';
80092
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectEdge>>>;
80093
+ pageInfo: PageInfo;
80094
+ };
80095
+ export type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectEdge = {
80096
+ __typename?: 'GraphStoreSimplifiedAtlassianUserOwnsInferredProjectEdge';
80097
+ createdAt: Scalars['DateTime']['output'];
80098
+ cursor?: Maybe<Scalars['String']['output']>;
80099
+ id: Scalars['ID']['output'];
80100
+ lastUpdated: Scalars['DateTime']['output'];
80101
+ node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectUnion>;
80102
+ };
79920
80103
  export type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection = HasPageInfo & {
79921
80104
  __typename?: 'GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection';
79922
80105
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseEdge>>>;
@@ -79931,6 +80114,7 @@ export type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseEdge = {
79931
80114
  node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseUnion>;
79932
80115
  };
79933
80116
  export type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
80117
+ export type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectUnion = GraphStoreNodeResponse;
79934
80118
  export type GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection = HasPageInfo & {
79935
80119
  __typename?: 'GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection';
79936
80120
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge>>>;
@@ -83392,7 +83576,7 @@ export type GraphStoreSimplifiedInferredDecisionImpactsEntityInverseEdge = {
83392
83576
  node?: Maybe<GraphStoreSimplifiedInferredDecisionImpactsEntityInverseUnion>;
83393
83577
  };
83394
83578
  export type GraphStoreSimplifiedInferredDecisionImpactsEntityInverseUnion = GraphStoreNodeResponse;
83395
- export type GraphStoreSimplifiedInferredDecisionImpactsEntityUnion = TownsquareProject;
83579
+ export type GraphStoreSimplifiedInferredDecisionImpactsEntityUnion = GraphStoreNodeResponse | TownsquareProject;
83396
83580
  export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityConnection = HasPageInfo & {
83397
83581
  __typename?: 'GraphStoreSimplifiedInferredDecisionSourceLineageEntityConnection';
83398
83582
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityEdge>>>;
@@ -83434,7 +83618,34 @@ export type GraphStoreSimplifiedInferredProjectLinksEntityEdge = {
83434
83618
  lastUpdated: Scalars['DateTime']['output'];
83435
83619
  node?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityUnion>;
83436
83620
  };
83621
+ export type GraphStoreSimplifiedInferredProjectLinksEntityInverseConnection = HasPageInfo & {
83622
+ __typename?: 'GraphStoreSimplifiedInferredProjectLinksEntityInverseConnection';
83623
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredProjectLinksEntityInverseEdge>>>;
83624
+ pageInfo: PageInfo;
83625
+ };
83626
+ export type GraphStoreSimplifiedInferredProjectLinksEntityInverseEdge = {
83627
+ __typename?: 'GraphStoreSimplifiedInferredProjectLinksEntityInverseEdge';
83628
+ createdAt: Scalars['DateTime']['output'];
83629
+ cursor?: Maybe<Scalars['String']['output']>;
83630
+ id: Scalars['ID']['output'];
83631
+ lastUpdated: Scalars['DateTime']['output'];
83632
+ node?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityInverseUnion>;
83633
+ };
83634
+ export type GraphStoreSimplifiedInferredProjectLinksEntityInverseUnion = GraphStoreNodeResponse;
83437
83635
  export type GraphStoreSimplifiedInferredProjectLinksEntityUnion = ConfluencePage | JiraIssue | JiraProject;
83636
+ export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection = HasPageInfo & {
83637
+ __typename?: 'GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection';
83638
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectEdge>>>;
83639
+ pageInfo: PageInfo;
83640
+ };
83641
+ export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectEdge = {
83642
+ __typename?: 'GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectEdge';
83643
+ createdAt: Scalars['DateTime']['output'];
83644
+ cursor?: Maybe<Scalars['String']['output']>;
83645
+ id: Scalars['ID']['output'];
83646
+ lastUpdated: Scalars['DateTime']['output'];
83647
+ node?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectUnion>;
83648
+ };
83438
83649
  export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection = HasPageInfo & {
83439
83650
  __typename?: 'GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection';
83440
83651
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge>>>;
@@ -83448,7 +83659,8 @@ export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverse
83448
83659
  lastUpdated: Scalars['DateTime']['output'];
83449
83660
  node?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion>;
83450
83661
  };
83451
- export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion = JiraProject;
83662
+ export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion = GraphStoreNodeResponse | JiraProject;
83663
+ export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectUnion = GraphStoreNodeResponse;
83452
83664
  export type GraphStoreSimplifiedInferredTeamLinksEntityConnection = HasPageInfo & {
83453
83665
  __typename?: 'GraphStoreSimplifiedInferredTeamLinksEntityConnection';
83454
83666
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredTeamLinksEntityEdge>>>;
@@ -83462,6 +83674,20 @@ export type GraphStoreSimplifiedInferredTeamLinksEntityEdge = {
83462
83674
  lastUpdated: Scalars['DateTime']['output'];
83463
83675
  node?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityUnion>;
83464
83676
  };
83677
+ export type GraphStoreSimplifiedInferredTeamLinksEntityInverseConnection = HasPageInfo & {
83678
+ __typename?: 'GraphStoreSimplifiedInferredTeamLinksEntityInverseConnection';
83679
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredTeamLinksEntityInverseEdge>>>;
83680
+ pageInfo: PageInfo;
83681
+ };
83682
+ export type GraphStoreSimplifiedInferredTeamLinksEntityInverseEdge = {
83683
+ __typename?: 'GraphStoreSimplifiedInferredTeamLinksEntityInverseEdge';
83684
+ createdAt: Scalars['DateTime']['output'];
83685
+ cursor?: Maybe<Scalars['String']['output']>;
83686
+ id: Scalars['ID']['output'];
83687
+ lastUpdated: Scalars['DateTime']['output'];
83688
+ node?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityInverseUnion>;
83689
+ };
83690
+ export type GraphStoreSimplifiedInferredTeamLinksEntityInverseUnion = GraphStoreNodeResponse;
83465
83691
  export type GraphStoreSimplifiedInferredTeamLinksEntityUnion = ConfluenceSpace | JiraProject;
83466
83692
  export type GraphStoreSimplifiedIssueAssociatedBranchConnection = HasPageInfo & HasTotal & {
83467
83693
  __typename?: 'GraphStoreSimplifiedIssueAssociatedBranchConnection';
@@ -87627,6 +87853,34 @@ export type GraphStoreSimplifiedThirdPartyToGraphRemoteLinkEdge = {
87627
87853
  node?: Maybe<GraphStoreSimplifiedThirdPartyToGraphRemoteLinkUnion>;
87628
87854
  };
87629
87855
  export type GraphStoreSimplifiedThirdPartyToGraphRemoteLinkUnion = ExternalRemoteLink;
87856
+ export type GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserConnection = HasPageInfo & {
87857
+ __typename?: 'GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserConnection';
87858
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserEdge>>>;
87859
+ pageInfo: PageInfo;
87860
+ };
87861
+ export type GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserEdge = {
87862
+ __typename?: 'GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserEdge';
87863
+ createdAt: Scalars['DateTime']['output'];
87864
+ cursor?: Maybe<Scalars['String']['output']>;
87865
+ id: Scalars['ID']['output'];
87866
+ lastUpdated: Scalars['DateTime']['output'];
87867
+ node?: Maybe<GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserUnion>;
87868
+ };
87869
+ export type GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseConnection = HasPageInfo & {
87870
+ __typename?: 'GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseConnection';
87871
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseEdge>>>;
87872
+ pageInfo: PageInfo;
87873
+ };
87874
+ export type GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseEdge = {
87875
+ __typename?: 'GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseEdge';
87876
+ createdAt: Scalars['DateTime']['output'];
87877
+ cursor?: Maybe<Scalars['String']['output']>;
87878
+ id: Scalars['ID']['output'];
87879
+ lastUpdated: Scalars['DateTime']['output'];
87880
+ node?: Maybe<GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseUnion>;
87881
+ };
87882
+ export type GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseUnion = ThirdPartyUser;
87883
+ export type GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserUnion = ThirdPartyUser;
87630
87884
  export type GraphStoreSimplifiedTopicHasRelatedEntityConnection = HasPageInfo & {
87631
87885
  __typename?: 'GraphStoreSimplifiedTopicHasRelatedEntityConnection';
87632
87886
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTopicHasRelatedEntityEdge>>>;
@@ -89469,6 +89723,19 @@ export type GraphStoreSimplifiedUserHasTopProjectInverseEdge = {
89469
89723
  };
89470
89724
  export type GraphStoreSimplifiedUserHasTopProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
89471
89725
  export type GraphStoreSimplifiedUserHasTopProjectUnion = JiraProject;
89726
+ export type GraphStoreSimplifiedUserIsInInferredProjectConnection = HasPageInfo & {
89727
+ __typename?: 'GraphStoreSimplifiedUserIsInInferredProjectConnection';
89728
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserIsInInferredProjectEdge>>>;
89729
+ pageInfo: PageInfo;
89730
+ };
89731
+ export type GraphStoreSimplifiedUserIsInInferredProjectEdge = {
89732
+ __typename?: 'GraphStoreSimplifiedUserIsInInferredProjectEdge';
89733
+ createdAt: Scalars['DateTime']['output'];
89734
+ cursor?: Maybe<Scalars['String']['output']>;
89735
+ id: Scalars['ID']['output'];
89736
+ lastUpdated: Scalars['DateTime']['output'];
89737
+ node?: Maybe<GraphStoreSimplifiedUserIsInInferredProjectUnion>;
89738
+ };
89472
89739
  export type GraphStoreSimplifiedUserIsInInferredProjectInverseConnection = HasPageInfo & {
89473
89740
  __typename?: 'GraphStoreSimplifiedUserIsInInferredProjectInverseConnection';
89474
89741
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserIsInInferredProjectInverseEdge>>>;
@@ -89483,6 +89750,7 @@ export type GraphStoreSimplifiedUserIsInInferredProjectInverseEdge = {
89483
89750
  node?: Maybe<GraphStoreSimplifiedUserIsInInferredProjectInverseUnion>;
89484
89751
  };
89485
89752
  export type GraphStoreSimplifiedUserIsInInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
89753
+ export type GraphStoreSimplifiedUserIsInInferredProjectUnion = GraphStoreNodeResponse;
89486
89754
  export type GraphStoreSimplifiedUserIsInTeamConnection = HasPageInfo & {
89487
89755
  __typename?: 'GraphStoreSimplifiedUserIsInTeamConnection';
89488
89756
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserIsInTeamEdge>>>;
@@ -92366,6 +92634,9 @@ export type GraphStoreTestPerfhammerRelationshipSortInput = {
92366
92634
  export type GraphStoreThirdPartyToGraphRemoteLinkSortInput = {
92367
92635
  lastModified?: InputMaybe<GraphStoreSortInput>;
92368
92636
  };
92637
+ export type GraphStoreThirdPartyUserLinkedViaEmailThirdPartyUserSortInput = {
92638
+ lastModified?: InputMaybe<GraphStoreSortInput>;
92639
+ };
92369
92640
  export type GraphStoreTopicHasRelatedEntitySortInput = {
92370
92641
  lastModified?: InputMaybe<GraphStoreSortInput>;
92371
92642
  };
@@ -92995,6 +93266,7 @@ export type GraphStoreV2 = {
92995
93266
  atlassianUserAuthoritativelyLinkedExternalUserInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserAuthoritativelyLinkedExternalUserInverseConnection>;
92996
93267
  atlassianUserCanViewConfluenceSpace?: Maybe<GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceConnection>;
92997
93268
  atlassianUserCanViewConfluenceSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceInverseConnection>;
93269
+ atlassianUserCollaboratesOnInferredProject?: Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectConnection>;
92998
93270
  atlassianUserCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseConnection>;
92999
93271
  atlassianUserContributedToConfluenceBlogpost?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostConnection>;
93000
93272
  atlassianUserContributedToConfluenceBlogpostInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostInverseConnection>;
@@ -93134,6 +93406,7 @@ export type GraphStoreV2 = {
93134
93406
  atlassianUserOwnsFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusFocusAreaInverseConnection>;
93135
93407
  atlassianUserOwnsFocusStrategicPlan?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanConnection>;
93136
93408
  atlassianUserOwnsFocusStrategicPlanInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseConnection>;
93409
+ atlassianUserOwnsInferredProject?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectConnection>;
93137
93410
  atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
93138
93411
  atlassianUserReactedToJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection>;
93139
93412
  atlassianUserReactedToJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentInverseConnection>;
@@ -93629,8 +93902,11 @@ export type GraphStoreV2 = {
93629
93902
  inferredDecisionSourceLineageEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseConnection>;
93630
93903
  inferredEntities?: Maybe<Array<GraphStoreInferredEntityResponse>>;
93631
93904
  inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
93905
+ inferredProjectLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityInverseConnection>;
93906
+ inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
93632
93907
  inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
93633
93908
  inferredTeamLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityConnection>;
93909
+ inferredTeamLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityInverseConnection>;
93634
93910
  jiraEpicTracksAtlassianProject?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection>;
93635
93911
  jiraEpicTracksAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectInverseConnection>;
93636
93912
  jiraProjectAgentKnowledgeContextHasKnowledgeBaseEntity?: Maybe<GraphStoreV2SimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityConnection>;
@@ -93817,6 +94093,8 @@ export type GraphStoreV2 = {
93817
94093
  talentWorkerLinksExternalWorker?: Maybe<GraphStoreV2SimplifiedTalentWorkerLinksExternalWorkerConnection>;
93818
94094
  talentWorkerLinksExternalWorkerInverse?: Maybe<GraphStoreV2SimplifiedTalentWorkerLinksExternalWorkerInverseConnection>;
93819
94095
  thirdPartyRemoteLinkLinksExternalRemoteLink?: Maybe<GraphStoreV2SimplifiedThirdPartyRemoteLinkLinksExternalRemoteLinkConnection>;
94096
+ thirdPartyUserLinkedViaEmailThirdPartyUser?: Maybe<GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserConnection>;
94097
+ thirdPartyUserLinkedViaEmailThirdPartyUserInverse?: Maybe<GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseConnection>;
93820
94098
  topicHasRelatedEntity?: Maybe<GraphStoreV2SimplifiedTopicHasRelatedEntityConnection>;
93821
94099
  topicHasRelatedEntityInverse?: Maybe<GraphStoreV2SimplifiedTopicHasRelatedEntityInverseConnection>;
93822
94100
  };
@@ -94319,6 +94597,13 @@ export type GraphStoreV2AtlassianUserCanViewConfluenceSpaceInverseArgs = {
94319
94597
  id: Scalars['ID']['input'];
94320
94598
  sort?: InputMaybe<GraphStoreV2AtlassianUserCanViewConfluenceSpaceSortInput>;
94321
94599
  };
94600
+ export type GraphStoreV2AtlassianUserCollaboratesOnInferredProjectArgs = {
94601
+ after?: InputMaybe<Scalars['String']['input']>;
94602
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
94603
+ first?: InputMaybe<Scalars['Int']['input']>;
94604
+ id: Scalars['ID']['input'];
94605
+ sort?: InputMaybe<GraphStoreV2AtlassianUserCollaboratesOnInferredProjectSortInput>;
94606
+ };
94322
94607
  export type GraphStoreV2AtlassianUserCollaboratesOnInferredProjectInverseArgs = {
94323
94608
  after?: InputMaybe<Scalars['String']['input']>;
94324
94609
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -95298,6 +95583,13 @@ export type GraphStoreV2AtlassianUserOwnsFocusStrategicPlanInverseArgs = {
95298
95583
  id: Scalars['ID']['input'];
95299
95584
  sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsFocusStrategicPlanSortInput>;
95300
95585
  };
95586
+ export type GraphStoreV2AtlassianUserOwnsInferredProjectArgs = {
95587
+ after?: InputMaybe<Scalars['String']['input']>;
95588
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
95589
+ first?: InputMaybe<Scalars['Int']['input']>;
95590
+ id: Scalars['ID']['input'];
95591
+ sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsInferredProjectSortInput>;
95592
+ };
95301
95593
  export type GraphStoreV2AtlassianUserOwnsInferredProjectInverseArgs = {
95302
95594
  after?: InputMaybe<Scalars['String']['input']>;
95303
95595
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -98766,6 +99058,20 @@ export type GraphStoreV2InferredProjectLinksEntityArgs = {
98766
99058
  id: Scalars['ID']['input'];
98767
99059
  sort?: InputMaybe<GraphStoreV2InferredProjectLinksEntitySortInput>;
98768
99060
  };
99061
+ export type GraphStoreV2InferredProjectLinksEntityInverseArgs = {
99062
+ after?: InputMaybe<Scalars['String']['input']>;
99063
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
99064
+ first?: InputMaybe<Scalars['Int']['input']>;
99065
+ id: Scalars['ID']['input'];
99066
+ sort?: InputMaybe<GraphStoreV2InferredProjectLinksEntitySortInput>;
99067
+ };
99068
+ export type GraphStoreV2InferredTeamCollaboratesOnInferredProjectArgs = {
99069
+ after?: InputMaybe<Scalars['String']['input']>;
99070
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
99071
+ first?: InputMaybe<Scalars['Int']['input']>;
99072
+ id: Scalars['ID']['input'];
99073
+ sort?: InputMaybe<GraphStoreV2InferredTeamCollaboratesOnInferredProjectSortInput>;
99074
+ };
98769
99075
  export type GraphStoreV2InferredTeamCollaboratesOnInferredProjectInverseArgs = {
98770
99076
  after?: InputMaybe<Scalars['String']['input']>;
98771
99077
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -98780,6 +99086,13 @@ export type GraphStoreV2InferredTeamLinksEntityArgs = {
98780
99086
  id: Scalars['ID']['input'];
98781
99087
  sort?: InputMaybe<GraphStoreV2InferredTeamLinksEntitySortInput>;
98782
99088
  };
99089
+ export type GraphStoreV2InferredTeamLinksEntityInverseArgs = {
99090
+ after?: InputMaybe<Scalars['String']['input']>;
99091
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
99092
+ first?: InputMaybe<Scalars['Int']['input']>;
99093
+ id: Scalars['ID']['input'];
99094
+ sort?: InputMaybe<GraphStoreV2InferredTeamLinksEntitySortInput>;
99095
+ };
98783
99096
  export type GraphStoreV2JiraEpicTracksAtlassianProjectArgs = {
98784
99097
  after?: InputMaybe<Scalars['String']['input']>;
98785
99098
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -100118,6 +100431,20 @@ export type GraphStoreV2ThirdPartyRemoteLinkLinksExternalRemoteLinkArgs = {
100118
100431
  id: Scalars['ID']['input'];
100119
100432
  sort?: InputMaybe<GraphStoreV2ThirdPartyRemoteLinkLinksExternalRemoteLinkSortInput>;
100120
100433
  };
100434
+ export type GraphStoreV2ThirdPartyUserLinkedViaEmailThirdPartyUserArgs = {
100435
+ after?: InputMaybe<Scalars['String']['input']>;
100436
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
100437
+ first?: InputMaybe<Scalars['Int']['input']>;
100438
+ id: Scalars['ID']['input'];
100439
+ sort?: InputMaybe<GraphStoreV2ThirdPartyUserLinkedViaEmailThirdPartyUserSortInput>;
100440
+ };
100441
+ export type GraphStoreV2ThirdPartyUserLinkedViaEmailThirdPartyUserInverseArgs = {
100442
+ after?: InputMaybe<Scalars['String']['input']>;
100443
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
100444
+ first?: InputMaybe<Scalars['Int']['input']>;
100445
+ id: Scalars['ID']['input'];
100446
+ sort?: InputMaybe<GraphStoreV2ThirdPartyUserLinkedViaEmailThirdPartyUserSortInput>;
100447
+ };
100121
100448
  export type GraphStoreV2TopicHasRelatedEntityArgs = {
100122
100449
  after?: InputMaybe<Scalars['String']['input']>;
100123
100450
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -105197,6 +105524,19 @@ export type GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceInverseEdge
105197
105524
  };
105198
105525
  export type GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
105199
105526
  export type GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceUnion = ConfluenceSpace;
105527
+ export type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectConnection = HasPageInfo & {
105528
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectConnection';
105529
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectEdge>>>;
105530
+ pageInfo: PageInfo;
105531
+ };
105532
+ export type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectEdge = {
105533
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectEdge';
105534
+ createdAt: Scalars['DateTime']['output'];
105535
+ cursor?: Maybe<Scalars['String']['output']>;
105536
+ id: Scalars['ID']['output'];
105537
+ lastUpdated: Scalars['DateTime']['output'];
105538
+ node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectUnion>;
105539
+ };
105200
105540
  export type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseConnection = HasPageInfo & {
105201
105541
  __typename?: 'GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseConnection';
105202
105542
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseEdge>>>;
@@ -105211,6 +105551,7 @@ export type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInve
105211
105551
  node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseUnion>;
105212
105552
  };
105213
105553
  export type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
105554
+ export type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectUnion = GraphStoreNodeResponse;
105214
105555
  export type GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostConnection = HasPageInfo & {
105215
105556
  __typename?: 'GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostConnection';
105216
105557
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostEdge>>>;
@@ -107175,6 +107516,19 @@ export type GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseEdge
107175
107516
  };
107176
107517
  export type GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
107177
107518
  export type GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanUnion = SpfPlan;
107519
+ export type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectConnection = HasPageInfo & {
107520
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectConnection';
107521
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectEdge>>>;
107522
+ pageInfo: PageInfo;
107523
+ };
107524
+ export type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectEdge = {
107525
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectEdge';
107526
+ createdAt: Scalars['DateTime']['output'];
107527
+ cursor?: Maybe<Scalars['String']['output']>;
107528
+ id: Scalars['ID']['output'];
107529
+ lastUpdated: Scalars['DateTime']['output'];
107530
+ node?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectUnion>;
107531
+ };
107178
107532
  export type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseConnection = HasPageInfo & {
107179
107533
  __typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseConnection';
107180
107534
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseEdge>>>;
@@ -107189,6 +107543,7 @@ export type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseEdge =
107189
107543
  node?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseUnion>;
107190
107544
  };
107191
107545
  export type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
107546
+ export type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectUnion = GraphStoreNodeResponse;
107192
107547
  export type GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection = HasPageInfo & {
107193
107548
  __typename?: 'GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection';
107194
107549
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentEdge>>>;
@@ -114042,7 +114397,7 @@ export type GraphStoreV2SimplifiedInferredDecisionImpactsEntityInverseEdge = {
114042
114397
  node?: Maybe<GraphStoreV2SimplifiedInferredDecisionImpactsEntityInverseUnion>;
114043
114398
  };
114044
114399
  export type GraphStoreV2SimplifiedInferredDecisionImpactsEntityInverseUnion = GraphStoreNodeResponse;
114045
- export type GraphStoreV2SimplifiedInferredDecisionImpactsEntityUnion = TownsquareProject;
114400
+ export type GraphStoreV2SimplifiedInferredDecisionImpactsEntityUnion = GraphStoreNodeResponse | TownsquareProject;
114046
114401
  export type GraphStoreV2SimplifiedInferredDecisionLinksEntityConnection = HasPageInfo & {
114047
114402
  __typename?: 'GraphStoreV2SimplifiedInferredDecisionLinksEntityConnection';
114048
114403
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredDecisionLinksEntityEdge>>>;
@@ -114112,7 +114467,34 @@ export type GraphStoreV2SimplifiedInferredProjectLinksEntityEdge = {
114112
114467
  lastUpdated: Scalars['DateTime']['output'];
114113
114468
  node?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityUnion>;
114114
114469
  };
114470
+ export type GraphStoreV2SimplifiedInferredProjectLinksEntityInverseConnection = HasPageInfo & {
114471
+ __typename?: 'GraphStoreV2SimplifiedInferredProjectLinksEntityInverseConnection';
114472
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityInverseEdge>>>;
114473
+ pageInfo: PageInfo;
114474
+ };
114475
+ export type GraphStoreV2SimplifiedInferredProjectLinksEntityInverseEdge = {
114476
+ __typename?: 'GraphStoreV2SimplifiedInferredProjectLinksEntityInverseEdge';
114477
+ createdAt: Scalars['DateTime']['output'];
114478
+ cursor?: Maybe<Scalars['String']['output']>;
114479
+ id: Scalars['ID']['output'];
114480
+ lastUpdated: Scalars['DateTime']['output'];
114481
+ node?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityInverseUnion>;
114482
+ };
114483
+ export type GraphStoreV2SimplifiedInferredProjectLinksEntityInverseUnion = GraphStoreNodeResponse;
114115
114484
  export type GraphStoreV2SimplifiedInferredProjectLinksEntityUnion = ConfluencePage | JiraIssue | JiraProject;
114485
+ export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection = HasPageInfo & {
114486
+ __typename?: 'GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection';
114487
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectEdge>>>;
114488
+ pageInfo: PageInfo;
114489
+ };
114490
+ export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectEdge = {
114491
+ __typename?: 'GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectEdge';
114492
+ createdAt: Scalars['DateTime']['output'];
114493
+ cursor?: Maybe<Scalars['String']['output']>;
114494
+ id: Scalars['ID']['output'];
114495
+ lastUpdated: Scalars['DateTime']['output'];
114496
+ node?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectUnion>;
114497
+ };
114116
114498
  export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection = HasPageInfo & {
114117
114499
  __typename?: 'GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection';
114118
114500
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge>>>;
@@ -114126,7 +114508,8 @@ export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInver
114126
114508
  lastUpdated: Scalars['DateTime']['output'];
114127
114509
  node?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion>;
114128
114510
  };
114129
- export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion = JiraProject;
114511
+ export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion = GraphStoreNodeResponse | JiraProject;
114512
+ export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectUnion = GraphStoreNodeResponse;
114130
114513
  export type GraphStoreV2SimplifiedInferredTeamLinksEntityConnection = HasPageInfo & {
114131
114514
  __typename?: 'GraphStoreV2SimplifiedInferredTeamLinksEntityConnection';
114132
114515
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityEdge>>>;
@@ -114140,6 +114523,20 @@ export type GraphStoreV2SimplifiedInferredTeamLinksEntityEdge = {
114140
114523
  lastUpdated: Scalars['DateTime']['output'];
114141
114524
  node?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityUnion>;
114142
114525
  };
114526
+ export type GraphStoreV2SimplifiedInferredTeamLinksEntityInverseConnection = HasPageInfo & {
114527
+ __typename?: 'GraphStoreV2SimplifiedInferredTeamLinksEntityInverseConnection';
114528
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityInverseEdge>>>;
114529
+ pageInfo: PageInfo;
114530
+ };
114531
+ export type GraphStoreV2SimplifiedInferredTeamLinksEntityInverseEdge = {
114532
+ __typename?: 'GraphStoreV2SimplifiedInferredTeamLinksEntityInverseEdge';
114533
+ createdAt: Scalars['DateTime']['output'];
114534
+ cursor?: Maybe<Scalars['String']['output']>;
114535
+ id: Scalars['ID']['output'];
114536
+ lastUpdated: Scalars['DateTime']['output'];
114537
+ node?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityInverseUnion>;
114538
+ };
114539
+ export type GraphStoreV2SimplifiedInferredTeamLinksEntityInverseUnion = GraphStoreNodeResponse;
114143
114540
  export type GraphStoreV2SimplifiedInferredTeamLinksEntityUnion = ConfluenceSpace | JiraProject;
114144
114541
  export type GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection = HasPageInfo & {
114145
114542
  __typename?: 'GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection';
@@ -116967,6 +117364,34 @@ export type GraphStoreV2SimplifiedThirdPartyRemoteLinkLinksExternalRemoteLinkEdg
116967
117364
  node?: Maybe<GraphStoreV2SimplifiedThirdPartyRemoteLinkLinksExternalRemoteLinkUnion>;
116968
117365
  };
116969
117366
  export type GraphStoreV2SimplifiedThirdPartyRemoteLinkLinksExternalRemoteLinkUnion = ExternalRemoteLink;
117367
+ export type GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserConnection = HasPageInfo & {
117368
+ __typename?: 'GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserConnection';
117369
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserEdge>>>;
117370
+ pageInfo: PageInfo;
117371
+ };
117372
+ export type GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserEdge = {
117373
+ __typename?: 'GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserEdge';
117374
+ createdAt: Scalars['DateTime']['output'];
117375
+ cursor?: Maybe<Scalars['String']['output']>;
117376
+ id: Scalars['ID']['output'];
117377
+ lastUpdated: Scalars['DateTime']['output'];
117378
+ node?: Maybe<GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserUnion>;
117379
+ };
117380
+ export type GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseConnection = HasPageInfo & {
117381
+ __typename?: 'GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseConnection';
117382
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseEdge>>>;
117383
+ pageInfo: PageInfo;
117384
+ };
117385
+ export type GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseEdge = {
117386
+ __typename?: 'GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseEdge';
117387
+ createdAt: Scalars['DateTime']['output'];
117388
+ cursor?: Maybe<Scalars['String']['output']>;
117389
+ id: Scalars['ID']['output'];
117390
+ lastUpdated: Scalars['DateTime']['output'];
117391
+ node?: Maybe<GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseUnion>;
117392
+ };
117393
+ export type GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseUnion = ThirdPartyUser;
117394
+ export type GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserUnion = ThirdPartyUser;
116970
117395
  export type GraphStoreV2SimplifiedTopicHasRelatedEntityConnection = HasPageInfo & {
116971
117396
  __typename?: 'GraphStoreV2SimplifiedTopicHasRelatedEntityConnection';
116972
117397
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedTopicHasRelatedEntityEdge>>>;
@@ -117004,6 +117429,9 @@ export type GraphStoreV2TalentWorkerLinksExternalWorkerSortInput = {
117004
117429
  export type GraphStoreV2ThirdPartyRemoteLinkLinksExternalRemoteLinkSortInput = {
117005
117430
  lastModified?: InputMaybe<GraphStoreSortInput>;
117006
117431
  };
117432
+ export type GraphStoreV2ThirdPartyUserLinkedViaEmailThirdPartyUserSortInput = {
117433
+ lastModified?: InputMaybe<GraphStoreSortInput>;
117434
+ };
117007
117435
  export type GraphStoreV2TopicHasRelatedEntitySortInput = {
117008
117436
  lastModified?: InputMaybe<GraphStoreSortInput>;
117009
117437
  };
@@ -117145,6 +117573,15 @@ export type GravityAddCommentInput = {
117145
117573
  draftId: Scalars['String']['input'];
117146
117574
  parentCommentId?: InputMaybe<Scalars['String']['input']>;
117147
117575
  };
117576
+ export type GravityAddInlineCommentInput = {
117577
+ annotationId?: InputMaybe<Scalars['String']['input']>;
117578
+ commentContent: Scalars['String']['input'];
117579
+ content: Scalars['String']['input'];
117580
+ draftId: Scalars['String']['input'];
117581
+ expectedRevision: Scalars['Int']['input'];
117582
+ origin?: InputMaybe<GravityDraftOrigin>;
117583
+ parentCommentId?: InputMaybe<Scalars['String']['input']>;
117584
+ };
117148
117585
  export type GravityAddReactionInput = {
117149
117586
  emojiId: Scalars['ID']['input'];
117150
117587
  entity: GravityReactionEntityType;
@@ -117297,6 +117734,7 @@ export type GravityDraftComment = {
117297
117734
  draftId: Scalars['String']['output'];
117298
117735
  id: Scalars['String']['output'];
117299
117736
  parentCommentId?: Maybe<Scalars['String']['output']>;
117737
+ resolved: Scalars['Boolean']['output'];
117300
117738
  };
117301
117739
  export declare enum GravityDraftOrigin {
117302
117740
  Ai = "AI",
@@ -117500,6 +117938,14 @@ export declare enum GravityRefResolutionStrategy {
117500
117938
  FailIfUnmapped = "FAIL_IF_UNMAPPED",
117501
117939
  MatchThenCreateIfUnmapped = "MATCH_THEN_CREATE_IF_UNMAPPED"
117502
117940
  }
117941
+ export type GravityReviseDraftInput = {
117942
+ content: Scalars['String']['input'];
117943
+ draftId: Scalars['String']['input'];
117944
+ expectedRevision: Scalars['Int']['input'];
117945
+ origin?: InputMaybe<GravityDraftOrigin>;
117946
+ resolveCommentIds?: InputMaybe<Array<Scalars['String']['input']>>;
117947
+ upsertActions?: InputMaybe<Array<GravityUpsertActionInput>>;
117948
+ };
117503
117949
  export type GravitySetActionStatusInput = {
117504
117950
  actionId: Scalars['String']['input'];
117505
117951
  status: GravityActionStatus;
@@ -122778,6 +123224,7 @@ export type JiraAgentAssignableInput = {
122778
123224
  };
122779
123225
  export declare enum JiraAgentAutonomyLevel {
122780
123226
  AutoApply = "AUTO_APPLY",
123227
+ NotConfigured = "NOT_CONFIGURED",
122781
123228
  RequiresApproval = "REQUIRES_APPROVAL"
122782
123229
  }
122783
123230
  export type JiraAgentAutonomyPolicy = {
@@ -122936,12 +123383,14 @@ export type JiraAgentInSpaceEdge = {
122936
123383
  };
122937
123384
  export type JiraAgentInSpaceJiraAutomationTrigger = JiraAgentInSpaceTrigger & {
122938
123385
  __typename?: 'JiraAgentInSpaceJiraAutomationTrigger';
123386
+ editUrl?: Maybe<Scalars['String']['output']>;
122939
123387
  flow?: Maybe<Scalars['String']['output']>;
122940
123388
  id: Scalars['ID']['output'];
122941
123389
  kind: JiraAgentInSpaceTriggerKind;
122942
123390
  name: Scalars['String']['output'];
122943
123391
  owner?: Maybe<User>;
122944
123392
  prompt?: Maybe<Scalars['String']['output']>;
123393
+ ruleId?: Maybe<Scalars['String']['output']>;
122945
123394
  };
122946
123395
  export declare enum JiraAgentInSpaceSource {
122947
123396
  Assignable = "ASSIGNABLE",
@@ -125262,6 +125711,7 @@ export type JiraBoardView = JiraView & Node & {
125262
125711
  layout?: Maybe<JiraBoardViewLayout>;
125263
125712
  project?: Maybe<JiraProject>;
125264
125713
  selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
125714
+ showCustomFiltersAsButtons?: Maybe<Scalars['Boolean']['output']>;
125265
125715
  sprints?: Maybe<JiraSprintConnection>;
125266
125716
  unmappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
125267
125717
  };
@@ -125285,6 +125735,7 @@ export type JiraBoardViewCardOptionsArgs = {
125285
125735
  export type JiraBoardViewColumnsArgs = {
125286
125736
  after?: InputMaybe<Scalars['String']['input']>;
125287
125737
  first?: InputMaybe<Scalars['Int']['input']>;
125738
+ includeConfig?: InputMaybe<Scalars['Boolean']['input']>;
125288
125739
  settings?: InputMaybe<JiraBoardViewSettings>;
125289
125740
  };
125290
125741
  export type JiraBoardViewCustomFiltersArgs = {
@@ -125545,6 +125996,22 @@ export type JiraBoardViewIssuePositions = {
125545
125996
  swimlaneIdsToRemove?: Maybe<Array<Scalars['ID']['output']>>;
125546
125997
  swimlanesToInsert?: Maybe<Array<JiraBoardViewSwimlanePosition>>;
125547
125998
  };
125999
+ export type JiraBoardViewIssueTimeInColumnField = JiraIssueField & JiraListRowField & Node & {
126000
+ __typename?: 'JiraBoardViewIssueTimeInColumnField';
126001
+ aliasFieldId?: Maybe<Scalars['ID']['output']>;
126002
+ description?: Maybe<Scalars['String']['output']>;
126003
+ fieldId: Scalars['String']['output'];
126004
+ fieldOperations?: Maybe<JiraFieldOperation>;
126005
+ hasValue?: Maybe<Scalars['Boolean']['output']>;
126006
+ id: Scalars['ID']['output'];
126007
+ isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
126008
+ isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
126009
+ isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
126010
+ issue?: Maybe<JiraIssue>;
126011
+ name: Scalars['String']['output'];
126012
+ timeInColumn?: Maybe<Scalars['Long']['output']>;
126013
+ type: Scalars['String']['output'];
126014
+ };
125548
126015
  export type JiraBoardViewLayout = JiraBoardViewColumnLayout | JiraBoardViewSwimlaneLayout;
125549
126016
  export type JiraBoardViewMultiFieldValue = {
125550
126017
  __typename?: 'JiraBoardViewMultiFieldValue';
@@ -125622,6 +126089,7 @@ export type JiraBoardViewStatusColumn = JiraBoardViewColumn & Node & {
125622
126089
  canInlineRename?: Maybe<Scalars['Boolean']['output']>;
125623
126090
  collapsed?: Maybe<Scalars['Boolean']['output']>;
125624
126091
  id: Scalars['ID']['output'];
126092
+ isBacklog?: Maybe<Scalars['Boolean']['output']>;
125625
126093
  mappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
125626
126094
  mappedWorkflows?: Maybe<JiraBoardViewWorkflowConnection>;
125627
126095
  maximumIssueCount?: Maybe<Scalars['Int']['output']>;
@@ -140991,6 +141459,7 @@ export type JiraProjectPolicyRuleType = {
140991
141459
  export type JiraProjectPolicyRuleViolation = {
140992
141460
  __typename?: 'JiraProjectPolicyRuleViolation';
140993
141461
  domain?: Maybe<Scalars['String']['output']>;
141462
+ entity?: Maybe<JiraProjectPolicyViolationEntity>;
140994
141463
  entityAri?: Maybe<Scalars['ID']['output']>;
140995
141464
  entityId?: Maybe<Scalars['String']['output']>;
140996
141465
  entityName?: Maybe<Scalars['String']['output']>;
@@ -141018,6 +141487,7 @@ export type JiraProjectPolicyRuleViolationFilter = {
141018
141487
  domains?: InputMaybe<Array<Scalars['String']['input']>>;
141019
141488
  ruleTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
141020
141489
  };
141490
+ export type JiraProjectPolicyViolationEntity = JiraIssueFieldConfig | JiraStatus;
141021
141491
  export type JiraProjectRecommendation = {
141022
141492
  __typename?: 'JiraProjectRecommendation';
141023
141493
  details?: Maybe<JiraProjectRecommendationDetails>;
@@ -143136,7 +143606,8 @@ export declare enum JiraRecommendationCategory {
143136
143606
  PermissionGrantScheme = "PERMISSION_GRANT_SCHEME",
143137
143607
  ProjectCleanup = "PROJECT_CLEANUP",
143138
143608
  ProjectRoleActor = "PROJECT_ROLE_ACTOR",
143139
- WorkflowScheme = "WORKFLOW_SCHEME"
143609
+ WorkflowScheme = "WORKFLOW_SCHEME",
143610
+ WorkflowStatus = "WORKFLOW_STATUS"
143140
143611
  }
143141
143612
  export type JiraRecommendedAction = {
143142
143613
  __typename?: 'JiraRecommendedAction';
@@ -146592,6 +147063,17 @@ export type JiraSetBoardViewGroupByPayload = Payload & {
146592
147063
  success: Scalars['Boolean']['output'];
146593
147064
  view?: Maybe<JiraBoardView>;
146594
147065
  };
147066
+ export type JiraSetBoardViewShowCustomFiltersAsButtonsInput = {
147067
+ settings?: InputMaybe<JiraBoardViewSettings>;
147068
+ showCustomFiltersAsButtons: Scalars['Boolean']['input'];
147069
+ viewId: Scalars['ID']['input'];
147070
+ };
147071
+ export type JiraSetBoardViewShowCustomFiltersAsButtonsPayload = Payload & {
147072
+ __typename?: 'JiraSetBoardViewShowCustomFiltersAsButtonsPayload';
147073
+ boardView?: Maybe<JiraBoardView>;
147074
+ errors?: Maybe<Array<MutationError>>;
147075
+ success: Scalars['Boolean']['output'];
147076
+ };
146595
147077
  export type JiraSetBoardViewStatusColumnIssueCountLimitInput = {
146596
147078
  columnId: Scalars['ID']['input'];
146597
147079
  maximumIssueCount?: InputMaybe<Scalars['Int']['input']>;
@@ -151473,6 +151955,26 @@ export type JiraWorkflowResourceUsageMetricValuesArgs = {
151473
151955
  last?: InputMaybe<Scalars['Int']['input']>;
151474
151956
  toDate?: InputMaybe<Scalars['Date']['input']>;
151475
151957
  };
151958
+ export type JiraWorkflowStatusResourceUsageMetric = JiraResourceUsageMetricV2 & Node & {
151959
+ __typename?: 'JiraWorkflowStatusResourceUsageMetric';
151960
+ cleanupValue?: Maybe<Scalars['Long']['output']>;
151961
+ currentValue?: Maybe<Scalars['Long']['output']>;
151962
+ id: Scalars['ID']['output'];
151963
+ key?: Maybe<Scalars['String']['output']>;
151964
+ thresholdValue?: Maybe<Scalars['Long']['output']>;
151965
+ values?: Maybe<JiraResourceUsageMetricValueConnection>;
151966
+ warningValue?: Maybe<Scalars['Long']['output']>;
151967
+ workflowsOverLimit?: Maybe<Scalars['Int']['output']>;
151968
+ workflowsReachingLimit?: Maybe<Scalars['Int']['output']>;
151969
+ };
151970
+ export type JiraWorkflowStatusResourceUsageMetricValuesArgs = {
151971
+ after?: InputMaybe<Scalars['String']['input']>;
151972
+ before?: InputMaybe<Scalars['String']['input']>;
151973
+ first?: InputMaybe<Scalars['Int']['input']>;
151974
+ fromDate?: InputMaybe<Scalars['Date']['input']>;
151975
+ last?: InputMaybe<Scalars['Int']['input']>;
151976
+ toDate?: InputMaybe<Scalars['Date']['input']>;
151977
+ };
151476
151978
  export type JiraWorklog = Node & {
151477
151979
  __typename?: 'JiraWorklog';
151478
151980
  author?: Maybe<User>;
@@ -154012,6 +154514,11 @@ export type JsmTelemetryChart = {
154012
154514
  source: JsmTelemetrySource;
154013
154515
  yLabel?: Maybe<Scalars['String']['output']>;
154014
154516
  };
154517
+ export type JsmTelemetryChartDataResult = {
154518
+ __typename?: 'JsmTelemetryChartDataResult';
154519
+ data?: Maybe<JsmTelemetryMetricData>;
154520
+ error?: Maybe<JsmTelemetryDomainError>;
154521
+ };
154015
154522
  export type JsmTelemetryChartMetricFilter = {
154016
154523
  __typename?: 'JsmTelemetryChartMetricFilter';
154017
154524
  attribute: Scalars['String']['output'];
@@ -154027,6 +154534,11 @@ export declare enum JsmTelemetryChartSource {
154027
154534
  Hypothesis = "HYPOTHESIS",
154028
154535
  Manual = "MANUAL"
154029
154536
  }
154537
+ export type JsmTelemetryChartTimeRangeInput = {
154538
+ from: Scalars['DateTime']['input'];
154539
+ resolutionSeconds?: InputMaybe<Scalars['Int']['input']>;
154540
+ to: Scalars['DateTime']['input'];
154541
+ };
154030
154542
  export type JsmTelemetryConnection = {
154031
154543
  __typename?: 'JsmTelemetryConnection';
154032
154544
  createdAt: Scalars['DateTime']['output'];
@@ -154270,11 +154782,6 @@ export type JsmTelemetryIncidentStringField = {
154270
154782
  fieldId?: Maybe<Scalars['String']['output']>;
154271
154783
  value?: Maybe<Scalars['String']['output']>;
154272
154784
  };
154273
- export type JsmTelemetryIncidentTelemetryResult = {
154274
- __typename?: 'JsmTelemetryIncidentTelemetryResult';
154275
- data?: Maybe<Array<JsmTelemetryMetricDataResponse>>;
154276
- error?: Maybe<JsmTelemetryDomainError>;
154277
- };
154278
154785
  export type JsmTelemetryIncidentUser = {
154279
154786
  __typename?: 'JsmTelemetryIncidentUser';
154280
154787
  accountId?: Maybe<Scalars['String']['output']>;
@@ -154342,6 +154849,10 @@ export type JsmTelemetryMetricAttributesResult = {
154342
154849
  data?: Maybe<JsmTelemetryMetricAttributeResultResponse>;
154343
154850
  error?: Maybe<JsmTelemetryDomainError>;
154344
154851
  };
154852
+ export type JsmTelemetryMetricData = {
154853
+ __typename?: 'JsmTelemetryMetricData';
154854
+ points: Array<JsmTelemetryPoint>;
154855
+ };
154345
154856
  export type JsmTelemetryMetricDataPoint = {
154346
154857
  __typename?: 'JsmTelemetryMetricDataPoint';
154347
154858
  timestamp: Scalars['DateTime']['output'];
@@ -154476,6 +154987,11 @@ export declare enum JsmTelemetryMetricType {
154476
154987
  Summary = "SUMMARY",
154477
154988
  Unknown = "UNKNOWN"
154478
154989
  }
154990
+ export type JsmTelemetryPoint = {
154991
+ __typename?: 'JsmTelemetryPoint';
154992
+ t: Scalars['DateTime']['output'];
154993
+ v?: Maybe<Scalars['Float']['output']>;
154994
+ };
154479
154995
  export type JsmTelemetryProvider = {
154480
154996
  __typename?: 'JsmTelemetryProvider';
154481
154997
  description?: Maybe<Scalars['String']['output']>;
@@ -155031,6 +155547,10 @@ export type KitsuneConnection = {
155031
155547
  edges: Array<KitsuneEdge>;
155032
155548
  pageInfo: PageInfo;
155033
155549
  };
155550
+ export type KitsuneCreateFieldOptionInput = {
155551
+ description?: InputMaybe<Scalars['String']['input']>;
155552
+ name: Scalars['String']['input'];
155553
+ };
155034
155554
  export type KitsuneCustomer = {
155035
155555
  __typename?: 'KitsuneCustomer';
155036
155556
  displayName?: Maybe<Scalars['String']['output']>;
@@ -163276,7 +163796,8 @@ export type MercuryAddOrganizationMembershipInput = {
163276
163796
  endDate?: InputMaybe<Scalars['Date']['input']>;
163277
163797
  organizationId: Scalars['ID']['input'];
163278
163798
  startDate: Scalars['Date']['input'];
163279
- userId: Scalars['ID']['input'];
163799
+ teamId?: InputMaybe<Scalars['ID']['input']>;
163800
+ userId?: InputMaybe<Scalars['ID']['input']>;
163280
163801
  };
163281
163802
  export type MercuryAddOrganizationMembershipsInput = {
163282
163803
  cloudId: Scalars['ID']['input'];
@@ -163288,6 +163809,16 @@ export type MercuryAddOrganizationMembershipsPayload = Payload & {
163288
163809
  organizationMemberships?: Maybe<Array<MercuryOrganizationMembership>>;
163289
163810
  success: Scalars['Boolean']['output'];
163290
163811
  };
163812
+ export type MercuryAddSponsorOrganizationInput = {
163813
+ focusAreaIds: Array<Scalars['ID']['input']>;
163814
+ organizationId: Scalars['ID']['input'];
163815
+ };
163816
+ export type MercuryAddSponsorOrganizationPayload = Payload & {
163817
+ __typename?: 'MercuryAddSponsorOrganizationPayload';
163818
+ addedFocusAreaIds: Array<Scalars['ID']['output']>;
163819
+ errors?: Maybe<Array<MutationError>>;
163820
+ success: Scalars['Boolean']['output'];
163821
+ };
163291
163822
  export type MercuryAddSponsoredFocusAreasInput = {
163292
163823
  focusAreaIds: Array<Scalars['ID']['input']>;
163293
163824
  organizationId: Scalars['ID']['input'];
@@ -165488,6 +166019,14 @@ export type MercuryDeleteFocusAreaBudgetPayload = Payload & {
165488
166019
  errors?: Maybe<Array<MutationError>>;
165489
166020
  success: Scalars['Boolean']['output'];
165490
166021
  };
166022
+ export type MercuryDeleteFocusAreaDraftStatusUpdateInput = {
166023
+ focusAreaId: Scalars['ID']['input'];
166024
+ };
166025
+ export type MercuryDeleteFocusAreaDraftStatusUpdatePayload = Payload & {
166026
+ __typename?: 'MercuryDeleteFocusAreaDraftStatusUpdatePayload';
166027
+ errors?: Maybe<Array<MutationError>>;
166028
+ success: Scalars['Boolean']['output'];
166029
+ };
165491
166030
  export type MercuryDeleteFocusAreaGoalLinksInput = {
165492
166031
  atlasGoalAris: Array<Scalars['String']['input']>;
165493
166032
  focusAreaAri: Scalars['String']['input'];
@@ -166018,6 +166557,7 @@ export type MercuryFocusArea = Node & {
166018
166557
  health?: Maybe<MercuryFocusAreaHealth>;
166019
166558
  icon: MercuryFocusAreaIcon;
166020
166559
  id: Scalars['ID']['output'];
166560
+ latestDraftUpdate?: Maybe<MercuryFocusAreaDraftStatusUpdate>;
166021
166561
  linkedGoalSummary?: Maybe<MercuryFocusAreaLinkedGoalSummary>;
166022
166562
  linkedGoals?: Maybe<GraphStoreSimplifiedFocusAreaHasAtlasGoalConnection>;
166023
166563
  linkedRisks?: Maybe<Array<MercuryRisk>>;
@@ -166237,6 +166777,19 @@ export type MercuryFocusAreaCustomFieldValuesByFocusArea = {
166237
166777
  customFields: Array<MercuryCustomField>;
166238
166778
  focusAreaId: Scalars['ID']['output'];
166239
166779
  };
166780
+ export type MercuryFocusAreaDraftStatusUpdate = {
166781
+ __typename?: 'MercuryFocusAreaDraftStatusUpdate';
166782
+ createdBy?: Maybe<User>;
166783
+ createdDate: Scalars['String']['output'];
166784
+ focusAreaId: Scalars['ID']['output'];
166785
+ health?: Maybe<MercuryFocusAreaHealth>;
166786
+ id: Scalars['ID']['output'];
166787
+ status?: Maybe<MercuryFocusAreaStatus>;
166788
+ summary?: Maybe<Scalars['String']['output']>;
166789
+ targetDate?: Maybe<MercuryTargetDate>;
166790
+ updatedBy?: Maybe<User>;
166791
+ updatedDate: Scalars['String']['output'];
166792
+ };
166240
166793
  export type MercuryFocusAreaEdge = {
166241
166794
  __typename?: 'MercuryFocusAreaEdge';
166242
166795
  cursor: Scalars['String']['output'];
@@ -167755,6 +168308,7 @@ export type MercuryMultiUserCustomFieldInput = {
167755
168308
  export type MercuryMutationApi = {
167756
168309
  __typename?: 'MercuryMutationApi';
167757
168310
  addFocusAreaCustomFieldDefinitionOptions?: Maybe<MercuryAddCustomFieldDefinitionOptionsPayload>;
168311
+ addSponsorOrganization?: Maybe<MercuryAddSponsorOrganizationPayload>;
167758
168312
  addWatcherToFocusArea?: Maybe<MercuryAddWatcherToFocusAreaPayload>;
167759
168313
  archiveFocusArea?: Maybe<MercuryArchiveFocusAreaPayload>;
167760
168314
  assignUserAccessToFocusArea?: Maybe<MercuryAssignUserAccessToFocusAreaPayload>;
@@ -167769,6 +168323,7 @@ export type MercuryMutationApi = {
167769
168323
  deleteFocusArea?: Maybe<MercuryDeleteFocusAreaPayload>;
167770
168324
  deleteFocusAreaCustomFieldDefinition?: Maybe<MercuryDeleteCustomFieldDefinitionPayload>;
167771
168325
  deleteFocusAreaCustomFieldDefinitionOptions?: Maybe<MercuryDeleteCustomFieldDefinitionOptionsPayload>;
168326
+ deleteFocusAreaDraftStatusUpdate?: Maybe<MercuryDeleteFocusAreaDraftStatusUpdatePayload>;
167772
168327
  deleteFocusAreaGoalLinks?: Maybe<MercuryDeleteFocusAreaGoalLinksPayload>;
167773
168328
  deleteFocusAreaHierarchy?: Maybe<MercuryDeleteFocusAreaHierarchyPayload>;
167774
168329
  deleteFocusAreaLink?: Maybe<MercuryDeleteFocusAreaLinkPayload>;
@@ -167782,11 +168337,13 @@ export type MercuryMutationApi = {
167782
168337
  linkGoalsToFocusArea?: Maybe<MercuryLinkGoalsToFocusAreaPayload>;
167783
168338
  publishFocusArea?: Maybe<MercuryPublishFocusAreaPayload>;
167784
168339
  recreatePortfolioFocusAreas?: Maybe<MercuryUpdatePortfolioPayload>;
168340
+ removeSponsorOrganization?: Maybe<MercuryRemoveSponsorOrganizationPayload>;
167785
168341
  removeUserAccessToFocusArea?: Maybe<MercuryRemoveUserAccessToFocusAreaPayload>;
167786
168342
  removeWatcherFromFocusArea?: Maybe<MercuryRemoveWatcherFromFocusAreaPayload>;
167787
168343
  reorderFocusAreaCustomFieldDefinitionOptions?: Maybe<MercuryReorderCustomFieldDefinitionOptionsPayload>;
167788
168344
  rerankFocusAreaAbsolute?: Maybe<MercuryRerankFocusAreaAbsolutePayload>;
167789
168345
  rerankFocusAreas?: Maybe<MercuryRerankFocusAreasPayload>;
168346
+ saveFocusAreaDraftStatusUpdate?: Maybe<MercurySaveFocusAreaDraftStatusUpdatePayload>;
167790
168347
  setFocusAreaCustomFieldValue?: Maybe<MercurySetFocusAreaCustomFieldPayload>;
167791
168348
  setFocusAreaCustomFieldValues?: Maybe<MercurySetFocusAreaCustomFieldsPayload>;
167792
168349
  setPreference?: Maybe<MercurySetPreferencePayload>;
@@ -167814,6 +168371,9 @@ export type MercuryMutationApi = {
167814
168371
  export type MercuryMutationApiAddFocusAreaCustomFieldDefinitionOptionsArgs = {
167815
168372
  input: MercuryAddCustomFieldDefinitionOptionsInput;
167816
168373
  };
168374
+ export type MercuryMutationApiAddSponsorOrganizationArgs = {
168375
+ input: MercuryAddSponsorOrganizationInput;
168376
+ };
167817
168377
  export type MercuryMutationApiAddWatcherToFocusAreaArgs = {
167818
168378
  input: MercuryAddWatcherToFocusAreaInput;
167819
168379
  };
@@ -167856,6 +168416,9 @@ export type MercuryMutationApiDeleteFocusAreaCustomFieldDefinitionArgs = {
167856
168416
  export type MercuryMutationApiDeleteFocusAreaCustomFieldDefinitionOptionsArgs = {
167857
168417
  input: MercuryDeleteCustomFieldDefinitionOptionsInput;
167858
168418
  };
168419
+ export type MercuryMutationApiDeleteFocusAreaDraftStatusUpdateArgs = {
168420
+ input: MercuryDeleteFocusAreaDraftStatusUpdateInput;
168421
+ };
167859
168422
  export type MercuryMutationApiDeleteFocusAreaGoalLinksArgs = {
167860
168423
  input: MercuryDeleteFocusAreaGoalLinksInput;
167861
168424
  };
@@ -167895,6 +168458,9 @@ export type MercuryMutationApiPublishFocusAreaArgs = {
167895
168458
  export type MercuryMutationApiRecreatePortfolioFocusAreasArgs = {
167896
168459
  input: MercuryRecreatePortfolioFocusAreasInput;
167897
168460
  };
168461
+ export type MercuryMutationApiRemoveSponsorOrganizationArgs = {
168462
+ input: MercuryRemoveSponsorOrganizationInput;
168463
+ };
167898
168464
  export type MercuryMutationApiRemoveUserAccessToFocusAreaArgs = {
167899
168465
  input: MercuryRemoveUserAccessToFocusAreaInput;
167900
168466
  };
@@ -167910,6 +168476,9 @@ export type MercuryMutationApiRerankFocusAreaAbsoluteArgs = {
167910
168476
  export type MercuryMutationApiRerankFocusAreasArgs = {
167911
168477
  input: MercuryRerankFocusAreasInput;
167912
168478
  };
168479
+ export type MercuryMutationApiSaveFocusAreaDraftStatusUpdateArgs = {
168480
+ input: MercurySaveFocusAreaDraftStatusUpdateInput;
168481
+ };
167913
168482
  export type MercuryMutationApiSetFocusAreaCustomFieldValueArgs = {
167914
168483
  input: MercurySetFocusAreaCustomFieldInput;
167915
168484
  };
@@ -169986,6 +170555,15 @@ export type MercuryRemoveOrganizationMembershipPayload = Payload & {
169986
170555
  id: Scalars['ID']['output'];
169987
170556
  success: Scalars['Boolean']['output'];
169988
170557
  };
170558
+ export type MercuryRemoveSponsorOrganizationInput = {
170559
+ focusAreaIds: Array<Scalars['ID']['input']>;
170560
+ organizationId: Scalars['ID']['input'];
170561
+ };
170562
+ export type MercuryRemoveSponsorOrganizationPayload = Payload & {
170563
+ __typename?: 'MercuryRemoveSponsorOrganizationPayload';
170564
+ errors?: Maybe<Array<MutationError>>;
170565
+ success: Scalars['Boolean']['output'];
170566
+ };
169989
170567
  export type MercuryRemoveSponsoredFocusAreasInput = {
169990
170568
  focusAreaIds: Array<Scalars['ID']['input']>;
169991
170569
  organizationId: Scalars['ID']['input'];
@@ -170520,6 +171098,19 @@ export type MercuryRisksQueryApiSearchRiskActivityHistoryArgs = {
170520
171098
  q?: InputMaybe<Scalars['String']['input']>;
170521
171099
  sort?: InputMaybe<Array<InputMaybe<MercuryRiskActivitySort>>>;
170522
171100
  };
171101
+ export type MercurySaveFocusAreaDraftStatusUpdateInput = {
171102
+ focusAreaId: Scalars['ID']['input'];
171103
+ healthId?: InputMaybe<Scalars['ID']['input']>;
171104
+ statusId?: InputMaybe<Scalars['ID']['input']>;
171105
+ summary?: InputMaybe<Scalars['String']['input']>;
171106
+ targetDate?: InputMaybe<MercuryFocusAreaTargetDateInput>;
171107
+ };
171108
+ export type MercurySaveFocusAreaDraftStatusUpdatePayload = Payload & {
171109
+ __typename?: 'MercurySaveFocusAreaDraftStatusUpdatePayload';
171110
+ draftStatusUpdate?: Maybe<MercuryFocusAreaDraftStatusUpdate>;
171111
+ errors?: Maybe<Array<MutationError>>;
171112
+ success: Scalars['Boolean']['output'];
171113
+ };
170523
171114
  export type MercurySetAskCustomFieldInput = {
170524
171115
  askId: Scalars['ID']['input'];
170525
171116
  coreField?: InputMaybe<MercuryCustomFieldInput>;
@@ -173777,6 +174368,7 @@ export type Mutation = {
173777
174368
  graphStore_deleteVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload>;
173778
174369
  graphStore_deleteVulnerabilityAssociatedIssue?: Maybe<GraphStoreDeleteVulnerabilityAssociatedIssuePayload>;
173779
174370
  gravity_addDraftComment?: Maybe<GravityCommentPayload>;
174371
+ gravity_addInlineComment?: Maybe<GravityDraftPayload>;
173780
174372
  gravity_addReaction?: Maybe<GravityAddReactionPayload>;
173781
174373
  gravity_applyDraft?: Maybe<GravityDraftPayload>;
173782
174374
  gravity_createDraft?: Maybe<GravityDraftPayload>;
@@ -173787,6 +174379,7 @@ export type Mutation = {
173787
174379
  gravity_discardDraft?: Maybe<GravityDraftPayload>;
173788
174380
  gravity_generateViewTemplateFromUserPrompt?: Maybe<GravityGenerateViewTemplateFromUserPromptPayload>;
173789
174381
  gravity_postFeedback?: Maybe<GravityPostFeedbackPayload>;
174382
+ gravity_reviseDraft?: Maybe<GravityDraftPayload>;
173790
174383
  gravity_setActionStatus?: Maybe<GravityActionPayload>;
173791
174384
  gravity_setViewArrangement?: Maybe<GravityViewArrangementPayload>;
173792
174385
  gravity_updateDeliverySettings?: Maybe<GravityUpdateDeliverySettingsPayload>;
@@ -173917,6 +174510,7 @@ export type Mutation = {
173917
174510
  jira_setBoardViewDensity?: Maybe<JiraSetBoardViewDensityPayload>;
173918
174511
  jira_setBoardViewFilter?: Maybe<JiraSetBoardViewFilterPayload>;
173919
174512
  jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
174513
+ jira_setBoardViewShowCustomFiltersAsButtons?: Maybe<JiraSetBoardViewShowCustomFiltersAsButtonsPayload>;
173920
174514
  jira_setBoardViewStatusColumnIssueCountLimit?: Maybe<JiraSetBoardViewStatusColumnIssueCountLimitPayload>;
173921
174515
  jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
173922
174516
  jira_setBoardViewSwimlaneState?: Maybe<JiraSetBoardViewSwimlaneStatePayload>;
@@ -178081,6 +178675,10 @@ export type MutationGravity_AddDraftCommentArgs = {
178081
178675
  cloudId: Scalars['ID']['input'];
178082
178676
  input: GravityAddCommentInput;
178083
178677
  };
178678
+ export type MutationGravity_AddInlineCommentArgs = {
178679
+ cloudId: Scalars['ID']['input'];
178680
+ input: GravityAddInlineCommentInput;
178681
+ };
178084
178682
  export type MutationGravity_AddReactionArgs = {
178085
178683
  cloudId: Scalars['ID']['input'];
178086
178684
  input: GravityAddReactionInput;
@@ -178121,6 +178719,10 @@ export type MutationGravity_PostFeedbackArgs = {
178121
178719
  cloudId: Scalars['ID']['input'];
178122
178720
  input: GravityPostFeedbackInput;
178123
178721
  };
178722
+ export type MutationGravity_ReviseDraftArgs = {
178723
+ cloudId: Scalars['ID']['input'];
178724
+ input: GravityReviseDraftInput;
178725
+ };
178124
178726
  export type MutationGravity_SetActionStatusArgs = {
178125
178727
  cloudId: Scalars['ID']['input'];
178126
178728
  input: GravitySetActionStatusInput;
@@ -178536,6 +179138,9 @@ export type MutationJira_SetBoardViewFilterArgs = {
178536
179138
  export type MutationJira_SetBoardViewGroupByArgs = {
178537
179139
  input: JiraSetBoardViewGroupByInput;
178538
179140
  };
179141
+ export type MutationJira_SetBoardViewShowCustomFiltersAsButtonsArgs = {
179142
+ input: JiraSetBoardViewShowCustomFiltersAsButtonsInput;
179143
+ };
178539
179144
  export type MutationJira_SetBoardViewStatusColumnIssueCountLimitArgs = {
178540
179145
  input: JiraSetBoardViewStatusColumnIssueCountLimitInput;
178541
179146
  };
@@ -178911,6 +179516,7 @@ export type MutationKitsune_CreateFieldArgs = {
178911
179516
  entityTypes: Array<KitsuneEntityType>;
178912
179517
  name: Scalars['String']['input'];
178913
179518
  options?: InputMaybe<Array<Scalars['String']['input']>>;
179519
+ optionsV2?: InputMaybe<Array<KitsuneCreateFieldOptionInput>>;
178914
179520
  valueType: KitsuneFieldValueType;
178915
179521
  workspaceAri: Scalars['ID']['input'];
178916
179522
  };
@@ -183168,33 +183774,76 @@ export type PsmDateRangeInput = {
183168
183774
  };
183169
183775
  export type PsmDevice = {
183170
183776
  __typename?: 'PsmDevice';
183171
- atlassianAccountId: Scalars['ID']['output'];
183777
+ activeSensorFaults?: Maybe<Array<PsmDeviceSensorFault>>;
183172
183778
  cloudId: Scalars['ID']['output'];
183779
+ configuration?: Maybe<PsmDeviceConfiguration>;
183173
183780
  createdAt: Scalars['DateTime']['output'];
183781
+ deviceName?: Maybe<Scalars['String']['output']>;
183782
+ enrolledAt?: Maybe<Scalars['DateTime']['output']>;
183783
+ health?: Maybe<PsmDeviceHealth>;
183174
183784
  lastSeen?: Maybe<Scalars['DateTime']['output']>;
183785
+ owner?: Maybe<PsmDeviceOwner>;
183175
183786
  providerSystemId?: Maybe<Scalars['ID']['output']>;
183176
183787
  serialNumber: Scalars['String']['output'];
183177
183788
  spaceId?: Maybe<Scalars['ID']['output']>;
183178
183789
  status: PsmDeviceStatus;
183179
183790
  updatedAt: Scalars['DateTime']['output'];
183180
183791
  };
183792
+ export type PsmDeviceConfiguration = {
183793
+ __typename?: 'PsmDeviceConfiguration';
183794
+ cpu?: Maybe<Scalars['String']['output']>;
183795
+ model?: Maybe<Scalars['String']['output']>;
183796
+ os?: Maybe<Scalars['String']['output']>;
183797
+ platform?: Maybe<Scalars['String']['output']>;
183798
+ ram?: Maybe<Scalars['String']['output']>;
183799
+ storage?: Maybe<Scalars['String']['output']>;
183800
+ };
183181
183801
  export type PsmDeviceConnection = {
183182
183802
  __typename?: 'PsmDeviceConnection';
183183
183803
  edges?: Maybe<Array<PsmDeviceEdge>>;
183184
183804
  errors?: Maybe<Array<QueryError>>;
183185
183805
  nodes?: Maybe<Array<Maybe<PsmDevice>>>;
183806
+ offlineDeviceCount?: Maybe<Scalars['Int']['output']>;
183186
183807
  pageInfo: PageInfo;
183808
+ totalRegisteredDevices?: Maybe<Scalars['Int']['output']>;
183187
183809
  };
183188
183810
  export type PsmDeviceEdge = {
183189
183811
  __typename?: 'PsmDeviceEdge';
183190
183812
  cursor: Scalars['String']['output'];
183191
183813
  node?: Maybe<PsmDevice>;
183192
183814
  };
183815
+ export type PsmDeviceHealth = {
183816
+ __typename?: 'PsmDeviceHealth';
183817
+ healthScorePercentage?: Maybe<Scalars['Float']['output']>;
183818
+ healthStatus?: Maybe<PsmDeviceHealthStatus>;
183819
+ };
183820
+ export declare enum PsmDeviceHealthStatus {
183821
+ Excellent = "EXCELLENT",
183822
+ Fair = "FAIR",
183823
+ Good = "GOOD",
183824
+ Poor = "POOR",
183825
+ Unknown = "UNKNOWN"
183826
+ }
183193
183827
  export type PsmDeviceIdentity = {
183194
183828
  __typename?: 'PsmDeviceIdentity';
183195
183829
  isDeviceOffline?: Maybe<Scalars['Boolean']['output']>;
183196
183830
  serialNumber: Scalars['String']['output'];
183197
183831
  };
183832
+ export type PsmDeviceOwner = {
183833
+ __typename?: 'PsmDeviceOwner';
183834
+ atlassianAccountId: Scalars['ID']['output'];
183835
+ email?: Maybe<Scalars['String']['output']>;
183836
+ name?: Maybe<Scalars['String']['output']>;
183837
+ };
183838
+ export type PsmDeviceSensorFault = {
183839
+ __typename?: 'PsmDeviceSensorFault';
183840
+ category?: Maybe<Scalars['String']['output']>;
183841
+ faultId: Scalars['ID']['output'];
183842
+ providerSensorId?: Maybe<Scalars['ID']['output']>;
183843
+ sensorId?: Maybe<Scalars['ID']['output']>;
183844
+ sensorName?: Maybe<Scalars['String']['output']>;
183845
+ triggerStates?: Maybe<Array<PsmSensorTriggerState>>;
183846
+ };
183198
183847
  export declare enum PsmDeviceStatus {
183199
183848
  Active = "ACTIVE",
183200
183849
  Offline = "OFFLINE",
@@ -183888,6 +184537,7 @@ export type Query = {
183888
184537
  agentStudio_testConversationListByContainerId?: Maybe<AgentStudioConversationListResult>;
183889
184538
  agentStudio_toolIntegrations?: Maybe<AgentStudioToolIntegrationsConnection>;
183890
184539
  agentStudio_tools?: Maybe<AgentStudioToolsConnection>;
184540
+ agentStudio_unlicensedRovoWidgetConfigByContainerAri?: Maybe<AgentStudioUnlicensedRovoWidgetConfigByContainerAriResult>;
183891
184541
  agentStudio_validateScenario?: Maybe<AgentStudioScenarioValidationPayload>;
183892
184542
  agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
183893
184543
  agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
@@ -184249,6 +184899,7 @@ export type Query = {
184249
184899
  cloudify_analysisExecutions: Array<CloudifyAnalysisExecution>;
184250
184900
  cloudify_enactment?: Maybe<CloudifyEnactment>;
184251
184901
  cloudify_enactments: Array<CloudifyEnactment>;
184902
+ cloudify_rawCustomizationRecommendations?: Maybe<Array<CloudifyRawCustomizationRecommendation>>;
184252
184903
  cloudify_recommendations: Array<CloudifyRecommendation>;
184253
184904
  codeInJira?: Maybe<CodeInJira>;
184254
184905
  collabContext_workspaceIsConnectedToWorkspace?: Maybe<CollabContextWorkspaceConnection>;
@@ -184822,6 +185473,7 @@ export type Query = {
184822
185473
  graphStoreV2_atlassianUserAuthoritativelyLinkedExternalUserInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserAuthoritativelyLinkedExternalUserInverseConnection>;
184823
185474
  graphStoreV2_atlassianUserCanViewConfluenceSpace?: Maybe<GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceConnection>;
184824
185475
  graphStoreV2_atlassianUserCanViewConfluenceSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceInverseConnection>;
185476
+ graphStoreV2_atlassianUserCollaboratesOnInferredProject?: Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectConnection>;
184825
185477
  graphStoreV2_atlassianUserCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseConnection>;
184826
185478
  graphStoreV2_atlassianUserContributedToConfluenceBlogpost?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostConnection>;
184827
185479
  graphStoreV2_atlassianUserContributedToConfluenceBlogpostInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostInverseConnection>;
@@ -184961,6 +185613,7 @@ export type Query = {
184961
185613
  graphStoreV2_atlassianUserOwnsFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusFocusAreaInverseConnection>;
184962
185614
  graphStoreV2_atlassianUserOwnsFocusStrategicPlan?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanConnection>;
184963
185615
  graphStoreV2_atlassianUserOwnsFocusStrategicPlanInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseConnection>;
185616
+ graphStoreV2_atlassianUserOwnsInferredProject?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectConnection>;
184964
185617
  graphStoreV2_atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
184965
185618
  graphStoreV2_atlassianUserReactedToJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection>;
184966
185619
  graphStoreV2_atlassianUserReactedToJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentInverseConnection>;
@@ -185456,8 +186109,11 @@ export type Query = {
185456
186109
  graphStoreV2_inferredDecisionSourceLineageEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseConnection>;
185457
186110
  graphStoreV2_inferredEntities?: Maybe<Array<GraphStoreInferredEntityResponse>>;
185458
186111
  graphStoreV2_inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
186112
+ graphStoreV2_inferredProjectLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityInverseConnection>;
186113
+ graphStoreV2_inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
185459
186114
  graphStoreV2_inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
185460
186115
  graphStoreV2_inferredTeamLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityConnection>;
186116
+ graphStoreV2_inferredTeamLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityInverseConnection>;
185461
186117
  graphStoreV2_jiraEpicTracksAtlassianProject?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection>;
185462
186118
  graphStoreV2_jiraEpicTracksAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectInverseConnection>;
185463
186119
  graphStoreV2_jiraProjectAgentKnowledgeContextHasKnowledgeBaseEntity?: Maybe<GraphStoreV2SimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityConnection>;
@@ -185644,6 +186300,8 @@ export type Query = {
185644
186300
  graphStoreV2_talentWorkerLinksExternalWorker?: Maybe<GraphStoreV2SimplifiedTalentWorkerLinksExternalWorkerConnection>;
185645
186301
  graphStoreV2_talentWorkerLinksExternalWorkerInverse?: Maybe<GraphStoreV2SimplifiedTalentWorkerLinksExternalWorkerInverseConnection>;
185646
186302
  graphStoreV2_thirdPartyRemoteLinkLinksExternalRemoteLink?: Maybe<GraphStoreV2SimplifiedThirdPartyRemoteLinkLinksExternalRemoteLinkConnection>;
186303
+ graphStoreV2_thirdPartyUserLinkedViaEmailThirdPartyUser?: Maybe<GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserConnection>;
186304
+ graphStoreV2_thirdPartyUserLinkedViaEmailThirdPartyUserInverse?: Maybe<GraphStoreV2SimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseConnection>;
185647
186305
  graphStoreV2_topicHasRelatedEntity?: Maybe<GraphStoreV2SimplifiedTopicHasRelatedEntityConnection>;
185648
186306
  graphStoreV2_topicHasRelatedEntityInverse?: Maybe<GraphStoreV2SimplifiedTopicHasRelatedEntityInverseConnection>;
185649
186307
  graphStore_appInstallationAssociatedToOperationsWorkspaceInverseRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection>;
@@ -185787,6 +186445,7 @@ export type Query = {
185787
186445
  graphStore_atlassianUserOwnsExternalTestRunInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestRunInverseConnection>;
185788
186446
  graphStore_atlassianUserOwnsExternalTestStatus?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusConnection>;
185789
186447
  graphStore_atlassianUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection>;
186448
+ graphStore_atlassianUserOwnsInferredProject?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectConnection>;
185790
186449
  graphStore_atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
185791
186450
  graphStore_atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
185792
186451
  graphStore_atlassianUserTriggeredAtlassianAgentSessionInverse?: Maybe<GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection>;
@@ -186090,8 +186749,11 @@ export type Query = {
186090
186749
  graphStore_inferredDecisionSourceLineageEntity?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityConnection>;
186091
186750
  graphStore_inferredDecisionSourceLineageEntityInverse?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseConnection>;
186092
186751
  graphStore_inferredProjectLinksEntity?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityConnection>;
186752
+ graphStore_inferredProjectLinksEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityInverseConnection>;
186753
+ graphStore_inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
186093
186754
  graphStore_inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
186094
186755
  graphStore_inferredTeamLinksEntity?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityConnection>;
186756
+ graphStore_inferredTeamLinksEntityInverse?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityInverseConnection>;
186095
186757
  graphStore_issueAssociatedBranch?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchConnection>;
186096
186758
  graphStore_issueAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseConnection>;
186097
186759
  graphStore_issueAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
@@ -186536,6 +187198,8 @@ export type Query = {
186536
187198
  graphStore_testPerfhammerRelationshipInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
186537
187199
  graphStore_testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
186538
187200
  graphStore_thirdPartyToGraphRemoteLink?: Maybe<GraphStoreSimplifiedThirdPartyToGraphRemoteLinkConnection>;
187201
+ graphStore_thirdPartyUserLinkedViaEmailThirdPartyUser?: Maybe<GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserConnection>;
187202
+ graphStore_thirdPartyUserLinkedViaEmailThirdPartyUserInverse?: Maybe<GraphStoreSimplifiedThirdPartyUserLinkedViaEmailThirdPartyUserInverseConnection>;
186539
187203
  graphStore_topicHasRelatedEntity?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityConnection>;
186540
187204
  graphStore_topicHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityInverseConnection>;
186541
187205
  graphStore_townsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreSimplifiedTownsquareTagIsAliasOfTownsquareTagConnection>;
@@ -186667,6 +187331,7 @@ export type Query = {
186667
187331
  graphStore_userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
186668
187332
  graphStore_userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
186669
187333
  graphStore_userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
187334
+ graphStore_userIsInInferredProject?: Maybe<GraphStoreSimplifiedUserIsInInferredProjectConnection>;
186670
187335
  graphStore_userIsInInferredProjectInverse?: Maybe<GraphStoreSimplifiedUserIsInInferredProjectInverseConnection>;
186671
187336
  graphStore_userIsInTeam?: Maybe<GraphStoreSimplifiedUserIsInTeamConnection>;
186672
187337
  graphStore_userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
@@ -186946,6 +187611,8 @@ export type Query = {
186946
187611
  jira_agentContextSettings?: Maybe<JiraAgentContextSettings>;
186947
187612
  jira_agentContextSources?: Maybe<JiraAgentContextItemConnection>;
186948
187613
  jira_agentSessionsIsPlanModeEnabled?: Maybe<Scalars['Boolean']['output']>;
187614
+ jira_agentSpaceCuratedSources?: Maybe<JiraAgentContextItemConnection>;
187615
+ jira_agentSpaceInstructions?: Maybe<JiraAgentSpaceInstruction>;
186949
187616
  jira_agentsInSpace?: Maybe<JiraAgentsInSpace>;
186950
187617
  jira_agentsInSpaceByAgentAris?: Maybe<Array<Maybe<JiraAgentInSpace>>>;
186951
187618
  jira_availableStatuses?: Maybe<JiraStatusConnection>;
@@ -187035,6 +187702,7 @@ export type Query = {
187035
187702
  jsmConversation_settings?: Maybe<JsmConversationSettings>;
187036
187703
  jsmSolutionComposerPlan?: Maybe<JsmSolutionComposerPlanQueryApi>;
187037
187704
  jsmTelemetry_aiPrompt?: Maybe<Scalars['String']['output']>;
187705
+ jsmTelemetry_chartData?: Maybe<JsmTelemetryChartDataResult>;
187038
187706
  jsmTelemetry_dashboard?: Maybe<JsmTelemetryDashboardResult>;
187039
187707
  jsmTelemetry_dashboardByScope?: Maybe<JsmTelemetryDashboardData>;
187040
187708
  jsmTelemetry_getIncidentContext?: Maybe<JsmTelemetryIncidentContextResult>;
@@ -187042,7 +187710,6 @@ export type Query = {
187042
187710
  jsmTelemetry_getMetricAttributes?: Maybe<JsmTelemetryMetricAttributesResult>;
187043
187711
  jsmTelemetry_getProviderContextSchema?: Maybe<JsmTelemetryProviderContextSchemaResult>;
187044
187712
  jsmTelemetry_getTelemetryConnection?: Maybe<JsmTelemetryConnection>;
187045
- jsmTelemetry_incidentTelemetry?: Maybe<JsmTelemetryIncidentTelemetryResult>;
187046
187713
  jsmTelemetry_listAvailableTelemetryProviders?: Maybe<Array<JsmTelemetryProviderAvailability>>;
187047
187714
  jsmTelemetry_listTelemetryConnections?: Maybe<Array<JsmTelemetryConnection>>;
187048
187715
  jsmTelemetry_listTelemetryProviders?: Maybe<Array<JsmTelemetryProvider>>;
@@ -187151,6 +187818,16 @@ export type Query = {
187151
187818
  marketplacePartner?: Maybe<MarketplacePartner>;
187152
187819
  marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
187153
187820
  marketplaceStore: MarketplaceStoreQueryApi;
187821
+ marketplaceStore_appReviewsByAppKeyV2?: Maybe<MarketplaceStoreReviewsResponse>;
187822
+ marketplaceStore_editionsByAppKeyV2?: Maybe<Array<MarketplaceStoreEdition>>;
187823
+ marketplaceStore_getProductListingV2?: Maybe<MarketplaceStoreProductListingResponse>;
187824
+ marketplaceStore_partnerByPartnerNameV2?: Maybe<MarketplaceStoreSearchPartnerResponse>;
187825
+ marketplaceStore_partnerV2?: Maybe<MarketplaceStorePartnerResponse>;
187826
+ marketplaceStore_privacyAndSecurityV2?: Maybe<MarketplaceStorePrivacyAndSecurityResponse>;
187827
+ marketplaceStore_productDetailsByCloudIdV2?: Maybe<MarketplaceStoreProductDetailsByCloudIdResponse>;
187828
+ marketplaceStore_productTagsV2?: Maybe<Array<Maybe<MarketplaceStoreProductTag>>>;
187829
+ marketplaceStore_recommendationsSectionV2?: Maybe<MarketplaceStoreRecommendationsSection>;
187830
+ marketplaceStore_reviewSummaryV2?: Maybe<MarketplaceStoreReviewSummaryResponse>;
187154
187831
  me: AuthenticationContext;
187155
187832
  mediaConfiguration?: Maybe<MediaConfiguration>;
187156
187833
  media_items?: Maybe<Array<MediaItem>>;
@@ -188233,6 +188910,10 @@ export type QueryAgentStudio_ToolsArgs = {
188233
188910
  scenarioVersion?: InputMaybe<Scalars['Int']['input']>;
188234
188911
  searchQuery?: InputMaybe<Scalars['String']['input']>;
188235
188912
  };
188913
+ export type QueryAgentStudio_UnlicensedRovoWidgetConfigByContainerAriArgs = {
188914
+ cloudId: Scalars['String']['input'];
188915
+ containerAri: Scalars['ID']['input'];
188916
+ };
188236
188917
  export type QueryAgentStudio_ValidateScenarioArgs = {
188237
188918
  cloudId: Scalars['String']['input'];
188238
188919
  containerId: Scalars['ID']['input'];
@@ -189928,6 +190609,10 @@ export type QueryCloudify_EnactmentsArgs = {
189928
190609
  orgId: Scalars['ID']['input'];
189929
190610
  recommendationId: Scalars['ID']['input'];
189930
190611
  };
190612
+ export type QueryCloudify_RawCustomizationRecommendationsArgs = {
190613
+ ids: Array<Scalars['ID']['input']>;
190614
+ orgId: Scalars['ID']['input'];
190615
+ };
189931
190616
  export type QueryCloudify_RecommendationsArgs = {
189932
190617
  filter: CloudifyRecommendationFilterInput;
189933
190618
  orgId: Scalars['ID']['input'];
@@ -191718,9 +192403,9 @@ export type QueryDevai_SearchConnectedReposArgs = {
191718
192403
  cloudId: Scalars['ID']['input'];
191719
192404
  language?: InputMaybe<Array<Scalars['String']['input']>>;
191720
192405
  owner?: InputMaybe<Array<Scalars['String']['input']>>;
192406
+ page?: InputMaybe<Scalars['Int']['input']>;
192407
+ pagelen?: InputMaybe<Scalars['Int']['input']>;
191721
192408
  repoName?: InputMaybe<Array<Scalars['String']['input']>>;
191722
- searchTerm?: InputMaybe<Array<Scalars['String']['input']>>;
191723
- workspace?: InputMaybe<Array<DevAiConnectedRepoWorkspaceFilter>>;
191724
192409
  workspaceFilter: Array<DevAiConnectedRepoWorkspaceFilter>;
191725
192410
  };
191726
192411
  export type QueryDevai_TechnicalPlannerJobByIdArgs = {
@@ -192739,6 +193424,13 @@ export type QueryGraphStoreV2_AtlassianUserCanViewConfluenceSpaceInverseArgs = {
192739
193424
  id: Scalars['ID']['input'];
192740
193425
  sort?: InputMaybe<GraphStoreV2AtlassianUserCanViewConfluenceSpaceSortInput>;
192741
193426
  };
193427
+ export type QueryGraphStoreV2_AtlassianUserCollaboratesOnInferredProjectArgs = {
193428
+ after?: InputMaybe<Scalars['String']['input']>;
193429
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
193430
+ first?: InputMaybe<Scalars['Int']['input']>;
193431
+ id: Scalars['ID']['input'];
193432
+ sort?: InputMaybe<GraphStoreV2AtlassianUserCollaboratesOnInferredProjectSortInput>;
193433
+ };
192742
193434
  export type QueryGraphStoreV2_AtlassianUserCollaboratesOnInferredProjectInverseArgs = {
192743
193435
  after?: InputMaybe<Scalars['String']['input']>;
192744
193436
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -193718,6 +194410,13 @@ export type QueryGraphStoreV2_AtlassianUserOwnsFocusStrategicPlanInverseArgs = {
193718
194410
  id: Scalars['ID']['input'];
193719
194411
  sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsFocusStrategicPlanSortInput>;
193720
194412
  };
194413
+ export type QueryGraphStoreV2_AtlassianUserOwnsInferredProjectArgs = {
194414
+ after?: InputMaybe<Scalars['String']['input']>;
194415
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
194416
+ first?: InputMaybe<Scalars['Int']['input']>;
194417
+ id: Scalars['ID']['input'];
194418
+ sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsInferredProjectSortInput>;
194419
+ };
193721
194420
  export type QueryGraphStoreV2_AtlassianUserOwnsInferredProjectInverseArgs = {
193722
194421
  after?: InputMaybe<Scalars['String']['input']>;
193723
194422
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -197186,6 +197885,20 @@ export type QueryGraphStoreV2_InferredProjectLinksEntityArgs = {
197186
197885
  id: Scalars['ID']['input'];
197187
197886
  sort?: InputMaybe<GraphStoreV2InferredProjectLinksEntitySortInput>;
197188
197887
  };
197888
+ export type QueryGraphStoreV2_InferredProjectLinksEntityInverseArgs = {
197889
+ after?: InputMaybe<Scalars['String']['input']>;
197890
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
197891
+ first?: InputMaybe<Scalars['Int']['input']>;
197892
+ id: Scalars['ID']['input'];
197893
+ sort?: InputMaybe<GraphStoreV2InferredProjectLinksEntitySortInput>;
197894
+ };
197895
+ export type QueryGraphStoreV2_InferredTeamCollaboratesOnInferredProjectArgs = {
197896
+ after?: InputMaybe<Scalars['String']['input']>;
197897
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
197898
+ first?: InputMaybe<Scalars['Int']['input']>;
197899
+ id: Scalars['ID']['input'];
197900
+ sort?: InputMaybe<GraphStoreV2InferredTeamCollaboratesOnInferredProjectSortInput>;
197901
+ };
197189
197902
  export type QueryGraphStoreV2_InferredTeamCollaboratesOnInferredProjectInverseArgs = {
197190
197903
  after?: InputMaybe<Scalars['String']['input']>;
197191
197904
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -197200,6 +197913,13 @@ export type QueryGraphStoreV2_InferredTeamLinksEntityArgs = {
197200
197913
  id: Scalars['ID']['input'];
197201
197914
  sort?: InputMaybe<GraphStoreV2InferredTeamLinksEntitySortInput>;
197202
197915
  };
197916
+ export type QueryGraphStoreV2_InferredTeamLinksEntityInverseArgs = {
197917
+ after?: InputMaybe<Scalars['String']['input']>;
197918
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
197919
+ first?: InputMaybe<Scalars['Int']['input']>;
197920
+ id: Scalars['ID']['input'];
197921
+ sort?: InputMaybe<GraphStoreV2InferredTeamLinksEntitySortInput>;
197922
+ };
197203
197923
  export type QueryGraphStoreV2_JiraEpicTracksAtlassianProjectArgs = {
197204
197924
  after?: InputMaybe<Scalars['String']['input']>;
197205
197925
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -198538,6 +199258,20 @@ export type QueryGraphStoreV2_ThirdPartyRemoteLinkLinksExternalRemoteLinkArgs =
198538
199258
  id: Scalars['ID']['input'];
198539
199259
  sort?: InputMaybe<GraphStoreV2ThirdPartyRemoteLinkLinksExternalRemoteLinkSortInput>;
198540
199260
  };
199261
+ export type QueryGraphStoreV2_ThirdPartyUserLinkedViaEmailThirdPartyUserArgs = {
199262
+ after?: InputMaybe<Scalars['String']['input']>;
199263
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
199264
+ first?: InputMaybe<Scalars['Int']['input']>;
199265
+ id: Scalars['ID']['input'];
199266
+ sort?: InputMaybe<GraphStoreV2ThirdPartyUserLinkedViaEmailThirdPartyUserSortInput>;
199267
+ };
199268
+ export type QueryGraphStoreV2_ThirdPartyUserLinkedViaEmailThirdPartyUserInverseArgs = {
199269
+ after?: InputMaybe<Scalars['String']['input']>;
199270
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
199271
+ first?: InputMaybe<Scalars['Int']['input']>;
199272
+ id: Scalars['ID']['input'];
199273
+ sort?: InputMaybe<GraphStoreV2ThirdPartyUserLinkedViaEmailThirdPartyUserSortInput>;
199274
+ };
198541
199275
  export type QueryGraphStoreV2_TopicHasRelatedEntityArgs = {
198542
199276
  after?: InputMaybe<Scalars['String']['input']>;
198543
199277
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -199654,6 +200388,14 @@ export type QueryGraphStore_AtlassianUserOwnsExternalTestStatusInverseArgs = {
199654
200388
  queryContext?: InputMaybe<Scalars['String']['input']>;
199655
200389
  sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalTestStatusSortInput>;
199656
200390
  };
200391
+ export type QueryGraphStore_AtlassianUserOwnsInferredProjectArgs = {
200392
+ after?: InputMaybe<Scalars['String']['input']>;
200393
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
200394
+ first?: InputMaybe<Scalars['Int']['input']>;
200395
+ id: Scalars['ID']['input'];
200396
+ queryContext?: InputMaybe<Scalars['String']['input']>;
200397
+ sort?: InputMaybe<GraphStoreAtlassianUserOwnsInferredProjectSortInput>;
200398
+ };
199657
200399
  export type QueryGraphStore_AtlassianUserOwnsInferredProjectInverseArgs = {
199658
200400
  after?: InputMaybe<Scalars['String']['input']>;
199659
200401
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -202006,6 +202748,22 @@ export type QueryGraphStore_InferredProjectLinksEntityArgs = {
202006
202748
  queryContext?: InputMaybe<Scalars['String']['input']>;
202007
202749
  sort?: InputMaybe<GraphStoreInferredProjectLinksEntitySortInput>;
202008
202750
  };
202751
+ export type QueryGraphStore_InferredProjectLinksEntityInverseArgs = {
202752
+ after?: InputMaybe<Scalars['String']['input']>;
202753
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
202754
+ first?: InputMaybe<Scalars['Int']['input']>;
202755
+ id: Scalars['ID']['input'];
202756
+ queryContext?: InputMaybe<Scalars['String']['input']>;
202757
+ sort?: InputMaybe<GraphStoreInferredProjectLinksEntitySortInput>;
202758
+ };
202759
+ export type QueryGraphStore_InferredTeamCollaboratesOnInferredProjectArgs = {
202760
+ after?: InputMaybe<Scalars['String']['input']>;
202761
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
202762
+ first?: InputMaybe<Scalars['Int']['input']>;
202763
+ id: Scalars['ID']['input'];
202764
+ queryContext?: InputMaybe<Scalars['String']['input']>;
202765
+ sort?: InputMaybe<GraphStoreInferredTeamCollaboratesOnInferredProjectSortInput>;
202766
+ };
202009
202767
  export type QueryGraphStore_InferredTeamCollaboratesOnInferredProjectInverseArgs = {
202010
202768
  after?: InputMaybe<Scalars['String']['input']>;
202011
202769
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -202022,6 +202780,14 @@ export type QueryGraphStore_InferredTeamLinksEntityArgs = {
202022
202780
  queryContext?: InputMaybe<Scalars['String']['input']>;
202023
202781
  sort?: InputMaybe<GraphStoreInferredTeamLinksEntitySortInput>;
202024
202782
  };
202783
+ export type QueryGraphStore_InferredTeamLinksEntityInverseArgs = {
202784
+ after?: InputMaybe<Scalars['String']['input']>;
202785
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
202786
+ first?: InputMaybe<Scalars['Int']['input']>;
202787
+ id: Scalars['ID']['input'];
202788
+ queryContext?: InputMaybe<Scalars['String']['input']>;
202789
+ sort?: InputMaybe<GraphStoreInferredTeamLinksEntitySortInput>;
202790
+ };
202025
202791
  export type QueryGraphStore_IssueAssociatedBranchArgs = {
202026
202792
  after?: InputMaybe<Scalars['String']['input']>;
202027
202793
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -205386,6 +206152,22 @@ export type QueryGraphStore_ThirdPartyToGraphRemoteLinkArgs = {
205386
206152
  queryContext?: InputMaybe<Scalars['String']['input']>;
205387
206153
  sort?: InputMaybe<GraphStoreThirdPartyToGraphRemoteLinkSortInput>;
205388
206154
  };
206155
+ export type QueryGraphStore_ThirdPartyUserLinkedViaEmailThirdPartyUserArgs = {
206156
+ after?: InputMaybe<Scalars['String']['input']>;
206157
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
206158
+ first?: InputMaybe<Scalars['Int']['input']>;
206159
+ id: Scalars['ID']['input'];
206160
+ queryContext?: InputMaybe<Scalars['String']['input']>;
206161
+ sort?: InputMaybe<GraphStoreThirdPartyUserLinkedViaEmailThirdPartyUserSortInput>;
206162
+ };
206163
+ export type QueryGraphStore_ThirdPartyUserLinkedViaEmailThirdPartyUserInverseArgs = {
206164
+ after?: InputMaybe<Scalars['String']['input']>;
206165
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
206166
+ first?: InputMaybe<Scalars['Int']['input']>;
206167
+ id: Scalars['ID']['input'];
206168
+ queryContext?: InputMaybe<Scalars['String']['input']>;
206169
+ sort?: InputMaybe<GraphStoreThirdPartyUserLinkedViaEmailThirdPartyUserSortInput>;
206170
+ };
205389
206171
  export type QueryGraphStore_TopicHasRelatedEntityArgs = {
205390
206172
  after?: InputMaybe<Scalars['String']['input']>;
205391
206173
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -206438,6 +207220,14 @@ export type QueryGraphStore_UserHasTopProjectInverseArgs = {
206438
207220
  queryContext?: InputMaybe<Scalars['String']['input']>;
206439
207221
  sort?: InputMaybe<GraphStoreUserHasTopProjectSortInput>;
206440
207222
  };
207223
+ export type QueryGraphStore_UserIsInInferredProjectArgs = {
207224
+ after?: InputMaybe<Scalars['String']['input']>;
207225
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
207226
+ first?: InputMaybe<Scalars['Int']['input']>;
207227
+ id: Scalars['ID']['input'];
207228
+ queryContext?: InputMaybe<Scalars['String']['input']>;
207229
+ sort?: InputMaybe<GraphStoreUserIsInInferredProjectSortInput>;
207230
+ };
206441
207231
  export type QueryGraphStore_UserIsInInferredProjectInverseArgs = {
206442
207232
  after?: InputMaybe<Scalars['String']['input']>;
206443
207233
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -208318,6 +209108,16 @@ export type QueryJira_AgentContextSourcesArgs = {
208318
209108
  export type QueryJira_AgentSessionsIsPlanModeEnabledArgs = {
208319
209109
  cloudId: Scalars['ID']['input'];
208320
209110
  };
209111
+ export type QueryJira_AgentSpaceCuratedSourcesArgs = {
209112
+ after?: InputMaybe<Scalars['String']['input']>;
209113
+ agentAri?: InputMaybe<Scalars['ID']['input']>;
209114
+ first?: InputMaybe<Scalars['Int']['input']>;
209115
+ projectAri: Scalars['ID']['input'];
209116
+ };
209117
+ export type QueryJira_AgentSpaceInstructionsArgs = {
209118
+ agentAri?: InputMaybe<Scalars['ID']['input']>;
209119
+ projectAri: Scalars['ID']['input'];
209120
+ };
208321
209121
  export type QueryJira_AgentsInSpaceArgs = {
208322
209122
  after?: InputMaybe<Scalars['String']['input']>;
208323
209123
  cloudId: Scalars['ID']['input'];
@@ -208689,6 +209489,13 @@ export type QueryJsmTelemetry_AiPromptArgs = {
208689
209489
  prompt: Scalars['String']['input'];
208690
209490
  useCaseId?: InputMaybe<Scalars['String']['input']>;
208691
209491
  };
209492
+ export type QueryJsmTelemetry_ChartDataArgs = {
209493
+ chartId: Scalars['ID']['input'];
209494
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
209495
+ scopeId: Scalars['String']['input'];
209496
+ scopeType: JsmTelemetryScopeType;
209497
+ timeRange: JsmTelemetryChartTimeRangeInput;
209498
+ };
208692
209499
  export type QueryJsmTelemetry_DashboardArgs = {
208693
209500
  cloudId?: InputMaybe<Scalars['ID']['input']>;
208694
209501
  incidentId: Scalars['ID']['input'];
@@ -208726,10 +209533,6 @@ export type QueryJsmTelemetry_GetTelemetryConnectionArgs = {
208726
209533
  id: Scalars['ID']['input'];
208727
209534
  scopeId: Scalars['String']['input'];
208728
209535
  };
208729
- export type QueryJsmTelemetry_IncidentTelemetryArgs = {
208730
- cloudId?: InputMaybe<Scalars['ID']['input']>;
208731
- incidentId: Scalars['ID']['input'];
208732
- };
208733
209536
  export type QueryJsmTelemetry_ListAvailableTelemetryProvidersArgs = {
208734
209537
  cloudId?: InputMaybe<Scalars['ID']['input']>;
208735
209538
  };
@@ -209128,6 +209931,43 @@ export type QueryMarketplacePricingPlanArgs = {
209128
209931
  hostingType: AtlassianProductHostingType;
209129
209932
  pricingPlanOptions?: InputMaybe<MarketplacePricingPlanOptions>;
209130
209933
  };
209934
+ export type QueryMarketplaceStore_AppReviewsByAppKeyV2Args = {
209935
+ appKey: Scalars['String']['input'];
209936
+ filter?: InputMaybe<MarketplaceStoreReviewFilterInput>;
209937
+ limit?: InputMaybe<Scalars['Int']['input']>;
209938
+ offset?: InputMaybe<Scalars['Int']['input']>;
209939
+ };
209940
+ export type QueryMarketplaceStore_EditionsByAppKeyV2Args = {
209941
+ countryCode?: InputMaybe<Scalars['String']['input']>;
209942
+ product: MarketplaceStoreEditionsByAppKeyInput;
209943
+ };
209944
+ export type QueryMarketplaceStore_GetProductListingV2Args = {
209945
+ productId: Scalars['ID']['input'];
209946
+ };
209947
+ export type QueryMarketplaceStore_PartnerByPartnerNameV2Args = {
209948
+ partnerName: Scalars['String']['input'];
209949
+ };
209950
+ export type QueryMarketplaceStore_PartnerV2Args = {
209951
+ developerId?: InputMaybe<Scalars['ID']['input']>;
209952
+ vendorId: Scalars['ID']['input'];
209953
+ };
209954
+ export type QueryMarketplaceStore_PrivacyAndSecurityV2Args = {
209955
+ input: MarketplaceStorePrivacyAndSecurityRequestInput;
209956
+ };
209957
+ export type QueryMarketplaceStore_ProductDetailsByCloudIdV2Args = {
209958
+ cloudId: Scalars['String']['input'];
209959
+ };
209960
+ export type QueryMarketplaceStore_ProductTagsV2Args = {
209961
+ tagType?: InputMaybe<MarketplaceStoreProductTagType>;
209962
+ };
209963
+ export type QueryMarketplaceStore_RecommendationsSectionV2Args = {
209964
+ input?: InputMaybe<MarketplaceStoreRecommendationsSectionInput>;
209965
+ usecase: MarketplaceStoreRecommendationsUsecase;
209966
+ };
209967
+ export type QueryMarketplaceStore_ReviewSummaryV2Args = {
209968
+ appKey: Scalars['String']['input'];
209969
+ hostingType: MarketplaceStoreAtlassianProductHostingType;
209970
+ };
209131
209971
  export type QueryMedia_ItemsArgs = {
209132
209972
  clientId: Scalars['String']['input'];
209133
209973
  cloudId: Scalars['ID']['input'];
@@ -232455,6 +233295,7 @@ export type TrelloMemberOwnedWebhookLegacyApplication = {
232455
233295
  export type TrelloMemberOwnedWebhookOAuth2Client = {
232456
233296
  __typename?: 'TrelloMemberOwnedWebhookOAuth2Client';
232457
233297
  oauth2ClientId?: Maybe<Scalars['ID']['output']>;
233298
+ pluginName?: Maybe<Scalars['String']['output']>;
232458
233299
  };
232459
233300
  export type TrelloMemberPlannerEventCardsUpdated = {
232460
233301
  __typename?: 'TrelloMemberPlannerEventCardsUpdated';