@forge/cli-shared 6.4.0-next.2 → 6.4.0-next.4

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.
@@ -988,6 +988,7 @@ export declare type AppInstallationLicense = {
988
988
  ccpEntitlementId?: Maybe<Scalars['String']['output']>;
989
989
  ccpEntitlementSlug?: Maybe<Scalars['String']['output']>;
990
990
  isEvaluation?: Maybe<Scalars['Boolean']['output']>;
991
+ modes?: Maybe<Array<EcosystemLicenseMode>>;
991
992
  subscriptionEndDate?: Maybe<Scalars['DateTime']['output']>;
992
993
  supportEntitlementNumber?: Maybe<Scalars['String']['output']>;
993
994
  trialEndDate?: Maybe<Scalars['DateTime']['output']>;
@@ -6417,6 +6418,7 @@ export declare type CompassScorecardMetricCriterionScore = CompassScorecardCrite
6417
6418
  export declare type CompassScorecardQueryFilter = {
6418
6419
  componentTypeIds?: InputMaybe<CompassScorecardAppliedToComponentsTypesFilter>;
6419
6420
  name?: InputMaybe<Scalars['String']['input']>;
6421
+ state?: InputMaybe<Scalars['String']['input']>;
6420
6422
  type?: InputMaybe<CompassScorecardTypesFilter>;
6421
6423
  };
6422
6424
  export declare type CompassScorecardQuerySort = {
@@ -14334,6 +14336,49 @@ export declare type ConnectedDataQueryServicesArgs = {
14334
14336
  cloudId: Scalars['ID']['input'];
14335
14337
  id: Scalars['ID']['input'];
14336
14338
  };
14339
+ export declare type ConnectionManagerConfiguration = {
14340
+ __typename?: 'ConnectionManagerConfiguration';
14341
+ parameters?: Maybe<Scalars['String']['output']>;
14342
+ };
14343
+ export declare type ConnectionManagerConfigurationInput = {
14344
+ parameters?: InputMaybe<Scalars['String']['input']>;
14345
+ };
14346
+ export declare type ConnectionManagerConnection = {
14347
+ __typename?: 'ConnectionManagerConnection';
14348
+ configuration?: Maybe<ConnectionManagerConfiguration>;
14349
+ connectionId?: Maybe<Scalars['String']['output']>;
14350
+ integrationKey?: Maybe<Scalars['String']['output']>;
14351
+ name?: Maybe<Scalars['String']['output']>;
14352
+ };
14353
+ export declare type ConnectionManagerConnections = {
14354
+ __typename?: 'ConnectionManagerConnections';
14355
+ connections?: Maybe<Array<Maybe<ConnectionManagerConnection>>>;
14356
+ };
14357
+ export declare type ConnectionManagerConnectionsByJiraProjectResult = ConnectionManagerConnections | QueryError;
14358
+ export declare type ConnectionManagerConnectionsFilter = {
14359
+ integrationKey?: InputMaybe<Scalars['String']['input']>;
14360
+ };
14361
+ export declare type ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload = Payload & {
14362
+ __typename?: 'ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload';
14363
+ createdConnectionId?: Maybe<Scalars['ID']['output']>;
14364
+ errors?: Maybe<Array<MutationError>>;
14365
+ success: Scalars['Boolean']['output'];
14366
+ };
14367
+ export declare type ConnectionManagerCreateApiTokenConnectionInput = {
14368
+ configuration?: InputMaybe<ConnectionManagerConfigurationInput>;
14369
+ integrationKey?: InputMaybe<Scalars['String']['input']>;
14370
+ name?: InputMaybe<Scalars['String']['input']>;
14371
+ tokens?: InputMaybe<Array<InputMaybe<ConnectionManagerTokenInput>>>;
14372
+ };
14373
+ export declare type ConnectionManagerDeleteApiTokenConnectionForJiraProjectPayload = Payload & {
14374
+ __typename?: 'ConnectionManagerDeleteApiTokenConnectionForJiraProjectPayload';
14375
+ errors?: Maybe<Array<MutationError>>;
14376
+ success: Scalars['Boolean']['output'];
14377
+ };
14378
+ export declare type ConnectionManagerTokenInput = {
14379
+ token?: InputMaybe<Scalars['String']['input']>;
14380
+ tokenId?: InputMaybe<Scalars['String']['input']>;
14381
+ };
14337
14382
  export declare type ContainerEventObject = {
14338
14383
  __typename?: 'ContainerEventObject';
14339
14384
  attributes: Scalars['JSON']['output'];
@@ -19521,7 +19566,7 @@ export declare type EarliestViewViewedForUser = {
19521
19566
  };
19522
19567
  export declare type EcosystemApp = App | EcosystemConnectApp;
19523
19568
  export declare type EcosystemAppInstallationOverridesInput = {
19524
- licenseMode?: InputMaybe<EcosystemLicenseMode>;
19569
+ licenseModes?: InputMaybe<Array<EcosystemLicenseMode>>;
19525
19570
  usersWithAccess?: InputMaybe<Array<Scalars['ID']['input']>>;
19526
19571
  };
19527
19572
  export declare type EcosystemAppNetworkEgressPermission = {
@@ -19725,6 +19770,7 @@ export declare type EcosystemQuery = {
19725
19770
  forgeContributors?: Maybe<ForgeAuditLogsContributorsActivityResult>;
19726
19771
  forgeMetrics?: Maybe<ForgeMetricsQuery>;
19727
19772
  fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
19773
+ userAccess?: Maybe<UserAccess>;
19728
19774
  userGrants?: Maybe<UserGrantConnection>;
19729
19775
  userInstallationRules?: Maybe<UserInstallationRules>;
19730
19776
  };
@@ -19783,6 +19829,11 @@ export declare type EcosystemQueryForgeMetricsArgs = {
19783
19829
  export declare type EcosystemQueryFortifiedMetricsArgs = {
19784
19830
  appKey: Scalars['ID']['input'];
19785
19831
  };
19832
+ export declare type EcosystemQueryUserAccessArgs = {
19833
+ contextId: Scalars['ID']['input'];
19834
+ definitionId: Scalars['ID']['input'];
19835
+ userAaid: Scalars['ID']['input'];
19836
+ };
19786
19837
  export declare type EcosystemQueryUserGrantsArgs = {
19787
19838
  after?: InputMaybe<Scalars['String']['input']>;
19788
19839
  before?: InputMaybe<Scalars['String']['input']>;
@@ -19906,11 +19957,15 @@ export declare type Extension = {
19906
19957
  scopes: Array<Scalars['String']['output']>;
19907
19958
  securityPolicies?: Maybe<Array<AppSecurityPoliciesPermissionExtension>>;
19908
19959
  type: Scalars['String']['output'];
19960
+ userAccess: UserAccess;
19909
19961
  versionId: Scalars['ID']['output'];
19910
19962
  };
19911
19963
  export declare type ExtensionDataClassificationPolicyDecisionArgs = {
19912
19964
  input: DataClassificationPolicyDecisionInput;
19913
19965
  };
19966
+ export declare type ExtensionUserAccessArgs = {
19967
+ userAaid: Scalars['ID']['input'];
19968
+ };
19914
19969
  export declare type ExtensionContext = {
19915
19970
  __typename?: 'ExtensionContext';
19916
19971
  appAuditLogs: AppAuditConnection;
@@ -25275,7 +25330,9 @@ export declare type GraphStore = {
25275
25330
  appInstallationAssociatedToSecurityWorkspaceInverseRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection>;
25276
25331
  appInstallationAssociatedToSecurityWorkspaceRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection>;
25277
25332
  atlasGoalHasContributorInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorInverseConnection>;
25333
+ atlasGoalHasFollower?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerConnection>;
25278
25334
  atlasGoalHasFollowerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerInverseConnection>;
25335
+ atlasGoalHasOwner?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerConnection>;
25279
25336
  atlasGoalHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection>;
25280
25337
  atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
25281
25338
  atlasGoalHasSubAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection>;
@@ -25285,8 +25342,11 @@ export declare type GraphStore = {
25285
25342
  atlasProjectContributesToAtlasGoalRelationship?: Maybe<GraphStoreFullAtlasProjectContributesToAtlasGoalConnection>;
25286
25343
  atlasProjectDependsOnAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectConnection>;
25287
25344
  atlasProjectDependsOnAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverseConnection>;
25345
+ atlasProjectHasContributor?: Maybe<GraphStoreSimplifiedAtlasProjectHasContributorConnection>;
25288
25346
  atlasProjectHasContributorInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasContributorInverseConnection>;
25347
+ atlasProjectHasFollower?: Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerConnection>;
25289
25348
  atlasProjectHasFollowerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerInverseConnection>;
25349
+ atlasProjectHasOwner?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerConnection>;
25290
25350
  atlasProjectHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerInverseConnection>;
25291
25351
  atlasProjectIsRelatedToAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection>;
25292
25352
  atlasProjectIsRelatedToAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectInverseConnection>;
@@ -25400,6 +25460,7 @@ export declare type GraphStore = {
25400
25460
  issueChangesComponentInverse?: Maybe<GraphStoreSimplifiedIssueChangesComponentInverseConnection>;
25401
25461
  issueChangesComponentInverseRelationship?: Maybe<GraphStoreFullIssueChangesComponentConnection>;
25402
25462
  issueChangesComponentRelationship?: Maybe<GraphStoreFullIssueChangesComponentConnection>;
25463
+ issueHasAssignee?: Maybe<GraphStoreSimplifiedIssueHasAssigneeConnection>;
25403
25464
  issueHasAssigneeInverse?: Maybe<GraphStoreSimplifiedIssueHasAssigneeInverseConnection>;
25404
25465
  issueRecursiveAssociatedDeployment?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentConnection>;
25405
25466
  issueRecursiveAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentInverseConnection>;
@@ -25621,9 +25682,14 @@ export declare type GraphStore = {
25621
25682
  testPerfhammerRelationshipInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
25622
25683
  testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
25623
25684
  userAuthoredPr?: Maybe<GraphStoreSimplifiedUserAuthoredPrConnection>;
25685
+ userAuthoredPrInverse?: Maybe<GraphStoreSimplifiedUserAuthoredPrInverseConnection>;
25624
25686
  userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
25687
+ userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
25688
+ userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
25625
25689
  userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
25690
+ userOwnsComponentInverse?: Maybe<GraphStoreSimplifiedUserOwnsComponentInverseConnection>;
25626
25691
  userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
25692
+ userReviewsPrInverse?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseConnection>;
25627
25693
  versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
25628
25694
  versionAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
25629
25695
  versionAssociatedBranchRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
@@ -25693,6 +25759,13 @@ export declare type GraphStoreAtlasGoalHasContributorInverseArgs = {
25693
25759
  id: Scalars['ID']['input'];
25694
25760
  sort?: InputMaybe<GraphStoreAtlasGoalHasContributorSortInput>;
25695
25761
  };
25762
+ export declare type GraphStoreAtlasGoalHasFollowerArgs = {
25763
+ after?: InputMaybe<Scalars['String']['input']>;
25764
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
25765
+ first?: InputMaybe<Scalars['Int']['input']>;
25766
+ id: Scalars['ID']['input'];
25767
+ sort?: InputMaybe<GraphStoreAtlasGoalHasFollowerSortInput>;
25768
+ };
25696
25769
  export declare type GraphStoreAtlasGoalHasFollowerInverseArgs = {
25697
25770
  after?: InputMaybe<Scalars['String']['input']>;
25698
25771
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -25700,6 +25773,13 @@ export declare type GraphStoreAtlasGoalHasFollowerInverseArgs = {
25700
25773
  id: Scalars['ID']['input'];
25701
25774
  sort?: InputMaybe<GraphStoreAtlasGoalHasFollowerSortInput>;
25702
25775
  };
25776
+ export declare type GraphStoreAtlasGoalHasOwnerArgs = {
25777
+ after?: InputMaybe<Scalars['String']['input']>;
25778
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
25779
+ first?: InputMaybe<Scalars['Int']['input']>;
25780
+ id: Scalars['ID']['input'];
25781
+ sort?: InputMaybe<GraphStoreAtlasGoalHasOwnerSortInput>;
25782
+ };
25703
25783
  export declare type GraphStoreAtlasGoalHasOwnerInverseArgs = {
25704
25784
  after?: InputMaybe<Scalars['String']['input']>;
25705
25785
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -25759,6 +25839,13 @@ export declare type GraphStoreAtlasProjectDependsOnAtlasProjectInverseArgs = {
25759
25839
  id: Scalars['ID']['input'];
25760
25840
  sort?: InputMaybe<GraphStoreAtlasProjectDependsOnAtlasProjectSortInput>;
25761
25841
  };
25842
+ export declare type GraphStoreAtlasProjectHasContributorArgs = {
25843
+ after?: InputMaybe<Scalars['String']['input']>;
25844
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
25845
+ first?: InputMaybe<Scalars['Int']['input']>;
25846
+ id: Scalars['ID']['input'];
25847
+ sort?: InputMaybe<GraphStoreAtlasProjectHasContributorSortInput>;
25848
+ };
25762
25849
  export declare type GraphStoreAtlasProjectHasContributorInverseArgs = {
25763
25850
  after?: InputMaybe<Scalars['String']['input']>;
25764
25851
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -25766,6 +25853,13 @@ export declare type GraphStoreAtlasProjectHasContributorInverseArgs = {
25766
25853
  id: Scalars['ID']['input'];
25767
25854
  sort?: InputMaybe<GraphStoreAtlasProjectHasContributorSortInput>;
25768
25855
  };
25856
+ export declare type GraphStoreAtlasProjectHasFollowerArgs = {
25857
+ after?: InputMaybe<Scalars['String']['input']>;
25858
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
25859
+ first?: InputMaybe<Scalars['Int']['input']>;
25860
+ id: Scalars['ID']['input'];
25861
+ sort?: InputMaybe<GraphStoreAtlasProjectHasFollowerSortInput>;
25862
+ };
25769
25863
  export declare type GraphStoreAtlasProjectHasFollowerInverseArgs = {
25770
25864
  after?: InputMaybe<Scalars['String']['input']>;
25771
25865
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -25773,6 +25867,13 @@ export declare type GraphStoreAtlasProjectHasFollowerInverseArgs = {
25773
25867
  id: Scalars['ID']['input'];
25774
25868
  sort?: InputMaybe<GraphStoreAtlasProjectHasFollowerSortInput>;
25775
25869
  };
25870
+ export declare type GraphStoreAtlasProjectHasOwnerArgs = {
25871
+ after?: InputMaybe<Scalars['String']['input']>;
25872
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
25873
+ first?: InputMaybe<Scalars['Int']['input']>;
25874
+ id: Scalars['ID']['input'];
25875
+ sort?: InputMaybe<GraphStoreAtlasProjectHasOwnerSortInput>;
25876
+ };
25776
25877
  export declare type GraphStoreAtlasProjectHasOwnerInverseArgs = {
25777
25878
  after?: InputMaybe<Scalars['String']['input']>;
25778
25879
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -26469,6 +26570,13 @@ export declare type GraphStoreIssueChangesComponentRelationshipArgs = {
26469
26570
  first?: InputMaybe<Scalars['Int']['input']>;
26470
26571
  id: Scalars['ID']['input'];
26471
26572
  };
26573
+ export declare type GraphStoreIssueHasAssigneeArgs = {
26574
+ after?: InputMaybe<Scalars['String']['input']>;
26575
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
26576
+ first?: InputMaybe<Scalars['Int']['input']>;
26577
+ id: Scalars['ID']['input'];
26578
+ sort?: InputMaybe<GraphStoreIssueHasAssigneeSortInput>;
26579
+ };
26472
26580
  export declare type GraphStoreIssueHasAssigneeInverseArgs = {
26473
26581
  after?: InputMaybe<Scalars['String']['input']>;
26474
26582
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -27871,6 +27979,13 @@ export declare type GraphStoreUserAuthoredPrArgs = {
27871
27979
  id: Scalars['ID']['input'];
27872
27980
  sort?: InputMaybe<GraphStoreUserAuthoredPrSortInput>;
27873
27981
  };
27982
+ export declare type GraphStoreUserAuthoredPrInverseArgs = {
27983
+ after?: InputMaybe<Scalars['String']['input']>;
27984
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
27985
+ first?: InputMaybe<Scalars['Int']['input']>;
27986
+ id: Scalars['ID']['input'];
27987
+ sort?: InputMaybe<GraphStoreUserAuthoredPrSortInput>;
27988
+ };
27874
27989
  export declare type GraphStoreUserHasTopProjectArgs = {
27875
27990
  after?: InputMaybe<Scalars['String']['input']>;
27876
27991
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -27878,6 +27993,20 @@ export declare type GraphStoreUserHasTopProjectArgs = {
27878
27993
  id: Scalars['ID']['input'];
27879
27994
  sort?: InputMaybe<GraphStoreUserHasTopProjectSortInput>;
27880
27995
  };
27996
+ export declare type GraphStoreUserHasTopProjectInverseArgs = {
27997
+ after?: InputMaybe<Scalars['String']['input']>;
27998
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
27999
+ first?: InputMaybe<Scalars['Int']['input']>;
28000
+ id: Scalars['ID']['input'];
28001
+ sort?: InputMaybe<GraphStoreUserHasTopProjectSortInput>;
28002
+ };
28003
+ export declare type GraphStoreUserIsInTeamInverseArgs = {
28004
+ after?: InputMaybe<Scalars['String']['input']>;
28005
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
28006
+ first?: InputMaybe<Scalars['Int']['input']>;
28007
+ id: Scalars['ID']['input'];
28008
+ sort?: InputMaybe<GraphStoreUserIsInTeamSortInput>;
28009
+ };
27881
28010
  export declare type GraphStoreUserOwnsComponentArgs = {
27882
28011
  after?: InputMaybe<Scalars['String']['input']>;
27883
28012
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -27885,6 +28014,13 @@ export declare type GraphStoreUserOwnsComponentArgs = {
27885
28014
  id: Scalars['ID']['input'];
27886
28015
  sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
27887
28016
  };
28017
+ export declare type GraphStoreUserOwnsComponentInverseArgs = {
28018
+ after?: InputMaybe<Scalars['String']['input']>;
28019
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
28020
+ first?: InputMaybe<Scalars['Int']['input']>;
28021
+ id: Scalars['ID']['input'];
28022
+ sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
28023
+ };
27888
28024
  export declare type GraphStoreUserReviewsPrArgs = {
27889
28025
  after?: InputMaybe<Scalars['String']['input']>;
27890
28026
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -27892,6 +28028,13 @@ export declare type GraphStoreUserReviewsPrArgs = {
27892
28028
  id: Scalars['ID']['input'];
27893
28029
  sort?: InputMaybe<GraphStoreUserReviewsPrSortInput>;
27894
28030
  };
28031
+ export declare type GraphStoreUserReviewsPrInverseArgs = {
28032
+ after?: InputMaybe<Scalars['String']['input']>;
28033
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
28034
+ first?: InputMaybe<Scalars['Int']['input']>;
28035
+ id: Scalars['ID']['input'];
28036
+ sort?: InputMaybe<GraphStoreUserReviewsPrSortInput>;
28037
+ };
27895
28038
  export declare type GraphStoreVersionAssociatedBranchInverseArgs = {
27896
28039
  after?: InputMaybe<Scalars['String']['input']>;
27897
28040
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -33905,6 +34048,19 @@ export declare type GraphStoreSimplifiedAtlasGoalHasContributorInverseEdge = {
33905
34048
  node?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorInverseUnion>;
33906
34049
  };
33907
34050
  export declare type GraphStoreSimplifiedAtlasGoalHasContributorInverseUnion = TownsquareGoal;
34051
+ export declare type GraphStoreSimplifiedAtlasGoalHasFollowerConnection = HasPageInfo & {
34052
+ __typename?: 'GraphStoreSimplifiedAtlasGoalHasFollowerConnection';
34053
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerEdge>>>;
34054
+ pageInfo: PageInfo;
34055
+ };
34056
+ export declare type GraphStoreSimplifiedAtlasGoalHasFollowerEdge = {
34057
+ __typename?: 'GraphStoreSimplifiedAtlasGoalHasFollowerEdge';
34058
+ createdAt: Scalars['DateTime']['output'];
34059
+ cursor?: Maybe<Scalars['String']['output']>;
34060
+ id: Scalars['ID']['output'];
34061
+ lastUpdated: Scalars['DateTime']['output'];
34062
+ node?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerUnion>;
34063
+ };
33908
34064
  export declare type GraphStoreSimplifiedAtlasGoalHasFollowerInverseConnection = HasPageInfo & {
33909
34065
  __typename?: 'GraphStoreSimplifiedAtlasGoalHasFollowerInverseConnection';
33910
34066
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerInverseEdge>>>;
@@ -33919,6 +34075,20 @@ export declare type GraphStoreSimplifiedAtlasGoalHasFollowerInverseEdge = {
33919
34075
  node?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerInverseUnion>;
33920
34076
  };
33921
34077
  export declare type GraphStoreSimplifiedAtlasGoalHasFollowerInverseUnion = TownsquareGoal;
34078
+ export declare type GraphStoreSimplifiedAtlasGoalHasFollowerUnion = AppUser | AtlassianAccountUser | CustomerUser;
34079
+ export declare type GraphStoreSimplifiedAtlasGoalHasOwnerConnection = HasPageInfo & {
34080
+ __typename?: 'GraphStoreSimplifiedAtlasGoalHasOwnerConnection';
34081
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerEdge>>>;
34082
+ pageInfo: PageInfo;
34083
+ };
34084
+ export declare type GraphStoreSimplifiedAtlasGoalHasOwnerEdge = {
34085
+ __typename?: 'GraphStoreSimplifiedAtlasGoalHasOwnerEdge';
34086
+ createdAt: Scalars['DateTime']['output'];
34087
+ cursor?: Maybe<Scalars['String']['output']>;
34088
+ id: Scalars['ID']['output'];
34089
+ lastUpdated: Scalars['DateTime']['output'];
34090
+ node?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerUnion>;
34091
+ };
33922
34092
  export declare type GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection = HasPageInfo & {
33923
34093
  __typename?: 'GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection';
33924
34094
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseEdge>>>;
@@ -33933,6 +34103,7 @@ export declare type GraphStoreSimplifiedAtlasGoalHasOwnerInverseEdge = {
33933
34103
  node?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseUnion>;
33934
34104
  };
33935
34105
  export declare type GraphStoreSimplifiedAtlasGoalHasOwnerInverseUnion = TownsquareGoal;
34106
+ export declare type GraphStoreSimplifiedAtlasGoalHasOwnerUnion = AppUser | AtlassianAccountUser | CustomerUser;
33936
34107
  export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection = HasPageInfo & {
33937
34108
  __typename?: 'GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection';
33938
34109
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalEdge>>>;
@@ -34017,6 +34188,19 @@ export declare type GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverse
34017
34188
  };
34018
34189
  export declare type GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverseUnion = TownsquareProject;
34019
34190
  export declare type GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectUnion = TownsquareProject;
34191
+ export declare type GraphStoreSimplifiedAtlasProjectHasContributorConnection = HasPageInfo & {
34192
+ __typename?: 'GraphStoreSimplifiedAtlasProjectHasContributorConnection';
34193
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasContributorEdge>>>;
34194
+ pageInfo: PageInfo;
34195
+ };
34196
+ export declare type GraphStoreSimplifiedAtlasProjectHasContributorEdge = {
34197
+ __typename?: 'GraphStoreSimplifiedAtlasProjectHasContributorEdge';
34198
+ createdAt: Scalars['DateTime']['output'];
34199
+ cursor?: Maybe<Scalars['String']['output']>;
34200
+ id: Scalars['ID']['output'];
34201
+ lastUpdated: Scalars['DateTime']['output'];
34202
+ node?: Maybe<GraphStoreSimplifiedAtlasProjectHasContributorUnion>;
34203
+ };
34020
34204
  export declare type GraphStoreSimplifiedAtlasProjectHasContributorInverseConnection = HasPageInfo & {
34021
34205
  __typename?: 'GraphStoreSimplifiedAtlasProjectHasContributorInverseConnection';
34022
34206
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasContributorInverseEdge>>>;
@@ -34031,6 +34215,20 @@ export declare type GraphStoreSimplifiedAtlasProjectHasContributorInverseEdge =
34031
34215
  node?: Maybe<GraphStoreSimplifiedAtlasProjectHasContributorInverseUnion>;
34032
34216
  };
34033
34217
  export declare type GraphStoreSimplifiedAtlasProjectHasContributorInverseUnion = TownsquareProject;
34218
+ export declare type GraphStoreSimplifiedAtlasProjectHasContributorUnion = AppUser | AtlassianAccountUser | CustomerUser;
34219
+ export declare type GraphStoreSimplifiedAtlasProjectHasFollowerConnection = HasPageInfo & {
34220
+ __typename?: 'GraphStoreSimplifiedAtlasProjectHasFollowerConnection';
34221
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerEdge>>>;
34222
+ pageInfo: PageInfo;
34223
+ };
34224
+ export declare type GraphStoreSimplifiedAtlasProjectHasFollowerEdge = {
34225
+ __typename?: 'GraphStoreSimplifiedAtlasProjectHasFollowerEdge';
34226
+ createdAt: Scalars['DateTime']['output'];
34227
+ cursor?: Maybe<Scalars['String']['output']>;
34228
+ id: Scalars['ID']['output'];
34229
+ lastUpdated: Scalars['DateTime']['output'];
34230
+ node?: Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerUnion>;
34231
+ };
34034
34232
  export declare type GraphStoreSimplifiedAtlasProjectHasFollowerInverseConnection = HasPageInfo & {
34035
34233
  __typename?: 'GraphStoreSimplifiedAtlasProjectHasFollowerInverseConnection';
34036
34234
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerInverseEdge>>>;
@@ -34045,6 +34243,20 @@ export declare type GraphStoreSimplifiedAtlasProjectHasFollowerInverseEdge = {
34045
34243
  node?: Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerInverseUnion>;
34046
34244
  };
34047
34245
  export declare type GraphStoreSimplifiedAtlasProjectHasFollowerInverseUnion = TownsquareProject;
34246
+ export declare type GraphStoreSimplifiedAtlasProjectHasFollowerUnion = AppUser | AtlassianAccountUser | CustomerUser;
34247
+ export declare type GraphStoreSimplifiedAtlasProjectHasOwnerConnection = HasPageInfo & {
34248
+ __typename?: 'GraphStoreSimplifiedAtlasProjectHasOwnerConnection';
34249
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerEdge>>>;
34250
+ pageInfo: PageInfo;
34251
+ };
34252
+ export declare type GraphStoreSimplifiedAtlasProjectHasOwnerEdge = {
34253
+ __typename?: 'GraphStoreSimplifiedAtlasProjectHasOwnerEdge';
34254
+ createdAt: Scalars['DateTime']['output'];
34255
+ cursor?: Maybe<Scalars['String']['output']>;
34256
+ id: Scalars['ID']['output'];
34257
+ lastUpdated: Scalars['DateTime']['output'];
34258
+ node?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerUnion>;
34259
+ };
34048
34260
  export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseConnection = HasPageInfo & {
34049
34261
  __typename?: 'GraphStoreSimplifiedAtlasProjectHasOwnerInverseConnection';
34050
34262
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerInverseEdge>>>;
@@ -34059,6 +34271,7 @@ export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseEdge = {
34059
34271
  node?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerInverseUnion>;
34060
34272
  };
34061
34273
  export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseUnion = TownsquareProject;
34274
+ export declare type GraphStoreSimplifiedAtlasProjectHasOwnerUnion = AppUser | AtlassianAccountUser | CustomerUser;
34062
34275
  export declare type GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection = HasPageInfo & {
34063
34276
  __typename?: 'GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection';
34064
34277
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectEdge>>>;
@@ -34759,6 +34972,19 @@ export declare type GraphStoreSimplifiedIssueChangesComponentInverseEdge = {
34759
34972
  };
34760
34973
  export declare type GraphStoreSimplifiedIssueChangesComponentInverseUnion = JiraIssue;
34761
34974
  export declare type GraphStoreSimplifiedIssueChangesComponentUnion = CompassComponent;
34975
+ export declare type GraphStoreSimplifiedIssueHasAssigneeConnection = HasPageInfo & {
34976
+ __typename?: 'GraphStoreSimplifiedIssueHasAssigneeConnection';
34977
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasAssigneeEdge>>>;
34978
+ pageInfo: PageInfo;
34979
+ };
34980
+ export declare type GraphStoreSimplifiedIssueHasAssigneeEdge = {
34981
+ __typename?: 'GraphStoreSimplifiedIssueHasAssigneeEdge';
34982
+ createdAt: Scalars['DateTime']['output'];
34983
+ cursor?: Maybe<Scalars['String']['output']>;
34984
+ id: Scalars['ID']['output'];
34985
+ lastUpdated: Scalars['DateTime']['output'];
34986
+ node?: Maybe<GraphStoreSimplifiedIssueHasAssigneeUnion>;
34987
+ };
34762
34988
  export declare type GraphStoreSimplifiedIssueHasAssigneeInverseConnection = HasPageInfo & {
34763
34989
  __typename?: 'GraphStoreSimplifiedIssueHasAssigneeInverseConnection';
34764
34990
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasAssigneeInverseEdge>>>;
@@ -34773,6 +34999,7 @@ export declare type GraphStoreSimplifiedIssueHasAssigneeInverseEdge = {
34773
34999
  node?: Maybe<GraphStoreSimplifiedIssueHasAssigneeInverseUnion>;
34774
35000
  };
34775
35001
  export declare type GraphStoreSimplifiedIssueHasAssigneeInverseUnion = JiraIssue;
35002
+ export declare type GraphStoreSimplifiedIssueHasAssigneeUnion = AppUser | AtlassianAccountUser | CustomerUser;
34776
35003
  export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
34777
35004
  __typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentConnection';
34778
35005
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentEdge>>>;
@@ -36446,6 +36673,20 @@ export declare type GraphStoreSimplifiedUserAuthoredPrEdge = {
36446
36673
  lastUpdated: Scalars['DateTime']['output'];
36447
36674
  node?: Maybe<GraphStoreSimplifiedUserAuthoredPrUnion>;
36448
36675
  };
36676
+ export declare type GraphStoreSimplifiedUserAuthoredPrInverseConnection = HasPageInfo & {
36677
+ __typename?: 'GraphStoreSimplifiedUserAuthoredPrInverseConnection';
36678
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAuthoredPrInverseEdge>>>;
36679
+ pageInfo: PageInfo;
36680
+ };
36681
+ export declare type GraphStoreSimplifiedUserAuthoredPrInverseEdge = {
36682
+ __typename?: 'GraphStoreSimplifiedUserAuthoredPrInverseEdge';
36683
+ createdAt: Scalars['DateTime']['output'];
36684
+ cursor?: Maybe<Scalars['String']['output']>;
36685
+ id: Scalars['ID']['output'];
36686
+ lastUpdated: Scalars['DateTime']['output'];
36687
+ node?: Maybe<GraphStoreSimplifiedUserAuthoredPrInverseUnion>;
36688
+ };
36689
+ export declare type GraphStoreSimplifiedUserAuthoredPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
36449
36690
  export declare type GraphStoreSimplifiedUserAuthoredPrUnion = DevOpsPullRequestDetails;
36450
36691
  export declare type GraphStoreSimplifiedUserHasTopProjectConnection = HasPageInfo & {
36451
36692
  __typename?: 'GraphStoreSimplifiedUserHasTopProjectConnection';
@@ -36460,7 +36701,35 @@ export declare type GraphStoreSimplifiedUserHasTopProjectEdge = {
36460
36701
  lastUpdated: Scalars['DateTime']['output'];
36461
36702
  node?: Maybe<GraphStoreSimplifiedUserHasTopProjectUnion>;
36462
36703
  };
36704
+ export declare type GraphStoreSimplifiedUserHasTopProjectInverseConnection = HasPageInfo & {
36705
+ __typename?: 'GraphStoreSimplifiedUserHasTopProjectInverseConnection';
36706
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasTopProjectInverseEdge>>>;
36707
+ pageInfo: PageInfo;
36708
+ };
36709
+ export declare type GraphStoreSimplifiedUserHasTopProjectInverseEdge = {
36710
+ __typename?: 'GraphStoreSimplifiedUserHasTopProjectInverseEdge';
36711
+ createdAt: Scalars['DateTime']['output'];
36712
+ cursor?: Maybe<Scalars['String']['output']>;
36713
+ id: Scalars['ID']['output'];
36714
+ lastUpdated: Scalars['DateTime']['output'];
36715
+ node?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseUnion>;
36716
+ };
36717
+ export declare type GraphStoreSimplifiedUserHasTopProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
36463
36718
  export declare type GraphStoreSimplifiedUserHasTopProjectUnion = JiraProject;
36719
+ export declare type GraphStoreSimplifiedUserIsInTeamInverseConnection = HasPageInfo & {
36720
+ __typename?: 'GraphStoreSimplifiedUserIsInTeamInverseConnection';
36721
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserIsInTeamInverseEdge>>>;
36722
+ pageInfo: PageInfo;
36723
+ };
36724
+ export declare type GraphStoreSimplifiedUserIsInTeamInverseEdge = {
36725
+ __typename?: 'GraphStoreSimplifiedUserIsInTeamInverseEdge';
36726
+ createdAt: Scalars['DateTime']['output'];
36727
+ cursor?: Maybe<Scalars['String']['output']>;
36728
+ id: Scalars['ID']['output'];
36729
+ lastUpdated: Scalars['DateTime']['output'];
36730
+ node?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseUnion>;
36731
+ };
36732
+ export declare type GraphStoreSimplifiedUserIsInTeamInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
36464
36733
  export declare type GraphStoreSimplifiedUserOwnsComponentConnection = HasPageInfo & HasTotal & {
36465
36734
  __typename?: 'GraphStoreSimplifiedUserOwnsComponentConnection';
36466
36735
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsComponentEdge>>>;
@@ -36476,6 +36745,22 @@ export declare type GraphStoreSimplifiedUserOwnsComponentEdge = {
36476
36745
  lastUpdated: Scalars['DateTime']['output'];
36477
36746
  node?: Maybe<GraphStoreSimplifiedUserOwnsComponentUnion>;
36478
36747
  };
36748
+ export declare type GraphStoreSimplifiedUserOwnsComponentInverseConnection = HasPageInfo & HasTotal & {
36749
+ __typename?: 'GraphStoreSimplifiedUserOwnsComponentInverseConnection';
36750
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsComponentInverseEdge>>>;
36751
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
36752
+ pageInfo: PageInfo;
36753
+ totalCount?: Maybe<Scalars['Int']['output']>;
36754
+ };
36755
+ export declare type GraphStoreSimplifiedUserOwnsComponentInverseEdge = {
36756
+ __typename?: 'GraphStoreSimplifiedUserOwnsComponentInverseEdge';
36757
+ createdAt: Scalars['DateTime']['output'];
36758
+ cursor?: Maybe<Scalars['String']['output']>;
36759
+ id: Scalars['ID']['output'];
36760
+ lastUpdated: Scalars['DateTime']['output'];
36761
+ node?: Maybe<GraphStoreSimplifiedUserOwnsComponentInverseUnion>;
36762
+ };
36763
+ export declare type GraphStoreSimplifiedUserOwnsComponentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
36479
36764
  export declare type GraphStoreSimplifiedUserOwnsComponentUnion = CompassComponent;
36480
36765
  export declare type GraphStoreSimplifiedUserReviewsPrConnection = HasPageInfo & {
36481
36766
  __typename?: 'GraphStoreSimplifiedUserReviewsPrConnection';
@@ -36490,6 +36775,20 @@ export declare type GraphStoreSimplifiedUserReviewsPrEdge = {
36490
36775
  lastUpdated: Scalars['DateTime']['output'];
36491
36776
  node?: Maybe<GraphStoreSimplifiedUserReviewsPrUnion>;
36492
36777
  };
36778
+ export declare type GraphStoreSimplifiedUserReviewsPrInverseConnection = HasPageInfo & {
36779
+ __typename?: 'GraphStoreSimplifiedUserReviewsPrInverseConnection';
36780
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReviewsPrInverseEdge>>>;
36781
+ pageInfo: PageInfo;
36782
+ };
36783
+ export declare type GraphStoreSimplifiedUserReviewsPrInverseEdge = {
36784
+ __typename?: 'GraphStoreSimplifiedUserReviewsPrInverseEdge';
36785
+ createdAt: Scalars['DateTime']['output'];
36786
+ cursor?: Maybe<Scalars['String']['output']>;
36787
+ id: Scalars['ID']['output'];
36788
+ lastUpdated: Scalars['DateTime']['output'];
36789
+ node?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseUnion>;
36790
+ };
36791
+ export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
36493
36792
  export declare type GraphStoreSimplifiedUserReviewsPrUnion = DevOpsPullRequestDetails;
36494
36793
  export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseConnection = HasPageInfo & HasTotal & {
36495
36794
  __typename?: 'GraphStoreSimplifiedVersionAssociatedBranchInverseConnection';
@@ -37153,6 +37452,9 @@ export declare type GraphStoreUserAuthoredPrSortInput = {
37153
37452
  export declare type GraphStoreUserHasTopProjectSortInput = {
37154
37453
  lastModified?: InputMaybe<GraphStoreSortInput>;
37155
37454
  };
37455
+ export declare type GraphStoreUserIsInTeamSortInput = {
37456
+ lastModified?: InputMaybe<GraphStoreSortInput>;
37457
+ };
37156
37458
  export declare type GraphStoreUserOwnsComponentSortInput = {
37157
37459
  createdAt?: InputMaybe<GraphStoreSortInput>;
37158
37460
  fromAti?: InputMaybe<GraphStoreSortInput>;
@@ -37717,6 +38019,7 @@ export declare type HelpCenter = Node & {
37717
38019
  __typename?: 'HelpCenter';
37718
38020
  announcements?: Maybe<HelpCenterAnnouncements>;
37719
38021
  helpCenterBranding?: Maybe<HelpCenterBranding>;
38022
+ hoistedProjectId?: Maybe<Scalars['ID']['output']>;
37720
38023
  homePageLayout?: Maybe<HelpCenterHomePageLayout>;
37721
38024
  id: Scalars['ID']['output'];
37722
38025
  lastUpdated?: Maybe<Scalars['String']['output']>;
@@ -43409,7 +43712,7 @@ export declare type JiraEstimateInput = {
43409
43712
  };
43410
43713
  export declare type JiraExtensionRenderingContextInput = {
43411
43714
  issueKey?: InputMaybe<Scalars['String']['input']>;
43412
- portalId?: InputMaybe<Scalars['Long']['input']>;
43715
+ portalId?: InputMaybe<Scalars['ID']['input']>;
43413
43716
  projectKey?: InputMaybe<Scalars['String']['input']>;
43414
43717
  };
43415
43718
  export declare type JiraFallbackField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
@@ -53436,6 +53739,7 @@ export declare type JiraUiModification = {
53436
53739
  id: Scalars['ID']['output'];
53437
53740
  };
53438
53741
  export declare type JiraUiModificationsContextInput = {
53742
+ issueKey?: InputMaybe<Scalars['String']['input']>;
53439
53743
  issueTypeId?: InputMaybe<Scalars['ID']['input']>;
53440
53744
  portalId?: InputMaybe<Scalars['ID']['input']>;
53441
53745
  projectId?: InputMaybe<Scalars['ID']['input']>;
@@ -53641,6 +53945,7 @@ export declare type JiraUpdateJourneyConfigurationPayload = Payload & {
53641
53945
  __typename?: 'JiraUpdateJourneyConfigurationPayload';
53642
53946
  errors?: Maybe<Array<MutationError>>;
53643
53947
  jiraJourneyConfiguration?: Maybe<JiraJourneyConfiguration>;
53948
+ jiraJourneyConfigurationEdge?: Maybe<JiraJourneyConfigurationEdge>;
53644
53949
  success: Scalars['Boolean']['output'];
53645
53950
  };
53646
53951
  export declare type JiraUpdateLabelsFieldInput = {
@@ -54026,6 +54331,7 @@ export declare type JiraUserPreferences = {
54026
54331
  isIssueViewChildIssuesLimitBestPracticeFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
54027
54332
  isIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']['output']>;
54028
54333
  isIssueViewPinnedFieldsBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
54334
+ isIssueViewSmartRepliesUserEnabled?: Maybe<Scalars['Boolean']['output']>;
54029
54335
  isMiniModalGlobalIssueCreateDiscoverabilityPushComplete?: Maybe<Scalars['Boolean']['output']>;
54030
54336
  isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']['output']>;
54031
54337
  issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
@@ -57137,6 +57443,18 @@ export declare type MarketplaceConsoleConnectFrameworkAttributes = {
57137
57443
  export declare type MarketplaceConsoleConnectFrameworkAttributesInput = {
57138
57444
  href: Scalars['String']['input'];
57139
57445
  };
57446
+ export declare type MarketplaceConsoleCreatePrivateAppVersionError = MarketplaceConsoleError & {
57447
+ __typename?: 'MarketplaceConsoleCreatePrivateAppVersionError';
57448
+ id: Scalars['ID']['output'];
57449
+ message: Scalars['String']['output'];
57450
+ path?: Maybe<Scalars['String']['output']>;
57451
+ subCode?: Maybe<Scalars['String']['output']>;
57452
+ };
57453
+ export declare type MarketplaceConsoleCreatePrivateAppVersionKnownError = {
57454
+ __typename?: 'MarketplaceConsoleCreatePrivateAppVersionKnownError';
57455
+ errors?: Maybe<Array<Maybe<MarketplaceConsoleCreatePrivateAppVersionError>>>;
57456
+ };
57457
+ export declare type MarketplaceConsoleCreatePrivateAppVersionMutationOutput = MarketplaceConsoleCreatePrivateAppVersionKnownError | MarketplaceConsoleCreatePrivateAppVersionMutationResponse;
57140
57458
  export declare type MarketplaceConsoleCreatePrivateAppVersionMutationResponse = {
57141
57459
  __typename?: 'MarketplaceConsoleCreatePrivateAppVersionMutationResponse';
57142
57460
  resourceUrl?: Maybe<Scalars['String']['output']>;
@@ -57424,6 +57742,23 @@ export declare type MarketplaceConsoleListingScreenshotInput = {
57424
57742
  caption?: InputMaybe<Scalars['String']['input']>;
57425
57743
  imageUrl: Scalars['String']['input'];
57426
57744
  };
57745
+ export declare type MarketplaceConsoleMakeAppPublicError = MarketplaceConsoleError & {
57746
+ __typename?: 'MarketplaceConsoleMakeAppPublicError';
57747
+ id: Scalars['ID']['output'];
57748
+ message: Scalars['String']['output'];
57749
+ path?: Maybe<Scalars['String']['output']>;
57750
+ subCode?: Maybe<Scalars['String']['output']>;
57751
+ };
57752
+ export declare type MarketplaceConsoleMakeAppPublicKnownError = {
57753
+ __typename?: 'MarketplaceConsoleMakeAppPublicKnownError';
57754
+ errors?: Maybe<Array<Maybe<MarketplaceConsoleMakeAppPublicError>>>;
57755
+ };
57756
+ export declare type MarketplaceConsoleMakeAppVersionPublicChecks = {
57757
+ __typename?: 'MarketplaceConsoleMakeAppVersionPublicChecks';
57758
+ canBeMadePublic?: Maybe<Scalars['Boolean']['output']>;
57759
+ redirectToVersionsPage?: Maybe<Scalars['Boolean']['output']>;
57760
+ };
57761
+ export declare type MarketplaceConsoleMakeAppVersionPublicMutationOutput = MarketplaceConsoleMakeAppPublicKnownError | MarketplaceConsoleMutationVoidResponse;
57427
57762
  export declare type MarketplaceConsoleMakeAppVersionPublicRequest = {
57428
57763
  appKey: Scalars['ID']['input'];
57429
57764
  appStatusPageUrl?: InputMaybe<Scalars['String']['input']>;
@@ -57472,11 +57807,11 @@ export declare type MarketplaceConsoleMutationApi = {
57472
57807
  activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
57473
57808
  createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
57474
57809
  createEcoHelpTicket?: Maybe<Scalars['ID']['output']>;
57475
- createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleCreatePrivateAppVersionMutationResponse>;
57810
+ createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleCreatePrivateAppVersionMutationOutput>;
57476
57811
  deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
57477
57812
  deleteAppVersion?: Maybe<MarketplaceConsoleDeleteAppVersionResponse>;
57478
57813
  editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
57479
- makeAppVersionPublic?: Maybe<MarketplaceConsoleMutationVoidResponse>;
57814
+ makeAppVersionPublic?: Maybe<MarketplaceConsoleMakeAppVersionPublicMutationOutput>;
57480
57815
  validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
57481
57816
  };
57482
57817
  export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
@@ -57710,6 +58045,7 @@ export declare type MarketplaceConsoleQueryApi = {
57710
58045
  developerSpaceByAppId?: Maybe<MarketplaceConsoleDevSpace>;
57711
58046
  editions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
57712
58047
  editionsActivationStatus?: Maybe<MarketplaceConsoleEditionsActivationResponse>;
58048
+ makeAppVersionPublicChecks?: Maybe<MarketplaceConsoleMakeAppVersionPublicChecks>;
57713
58049
  parentSoftwares: Array<MarketplaceConsoleParentSoftware>;
57714
58050
  product?: Maybe<MarketplaceConsoleProduct>;
57715
58051
  productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
@@ -57760,6 +58096,10 @@ export declare type MarketplaceConsoleQueryApiEditionsArgs = {
57760
58096
  export declare type MarketplaceConsoleQueryApiEditionsActivationStatusArgs = {
57761
58097
  product: MarketplaceConsoleEditionsInput;
57762
58098
  };
58099
+ export declare type MarketplaceConsoleQueryApiMakeAppVersionPublicChecksArgs = {
58100
+ appId: Scalars['ID']['input'];
58101
+ buildNumber: Scalars['ID']['input'];
58102
+ };
57763
58103
  export declare type MarketplaceConsoleQueryApiProductArgs = {
57764
58104
  appKey: Scalars['ID']['input'];
57765
58105
  productId: Scalars['ID']['input'];
@@ -60109,6 +60449,8 @@ export declare type Mutation = {
60109
60449
  confluenceV2_createPage?: Maybe<ConfluenceV2CreatePagePayload>;
60110
60450
  confluenceV2_deletePage?: Maybe<Scalars['Boolean']['output']>;
60111
60451
  confluenceV2_updatePage?: Maybe<ConfluenceV2UpdatePagePayload>;
60452
+ connectionManager_createApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload>;
60453
+ connectionManager_deleteApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerDeleteApiTokenConnectionForJiraProjectPayload>;
60112
60454
  copyPolarisInsights?: Maybe<CopyPolarisInsightsPayload>;
60113
60455
  createApp?: Maybe<CreateAppResponse>;
60114
60456
  createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
@@ -60779,6 +61121,14 @@ export declare type MutationConfluenceV2_DeletePageArgs = {
60779
61121
  export declare type MutationConfluenceV2_UpdatePageArgs = {
60780
61122
  input: ConfluenceV2UpdatePageInput;
60781
61123
  };
61124
+ export declare type MutationConnectionManager_CreateApiTokenConnectionForJiraProjectArgs = {
61125
+ createApiTokenConnectionInput?: InputMaybe<ConnectionManagerCreateApiTokenConnectionInput>;
61126
+ jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
61127
+ };
61128
+ export declare type MutationConnectionManager_DeleteApiTokenConnectionForJiraProjectArgs = {
61129
+ integrationKey?: InputMaybe<Scalars['String']['input']>;
61130
+ jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
61131
+ };
60782
61132
  export declare type MutationCopyPolarisInsightsArgs = {
60783
61133
  input: CopyPolarisInsightsInput;
60784
61134
  };
@@ -63051,6 +63401,7 @@ export declare type Query = {
63051
63401
  confluenceV2_spaceTheme?: Maybe<ConfluenceV2Theme>;
63052
63402
  confluenceV2_spaces?: Maybe<Array<Maybe<ConfluenceV2Space>>>;
63053
63403
  connectedData?: Maybe<ConnectedDataQuery>;
63404
+ connectionManager_connectionsByJiraProject?: Maybe<ConnectionManagerConnectionsByJiraProjectResult>;
63054
63405
  contentFacet: ContentPlatformContentFacetConnection;
63055
63406
  customerService?: Maybe<CustomerServiceQueryApi>;
63056
63407
  customerStories: ContentPlatformCustomerStorySearchConnection;
@@ -64254,6 +64605,10 @@ export declare type QueryConfluenceV2_SpaceThemeArgs = {
64254
64605
  export declare type QueryConfluenceV2_SpacesArgs = {
64255
64606
  ids: Array<Scalars['ID']['input']>;
64256
64607
  };
64608
+ export declare type QueryConnectionManager_ConnectionsByJiraProjectArgs = {
64609
+ filter?: InputMaybe<ConnectionManagerConnectionsFilter>;
64610
+ jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
64611
+ };
64257
64612
  export declare type QueryContentFacetArgs = {
64258
64613
  after?: InputMaybe<Scalars['String']['input']>;
64259
64614
  first?: Scalars['Int']['input'];
@@ -68355,6 +68710,7 @@ export declare type ShepherdWorkspace = {
68355
68710
  currentUser?: Maybe<ShepherdCurrentUser>;
68356
68711
  customDetections: Array<ShepherdCustomDetection>;
68357
68712
  detections: Array<ShepherdDetection>;
68713
+ hasDataCenterAlert?: Maybe<Scalars['Boolean']['output']>;
68358
68714
  id: Scalars['ID']['output'];
68359
68715
  orgId: Scalars['ID']['output'];
68360
68716
  shouldOnboard?: Maybe<Scalars['Boolean']['output']>;
@@ -73241,6 +73597,10 @@ export declare type User = {
73241
73597
  name: Scalars['String']['output'];
73242
73598
  picture: Scalars['URL']['output'];
73243
73599
  };
73600
+ export declare type UserAccess = {
73601
+ __typename?: 'UserAccess';
73602
+ hasAccess: Scalars['Boolean']['output'];
73603
+ };
73244
73604
  export declare type UserAuthTokenForExtensionInput = {
73245
73605
  contextIds: Array<Scalars['ID']['input']>;
73246
73606
  extensionId: Scalars['ID']['input'];