@forge/cli-shared 8.7.1 → 8.7.2-next.1

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.
@@ -526,6 +526,14 @@ export declare enum AvpDashboardStatusAction {
526
526
  Restore = "RESTORE",
527
527
  Trash = "TRASH"
528
528
  }
529
+ export declare type AvpDashboardTemplate = {
530
+ __typename?: 'AVPDashboardTemplate';
531
+ description?: Maybe<Scalars['String']['output']>;
532
+ id: Scalars['String']['output'];
533
+ products: Array<Scalars['String']['output']>;
534
+ thumbnailUrl?: Maybe<Scalars['String']['output']>;
535
+ title: Scalars['String']['output'];
536
+ };
529
537
  export declare type AvpDashboardTemplateInput = {
530
538
  containerAri?: InputMaybe<Scalars['ID']['input']>;
531
539
  fromTemplate: Scalars['String']['input'];
@@ -610,6 +618,11 @@ export declare type AvpFilterResponse = {
610
618
  chart?: Maybe<AvpChart>;
611
619
  envVar?: Maybe<AvpEnvVarWithChart>;
612
620
  };
621
+ export declare type AvpGetDashboardTemplatesInput = {
622
+ cloudId: Scalars['ID']['input'];
623
+ productKey?: InputMaybe<Scalars['String']['input']>;
624
+ workspaceId: Scalars['ID']['input'];
625
+ };
613
626
  export declare type AvpHotTierFilterConfig = {
614
627
  __typename?: 'AVPHotTierFilterConfig';
615
628
  datasourceLocator?: Maybe<AvpDatasourceLocator>;
@@ -2031,7 +2044,7 @@ export declare type AdminUnit = {
2031
2044
  apps?: Maybe<AdminUnitAppsConnection>;
2032
2045
  directory?: Maybe<AdminDirectory>;
2033
2046
  id: Scalars['ID']['output'];
2034
- name?: Maybe<Scalars['String']['output']>;
2047
+ name: Scalars['String']['output'];
2035
2048
  orgId: Scalars['ID']['output'];
2036
2049
  userStats?: Maybe<AdminUnitUserStats>;
2037
2050
  };
@@ -2058,7 +2071,7 @@ export declare type AdminUnitAppsConnection = {
2058
2071
  export declare type AdminUnitConnection = {
2059
2072
  __typename?: 'AdminUnitConnection';
2060
2073
  edges?: Maybe<Array<AdminUnitEdge>>;
2061
- pageInfo: PageInfo;
2074
+ pageInfo: AdminUnitPageInfo;
2062
2075
  };
2063
2076
  export declare type AdminUnitCreateInput = {
2064
2077
  name: Scalars['String']['input'];
@@ -2072,6 +2085,7 @@ export declare type AdminUnitCreatePayload = {
2072
2085
  export declare type AdminUnitCreateStatus = {
2073
2086
  __typename?: 'AdminUnitCreateStatus';
2074
2087
  status: AdminUnitCreateStatusEnum;
2088
+ unitId: Scalars['ID']['output'];
2075
2089
  };
2076
2090
  export declare enum AdminUnitCreateStatusEnum {
2077
2091
  Failed = "FAILED",
@@ -2080,7 +2094,14 @@ export declare enum AdminUnitCreateStatusEnum {
2080
2094
  }
2081
2095
  export declare type AdminUnitEdge = {
2082
2096
  __typename?: 'AdminUnitEdge';
2083
- node?: Maybe<AdminUnit>;
2097
+ node: AdminUnit;
2098
+ };
2099
+ export declare type AdminUnitPageInfo = {
2100
+ __typename?: 'AdminUnitPageInfo';
2101
+ hasNextPage: Scalars['Boolean']['output'];
2102
+ hasPreviousPage: Scalars['Boolean']['output'];
2103
+ nextCursor?: Maybe<Scalars['String']['output']>;
2104
+ previousCursor?: Maybe<Scalars['String']['output']>;
2084
2105
  };
2085
2106
  export declare type AdminUnitUserStats = {
2086
2107
  __typename?: 'AdminUnitUserStats';
@@ -2429,6 +2450,7 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
2429
2450
  isDefault: Scalars['Boolean']['output'];
2430
2451
  isValid: AgentStudioScenarioValidation;
2431
2452
  knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
2453
+ mcpServerIds: Array<Scalars['ID']['output']>;
2432
2454
  mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
2433
2455
  name: Scalars['String']['output'];
2434
2456
  tools?: Maybe<Array<AgentStudioTool>>;
@@ -2668,6 +2690,11 @@ export declare type AgentStudioIncomingEmail = {
2668
2690
  __typename?: 'AgentStudioIncomingEmail';
2669
2691
  emailAddress?: Maybe<Scalars['String']['output']>;
2670
2692
  };
2693
+ export declare type AgentStudioInsightsConfiguration = {
2694
+ __typename?: 'AgentStudioInsightsConfiguration';
2695
+ isHandoffConfigured?: Maybe<Scalars['Boolean']['output']>;
2696
+ };
2697
+ export declare type AgentStudioInsightsConfigurationResult = AgentStudioInsightsConfiguration | QueryError;
2671
2698
  export declare type AgentStudioJiraChannel = AgentStudioChannel & {
2672
2699
  __typename?: 'AgentStudioJiraChannel';
2673
2700
  connected?: Maybe<Scalars['Boolean']['output']>;
@@ -2752,6 +2779,7 @@ export declare type AgentStudioScenario = {
2752
2779
  isDefault: Scalars['Boolean']['output'];
2753
2780
  isValid: AgentStudioScenarioValidation;
2754
2781
  knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
2782
+ mcpServerIds: Array<Scalars['ID']['output']>;
2755
2783
  mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
2756
2784
  name: Scalars['String']['output'];
2757
2785
  tools?: Maybe<Array<AgentStudioTool>>;
@@ -2887,6 +2915,7 @@ export declare type AgentStudioTool = {
2887
2915
  iconUrl?: Maybe<Scalars['String']['output']>;
2888
2916
  id: Scalars['ID']['output'];
2889
2917
  integrationKey?: Maybe<Scalars['String']['output']>;
2918
+ tags?: Maybe<Array<Scalars['String']['output']>>;
2890
2919
  };
2891
2920
  export declare enum AgentStudioToolDefinitionSource {
2892
2921
  ConvoAi = "CONVO_AI",
@@ -9020,6 +9049,24 @@ export declare type CloudAppScope = {
9020
9049
  id: Scalars['ID']['output'];
9021
9050
  name: Scalars['String']['output'];
9022
9051
  };
9052
+ export declare enum CloudIdProduct {
9053
+ Avp = "AVP",
9054
+ Beacon = "BEACON",
9055
+ Compass = "COMPASS",
9056
+ Confluence = "CONFLUENCE",
9057
+ Devai = "DEVAI",
9058
+ Goal = "GOAL",
9059
+ JiraCustomerService = "JIRA_CUSTOMER_SERVICE",
9060
+ JiraProductDiscovery = "JIRA_PRODUCT_DISCOVERY",
9061
+ JiraServiceDesk = "JIRA_SERVICE_DESK",
9062
+ JiraSoftware = "JIRA_SOFTWARE",
9063
+ Loom = "LOOM",
9064
+ Mercury = "MERCURY",
9065
+ Opsgenie = "OPSGENIE",
9066
+ Project = "PROJECT",
9067
+ Radar = "RADAR",
9068
+ Statuspage = "STATUSPAGE"
9069
+ }
9023
9070
  export declare type CodeInJira = {
9024
9071
  __typename?: 'CodeInJira';
9025
9072
  siteConfiguration?: Maybe<CodeInJiraSiteConfiguration>;
@@ -15236,6 +15283,7 @@ export declare type ConfluenceComment = {
15236
15283
  commentId?: Maybe<Scalars['ID']['output']>;
15237
15284
  container?: Maybe<ConfluenceCommentContainer>;
15238
15285
  id: Scalars['ID']['output'];
15286
+ latestVersion?: Maybe<ConfluenceContentVersion>;
15239
15287
  links?: Maybe<ConfluenceCommentLinks>;
15240
15288
  name?: Maybe<Scalars['String']['output']>;
15241
15289
  status?: Maybe<ConfluenceCommentStatus>;
@@ -15371,6 +15419,21 @@ export declare type ConfluenceContentBodyInput = {
15371
15419
  representation: ConfluenceContentRepresentation;
15372
15420
  value: Scalars['String']['input'];
15373
15421
  };
15422
+ export declare type ConfluenceContentInput = {
15423
+ contentBody?: InputMaybe<Scalars['String']['input']>;
15424
+ contentId: Scalars['ID']['input'];
15425
+ contentStatus?: InputMaybe<Scalars['String']['input']>;
15426
+ contentType?: InputMaybe<Scalars['String']['input']>;
15427
+ minorEdit?: InputMaybe<Scalars['Boolean']['input']>;
15428
+ ncsStepVersion?: InputMaybe<Scalars['String']['input']>;
15429
+ restrictions?: InputMaybe<PageRestrictionsInput>;
15430
+ schedulePublishDate?: InputMaybe<Scalars['String']['input']>;
15431
+ spaceKey?: InputMaybe<Scalars['String']['input']>;
15432
+ syncRev?: InputMaybe<Scalars['String']['input']>;
15433
+ title?: InputMaybe<Scalars['String']['input']>;
15434
+ version?: InputMaybe<Scalars['Int']['input']>;
15435
+ versionMessage?: InputMaybe<Scalars['String']['input']>;
15436
+ };
15374
15437
  export declare type ConfluenceContentMetadata = {
15375
15438
  __typename?: 'ConfluenceContentMetadata';
15376
15439
  collaborativeEditingService?: Maybe<ConfluenceCollaborativeEditingService>;
@@ -15512,6 +15575,17 @@ export declare enum ConfluenceContributionStatus {
15512
15575
  Unknown = "UNKNOWN",
15513
15576
  Unpublished = "UNPUBLISHED"
15514
15577
  }
15578
+ export declare type ConfluenceConvertContentToBlogpostInput = {
15579
+ confluenceContentInput: ConfluenceContentInput;
15580
+ destinationSpaceKey: Scalars['String']['input'];
15581
+ sourceStatus: Scalars['String']['input'];
15582
+ };
15583
+ export declare type ConfluenceConvertContentToBlogpostPayload = Payload & {
15584
+ __typename?: 'ConfluenceConvertContentToBlogpostPayload';
15585
+ content?: Maybe<Content>;
15586
+ errors?: Maybe<Array<MutationError>>;
15587
+ success: Scalars['Boolean']['output'];
15588
+ };
15515
15589
  export declare type ConfluenceConvertContentToFolderPayload = {
15516
15590
  __typename?: 'ConfluenceConvertContentToFolderPayload';
15517
15591
  content?: Maybe<Content>;
@@ -16318,6 +16392,7 @@ export declare type ConfluenceFooterComment = ConfluenceComment & Node & {
16318
16392
  commentId?: Maybe<Scalars['ID']['output']>;
16319
16393
  container?: Maybe<ConfluenceCommentContainer>;
16320
16394
  id: Scalars['ID']['output'];
16395
+ latestVersion?: Maybe<ConfluenceContentVersion>;
16321
16396
  links?: Maybe<ConfluenceCommentLinks>;
16322
16397
  name?: Maybe<Scalars['String']['output']>;
16323
16398
  status?: Maybe<ConfluenceCommentStatus>;
@@ -16530,6 +16605,7 @@ export declare type ConfluenceInlineComment = ConfluenceComment & Node & {
16530
16605
  commentId?: Maybe<Scalars['ID']['output']>;
16531
16606
  container?: Maybe<ConfluenceCommentContainer>;
16532
16607
  id: Scalars['ID']['output'];
16608
+ latestVersion?: Maybe<ConfluenceContentVersion>;
16533
16609
  links?: Maybe<ConfluenceCommentLinks>;
16534
16610
  name?: Maybe<Scalars['String']['output']>;
16535
16611
  resolutionStatus?: Maybe<ConfluenceInlineCommentResolutionStatus>;
@@ -17688,6 +17764,9 @@ export declare type ConfluenceQueryApiSearchLabelsArgs = {
17688
17764
  limit?: InputMaybe<Scalars['Int']['input']>;
17689
17765
  searchText: Scalars['String']['input'];
17690
17766
  };
17767
+ export declare type ConfluenceQueryApiSiteConfigurationArgs = {
17768
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
17769
+ };
17691
17770
  export declare type ConfluenceQueryApiSpaceArgs = {
17692
17771
  id: Scalars['ID']['input'];
17693
17772
  };
@@ -17717,6 +17796,7 @@ export declare type ConfluenceQuestion = {
17717
17796
  id: Scalars['ID']['output'];
17718
17797
  labels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
17719
17798
  latestVersion?: Maybe<ConfluenceContentVersion>;
17799
+ operations?: Maybe<Array<Maybe<ConfluenceQuestionsOperationCheck>>>;
17720
17800
  title?: Maybe<Scalars['String']['output']>;
17721
17801
  voteProperties: ConfluenceVotePropertyValue;
17722
17802
  };
@@ -17744,6 +17824,23 @@ export declare type ConfluenceQuestionsConfiguration = {
17744
17824
  isConfluenceQuestionsEnabled?: Maybe<Scalars['Boolean']['output']>;
17745
17825
  isConfluenceQuestionsLicensed?: Maybe<Scalars['Boolean']['output']>;
17746
17826
  };
17827
+ export declare type ConfluenceQuestionsOperationCheck = {
17828
+ __typename?: 'ConfluenceQuestionsOperationCheck';
17829
+ operation?: Maybe<ConfluenceQuestionsOperationName>;
17830
+ target?: Maybe<ConfluenceQuestionsOperationTarget>;
17831
+ };
17832
+ export declare enum ConfluenceQuestionsOperationName {
17833
+ Create = "CREATE",
17834
+ Delete = "DELETE",
17835
+ Read = "READ",
17836
+ Update = "UPDATE"
17837
+ }
17838
+ export declare enum ConfluenceQuestionsOperationTarget {
17839
+ Answer = "ANSWER",
17840
+ Attachment = "ATTACHMENT",
17841
+ Comment = "COMMENT",
17842
+ Question = "QUESTION"
17843
+ }
17747
17844
  export declare type ConfluenceReIndexLongTask = {
17748
17845
  __typename?: 'ConfluenceReIndexLongTask';
17749
17846
  completePercentage?: Maybe<Scalars['Int']['output']>;
@@ -25603,6 +25700,7 @@ export declare type DevAiRovoDevCreateSessionByCloudIdInput = {
25603
25700
  promptAdf?: InputMaybe<Scalars['JSON']['input']>;
25604
25701
  repository: DevAiRovoDevRepositoryInput;
25605
25702
  useCase?: InputMaybe<Scalars['String']['input']>;
25703
+ xid?: InputMaybe<Scalars['String']['input']>;
25606
25704
  };
25607
25705
  export declare type DevAiRovoDevCreateSessionInput = {
25608
25706
  links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
@@ -25610,6 +25708,7 @@ export declare type DevAiRovoDevCreateSessionInput = {
25610
25708
  promptAdf?: InputMaybe<Scalars['JSON']['input']>;
25611
25709
  repository: DevAiRovoDevRepositoryInput;
25612
25710
  workspaceAri: Scalars['ID']['input'];
25711
+ xid?: InputMaybe<Scalars['String']['input']>;
25613
25712
  };
25614
25713
  export declare type DevAiRovoDevCreateSessionOptionsInput = {
25615
25714
  isAutonomous?: InputMaybe<Scalars['Boolean']['input']>;
@@ -25660,6 +25759,7 @@ export declare type DevAiRovoDevSession = Node & {
25660
25759
  issueAri?: Maybe<Scalars['ID']['output']>;
25661
25760
  options?: Maybe<DevAiRovoDevSessionOptions>;
25662
25761
  prStatus?: Maybe<DevAiRovoDevPrStatus>;
25762
+ prUrl?: Maybe<Scalars['String']['output']>;
25663
25763
  promptAdf?: Maybe<Scalars['JSON']['output']>;
25664
25764
  repository?: Maybe<DevAiRovoDevRepository>;
25665
25765
  sessionStatus?: Maybe<DevAiRovoDevSessionStatus>;
@@ -25929,6 +26029,7 @@ export declare enum DevConsoleDeveloperSpaceType {
25929
26029
  }
25930
26030
  export declare type DevConsoleMutation = {
25931
26031
  __typename?: 'DevConsoleMutation';
26032
+ acceptAppBillingConsent: DevConsoleResponsePayload;
25932
26033
  addDeveloperSpaceMember?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
25933
26034
  archiveDeveloperSpace: DevConsoleResponsePayload;
25934
26035
  assignDeveloperSpace?: Maybe<DevConsoleAssignDeveloperSpacePayload>;
@@ -25937,6 +26038,10 @@ export declare type DevConsoleMutation = {
25937
26038
  updateDeveloperSpaceMember?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
25938
26039
  updateDeveloperSpaceSettings?: Maybe<DevConsoleDeveloperSpaceSettingsPayload>;
25939
26040
  };
26041
+ export declare type DevConsoleMutationAcceptAppBillingConsentArgs = {
26042
+ appIds: Array<Scalars['String']['input']>;
26043
+ developerSpaceId: Scalars['String']['input'];
26044
+ };
25940
26045
  export declare type DevConsoleMutationAddDeveloperSpaceMemberArgs = {
25941
26046
  input: DevConsoleDeveloperSpaceMemberInput;
25942
26047
  };
@@ -28164,13 +28269,8 @@ export declare type ErsLifecycleMutation = {
28164
28269
  };
28165
28270
  export declare type ErsLifecycleQuery = {
28166
28271
  __typename?: 'ErsLifecycleQuery';
28167
- customEntityDefinitions?: Maybe<Array<Maybe<CustomEntityDefinition>>>;
28168
28272
  doneEntitiesFromERS?: Maybe<Array<Maybe<CustomEntityDefinition>>>;
28169
28273
  };
28170
- export declare type ErsLifecycleQueryCustomEntityDefinitionsArgs = {
28171
- entities: Array<Scalars['String']['input']>;
28172
- oauthClientId: Scalars['String']['input'];
28173
- };
28174
28274
  export declare type ErsLifecycleQueryDoneEntitiesFromErsArgs = {
28175
28275
  oauthClientId: Scalars['String']['input'];
28176
28276
  };
@@ -32001,6 +32101,7 @@ export declare type GraphIntegrationActionDirectoryItem = {
32001
32101
  displayName: Scalars['String']['output'];
32002
32102
  iconUrl?: Maybe<Scalars['String']['output']>;
32003
32103
  id: Scalars['ID']['output'];
32104
+ integrationKey?: Maybe<GraphIntegrationDirectoryFilterDimension>;
32004
32105
  name: Scalars['String']['output'];
32005
32106
  tags: Array<GraphIntegrationDirectoryFilterDimension>;
32006
32107
  };
@@ -32016,7 +32117,7 @@ export declare type GraphIntegrationAddTwgCapabilityContainerPayload = Payload &
32016
32117
  };
32017
32118
  export declare type GraphIntegrationConsentInput = {
32018
32119
  agreement: Scalars['String']['input'];
32019
- formUrlReferer: Scalars['String']['input'];
32120
+ formUrlReferer: Scalars['URL']['input'];
32020
32121
  source: Scalars['String']['input'];
32021
32122
  };
32022
32123
  export declare type GraphIntegrationCreateConnectionPayload = Payload & {
@@ -57897,6 +57998,14 @@ export declare type GrowthRecRerankCandidate = {
57897
57998
  context?: InputMaybe<Scalars['JSON']['input']>;
57898
57999
  entityId: Scalars['String']['input'];
57899
58000
  };
58001
+ export declare type GrowthUnifiedProfileAccountProfileResult = {
58002
+ __typename?: 'GrowthUnifiedProfileAccountProfileResult';
58003
+ userProfile?: Maybe<GrowthUnifiedProfileAccountUserProfile>;
58004
+ };
58005
+ export declare type GrowthUnifiedProfileAccountUserProfile = {
58006
+ __typename?: 'GrowthUnifiedProfileAccountUserProfile';
58007
+ inferredTimezone?: Maybe<Scalars['String']['output']>;
58008
+ };
57900
58009
  export declare type GrowthUnifiedProfileAnchor = {
57901
58010
  __typename?: 'GrowthUnifiedProfileAnchor';
57902
58011
  name?: Maybe<Scalars['String']['output']>;
@@ -68201,6 +68310,11 @@ export declare type JiraInvalidSyntaxError = {
68201
68310
  line?: Maybe<Scalars['Int']['output']>;
68202
68311
  message?: Maybe<Scalars['String']['output']>;
68203
68312
  };
68313
+ export declare type JiraInviterActivityRecommendation = JiraProjectRecommendationDetails & {
68314
+ __typename?: 'JiraInviterActivityRecommendation';
68315
+ inviter?: Maybe<User>;
68316
+ recommendationType?: Maybe<JiraProjectRecommendationType>;
68317
+ };
68204
68318
  export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike & Node & {
68205
68319
  __typename?: 'JiraIssue';
68206
68320
  aiAgentSessions?: Maybe<JiraAiAgentSessionConnection>;
@@ -68553,6 +68667,10 @@ export declare type JiraIssueWorklogsArgs = {
68553
68667
  sortBy?: InputMaybe<JiraWorklogSortInput>;
68554
68668
  targetId?: InputMaybe<Scalars['String']['input']>;
68555
68669
  };
68670
+ export declare enum JiraIssueActivityType {
68671
+ Created = "CREATED",
68672
+ Updated = "UPDATED"
68673
+ }
68556
68674
  export declare type JiraIssueAndProject = {
68557
68675
  __typename?: 'JiraIssueAndProject';
68558
68676
  issueId: Scalars['ID']['output'];
@@ -74980,6 +75098,28 @@ export declare enum JiraProjectPermissionType {
74980
75098
  ViewVotersAndWatchers = "VIEW_VOTERS_AND_WATCHERS",
74981
75099
  WorkOnIssues = "WORK_ON_ISSUES"
74982
75100
  }
75101
+ export declare type JiraProjectRecommendation = {
75102
+ __typename?: 'JiraProjectRecommendation';
75103
+ details?: Maybe<JiraProjectRecommendationDetails>;
75104
+ project?: Maybe<JiraProject>;
75105
+ };
75106
+ export declare type JiraProjectRecommendationConnection = {
75107
+ __typename?: 'JiraProjectRecommendationConnection';
75108
+ edges?: Maybe<Array<Maybe<JiraProjectRecommendationEdge>>>;
75109
+ nodes?: Maybe<Array<Maybe<JiraProjectRecommendation>>>;
75110
+ pageInfo: PageInfo;
75111
+ };
75112
+ export declare type JiraProjectRecommendationDetails = {
75113
+ recommendationType?: Maybe<JiraProjectRecommendationType>;
75114
+ };
75115
+ export declare type JiraProjectRecommendationEdge = {
75116
+ __typename?: 'JiraProjectRecommendationEdge';
75117
+ node?: Maybe<JiraProjectRecommendation>;
75118
+ };
75119
+ export declare enum JiraProjectRecommendationType {
75120
+ InviterActivity = "INVITER_ACTIVITY",
75121
+ TenantActivity = "TENANT_ACTIVITY"
75122
+ }
74983
75123
  export declare type JiraProjectRoleActorLogTableEntry = {
74984
75124
  __typename?: 'JiraProjectRoleActorLogTableEntry';
74985
75125
  executedBy?: Maybe<User>;
@@ -75414,6 +75554,7 @@ export declare type JiraQuery = {
75414
75554
  recentPlans?: Maybe<JiraSearchableEntityConnection>;
75415
75555
  recentProjects?: Maybe<JiraProjectConnection>;
75416
75556
  recentQueues?: Maybe<JiraSearchableEntityConnection>;
75557
+ recommendProjects?: Maybe<JiraProjectRecommendationConnection>;
75417
75558
  remoteIssueLinksById?: Maybe<Array<Maybe<JiraRemoteIssueLink>>>;
75418
75559
  reportsPage?: Maybe<JiraReportsPage>;
75419
75560
  requestTypeField?: Maybe<JiraJqlField>;
@@ -75990,6 +76131,7 @@ export declare type JiraQueryJiraIssueSearchViewArgs = {
75990
76131
  issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
75991
76132
  namespace?: InputMaybe<Scalars['String']['input']>;
75992
76133
  scope?: InputMaybe<JiraIssueSearchScope>;
76134
+ settings?: InputMaybe<JiraIssueSearchSettings>;
75993
76135
  viewConfigInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
75994
76136
  viewId?: InputMaybe<Scalars['String']['input']>;
75995
76137
  viewQueryInput?: InputMaybe<JiraIssueSearchViewQueryInput>;
@@ -76310,6 +76452,12 @@ export declare type JiraQueryRecentQueuesArgs = {
76310
76452
  currentURL?: InputMaybe<Scalars['URL']['input']>;
76311
76453
  first?: InputMaybe<Scalars['Int']['input']>;
76312
76454
  };
76455
+ export declare type JiraQueryRecommendProjectsArgs = {
76456
+ activityField: JiraIssueActivityType;
76457
+ cloudId: Scalars['ID']['input'];
76458
+ days: Scalars['Int']['input'];
76459
+ limit: Scalars['Int']['input'];
76460
+ };
76313
76461
  export declare type JiraQueryRemoteIssueLinksByIdArgs = {
76314
76462
  ids: Array<Scalars['ID']['input']>;
76315
76463
  };
@@ -80028,8 +80176,10 @@ export declare type JiraSuggestionActionInputSchema = {
80028
80176
  required?: Maybe<Array<Scalars['String']['output']>>;
80029
80177
  };
80030
80178
  export declare enum JiraSuggestionActionType {
80179
+ ArchiveWorkItem = "ARCHIVE_WORK_ITEM",
80031
80180
  ChangeDuplicateWorkItemStatus = "CHANGE_DUPLICATE_WORK_ITEM_STATUS",
80032
80181
  ChangeStaleWorkItemStatus = "CHANGE_STALE_WORK_ITEM_STATUS",
80182
+ ChangeWorkItemStatus = "CHANGE_WORK_ITEM_STATUS",
80033
80183
  LinkDuplicateWorkItems = "LINK_DUPLICATE_WORK_ITEMS"
80034
80184
  }
80035
80185
  export declare type JiraSuggestionEdge = {
@@ -80218,6 +80368,10 @@ export declare type JiraTemporaryAttachmentEdge = {
80218
80368
  cursor: Scalars['String']['output'];
80219
80369
  node?: Maybe<JiraTemporaryAttachment>;
80220
80370
  };
80371
+ export declare type JiraTenantActivityRecommendation = JiraProjectRecommendationDetails & {
80372
+ __typename?: 'JiraTenantActivityRecommendation';
80373
+ recommendationType?: Maybe<JiraProjectRecommendationType>;
80374
+ };
80221
80375
  export declare enum JiraTimeFormat {
80222
80376
  Days = "DAYS",
80223
80377
  Hours = "HOURS",
@@ -82750,6 +82904,25 @@ export declare type JsmChannelsOrchestratorConversationsFilter = {
82750
82904
  startDate: Scalars['DateTime']['input'];
82751
82905
  states?: InputMaybe<Array<JsmChannelsOrchestratorConversationState>>;
82752
82906
  };
82907
+ export declare type JsmChannelsServiceAgentResolutionPlan = {
82908
+ __typename?: 'JsmChannelsServiceAgentResolutionPlan';
82909
+ planId?: Maybe<Scalars['ID']['output']>;
82910
+ runbooks?: Maybe<Array<Maybe<JsmChannelsServiceAgentResolutionRunbook>>>;
82911
+ };
82912
+ export declare type JsmChannelsServiceAgentResolutionRunbook = {
82913
+ __typename?: 'JsmChannelsServiceAgentResolutionRunbook';
82914
+ ari?: Maybe<Scalars['String']['output']>;
82915
+ confidenceScore?: Maybe<Scalars['Float']['output']>;
82916
+ title: Scalars['String']['output'];
82917
+ url: Scalars['String']['output'];
82918
+ };
82919
+ export declare type JsmChannelsTicketServiceAgentResolutionState = {
82920
+ __typename?: 'JsmChannelsTicketServiceAgentResolutionState';
82921
+ isLoading: Scalars['Boolean']['output'];
82922
+ message?: Maybe<Scalars['String']['output']>;
82923
+ plan?: Maybe<JsmChannelsServiceAgentResolutionPlan>;
82924
+ };
82925
+ export declare type JsmChannelsTicketServiceAgentResolutionStateResult = JsmChannelsTicketServiceAgentResolutionState | QueryError;
82753
82926
  export declare type JsmChatAppendixActionItem = {
82754
82927
  __typename?: 'JsmChatAppendixActionItem';
82755
82928
  id: Scalars['String']['output'];
@@ -84018,6 +84191,11 @@ export declare type KnowledgeDiscoveryDeleteBookmarksPayload = Payload & {
84018
84191
  success: Scalars['Boolean']['output'];
84019
84192
  successCount?: Maybe<Scalars['Int']['output']>;
84020
84193
  };
84194
+ export declare enum KnowledgeDiscoveryDetectionType {
84195
+ EntityRecognition = "ENTITY_RECOGNITION",
84196
+ Heuristic = "HEURISTIC",
84197
+ Llm = "LLM"
84198
+ }
84021
84199
  export declare type KnowledgeDiscoveryDismissAdminhubBookmarkSuggestionInput = {
84022
84200
  bookmarkAdminhubId: Scalars['ID']['input'];
84023
84201
  cloudId: Scalars['ID']['input'];
@@ -84036,6 +84214,11 @@ export declare type KnowledgeDiscoveryEntityGroup = {
84036
84214
  entities?: Maybe<Array<Maybe<KnowledgeDiscoveryEntity>>>;
84037
84215
  entityType: KnowledgeDiscoveryEntityType;
84038
84216
  };
84217
+ export declare type KnowledgeDiscoveryEntityMetadata = {
84218
+ __typename?: 'KnowledgeDiscoveryEntityMetadata';
84219
+ entityCount?: Maybe<Scalars['Int']['output']>;
84220
+ entityType: Scalars['String']['output'];
84221
+ };
84039
84222
  export declare enum KnowledgeDiscoveryEntityType {
84040
84223
  ConfluenceBlogpost = "CONFLUENCE_BLOGPOST",
84041
84224
  ConfluenceDocument = "CONFLUENCE_DOCUMENT",
@@ -84046,11 +84229,48 @@ export declare enum KnowledgeDiscoveryEntityType {
84046
84229
  Topic = "TOPIC",
84047
84230
  User = "USER"
84048
84231
  }
84232
+ export declare type KnowledgeDiscoveryIntent = {
84233
+ classification: KnowledgeDiscoveryQueryClassification;
84234
+ detectionType: KnowledgeDiscoveryDetectionType;
84235
+ subTypes: Array<KnowledgeDiscoveryQuerySubType>;
84236
+ transformedQuery: Scalars['String']['output'];
84237
+ };
84238
+ export declare type KnowledgeDiscoveryIntentDetectionMetadata = {
84239
+ __typename?: 'KnowledgeDiscoveryIntentDetectionMetadata';
84240
+ cacheHit?: Maybe<Scalars['Boolean']['output']>;
84241
+ entityMetadata?: Maybe<Array<KnowledgeDiscoveryEntityMetadata>>;
84242
+ latencyMs?: Maybe<Scalars['Int']['output']>;
84243
+ method: Scalars['String']['output'];
84244
+ model?: Maybe<Scalars['String']['output']>;
84245
+ timestamp?: Maybe<Scalars['String']['output']>;
84246
+ };
84247
+ export declare type KnowledgeDiscoveryIntentDetectionResult = KnowledgeDiscoveryIntentDetectionSuccess | QueryError;
84248
+ export declare type KnowledgeDiscoveryIntentDetectionSuccess = {
84249
+ __typename?: 'KnowledgeDiscoveryIntentDetectionSuccess';
84250
+ detectionMetadata: KnowledgeDiscoveryIntentDetectionMetadata;
84251
+ errors?: Maybe<Array<QueryErrorExtension>>;
84252
+ intent: KnowledgeDiscoveryIntent;
84253
+ success: Scalars['Boolean']['output'];
84254
+ };
84255
+ export declare type KnowledgeDiscoveryJiraIntent = KnowledgeDiscoveryIntent & {
84256
+ __typename?: 'KnowledgeDiscoveryJiraIntent';
84257
+ classification: KnowledgeDiscoveryQueryClassification;
84258
+ detectionType: KnowledgeDiscoveryDetectionType;
84259
+ subTypes: Array<KnowledgeDiscoveryQuerySubType>;
84260
+ transformedQuery: Scalars['String']['output'];
84261
+ };
84049
84262
  export declare type KnowledgeDiscoveryJiraProject = KnowledgeDiscoveryEntity & {
84050
84263
  __typename?: 'KnowledgeDiscoveryJiraProject';
84051
84264
  id: Scalars['ID']['output'];
84052
84265
  jiraProject?: Maybe<JiraProject>;
84053
84266
  };
84267
+ export declare type KnowledgeDiscoveryJobTitleIntent = KnowledgeDiscoveryIntent & {
84268
+ __typename?: 'KnowledgeDiscoveryJobTitleIntent';
84269
+ classification: KnowledgeDiscoveryQueryClassification;
84270
+ detectionType: KnowledgeDiscoveryDetectionType;
84271
+ subTypes: Array<KnowledgeDiscoveryQuerySubType>;
84272
+ transformedQuery: Scalars['String']['output'];
84273
+ };
84054
84274
  export declare type KnowledgeDiscoveryKeyPhrase = {
84055
84275
  __typename?: 'KnowledgeDiscoveryKeyPhrase';
84056
84276
  category: KnowledgeDiscoveryKeyPhraseCategory;
@@ -84077,6 +84297,13 @@ export declare enum KnowledgeDiscoveryKeyPhraseInputTextFormat {
84077
84297
  Plain = "PLAIN"
84078
84298
  }
84079
84299
  export declare type KnowledgeDiscoveryKeyPhrasesResult = KnowledgeDiscoveryKeyPhraseConnection | QueryError;
84300
+ export declare type KnowledgeDiscoveryKeywordOrAcronymIntent = KnowledgeDiscoveryIntent & {
84301
+ __typename?: 'KnowledgeDiscoveryKeywordOrAcronymIntent';
84302
+ classification: KnowledgeDiscoveryQueryClassification;
84303
+ detectionType: KnowledgeDiscoveryDetectionType;
84304
+ subTypes: Array<KnowledgeDiscoveryQuerySubType>;
84305
+ transformedQuery: Scalars['String']['output'];
84306
+ };
84080
84307
  export declare type KnowledgeDiscoveryMarkZeroQueryInteractedInput = {
84081
84308
  cloudId: Scalars['String']['input'];
84082
84309
  product?: InputMaybe<KnowledgeDiscoveryProduct>;
@@ -84133,6 +84360,27 @@ export declare type KnowledgeDiscoveryMutationApiUpdateRelatedEntitiesArgs = {
84133
84360
  export declare type KnowledgeDiscoveryMutationApiUpdateUserKeyPhraseInteractionArgs = {
84134
84361
  input: KnowledgeDiscoveryUpdateUserKeyPhraseInteractionInput;
84135
84362
  };
84363
+ export declare type KnowledgeDiscoveryNaturalLanguageIntent = KnowledgeDiscoveryIntent & {
84364
+ __typename?: 'KnowledgeDiscoveryNaturalLanguageIntent';
84365
+ classification: KnowledgeDiscoveryQueryClassification;
84366
+ detectionType: KnowledgeDiscoveryDetectionType;
84367
+ subTypes: Array<KnowledgeDiscoveryQuerySubType>;
84368
+ transformedQuery: Scalars['String']['output'];
84369
+ };
84370
+ export declare type KnowledgeDiscoveryNavigationalIntent = KnowledgeDiscoveryIntent & {
84371
+ __typename?: 'KnowledgeDiscoveryNavigationalIntent';
84372
+ classification: KnowledgeDiscoveryQueryClassification;
84373
+ detectionType: KnowledgeDiscoveryDetectionType;
84374
+ subTypes: Array<KnowledgeDiscoveryQuerySubType>;
84375
+ transformedQuery: Scalars['String']['output'];
84376
+ };
84377
+ export declare type KnowledgeDiscoveryNoneIntent = KnowledgeDiscoveryIntent & {
84378
+ __typename?: 'KnowledgeDiscoveryNoneIntent';
84379
+ classification: KnowledgeDiscoveryQueryClassification;
84380
+ detectionType: KnowledgeDiscoveryDetectionType;
84381
+ subTypes: Array<KnowledgeDiscoveryQuerySubType>;
84382
+ transformedQuery: Scalars['String']['output'];
84383
+ };
84136
84384
  export declare type KnowledgeDiscoveryPageInfo = {
84137
84385
  __typename?: 'KnowledgeDiscoveryPageInfo';
84138
84386
  endCursor?: Maybe<Scalars['String']['output']>;
@@ -84140,6 +84388,13 @@ export declare type KnowledgeDiscoveryPageInfo = {
84140
84388
  hasPreviousPage: Scalars['Boolean']['output'];
84141
84389
  startCursor?: Maybe<Scalars['String']['output']>;
84142
84390
  };
84391
+ export declare type KnowledgeDiscoveryPersonIntent = KnowledgeDiscoveryIntent & {
84392
+ __typename?: 'KnowledgeDiscoveryPersonIntent';
84393
+ classification: KnowledgeDiscoveryQueryClassification;
84394
+ detectionType: KnowledgeDiscoveryDetectionType;
84395
+ subTypes: Array<KnowledgeDiscoveryQuerySubType>;
84396
+ transformedQuery: Scalars['String']['output'];
84397
+ };
84143
84398
  export declare type KnowledgeDiscoveryPopularSearchQuery = {
84144
84399
  __typename?: 'KnowledgeDiscoveryPopularSearchQuery';
84145
84400
  isPopular: Scalars['Boolean']['output'];
@@ -84159,6 +84414,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
84159
84414
  definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
84160
84415
  definitionHistoryV2?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
84161
84416
  definitionV2?: Maybe<KnowledgeDiscoveryDefinitionResult>;
84417
+ intentDetection?: Maybe<KnowledgeDiscoveryIntentDetectionResult>;
84162
84418
  keyPhrases?: Maybe<KnowledgeDiscoveryKeyPhrasesResult>;
84163
84419
  popularSearchQuery?: Maybe<KnowledgeDiscoveryPopularSearchQueryResult>;
84164
84420
  querySuggestions?: Maybe<KnowledgeDiscoveryQuerySuggestionsResult>;
@@ -84218,6 +84474,11 @@ export declare type KnowledgeDiscoveryQueryApiDefinitionV2Args = {
84218
84474
  scopes?: InputMaybe<Array<KnowledgeDiscoveryScopeInput>>;
84219
84475
  workspaceId: Scalars['String']['input'];
84220
84476
  };
84477
+ export declare type KnowledgeDiscoveryQueryApiIntentDetectionArgs = {
84478
+ locale: Scalars['String']['input'];
84479
+ query: Scalars['String']['input'];
84480
+ siteId: Scalars['String']['input'];
84481
+ };
84221
84482
  export declare type KnowledgeDiscoveryQueryApiKeyPhrasesArgs = {
84222
84483
  after?: InputMaybe<Scalars['String']['input']>;
84223
84484
  cloudId?: InputMaybe<Scalars['String']['input']>;
@@ -84282,6 +84543,26 @@ export declare type KnowledgeDiscoveryQueryApiZeroQueriesArgs = {
84282
84543
  cloudId: Scalars['String']['input'];
84283
84544
  product?: InputMaybe<KnowledgeDiscoveryProduct>;
84284
84545
  };
84546
+ export declare enum KnowledgeDiscoveryQueryClassification {
84547
+ JiraNaturalLanguageQuery = "JIRA_NATURAL_LANGUAGE_QUERY",
84548
+ JobTitle = "JOB_TITLE",
84549
+ KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
84550
+ NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
84551
+ Navigational = "NAVIGATIONAL",
84552
+ None = "NONE",
84553
+ Person = "PERSON",
84554
+ Team = "TEAM",
84555
+ Topic = "TOPIC"
84556
+ }
84557
+ export declare enum KnowledgeDiscoveryQuerySubType {
84558
+ Command = "COMMAND",
84559
+ Confluence = "CONFLUENCE",
84560
+ Evaluate = "EVALUATE",
84561
+ Jira = "JIRA",
84562
+ JobTitle = "JOB_TITLE",
84563
+ Llm = "LLM",
84564
+ Question = "QUESTION"
84565
+ }
84285
84566
  export declare type KnowledgeDiscoveryQuerySuggestion = {
84286
84567
  __typename?: 'KnowledgeDiscoveryQuerySuggestion';
84287
84568
  query: Scalars['String']['output'];
@@ -84367,6 +84648,13 @@ export declare type KnowledgeDiscoveryTeam = {
84367
84648
  __typename?: 'KnowledgeDiscoveryTeam';
84368
84649
  id: Scalars['String']['output'];
84369
84650
  };
84651
+ export declare type KnowledgeDiscoveryTeamIntent = KnowledgeDiscoveryIntent & {
84652
+ __typename?: 'KnowledgeDiscoveryTeamIntent';
84653
+ classification: KnowledgeDiscoveryQueryClassification;
84654
+ detectionType: KnowledgeDiscoveryDetectionType;
84655
+ subTypes: Array<KnowledgeDiscoveryQuerySubType>;
84656
+ transformedQuery: Scalars['String']['output'];
84657
+ };
84370
84658
  export declare type KnowledgeDiscoveryTeamSearchResult = KnowledgeDiscoveryTeam | QueryError;
84371
84659
  export declare type KnowledgeDiscoveryTopic = KnowledgeDiscoveryEntity & {
84372
84660
  __typename?: 'KnowledgeDiscoveryTopic';
@@ -84392,6 +84680,13 @@ export declare type KnowledgeDiscoveryTopicByAri = Node & {
84392
84680
  export declare type KnowledgeDiscoveryTopicByAriRelatedEntitiesArgs = {
84393
84681
  first?: InputMaybe<Scalars['Int']['input']>;
84394
84682
  };
84683
+ export declare type KnowledgeDiscoveryTopicIntent = KnowledgeDiscoveryIntent & {
84684
+ __typename?: 'KnowledgeDiscoveryTopicIntent';
84685
+ classification: KnowledgeDiscoveryQueryClassification;
84686
+ detectionType: KnowledgeDiscoveryDetectionType;
84687
+ subTypes: Array<KnowledgeDiscoveryQuerySubType>;
84688
+ transformedQuery: Scalars['String']['output'];
84689
+ };
84395
84690
  export declare type KnowledgeDiscoveryTopicResult = KnowledgeDiscoveryTopic | QueryError;
84396
84691
  export declare enum KnowledgeDiscoveryTopicType {
84397
84692
  Area = "AREA",
@@ -88816,6 +89111,7 @@ export declare type MercuryFocusAreaStatusUpdate = {
88816
89111
  summary?: Maybe<Scalars['String']['output']>;
88817
89112
  updatedBy?: Maybe<User>;
88818
89113
  updatedDate: Scalars['String']['output'];
89114
+ uuid: Scalars['ID']['output'];
88819
89115
  };
88820
89116
  export declare type MercuryFocusAreaStatusUpdateCommentsArgs = {
88821
89117
  after?: InputMaybe<Scalars['String']['input']>;
@@ -90852,6 +91148,7 @@ export declare type Mutation = {
90852
91148
  confluence_batchFollowTeammates?: Maybe<ConfluenceBatchFollowTeammatesPayload>;
90853
91149
  confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
90854
91150
  confluence_convertNote?: Maybe<ConfluenceConvertNotePayload>;
91151
+ confluence_convertToBlogpost?: Maybe<ConfluenceConvertContentToBlogpostPayload>;
90855
91152
  confluence_copyNote?: Maybe<ConfluenceCopyNotePayload>;
90856
91153
  confluence_copySpaceSecurityConfiguration?: Maybe<ConfluenceCopySpaceSecurityConfigurationPayload>;
90857
91154
  confluence_createAnswer?: Maybe<ConfluenceCreateAnswerPayload>;
@@ -91918,6 +92215,10 @@ export declare type MutationConfluence_BulkNestedConvertToLiveDocsArgs = {
91918
92215
  export declare type MutationConfluence_ConvertNoteArgs = {
91919
92216
  input: ConfluenceConvertNoteInput;
91920
92217
  };
92218
+ export declare type MutationConfluence_ConvertToBlogpostArgs = {
92219
+ cloudId: Scalars['ID']['input'];
92220
+ input: ConfluenceConvertContentToBlogpostInput;
92221
+ };
91921
92222
  export declare type MutationConfluence_CopyNoteArgs = {
91922
92223
  id: Scalars['ID']['input'];
91923
92224
  };
@@ -92024,8 +92325,8 @@ export declare type MutationConfluence_GenerateForgeContextTokenArgs = {
92024
92325
  export declare type MutationConfluence_GenerateSpacePermissionAuditReportArgs = {
92025
92326
  cloudId: Scalars['ID']['input'];
92026
92327
  reportType: ConfluenceSpacePermissionAuditReportType;
92027
- spaceId?: InputMaybe<Scalars['Long']['input']>;
92028
- spaceType: ConfluenceSpacePermissionAuditReportSpaceType;
92328
+ spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
92329
+ spaceType?: InputMaybe<ConfluenceSpacePermissionAuditReportSpaceType>;
92029
92330
  };
92030
92331
  export declare type MutationConfluence_InsertOfflineVersionArgs = {
92031
92332
  cloudId: Scalars['ID']['input'];
@@ -96850,6 +97151,7 @@ export declare type Query = {
96850
97151
  agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
96851
97152
  agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
96852
97153
  agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
97154
+ agentStudio_agentByIdentityAccountId?: Maybe<AgentStudioAgentResult>;
96853
97155
  agentStudio_batchEvaluationJob?: Maybe<AgentStudioBatchEvaluationJob>;
96854
97156
  agentStudio_batchEvaluationJobs: Array<AgentStudioBatchEvaluationJob>;
96855
97157
  agentStudio_batchEvaluationResults: Array<AgentStudioEvaluationResult>;
@@ -96865,6 +97167,7 @@ export declare type Query = {
96865
97167
  agentStudio_getCreateAgentPermissions?: Maybe<AgentStudioAgentCreatePermissionsConnection>;
96866
97168
  agentStudio_getToolsByIdAndSource?: Maybe<Array<AgentStudioTool>>;
96867
97169
  agentStudio_getWidgetContainersByAgentId?: Maybe<AgentStudioWidgetContainersByAgentIdResult>;
97170
+ agentStudio_insightsConfiguration?: Maybe<AgentStudioInsightsConfigurationResult>;
96868
97171
  agentStudio_scenarioById?: Maybe<AgentStudioScenarioResult>;
96869
97172
  agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
96870
97173
  agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
@@ -96940,6 +97243,7 @@ export declare type Query = {
96940
97243
  availableContentStates?: Maybe<AvailableContentStates>;
96941
97244
  avp_getChart?: Maybe<AvpChart>;
96942
97245
  avp_getDashboard?: Maybe<AvpDashboard>;
97246
+ avp_getDashboardTemplates: Array<AvpDashboardTemplate>;
96943
97247
  bitbucket?: Maybe<BitbucketQuery>;
96944
97248
  bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
96945
97249
  blockedAccessRestrictions?: Maybe<BlockedAccessRestrictions>;
@@ -97265,6 +97569,7 @@ export declare type Query = {
97265
97569
  groupsUserSpaceAccess?: Maybe<PaginatedGroupList>;
97266
97570
  groupsWithContentRestrictions?: Maybe<Array<Maybe<GroupWithRestrictions>>>;
97267
97571
  growthRecommendations?: Maybe<GrowthRecQuery>;
97572
+ growthUnifiedProfile_getAccountProfile?: Maybe<GrowthUnifiedProfileAccountProfileResult>;
97268
97573
  growthUnifiedProfile_getEntitlementProfile?: Maybe<GrowthUnifiedProfileEntitlementProfileResult>;
97269
97574
  growthUnifiedProfile_getOrgProfile?: Maybe<GrowthUnifiedProfileOrgProfileResult>;
97270
97575
  growthUnifiedProfile_getUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
@@ -97338,6 +97643,7 @@ export declare type Query = {
97338
97643
  jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
97339
97644
  jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
97340
97645
  jsmChannels_getExperienceConfigurationByProjectId: JsmChannelsExperienceConfigurationResult;
97646
+ jsmChannels_getServiceAgentResolutionStateByTicketId: JsmChannelsTicketServiceAgentResolutionStateResult;
97341
97647
  jsmChat?: Maybe<JsmChatQuery>;
97342
97648
  jsw?: Maybe<JswQuery>;
97343
97649
  knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
@@ -97484,6 +97790,7 @@ export declare type Query = {
97484
97790
  radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
97485
97791
  radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
97486
97792
  radar_positionByAri?: Maybe<RadarPosition>;
97793
+ radar_positionLaborCostEstimateSettings?: Maybe<RadarPositionLaborCostEstimateSettings>;
97487
97794
  radar_positionsByAris?: Maybe<Array<RadarPosition>>;
97488
97795
  radar_positionsByEntitySearch?: Maybe<RadarPositionsByEntityConnection>;
97489
97796
  radar_positionsSearch?: Maybe<RadarPositionConnection>;
@@ -97703,9 +98010,7 @@ export declare type QueryAdmin_UnitValidateNameArgs = {
97703
98010
  };
97704
98011
  export declare type QueryAdmin_UnitsForOrgArgs = {
97705
98012
  after?: InputMaybe<Scalars['String']['input']>;
97706
- before?: InputMaybe<Scalars['String']['input']>;
97707
98013
  first?: InputMaybe<Scalars['Int']['input']>;
97708
- last?: InputMaybe<Scalars['Int']['input']>;
97709
98014
  orgId: Scalars['ID']['input'];
97710
98015
  search?: InputMaybe<AdminUnitsForOrgSearchInput>;
97711
98016
  sort?: InputMaybe<AdminUnitsForOrgSortInput>;
@@ -97762,6 +98067,10 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
97762
98067
  export declare type QueryAgentStudio_AgentByIdArgs = {
97763
98068
  id: Scalars['ID']['input'];
97764
98069
  };
98070
+ export declare type QueryAgentStudio_AgentByIdentityAccountIdArgs = {
98071
+ cloudId: Scalars['String']['input'];
98072
+ id: Scalars['ID']['input'];
98073
+ };
97765
98074
  export declare type QueryAgentStudio_BatchEvaluationJobArgs = {
97766
98075
  cloudId: Scalars['String']['input'];
97767
98076
  jobId: Scalars['ID']['input'];
@@ -97844,6 +98153,10 @@ export declare type QueryAgentStudio_GetWidgetContainersByAgentIdArgs = {
97844
98153
  agentId: Scalars['ID']['input'];
97845
98154
  cloudId: Scalars['String']['input'];
97846
98155
  };
98156
+ export declare type QueryAgentStudio_InsightsConfigurationArgs = {
98157
+ cloudId: Scalars['String']['input'];
98158
+ id: Scalars['ID']['input'];
98159
+ };
97847
98160
  export declare type QueryAgentStudio_ScenarioByIdArgs = {
97848
98161
  containerId: Scalars['ID']['input'];
97849
98162
  id: Scalars['ID']['input'];
@@ -98206,6 +98519,9 @@ export declare type QueryAvp_GetChartArgs = {
98206
98519
  export declare type QueryAvp_GetDashboardArgs = {
98207
98520
  dashboardAri: Scalars['ID']['input'];
98208
98521
  };
98522
+ export declare type QueryAvp_GetDashboardTemplatesArgs = {
98523
+ input?: InputMaybe<AvpGetDashboardTemplatesInput>;
98524
+ };
98209
98525
  export declare type QueryBitbucketRepositoriesAvailableToLinkWithNewDevOpsServiceArgs = {
98210
98526
  after?: InputMaybe<Scalars['String']['input']>;
98211
98527
  cloudId: Scalars['ID']['input'];
@@ -99666,6 +99982,9 @@ export declare type QueryGroupsWithContentRestrictionsArgs = {
99666
99982
  contentId: Scalars['ID']['input'];
99667
99983
  groupIds: Array<InputMaybe<Scalars['String']['input']>>;
99668
99984
  };
99985
+ export declare type QueryGrowthUnifiedProfile_GetAccountProfileArgs = {
99986
+ accountId: Scalars['ID']['input'];
99987
+ };
99669
99988
  export declare type QueryGrowthUnifiedProfile_GetEntitlementProfileArgs = {
99670
99989
  entitlementId: Scalars['ID']['input'];
99671
99990
  };
@@ -99915,6 +100234,10 @@ export declare type QueryJsmChannels_GetExperienceConfigurationByProjectIdArgs =
99915
100234
  experience: JsmChannelsExperience;
99916
100235
  jiraProjectAri: Scalars['ID']['input'];
99917
100236
  };
100237
+ export declare type QueryJsmChannels_GetServiceAgentResolutionStateByTicketIdArgs = {
100238
+ jiraProjectAri: Scalars['ID']['input'];
100239
+ ticketId: Scalars['ID']['input'];
100240
+ };
99918
100241
  export declare type QueryKnowledgeBaseArgs = {
99919
100242
  cloudId: Scalars['ID']['input'];
99920
100243
  };
@@ -100401,6 +100724,9 @@ export declare type QueryRadar_GroupMetricsArgs = {
100401
100724
  export declare type QueryRadar_PositionByAriArgs = {
100402
100725
  id: Scalars['ID']['input'];
100403
100726
  };
100727
+ export declare type QueryRadar_PositionLaborCostEstimateSettingsArgs = {
100728
+ cloudId: Scalars['ID']['input'];
100729
+ };
100404
100730
  export declare type QueryRadar_PositionsByArisArgs = {
100405
100731
  ids: Array<Scalars['ID']['input']>;
100406
100732
  };
@@ -101244,6 +101570,16 @@ export declare type RadarFieldValuesEdge = RadarEdge & {
101244
101570
  cursor: Scalars['String']['output'];
101245
101571
  node: RadarFieldValue;
101246
101572
  };
101573
+ export declare type RadarFields = {
101574
+ __typename?: 'RadarFields';
101575
+ focusAreaFields: Array<RadarFieldDefinition>;
101576
+ focusAreaTypeFields: Array<RadarFieldDefinition>;
101577
+ positionFields: Array<RadarFieldDefinition>;
101578
+ proposalFields: Array<RadarFieldDefinition>;
101579
+ proposedMovementFields: Array<RadarFieldDefinition>;
101580
+ teamFields: Array<RadarFieldDefinition>;
101581
+ workerFields: Array<RadarFieldDefinition>;
101582
+ };
101247
101583
  export declare enum RadarFilterInputType {
101248
101584
  Checkbox = "CHECKBOX",
101249
101585
  Radio = "RADIO",
@@ -101416,6 +101752,13 @@ export declare type RadarPositionEdge = RadarEdge & {
101416
101752
  cursor: Scalars['String']['output'];
101417
101753
  node: RadarPosition;
101418
101754
  };
101755
+ export declare type RadarPositionLaborCostEstimateSettings = {
101756
+ __typename?: 'RadarPositionLaborCostEstimateSettings';
101757
+ defaultAmount?: Maybe<RadarMoney>;
101758
+ fieldIds?: Maybe<Array<Scalars['String']['output']>>;
101759
+ isEnabled: Scalars['Boolean']['output'];
101760
+ lastImportedAt?: Maybe<Scalars['DateTime']['output']>;
101761
+ };
101419
101762
  export declare type RadarPositionProposalChangeInput = {
101420
101763
  changeProposalAri: Scalars['ID']['input'];
101421
101764
  positionAri: Scalars['ID']['input'];
@@ -101565,6 +101908,7 @@ export declare type RadarWorkerEdge = RadarEdge & {
101565
101908
  export declare type RadarWorkspace = {
101566
101909
  __typename?: 'RadarWorkspace';
101567
101910
  entityId: Scalars['ID']['output'];
101911
+ fields: RadarFields;
101568
101912
  focusAreaFields: Array<RadarFieldDefinition>;
101569
101913
  focusAreaTypeFields: Array<RadarFieldDefinition>;
101570
101914
  functions: Array<RadarFunction>;
@@ -103181,6 +103525,8 @@ export declare enum Scope {
103181
103525
  ReadServicedeskRequest = "READ_SERVICEDESK_REQUEST",
103182
103526
  ReadTeam = "READ_TEAM",
103183
103527
  ReadTeamMembers = "READ_TEAM_MEMBERS",
103528
+ ReadTeamMembersTemp = "READ_TEAM_MEMBERS_TEMP",
103529
+ ReadTeamTemp = "READ_TEAM_TEMP",
103184
103530
  ReadTownsquareComment = "READ_TOWNSQUARE_COMMENT",
103185
103531
  ReadTownsquareGoal = "READ_TOWNSQUARE_GOAL",
103186
103532
  ReadTownsquareProject = "READ_TOWNSQUARE_PROJECT",
@@ -103284,6 +103630,8 @@ export declare enum Scope {
103284
103630
  WriteServicedeskProperty = "WRITE_SERVICEDESK_PROPERTY",
103285
103631
  WriteServicedeskRequest = "WRITE_SERVICEDESK_REQUEST",
103286
103632
  WriteTeam = "WRITE_TEAM",
103633
+ WriteTeamMembersTemp = "WRITE_TEAM_MEMBERS_TEMP",
103634
+ WriteTeamTemp = "WRITE_TEAM_TEMP",
103287
103635
  WriteTownsquareGoal = "WRITE_TOWNSQUARE_GOAL",
103288
103636
  WriteTownsquareProject = "WRITE_TOWNSQUARE_PROJECT",
103289
103637
  WriteTownsquareRelationship = "WRITE_TOWNSQUARE_RELATIONSHIP"
@@ -103736,6 +104084,7 @@ export declare type SearchResultAssetsObject = SearchResult & {
103736
104084
  id: Scalars['ID']['output'];
103737
104085
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
103738
104086
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
104087
+ objectEntity?: Maybe<AssetsObject>;
103739
104088
  objectSchemaEntity?: Maybe<AssetsSchema>;
103740
104089
  objectTypeEntity?: Maybe<AssetsObjectType>;
103741
104090
  schemaAri: Scalars['ID']['output'];
@@ -103752,6 +104101,7 @@ export declare type SearchResultAssetsObjectSchema = SearchResult & {
103752
104101
  id: Scalars['ID']['output'];
103753
104102
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
103754
104103
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
104104
+ objectSchemaEntity?: Maybe<AssetsSchema>;
103755
104105
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
103756
104106
  title: Scalars['String']['output'];
103757
104107
  type: SearchResultType;
@@ -103765,6 +104115,7 @@ export declare type SearchResultAssetsObjectType = SearchResult & {
103765
104115
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
103766
104116
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
103767
104117
  objectSchemaEntity?: Maybe<AssetsSchema>;
104118
+ objectTypeEntity?: Maybe<AssetsObjectType>;
103768
104119
  schemaAri: Scalars['ID']['output'];
103769
104120
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
103770
104121
  title: Scalars['String']['output'];
@@ -104202,8 +104553,7 @@ export declare enum SearchResultType {
104202
104553
  Issue = "issue",
104203
104554
  Learning = "learning",
104204
104555
  Message = "message",
104205
- ObjectSchema = "object_schema",
104206
- ObjectType = "object_type",
104556
+ Object = "object",
104207
104557
  Page = "page",
104208
104558
  Plan = "plan",
104209
104559
  Presentation = "presentation",
@@ -104211,9 +104561,11 @@ export declare enum SearchResultType {
104211
104561
  ProjectUpdate = "project_update",
104212
104562
  Question = "question",
104213
104563
  Repository = "repository",
104564
+ Schema = "schema",
104214
104565
  Space = "space",
104215
104566
  Spreadsheet = "spreadsheet",
104216
104567
  Tag = "tag",
104568
+ Type = "type",
104217
104569
  Unrecognised = "unrecognised",
104218
104570
  Whiteboard = "whiteboard"
104219
104571
  }
@@ -125906,6 +126258,7 @@ export declare type SupportRequest = {
125906
126258
  requestTypeName: Scalars['String']['output'];
125907
126259
  sourceId?: Maybe<Scalars['String']['output']>;
125908
126260
  sourceLicense?: Maybe<Scalars['String']['output']>;
126261
+ sourceSystemLink?: Maybe<Scalars['String']['output']>;
125909
126262
  status: SupportRequestStatus;
125910
126263
  statuses: SupportRequestStatuses;
125911
126264
  summary?: Maybe<Scalars['String']['output']>;
@@ -128098,6 +128451,7 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
128098
128451
  key: Scalars['String']['output'];
128099
128452
  latestUpdateDate?: Maybe<Scalars['DateTime']['output']>;
128100
128453
  latestUserUpdate?: Maybe<TownsquareProjectUpdate>;
128454
+ linkedJiraWorkItems?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection>;
128101
128455
  links?: Maybe<TownsquareLinkConnection>;
128102
128456
  members?: Maybe<TownsquareUserConnection>;
128103
128457
  mercuryOriginalProjectStatus?: Maybe<MercuryOriginalProjectStatus>;
@@ -128165,6 +128519,11 @@ export declare type TownsquareProjectHighlightsArgs = {
128165
128519
  sort?: InputMaybe<Array<InputMaybe<TownsquareHighlightSortEnum>>>;
128166
128520
  type?: InputMaybe<TownsquareHighlightType>;
128167
128521
  };
128522
+ export declare type TownsquareProjectLinkedJiraWorkItemsArgs = {
128523
+ after?: InputMaybe<Scalars['String']['input']>;
128524
+ first?: InputMaybe<Scalars['Int']['input']>;
128525
+ sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
128526
+ };
128168
128527
  export declare type TownsquareProjectLinksArgs = {
128169
128528
  after?: InputMaybe<Scalars['String']['input']>;
128170
128529
  first?: InputMaybe<Scalars['Int']['input']>;