@forge/cli-shared 6.2.1-next.3 → 6.2.1-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.
@@ -239,6 +239,11 @@ export declare type ActionsExecuteResponse = {
239
239
  outputs?: Maybe<Scalars['JSON']['output']>;
240
240
  status?: Maybe<Scalars['Int']['output']>;
241
241
  };
242
+ export declare type ActionsExecuteResponseBulk = {
243
+ __typename?: 'ActionsExecuteResponseBulk';
244
+ outputsList?: Maybe<Scalars['JSON']['output']>;
245
+ status?: Maybe<Scalars['Int']['output']>;
246
+ };
242
247
  export declare type ActionsExecuteTargetInput = {
243
248
  ari?: InputMaybe<Scalars['String']['input']>;
244
249
  ids?: InputMaybe<Scalars['JSON']['input']>;
@@ -247,10 +252,17 @@ export declare type ActionsExecuteTargetInput = {
247
252
  export declare type ActionsMutation = {
248
253
  __typename?: 'ActionsMutation';
249
254
  execute?: Maybe<ActionsExecuteResponse>;
255
+ executeBulk?: Maybe<ActionsExecuteResponseBulk>;
250
256
  };
251
257
  export declare type ActionsMutationExecuteArgs = {
252
258
  actionInput: ActionsExecuteActionInput;
253
- actionTypeKey: Scalars['String']['input'];
259
+ actionTypeKey?: InputMaybe<Scalars['String']['input']>;
260
+ filter: ActionsExecuteActionFilter;
261
+ workspace?: InputMaybe<Scalars['String']['input']>;
262
+ };
263
+ export declare type ActionsMutationExecuteBulkArgs = {
264
+ actionInputsList: Array<ActionsExecuteActionInput>;
265
+ actionTypeKey?: InputMaybe<Scalars['String']['input']>;
254
266
  filter: ActionsExecuteActionFilter;
255
267
  workspace?: InputMaybe<Scalars['String']['input']>;
256
268
  };
@@ -1613,7 +1625,7 @@ export declare type AriGraphRelationshipNode = {
1613
1625
  data?: Maybe<AriGraphRelationshipNodeData>;
1614
1626
  id: Scalars['ID']['output'];
1615
1627
  };
1616
- export declare type AriGraphRelationshipNodeData = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
1628
+ export declare type AriGraphRelationshipNodeData = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalCommit | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
1617
1629
  export declare type AriGraphRelationshipsErrorReference = {
1618
1630
  __typename?: 'AriGraphRelationshipsErrorReference';
1619
1631
  from?: Maybe<Scalars['ID']['output']>;
@@ -2648,6 +2660,7 @@ export declare type CcpOffering = CommerceOffering & Node & {
2648
2660
  offeringChargeElements?: Maybe<Array<Maybe<CcpOfferingChargeElement>>>;
2649
2661
  offeringGroup?: Maybe<CcpOfferingGroup>;
2650
2662
  pricingType?: Maybe<CcpPricingType>;
2663
+ product?: Maybe<CcpProduct>;
2651
2664
  productKey?: Maybe<Scalars['ID']['output']>;
2652
2665
  sku?: Maybe<Scalars['String']['output']>;
2653
2666
  slugs?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
@@ -2688,6 +2701,7 @@ export declare type CcpOfferingGroup = {
2688
2701
  key?: Maybe<Scalars['ID']['output']>;
2689
2702
  level?: Maybe<Scalars['Int']['output']>;
2690
2703
  name?: Maybe<Scalars['String']['output']>;
2704
+ product?: Maybe<CcpProduct>;
2691
2705
  productKey?: Maybe<Scalars['ID']['output']>;
2692
2706
  slug?: Maybe<Scalars['String']['output']>;
2693
2707
  };
@@ -2736,6 +2750,7 @@ export declare type CcpPricingPlan = CommercePricingPlan & Node & {
2736
2750
  offering?: Maybe<CcpOffering>;
2737
2751
  offeringKey?: Maybe<Scalars['ID']['output']>;
2738
2752
  primaryCycle?: Maybe<CcpCycle>;
2753
+ product?: Maybe<CcpProduct>;
2739
2754
  productKey?: Maybe<Scalars['ID']['output']>;
2740
2755
  relationships?: Maybe<Array<Maybe<CcpPricingPlanRelationship>>>;
2741
2756
  sku?: Maybe<Scalars['String']['output']>;
@@ -2782,6 +2797,22 @@ export declare enum CcpPricingType {
2782
2797
  LimitedFree = "LIMITED_FREE",
2783
2798
  Paid = "PAID"
2784
2799
  }
2800
+ export declare type CcpProduct = Node & {
2801
+ __typename?: 'CcpProduct';
2802
+ catalogAccountId?: Maybe<Scalars['ID']['output']>;
2803
+ id: Scalars['ID']['output'];
2804
+ name?: Maybe<Scalars['String']['output']>;
2805
+ offerings?: Maybe<Array<Maybe<CcpOffering>>>;
2806
+ status?: Maybe<CcpProductStatus>;
2807
+ supportedBillingSystems?: Maybe<Array<Maybe<CcpSupportedBillingSystems>>>;
2808
+ version?: Maybe<Scalars['Int']['output']>;
2809
+ };
2810
+ export declare enum CcpProductStatus {
2811
+ Active = "ACTIVE",
2812
+ AtNotice = "AT_NOTICE",
2813
+ Draft = "DRAFT",
2814
+ Expired = "EXPIRED"
2815
+ }
2785
2816
  export declare type CcpPromotionDefinition = {
2786
2817
  __typename?: 'CcpPromotionDefinition';
2787
2818
  customisedValues?: Maybe<CcpCustomisedValues>;
@@ -2804,6 +2835,7 @@ export declare type CcpQueryApi = {
2804
2835
  entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
2805
2836
  offering?: Maybe<CcpOffering>;
2806
2837
  pricingPlan?: Maybe<CcpPricingPlan>;
2838
+ product?: Maybe<CcpProduct>;
2807
2839
  transactionAccount?: Maybe<CcpTransactionAccount>;
2808
2840
  };
2809
2841
  export declare type CcpQueryApiEntitlementArgs = {
@@ -2818,6 +2850,9 @@ export declare type CcpQueryApiOfferingArgs = {
2818
2850
  export declare type CcpQueryApiPricingPlanArgs = {
2819
2851
  id: Scalars['ID']['input'];
2820
2852
  };
2853
+ export declare type CcpQueryApiProductArgs = {
2854
+ id: Scalars['ID']['input'];
2855
+ };
2821
2856
  export declare type CcpQueryApiTransactionAccountArgs = {
2822
2857
  id: Scalars['ID']['input'];
2823
2858
  };
@@ -24964,6 +24999,10 @@ export declare type GraphStore = {
24964
24999
  atlasProjectContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseConnection>;
24965
25000
  atlasProjectContributesToAtlasGoalInverseRelationship?: Maybe<GraphStoreFullAtlasProjectContributesToAtlasGoalConnection>;
24966
25001
  atlasProjectContributesToAtlasGoalRelationship?: Maybe<GraphStoreFullAtlasProjectContributesToAtlasGoalConnection>;
25002
+ atlasProjectDependsOnAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectConnection>;
25003
+ atlasProjectDependsOnAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverseConnection>;
25004
+ atlasProjectIsRelatedToAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection>;
25005
+ atlasProjectIsRelatedToAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectInverseConnection>;
24967
25006
  atlasProjectIsTrackedOnJiraEpic?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection>;
24968
25007
  atlasProjectIsTrackedOnJiraEpicInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseConnection>;
24969
25008
  atlasProjectIsTrackedOnJiraEpicInverseRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
@@ -24988,6 +25027,8 @@ export declare type GraphStore = {
24988
25027
  contentReferencedEntityInverseRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
24989
25028
  contentReferencedEntityRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
24990
25029
  cypherQuery: GraphStoreCypherQueryConnection;
25030
+ deploymentContainsCommit?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitConnection>;
25031
+ deploymentContainsCommitInverse?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitInverseConnection>;
24991
25032
  fetchAllRelationships: GraphStoreAllRelationshipsConnection;
24992
25033
  focusAreaAssociatedToProject?: Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection>;
24993
25034
  focusAreaAssociatedToProjectBatch?: Maybe<GraphStoreBatchFocusAreaAssociatedToProjectConnection>;
@@ -25037,6 +25078,7 @@ export declare type GraphStore = {
25037
25078
  issueAssociatedBuildInverseBatch?: Maybe<GraphStoreBatchIssueAssociatedBuildConnection>;
25038
25079
  issueAssociatedBuildInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedBuildConnection>;
25039
25080
  issueAssociatedBuildRelationship?: Maybe<GraphStoreFullIssueAssociatedBuildConnection>;
25081
+ issueAssociatedCommit?: Maybe<GraphStoreSimplifiedIssueAssociatedCommitConnection>;
25040
25082
  issueAssociatedCommitInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedCommitInverseConnection>;
25041
25083
  issueAssociatedCommitInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedCommitConnection>;
25042
25084
  issueAssociatedCommitRelationship?: Maybe<GraphStoreFullIssueAssociatedCommitConnection>;
@@ -25071,6 +25113,7 @@ export declare type GraphStore = {
25071
25113
  issueChangesComponentInverse?: Maybe<GraphStoreSimplifiedIssueChangesComponentInverseConnection>;
25072
25114
  issueChangesComponentInverseRelationship?: Maybe<GraphStoreFullIssueChangesComponentConnection>;
25073
25115
  issueChangesComponentRelationship?: Maybe<GraphStoreFullIssueChangesComponentConnection>;
25116
+ issueHasAssigneeInverse?: Maybe<GraphStoreSimplifiedIssueHasAssigneeInverseConnection>;
25074
25117
  issueRecursiveAssociatedDeployment?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentConnection>;
25075
25118
  issueRecursiveAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentInverseConnection>;
25076
25119
  issueRecursiveAssociatedDeploymentInverseRelationship?: Maybe<GraphStoreFullIssueRecursiveAssociatedDeploymentConnection>;
@@ -25275,9 +25318,11 @@ export declare type GraphStore = {
25275
25318
  teamWorksOnProject?: Maybe<GraphStoreSimplifiedTeamWorksOnProjectConnection>;
25276
25319
  teamWorksOnProjectInverseRelationship?: Maybe<GraphStoreFullTeamWorksOnProjectConnection>;
25277
25320
  teamWorksOnProjectRelationship?: Maybe<GraphStoreFullTeamWorksOnProjectConnection>;
25321
+ testPerfhammerMaterializationA?: Maybe<GraphStoreSimplifiedTestPerfhammerMaterializationAConnection>;
25278
25322
  testPerfhammerMaterializationAInverse?: Maybe<GraphStoreSimplifiedTestPerfhammerMaterializationAInverseConnection>;
25279
25323
  testPerfhammerMaterializationAInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerMaterializationAConnection>;
25280
25324
  testPerfhammerMaterializationARelationship?: Maybe<GraphStoreFullTestPerfhammerMaterializationAConnection>;
25325
+ testPerfhammerMaterializationBInverse?: Maybe<GraphStoreSimplifiedTestPerfhammerMaterializationBInverseConnection>;
25281
25326
  testPerfhammerMaterializationBInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerMaterializationBConnection>;
25282
25327
  testPerfhammerMaterializationBRelationship?: Maybe<GraphStoreFullTestPerfhammerMaterializationBConnection>;
25283
25328
  testPerfhammerMaterializationInverse?: Maybe<GraphStoreSimplifiedTestPerfhammerMaterializationInverseConnection>;
@@ -25295,6 +25340,7 @@ export declare type GraphStore = {
25295
25340
  versionAssociatedBuildInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBuildInverseConnection>;
25296
25341
  versionAssociatedBuildInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBuildConnection>;
25297
25342
  versionAssociatedBuildRelationship?: Maybe<GraphStoreFullVersionAssociatedBuildConnection>;
25343
+ versionAssociatedCommit?: Maybe<GraphStoreSimplifiedVersionAssociatedCommitConnection>;
25298
25344
  versionAssociatedCommitInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedCommitInverseConnection>;
25299
25345
  versionAssociatedCommitInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedCommitConnection>;
25300
25346
  versionAssociatedCommitRelationship?: Maybe<GraphStoreFullVersionAssociatedCommitConnection>;
@@ -25388,6 +25434,34 @@ export declare type GraphStoreAtlasProjectContributesToAtlasGoalRelationshipArgs
25388
25434
  first?: InputMaybe<Scalars['Int']['input']>;
25389
25435
  id: Scalars['ID']['input'];
25390
25436
  };
25437
+ export declare type GraphStoreAtlasProjectDependsOnAtlasProjectArgs = {
25438
+ after?: InputMaybe<Scalars['String']['input']>;
25439
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
25440
+ first?: InputMaybe<Scalars['Int']['input']>;
25441
+ id: Scalars['ID']['input'];
25442
+ sort?: InputMaybe<GraphStoreAtlasProjectDependsOnAtlasProjectSortInput>;
25443
+ };
25444
+ export declare type GraphStoreAtlasProjectDependsOnAtlasProjectInverseArgs = {
25445
+ after?: InputMaybe<Scalars['String']['input']>;
25446
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
25447
+ first?: InputMaybe<Scalars['Int']['input']>;
25448
+ id: Scalars['ID']['input'];
25449
+ sort?: InputMaybe<GraphStoreAtlasProjectDependsOnAtlasProjectSortInput>;
25450
+ };
25451
+ export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectArgs = {
25452
+ after?: InputMaybe<Scalars['String']['input']>;
25453
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
25454
+ first?: InputMaybe<Scalars['Int']['input']>;
25455
+ id: Scalars['ID']['input'];
25456
+ sort?: InputMaybe<GraphStoreAtlasProjectIsRelatedToAtlasProjectSortInput>;
25457
+ };
25458
+ export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectInverseArgs = {
25459
+ after?: InputMaybe<Scalars['String']['input']>;
25460
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
25461
+ first?: InputMaybe<Scalars['Int']['input']>;
25462
+ id: Scalars['ID']['input'];
25463
+ sort?: InputMaybe<GraphStoreAtlasProjectIsRelatedToAtlasProjectSortInput>;
25464
+ };
25391
25465
  export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicArgs = {
25392
25466
  after?: InputMaybe<Scalars['String']['input']>;
25393
25467
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -25532,6 +25606,20 @@ export declare type GraphStoreCypherQueryArgs = {
25532
25606
  first?: InputMaybe<Scalars['Int']['input']>;
25533
25607
  query: Scalars['String']['input'];
25534
25608
  };
25609
+ export declare type GraphStoreDeploymentContainsCommitArgs = {
25610
+ after?: InputMaybe<Scalars['String']['input']>;
25611
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
25612
+ first?: InputMaybe<Scalars['Int']['input']>;
25613
+ id: Scalars['ID']['input'];
25614
+ sort?: InputMaybe<GraphStoreDeploymentContainsCommitSortInput>;
25615
+ };
25616
+ export declare type GraphStoreDeploymentContainsCommitInverseArgs = {
25617
+ after?: InputMaybe<Scalars['String']['input']>;
25618
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
25619
+ first?: InputMaybe<Scalars['Int']['input']>;
25620
+ id: Scalars['ID']['input'];
25621
+ sort?: InputMaybe<GraphStoreDeploymentContainsCommitSortInput>;
25622
+ };
25535
25623
  export declare type GraphStoreFetchAllRelationshipsArgs = {
25536
25624
  after?: InputMaybe<Scalars['String']['input']>;
25537
25625
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -25832,6 +25920,13 @@ export declare type GraphStoreIssueAssociatedBuildRelationshipArgs = {
25832
25920
  first?: InputMaybe<Scalars['Int']['input']>;
25833
25921
  id: Scalars['ID']['input'];
25834
25922
  };
25923
+ export declare type GraphStoreIssueAssociatedCommitArgs = {
25924
+ after?: InputMaybe<Scalars['String']['input']>;
25925
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
25926
+ first?: InputMaybe<Scalars['Int']['input']>;
25927
+ id: Scalars['ID']['input'];
25928
+ sort?: InputMaybe<GraphStoreIssueAssociatedCommitSortInput>;
25929
+ };
25835
25930
  export declare type GraphStoreIssueAssociatedCommitInverseArgs = {
25836
25931
  after?: InputMaybe<Scalars['String']['input']>;
25837
25932
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -26042,6 +26137,13 @@ export declare type GraphStoreIssueChangesComponentRelationshipArgs = {
26042
26137
  first?: InputMaybe<Scalars['Int']['input']>;
26043
26138
  id: Scalars['ID']['input'];
26044
26139
  };
26140
+ export declare type GraphStoreIssueHasAssigneeInverseArgs = {
26141
+ after?: InputMaybe<Scalars['String']['input']>;
26142
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
26143
+ first?: InputMaybe<Scalars['Int']['input']>;
26144
+ id: Scalars['ID']['input'];
26145
+ sort?: InputMaybe<GraphStoreIssueHasAssigneeSortInput>;
26146
+ };
26045
26147
  export declare type GraphStoreIssueRecursiveAssociatedDeploymentArgs = {
26046
26148
  after?: InputMaybe<Scalars['String']['input']>;
26047
26149
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -27343,6 +27445,13 @@ export declare type GraphStoreTeamWorksOnProjectRelationshipArgs = {
27343
27445
  first?: InputMaybe<Scalars['Int']['input']>;
27344
27446
  id: Scalars['ID']['input'];
27345
27447
  };
27448
+ export declare type GraphStoreTestPerfhammerMaterializationAArgs = {
27449
+ after?: InputMaybe<Scalars['String']['input']>;
27450
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
27451
+ first?: InputMaybe<Scalars['Int']['input']>;
27452
+ id: Scalars['ID']['input'];
27453
+ sort?: InputMaybe<GraphStoreTestPerfhammerMaterializationASortInput>;
27454
+ };
27346
27455
  export declare type GraphStoreTestPerfhammerMaterializationAInverseArgs = {
27347
27456
  after?: InputMaybe<Scalars['String']['input']>;
27348
27457
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -27360,6 +27469,13 @@ export declare type GraphStoreTestPerfhammerMaterializationARelationshipArgs = {
27360
27469
  first?: InputMaybe<Scalars['Int']['input']>;
27361
27470
  id: Scalars['ID']['input'];
27362
27471
  };
27472
+ export declare type GraphStoreTestPerfhammerMaterializationBInverseArgs = {
27473
+ after?: InputMaybe<Scalars['String']['input']>;
27474
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
27475
+ first?: InputMaybe<Scalars['Int']['input']>;
27476
+ id: Scalars['ID']['input'];
27477
+ sort?: InputMaybe<GraphStoreTestPerfhammerMaterializationBSortInput>;
27478
+ };
27363
27479
  export declare type GraphStoreTestPerfhammerMaterializationBInverseRelationshipArgs = {
27364
27480
  after?: InputMaybe<Scalars['String']['input']>;
27365
27481
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -27457,6 +27573,13 @@ export declare type GraphStoreVersionAssociatedBuildRelationshipArgs = {
27457
27573
  first?: InputMaybe<Scalars['Int']['input']>;
27458
27574
  id: Scalars['ID']['input'];
27459
27575
  };
27576
+ export declare type GraphStoreVersionAssociatedCommitArgs = {
27577
+ after?: InputMaybe<Scalars['String']['input']>;
27578
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
27579
+ first?: InputMaybe<Scalars['Int']['input']>;
27580
+ id: Scalars['ID']['input'];
27581
+ sort?: InputMaybe<GraphStoreVersionAssociatedCommitSortInput>;
27582
+ };
27460
27583
  export declare type GraphStoreVersionAssociatedCommitInverseArgs = {
27461
27584
  after?: InputMaybe<Scalars['String']['input']>;
27462
27585
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -27701,6 +27824,12 @@ export declare type GraphStoreAtlasGoalHasSubAtlasGoalSortInput = {
27701
27824
  export declare type GraphStoreAtlasProjectContributesToAtlasGoalSortInput = {
27702
27825
  lastModified?: InputMaybe<GraphStoreSortInput>;
27703
27826
  };
27827
+ export declare type GraphStoreAtlasProjectDependsOnAtlasProjectSortInput = {
27828
+ lastModified?: InputMaybe<GraphStoreSortInput>;
27829
+ };
27830
+ export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectSortInput = {
27831
+ lastModified?: InputMaybe<GraphStoreSortInput>;
27832
+ };
27704
27833
  export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput = {
27705
27834
  lastModified?: InputMaybe<GraphStoreSortInput>;
27706
27835
  };
@@ -29018,6 +29147,9 @@ export declare type GraphStoreDeleteVulnerabilityAssociatedIssueRelationshipInpu
29018
29147
  from: Scalars['ID']['input'];
29019
29148
  to: Scalars['ID']['input'];
29020
29149
  };
29150
+ export declare type GraphStoreDeploymentContainsCommitSortInput = {
29151
+ lastModified?: InputMaybe<GraphStoreSortInput>;
29152
+ };
29021
29153
  export declare type GraphStoreFloatFilterInput = {
29022
29154
  greaterThan?: InputMaybe<Scalars['Float']['input']>;
29023
29155
  greaterThanOrEqual?: InputMaybe<Scalars['Float']['input']>;
@@ -29538,8 +29670,10 @@ export declare type GraphStoreFullIssueAssociatedCommitEdge = {
29538
29670
  };
29539
29671
  export declare type GraphStoreFullIssueAssociatedCommitEndNode = {
29540
29672
  __typename?: 'GraphStoreFullIssueAssociatedCommitEndNode';
29673
+ data?: Maybe<GraphStoreFullIssueAssociatedCommitEndUnion>;
29541
29674
  id: Scalars['ID']['output'];
29542
29675
  };
29676
+ export declare type GraphStoreFullIssueAssociatedCommitEndUnion = ExternalCommit;
29543
29677
  export declare type GraphStoreFullIssueAssociatedCommitNode = Node & {
29544
29678
  __typename?: 'GraphStoreFullIssueAssociatedCommitNode';
29545
29679
  createdAt: Scalars['DateTime']['output'];
@@ -31912,8 +32046,10 @@ export declare type GraphStoreFullTestPerfhammerMaterializationAEdge = {
31912
32046
  };
31913
32047
  export declare type GraphStoreFullTestPerfhammerMaterializationAEndNode = {
31914
32048
  __typename?: 'GraphStoreFullTestPerfhammerMaterializationAEndNode';
32049
+ data?: Maybe<GraphStoreFullTestPerfhammerMaterializationAEndUnion>;
31915
32050
  id: Scalars['ID']['output'];
31916
32051
  };
32052
+ export declare type GraphStoreFullTestPerfhammerMaterializationAEndUnion = ExternalCommit;
31917
32053
  export declare type GraphStoreFullTestPerfhammerMaterializationANode = Node & {
31918
32054
  __typename?: 'GraphStoreFullTestPerfhammerMaterializationANode';
31919
32055
  createdAt: Scalars['DateTime']['output'];
@@ -31955,8 +32091,10 @@ export declare type GraphStoreFullTestPerfhammerMaterializationBNode = Node & {
31955
32091
  };
31956
32092
  export declare type GraphStoreFullTestPerfhammerMaterializationBStartNode = {
31957
32093
  __typename?: 'GraphStoreFullTestPerfhammerMaterializationBStartNode';
32094
+ data?: Maybe<GraphStoreFullTestPerfhammerMaterializationBStartUnion>;
31958
32095
  id: Scalars['ID']['output'];
31959
32096
  };
32097
+ export declare type GraphStoreFullTestPerfhammerMaterializationBStartUnion = ExternalCommit;
31960
32098
  export declare type GraphStoreFullTestPerfhammerMaterializationConnection = HasPageInfo & HasTotal & {
31961
32099
  __typename?: 'GraphStoreFullTestPerfhammerMaterializationConnection';
31962
32100
  edges: Array<Maybe<GraphStoreFullTestPerfhammerMaterializationEdge>>;
@@ -32100,8 +32238,10 @@ export declare type GraphStoreFullVersionAssociatedCommitEdge = {
32100
32238
  };
32101
32239
  export declare type GraphStoreFullVersionAssociatedCommitEndNode = {
32102
32240
  __typename?: 'GraphStoreFullVersionAssociatedCommitEndNode';
32241
+ data?: Maybe<GraphStoreFullVersionAssociatedCommitEndUnion>;
32103
32242
  id: Scalars['ID']['output'];
32104
32243
  };
32244
+ export declare type GraphStoreFullVersionAssociatedCommitEndUnion = ExternalCommit;
32105
32245
  export declare type GraphStoreFullVersionAssociatedCommitNode = Node & {
32106
32246
  __typename?: 'GraphStoreFullVersionAssociatedCommitNode';
32107
32247
  createdAt: Scalars['DateTime']['output'];
@@ -32549,6 +32689,9 @@ export declare type GraphStoreIssueChangesComponentSortInput = {
32549
32689
  lastModified?: InputMaybe<GraphStoreSortInput>;
32550
32690
  toAti?: InputMaybe<GraphStoreSortInput>;
32551
32691
  };
32692
+ export declare type GraphStoreIssueHasAssigneeSortInput = {
32693
+ lastModified?: InputMaybe<GraphStoreSortInput>;
32694
+ };
32552
32695
  export declare type GraphStoreIssueRecursiveAssociatedDeploymentSortInput = {
32553
32696
  createdAt?: InputMaybe<GraphStoreSortInput>;
32554
32697
  fromAti?: InputMaybe<GraphStoreSortInput>;
@@ -33419,6 +33562,62 @@ export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInvers
33419
33562
  };
33420
33563
  export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseUnion = TownsquareProject;
33421
33564
  export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalUnion = TownsquareGoal;
33565
+ export declare type GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectConnection = HasPageInfo & {
33566
+ __typename?: 'GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectConnection';
33567
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectEdge>>>;
33568
+ pageInfo: PageInfo;
33569
+ };
33570
+ export declare type GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectEdge = {
33571
+ __typename?: 'GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectEdge';
33572
+ createdAt: Scalars['DateTime']['output'];
33573
+ cursor?: Maybe<Scalars['String']['output']>;
33574
+ id: Scalars['ID']['output'];
33575
+ lastUpdated: Scalars['DateTime']['output'];
33576
+ node?: Maybe<GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectUnion>;
33577
+ };
33578
+ export declare type GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverseConnection = HasPageInfo & {
33579
+ __typename?: 'GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverseConnection';
33580
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverseEdge>>>;
33581
+ pageInfo: PageInfo;
33582
+ };
33583
+ export declare type GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverseEdge = {
33584
+ __typename?: 'GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverseEdge';
33585
+ createdAt: Scalars['DateTime']['output'];
33586
+ cursor?: Maybe<Scalars['String']['output']>;
33587
+ id: Scalars['ID']['output'];
33588
+ lastUpdated: Scalars['DateTime']['output'];
33589
+ node?: Maybe<GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverseUnion>;
33590
+ };
33591
+ export declare type GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverseUnion = TownsquareProject;
33592
+ export declare type GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectUnion = TownsquareProject;
33593
+ export declare type GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection = HasPageInfo & {
33594
+ __typename?: 'GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection';
33595
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectEdge>>>;
33596
+ pageInfo: PageInfo;
33597
+ };
33598
+ export declare type GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectEdge = {
33599
+ __typename?: 'GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectEdge';
33600
+ createdAt: Scalars['DateTime']['output'];
33601
+ cursor?: Maybe<Scalars['String']['output']>;
33602
+ id: Scalars['ID']['output'];
33603
+ lastUpdated: Scalars['DateTime']['output'];
33604
+ node?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectUnion>;
33605
+ };
33606
+ export declare type GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectInverseConnection = HasPageInfo & {
33607
+ __typename?: 'GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectInverseConnection';
33608
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectInverseEdge>>>;
33609
+ pageInfo: PageInfo;
33610
+ };
33611
+ export declare type GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectInverseEdge = {
33612
+ __typename?: 'GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectInverseEdge';
33613
+ createdAt: Scalars['DateTime']['output'];
33614
+ cursor?: Maybe<Scalars['String']['output']>;
33615
+ id: Scalars['ID']['output'];
33616
+ lastUpdated: Scalars['DateTime']['output'];
33617
+ node?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectInverseUnion>;
33618
+ };
33619
+ export declare type GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectInverseUnion = TownsquareProject;
33620
+ export declare type GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectUnion = TownsquareProject;
33422
33621
  export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection = HasPageInfo & {
33423
33622
  __typename?: 'GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection';
33424
33623
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicEdge>>>;
@@ -33577,6 +33776,34 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
33577
33776
  };
33578
33777
  export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluencePage | JiraIssue;
33579
33778
  export declare type GraphStoreSimplifiedContentReferencedEntityUnion = CompassComponent | ConfluencePage | JiraIssue;
33779
+ export declare type GraphStoreSimplifiedDeploymentContainsCommitConnection = HasPageInfo & {
33780
+ __typename?: 'GraphStoreSimplifiedDeploymentContainsCommitConnection';
33781
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDeploymentContainsCommitEdge>>>;
33782
+ pageInfo: PageInfo;
33783
+ };
33784
+ export declare type GraphStoreSimplifiedDeploymentContainsCommitEdge = {
33785
+ __typename?: 'GraphStoreSimplifiedDeploymentContainsCommitEdge';
33786
+ createdAt: Scalars['DateTime']['output'];
33787
+ cursor?: Maybe<Scalars['String']['output']>;
33788
+ id: Scalars['ID']['output'];
33789
+ lastUpdated: Scalars['DateTime']['output'];
33790
+ node?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitUnion>;
33791
+ };
33792
+ export declare type GraphStoreSimplifiedDeploymentContainsCommitInverseConnection = HasPageInfo & {
33793
+ __typename?: 'GraphStoreSimplifiedDeploymentContainsCommitInverseConnection';
33794
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDeploymentContainsCommitInverseEdge>>>;
33795
+ pageInfo: PageInfo;
33796
+ };
33797
+ export declare type GraphStoreSimplifiedDeploymentContainsCommitInverseEdge = {
33798
+ __typename?: 'GraphStoreSimplifiedDeploymentContainsCommitInverseEdge';
33799
+ createdAt: Scalars['DateTime']['output'];
33800
+ cursor?: Maybe<Scalars['String']['output']>;
33801
+ id: Scalars['ID']['output'];
33802
+ lastUpdated: Scalars['DateTime']['output'];
33803
+ node?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitInverseUnion>;
33804
+ };
33805
+ export declare type GraphStoreSimplifiedDeploymentContainsCommitInverseUnion = DeploymentSummary;
33806
+ export declare type GraphStoreSimplifiedDeploymentContainsCommitUnion = ExternalCommit;
33580
33807
  export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection = HasPageInfo & {
33581
33808
  __typename?: 'GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection';
33582
33809
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectEdge>>>;
@@ -33845,6 +34072,19 @@ export declare type GraphStoreSimplifiedIssueAssociatedBuildInverseEdge = {
33845
34072
  node?: Maybe<GraphStoreSimplifiedIssueAssociatedBuildInverseUnion>;
33846
34073
  };
33847
34074
  export declare type GraphStoreSimplifiedIssueAssociatedBuildInverseUnion = JiraIssue;
34075
+ export declare type GraphStoreSimplifiedIssueAssociatedCommitConnection = HasPageInfo & {
34076
+ __typename?: 'GraphStoreSimplifiedIssueAssociatedCommitConnection';
34077
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedCommitEdge>>>;
34078
+ pageInfo: PageInfo;
34079
+ };
34080
+ export declare type GraphStoreSimplifiedIssueAssociatedCommitEdge = {
34081
+ __typename?: 'GraphStoreSimplifiedIssueAssociatedCommitEdge';
34082
+ createdAt: Scalars['DateTime']['output'];
34083
+ cursor?: Maybe<Scalars['String']['output']>;
34084
+ id: Scalars['ID']['output'];
34085
+ lastUpdated: Scalars['DateTime']['output'];
34086
+ node?: Maybe<GraphStoreSimplifiedIssueAssociatedCommitUnion>;
34087
+ };
33848
34088
  export declare type GraphStoreSimplifiedIssueAssociatedCommitInverseConnection = HasPageInfo & {
33849
34089
  __typename?: 'GraphStoreSimplifiedIssueAssociatedCommitInverseConnection';
33850
34090
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedCommitInverseEdge>>>;
@@ -33859,6 +34099,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedCommitInverseEdge = {
33859
34099
  node?: Maybe<GraphStoreSimplifiedIssueAssociatedCommitInverseUnion>;
33860
34100
  };
33861
34101
  export declare type GraphStoreSimplifiedIssueAssociatedCommitInverseUnion = JiraIssue;
34102
+ export declare type GraphStoreSimplifiedIssueAssociatedCommitUnion = ExternalCommit;
33862
34103
  export declare type GraphStoreSimplifiedIssueAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
33863
34104
  __typename?: 'GraphStoreSimplifiedIssueAssociatedDeploymentConnection';
33864
34105
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentEdge>>>;
@@ -34049,6 +34290,20 @@ export declare type GraphStoreSimplifiedIssueChangesComponentInverseEdge = {
34049
34290
  };
34050
34291
  export declare type GraphStoreSimplifiedIssueChangesComponentInverseUnion = JiraIssue;
34051
34292
  export declare type GraphStoreSimplifiedIssueChangesComponentUnion = CompassComponent;
34293
+ export declare type GraphStoreSimplifiedIssueHasAssigneeInverseConnection = HasPageInfo & {
34294
+ __typename?: 'GraphStoreSimplifiedIssueHasAssigneeInverseConnection';
34295
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasAssigneeInverseEdge>>>;
34296
+ pageInfo: PageInfo;
34297
+ };
34298
+ export declare type GraphStoreSimplifiedIssueHasAssigneeInverseEdge = {
34299
+ __typename?: 'GraphStoreSimplifiedIssueHasAssigneeInverseEdge';
34300
+ createdAt: Scalars['DateTime']['output'];
34301
+ cursor?: Maybe<Scalars['String']['output']>;
34302
+ id: Scalars['ID']['output'];
34303
+ lastUpdated: Scalars['DateTime']['output'];
34304
+ node?: Maybe<GraphStoreSimplifiedIssueHasAssigneeInverseUnion>;
34305
+ };
34306
+ export declare type GraphStoreSimplifiedIssueHasAssigneeInverseUnion = JiraIssue;
34052
34307
  export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
34053
34308
  __typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentConnection';
34054
34309
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentEdge>>>;
@@ -35631,6 +35886,21 @@ export declare type GraphStoreSimplifiedTeamWorksOnProjectEdge = {
35631
35886
  node?: Maybe<GraphStoreSimplifiedTeamWorksOnProjectUnion>;
35632
35887
  };
35633
35888
  export declare type GraphStoreSimplifiedTeamWorksOnProjectUnion = JiraProject;
35889
+ export declare type GraphStoreSimplifiedTestPerfhammerMaterializationAConnection = HasPageInfo & HasTotal & {
35890
+ __typename?: 'GraphStoreSimplifiedTestPerfhammerMaterializationAConnection';
35891
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTestPerfhammerMaterializationAEdge>>>;
35892
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
35893
+ pageInfo: PageInfo;
35894
+ totalCount?: Maybe<Scalars['Int']['output']>;
35895
+ };
35896
+ export declare type GraphStoreSimplifiedTestPerfhammerMaterializationAEdge = {
35897
+ __typename?: 'GraphStoreSimplifiedTestPerfhammerMaterializationAEdge';
35898
+ createdAt: Scalars['DateTime']['output'];
35899
+ cursor?: Maybe<Scalars['String']['output']>;
35900
+ id: Scalars['ID']['output'];
35901
+ lastUpdated: Scalars['DateTime']['output'];
35902
+ node?: Maybe<GraphStoreSimplifiedTestPerfhammerMaterializationAUnion>;
35903
+ };
35634
35904
  export declare type GraphStoreSimplifiedTestPerfhammerMaterializationAInverseConnection = HasPageInfo & HasTotal & {
35635
35905
  __typename?: 'GraphStoreSimplifiedTestPerfhammerMaterializationAInverseConnection';
35636
35906
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTestPerfhammerMaterializationAInverseEdge>>>;
@@ -35647,6 +35917,23 @@ export declare type GraphStoreSimplifiedTestPerfhammerMaterializationAInverseEdg
35647
35917
  node?: Maybe<GraphStoreSimplifiedTestPerfhammerMaterializationAInverseUnion>;
35648
35918
  };
35649
35919
  export declare type GraphStoreSimplifiedTestPerfhammerMaterializationAInverseUnion = DevOpsPullRequestDetails;
35920
+ export declare type GraphStoreSimplifiedTestPerfhammerMaterializationAUnion = ExternalCommit;
35921
+ export declare type GraphStoreSimplifiedTestPerfhammerMaterializationBInverseConnection = HasPageInfo & HasTotal & {
35922
+ __typename?: 'GraphStoreSimplifiedTestPerfhammerMaterializationBInverseConnection';
35923
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTestPerfhammerMaterializationBInverseEdge>>>;
35924
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
35925
+ pageInfo: PageInfo;
35926
+ totalCount?: Maybe<Scalars['Int']['output']>;
35927
+ };
35928
+ export declare type GraphStoreSimplifiedTestPerfhammerMaterializationBInverseEdge = {
35929
+ __typename?: 'GraphStoreSimplifiedTestPerfhammerMaterializationBInverseEdge';
35930
+ createdAt: Scalars['DateTime']['output'];
35931
+ cursor?: Maybe<Scalars['String']['output']>;
35932
+ id: Scalars['ID']['output'];
35933
+ lastUpdated: Scalars['DateTime']['output'];
35934
+ node?: Maybe<GraphStoreSimplifiedTestPerfhammerMaterializationBInverseUnion>;
35935
+ };
35936
+ export declare type GraphStoreSimplifiedTestPerfhammerMaterializationBInverseUnion = ExternalCommit;
35650
35937
  export declare type GraphStoreSimplifiedTestPerfhammerMaterializationInverseConnection = HasPageInfo & HasTotal & {
35651
35938
  __typename?: 'GraphStoreSimplifiedTestPerfhammerMaterializationInverseConnection';
35652
35939
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTestPerfhammerMaterializationInverseEdge>>>;
@@ -35725,6 +36012,21 @@ export declare type GraphStoreSimplifiedVersionAssociatedBuildInverseEdge = {
35725
36012
  node?: Maybe<GraphStoreSimplifiedVersionAssociatedBuildInverseUnion>;
35726
36013
  };
35727
36014
  export declare type GraphStoreSimplifiedVersionAssociatedBuildInverseUnion = JiraVersion;
36015
+ export declare type GraphStoreSimplifiedVersionAssociatedCommitConnection = HasPageInfo & HasTotal & {
36016
+ __typename?: 'GraphStoreSimplifiedVersionAssociatedCommitConnection';
36017
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedCommitEdge>>>;
36018
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
36019
+ pageInfo: PageInfo;
36020
+ totalCount?: Maybe<Scalars['Int']['output']>;
36021
+ };
36022
+ export declare type GraphStoreSimplifiedVersionAssociatedCommitEdge = {
36023
+ __typename?: 'GraphStoreSimplifiedVersionAssociatedCommitEdge';
36024
+ createdAt: Scalars['DateTime']['output'];
36025
+ cursor?: Maybe<Scalars['String']['output']>;
36026
+ id: Scalars['ID']['output'];
36027
+ lastUpdated: Scalars['DateTime']['output'];
36028
+ node?: Maybe<GraphStoreSimplifiedVersionAssociatedCommitUnion>;
36029
+ };
35728
36030
  export declare type GraphStoreSimplifiedVersionAssociatedCommitInverseConnection = HasPageInfo & HasTotal & {
35729
36031
  __typename?: 'GraphStoreSimplifiedVersionAssociatedCommitInverseConnection';
35730
36032
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedCommitInverseEdge>>>;
@@ -35741,6 +36043,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedCommitInverseEdge = {
35741
36043
  node?: Maybe<GraphStoreSimplifiedVersionAssociatedCommitInverseUnion>;
35742
36044
  };
35743
36045
  export declare type GraphStoreSimplifiedVersionAssociatedCommitInverseUnion = JiraVersion;
36046
+ export declare type GraphStoreSimplifiedVersionAssociatedCommitUnion = ExternalCommit;
35744
36047
  export declare type GraphStoreSimplifiedVersionAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
35745
36048
  __typename?: 'GraphStoreSimplifiedVersionAssociatedDeploymentConnection';
35746
36049
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedDeploymentEdge>>>;
@@ -36318,6 +36621,12 @@ export declare type GraphStoreTestPerfhammerMaterializationASortInput = {
36318
36621
  lastModified?: InputMaybe<GraphStoreSortInput>;
36319
36622
  toAti?: InputMaybe<GraphStoreSortInput>;
36320
36623
  };
36624
+ export declare type GraphStoreTestPerfhammerMaterializationBSortInput = {
36625
+ createdAt?: InputMaybe<GraphStoreSortInput>;
36626
+ fromAti?: InputMaybe<GraphStoreSortInput>;
36627
+ lastModified?: InputMaybe<GraphStoreSortInput>;
36628
+ toAti?: InputMaybe<GraphStoreSortInput>;
36629
+ };
36321
36630
  export declare type GraphStoreTestPerfhammerMaterializationSortInput = {
36322
36631
  createdAt?: InputMaybe<GraphStoreSortInput>;
36323
36632
  fromAti?: InputMaybe<GraphStoreSortInput>;
@@ -54807,7 +55116,8 @@ export declare type JsmChatWebAddConversationInteractionPayload = Payload & {
54807
55116
  success: Scalars['Boolean']['output'];
54808
55117
  };
54809
55118
  export declare enum JsmChatWebConversationActions {
54810
- CloseConversation = "CLOSE_CONVERSATION"
55119
+ CloseConversation = "CLOSE_CONVERSATION",
55120
+ RedirectToSearch = "REDIRECT_TO_SEARCH"
54811
55121
  }
54812
55122
  export declare type JsmChatWebConversationAppendixAction = JsmChatDropdownAppendix | JsmChatJiraFieldAppendix | JsmChatOptionAppendix;
54813
55123
  export declare enum JsmChatWebConversationMessageContentType {
@@ -69040,6 +69350,11 @@ export declare type ToolchainWorkspaceEdge = {
69040
69350
  cursor: Scalars['String']['output'];
69041
69351
  node?: Maybe<ToolchainWorkspace>;
69042
69352
  };
69353
+ export declare enum TownsquareAccessControlCapability {
69354
+ Access = "ACCESS",
69355
+ Administer = "ADMINISTER",
69356
+ Create = "CREATE"
69357
+ }
69043
69358
  export declare type TownsquareArchiveGoalInput = {
69044
69359
  id: Scalars['String']['input'];
69045
69360
  };
@@ -69047,6 +69362,15 @@ export declare type TownsquareArchiveGoalPayload = {
69047
69362
  __typename?: 'TownsquareArchiveGoalPayload';
69048
69363
  goal?: Maybe<TownsquareGoal>;
69049
69364
  };
69365
+ export declare type TownsquareCapability = {
69366
+ __typename?: 'TownsquareCapability';
69367
+ capability?: Maybe<TownsquareAccessControlCapability>;
69368
+ capabilityContainer?: Maybe<TownsquareCapabilityContainer>;
69369
+ };
69370
+ export declare enum TownsquareCapabilityContainer {
69371
+ GoalsApp = "GOALS_APP",
69372
+ ProjectsApp = "PROJECTS_APP"
69373
+ }
69050
69374
  export declare type TownsquareComment = Node & {
69051
69375
  __typename?: 'TownsquareComment';
69052
69376
  container?: Maybe<TownsquareCommentContainer>;
@@ -69383,6 +69707,7 @@ export declare enum TownsquareProjectStateValue {
69383
69707
  }
69384
69708
  export declare type TownsquareQueryApi = {
69385
69709
  __typename?: 'TownsquareQueryApi';
69710
+ allWorkspaceSummariesForOrg?: Maybe<TownsquareWorkspaceSummaryConnection>;
69386
69711
  allWorkspacesForOrg?: Maybe<TownsquareWorkspaceConnection>;
69387
69712
  commentsByAri?: Maybe<Array<Maybe<TownsquareComment>>>;
69388
69713
  goal?: Maybe<TownsquareGoal>;
@@ -69396,6 +69721,11 @@ export declare type TownsquareQueryApi = {
69396
69721
  projectTql?: Maybe<TownsquareProjectConnection>;
69397
69722
  projectsByAri?: Maybe<Array<Maybe<TownsquareProject>>>;
69398
69723
  };
69724
+ export declare type TownsquareQueryApiAllWorkspaceSummariesForOrgArgs = {
69725
+ after?: InputMaybe<Scalars['String']['input']>;
69726
+ cloudId: Scalars['String']['input'];
69727
+ first?: InputMaybe<Scalars['Int']['input']>;
69728
+ };
69399
69729
  export declare type TownsquareQueryApiAllWorkspacesForOrgArgs = {
69400
69730
  after?: InputMaybe<Scalars['String']['input']>;
69401
69731
  cloudId: Scalars['String']['input'];
@@ -69527,6 +69857,10 @@ export declare type TownsquareTeam = Node & {
69527
69857
  id: Scalars['ID']['output'];
69528
69858
  name?: Maybe<Scalars['String']['output']>;
69529
69859
  };
69860
+ export declare type TownsquareUserCapabilities = {
69861
+ __typename?: 'TownsquareUserCapabilities';
69862
+ capabilities?: Maybe<Array<Maybe<TownsquareCapability>>>;
69863
+ };
69530
69864
  export declare type TownsquareUserConnection = {
69531
69865
  __typename?: 'TownsquareUserConnection';
69532
69866
  count: Scalars['Int']['output'];
@@ -69547,6 +69881,24 @@ export declare type TownsquareWorkspaceEdge = {
69547
69881
  cursor: Scalars['String']['output'];
69548
69882
  node?: Maybe<TownsquareWorkspace>;
69549
69883
  };
69884
+ export declare type TownsquareWorkspaceSummary = {
69885
+ __typename?: 'TownsquareWorkspaceSummary';
69886
+ cloudId: Scalars['String']['output'];
69887
+ id: Scalars['ID']['output'];
69888
+ name: Scalars['String']['output'];
69889
+ userCapabilities?: Maybe<TownsquareUserCapabilities>;
69890
+ uuid: Scalars['String']['output'];
69891
+ };
69892
+ export declare type TownsquareWorkspaceSummaryConnection = {
69893
+ __typename?: 'TownsquareWorkspaceSummaryConnection';
69894
+ edges?: Maybe<Array<Maybe<TownsquareWorkspaceSummaryEdge>>>;
69895
+ pageInfo: PageInfo;
69896
+ };
69897
+ export declare type TownsquareWorkspaceSummaryEdge = {
69898
+ __typename?: 'TownsquareWorkspaceSummaryEdge';
69899
+ cursor: Scalars['String']['output'];
69900
+ node?: Maybe<TownsquareWorkspaceSummary>;
69901
+ };
69550
69902
  export declare type TransitionFilter = {
69551
69903
  from: Scalars['String']['input'];
69552
69904
  to: Scalars['String']['input'];