@forge/cli-shared 8.11.1-next.5 → 8.12.0

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.
@@ -1621,6 +1621,10 @@ export declare type AdminAppModuleEdge = {
1621
1621
  cursor: Scalars['String']['output'];
1622
1622
  node: AdminAppModule;
1623
1623
  };
1624
+ export declare enum AdminAppType {
1625
+ Atlassian = "ATLASSIAN",
1626
+ MarketplaceApp = "MARKETPLACE_APP"
1627
+ }
1624
1628
  export declare type AdminApplicationErrorExtension = AdminErrorExtension & MutationErrorExtension & QueryErrorExtension & {
1625
1629
  __typename?: 'AdminApplicationErrorExtension';
1626
1630
  code?: Maybe<Scalars['String']['output']>;
@@ -1981,7 +1985,6 @@ export declare type AdminIcon = {
1981
1985
  export declare type AdminIdentityProviderDirectoryDetails = {
1982
1986
  __typename?: 'AdminIdentityProviderDirectoryDetails';
1983
1987
  directoryName: Scalars['String']['output'];
1984
- externalDirectoryId?: Maybe<Scalars['ID']['output']>;
1985
1988
  identityProviderDirectoryId: Scalars['ID']['output'];
1986
1989
  identityProviderType?: Maybe<AdminIdentityProviderType>;
1987
1990
  isActive: Scalars['Boolean']['output'];
@@ -2668,7 +2671,7 @@ export declare type AdminVendor = {
2668
2671
  export declare type AdminWorkspace = {
2669
2672
  __typename?: 'AdminWorkspace';
2670
2673
  appManifest?: Maybe<AdminAppManifest>;
2671
- appType: Scalars['String']['output'];
2674
+ appType?: Maybe<AdminAppType>;
2672
2675
  createdAt?: Maybe<Scalars['String']['output']>;
2673
2676
  createdBy?: Maybe<Scalars['String']['output']>;
2674
2677
  directoryId?: Maybe<Scalars['ID']['output']>;
@@ -3122,7 +3125,6 @@ export declare type AgentStudioCreateBatchEvaluationJobInput = {
3122
3125
  datasetId: Scalars['String']['input'];
3123
3126
  judgeConfigId: Scalars['String']['input'];
3124
3127
  name: Scalars['String']['input'];
3125
- projectId?: InputMaybe<Scalars['String']['input']>;
3126
3128
  };
3127
3129
  export declare type AgentStudioCreateBatchEvaluationJobPayload = Payload & {
3128
3130
  __typename?: 'AgentStudioCreateBatchEvaluationJobPayload';
@@ -8349,6 +8351,12 @@ export declare type CcpEntitlementMeteredChargeElementUsageLatestArgs = {
8349
8351
  export declare type CcpEntitlementOfferingTransitionRouteArgs = {
8350
8352
  routeBehaviour: CcpOfferingRouteBehaviourEnum;
8351
8353
  };
8354
+ export declare type CcpEntitlementRelatesFromEntitlementsArgs = {
8355
+ relationshipTypes?: InputMaybe<Array<Scalars['String']['input']>>;
8356
+ };
8357
+ export declare type CcpEntitlementRelatesToEntitlementsArgs = {
8358
+ relationshipTypes?: InputMaybe<Array<Scalars['String']['input']>>;
8359
+ };
8352
8360
  export declare type CcpEntitlementDisplayInfo = {
8353
8361
  __typename?: 'CcpEntitlementDisplayInfo';
8354
8362
  provisionedResource?: Maybe<CcpEntitlementProvisionedResource>;
@@ -8410,6 +8418,7 @@ export declare type CcpEntitlementProvisionedResource = {
8410
8418
  };
8411
8419
  export declare type CcpEntitlementRelationship = CommerceEntitlementRelationship & {
8412
8420
  __typename?: 'CcpEntitlementRelationship';
8421
+ entitlement?: Maybe<CcpEntitlement>;
8413
8422
  entitlementId?: Maybe<Scalars['ID']['output']>;
8414
8423
  relationshipId?: Maybe<Scalars['ID']['output']>;
8415
8424
  relationshipType?: Maybe<Scalars['String']['output']>;
@@ -10716,9 +10725,9 @@ export declare type CommerceEntitlementRelationship = {
10716
10725
  };
10717
10726
  export declare type CommerceExpCcpQuery = {
10718
10727
  __typename?: 'CommerceExpCcpQuery';
10719
- commerceExp_testField?: Maybe<CommerceExpTestField>;
10728
+ testField?: Maybe<CommerceExpTestField>;
10720
10729
  };
10721
- export declare type CommerceExpCcpQueryCommerceExp_TestFieldArgs = {
10730
+ export declare type CommerceExpCcpQueryTestFieldArgs = {
10722
10731
  id?: InputMaybe<Scalars['ID']['input']>;
10723
10732
  };
10724
10733
  export declare type CommerceExpTestField = {
@@ -15103,6 +15112,7 @@ export declare type CompassScorecardMaturityLevelStatisticsHistoryQuery = {
15103
15112
  filter?: InputMaybe<CompassScorecardMaturityLevelStatisticsHistoryQueryFilter>;
15104
15113
  };
15105
15114
  export declare type CompassScorecardMaturityLevelStatisticsHistoryQueryFilter = {
15115
+ componentStates?: InputMaybe<CompassScorecardAppliedToComponentsComponentStateFilter>;
15106
15116
  componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
15107
15117
  date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
15108
15118
  owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
@@ -15229,6 +15239,7 @@ export declare type CompassScorecardScoreStatisticsHistoryQuery = {
15229
15239
  filter?: InputMaybe<CompassScorecardScoreStatisticsHistoryQueryFilter>;
15230
15240
  };
15231
15241
  export declare type CompassScorecardScoreStatisticsHistoryQueryFilter = {
15242
+ componentStates?: InputMaybe<CompassScorecardAppliedToComponentsComponentStateFilter>;
15232
15243
  componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
15233
15244
  customFields?: InputMaybe<Array<CompassCustomFieldFilterInput>>;
15234
15245
  date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
@@ -20827,6 +20838,17 @@ export declare type ConfluenceUpdateContentAccessRequestPayload = Payload & {
20827
20838
  errors: Array<MutationError>;
20828
20839
  success: Scalars['Boolean']['output'];
20829
20840
  };
20841
+ export declare type ConfluenceUpdateContentAppearanceInput = {
20842
+ contentAppearance: Scalars['String']['input'];
20843
+ contentId: Scalars['ID']['input'];
20844
+ contentStatus?: InputMaybe<ConfluenceMutationContentStatus>;
20845
+ };
20846
+ export declare type ConfluenceUpdateContentAppearancePayload = {
20847
+ __typename?: 'ConfluenceUpdateContentAppearancePayload';
20848
+ content?: Maybe<Content>;
20849
+ errors?: Maybe<Array<MutationError>>;
20850
+ success: Scalars['Boolean']['output'];
20851
+ };
20830
20852
  export declare type ConfluenceUpdateContentDirectRestrictionsInput = {
20831
20853
  add?: InputMaybe<ConfluenceDirectRestrictionsAddInput>;
20832
20854
  contentId: Scalars['ID']['input'];
@@ -20851,6 +20873,17 @@ export declare type ConfluenceUpdateContentModePayload = {
20851
20873
  errors?: Maybe<Array<MutationError>>;
20852
20874
  success: Scalars['Boolean']['output'];
20853
20875
  };
20876
+ export declare type ConfluenceUpdateCoverPictureInput = {
20877
+ contentId: Scalars['ID']['input'];
20878
+ contentStatus?: InputMaybe<ConfluenceMutationContentStatus>;
20879
+ coverPicture: Scalars['String']['input'];
20880
+ };
20881
+ export declare type ConfluenceUpdateCoverPicturePayload = {
20882
+ __typename?: 'ConfluenceUpdateCoverPicturePayload';
20883
+ content?: Maybe<Content>;
20884
+ errors?: Maybe<Array<MutationError>>;
20885
+ success: Scalars['Boolean']['output'];
20886
+ };
20854
20887
  export declare type ConfluenceUpdateCurrentBlogPostInput = {
20855
20888
  body?: InputMaybe<ConfluenceContentBodyInput>;
20856
20889
  id: Scalars['ID']['input'];
@@ -21262,6 +21295,17 @@ export declare type ConfluenceUpdateTeamsSiteConfigurationPayload = Payload & {
21262
21295
  errors?: Maybe<Array<MutationError>>;
21263
21296
  success: Scalars['Boolean']['output'];
21264
21297
  };
21298
+ export declare type ConfluenceUpdateTitleEmojiInput = {
21299
+ contentId: Scalars['ID']['input'];
21300
+ contentStatus?: InputMaybe<ConfluenceMutationContentStatus>;
21301
+ titleEmoji: Scalars['String']['input'];
21302
+ };
21303
+ export declare type ConfluenceUpdateTitleEmojiPayload = {
21304
+ __typename?: 'ConfluenceUpdateTitleEmojiPayload';
21305
+ content?: Maybe<Content>;
21306
+ errors?: Maybe<Array<MutationError>>;
21307
+ success: Scalars['Boolean']['output'];
21308
+ };
21265
21309
  export declare type ConfluenceUpdateTopicInput = {
21266
21310
  description?: InputMaybe<Scalars['String']['input']>;
21267
21311
  featured?: InputMaybe<Scalars['Boolean']['input']>;
@@ -25312,6 +25356,11 @@ export declare type CsmAiDeleteKnowledgeSourcePayload = Payload & {
25312
25356
  errors?: Maybe<Array<MutationError>>;
25313
25357
  success: Scalars['Boolean']['output'];
25314
25358
  };
25359
+ export declare type CsmAiDeleteWidgetPayload = Payload & {
25360
+ __typename?: 'CsmAiDeleteWidgetPayload';
25361
+ errors?: Maybe<Array<MutationError>>;
25362
+ success: Scalars['Boolean']['output'];
25363
+ };
25315
25364
  export declare type CsmAiGenerateClientKeyPayload = Payload & {
25316
25365
  __typename?: 'CsmAiGenerateClientKeyPayload';
25317
25366
  clientKey?: Maybe<CsmAiWidgetClientKey>;
@@ -30237,9 +30286,12 @@ export declare enum DocumentRepresentation {
30237
30286
  }
30238
30287
  export declare type DraftContentProperties = {
30239
30288
  __typename?: 'DraftContentProperties';
30289
+ contentAppearance?: Maybe<Scalars['String']['output']>;
30240
30290
  contentMode?: Maybe<Scalars['String']['output']>;
30291
+ coverPicture?: Maybe<Scalars['String']['output']>;
30241
30292
  coverPictureWidth?: Maybe<Scalars['String']['output']>;
30242
30293
  generatedBy?: Maybe<Scalars['String']['output']>;
30294
+ titleEmoji?: Maybe<Scalars['String']['output']>;
30243
30295
  };
30244
30296
  export declare type DvcsBitbucketWorkspaceConnection = {
30245
30297
  __typename?: 'DvcsBitbucketWorkspaceConnection';
@@ -35143,7 +35195,7 @@ export declare type GraphIntegrationDirectoryFilterDimensionEdge = {
35143
35195
  cursor: Scalars['String']['output'];
35144
35196
  node?: Maybe<GraphIntegrationDirectoryFilterDimension>;
35145
35197
  };
35146
- export declare type GraphIntegrationDirectoryItem = GraphIntegrationActionDirectoryItem | GraphIntegrationMcpServer | GraphIntegrationMcpTool;
35198
+ export declare type GraphIntegrationDirectoryItem = GraphIntegrationActionDirectoryItem | GraphIntegrationMcpServer | GraphIntegrationMcpTool | GraphIntegrationSkillDirectoryItem;
35147
35199
  export declare type GraphIntegrationDirectoryItemConnection = {
35148
35200
  __typename?: 'GraphIntegrationDirectoryItemConnection';
35149
35201
  edges: Array<GraphIntegrationDirectoryItemEdge>;
@@ -35158,7 +35210,8 @@ export declare type GraphIntegrationDirectoryItemEdge = {
35158
35210
  export declare enum GraphIntegrationDirectoryItemType {
35159
35211
  Action = "ACTION",
35160
35212
  McpServer = "MCP_SERVER",
35161
- McpTool = "MCP_TOOL"
35213
+ McpTool = "MCP_TOOL",
35214
+ Skill = "SKILL"
35162
35215
  }
35163
35216
  export declare type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateConnection = {
35164
35217
  __typename?: 'GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateConnection';
@@ -35376,6 +35429,17 @@ export declare type GraphIntegrationRemoveTwgCapabilityContainerPayload = Payloa
35376
35429
  errors?: Maybe<Array<MutationError>>;
35377
35430
  success: Scalars['Boolean']['output'];
35378
35431
  };
35432
+ export declare type GraphIntegrationSkillDirectoryItem = {
35433
+ __typename?: 'GraphIntegrationSkillDirectoryItem';
35434
+ description?: Maybe<Scalars['String']['output']>;
35435
+ displayName: Scalars['String']['output'];
35436
+ iconUrl?: Maybe<Scalars['String']['output']>;
35437
+ id: Scalars['ID']['output'];
35438
+ integrationKey?: Maybe<GraphIntegrationDirectoryFilterDimension>;
35439
+ name: Scalars['String']['output'];
35440
+ slashCommand?: Maybe<Scalars['String']['output']>;
35441
+ tags: Array<GraphIntegrationDirectoryFilterDimension>;
35442
+ };
35379
35443
  export declare enum GraphIntegrationStatus {
35380
35444
  Disabled = "DISABLED",
35381
35445
  Enabled = "ENABLED"
@@ -38157,6 +38221,14 @@ export declare type GraphStore = {
38157
38221
  atlasProjectIsTrackedOnJiraEpicRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
38158
38222
  atlasProjectTrackedOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection>;
38159
38223
  atlasProjectTrackedOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseConnection>;
38224
+ atlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
38225
+ atlassianUserDismissedJiraForYouRecommendationEntityBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
38226
+ atlassianUserDismissedJiraForYouRecommendationEntityInverse?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseConnection>;
38227
+ atlassianUserDismissedJiraForYouRecommendationEntityInverseBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
38228
+ atlassianUserInvitedToLoomMeeting?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection>;
38229
+ atlassianUserInvitedToLoomMeetingBatch?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection>;
38230
+ atlassianUserInvitedToLoomMeetingInverse?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection>;
38231
+ atlassianUserInvitedToLoomMeetingInverseBatch?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection>;
38160
38232
  boardBelongsToProject?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectConnection>;
38161
38233
  boardBelongsToProjectInverse?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseConnection>;
38162
38234
  branchInRepo?: Maybe<GraphStoreSimplifiedBranchInRepoConnection>;
@@ -39400,6 +39472,70 @@ export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemInverseArgs = {
39400
39472
  queryContext?: InputMaybe<Scalars['String']['input']>;
39401
39473
  sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
39402
39474
  };
39475
+ export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityArgs = {
39476
+ after?: InputMaybe<Scalars['String']['input']>;
39477
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
39478
+ filter?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityFilterInput>;
39479
+ first?: InputMaybe<Scalars['Int']['input']>;
39480
+ id: Scalars['ID']['input'];
39481
+ queryContext?: InputMaybe<Scalars['String']['input']>;
39482
+ sort?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntitySortInput>;
39483
+ };
39484
+ export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityBatchArgs = {
39485
+ after?: InputMaybe<Scalars['String']['input']>;
39486
+ filter?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityFilterInput>;
39487
+ first?: InputMaybe<Scalars['Int']['input']>;
39488
+ ids: Array<Scalars['ID']['input']>;
39489
+ queryContext?: InputMaybe<Scalars['String']['input']>;
39490
+ sort?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntitySortInput>;
39491
+ };
39492
+ export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityInverseArgs = {
39493
+ after?: InputMaybe<Scalars['String']['input']>;
39494
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
39495
+ filter?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityFilterInput>;
39496
+ first?: InputMaybe<Scalars['Int']['input']>;
39497
+ id: Scalars['ID']['input'];
39498
+ queryContext?: InputMaybe<Scalars['String']['input']>;
39499
+ sort?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntitySortInput>;
39500
+ };
39501
+ export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityInverseBatchArgs = {
39502
+ after?: InputMaybe<Scalars['String']['input']>;
39503
+ filter?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityFilterInput>;
39504
+ first?: InputMaybe<Scalars['Int']['input']>;
39505
+ ids: Array<Scalars['ID']['input']>;
39506
+ queryContext?: InputMaybe<Scalars['String']['input']>;
39507
+ sort?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntitySortInput>;
39508
+ };
39509
+ export declare type GraphStoreAtlassianUserInvitedToLoomMeetingArgs = {
39510
+ after?: InputMaybe<Scalars['String']['input']>;
39511
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
39512
+ first?: InputMaybe<Scalars['Int']['input']>;
39513
+ id: Scalars['ID']['input'];
39514
+ queryContext?: InputMaybe<Scalars['String']['input']>;
39515
+ sort?: InputMaybe<GraphStoreAtlassianUserInvitedToLoomMeetingSortInput>;
39516
+ };
39517
+ export declare type GraphStoreAtlassianUserInvitedToLoomMeetingBatchArgs = {
39518
+ after?: InputMaybe<Scalars['String']['input']>;
39519
+ first?: InputMaybe<Scalars['Int']['input']>;
39520
+ ids: Array<Scalars['ID']['input']>;
39521
+ queryContext?: InputMaybe<Scalars['String']['input']>;
39522
+ sort?: InputMaybe<GraphStoreAtlassianUserInvitedToLoomMeetingSortInput>;
39523
+ };
39524
+ export declare type GraphStoreAtlassianUserInvitedToLoomMeetingInverseArgs = {
39525
+ after?: InputMaybe<Scalars['String']['input']>;
39526
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
39527
+ first?: InputMaybe<Scalars['Int']['input']>;
39528
+ id: Scalars['ID']['input'];
39529
+ queryContext?: InputMaybe<Scalars['String']['input']>;
39530
+ sort?: InputMaybe<GraphStoreAtlassianUserInvitedToLoomMeetingSortInput>;
39531
+ };
39532
+ export declare type GraphStoreAtlassianUserInvitedToLoomMeetingInverseBatchArgs = {
39533
+ after?: InputMaybe<Scalars['String']['input']>;
39534
+ first?: InputMaybe<Scalars['Int']['input']>;
39535
+ ids: Array<Scalars['ID']['input']>;
39536
+ queryContext?: InputMaybe<Scalars['String']['input']>;
39537
+ sort?: InputMaybe<GraphStoreAtlassianUserInvitedToLoomMeetingSortInput>;
39538
+ };
39403
39539
  export declare type GraphStoreBoardBelongsToProjectArgs = {
39404
39540
  after?: InputMaybe<Scalars['String']['input']>;
39405
39541
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -45875,6 +46011,56 @@ export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput = {
45875
46011
  export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput = {
45876
46012
  lastModified?: InputMaybe<GraphStoreSortInput>;
45877
46013
  };
46014
+ export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput = {
46015
+ and?: InputMaybe<Array<InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput>>>;
46016
+ category?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategoryFilterInput>;
46017
+ or?: InputMaybe<Array<InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput>>>;
46018
+ };
46019
+ export declare enum GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategory {
46020
+ CommentAssigned = "COMMENT_ASSIGNED",
46021
+ CommentMention = "COMMENT_MENTION",
46022
+ CommentReply = "COMMENT_REPLY",
46023
+ IssueApproval = "ISSUE_APPROVAL",
46024
+ IssueDueSoon = "ISSUE_DUE_SOON",
46025
+ NotSet = "NOT_SET",
46026
+ ProjectInviterContext = "PROJECT_INVITER_CONTEXT",
46027
+ ProjectPopularity = "PROJECT_POPULARITY",
46028
+ PrReview = "PR_REVIEW",
46029
+ TeamCollaboratorsCreate = "TEAM_COLLABORATORS_CREATE",
46030
+ TeamCollaboratorsJoin = "TEAM_COLLABORATORS_JOIN",
46031
+ TeamInviterContext = "TEAM_INVITER_CONTEXT",
46032
+ TeamPopularity = "TEAM_POPULARITY"
46033
+ }
46034
+ export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategoryFilterInput = {
46035
+ is?: InputMaybe<Array<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategory>>;
46036
+ isNot?: InputMaybe<Array<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategory>>;
46037
+ };
46038
+ export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalSortInput = {
46039
+ category?: InputMaybe<GraphStoreSortInput>;
46040
+ };
46041
+ export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityConditionalFilterInput = {
46042
+ createdAt?: InputMaybe<GraphStoreDateFilterInput>;
46043
+ fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
46044
+ lastModified?: InputMaybe<GraphStoreDateFilterInput>;
46045
+ relationship_dismissedCategories?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput>;
46046
+ toAti?: InputMaybe<GraphStoreAtiFilterInput>;
46047
+ to_dismissedCategories?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput>;
46048
+ };
46049
+ export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityFilterInput = {
46050
+ and?: InputMaybe<Array<InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityConditionalFilterInput>>>;
46051
+ or?: InputMaybe<Array<InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityConditionalFilterInput>>>;
46052
+ };
46053
+ export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntitySortInput = {
46054
+ createdAt?: InputMaybe<GraphStoreSortInput>;
46055
+ fromAti?: InputMaybe<GraphStoreSortInput>;
46056
+ lastModified?: InputMaybe<GraphStoreSortInput>;
46057
+ relationship_dismissedCategories?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalSortInput>;
46058
+ toAti?: InputMaybe<GraphStoreSortInput>;
46059
+ to_dismissedCategories?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalSortInput>;
46060
+ };
46061
+ export declare type GraphStoreAtlassianUserInvitedToLoomMeetingSortInput = {
46062
+ lastModified?: InputMaybe<GraphStoreSortInput>;
46063
+ };
45878
46064
  export declare type GraphStoreBatchAtlasGoalHasJiraAlignProjectConnection = HasPageInfo & {
45879
46065
  __typename?: 'GraphStoreBatchAtlasGoalHasJiraAlignProjectConnection';
45880
46066
  edges: Array<Maybe<GraphStoreBatchAtlasGoalHasJiraAlignProjectEdge>>;
@@ -45957,6 +46143,88 @@ export declare type GraphStoreBatchAtlasProjectContributesToAtlasGoalStartNode =
45957
46143
  id: Scalars['ID']['output'];
45958
46144
  };
45959
46145
  export declare type GraphStoreBatchAtlasProjectContributesToAtlasGoalStartUnion = TownsquareProject;
46146
+ export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection = HasPageInfo & {
46147
+ __typename?: 'GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection';
46148
+ edges: Array<Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityEdge>>;
46149
+ nodes: Array<Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityNode>>;
46150
+ pageInfo: PageInfo;
46151
+ };
46152
+ export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityEdge = {
46153
+ __typename?: 'GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityEdge';
46154
+ node: GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityInnerConnection;
46155
+ };
46156
+ export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityEndNode = {
46157
+ __typename?: 'GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityEndNode';
46158
+ data?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityEndUnion>;
46159
+ id: Scalars['ID']['output'];
46160
+ };
46161
+ export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityEndUnion = DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraProject | JiraServiceManagementComment | TeamV2;
46162
+ export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityInnerConnection = {
46163
+ __typename?: 'GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityInnerConnection';
46164
+ edges: Array<Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityInnerEdge>>;
46165
+ nodes: Array<Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityNode>>;
46166
+ requestedId: Scalars['ID']['output'];
46167
+ };
46168
+ export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityInnerEdge = {
46169
+ __typename?: 'GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityInnerEdge';
46170
+ cursor?: Maybe<Scalars['String']['output']>;
46171
+ node: GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityNode;
46172
+ };
46173
+ export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityNode = Node & {
46174
+ __typename?: 'GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityNode';
46175
+ createdAt: Scalars['DateTime']['output'];
46176
+ from: GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityStartNode;
46177
+ id: Scalars['ID']['output'];
46178
+ lastUpdated: Scalars['DateTime']['output'];
46179
+ to: GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityEndNode;
46180
+ };
46181
+ export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityStartNode = {
46182
+ __typename?: 'GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityStartNode';
46183
+ data?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityStartUnion>;
46184
+ id: Scalars['ID']['output'];
46185
+ };
46186
+ export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityStartUnion = AppUser | AtlassianAccountUser | CustomerUser;
46187
+ export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection = HasPageInfo & {
46188
+ __typename?: 'GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection';
46189
+ edges: Array<Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingEdge>>;
46190
+ nodes: Array<Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingNode>>;
46191
+ pageInfo: PageInfo;
46192
+ };
46193
+ export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingEdge = {
46194
+ __typename?: 'GraphStoreBatchAtlassianUserInvitedToLoomMeetingEdge';
46195
+ node: GraphStoreBatchAtlassianUserInvitedToLoomMeetingInnerConnection;
46196
+ };
46197
+ export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingEndNode = {
46198
+ __typename?: 'GraphStoreBatchAtlassianUserInvitedToLoomMeetingEndNode';
46199
+ data?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingEndUnion>;
46200
+ id: Scalars['ID']['output'];
46201
+ };
46202
+ export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingEndUnion = LoomMeeting;
46203
+ export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingInnerConnection = {
46204
+ __typename?: 'GraphStoreBatchAtlassianUserInvitedToLoomMeetingInnerConnection';
46205
+ edges: Array<Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingInnerEdge>>;
46206
+ nodes: Array<Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingNode>>;
46207
+ requestedId: Scalars['ID']['output'];
46208
+ };
46209
+ export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingInnerEdge = {
46210
+ __typename?: 'GraphStoreBatchAtlassianUserInvitedToLoomMeetingInnerEdge';
46211
+ cursor?: Maybe<Scalars['String']['output']>;
46212
+ node: GraphStoreBatchAtlassianUserInvitedToLoomMeetingNode;
46213
+ };
46214
+ export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingNode = Node & {
46215
+ __typename?: 'GraphStoreBatchAtlassianUserInvitedToLoomMeetingNode';
46216
+ createdAt: Scalars['DateTime']['output'];
46217
+ from: GraphStoreBatchAtlassianUserInvitedToLoomMeetingStartNode;
46218
+ id: Scalars['ID']['output'];
46219
+ lastUpdated: Scalars['DateTime']['output'];
46220
+ to: GraphStoreBatchAtlassianUserInvitedToLoomMeetingEndNode;
46221
+ };
46222
+ export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingStartNode = {
46223
+ __typename?: 'GraphStoreBatchAtlassianUserInvitedToLoomMeetingStartNode';
46224
+ data?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingStartUnion>;
46225
+ id: Scalars['ID']['output'];
46226
+ };
46227
+ export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingStartUnion = AppUser | AtlassianAccountUser | CustomerUser;
45960
46228
  export declare type GraphStoreBatchChangeProposalHasAtlasGoalConnection = HasPageInfo & {
45961
46229
  __typename?: 'GraphStoreBatchChangeProposalHasAtlasGoalConnection';
45962
46230
  edges: Array<Maybe<GraphStoreBatchChangeProposalHasAtlasGoalEdge>>;
@@ -47184,6 +47452,47 @@ export declare type GraphStoreContentReferencedEntitySortInput = {
47184
47452
  export declare type GraphStoreConversationHasMessageSortInput = {
47185
47453
  lastModified?: InputMaybe<GraphStoreSortInput>;
47186
47454
  };
47455
+ export declare type GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalInput = {
47456
+ category?: InputMaybe<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategoryInput>;
47457
+ };
47458
+ export declare enum GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategoryInput {
47459
+ CommentAssigned = "COMMENT_ASSIGNED",
47460
+ CommentMention = "COMMENT_MENTION",
47461
+ CommentReply = "COMMENT_REPLY",
47462
+ IssueApproval = "ISSUE_APPROVAL",
47463
+ IssueDueSoon = "ISSUE_DUE_SOON",
47464
+ NotSet = "NOT_SET",
47465
+ ProjectInviterContext = "PROJECT_INVITER_CONTEXT",
47466
+ ProjectPopularity = "PROJECT_POPULARITY",
47467
+ PrReview = "PR_REVIEW",
47468
+ TeamCollaboratorsCreate = "TEAM_COLLABORATORS_CREATE",
47469
+ TeamCollaboratorsJoin = "TEAM_COLLABORATORS_JOIN",
47470
+ TeamInviterContext = "TEAM_INVITER_CONTEXT",
47471
+ TeamPopularity = "TEAM_POPULARITY"
47472
+ }
47473
+ export declare type GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityInput = {
47474
+ relationships: Array<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityRelationshipInput>;
47475
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
47476
+ };
47477
+ export declare type GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityPayload = Payload & {
47478
+ __typename?: 'GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityPayload';
47479
+ errors?: Maybe<Array<MutationError>>;
47480
+ success: Scalars['Boolean']['output'];
47481
+ };
47482
+ export declare type GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityRelationshipInput = {
47483
+ from: Scalars['ID']['input'];
47484
+ objectMetadata?: InputMaybe<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityRelationshipObjectMetadataInput>;
47485
+ relationshipMetadata?: InputMaybe<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityRelationshipMetadataInput>;
47486
+ sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
47487
+ to: Scalars['ID']['input'];
47488
+ updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
47489
+ };
47490
+ export declare type GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityRelationshipMetadataInput = {
47491
+ dismissedCategories?: InputMaybe<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalInput>;
47492
+ };
47493
+ export declare type GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityRelationshipObjectMetadataInput = {
47494
+ dismissedCategories?: InputMaybe<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalInput>;
47495
+ };
47187
47496
  export declare type GraphStoreCreateComponentImpactedByIncidentInput = {
47188
47497
  relationships: Array<GraphStoreCreateComponentImpactedByIncidentRelationshipInput>;
47189
47498
  };
@@ -47909,6 +48218,19 @@ export declare type GraphStoreDateFilterInput = {
47909
48218
  after?: InputMaybe<Scalars['DateTime']['input']>;
47910
48219
  before?: InputMaybe<Scalars['DateTime']['input']>;
47911
48220
  };
48221
+ export declare type GraphStoreDeleteAtlassianUserDismissedJiraForYouRecommendationEntityInput = {
48222
+ relationships: Array<GraphStoreDeleteAtlassianUserDismissedJiraForYouRecommendationEntityRelationshipInput>;
48223
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
48224
+ };
48225
+ export declare type GraphStoreDeleteAtlassianUserDismissedJiraForYouRecommendationEntityPayload = Payload & {
48226
+ __typename?: 'GraphStoreDeleteAtlassianUserDismissedJiraForYouRecommendationEntityPayload';
48227
+ errors?: Maybe<Array<MutationError>>;
48228
+ success: Scalars['Boolean']['output'];
48229
+ };
48230
+ export declare type GraphStoreDeleteAtlassianUserDismissedJiraForYouRecommendationEntityRelationshipInput = {
48231
+ from: Scalars['ID']['input'];
48232
+ to: Scalars['ID']['input'];
48233
+ };
47912
48234
  export declare type GraphStoreDeleteComponentImpactedByIncidentInput = {
47913
48235
  relationships: Array<GraphStoreDeleteComponentImpactedByIncidentRelationshipInput>;
47914
48236
  synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
@@ -52255,6 +52577,7 @@ export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSort
52255
52577
  };
52256
52578
  export declare type GraphStoreMutation = {
52257
52579
  __typename?: 'GraphStoreMutation';
52580
+ createAtlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityPayload>;
52258
52581
  createComponentImpactedByIncident?: Maybe<GraphStoreCreateComponentImpactedByIncidentPayload>;
52259
52582
  createIncidentAssociatedPostIncidentReviewLink?: Maybe<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkPayload>;
52260
52583
  createIncidentHasActionItem?: Maybe<GraphStoreCreateIncidentHasActionItemPayload>;
@@ -52287,6 +52610,7 @@ export declare type GraphStoreMutation = {
52287
52610
  createUserHasRelevantProject?: Maybe<GraphStoreCreateUserHasRelevantProjectPayload>;
52288
52611
  createVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreCreateVersionUserAssociatedFeatureFlagPayload>;
52289
52612
  createVulnerabilityAssociatedIssue?: Maybe<GraphStoreCreateVulnerabilityAssociatedIssuePayload>;
52613
+ deleteAtlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreDeleteAtlassianUserDismissedJiraForYouRecommendationEntityPayload>;
52290
52614
  deleteComponentImpactedByIncident?: Maybe<GraphStoreDeleteComponentImpactedByIncidentPayload>;
52291
52615
  deleteIncidentAssociatedPostIncidentReviewLink?: Maybe<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkPayload>;
52292
52616
  deleteIncidentHasActionItem?: Maybe<GraphStoreDeleteIncidentHasActionItemPayload>;
@@ -52320,6 +52644,9 @@ export declare type GraphStoreMutation = {
52320
52644
  deleteVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload>;
52321
52645
  deleteVulnerabilityAssociatedIssue?: Maybe<GraphStoreDeleteVulnerabilityAssociatedIssuePayload>;
52322
52646
  };
52647
+ export declare type GraphStoreMutationCreateAtlassianUserDismissedJiraForYouRecommendationEntityArgs = {
52648
+ input?: InputMaybe<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityInput>;
52649
+ };
52323
52650
  export declare type GraphStoreMutationCreateComponentImpactedByIncidentArgs = {
52324
52651
  input?: InputMaybe<GraphStoreCreateComponentImpactedByIncidentInput>;
52325
52652
  };
@@ -52416,6 +52743,9 @@ export declare type GraphStoreMutationCreateVersionUserAssociatedFeatureFlagArgs
52416
52743
  export declare type GraphStoreMutationCreateVulnerabilityAssociatedIssueArgs = {
52417
52744
  input?: InputMaybe<GraphStoreCreateVulnerabilityAssociatedIssueInput>;
52418
52745
  };
52746
+ export declare type GraphStoreMutationDeleteAtlassianUserDismissedJiraForYouRecommendationEntityArgs = {
52747
+ input?: InputMaybe<GraphStoreDeleteAtlassianUserDismissedJiraForYouRecommendationEntityInput>;
52748
+ };
52419
52749
  export declare type GraphStoreMutationDeleteComponentImpactedByIncidentArgs = {
52420
52750
  input?: InputMaybe<GraphStoreDeleteComponentImpactedByIncidentInput>;
52421
52751
  };
@@ -53760,6 +54090,66 @@ export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverse
53760
54090
  };
53761
54091
  export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseUnion = TownsquareProject;
53762
54092
  export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemUnion = JiraIssue;
54093
+ export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection = HasPageInfo & HasTotal & {
54094
+ __typename?: 'GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection';
54095
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityEdge>>>;
54096
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
54097
+ pageInfo: PageInfo;
54098
+ totalCount?: Maybe<Scalars['Int']['output']>;
54099
+ };
54100
+ export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityEdge = {
54101
+ __typename?: 'GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityEdge';
54102
+ createdAt: Scalars['DateTime']['output'];
54103
+ cursor?: Maybe<Scalars['String']['output']>;
54104
+ id: Scalars['ID']['output'];
54105
+ lastUpdated: Scalars['DateTime']['output'];
54106
+ node?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityUnion>;
54107
+ };
54108
+ export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseConnection = HasPageInfo & HasTotal & {
54109
+ __typename?: 'GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseConnection';
54110
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseEdge>>>;
54111
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
54112
+ pageInfo: PageInfo;
54113
+ totalCount?: Maybe<Scalars['Int']['output']>;
54114
+ };
54115
+ export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseEdge = {
54116
+ __typename?: 'GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseEdge';
54117
+ createdAt: Scalars['DateTime']['output'];
54118
+ cursor?: Maybe<Scalars['String']['output']>;
54119
+ id: Scalars['ID']['output'];
54120
+ lastUpdated: Scalars['DateTime']['output'];
54121
+ node?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseUnion>;
54122
+ };
54123
+ export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
54124
+ export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityUnion = DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraProject | JiraServiceManagementComment | TeamV2;
54125
+ export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection = HasPageInfo & {
54126
+ __typename?: 'GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection';
54127
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingEdge>>>;
54128
+ pageInfo: PageInfo;
54129
+ };
54130
+ export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingEdge = {
54131
+ __typename?: 'GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingEdge';
54132
+ createdAt: Scalars['DateTime']['output'];
54133
+ cursor?: Maybe<Scalars['String']['output']>;
54134
+ id: Scalars['ID']['output'];
54135
+ lastUpdated: Scalars['DateTime']['output'];
54136
+ node?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingUnion>;
54137
+ };
54138
+ export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection = HasPageInfo & {
54139
+ __typename?: 'GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection';
54140
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseEdge>>>;
54141
+ pageInfo: PageInfo;
54142
+ };
54143
+ export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseEdge = {
54144
+ __typename?: 'GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseEdge';
54145
+ createdAt: Scalars['DateTime']['output'];
54146
+ cursor?: Maybe<Scalars['String']['output']>;
54147
+ id: Scalars['ID']['output'];
54148
+ lastUpdated: Scalars['DateTime']['output'];
54149
+ node?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseUnion>;
54150
+ };
54151
+ export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
54152
+ export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingUnion = LoomMeeting;
53763
54153
  export declare type GraphStoreSimplifiedBoardBelongsToProjectConnection = HasPageInfo & {
53764
54154
  __typename?: 'GraphStoreSimplifiedBoardBelongsToProjectConnection';
53765
54155
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBoardBelongsToProjectEdge>>>;
@@ -67784,6 +68174,11 @@ export declare type JiraAiAgentSessionEdge = {
67784
68174
  cursor: Scalars['String']['output'];
67785
68175
  node?: Maybe<JiraAiAgentSession>;
67786
68176
  };
68177
+ export declare type JiraAiAgentSessionEnrichmentInput = {
68178
+ agentIdentityAccountId: Scalars['String']['input'];
68179
+ cloudId: Scalars['ID']['input'];
68180
+ conversationId: Scalars['String']['input'];
68181
+ };
67787
68182
  export declare type JiraAiEnablementIssueInput = {
67788
68183
  issueId?: InputMaybe<Scalars['ID']['input']>;
67789
68184
  issueKey?: InputMaybe<Scalars['String']['input']>;
@@ -79116,6 +79511,7 @@ export declare type JiraMutationReplaceSpreadsheetViewFieldSetsArgs = {
79116
79511
  fieldSetsInput?: InputMaybe<JiraFieldSetsMutationInput>;
79117
79512
  filterId?: InputMaybe<Scalars['String']['input']>;
79118
79513
  id: Scalars['ID']['input'];
79514
+ viewId?: InputMaybe<Scalars['String']['input']>;
79119
79515
  };
79120
79516
  export declare type JiraMutationRequestCancelIssueExportTaskArgs = {
79121
79517
  cloudId: Scalars['ID']['input'];
@@ -82070,6 +82466,7 @@ export declare type JiraQuery = {
82070
82466
  __typename?: 'JiraQuery';
82071
82467
  activeBackgroundDetails?: Maybe<JiraActiveBackgroundDetailsResult>;
82072
82468
  advancedRoadmapsNavigation?: Maybe<JiraAdvancedRoadmapsNavigation>;
82469
+ aiAgentSessionEnrichment?: Maybe<JiraAiAgentSession>;
82073
82470
  allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
82074
82471
  allJiraJourneyConfigurations?: Maybe<JiraJourneyConfigurationConnection>;
82075
82472
  allJiraProjectCategories?: Maybe<JiraProjectCategoryConnection>;
@@ -82299,6 +82696,9 @@ export declare type JiraQueryActiveBackgroundDetailsArgs = {
82299
82696
  export declare type JiraQueryAdvancedRoadmapsNavigationArgs = {
82300
82697
  cloudId: Scalars['ID']['input'];
82301
82698
  };
82699
+ export declare type JiraQueryAiAgentSessionEnrichmentArgs = {
82700
+ input: JiraAiAgentSessionEnrichmentInput;
82701
+ };
82302
82702
  export declare type JiraQueryAllGrantTypeKeysArgs = {
82303
82703
  cloudId: Scalars['ID']['input'];
82304
82704
  };
@@ -83478,6 +83878,7 @@ export declare type JiraRecommendedActionCategory = {
83478
83878
  descriptionLinkLabel?: Maybe<Scalars['String']['output']>;
83479
83879
  id: Scalars['ID']['output'];
83480
83880
  title?: Maybe<Scalars['String']['output']>;
83881
+ type?: Maybe<JiraRecommendedActionCategoryType>;
83481
83882
  };
83482
83883
  export declare type JiraRecommendedActionCategoryConnection = {
83483
83884
  __typename?: 'JiraRecommendedActionCategoryConnection';
@@ -83490,6 +83891,21 @@ export declare type JiraRecommendedActionCategoryEdge = {
83490
83891
  cursor: Scalars['String']['output'];
83491
83892
  node?: Maybe<JiraRecommendedActionCategory>;
83492
83893
  };
83894
+ export declare enum JiraRecommendedActionCategoryType {
83895
+ CommentAssigned = "COMMENT_ASSIGNED",
83896
+ CommentMention = "COMMENT_MENTION",
83897
+ CommentReply = "COMMENT_REPLY",
83898
+ IssueApproval = "ISSUE_APPROVAL",
83899
+ IssueDueSoon = "ISSUE_DUE_SOON",
83900
+ NotSet = "NOT_SET",
83901
+ ProjectInviterContext = "PROJECT_INVITER_CONTEXT",
83902
+ ProjectPopularity = "PROJECT_POPULARITY",
83903
+ PrReview = "PR_REVIEW",
83904
+ TeamCollaboratorsCreate = "TEAM_COLLABORATORS_CREATE",
83905
+ TeamCollaboratorsJoin = "TEAM_COLLABORATORS_JOIN",
83906
+ TeamInviterContext = "TEAM_INVITER_CONTEXT",
83907
+ TeamPopularity = "TEAM_POPULARITY"
83908
+ }
83493
83909
  export declare type JiraRecommendedActionConnection = {
83494
83910
  __typename?: 'JiraRecommendedActionConnection';
83495
83911
  edges?: Maybe<Array<Maybe<JiraRecommendedActionEdge>>>;
@@ -83501,7 +83917,7 @@ export declare type JiraRecommendedActionEdge = {
83501
83917
  cursor: Scalars['String']['output'];
83502
83918
  node?: Maybe<JiraRecommendedAction>;
83503
83919
  };
83504
- export declare type JiraRecommendedActionEntity = JiraIssue | JiraPlatformComment | JiraProject | JiraServiceManagementComment;
83920
+ export declare type JiraRecommendedActionEntity = ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraProject | JiraServiceManagementComment | TeamV2;
83505
83921
  export declare type JiraRedaction = {
83506
83922
  __typename?: 'JiraRedaction';
83507
83923
  created?: Maybe<Scalars['DateTime']['output']>;
@@ -86800,6 +87216,7 @@ export declare type JiraSubmitBulkOperationProgress = Node & {
86800
87216
  export declare type JiraSubscription = {
86801
87217
  __typename?: 'JiraSubscription';
86802
87218
  bulkOperationProgressSubscription?: Maybe<JiraIssueBulkOperationProgress>;
87219
+ onAiAgentSessionCreate?: Maybe<JiraAiAgentSession>;
86803
87220
  onAttachmentCreatedByProjects?: Maybe<JiraPlatformAttachment>;
86804
87221
  onAttachmentCreatedByProjectsV2?: Maybe<JiraAttachmentByAriResult>;
86805
87222
  onAttachmentDeletedByProjects?: Maybe<JiraAttachmentDeletedStreamHubPayload>;
@@ -86836,6 +87253,10 @@ export declare type JiraSubscriptionBulkOperationProgressSubscriptionArgs = {
86836
87253
  cloudId: Scalars['ID']['input'];
86837
87254
  subscriptionId: Scalars['ID']['input'];
86838
87255
  };
87256
+ export declare type JiraSubscriptionOnAiAgentSessionCreateArgs = {
87257
+ cloudId: Scalars['ID']['input'];
87258
+ issueId: Scalars['String']['input'];
87259
+ };
86839
87260
  export declare type JiraSubscriptionOnAttachmentCreatedByProjectsArgs = {
86840
87261
  cloudId: Scalars['ID']['input'];
86841
87262
  projectIds: Array<Scalars['String']['input']>;
@@ -90727,8 +91148,8 @@ export declare type JsmConversationClaimConversationPayload = Payload & {
90727
91148
  success: Scalars['Boolean']['output'];
90728
91149
  };
90729
91150
  export declare type JsmConversationCloseConversationInput = {
91151
+ channelId: Scalars['ID']['input'];
90730
91152
  cloudId: Scalars['ID']['input'];
90731
- conversationId: Scalars['ID']['input'];
90732
91153
  };
90733
91154
  export declare type JsmConversationCloseConversationPayload = Payload & {
90734
91155
  __typename?: 'JsmConversationCloseConversationPayload';
@@ -91949,7 +92370,10 @@ export declare type KnowledgeDiscoveryPopularSearchQuery = {
91949
92370
  export declare type KnowledgeDiscoveryPopularSearchQueryResult = KnowledgeDiscoveryPopularSearchQuery | QueryError;
91950
92371
  export declare enum KnowledgeDiscoveryProduct {
91951
92372
  Confluence = "CONFLUENCE",
91952
- Jira = "JIRA"
92373
+ Google = "GOOGLE",
92374
+ Jira = "JIRA",
92375
+ Sharepoint = "SHAREPOINT",
92376
+ Slack = "SLACK"
91953
92377
  }
91954
92378
  export declare type KnowledgeDiscoveryQueryApi = {
91955
92379
  __typename?: 'KnowledgeDiscoveryQueryApi';
@@ -92315,11 +92739,22 @@ export declare enum KnowledgeDiscoveryZeroQueryDateRange {
92315
92739
  Yesterday = "YESTERDAY"
92316
92740
  }
92317
92741
  export declare enum KnowledgeDiscoveryZeroQueryType {
92742
+ CollaboratorProfile = "COLLABORATOR_PROFILE",
92743
+ ConfluencePagesCreated = "CONFLUENCE_PAGES_CREATED",
92318
92744
  ConfluencePagesCreated_7Days = "CONFLUENCE_PAGES_CREATED_7_DAYS",
92745
+ ConfluencePagesCreated_30Days = "CONFLUENCE_PAGES_CREATED_30_DAYS",
92746
+ ConfluencePagesCreatedCollaborator = "CONFLUENCE_PAGES_CREATED_COLLABORATOR",
92747
+ ConfluencePagesCreatedCollaborator_7Days = "CONFLUENCE_PAGES_CREATED_COLLABORATOR_7_DAYS",
92319
92748
  ConfluencePagesCreatedCollaborator_30Days = "CONFLUENCE_PAGES_CREATED_COLLABORATOR_30_DAYS",
92320
92749
  JiraNlq = "JIRA_NLQ",
92321
92750
  JiraNlqCollaborator = "JIRA_NLQ_COLLABORATOR",
92322
92751
  RelatedQuestion = "RELATED_QUESTION",
92752
+ ThirdPartyGoogleCollaboratorDocs = "THIRD_PARTY_GOOGLE_COLLABORATOR_DOCS",
92753
+ ThirdPartyGoogleMyDocs = "THIRD_PARTY_GOOGLE_MY_DOCS",
92754
+ ThirdPartySharepointCollaboratorDocs = "THIRD_PARTY_SHAREPOINT_COLLABORATOR_DOCS",
92755
+ ThirdPartySharepointMyDocs = "THIRD_PARTY_SHAREPOINT_MY_DOCS",
92756
+ ThirdPartySlackCollaboratorMessages = "THIRD_PARTY_SLACK_COLLABORATOR_MESSAGES",
92757
+ ThirdPartySlackMyMessages = "THIRD_PARTY_SLACK_MY_MESSAGES",
92323
92758
  WhoIs = "WHO_IS"
92324
92759
  }
92325
92760
  export declare enum KnowledgeGraphContentType {
@@ -93638,7 +94073,7 @@ export declare type MarketplaceConsoleBankDetailsInput = {
93638
94073
  bankAccountType?: InputMaybe<MarketplaceConsoleBankAccountType>;
93639
94074
  bankAddress?: InputMaybe<Scalars['String']['input']>;
93640
94075
  bankCity: Scalars['String']['input'];
93641
- bankCountry: Scalars['String']['input'];
94076
+ bankCountryCode: Scalars['String']['input'];
93642
94077
  bankName: Scalars['String']['input'];
93643
94078
  bankPostCode?: InputMaybe<Scalars['String']['input']>;
93644
94079
  bankState?: InputMaybe<Scalars['String']['input']>;
@@ -94332,6 +94767,7 @@ export declare type MarketplaceConsoleMakerResponse = MarketplaceConsoleKnownErr
94332
94767
  export declare type MarketplaceConsoleMutationApi = {
94333
94768
  __typename?: 'MarketplaceConsoleMutationApi';
94334
94769
  activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
94770
+ archiveMaker?: Maybe<MarketplaceConsoleMakerResponse>;
94335
94771
  createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
94336
94772
  createAppSoftwareVersion?: Maybe<MarketplaceConsoleCreateAppSoftwareVersionMutationOutput>;
94337
94773
  createEcoHelpTicket?: Maybe<Scalars['ID']['output']>;
@@ -94357,6 +94793,9 @@ export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
94357
94793
  activationRequest: MarketplaceConsoleEditionsActivationRequest;
94358
94794
  product: MarketplaceConsoleEditionsInput;
94359
94795
  };
94796
+ export declare type MarketplaceConsoleMutationApiArchiveMakerArgs = {
94797
+ developerId: Scalars['ID']['input'];
94798
+ };
94360
94799
  export declare type MarketplaceConsoleMutationApiCreateAppSoftwareTokenArgs = {
94361
94800
  appSoftwareId: Scalars['String']['input'];
94362
94801
  };
@@ -97823,7 +98262,6 @@ export declare type MercuryInsightsQueryApiFocusAreaInsightsArgs = {
97823
98262
  export declare type MercuryInsightsQueryApiFocusAreaWorkSuggestionsArgs = {
97824
98263
  first?: InputMaybe<Scalars['Int']['input']>;
97825
98264
  focusAreaId: Scalars['ID']['input'];
97826
- textQuery?: InputMaybe<Scalars['String']['input']>;
97827
98265
  workContainerAri?: InputMaybe<Scalars['String']['input']>;
97828
98266
  };
97829
98267
  export declare type MercuryInvestmentCategory = Node & {
@@ -100313,8 +100751,10 @@ export declare type Mutation = {
100313
100751
  confluence_updateCalendarSandboxEventTypeReminder?: Maybe<ConfluenceUpdateCalendarSandboxEventTypeReminderPayload>;
100314
100752
  confluence_updateCalendarView?: Maybe<ConfluenceUpdateCalendarViewPayload>;
100315
100753
  confluence_updateContentAccessRequest?: Maybe<ConfluenceUpdateContentAccessRequestPayload>;
100754
+ confluence_updateContentAppearance?: Maybe<ConfluenceUpdateContentAppearancePayload>;
100316
100755
  confluence_updateContentDirectRestrictions?: Maybe<ConfluenceUpdateContentDirectRestrictionsPayload>;
100317
100756
  confluence_updateContentMode?: Maybe<ConfluenceUpdateContentModePayload>;
100757
+ confluence_updateCoverPicture?: Maybe<ConfluenceUpdateCoverPicturePayload>;
100318
100758
  confluence_updateCustomContentPermissions?: Maybe<ConfluenceUpdateCustomContentPermissionsPayload>;
100319
100759
  confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
100320
100760
  confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
@@ -100325,6 +100765,7 @@ export declare type Mutation = {
100325
100765
  confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
100326
100766
  confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
100327
100767
  confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
100768
+ confluence_updateTitleEmoji?: Maybe<ConfluenceUpdateTitleEmojiPayload>;
100328
100769
  confluence_updateTopic?: Maybe<ConfluenceUpdateTopicPayload>;
100329
100770
  confluence_updateVote?: Maybe<ConfluenceUpdateVotePayload>;
100330
100771
  confluence_updateWatermarkConfig?: Maybe<ConfluenceUpdateWatermarkConfigPayload>;
@@ -100406,6 +100847,7 @@ export declare type Mutation = {
100406
100847
  csmAi_deleteAction?: Maybe<CsmAiDeleteActionPayload>;
100407
100848
  csmAi_deleteCoachingContent?: Maybe<CsmAiDeleteCoachingContentPayload>;
100408
100849
  csmAi_deleteKnowledgeSource?: Maybe<CsmAiDeleteKnowledgeSourcePayload>;
100850
+ csmAi_deleteWidget?: Maybe<CsmAiDeleteWidgetPayload>;
100409
100851
  csmAi_generateWidgetClientKey?: Maybe<CsmAiGenerateClientKeyPayload>;
100410
100852
  csmAi_publishAgent?: Maybe<CsmAiAgentVersionPayload>;
100411
100853
  csmAi_restoreAgentVersionAsDraft?: Maybe<CsmAiAgentVersionPayload>;
@@ -100864,6 +101306,7 @@ export declare type Mutation = {
100864
101306
  spf_createAsk?: Maybe<SpfUpsertAskPayload>;
100865
101307
  spf_createAskComment?: Maybe<SpfUpsertAskCommentPayload>;
100866
101308
  spf_createAskUpdate?: Maybe<SpfUpsertAskUpdatePayload>;
101309
+ spf_createPlan?: Maybe<SpfUpsertPlanPayload>;
100867
101310
  spf_createPlanScenario?: Maybe<SpfUpsertPlanScenarioPayload>;
100868
101311
  spf_deleteAsk?: Maybe<SpfDeleteAskPayload>;
100869
101312
  spf_deleteAskComment?: Maybe<SpfDeleteAskCommentPayload>;
@@ -101838,6 +102281,10 @@ export declare type MutationConfluence_UpdateContentAccessRequestArgs = {
101838
102281
  cloudId: Scalars['ID']['input'];
101839
102282
  updateContentAccessRequestInput: ConfluenceUpdateContentAccessRequestInput;
101840
102283
  };
102284
+ export declare type MutationConfluence_UpdateContentAppearanceArgs = {
102285
+ cloudId: Scalars['ID']['input'];
102286
+ input: ConfluenceUpdateContentAppearanceInput;
102287
+ };
101841
102288
  export declare type MutationConfluence_UpdateContentDirectRestrictionsArgs = {
101842
102289
  cloudId: Scalars['ID']['input'];
101843
102290
  input: ConfluenceUpdateContentDirectRestrictionsInput;
@@ -101846,6 +102293,10 @@ export declare type MutationConfluence_UpdateContentModeArgs = {
101846
102293
  cloudId: Scalars['ID']['input'];
101847
102294
  input: ConfluenceUpdateContentModeInput;
101848
102295
  };
102296
+ export declare type MutationConfluence_UpdateCoverPictureArgs = {
102297
+ cloudId: Scalars['ID']['input'];
102298
+ input: ConfluenceUpdateCoverPictureInput;
102299
+ };
101849
102300
  export declare type MutationConfluence_UpdateCustomContentPermissionsArgs = {
101850
102301
  cloudId: Scalars['ID']['input'];
101851
102302
  input: ConfluenceUpdateCustomContentPermissionsInput;
@@ -101888,6 +102339,10 @@ export declare type MutationConfluence_UpdateTeamPresenceSpaceSettingsArgs = {
101888
102339
  cloudId: Scalars['ID']['input'];
101889
102340
  input: ConfluenceUpdateTeamPresenceSpaceSettingsInput;
101890
102341
  };
102342
+ export declare type MutationConfluence_UpdateTitleEmojiArgs = {
102343
+ cloudId: Scalars['ID']['input'];
102344
+ input: ConfluenceUpdateTitleEmojiInput;
102345
+ };
101891
102346
  export declare type MutationConfluence_UpdateTopicArgs = {
101892
102347
  cloudId: Scalars['ID']['input'];
101893
102348
  input: ConfluenceUpdateTopicInput;
@@ -102180,6 +102635,11 @@ export declare type MutationCsmAi_DeleteKnowledgeSourceArgs = {
102180
102635
  csmAiKnowledgeSourceId: Scalars['ID']['input'];
102181
102636
  helpCenterAri: Scalars['ID']['input'];
102182
102637
  };
102638
+ export declare type MutationCsmAi_DeleteWidgetArgs = {
102639
+ csmAiHubId: Scalars['ID']['input'];
102640
+ helpCenterAri: Scalars['ID']['input'];
102641
+ widgetId: Scalars['ID']['input'];
102642
+ };
102183
102643
  export declare type MutationCsmAi_GenerateWidgetClientKeyArgs = {
102184
102644
  helpCenterAri: Scalars['ID']['input'];
102185
102645
  widgetId: Scalars['ID']['input'];
@@ -103619,6 +104079,9 @@ export declare type MutationSpf_CreateAskCommentArgs = {
103619
104079
  export declare type MutationSpf_CreateAskUpdateArgs = {
103620
104080
  input: SpfCreateAskUpdateInput;
103621
104081
  };
104082
+ export declare type MutationSpf_CreatePlanArgs = {
104083
+ input: SpfCreatePlanInput;
104084
+ };
103622
104085
  export declare type MutationSpf_CreatePlanScenarioArgs = {
103623
104086
  input: SpfCreatePlanScenarioInput;
103624
104087
  };
@@ -106831,11 +107294,14 @@ export declare type PublishConditionsDialog = {
106831
107294
  };
106832
107295
  export declare type PublishedContentProperties = {
106833
107296
  __typename?: 'PublishedContentProperties';
107297
+ contentAppearance?: Maybe<Scalars['String']['output']>;
106834
107298
  contentMode?: Maybe<Scalars['String']['output']>;
107299
+ coverPicture?: Maybe<Scalars['String']['output']>;
106835
107300
  coverPictureWidth?: Maybe<Scalars['String']['output']>;
106836
107301
  defaultTitleEmoji?: Maybe<Scalars['String']['output']>;
106837
107302
  externalVersionId?: Maybe<Scalars['String']['output']>;
106838
107303
  generatedBy?: Maybe<Scalars['String']['output']>;
107304
+ titleEmoji?: Maybe<Scalars['String']['output']>;
106839
107305
  versionContainsAIContent?: Maybe<Scalars['Boolean']['output']>;
106840
107306
  };
106841
107307
  export declare type PullRequestStatusInTimeRangeQueryFilter = {
@@ -107276,7 +107742,6 @@ export declare type Query = {
107276
107742
  countGroupBySpace?: Maybe<CountGroupBySpace>;
107277
107743
  countGroupByUser?: Maybe<CountGroupByUser>;
107278
107744
  countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
107279
- cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
107280
107745
  cpls_customContributionTargets?: Maybe<CplsCustomContributionTargetConnection>;
107281
107746
  cpls_customContributionTargetsByIds?: Maybe<Array<Maybe<CplsCustomContributionTarget>>>;
107282
107747
  cpls_filters?: Maybe<CplsFilterConfigurationType>;
@@ -108182,7 +108647,6 @@ export declare type QueryAgentStudio_DatasetListArgs = {
108182
108647
  first?: InputMaybe<Scalars['Int']['input']>;
108183
108648
  productType: AgentStudioProductType;
108184
108649
  projectContainerAri: Scalars['ID']['input'];
108185
- projectId?: InputMaybe<Scalars['ID']['input']>;
108186
108650
  };
108187
108651
  export declare type QueryAgentStudio_DatasetsArgs = {
108188
108652
  after?: InputMaybe<Scalars['String']['input']>;
@@ -108190,7 +108654,6 @@ export declare type QueryAgentStudio_DatasetsArgs = {
108190
108654
  first?: InputMaybe<Scalars['Int']['input']>;
108191
108655
  productType: AgentStudioProductType;
108192
108656
  projectContainerAri: Scalars['ID']['input'];
108193
- projectId?: InputMaybe<Scalars['ID']['input']>;
108194
108657
  };
108195
108658
  export declare type QueryAgentStudio_EvaluationProjectArgs = {
108196
108659
  cloudId: Scalars['String']['input'];
@@ -109733,9 +110196,6 @@ export declare type QueryCountUsersGroupByPageArgs = {
109733
110196
  sortOrder?: InputMaybe<Scalars['String']['input']>;
109734
110197
  startTime: Scalars['String']['input'];
109735
110198
  };
109736
- export declare type QueryCpls_CapacityPlanningPeopleViewArgs = {
109737
- id: Scalars['ID']['input'];
109738
- };
109739
110199
  export declare type QueryCpls_CustomContributionTargetsArgs = {
109740
110200
  input: CplsSearchCustomContributionTargetsInput;
109741
110201
  };
@@ -112595,10 +113055,11 @@ export declare enum RadarUserFieldPermission {
112595
113055
  }
112596
113056
  export declare type RadarView = Node & {
112597
113057
  __typename?: 'RadarView';
113058
+ creator?: Maybe<User>;
113059
+ creatorAaid: Scalars['ID']['output'];
112598
113060
  groupingField?: Maybe<Scalars['String']['output']>;
112599
113061
  id: Scalars['ID']['output'];
112600
113062
  orderedColumns?: Maybe<Array<Scalars['String']['output']>>;
112601
- ownerAaid: Scalars['ID']['output'];
112602
113063
  pageName: RadarViewPageName;
112603
113064
  rql?: Maybe<Scalars['String']['output']>;
112604
113065
  updatedAt: Scalars['DateTime']['output'];
@@ -135964,6 +136425,16 @@ export declare type SpfCreateAskUpdateInput = {
135964
136425
  status?: InputMaybe<SpfAskStatus>;
135965
136426
  targetDate?: InputMaybe<SpfAskTargetDateInput>;
135966
136427
  };
136428
+ export declare type SpfCreatePlanInput = {
136429
+ approverIds?: InputMaybe<Array<Scalars['String']['input']>>;
136430
+ cloudId: Scalars['ID']['input'];
136431
+ description?: InputMaybe<Scalars['String']['input']>;
136432
+ name: Scalars['String']['input'];
136433
+ ownerIds: Array<Scalars['String']['input']>;
136434
+ portfolioId: Scalars['String']['input'];
136435
+ status: SpfPlanStatus;
136436
+ timeframe: SpfPlanTimeframeInput;
136437
+ };
135967
136438
  export declare type SpfCreatePlanScenarioInput = {
135968
136439
  name: Scalars['String']['input'];
135969
136440
  planId: Scalars['ID']['input'];
@@ -136044,6 +136515,7 @@ export declare type SpfPlan = Node & {
136044
136515
  scenarios?: Maybe<SpfPlanScenarioConnection>;
136045
136516
  status: SpfPlanStatus;
136046
136517
  timeframe: SpfPlanTimeframe;
136518
+ transitions?: Maybe<Array<Maybe<SpfPlanTransition>>>;
136047
136519
  updatedAt?: Maybe<Scalars['DateTime']['output']>;
136048
136520
  updatedBy?: Maybe<User>;
136049
136521
  };
@@ -136091,7 +136563,9 @@ export declare enum SpfPlanScenarioStatus {
136091
136563
  Draft = "DRAFT"
136092
136564
  }
136093
136565
  export declare enum SpfPlanStatus {
136094
- Draft = "DRAFT"
136566
+ Canceled = "CANCELED",
136567
+ Draft = "DRAFT",
136568
+ Final = "FINAL"
136095
136569
  }
136096
136570
  export declare type SpfPlanTimeframe = {
136097
136571
  __typename?: 'SpfPlanTimeframe';
@@ -136109,6 +136583,12 @@ export declare type SpfPlanTimeframeInput = {
136109
136583
  startDate: Scalars['String']['input'];
136110
136584
  timeframeGranularity: SpfPlanTimeframeGranularity;
136111
136585
  };
136586
+ export declare type SpfPlanTransition = {
136587
+ __typename?: 'SpfPlanTransition';
136588
+ planId: Scalars['String']['output'];
136589
+ status?: Maybe<SpfPlanStatus>;
136590
+ unmetRequirements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
136591
+ };
136112
136592
  export declare type SpfResolveImpactedWorkUrlPayload = {
136113
136593
  __typename?: 'SpfResolveImpactedWorkUrlPayload';
136114
136594
  impactedWorkId?: Maybe<Scalars['String']['output']>;
@@ -137646,8 +138126,10 @@ export declare type Subscription = {
137646
138126
  jira?: Maybe<JiraSubscription>;
137647
138127
  jiraProductDiscovery?: Maybe<JpdSubscriptions>;
137648
138128
  jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
138129
+ jsmChannels_getResolutionPlanGraphUpdate: JsmChannelsResolutionPlanGraphResult;
137649
138130
  jsmChannels_onServiceAgentResolutionStateByTicketIdUpdate: JsmChannelsTicketServiceAgentResolutionStateResult;
137650
138131
  jsmChat?: Maybe<JsmChatSubscription>;
138132
+ jsmConversation_dummy?: Maybe<Scalars['String']['output']>;
137651
138133
  liveChat_updates?: Maybe<LiveChatUpdate>;
137652
138134
  mercury?: Maybe<MercurySubscriptionApi>;
137653
138135
  migration: MigrationSubscription;
@@ -137707,6 +138189,10 @@ export declare type SubscriptionJpdViewsService_EchoArgs = {
137707
138189
  cloudId: Scalars['ID']['input'];
137708
138190
  message: Scalars['String']['input'];
137709
138191
  };
138192
+ export declare type SubscriptionJsmChannels_GetResolutionPlanGraphUpdateArgs = {
138193
+ jiraProjectAri: Scalars['ID']['input'];
138194
+ planID: Scalars['ID']['input'];
138195
+ };
137710
138196
  export declare type SubscriptionJsmChannels_OnServiceAgentResolutionStateByTicketIdUpdateArgs = {
137711
138197
  jiraProjectAri: Scalars['ID']['input'];
137712
138198
  workItemId: Scalars['ID']['input'];
@@ -142430,6 +142916,7 @@ export declare type TrelloApplication = {
142430
142916
  id: Scalars['ID']['output'];
142431
142917
  iframeConnectorUrl?: Maybe<Scalars['URL']['output']>;
142432
142918
  key?: Maybe<Scalars['String']['output']>;
142919
+ legacyName?: Maybe<Scalars['String']['output']>;
142433
142920
  listings?: Maybe<Array<TrelloApplicationListing>>;
142434
142921
  moderatedState?: Maybe<Scalars['String']['output']>;
142435
142922
  name?: Maybe<Scalars['String']['output']>;
@@ -142600,6 +143087,8 @@ export declare type TrelloBaseBoardUpdated = {
142600
143087
  labels?: Maybe<TrelloLabelConnectionUpdated>;
142601
143088
  lists?: Maybe<TrelloListUpdatedConnection>;
142602
143089
  objectId?: Maybe<Scalars['ID']['output']>;
143090
+ onPlannerEventCardsDeleted?: Maybe<Array<TrelloPlannerEventCardDeleted>>;
143091
+ plannerEventCards?: Maybe<TrelloCardUpdatedConnection>;
142603
143092
  workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
142604
143093
  };
142605
143094
  export declare type TrelloBaseCard = {
@@ -142676,6 +143165,7 @@ export declare type TrelloBaseCardUpdated = {
142676
143165
  onActionDeleted?: Maybe<Array<TrelloActionDeleted>>;
142677
143166
  onChecklistDeleted?: Maybe<Array<TrelloChecklistDeleted>>;
142678
143167
  pinned?: Maybe<Scalars['Boolean']['output']>;
143168
+ plannerEvents?: Maybe<TrelloCardPlannerEventConnectionUpdated>;
142679
143169
  position?: Maybe<Scalars['Float']['output']>;
142680
143170
  role?: Maybe<TrelloCardRole>;
142681
143171
  shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
@@ -143413,6 +143903,14 @@ export declare type TrelloCardPlannerEvent = {
143413
143903
  id: Scalars['ID']['output'];
143414
143904
  objectId: Scalars['ID']['output'];
143415
143905
  };
143906
+ export declare type TrelloCardPlannerEventConnectionUpdated = {
143907
+ __typename?: 'TrelloCardPlannerEventConnectionUpdated';
143908
+ edges?: Maybe<Array<TrelloCardPlannerEventEdgeUpdated>>;
143909
+ };
143910
+ export declare type TrelloCardPlannerEventEdgeUpdated = {
143911
+ __typename?: 'TrelloCardPlannerEventEdgeUpdated';
143912
+ node: TrelloCardPlannerEvent;
143913
+ };
143416
143914
  export declare enum TrelloCardRole {
143417
143915
  Board = "BOARD",
143418
143916
  Link = "LINK",
@@ -143452,6 +143950,7 @@ export declare type TrelloCardUpdated = TrelloBaseCardUpdated & {
143452
143950
  onChecklistDeleted?: Maybe<Array<TrelloChecklistDeleted>>;
143453
143951
  onPowerUpDataDeleted?: Maybe<Array<TrelloPowerUpDataDeleted>>;
143454
143952
  pinned?: Maybe<Scalars['Boolean']['output']>;
143953
+ plannerEvents?: Maybe<TrelloCardPlannerEventConnectionUpdated>;
143455
143954
  position?: Maybe<Scalars['Float']['output']>;
143456
143955
  powerUpData?: Maybe<TrelloPowerUpDataConnectionUpdated>;
143457
143956
  role?: Maybe<TrelloCardRole>;
@@ -144197,6 +144696,7 @@ export declare type TrelloInboxCardUpdated = TrelloBaseCardUpdated & {
144197
144696
  onActionDeleted?: Maybe<Array<TrelloActionDeleted>>;
144198
144697
  onChecklistDeleted?: Maybe<Array<TrelloChecklistDeleted>>;
144199
144698
  pinned?: Maybe<Scalars['Boolean']['output']>;
144699
+ plannerEvents?: Maybe<TrelloCardPlannerEventConnectionUpdated>;
144200
144700
  position?: Maybe<Scalars['Float']['output']>;
144201
144701
  role?: Maybe<TrelloCardRole>;
144202
144702
  shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
@@ -144231,6 +144731,8 @@ export declare type TrelloInboxUpdated = TrelloBaseBoardUpdated & {
144231
144731
  labels?: Maybe<TrelloLabelConnectionUpdated>;
144232
144732
  lists?: Maybe<TrelloListUpdatedConnection>;
144233
144733
  objectId?: Maybe<Scalars['ID']['output']>;
144734
+ onPlannerEventCardsDeleted?: Maybe<Array<TrelloPlannerEventCardDeleted>>;
144735
+ plannerEventCards?: Maybe<TrelloCardUpdatedConnection>;
144234
144736
  prefs?: Maybe<TrelloInboxPrefs>;
144235
144737
  workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
144236
144738
  };
@@ -144500,6 +145002,10 @@ export declare type TrelloMemberNonPublicData = {
144500
145002
  initials?: Maybe<Scalars['String']['output']>;
144501
145003
  };
144502
145004
  export declare type TrelloMemberNotificationsUpdated = TrelloInboxNotificationsUpdated;
145005
+ export declare type TrelloMemberPlannerEventCardsUpdated = {
145006
+ __typename?: 'TrelloMemberPlannerEventCardsUpdated';
145007
+ boardOrInboxUpdated?: Maybe<TrelloBaseBoardUpdated>;
145008
+ };
144503
145009
  export declare type TrelloMemberPrefs = {
144504
145010
  __typename?: 'TrelloMemberPrefs';
144505
145011
  colorBlind?: Maybe<Scalars['Boolean']['output']>;
@@ -145960,7 +146466,7 @@ export declare type TrelloSubscriptionApi = {
145960
146466
  onBoardUpdated?: Maybe<TrelloBoardUpdated>;
145961
146467
  onCardBatchUpdated?: Maybe<TrelloCardBatch>;
145962
146468
  onInboxUpdated?: Maybe<TrelloInboxUpdated>;
145963
- onMemberPlannerBadgesUpdated?: Maybe<TrelloBoardUpdated>;
146469
+ onMemberPlannerEventCardsUpdated?: Maybe<TrelloMemberPlannerEventCardsUpdated>;
145964
146470
  onMemberUpdated?: Maybe<TrelloMemberUpdated>;
145965
146471
  onWorkspaceUpdated?: Maybe<TrelloWorkspaceUpdated>;
145966
146472
  };