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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.23.0-next.12
4
+
5
+ ### Minor Changes
6
+
7
+ - e2113b4: introduce `--skipRollout` for `forge deploy`
8
+
9
+ ## 8.23.0-next.11
10
+
11
+ ### Minor Changes
12
+
13
+ - 369bc9b: `ForgeCliAttribution.agentHint()` now delegates agent detection to [`@vercel/detect-agent`](https://www.npmjs.com/package/@vercel/detect-agent), expanding coverage and replacing the previous brittle PATH-based heuristic. The set of recognised agents is defined by the upstream library. Rovo Dev and Windsurf are still detected directly within `ForgeCliAttribution` and take precedence over the library's result. `agentHint()` and `build()` are now `async` and must be `await`ed by callers.
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [e5b5031]
18
+ - @forge/manifest@12.8.0-next.9
19
+
3
20
  ## 8.23.0-next.10
4
21
 
5
22
  ### Minor Changes
@@ -482,18 +482,6 @@ export declare enum AiOpsRelatedAlertStatus {
482
482
  Resolved = "RESOLVED",
483
483
  Snoozed = "SNOOZED"
484
484
  }
485
- export declare type AiOpsReviewRootCauseInput = {
486
- investigationId: Scalars['ID']['input'];
487
- rootCauseSuggestionId: Scalars['ID']['input'];
488
- status: AiOpsLikelyRootCauseReviewStatus;
489
- };
490
- export declare type AiOpsReviewRootCausePayload = {
491
- __typename?: 'AIOpsReviewRootCausePayload';
492
- errors?: Maybe<Array<MutationError>>;
493
- investigation?: Maybe<AiOpsInvestigation>;
494
- rootCause?: Maybe<AiOpsLikelyRootCause>;
495
- success: Scalars['Boolean']['output'];
496
- };
497
485
  export declare type AiOpsTriggerInvestigationInput = {
498
486
  agentic?: InputMaybe<Scalars['Boolean']['input']>;
499
487
  inScopeServiceIds: Array<Scalars['ID']['input']>;
@@ -2595,6 +2583,11 @@ export declare type AvpVizConfigInput = {
2595
2583
  accessors?: InputMaybe<Scalars['JSON']['input']>;
2596
2584
  data: Array<Array<InputMaybe<Scalars['JSON']['input']>>>;
2597
2585
  };
2586
+ export declare type AvpWorkspaceExperience = {
2587
+ __typename?: 'AVPWorkspaceExperience';
2588
+ id: Scalars['ID']['output'];
2589
+ isOptedInToAAPlatformDashboards?: Maybe<Scalars['Boolean']['output']>;
2590
+ };
2598
2591
  export declare enum AcceptableResponse {
2599
2592
  False = "FALSE",
2600
2593
  NotApplicable = "NOT_APPLICABLE",
@@ -5345,6 +5338,7 @@ export declare type AgentStudioAgent = {
5345
5338
  description?: Maybe<Scalars['String']['output']>;
5346
5339
  etag?: Maybe<Scalars['String']['output']>;
5347
5340
  id: Scalars['ID']['output'];
5341
+ isFollowUpQuestionsEnabled?: Maybe<Scalars['Boolean']['output']>;
5348
5342
  isModelUpgradeAvailable?: Maybe<Scalars['Boolean']['output']>;
5349
5343
  isPublished: Scalars['Boolean']['output'];
5350
5344
  jiraAssignability?: Maybe<JiraAgentAssignability>;
@@ -5484,6 +5478,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & AgentStudioBaseCon
5484
5478
  instructions?: Maybe<Scalars['String']['output']>;
5485
5479
  isDeepResearchEnabled?: Maybe<Scalars['Boolean']['output']>;
5486
5480
  isFavourite?: Maybe<Scalars['Boolean']['output']>;
5481
+ isFollowUpQuestionsEnabled?: Maybe<Scalars['Boolean']['output']>;
5487
5482
  isModelUpgradeAvailable?: Maybe<Scalars['Boolean']['output']>;
5488
5483
  isPublished: Scalars['Boolean']['output'];
5489
5484
  isVerified?: Maybe<Scalars['Boolean']['output']>;
@@ -5773,6 +5768,7 @@ export declare type AgentStudioCreateAgentInput = {
5773
5768
  description?: InputMaybe<Scalars['String']['input']>;
5774
5769
  executionConfig?: InputMaybe<AgentStudioExecutionConfigInput>;
5775
5770
  instructions?: InputMaybe<Scalars['String']['input']>;
5771
+ isFollowUpQuestionsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
5776
5772
  isWebSearchEnabled?: InputMaybe<Scalars['Boolean']['input']>;
5777
5773
  jiraProjectId?: InputMaybe<Scalars['ID']['input']>;
5778
5774
  knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
@@ -6395,6 +6391,7 @@ export declare type AgentStudioServiceAgent = AgentStudioAgent & Node & {
6395
6391
  description?: Maybe<Scalars['String']['output']>;
6396
6392
  etag?: Maybe<Scalars['String']['output']>;
6397
6393
  id: Scalars['ID']['output'];
6394
+ isFollowUpQuestionsEnabled?: Maybe<Scalars['Boolean']['output']>;
6398
6395
  isModelUpgradeAvailable?: Maybe<Scalars['Boolean']['output']>;
6399
6396
  isPublished: Scalars['Boolean']['output'];
6400
6397
  jiraAssignability?: Maybe<JiraAgentAssignability>;
@@ -6721,6 +6718,7 @@ export declare type AgentStudioUpdateAgentDetailsInput = {
6721
6718
  etag?: InputMaybe<Scalars['String']['input']>;
6722
6719
  executionConfig?: InputMaybe<AgentStudioExecutionConfigInput>;
6723
6720
  instructions?: InputMaybe<Scalars['String']['input']>;
6721
+ isFollowUpQuestionsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
6724
6722
  isWebSearchEnabled?: InputMaybe<Scalars['Boolean']['input']>;
6725
6723
  knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
6726
6724
  name?: InputMaybe<Scalars['String']['input']>;
@@ -7918,7 +7916,6 @@ export declare type AgentWorkspaceStartGenerateRoutingTablePayload = {
7918
7916
  export declare type AgentWorkspaceSubmitDraftedRoutingTableInput = {
7919
7917
  cloudId: Scalars['ID']['input'];
7920
7918
  fieldId: Scalars['String']['input'];
7921
- generationId: Scalars['ID']['input'];
7922
7919
  projectKey: Scalars['String']['input'];
7923
7920
  };
7924
7921
  export declare type AgentWorkspaceSubmitDraftedRoutingTablePayload = {
@@ -15321,6 +15318,7 @@ export declare type CcpAllowancePoolAllocationsResponse = {
15321
15318
  allowance?: Maybe<Scalars['Float']['output']>;
15322
15319
  balance?: Maybe<Scalars['Float']['output']>;
15323
15320
  billingEntity?: Maybe<Scalars['String']['output']>;
15321
+ enforcementDetails?: Maybe<CcpEnforcementDetails>;
15324
15322
  enforcementMode?: Maybe<CcpLatestAllowanceEnforcementModeType>;
15325
15323
  id?: Maybe<Scalars['String']['output']>;
15326
15324
  latestUsage?: Maybe<Scalars['Float']['output']>;
@@ -15816,6 +15814,17 @@ export declare type CcpEligiblePromotionWindow = {
15816
15814
  endTime?: Maybe<Scalars['Float']['output']>;
15817
15815
  startTime?: Maybe<Scalars['Float']['output']>;
15818
15816
  };
15817
+ export declare type CcpEnforcementDetails = {
15818
+ __typename?: 'CcpEnforcementDetails';
15819
+ allowed?: Maybe<Scalars['Boolean']['output']>;
15820
+ reason?: Maybe<CcpEnforcementReasonCode>;
15821
+ };
15822
+ export declare enum CcpEnforcementReasonCode {
15823
+ BaseAllowanceExhausted = "BASE_ALLOWANCE_EXHAUSTED",
15824
+ EnforcementExempted = "ENFORCEMENT_EXEMPTED",
15825
+ MeterNotOnboarded = "METER_NOT_ONBOARDED",
15826
+ OverageCapExceeded = "OVERAGE_CAP_EXCEEDED"
15827
+ }
15819
15828
  export declare type CcpEntitlement = CommerceEntitlement & Node & {
15820
15829
  __typename?: 'CcpEntitlement';
15821
15830
  allowancePoolAllocations?: Maybe<Array<Maybe<CcpAllowancePoolAllocationsResponse>>>;
@@ -15916,6 +15925,7 @@ export declare type CcpEntitlementExperienceCapabilities = CommerceEntitlementEx
15916
15925
  compareOfferings?: Maybe<CcpCompareOfferingsExperienceCapability>;
15917
15926
  manageEntitlement?: Maybe<CcpManageEntitlementExperienceCapability>;
15918
15927
  placeOrderLite?: Maybe<CcpPlaceOrderLiteExperienceCapability>;
15928
+ setUsageLimit?: Maybe<CcpSetUsageLimitExperienceCapability>;
15919
15929
  unbundleApps?: Maybe<CcpUnbundleAppsExperienceCapability>;
15920
15930
  };
15921
15931
  export declare type CcpEntitlementExperienceCapabilitiesApplyEntitlementPromotionArgs = {
@@ -17408,6 +17418,11 @@ export declare type CcpSearchTimestampBoundsInput = {
17408
17418
  gte?: InputMaybe<Scalars['String']['input']>;
17409
17419
  lte?: InputMaybe<Scalars['String']['input']>;
17410
17420
  };
17421
+ export declare type CcpSetUsageLimitExperienceCapability = CommerceExperienceCapability & {
17422
+ __typename?: 'CcpSetUsageLimitExperienceCapability';
17423
+ experienceUrl?: Maybe<Scalars['String']['output']>;
17424
+ isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
17425
+ };
17411
17426
  export declare type CcpShipToParty = Node & {
17412
17427
  __typename?: 'CcpShipToParty';
17413
17428
  createdAt?: Maybe<Scalars['Float']['output']>;
@@ -29757,6 +29772,18 @@ export declare type ConfluenceDisableGlobalPageBlueprintPayload = Payload & {
29757
29772
  errors?: Maybe<Array<MutationError>>;
29758
29773
  success: Scalars['Boolean']['output'];
29759
29774
  };
29775
+ export declare type ConfluenceDisableSystemRoleInput = {
29776
+ anonymousRoleId?: InputMaybe<Scalars['ID']['input']>;
29777
+ guestRoleId?: InputMaybe<Scalars['ID']['input']>;
29778
+ newRoleId?: InputMaybe<Scalars['ID']['input']>;
29779
+ roleId: Scalars['ID']['input'];
29780
+ };
29781
+ export declare type ConfluenceDisableSystemRolePayload = Payload & {
29782
+ __typename?: 'ConfluenceDisableSystemRolePayload';
29783
+ errors?: Maybe<Array<MutationError>>;
29784
+ success: Scalars['Boolean']['output'];
29785
+ taskId?: Maybe<Scalars['ID']['output']>;
29786
+ };
29760
29787
  export declare type ConfluenceDraftContentNativeProperties = {
29761
29788
  __typename?: 'ConfluenceDraftContentNativeProperties';
29762
29789
  contentState?: Maybe<ConfluenceContentState>;
@@ -32797,6 +32824,14 @@ export declare type ConfluenceRestoreContentVersionPayload = {
32797
32824
  success: Scalars['Boolean']['output'];
32798
32825
  version: Version;
32799
32826
  };
32827
+ export declare type ConfluenceRestoreSystemRoleInput = {
32828
+ roleId: Scalars['ID']['input'];
32829
+ };
32830
+ export declare type ConfluenceRestoreSystemRolePayload = Payload & {
32831
+ __typename?: 'ConfluenceRestoreSystemRolePayload';
32832
+ errors?: Maybe<Array<MutationError>>;
32833
+ success: Scalars['Boolean']['output'];
32834
+ };
32800
32835
  export declare type ConfluenceRestrictingContent = {
32801
32836
  __typename?: 'ConfluenceRestrictingContent';
32802
32837
  id: Scalars['ID']['output'];
@@ -32977,6 +33012,15 @@ export declare type ConfluenceSetSubCalendarReminderPayload = {
32977
33012
  subCalendarReminder?: Maybe<ConfluenceSubCalendarReminder>;
32978
33013
  success: Scalars['Boolean']['output'];
32979
33014
  };
33015
+ export declare type ConfluenceSetSystemOperationRoleConfigurationInput = {
33016
+ roleId?: InputMaybe<Scalars['String']['input']>;
33017
+ systemOperation: ConfluenceSystemOperation;
33018
+ };
33019
+ export declare type ConfluenceSetSystemOperationRoleConfigurationPayload = Payload & {
33020
+ __typename?: 'ConfluenceSetSystemOperationRoleConfigurationPayload';
33021
+ errors?: Maybe<Array<MutationError>>;
33022
+ success: Scalars['Boolean']['output'];
33023
+ };
32980
33024
  export declare type ConfluenceShareConfiguration = {
32981
33025
  __typename?: 'ConfluenceShareConfiguration';
32982
33026
  disableSharingToEmails: Scalars['Boolean']['output'];
@@ -33582,6 +33626,22 @@ export declare type ConfluenceSyncSmartFolderPayload = Payload & {
33582
33626
  errors?: Maybe<Array<MutationError>>;
33583
33627
  success: Scalars['Boolean']['output'];
33584
33628
  };
33629
+ export declare enum ConfluenceSystemOperation {
33630
+ CompanyHubAdmin = "COMPANY_HUB_ADMIN",
33631
+ CompanyHubViewer = "COMPANY_HUB_VIEWER",
33632
+ DefaultGuestAssignment = "DEFAULT_GUEST_ASSIGNMENT",
33633
+ EcosystemAppWrite = "ECOSYSTEM_APP_WRITE",
33634
+ FallbackRole = "FALLBACK_ROLE",
33635
+ RecoverSpace = "RECOVER_SPACE",
33636
+ SpaceOwner = "SPACE_OWNER"
33637
+ }
33638
+ export declare type ConfluenceSystemOperationRoleConfiguration = {
33639
+ __typename?: 'ConfluenceSystemOperationRoleConfiguration';
33640
+ defaultRoleId: Scalars['String']['output'];
33641
+ description: Scalars['String']['output'];
33642
+ roleId?: Maybe<Scalars['String']['output']>;
33643
+ systemOperation: ConfluenceSystemOperation;
33644
+ };
33585
33645
  export declare type ConfluenceSystemTemplate = {
33586
33646
  __typename?: 'ConfluenceSystemTemplate';
33587
33647
  id: Scalars['ID']['output'];
@@ -40789,6 +40849,22 @@ export declare type DevAiAutodevNextAssociatedWorkstream = {
40789
40849
  name?: Maybe<Scalars['String']['output']>;
40790
40850
  status: Scalars['ID']['output'];
40791
40851
  };
40852
+ export declare type DevAiAutodevNextCompleteWorkItemRefinementInput = {
40853
+ cloudId: Scalars['ID']['input'];
40854
+ state: DevAiAutodevNextCompleteWorkItemRefinementState;
40855
+ workItemBody?: InputMaybe<Scalars['String']['input']>;
40856
+ workItemId: Scalars['ID']['input'];
40857
+ };
40858
+ export declare type DevAiAutodevNextCompleteWorkItemRefinementPayload = Payload & {
40859
+ __typename?: 'DevAiAutodevNextCompleteWorkItemRefinementPayload';
40860
+ errors?: Maybe<Array<MutationError>>;
40861
+ success: Scalars['Boolean']['output'];
40862
+ workItem?: Maybe<DevAiAutodevNextWorkItem>;
40863
+ };
40864
+ export declare enum DevAiAutodevNextCompleteWorkItemRefinementState {
40865
+ OutOfScope = "OUT_OF_SCOPE",
40866
+ Ready = "READY"
40867
+ }
40792
40868
  export declare type DevAiAutodevNextCreateWorkstreamInput = {
40793
40869
  cloudId: Scalars['ID']['input'];
40794
40870
  findWorkMode: DevAiAutodevNextWorkstreamFindWorkMode;
@@ -108354,12 +108430,14 @@ export declare type HelpCenterBrandingColors = {
108354
108430
  bannerTextColor?: Maybe<Scalars['String']['output']>;
108355
108431
  hasTopBarBeenSplit: Scalars['Boolean']['output'];
108356
108432
  primary?: Maybe<Scalars['String']['output']>;
108433
+ secondaryColor?: Maybe<Scalars['String']['output']>;
108357
108434
  topBarColor?: Maybe<Scalars['String']['output']>;
108358
108435
  topBarTextColor?: Maybe<Scalars['String']['output']>;
108359
108436
  };
108360
108437
  export declare type HelpCenterBrandingColorsInput = {
108361
108438
  bannerTextColor?: InputMaybe<Scalars['String']['input']>;
108362
108439
  primary?: InputMaybe<Scalars['String']['input']>;
108440
+ secondaryColor?: InputMaybe<Scalars['String']['input']>;
108363
108441
  topBarColor?: InputMaybe<Scalars['String']['input']>;
108364
108442
  topBarTextColor?: InputMaybe<Scalars['String']['input']>;
108365
108443
  };
@@ -130648,6 +130726,7 @@ export declare enum JiraRecommendationCategory {
130648
130726
  export declare type JiraRecommendedAction = {
130649
130727
  __typename?: 'JiraRecommendedAction';
130650
130728
  entity?: Maybe<JiraRecommendedActionEntity>;
130729
+ relatedEntity?: Maybe<JiraRecommendedActionEntity>;
130651
130730
  };
130652
130731
  export declare type JiraRecommendedActionCategory = {
130653
130732
  __typename?: 'JiraRecommendedActionCategory';
@@ -130674,6 +130753,7 @@ export declare enum JiraRecommendedActionCategoryType {
130674
130753
  CommentAssigned = "COMMENT_ASSIGNED",
130675
130754
  CommentMention = "COMMENT_MENTION",
130676
130755
  CommentReply = "COMMENT_REPLY",
130756
+ ConfluenceLinkedIssues = "CONFLUENCE_LINKED_ISSUES",
130677
130757
  IssueApproval = "ISSUE_APPROVAL",
130678
130758
  IssueDueSoon = "ISSUE_DUE_SOON",
130679
130759
  NotSet = "NOT_SET",
@@ -130696,7 +130776,7 @@ export declare type JiraRecommendedActionEdge = {
130696
130776
  cursor: Scalars['String']['output'];
130697
130777
  node?: Maybe<JiraRecommendedAction>;
130698
130778
  };
130699
- export declare type JiraRecommendedActionEntity = DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraProject | JiraServiceManagementComment | TeamV2;
130779
+ export declare type JiraRecommendedActionEntity = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraProject | JiraServiceManagementComment | TeamV2;
130700
130780
  export declare type JiraRedaction = {
130701
130781
  __typename?: 'JiraRedaction';
130702
130782
  created?: Maybe<Scalars['DateTime']['output']>;
@@ -140069,6 +140149,11 @@ export declare type JsmConversation = {
140069
140149
  issueId?: Maybe<Scalars['ID']['output']>;
140070
140150
  summary?: Maybe<Scalars['String']['output']>;
140071
140151
  };
140152
+ export declare enum JsmConversationActivationState {
140153
+ Disabled = "DISABLED",
140154
+ Enabled = "ENABLED",
140155
+ NotConfigured = "NOT_CONFIGURED"
140156
+ }
140072
140157
  export declare type JsmConversationActiveSla = {
140073
140158
  __typename?: 'JsmConversationActiveSla';
140074
140159
  expiresAt?: Maybe<Scalars['String']['output']>;
@@ -140154,6 +140239,7 @@ export declare enum JsmConversationMessageSource {
140154
140239
  }
140155
140240
  export declare type JsmConversationSettings = {
140156
140241
  __typename?: 'JsmConversationSettings';
140242
+ activationState?: Maybe<JsmConversationActivationState>;
140157
140243
  assignedTeam?: Maybe<TeamV2>;
140158
140244
  availabilityCriteria?: Maybe<JsmConversationLiveChatAvailabilityCriteria>;
140159
140245
  defaultRequestTypeId?: Maybe<Scalars['String']['output']>;
@@ -140164,6 +140250,7 @@ export declare type JsmConversationSettings = {
140164
140250
  teamId?: Maybe<Scalars['String']['output']>;
140165
140251
  };
140166
140252
  export declare type JsmConversationSettingsInput = {
140253
+ activationState?: InputMaybe<JsmConversationActivationState>;
140167
140254
  availabilityCriteria?: InputMaybe<JsmConversationLiveChatAvailabilityCriteria>;
140168
140255
  defaultRequestTypeId?: InputMaybe<Scalars['String']['input']>;
140169
140256
  issueLabel?: InputMaybe<Scalars['String']['input']>;
@@ -143059,6 +143146,7 @@ export declare type LiveChatParticipantLeft = {
143059
143146
  export declare type LiveChatSendUserMessageInput = {
143060
143147
  chatAri: Scalars['ID']['input'];
143061
143148
  content: Scalars['String']['input'];
143149
+ messageId?: InputMaybe<Scalars['ID']['input']>;
143062
143150
  };
143063
143151
  export declare type LiveChatStarted = {
143064
143152
  __typename?: 'LiveChatStarted';
@@ -152834,6 +152922,7 @@ export declare type MercuryProviderOrchestrationQueryApi = {
152834
152922
  providers?: Maybe<MercuryProviderConnection>;
152835
152923
  searchWorkByBenefitItem?: Maybe<MercuryProviderWorkSearchConnection>;
152836
152924
  searchWorkByChangeProposal?: Maybe<MercuryProviderWorkSearchConnection>;
152925
+ searchWorkByCostItem?: Maybe<MercuryProviderWorkSearchConnection>;
152837
152926
  searchWorkByFocusArea?: Maybe<MercuryProviderWorkSearchConnection>;
152838
152927
  searchWorkByRisk?: Maybe<MercuryProviderWorkSearchConnection>;
152839
152928
  workStatuses?: Maybe<Array<Maybe<MercuryProviderWorkStatus>>>;
@@ -152886,6 +152975,13 @@ export declare type MercuryProviderOrchestrationQueryApiSearchWorkByChangePropos
152886
152975
  textQuery?: InputMaybe<Scalars['String']['input']>;
152887
152976
  workContainerAri?: InputMaybe<Scalars['String']['input']>;
152888
152977
  };
152978
+ export declare type MercuryProviderOrchestrationQueryApiSearchWorkByCostItemArgs = {
152979
+ after?: InputMaybe<Scalars['String']['input']>;
152980
+ cloudId: Scalars['ID']['input'];
152981
+ costItemId: Scalars['ID']['input'];
152982
+ first?: InputMaybe<Scalars['Int']['input']>;
152983
+ textQuery?: InputMaybe<Scalars['String']['input']>;
152984
+ };
152889
152985
  export declare type MercuryProviderOrchestrationQueryApiSearchWorkByFocusAreaArgs = {
152890
152986
  after?: InputMaybe<Scalars['String']['input']>;
152891
152987
  applicationKey?: InputMaybe<Scalars['String']['input']>;
@@ -155712,8 +155808,6 @@ export declare type Mutation = {
155712
155808
  aiManagedObject_createAiManagedObjectConfig?: Maybe<AiManagedObjectConfig>;
155713
155809
  aiManagedObject_deleteAiManagedObject?: Maybe<Scalars['Boolean']['output']>;
155714
155810
  aiManagedObject_updateAiManagedObject?: Maybe<AiManagedObject>;
155715
- aiops_createInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
155716
- aiops_reviewRootCause?: Maybe<AiOpsReviewRootCausePayload>;
155717
155811
  aiops_triggerInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
155718
155812
  appRecommendations?: Maybe<AppRecMutation>;
155719
155813
  appStorage?: Maybe<AppStorageMutation>;
@@ -155946,6 +156040,7 @@ export declare type Mutation = {
155946
156040
  confluence_deleteSubCalendarPrivateUrl?: Maybe<ConfluenceDeleteSubCalendarPrivateUrlPayload>;
155947
156041
  confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
155948
156042
  confluence_deleteTopic?: Maybe<ConfluenceDeleteTopicPayload>;
156043
+ confluence_disableSystemRole?: Maybe<ConfluenceDisableSystemRolePayload>;
155949
156044
  confluence_enableGlobalAnonymousEnforcement?: Maybe<ConfluenceEnableGlobalAnonymousEnforcementPayload>;
155950
156045
  confluence_experimentInitAiFirstCreation?: Maybe<ConfluenceExperimentInitAiFirstCreationPayload>;
155951
156046
  confluence_experimentInitModernize?: Maybe<ConfluenceExperimentInitModernizePayload>;
@@ -155990,11 +156085,13 @@ export declare type Mutation = {
155990
156085
  confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
155991
156086
  confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
155992
156087
  confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
156088
+ confluence_restoreSystemRole?: Maybe<ConfluenceRestoreSystemRolePayload>;
155993
156089
  confluence_sendToDesktop?: Maybe<ConfluenceDesktopSendPayload>;
155994
156090
  confluence_setContentApprovalsSpaceSettings?: Maybe<ConfluenceContentApprovalsSpaceSettingsPayload>;
155995
156091
  confluence_setContentGeneralAccessMode?: Maybe<ConfluenceSetContentGeneralAccessModePayload>;
155996
156092
  confluence_setRolesHubTransitionStep?: Maybe<ConfluenceSetRolesHubTransitionStepPayload>;
155997
156093
  confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
156094
+ confluence_setSystemOperationRoleConfiguration?: Maybe<ConfluenceSetSystemOperationRoleConfigurationPayload>;
155998
156095
  confluence_shareContent?: Maybe<ConfluenceShareContentPayload>;
155999
156096
  confluence_subscribeCalendars?: Maybe<ConfluenceSubscribeCalendarPayload>;
156000
156097
  confluence_syncSmartFolder?: Maybe<ConfluenceSyncSmartFolderPayload>;
@@ -156200,6 +156297,7 @@ export declare type Mutation = {
156200
156297
  devai_archiveTechnicalPlannerJob?: Maybe<DevAiArchivedTechnicalPlannerJobPayload>;
156201
156298
  devai_autodevNextAddMembers?: Maybe<DevAiAutodevNextAddMembersPayload>;
156202
156299
  devai_autodevNextAddProjects?: Maybe<DevAiAutodevNextAddProjectsPayload>;
156300
+ devai_autodevNextCompleteWorkItemRefinement?: Maybe<DevAiAutodevNextCompleteWorkItemRefinementPayload>;
156203
156301
  devai_autodevNextCreateWorkstream?: Maybe<DevAiAutodevNextCreateWorkstreamPayload>;
156204
156302
  devai_autodevNextDeleteWorkstream?: Maybe<DevAiAutodevNextDeleteWorkstreamPayload>;
156205
156303
  devai_autodevNextReassignWorkItem?: Maybe<DevAiAutodevNextReassignWorkItemPayload>;
@@ -157389,13 +157487,6 @@ export declare type MutationAiManagedObject_UpdateAiManagedObjectArgs = {
157389
157487
  id: Scalars['ID']['input'];
157390
157488
  input: AiManagedObjectUpdateInput;
157391
157489
  };
157392
- export declare type MutationAiops_CreateInvestigationArgs = {
157393
- input: AiOpsCreateInvestigationInput;
157394
- };
157395
- export declare type MutationAiops_ReviewRootCauseArgs = {
157396
- cloudId: Scalars['ID']['input'];
157397
- input: AiOpsReviewRootCauseInput;
157398
- };
157399
157490
  export declare type MutationAiops_TriggerInvestigationArgs = {
157400
157491
  cloudId: Scalars['ID']['input'];
157401
157492
  input: AiOpsTriggerInvestigationInput;
@@ -158258,6 +158349,10 @@ export declare type MutationConfluence_DeleteTopicArgs = {
158258
158349
  cloudId: Scalars['ID']['input'];
158259
158350
  input: ConfluenceDeleteTopicInput;
158260
158351
  };
158352
+ export declare type MutationConfluence_DisableSystemRoleArgs = {
158353
+ cloudId: Scalars['ID']['input'];
158354
+ input: ConfluenceDisableSystemRoleInput;
158355
+ };
158261
158356
  export declare type MutationConfluence_EnableGlobalAnonymousEnforcementArgs = {
158262
158357
  cloudId: Scalars['ID']['input'];
158263
158358
  };
@@ -158437,6 +158532,10 @@ export declare type MutationConfluence_RestoreContentVersionArgs = {
158437
158532
  cloudId: Scalars['ID']['input'];
158438
158533
  input?: InputMaybe<ConfluenceRestoreContentVersionInput>;
158439
158534
  };
158535
+ export declare type MutationConfluence_RestoreSystemRoleArgs = {
158536
+ cloudId: Scalars['ID']['input'];
158537
+ input: ConfluenceRestoreSystemRoleInput;
158538
+ };
158440
158539
  export declare type MutationConfluence_SendToDesktopArgs = {
158441
158540
  cloudId: Scalars['ID']['input'];
158442
158541
  input: ConfluenceSendToDesktopRequestInput;
@@ -158459,6 +158558,10 @@ export declare type MutationConfluence_SetSubCalendarReminderArgs = {
158459
158558
  cloudId: Scalars['ID']['input'];
158460
158559
  input: ConfluenceSetSubCalendarReminderInput;
158461
158560
  };
158561
+ export declare type MutationConfluence_SetSystemOperationRoleConfigurationArgs = {
158562
+ cloudId: Scalars['ID']['input'];
158563
+ input: ConfluenceSetSystemOperationRoleConfigurationInput;
158564
+ };
158462
158565
  export declare type MutationConfluence_ShareContentArgs = {
158463
158566
  ContentShareRequestInput?: InputMaybe<ConfluenceContentShareRequestInput>;
158464
158567
  cloudId: Scalars['ID']['input'];
@@ -159192,6 +159295,9 @@ export declare type MutationDevai_AutodevNextAddMembersArgs = {
159192
159295
  export declare type MutationDevai_AutodevNextAddProjectsArgs = {
159193
159296
  input: DevAiAutodevNextAddProjectsInput;
159194
159297
  };
159298
+ export declare type MutationDevai_AutodevNextCompleteWorkItemRefinementArgs = {
159299
+ input: DevAiAutodevNextCompleteWorkItemRefinementInput;
159300
+ };
159195
159301
  export declare type MutationDevai_AutodevNextCreateWorkstreamArgs = {
159196
159302
  input: DevAiAutodevNextCreateWorkstreamInput;
159197
159303
  };
@@ -164797,12 +164903,10 @@ export declare type Query = {
164797
164903
  aiManagedObject_aiManagedObject?: Maybe<AiManagedObject>;
164798
164904
  aiManagedObject_aiManagedObjectConfig?: Maybe<AiManagedObjectConfig>;
164799
164905
  aiManagedObject_aiManagedObjectsByReferenceObjectAri?: Maybe<AiManagedObjectConnection>;
164800
- aiops_echo?: Maybe<Scalars['String']['output']>;
164801
164906
  aiops_incidentRelatedAlerts?: Maybe<AiOpsIncidentRelatedAlertsResponse>;
164802
164907
  aiops_incidentSuggestion?: Maybe<AiOpsIncidentSuggestionResponse>;
164803
164908
  aiops_investigationById?: Maybe<AiOpsInvestigation>;
164804
164909
  aiops_latestInvestigationByEntityTypeId?: Maybe<AiOpsInvestigationQueryResult>;
164805
- aiops_latestInvestigationByIssueId?: Maybe<AiOpsInvestigationQueryResult>;
164806
164910
  allIndividualSpaces?: Maybe<SpaceInfoConnection>;
164807
164911
  allTemplates?: Maybe<PaginatedTemplateInfoList>;
164808
164912
  allUpdatesFeed?: Maybe<PaginatedAllUpdatesFeed>;
@@ -164959,6 +165063,7 @@ export declare type Query = {
164959
165063
  avp_getReadOnlyDashboard?: Maybe<AvpDashboard>;
164960
165064
  avp_getRecentDashboards?: Maybe<Array<AvpRecentDashboard>>;
164961
165065
  avp_getStarredDashboards?: Maybe<Array<Scalars['String']['output']>>;
165066
+ avp_getWorkspaceExperience?: Maybe<AvpWorkspaceExperience>;
164962
165067
  avp_searchDashboards?: Maybe<AvpDashboardsConnection>;
164963
165068
  avpanalytics_getDataSource?: Maybe<AvpAnalyticsDataSource>;
164964
165069
  avpanalytics_getDataSources?: Maybe<Array<AvpAnalyticsDataSource>>;
@@ -165202,6 +165307,7 @@ export declare type Query = {
165202
165307
  confluence_subCalendarEmbedInfo?: Maybe<Array<Maybe<ConfluenceSubCalendarEmbedInfo>>>;
165203
165308
  confluence_subCalendarSubscribersCount?: Maybe<ConfluenceSubCalendarSubscribersCount>;
165204
165309
  confluence_subCalendarWatchingStatuses?: Maybe<Array<Maybe<ConfluenceSubCalendarWatchingStatus>>>;
165310
+ confluence_systemOperationRoleConfigurations?: Maybe<Array<Maybe<ConfluenceSystemOperationRoleConfiguration>>>;
165205
165311
  confluence_teamAdminControlsSettings?: Maybe<ConfluenceTeamAdminControlsSettings>;
165206
165312
  confluence_teamPresenceContentSetting?: Maybe<ConfluenceTeamPresence>;
165207
165313
  confluence_teamPresenceSpaceSettings?: Maybe<ConfluenceTeamPresenceSpaceSettings>;
@@ -166929,9 +167035,6 @@ export declare type QueryAiManagedObject_AiManagedObjectsByReferenceObjectAriArg
166929
167035
  referenceObjectAri: Scalars['ID']['input'];
166930
167036
  status?: InputMaybe<AiManagedObjectStatus>;
166931
167037
  };
166932
- export declare type QueryAiops_EchoArgs = {
166933
- input?: InputMaybe<Scalars['String']['input']>;
166934
- };
166935
167038
  export declare type QueryAiops_IncidentRelatedAlertsArgs = {
166936
167039
  cloudId: Scalars['ID']['input'];
166937
167040
  filter: AiOpsIncidentRelatedAlertsInput;
@@ -166949,9 +167052,6 @@ export declare type QueryAiops_LatestInvestigationByEntityTypeIdArgs = {
166949
167052
  entityId: Scalars['ID']['input'];
166950
167053
  entityType: AiOpsInvestigationSourceEntityType;
166951
167054
  };
166952
- export declare type QueryAiops_LatestInvestigationByIssueIdArgs = {
166953
- issueId: Scalars['ID']['input'];
166954
- };
166955
167055
  export declare type QueryAllIndividualSpacesArgs = {
166956
167056
  after?: InputMaybe<Scalars['String']['input']>;
166957
167057
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -167746,6 +167846,10 @@ export declare type QueryAvp_GetStarredDashboardsArgs = {
167746
167846
  principalAri: Scalars['ID']['input'];
167747
167847
  workspaceAri: Scalars['ID']['input'];
167748
167848
  };
167849
+ export declare type QueryAvp_GetWorkspaceExperienceArgs = {
167850
+ cloudId: Scalars['ID']['input'];
167851
+ workspaceAri: Scalars['ID']['input'];
167852
+ };
167749
167853
  export declare type QueryAvp_SearchDashboardsArgs = {
167750
167854
  after?: InputMaybe<Scalars['String']['input']>;
167751
167855
  cloudId: Scalars['ID']['input'];
@@ -168794,6 +168898,9 @@ export declare type QueryConfluence_SubCalendarWatchingStatusesArgs = {
168794
168898
  cloudId: Scalars['ID']['input'];
168795
168899
  subCalendarIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
168796
168900
  };
168901
+ export declare type QueryConfluence_SystemOperationRoleConfigurationsArgs = {
168902
+ cloudId: Scalars['ID']['input'];
168903
+ };
168797
168904
  export declare type QueryConfluence_TeamAdminControlsSettingsArgs = {
168798
168905
  cloudId: Scalars['ID']['input'];
168799
168906
  };
@@ -168848,6 +168955,7 @@ export declare type QueryConfluence_ValidateCalendarJqlArgs = {
168848
168955
  jql: Scalars['String']['input'];
168849
168956
  };
168850
168957
  export declare type QueryConfluence_ValidateConvertPageToMarkdownModeArgs = {
168958
+ adf?: InputMaybe<Scalars['String']['input']>;
168851
168959
  cloudId: Scalars['ID']['input'];
168852
168960
  contentId: Scalars['ID']['input'];
168853
168961
  };
@@ -208693,6 +208801,7 @@ export declare type TrelloMemberOwnedWebhook = {
208693
208801
  id: Scalars['ID']['output'];
208694
208802
  modelId: Scalars['ID']['output'];
208695
208803
  oauth2Client?: Maybe<TrelloMemberOwnedWebhookOAuth2Client>;
208804
+ tokenId?: Maybe<Scalars['ID']['output']>;
208696
208805
  };
208697
208806
  export declare type TrelloMemberOwnedWebhookConnection = {
208698
208807
  __typename?: 'TrelloMemberOwnedWebhookConnection';