@forge/cli-shared 6.4.0-next.10 → 6.4.0-next.12

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.
@@ -1307,6 +1307,35 @@ export declare type AppStorageMutationDeleteAppStoredEntityArgs = {
1307
1307
  export declare type AppStorageMutationSetAppStoredEntityArgs = {
1308
1308
  input: SetAppStoredEntityMutationInput;
1309
1309
  };
1310
+ export declare type AppStorageSqlDatabaseColumn = {
1311
+ __typename?: 'AppStorageSqlDatabaseColumn';
1312
+ default: Scalars['String']['output'];
1313
+ extra: Scalars['String']['output'];
1314
+ field: Scalars['String']['output'];
1315
+ key: Scalars['String']['output'];
1316
+ null: Scalars['String']['output'];
1317
+ type: Scalars['String']['output'];
1318
+ };
1319
+ export declare type AppStorageSqlDatabaseInput = {
1320
+ installationId: Scalars['ID']['input'];
1321
+ };
1322
+ export declare type AppStorageSqlDatabaseMigration = {
1323
+ __typename?: 'AppStorageSqlDatabaseMigration';
1324
+ id: Scalars['Int']['output'];
1325
+ migratedAt: Scalars['String']['output'];
1326
+ name: Scalars['String']['output'];
1327
+ };
1328
+ export declare type AppStorageSqlDatabasePayload = {
1329
+ __typename?: 'AppStorageSqlDatabasePayload';
1330
+ databaseSize: Scalars['Int']['output'];
1331
+ migrations: Array<Maybe<AppStorageSqlDatabaseMigration>>;
1332
+ tables: Array<Maybe<AppStorageSqlDatabaseTable>>;
1333
+ };
1334
+ export declare type AppStorageSqlDatabaseTable = {
1335
+ __typename?: 'AppStorageSqlDatabaseTable';
1336
+ columns: Array<AppStorageSqlDatabaseColumn>;
1337
+ name: Scalars['String']['output'];
1338
+ };
1310
1339
  export declare type AppStoredCustomEntity = {
1311
1340
  __typename?: 'AppStoredCustomEntity';
1312
1341
  entityName: Scalars['String']['output'];
@@ -1954,9 +1983,21 @@ export declare type BasicBoardFeatureView = Node & {
1954
1983
  status?: Maybe<Scalars['String']['output']>;
1955
1984
  title?: Maybe<Scalars['String']['output']>;
1956
1985
  };
1986
+ export declare type BitbucketPrAuthor = {
1987
+ __typename?: 'BitbucketPRAuthor';
1988
+ authorAccountId?: Maybe<Scalars['String']['output']>;
1989
+ };
1957
1990
  export declare enum BitbucketPermission {
1958
1991
  Admin = "ADMIN"
1959
1992
  }
1993
+ export declare type BitbucketPullRequest = Node & {
1994
+ __typename?: 'BitbucketPullRequest';
1995
+ author?: Maybe<BitbucketPrAuthor>;
1996
+ createdDate?: Maybe<Scalars['DateTime']['output']>;
1997
+ id: Scalars['ID']['output'];
1998
+ state?: Maybe<Scalars['String']['output']>;
1999
+ title: Scalars['String']['output'];
2000
+ };
1960
2001
  export declare type BitbucketQuery = {
1961
2002
  __typename?: 'BitbucketQuery';
1962
2003
  bitbucketRepositories?: Maybe<Array<Maybe<BitbucketRepository>>>;
@@ -16687,6 +16728,10 @@ export declare enum CustomerServiceCustomDetailsEntityType {
16687
16728
  Organization = "ORGANIZATION"
16688
16729
  }
16689
16730
  export declare type CustomerServiceCustomDetailsQueryResult = CustomerServiceCustomDetails | QueryError;
16731
+ export declare type CustomerServiceDefaultRoutingRuleInput = {
16732
+ issueTypeId: Scalars['String']['input'];
16733
+ projectId: Scalars['ID']['input'];
16734
+ };
16690
16735
  export declare type CustomerServiceEntitledEntity = CustomerServiceIndividual | CustomerServiceOrganization;
16691
16736
  export declare type CustomerServiceEntitlement = Node & {
16692
16737
  __typename?: 'CustomerServiceEntitlement';
@@ -16794,12 +16839,14 @@ export declare type CustomerServiceMutationApi = {
16794
16839
  createOrganization?: Maybe<CustomerServiceOrganizationCreatePayload>;
16795
16840
  createOrganizationAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
16796
16841
  createProduct?: Maybe<CustomerServiceProductCreatePayload>;
16842
+ createTemplateForm?: Maybe<CustomerServiceTemplateFormCreatePayload>;
16797
16843
  deleteCustomDetail?: Maybe<CustomerServiceCustomDetailDeletePayload>;
16798
16844
  deleteIndividualAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
16799
16845
  deleteNote?: Maybe<CustomerServiceNoteDeletePayload>;
16800
16846
  deleteOrganization?: Maybe<CustomerServiceOrganizationDeletePayload>;
16801
16847
  deleteOrganizationAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
16802
16848
  deleteProduct?: Maybe<CustomerServiceProductDeletePayload>;
16849
+ deleteTemplateForm?: Maybe<CustomerServiceTemplateFormDeletePayload>;
16803
16850
  removeEntitlement?: Maybe<CustomerServiceEntitlementRemovePayload>;
16804
16851
  updateCustomDetail?: Maybe<CustomerServiceCustomDetailUpdatePayload>;
16805
16852
  updateCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadataUpdatePayload>;
@@ -16818,6 +16865,7 @@ export declare type CustomerServiceMutationApi = {
16818
16865
  updateOrganizationAttributeValue?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
16819
16866
  updateOrganizationAttributeValueByName?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
16820
16867
  updateProduct?: Maybe<CustomerServiceProductUpdatePayload>;
16868
+ updateTemplateForm?: Maybe<CustomerServiceTemplateFormUpdatePayload>;
16821
16869
  };
16822
16870
  export declare type CustomerServiceMutationApiAddEntitlementArgs = {
16823
16871
  input: CustomerServiceEntitlementAddInput;
@@ -16840,6 +16888,9 @@ export declare type CustomerServiceMutationApiCreateOrganizationAttributeArgs =
16840
16888
  export declare type CustomerServiceMutationApiCreateProductArgs = {
16841
16889
  input: CustomerServiceProductCreateInput;
16842
16890
  };
16891
+ export declare type CustomerServiceMutationApiCreateTemplateFormArgs = {
16892
+ input: CustomerServiceTemplateFormCreateInput;
16893
+ };
16843
16894
  export declare type CustomerServiceMutationApiDeleteCustomDetailArgs = {
16844
16895
  input: CustomerServiceCustomDetailDeleteInput;
16845
16896
  };
@@ -16858,6 +16909,9 @@ export declare type CustomerServiceMutationApiDeleteOrganizationAttributeArgs =
16858
16909
  export declare type CustomerServiceMutationApiDeleteProductArgs = {
16859
16910
  input: CustomerServiceProductDeleteInput;
16860
16911
  };
16912
+ export declare type CustomerServiceMutationApiDeleteTemplateFormArgs = {
16913
+ input: CustomerServiceTemplateFormDeleteInput;
16914
+ };
16861
16915
  export declare type CustomerServiceMutationApiRemoveEntitlementArgs = {
16862
16916
  input: CustomerServiceEntitlementRemoveInput;
16863
16917
  };
@@ -16912,6 +16966,11 @@ export declare type CustomerServiceMutationApiUpdateOrganizationAttributeValueBy
16912
16966
  export declare type CustomerServiceMutationApiUpdateProductArgs = {
16913
16967
  input: CustomerServiceProductUpdateInput;
16914
16968
  };
16969
+ export declare type CustomerServiceMutationApiUpdateTemplateFormArgs = {
16970
+ helpCenterId: Scalars['ID']['input'];
16971
+ input: CustomerServiceTemplateFormUpdateInput;
16972
+ templateFormId: Scalars['ID']['input'];
16973
+ };
16915
16974
  export declare type CustomerServiceNote = {
16916
16975
  __typename?: 'CustomerServiceNote';
16917
16976
  author: CustomerServiceNoteAuthor;
@@ -17124,6 +17183,7 @@ export declare type CustomerServiceQueryApi = {
17124
17183
  productConnections?: Maybe<CustomerServiceProductConnection>;
17125
17184
  products?: Maybe<CustomerServiceProductQueryResult>;
17126
17185
  templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
17186
+ templateForms?: Maybe<CustomerServiceTemplateFormConnection>;
17127
17187
  };
17128
17188
  export declare type CustomerServiceQueryApiCustomDetailsByEntityTypeArgs = {
17129
17189
  customDetailsEntityType: CustomerServiceCustomDetailsEntityType;
@@ -17154,6 +17214,11 @@ export declare type CustomerServiceQueryApiTemplateFormByIdArgs = {
17154
17214
  helpCenterId: Scalars['ID']['input'];
17155
17215
  templateFormId: Scalars['ID']['input'];
17156
17216
  };
17217
+ export declare type CustomerServiceQueryApiTemplateFormsArgs = {
17218
+ after?: InputMaybe<Scalars['String']['input']>;
17219
+ first?: InputMaybe<Scalars['Int']['input']>;
17220
+ helpCenterId: Scalars['ID']['input'];
17221
+ };
17157
17222
  export declare type CustomerServiceRoutingRule = {
17158
17223
  __typename?: 'CustomerServiceRoutingRule';
17159
17224
  id: Scalars['ID']['output'];
@@ -17176,7 +17241,47 @@ export declare type CustomerServiceTemplateForm = Node & {
17176
17241
  id: Scalars['ID']['output'];
17177
17242
  name?: Maybe<Scalars['String']['output']>;
17178
17243
  };
17244
+ export declare type CustomerServiceTemplateFormConnection = {
17245
+ __typename?: 'CustomerServiceTemplateFormConnection';
17246
+ edges: Array<CustomerServiceTemplateFormEdge>;
17247
+ pageInfo: PageInfo;
17248
+ };
17249
+ export declare type CustomerServiceTemplateFormCreateInput = {
17250
+ defaultRoutingRule?: InputMaybe<CustomerServiceDefaultRoutingRuleInput>;
17251
+ helpCenterId: Scalars['ID']['input'];
17252
+ name: Scalars['String']['input'];
17253
+ };
17254
+ export declare type CustomerServiceTemplateFormCreatePayload = Payload & {
17255
+ __typename?: 'CustomerServiceTemplateFormCreatePayload';
17256
+ errors?: Maybe<Array<MutationError>>;
17257
+ success: Scalars['Boolean']['output'];
17258
+ successfullyCreatedTemplateForm?: Maybe<CustomerServiceTemplateFormEdge>;
17259
+ };
17260
+ export declare type CustomerServiceTemplateFormDeleteInput = {
17261
+ helpCenterId: Scalars['ID']['input'];
17262
+ templateFormId: Scalars['ID']['input'];
17263
+ };
17264
+ export declare type CustomerServiceTemplateFormDeletePayload = Payload & {
17265
+ __typename?: 'CustomerServiceTemplateFormDeletePayload';
17266
+ errors?: Maybe<Array<MutationError>>;
17267
+ success: Scalars['Boolean']['output'];
17268
+ };
17269
+ export declare type CustomerServiceTemplateFormEdge = {
17270
+ __typename?: 'CustomerServiceTemplateFormEdge';
17271
+ cursor: Scalars['String']['output'];
17272
+ node?: Maybe<CustomerServiceTemplateForm>;
17273
+ };
17179
17274
  export declare type CustomerServiceTemplateFormQueryResult = CustomerServiceTemplateForm | QueryError;
17275
+ export declare type CustomerServiceTemplateFormUpdateInput = {
17276
+ defaultRoutingRule?: InputMaybe<CustomerServiceDefaultRoutingRuleInput>;
17277
+ name?: InputMaybe<Scalars['String']['input']>;
17278
+ };
17279
+ export declare type CustomerServiceTemplateFormUpdatePayload = Payload & {
17280
+ __typename?: 'CustomerServiceTemplateFormUpdatePayload';
17281
+ errors?: Maybe<Array<MutationError>>;
17282
+ success: Scalars['Boolean']['output'];
17283
+ successfullyCreatedTemplateForm?: Maybe<CustomerServiceTemplateFormEdge>;
17284
+ };
17180
17285
  export declare type CustomerServiceUpdateCustomDetailContextConfigsPayload = Payload & {
17181
17286
  __typename?: 'CustomerServiceUpdateCustomDetailContextConfigsPayload';
17182
17287
  errors?: Maybe<Array<MutationError>>;
@@ -19697,6 +19802,7 @@ export declare type EcosystemConnectInstallation = {
19697
19802
  export declare type EcosystemConnectInstallationLicense = {
19698
19803
  __typename?: 'EcosystemConnectInstallationLicense';
19699
19804
  active?: Maybe<Scalars['Boolean']['output']>;
19805
+ capabilitySet?: Maybe<CapabilitySet>;
19700
19806
  ccpEntitlementId?: Maybe<Scalars['String']['output']>;
19701
19807
  ccpEntitlementSlug?: Maybe<Scalars['String']['output']>;
19702
19808
  isEvaluation?: Maybe<Scalars['Boolean']['output']>;
@@ -25367,6 +25473,7 @@ export declare type GraphStore = {
25367
25473
  atlasGoalHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection>;
25368
25474
  atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
25369
25475
  atlasGoalHasSubAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection>;
25476
+ atlasHomeFeed: GraphStoreAtlasHomeQueryConnection;
25370
25477
  atlasProjectContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection>;
25371
25478
  atlasProjectContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseConnection>;
25372
25479
  atlasProjectContributesToAtlasGoalInverseRelationship?: Maybe<GraphStoreFullAtlasProjectContributesToAtlasGoalConnection>;
@@ -25716,11 +25823,15 @@ export declare type GraphStore = {
25716
25823
  testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
25717
25824
  userAuthoredPr?: Maybe<GraphStoreSimplifiedUserAuthoredPrConnection>;
25718
25825
  userAuthoredPrInverse?: Maybe<GraphStoreSimplifiedUserAuthoredPrInverseConnection>;
25826
+ userCreatedConfluencePage?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageConnection>;
25827
+ userCreatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection>;
25719
25828
  userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
25720
25829
  userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
25721
25830
  userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
25722
25831
  userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
25723
25832
  userOwnsComponentInverse?: Maybe<GraphStoreSimplifiedUserOwnsComponentInverseConnection>;
25833
+ userReportsIssue?: Maybe<GraphStoreSimplifiedUserReportsIssueConnection>;
25834
+ userReportsIssueInverse?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseConnection>;
25724
25835
  userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
25725
25836
  userReviewsPrInverse?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseConnection>;
25726
25837
  versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
@@ -25834,6 +25945,10 @@ export declare type GraphStoreAtlasGoalHasSubAtlasGoalInverseArgs = {
25834
25945
  id: Scalars['ID']['input'];
25835
25946
  sort?: InputMaybe<GraphStoreAtlasGoalHasSubAtlasGoalSortInput>;
25836
25947
  };
25948
+ export declare type GraphStoreAtlasHomeFeedArgs = {
25949
+ organizationId: Scalars['ID']['input'];
25950
+ userId: Scalars['ID']['input'];
25951
+ };
25837
25952
  export declare type GraphStoreAtlasProjectContributesToAtlasGoalArgs = {
25838
25953
  after?: InputMaybe<Scalars['String']['input']>;
25839
25954
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -28033,6 +28148,20 @@ export declare type GraphStoreUserAuthoredPrInverseArgs = {
28033
28148
  id: Scalars['ID']['input'];
28034
28149
  sort?: InputMaybe<GraphStoreUserAuthoredPrSortInput>;
28035
28150
  };
28151
+ export declare type GraphStoreUserCreatedConfluencePageArgs = {
28152
+ after?: InputMaybe<Scalars['String']['input']>;
28153
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
28154
+ first?: InputMaybe<Scalars['Int']['input']>;
28155
+ id: Scalars['ID']['input'];
28156
+ sort?: InputMaybe<GraphStoreUserCreatedConfluencePageSortInput>;
28157
+ };
28158
+ export declare type GraphStoreUserCreatedConfluencePageInverseArgs = {
28159
+ after?: InputMaybe<Scalars['String']['input']>;
28160
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
28161
+ first?: InputMaybe<Scalars['Int']['input']>;
28162
+ id: Scalars['ID']['input'];
28163
+ sort?: InputMaybe<GraphStoreUserCreatedConfluencePageSortInput>;
28164
+ };
28036
28165
  export declare type GraphStoreUserHasTopProjectArgs = {
28037
28166
  after?: InputMaybe<Scalars['String']['input']>;
28038
28167
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -28068,6 +28197,20 @@ export declare type GraphStoreUserOwnsComponentInverseArgs = {
28068
28197
  id: Scalars['ID']['input'];
28069
28198
  sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
28070
28199
  };
28200
+ export declare type GraphStoreUserReportsIssueArgs = {
28201
+ after?: InputMaybe<Scalars['String']['input']>;
28202
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
28203
+ first?: InputMaybe<Scalars['Int']['input']>;
28204
+ id: Scalars['ID']['input'];
28205
+ sort?: InputMaybe<GraphStoreUserReportsIssueSortInput>;
28206
+ };
28207
+ export declare type GraphStoreUserReportsIssueInverseArgs = {
28208
+ after?: InputMaybe<Scalars['String']['input']>;
28209
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
28210
+ first?: InputMaybe<Scalars['Int']['input']>;
28211
+ id: Scalars['ID']['input'];
28212
+ sort?: InputMaybe<GraphStoreUserReportsIssueSortInput>;
28213
+ };
28071
28214
  export declare type GraphStoreUserReviewsPrArgs = {
28072
28215
  after?: InputMaybe<Scalars['String']['input']>;
28073
28216
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -28373,6 +28516,11 @@ export declare type GraphStoreAtlasGoalHasOwnerSortInput = {
28373
28516
  export declare type GraphStoreAtlasGoalHasSubAtlasGoalSortInput = {
28374
28517
  lastModified?: InputMaybe<GraphStoreSortInput>;
28375
28518
  };
28519
+ export declare type GraphStoreAtlasHomeQueryConnection = {
28520
+ __typename?: 'GraphStoreAtlasHomeQueryConnection';
28521
+ edges?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
28522
+ pageInfo: PageInfo;
28523
+ };
28376
28524
  export declare type GraphStoreAtlasProjectContributesToAtlasGoalSortInput = {
28377
28525
  lastModified?: InputMaybe<GraphStoreSortInput>;
28378
28526
  };
@@ -29447,7 +29595,7 @@ export declare type GraphStoreCypherQueryToNode = {
29447
29595
  data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
29448
29596
  id: Scalars['ID']['output'];
29449
29597
  };
29450
- export declare type GraphStoreCypherQueryToNodeUnion = JiraIssue;
29598
+ export declare type GraphStoreCypherQueryToNodeUnion = ConfluencePage | JiraIssue;
29451
29599
  export declare type GraphStoreDateFilterInput = {
29452
29600
  after?: InputMaybe<Scalars['DateTime']['input']>;
29453
29601
  before?: InputMaybe<Scalars['DateTime']['input']>;
@@ -36766,6 +36914,34 @@ export declare type GraphStoreSimplifiedUserAuthoredPrInverseEdge = {
36766
36914
  };
36767
36915
  export declare type GraphStoreSimplifiedUserAuthoredPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
36768
36916
  export declare type GraphStoreSimplifiedUserAuthoredPrUnion = DevOpsPullRequestDetails;
36917
+ export declare type GraphStoreSimplifiedUserCreatedConfluencePageConnection = HasPageInfo & {
36918
+ __typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageConnection';
36919
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluencePageEdge>>>;
36920
+ pageInfo: PageInfo;
36921
+ };
36922
+ export declare type GraphStoreSimplifiedUserCreatedConfluencePageEdge = {
36923
+ __typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageEdge';
36924
+ createdAt: Scalars['DateTime']['output'];
36925
+ cursor?: Maybe<Scalars['String']['output']>;
36926
+ id: Scalars['ID']['output'];
36927
+ lastUpdated: Scalars['DateTime']['output'];
36928
+ node?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageUnion>;
36929
+ };
36930
+ export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection = HasPageInfo & {
36931
+ __typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection';
36932
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseEdge>>>;
36933
+ pageInfo: PageInfo;
36934
+ };
36935
+ export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseEdge = {
36936
+ __typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageInverseEdge';
36937
+ createdAt: Scalars['DateTime']['output'];
36938
+ cursor?: Maybe<Scalars['String']['output']>;
36939
+ id: Scalars['ID']['output'];
36940
+ lastUpdated: Scalars['DateTime']['output'];
36941
+ node?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseUnion>;
36942
+ };
36943
+ export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
36944
+ export declare type GraphStoreSimplifiedUserCreatedConfluencePageUnion = ConfluencePage;
36769
36945
  export declare type GraphStoreSimplifiedUserHasTopProjectConnection = HasPageInfo & {
36770
36946
  __typename?: 'GraphStoreSimplifiedUserHasTopProjectConnection';
36771
36947
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasTopProjectEdge>>>;
@@ -36840,6 +37016,34 @@ export declare type GraphStoreSimplifiedUserOwnsComponentInverseEdge = {
36840
37016
  };
36841
37017
  export declare type GraphStoreSimplifiedUserOwnsComponentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
36842
37018
  export declare type GraphStoreSimplifiedUserOwnsComponentUnion = CompassComponent;
37019
+ export declare type GraphStoreSimplifiedUserReportsIssueConnection = HasPageInfo & {
37020
+ __typename?: 'GraphStoreSimplifiedUserReportsIssueConnection';
37021
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReportsIssueEdge>>>;
37022
+ pageInfo: PageInfo;
37023
+ };
37024
+ export declare type GraphStoreSimplifiedUserReportsIssueEdge = {
37025
+ __typename?: 'GraphStoreSimplifiedUserReportsIssueEdge';
37026
+ createdAt: Scalars['DateTime']['output'];
37027
+ cursor?: Maybe<Scalars['String']['output']>;
37028
+ id: Scalars['ID']['output'];
37029
+ lastUpdated: Scalars['DateTime']['output'];
37030
+ node?: Maybe<GraphStoreSimplifiedUserReportsIssueUnion>;
37031
+ };
37032
+ export declare type GraphStoreSimplifiedUserReportsIssueInverseConnection = HasPageInfo & {
37033
+ __typename?: 'GraphStoreSimplifiedUserReportsIssueInverseConnection';
37034
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReportsIssueInverseEdge>>>;
37035
+ pageInfo: PageInfo;
37036
+ };
37037
+ export declare type GraphStoreSimplifiedUserReportsIssueInverseEdge = {
37038
+ __typename?: 'GraphStoreSimplifiedUserReportsIssueInverseEdge';
37039
+ createdAt: Scalars['DateTime']['output'];
37040
+ cursor?: Maybe<Scalars['String']['output']>;
37041
+ id: Scalars['ID']['output'];
37042
+ lastUpdated: Scalars['DateTime']['output'];
37043
+ node?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseUnion>;
37044
+ };
37045
+ export declare type GraphStoreSimplifiedUserReportsIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
37046
+ export declare type GraphStoreSimplifiedUserReportsIssueUnion = JiraIssue;
36843
37047
  export declare type GraphStoreSimplifiedUserReviewsPrConnection = HasPageInfo & {
36844
37048
  __typename?: 'GraphStoreSimplifiedUserReviewsPrConnection';
36845
37049
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReviewsPrEdge>>>;
@@ -37527,6 +37731,9 @@ export declare type GraphStoreTestPerfhammerRelationshipSortInput = {
37527
37731
  export declare type GraphStoreUserAuthoredPrSortInput = {
37528
37732
  lastModified?: InputMaybe<GraphStoreSortInput>;
37529
37733
  };
37734
+ export declare type GraphStoreUserCreatedConfluencePageSortInput = {
37735
+ lastModified?: InputMaybe<GraphStoreSortInput>;
37736
+ };
37530
37737
  export declare type GraphStoreUserHasTopProjectSortInput = {
37531
37738
  lastModified?: InputMaybe<GraphStoreSortInput>;
37532
37739
  };
@@ -37539,6 +37746,9 @@ export declare type GraphStoreUserOwnsComponentSortInput = {
37539
37746
  lastModified?: InputMaybe<GraphStoreSortInput>;
37540
37747
  toAti?: InputMaybe<GraphStoreSortInput>;
37541
37748
  };
37749
+ export declare type GraphStoreUserReportsIssueSortInput = {
37750
+ lastModified?: InputMaybe<GraphStoreSortInput>;
37751
+ };
37542
37752
  export declare type GraphStoreUserReviewsPrSortInput = {
37543
37753
  lastModified?: InputMaybe<GraphStoreSortInput>;
37544
37754
  };
@@ -43314,6 +43524,7 @@ export declare type JiraDetailedView = JiraIssueSearchViewType & JiraView & Node
43314
43524
  export declare type JiraDetailedViewIssuesArgs = {
43315
43525
  after?: InputMaybe<Scalars['String']['input']>;
43316
43526
  before?: InputMaybe<Scalars['String']['input']>;
43527
+ fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
43317
43528
  first?: InputMaybe<Scalars['Int']['input']>;
43318
43529
  issueSearchInput: JiraIssueSearchInput;
43319
43530
  last?: InputMaybe<Scalars['Int']['input']>;
@@ -44816,6 +45027,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
44816
45027
  fields?: Maybe<JiraIssueFieldConnection>;
44817
45028
  fieldsById?: Maybe<JiraIssueFieldConnection>;
44818
45029
  fieldsByIdOrAlias?: Maybe<Array<Maybe<JiraIssueField>>>;
45030
+ groupsByFieldId?: Maybe<JiraSpreadsheetGroupConnection>;
44819
45031
  hasChildren?: Maybe<Scalars['Boolean']['output']>;
44820
45032
  hasCustomisedContentPanels?: Maybe<Scalars['Boolean']['output']>;
44821
45033
  hasProjectPermission?: Maybe<Scalars['Boolean']['output']>;
@@ -44969,6 +45181,15 @@ export declare type JiraIssueFieldsByIdOrAliasArgs = {
44969
45181
  idsOrAliases: Array<InputMaybe<Scalars['String']['input']>>;
44970
45182
  ignoreMissingFields?: InputMaybe<Scalars['Boolean']['input']>;
44971
45183
  };
45184
+ export declare type JiraIssueGroupsByFieldIdArgs = {
45185
+ after?: InputMaybe<Scalars['String']['input']>;
45186
+ before?: InputMaybe<Scalars['String']['input']>;
45187
+ fieldId: Scalars['String']['input'];
45188
+ first?: InputMaybe<Scalars['Int']['input']>;
45189
+ firstNGroupsToSearch?: InputMaybe<Scalars['Int']['input']>;
45190
+ issueSearchInput: JiraIssueSearchInput;
45191
+ last?: InputMaybe<Scalars['Int']['input']>;
45192
+ };
44972
45193
  export declare type JiraIssueHasChildrenArgs = {
44973
45194
  filterByProjectKeys?: InputMaybe<Array<Scalars['String']['input']>>;
44974
45195
  };
@@ -53112,6 +53333,8 @@ export declare type JiraSoftwareProjectNavigationMetadata = {
53112
53333
  };
53113
53334
  export declare type JiraSpreadsheetGroup = {
53114
53335
  __typename?: 'JiraSpreadsheetGroup';
53336
+ afterGroupId?: Maybe<Scalars['String']['output']>;
53337
+ beforeGroupId?: Maybe<Scalars['String']['output']>;
53115
53338
  fieldId?: Maybe<Scalars['String']['output']>;
53116
53339
  fieldType?: Maybe<Scalars['String']['output']>;
53117
53340
  fieldValue?: Maybe<JiraJqlFieldValue>;
@@ -53153,6 +53376,7 @@ export declare type JiraSpreadsheetGroupConnection = {
53153
53376
  edges?: Maybe<Array<Maybe<JiraSpreadsheetGroupEdge>>>;
53154
53377
  errors?: Maybe<Array<QueryError>>;
53155
53378
  firstGroup?: Maybe<JiraSpreadsheetGroup>;
53379
+ jql?: Maybe<Scalars['String']['output']>;
53156
53380
  pageInfo: PageInfo;
53157
53381
  totalCount?: Maybe<Scalars['Int']['output']>;
53158
53382
  };
@@ -59235,6 +59459,7 @@ export declare type MercuryFocusArea = Node & {
59235
59459
  headcountAggregation?: Maybe<MercuryHeadcountAggregation>;
59236
59460
  health?: Maybe<MercuryFocusAreaHealth>;
59237
59461
  id: Scalars['ID']['output'];
59462
+ linkedGoalSummary?: Maybe<MercuryFocusAreaLinkedGoalSummary>;
59238
59463
  linkedWorkSummary?: Maybe<MercuryFocusAreaLinkedWorkSummary>;
59239
59464
  name: Scalars['String']['output'];
59240
59465
  owner?: Maybe<User>;
@@ -59357,9 +59582,15 @@ export declare type MercuryFocusAreaLink = Node & {
59357
59582
  id: Scalars['ID']['output'];
59358
59583
  parentFocusAreaId: Scalars['String']['output'];
59359
59584
  };
59585
+ export declare type MercuryFocusAreaLinkedGoalSummary = {
59586
+ __typename?: 'MercuryFocusAreaLinkedGoalSummary';
59587
+ count: Scalars['Int']['output'];
59588
+ countIncludingSubFocusAreas?: Maybe<Scalars['Int']['output']>;
59589
+ };
59360
59590
  export declare type MercuryFocusAreaLinkedWorkSummary = {
59361
59591
  __typename?: 'MercuryFocusAreaLinkedWorkSummary';
59362
59592
  count: Scalars['Int']['output'];
59593
+ countIncludingSubFocusAreas?: Maybe<Scalars['Int']['output']>;
59363
59594
  };
59364
59595
  export declare type MercuryFocusAreaLinks = {
59365
59596
  __typename?: 'MercuryFocusAreaLinks';
@@ -59741,6 +59972,7 @@ export declare type MercuryPortfolio = Node & {
59741
59972
  ari: Scalars['String']['output'];
59742
59973
  funding?: Maybe<MercuryPortfolioFunding>;
59743
59974
  id: Scalars['ID']['output'];
59975
+ label?: Maybe<Scalars['String']['output']>;
59744
59976
  linkedFocusAreaGoalCount: Scalars['Int']['output'];
59745
59977
  linkedFocusAreaSummary?: Maybe<MercuryPortfolioFocusAreaSummary>;
59746
59978
  name: Scalars['String']['output'];
@@ -62127,6 +62359,7 @@ export declare type PeapProgram = {
62127
62359
  __typename?: 'PEAPProgram';
62128
62360
  activatedAt?: Maybe<Scalars['Date']['output']>;
62129
62361
  cdacCategory?: Maybe<Scalars['Int']['output']>;
62362
+ cdacCategoryURL?: Maybe<Scalars['String']['output']>;
62130
62363
  changeTicket?: Maybe<Scalars['String']['output']>;
62131
62364
  completedAt?: Maybe<Scalars['Date']['output']>;
62132
62365
  createdAt: Scalars['Date']['output'];
@@ -62171,6 +62404,8 @@ export declare type PeapProgramEnrollmentQueryJiraArgs = {
62171
62404
  export declare type PeapProgramInternalData = {
62172
62405
  __typename?: 'PEAPProgramInternalData';
62173
62406
  cdacGroup?: Maybe<Scalars['String']['output']>;
62407
+ cdacGroupURL?: Maybe<Scalars['String']['output']>;
62408
+ changeTicketURL?: Maybe<Scalars['String']['output']>;
62174
62409
  owner?: Maybe<User>;
62175
62410
  };
62176
62411
  export declare type PeapProgramMutationResponse = Payload & {
@@ -63304,6 +63539,7 @@ export declare type Query = {
63304
63539
  appLogs?: Maybe<AppLogConnection>;
63305
63540
  appLogsWithMetaData?: Maybe<AppLogsWithMetaDataResponse>;
63306
63541
  appRecommendations?: Maybe<AppRecQuery>;
63542
+ appStorage_sqlDatabase?: Maybe<AppStorageSqlDatabasePayload>;
63307
63543
  appStoredCustomEntities?: Maybe<AppStoredCustomEntityConnection>;
63308
63544
  appStoredCustomEntity?: Maybe<AppStoredCustomEntity>;
63309
63545
  appStoredEntities?: Maybe<AppStoredEntityConnection>;
@@ -63657,6 +63893,7 @@ export declare type Query = {
63657
63893
  productListing?: Maybe<ProductListingResult>;
63658
63894
  productListings: Array<ProductListingResult>;
63659
63895
  radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
63896
+ radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
63660
63897
  radar_positions?: Maybe<RadarPositionConnection>;
63661
63898
  radar_workspace: RadarWorkspace;
63662
63899
  releaseNote?: Maybe<ContentPlatformReleaseNote>;
@@ -63752,6 +63989,9 @@ export declare type QueryAppLogsWithMetaDataArgs = {
63752
63989
  query?: InputMaybe<LogQueryInput>;
63753
63990
  queryStartTime: Scalars['String']['input'];
63754
63991
  };
63992
+ export declare type QueryAppStorage_SqlDatabaseArgs = {
63993
+ input?: InputMaybe<AppStorageSqlDatabaseInput>;
63994
+ };
63755
63995
  export declare type QueryAppStoredCustomEntitiesArgs = {
63756
63996
  contextAri: Scalars['ID']['input'];
63757
63997
  cursor?: InputMaybe<Scalars['String']['input']>;
@@ -65071,6 +65311,15 @@ export declare type QueryRadar_FieldValuesArgs = {
65071
65311
  rql?: InputMaybe<Scalars['String']['input']>;
65072
65312
  uniqueFieldId: Scalars['ID']['input'];
65073
65313
  };
65314
+ export declare type QueryRadar_GroupMetricsArgs = {
65315
+ after?: InputMaybe<Scalars['String']['input']>;
65316
+ before?: InputMaybe<Scalars['String']['input']>;
65317
+ cloudId: Scalars['ID']['input'];
65318
+ first?: InputMaybe<Scalars['Int']['input']>;
65319
+ last?: InputMaybe<Scalars['Int']['input']>;
65320
+ rql?: InputMaybe<Scalars['String']['input']>;
65321
+ uniqueFieldIdIsIn: Array<Scalars['ID']['input']>;
65322
+ };
65074
65323
  export declare type QueryRadar_PositionsArgs = {
65075
65324
  after?: InputMaybe<Scalars['String']['input']>;
65076
65325
  before?: InputMaybe<Scalars['String']['input']>;
@@ -65307,6 +65556,25 @@ export declare type RadarFocusAreaMappingsInput = {
65307
65556
  focusAreaAri: Scalars['ID']['input'];
65308
65557
  positionId: Scalars['ID']['input'];
65309
65558
  };
65559
+ export declare type RadarGroupMetrics = {
65560
+ __typename?: 'RadarGroupMetrics';
65561
+ count: Scalars['Int']['output'];
65562
+ field: RadarFieldValueIdPair;
65563
+ subGroups: Array<RadarGroupMetrics>;
65564
+ };
65565
+ export declare type RadarGroupMetricsConnection = RadarConnection & {
65566
+ __typename?: 'RadarGroupMetricsConnection';
65567
+ edges?: Maybe<Array<RadarGroupMetricsEdge>>;
65568
+ nodes?: Maybe<Array<RadarGroupMetrics>>;
65569
+ pageInfo: PageInfo;
65570
+ rowCount: Scalars['Int']['output'];
65571
+ totalCount: Scalars['Int']['output'];
65572
+ };
65573
+ export declare type RadarGroupMetricsEdge = RadarEdge & {
65574
+ __typename?: 'RadarGroupMetricsEdge';
65575
+ cursor: Scalars['String']['output'];
65576
+ node: RadarGroupMetrics;
65577
+ };
65310
65578
  export declare type RadarMutationResponse = {
65311
65579
  __typename?: 'RadarMutationResponse';
65312
65580
  success?: Maybe<Scalars['Boolean']['output']>;
@@ -66865,6 +67133,7 @@ export declare type SearchJiraFilter = {
66865
67133
  };
66866
67134
  export declare type SearchJiraIssueFilter = {
66867
67135
  assigneeARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
67136
+ issueTypeIDs?: InputMaybe<Array<Scalars['ID']['input']>>;
66868
67137
  projectARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
66869
67138
  reporterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
66870
67139
  statusCategories?: InputMaybe<Array<SearchIssueStatusCategory>>;
@@ -67134,6 +67403,7 @@ export declare type SearchResultJiraIssue = SearchResult & {
67134
67403
  iconUrl?: Maybe<Scalars['URL']['output']>;
67135
67404
  id: Scalars['ID']['output'];
67136
67405
  issue?: Maybe<JiraIssue>;
67406
+ issueTypeId: Scalars['String']['output'];
67137
67407
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
67138
67408
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
67139
67409
  socialSignal?: Maybe<SocialSignalSearch>;
@@ -70082,14 +70352,29 @@ export declare type ThirdPartyUser = LocalizationContext & {
70082
70352
  canonicalAccountId: Scalars['ID']['output'];
70083
70353
  createdAt: Scalars['DateTime']['output'];
70084
70354
  email?: Maybe<Scalars['String']['output']>;
70355
+ extendedProfile?: Maybe<ThirdPartyUserExtendedProfile>;
70085
70356
  externalId: Scalars['String']['output'];
70086
70357
  id: Scalars['ID']['output'];
70087
70358
  locale?: Maybe<Scalars['String']['output']>;
70088
70359
  name?: Maybe<Scalars['String']['output']>;
70360
+ nickname?: Maybe<Scalars['String']['output']>;
70089
70361
  picture?: Maybe<Scalars['URL']['output']>;
70090
70362
  updatedAt: Scalars['DateTime']['output'];
70091
70363
  zoneinfo?: Maybe<Scalars['String']['output']>;
70092
70364
  };
70365
+ export declare type ThirdPartyUserExtendedProfile = {
70366
+ __typename?: 'ThirdPartyUserExtendedProfile';
70367
+ department?: Maybe<Scalars['String']['output']>;
70368
+ jobTitle?: Maybe<Scalars['String']['output']>;
70369
+ location?: Maybe<Scalars['String']['output']>;
70370
+ organization?: Maybe<Scalars['String']['output']>;
70371
+ phoneNumbers?: Maybe<Array<Maybe<ThirdPartyUserPhoneNumber>>>;
70372
+ };
70373
+ export declare type ThirdPartyUserPhoneNumber = {
70374
+ __typename?: 'ThirdPartyUserPhoneNumber';
70375
+ type?: Maybe<Scalars['String']['output']>;
70376
+ value: Scalars['String']['output'];
70377
+ };
70093
70378
  export declare type TimeSeriesPoint = {
70094
70379
  __typename?: 'TimeSeriesPoint';
70095
70380
  id: Scalars['ID']['output'];
@@ -70113,7 +70398,6 @@ export declare type Toolchain = {
70113
70398
  checkAuth?: Maybe<ToolchainCheckAuth>;
70114
70399
  checkAuthV2?: Maybe<ToolchainCheckAuthResult>;
70115
70400
  containers?: Maybe<ToolchainContainerConnection>;
70116
- syncStatus?: Maybe<ToolchainSyncStatus>;
70117
70401
  workspaces?: Maybe<ToolchainWorkspaceConnection>;
70118
70402
  };
70119
70403
  export declare type ToolchainCheckAuthArgs = {
@@ -70135,13 +70419,6 @@ export declare type ToolchainContainersArgs = {
70135
70419
  query?: InputMaybe<Scalars['String']['input']>;
70136
70420
  workspaceId?: InputMaybe<Scalars['ID']['input']>;
70137
70421
  };
70138
- export declare type ToolchainSyncStatusArgs = {
70139
- cloudId: Scalars['ID']['input'];
70140
- containerId: Scalars['ID']['input'];
70141
- jiraProjectId: Scalars['ID']['input'];
70142
- providerId: Scalars['String']['input'];
70143
- providerType?: InputMaybe<ToolchainProviderType>;
70144
- };
70145
70422
  export declare type ToolchainWorkspacesArgs = {
70146
70423
  after?: InputMaybe<Scalars['String']['input']>;
70147
70424
  cloudId: Scalars['ID']['input'];
@@ -70351,16 +70628,6 @@ export declare enum ToolchainProviderType {
70351
70628
  RemoteLinks = "REMOTE_LINKS",
70352
70629
  Security = "SECURITY"
70353
70630
  }
70354
- export declare enum ToolchainSyncState {
70355
- Complete = "COMPLETE",
70356
- Error = "ERROR",
70357
- InProgress = "IN_PROGRESS"
70358
- }
70359
- export declare type ToolchainSyncStatus = {
70360
- __typename?: 'ToolchainSyncStatus';
70361
- errorKey?: Maybe<Scalars['String']['output']>;
70362
- state: ToolchainSyncState;
70363
- };
70364
70631
  export declare type ToolchainWorkspace = Node & {
70365
70632
  __typename?: 'ToolchainWorkspace';
70366
70633
  canCreateContainer: Scalars['Boolean']['output'];
@@ -71023,7 +71290,6 @@ export declare type TrelloAssignCardToPlannerCalendarEventPayload = Payload & {
71023
71290
  __typename?: 'TrelloAssignCardToPlannerCalendarEventPayload';
71024
71291
  errors?: Maybe<Array<MutationError>>;
71025
71292
  event?: Maybe<TrelloPlannerCalendarEvent>;
71026
- eventCard?: Maybe<TrelloPlannerCalendarEventCardConnectionUpdated>;
71027
71293
  success: Scalars['Boolean']['output'];
71028
71294
  };
71029
71295
  export declare type TrelloAtlassianIntelligence = {
@@ -71575,6 +71841,7 @@ export declare type TrelloCreateOrUpdatePlannerCalendarPayload = Payload & {
71575
71841
  __typename?: 'TrelloCreateOrUpdatePlannerCalendarPayload';
71576
71842
  errors?: Maybe<Array<MutationError>>;
71577
71843
  plannerCalendar?: Maybe<TrelloPlannerCalendarConnection>;
71844
+ plannerCalendarAccount?: Maybe<TrelloPlannerCalendarAccount>;
71578
71845
  plannerCalendarUpdated?: Maybe<TrelloPlannerCalendarConnectionUpdated>;
71579
71846
  success: Scalars['Boolean']['output'];
71580
71847
  };
@@ -72103,11 +72370,6 @@ export declare type TrelloPlannerCalendarEventCardConnection = {
72103
72370
  nodes?: Maybe<Array<TrelloPlannerCalendarEventCard>>;
72104
72371
  pageInfo: PageInfo;
72105
72372
  };
72106
- export declare type TrelloPlannerCalendarEventCardConnectionUpdated = {
72107
- __typename?: 'TrelloPlannerCalendarEventCardConnectionUpdated';
72108
- edges?: Maybe<Array<TrelloPlannerCalendarEventCardEdge>>;
72109
- nodes?: Maybe<Array<TrelloPlannerCalendarEventCard>>;
72110
- };
72111
72373
  export declare type TrelloPlannerCalendarEventCardEdge = {
72112
72374
  __typename?: 'TrelloPlannerCalendarEventCardEdge';
72113
72375
  cursor?: Maybe<Scalars['String']['output']>;
@@ -72644,12 +72906,13 @@ export declare type UnifiedAccount = UnifiedINode & {
72644
72906
  };
72645
72907
  export declare type UnifiedAccount2 = UnifiedINode & {
72646
72908
  __typename?: 'UnifiedAccount2';
72647
- aaid?: Maybe<Scalars['String']['output']>;
72909
+ aaid: Scalars['String']['output'];
72910
+ emailId: Scalars['String']['output'];
72648
72911
  id: Scalars['ID']['output'];
72649
- internalId?: Maybe<Scalars['String']['output']>;
72650
- isLinked?: Maybe<Scalars['Boolean']['output']>;
72651
- isManaged?: Maybe<Scalars['Boolean']['output']>;
72652
- isPrimary?: Maybe<Scalars['Boolean']['output']>;
72912
+ internalId: Scalars['String']['output'];
72913
+ isLinked: Scalars['Boolean']['output'];
72914
+ isManaged: Scalars['Boolean']['output'];
72915
+ isPrimary: Scalars['Boolean']['output'];
72653
72916
  linkedAccounts?: Maybe<UnifiedULinkedAccount2Result>;
72654
72917
  };
72655
72918
  export declare type UnifiedAccountDetails = UnifiedINode & {