@forge/cli-shared 8.23.0-next.10 → 8.23.0-next.11
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 +11 -0
- package/out/graphql/graphql-types.d.ts +137 -30
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +68 -40
- package/out/graphql/minimal-graphql-runner.d.ts +3 -3
- package/out/graphql/minimal-graphql-runner.d.ts.map +1 -1
- package/out/graphql/minimal-graphql-runner.js +7 -7
- package/out/shared/forge-cli-attribution.d.ts +3 -7
- package/out/shared/forge-cli-attribution.d.ts.map +1 -1
- package/out/shared/forge-cli-attribution.js +18 -28
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.23.0-next.11
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 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.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [e5b5031]
|
|
12
|
+
- @forge/manifest@12.8.0-next.9
|
|
13
|
+
|
|
3
14
|
## 8.23.0-next.10
|
|
4
15
|
|
|
5
16
|
### 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
|
};
|
|
@@ -140069,6 +140147,11 @@ export declare type JsmConversation = {
|
|
|
140069
140147
|
issueId?: Maybe<Scalars['ID']['output']>;
|
|
140070
140148
|
summary?: Maybe<Scalars['String']['output']>;
|
|
140071
140149
|
};
|
|
140150
|
+
export declare enum JsmConversationActivationState {
|
|
140151
|
+
Disabled = "DISABLED",
|
|
140152
|
+
Enabled = "ENABLED",
|
|
140153
|
+
NotConfigured = "NOT_CONFIGURED"
|
|
140154
|
+
}
|
|
140072
140155
|
export declare type JsmConversationActiveSla = {
|
|
140073
140156
|
__typename?: 'JsmConversationActiveSla';
|
|
140074
140157
|
expiresAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -140154,6 +140237,7 @@ export declare enum JsmConversationMessageSource {
|
|
|
140154
140237
|
}
|
|
140155
140238
|
export declare type JsmConversationSettings = {
|
|
140156
140239
|
__typename?: 'JsmConversationSettings';
|
|
140240
|
+
activationState?: Maybe<JsmConversationActivationState>;
|
|
140157
140241
|
assignedTeam?: Maybe<TeamV2>;
|
|
140158
140242
|
availabilityCriteria?: Maybe<JsmConversationLiveChatAvailabilityCriteria>;
|
|
140159
140243
|
defaultRequestTypeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -140164,6 +140248,7 @@ export declare type JsmConversationSettings = {
|
|
|
140164
140248
|
teamId?: Maybe<Scalars['String']['output']>;
|
|
140165
140249
|
};
|
|
140166
140250
|
export declare type JsmConversationSettingsInput = {
|
|
140251
|
+
activationState?: InputMaybe<JsmConversationActivationState>;
|
|
140167
140252
|
availabilityCriteria?: InputMaybe<JsmConversationLiveChatAvailabilityCriteria>;
|
|
140168
140253
|
defaultRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
140169
140254
|
issueLabel?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -143059,6 +143144,7 @@ export declare type LiveChatParticipantLeft = {
|
|
|
143059
143144
|
export declare type LiveChatSendUserMessageInput = {
|
|
143060
143145
|
chatAri: Scalars['ID']['input'];
|
|
143061
143146
|
content: Scalars['String']['input'];
|
|
143147
|
+
messageId?: InputMaybe<Scalars['ID']['input']>;
|
|
143062
143148
|
};
|
|
143063
143149
|
export declare type LiveChatStarted = {
|
|
143064
143150
|
__typename?: 'LiveChatStarted';
|
|
@@ -152834,6 +152920,7 @@ export declare type MercuryProviderOrchestrationQueryApi = {
|
|
|
152834
152920
|
providers?: Maybe<MercuryProviderConnection>;
|
|
152835
152921
|
searchWorkByBenefitItem?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
152836
152922
|
searchWorkByChangeProposal?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
152923
|
+
searchWorkByCostItem?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
152837
152924
|
searchWorkByFocusArea?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
152838
152925
|
searchWorkByRisk?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
152839
152926
|
workStatuses?: Maybe<Array<Maybe<MercuryProviderWorkStatus>>>;
|
|
@@ -152886,6 +152973,13 @@ export declare type MercuryProviderOrchestrationQueryApiSearchWorkByChangePropos
|
|
|
152886
152973
|
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
152887
152974
|
workContainerAri?: InputMaybe<Scalars['String']['input']>;
|
|
152888
152975
|
};
|
|
152976
|
+
export declare type MercuryProviderOrchestrationQueryApiSearchWorkByCostItemArgs = {
|
|
152977
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
152978
|
+
cloudId: Scalars['ID']['input'];
|
|
152979
|
+
costItemId: Scalars['ID']['input'];
|
|
152980
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
152981
|
+
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
152982
|
+
};
|
|
152889
152983
|
export declare type MercuryProviderOrchestrationQueryApiSearchWorkByFocusAreaArgs = {
|
|
152890
152984
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
152891
152985
|
applicationKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -155712,8 +155806,6 @@ export declare type Mutation = {
|
|
|
155712
155806
|
aiManagedObject_createAiManagedObjectConfig?: Maybe<AiManagedObjectConfig>;
|
|
155713
155807
|
aiManagedObject_deleteAiManagedObject?: Maybe<Scalars['Boolean']['output']>;
|
|
155714
155808
|
aiManagedObject_updateAiManagedObject?: Maybe<AiManagedObject>;
|
|
155715
|
-
aiops_createInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
|
|
155716
|
-
aiops_reviewRootCause?: Maybe<AiOpsReviewRootCausePayload>;
|
|
155717
155809
|
aiops_triggerInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
|
|
155718
155810
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
155719
155811
|
appStorage?: Maybe<AppStorageMutation>;
|
|
@@ -155946,6 +156038,7 @@ export declare type Mutation = {
|
|
|
155946
156038
|
confluence_deleteSubCalendarPrivateUrl?: Maybe<ConfluenceDeleteSubCalendarPrivateUrlPayload>;
|
|
155947
156039
|
confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
|
|
155948
156040
|
confluence_deleteTopic?: Maybe<ConfluenceDeleteTopicPayload>;
|
|
156041
|
+
confluence_disableSystemRole?: Maybe<ConfluenceDisableSystemRolePayload>;
|
|
155949
156042
|
confluence_enableGlobalAnonymousEnforcement?: Maybe<ConfluenceEnableGlobalAnonymousEnforcementPayload>;
|
|
155950
156043
|
confluence_experimentInitAiFirstCreation?: Maybe<ConfluenceExperimentInitAiFirstCreationPayload>;
|
|
155951
156044
|
confluence_experimentInitModernize?: Maybe<ConfluenceExperimentInitModernizePayload>;
|
|
@@ -155990,11 +156083,13 @@ export declare type Mutation = {
|
|
|
155990
156083
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
155991
156084
|
confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
|
|
155992
156085
|
confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
|
|
156086
|
+
confluence_restoreSystemRole?: Maybe<ConfluenceRestoreSystemRolePayload>;
|
|
155993
156087
|
confluence_sendToDesktop?: Maybe<ConfluenceDesktopSendPayload>;
|
|
155994
156088
|
confluence_setContentApprovalsSpaceSettings?: Maybe<ConfluenceContentApprovalsSpaceSettingsPayload>;
|
|
155995
156089
|
confluence_setContentGeneralAccessMode?: Maybe<ConfluenceSetContentGeneralAccessModePayload>;
|
|
155996
156090
|
confluence_setRolesHubTransitionStep?: Maybe<ConfluenceSetRolesHubTransitionStepPayload>;
|
|
155997
156091
|
confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
|
|
156092
|
+
confluence_setSystemOperationRoleConfiguration?: Maybe<ConfluenceSetSystemOperationRoleConfigurationPayload>;
|
|
155998
156093
|
confluence_shareContent?: Maybe<ConfluenceShareContentPayload>;
|
|
155999
156094
|
confluence_subscribeCalendars?: Maybe<ConfluenceSubscribeCalendarPayload>;
|
|
156000
156095
|
confluence_syncSmartFolder?: Maybe<ConfluenceSyncSmartFolderPayload>;
|
|
@@ -156200,6 +156295,7 @@ export declare type Mutation = {
|
|
|
156200
156295
|
devai_archiveTechnicalPlannerJob?: Maybe<DevAiArchivedTechnicalPlannerJobPayload>;
|
|
156201
156296
|
devai_autodevNextAddMembers?: Maybe<DevAiAutodevNextAddMembersPayload>;
|
|
156202
156297
|
devai_autodevNextAddProjects?: Maybe<DevAiAutodevNextAddProjectsPayload>;
|
|
156298
|
+
devai_autodevNextCompleteWorkItemRefinement?: Maybe<DevAiAutodevNextCompleteWorkItemRefinementPayload>;
|
|
156203
156299
|
devai_autodevNextCreateWorkstream?: Maybe<DevAiAutodevNextCreateWorkstreamPayload>;
|
|
156204
156300
|
devai_autodevNextDeleteWorkstream?: Maybe<DevAiAutodevNextDeleteWorkstreamPayload>;
|
|
156205
156301
|
devai_autodevNextReassignWorkItem?: Maybe<DevAiAutodevNextReassignWorkItemPayload>;
|
|
@@ -157389,13 +157485,6 @@ export declare type MutationAiManagedObject_UpdateAiManagedObjectArgs = {
|
|
|
157389
157485
|
id: Scalars['ID']['input'];
|
|
157390
157486
|
input: AiManagedObjectUpdateInput;
|
|
157391
157487
|
};
|
|
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
157488
|
export declare type MutationAiops_TriggerInvestigationArgs = {
|
|
157400
157489
|
cloudId: Scalars['ID']['input'];
|
|
157401
157490
|
input: AiOpsTriggerInvestigationInput;
|
|
@@ -158258,6 +158347,10 @@ export declare type MutationConfluence_DeleteTopicArgs = {
|
|
|
158258
158347
|
cloudId: Scalars['ID']['input'];
|
|
158259
158348
|
input: ConfluenceDeleteTopicInput;
|
|
158260
158349
|
};
|
|
158350
|
+
export declare type MutationConfluence_DisableSystemRoleArgs = {
|
|
158351
|
+
cloudId: Scalars['ID']['input'];
|
|
158352
|
+
input: ConfluenceDisableSystemRoleInput;
|
|
158353
|
+
};
|
|
158261
158354
|
export declare type MutationConfluence_EnableGlobalAnonymousEnforcementArgs = {
|
|
158262
158355
|
cloudId: Scalars['ID']['input'];
|
|
158263
158356
|
};
|
|
@@ -158437,6 +158530,10 @@ export declare type MutationConfluence_RestoreContentVersionArgs = {
|
|
|
158437
158530
|
cloudId: Scalars['ID']['input'];
|
|
158438
158531
|
input?: InputMaybe<ConfluenceRestoreContentVersionInput>;
|
|
158439
158532
|
};
|
|
158533
|
+
export declare type MutationConfluence_RestoreSystemRoleArgs = {
|
|
158534
|
+
cloudId: Scalars['ID']['input'];
|
|
158535
|
+
input: ConfluenceRestoreSystemRoleInput;
|
|
158536
|
+
};
|
|
158440
158537
|
export declare type MutationConfluence_SendToDesktopArgs = {
|
|
158441
158538
|
cloudId: Scalars['ID']['input'];
|
|
158442
158539
|
input: ConfluenceSendToDesktopRequestInput;
|
|
@@ -158459,6 +158556,10 @@ export declare type MutationConfluence_SetSubCalendarReminderArgs = {
|
|
|
158459
158556
|
cloudId: Scalars['ID']['input'];
|
|
158460
158557
|
input: ConfluenceSetSubCalendarReminderInput;
|
|
158461
158558
|
};
|
|
158559
|
+
export declare type MutationConfluence_SetSystemOperationRoleConfigurationArgs = {
|
|
158560
|
+
cloudId: Scalars['ID']['input'];
|
|
158561
|
+
input: ConfluenceSetSystemOperationRoleConfigurationInput;
|
|
158562
|
+
};
|
|
158462
158563
|
export declare type MutationConfluence_ShareContentArgs = {
|
|
158463
158564
|
ContentShareRequestInput?: InputMaybe<ConfluenceContentShareRequestInput>;
|
|
158464
158565
|
cloudId: Scalars['ID']['input'];
|
|
@@ -159192,6 +159293,9 @@ export declare type MutationDevai_AutodevNextAddMembersArgs = {
|
|
|
159192
159293
|
export declare type MutationDevai_AutodevNextAddProjectsArgs = {
|
|
159193
159294
|
input: DevAiAutodevNextAddProjectsInput;
|
|
159194
159295
|
};
|
|
159296
|
+
export declare type MutationDevai_AutodevNextCompleteWorkItemRefinementArgs = {
|
|
159297
|
+
input: DevAiAutodevNextCompleteWorkItemRefinementInput;
|
|
159298
|
+
};
|
|
159195
159299
|
export declare type MutationDevai_AutodevNextCreateWorkstreamArgs = {
|
|
159196
159300
|
input: DevAiAutodevNextCreateWorkstreamInput;
|
|
159197
159301
|
};
|
|
@@ -164797,12 +164901,10 @@ export declare type Query = {
|
|
|
164797
164901
|
aiManagedObject_aiManagedObject?: Maybe<AiManagedObject>;
|
|
164798
164902
|
aiManagedObject_aiManagedObjectConfig?: Maybe<AiManagedObjectConfig>;
|
|
164799
164903
|
aiManagedObject_aiManagedObjectsByReferenceObjectAri?: Maybe<AiManagedObjectConnection>;
|
|
164800
|
-
aiops_echo?: Maybe<Scalars['String']['output']>;
|
|
164801
164904
|
aiops_incidentRelatedAlerts?: Maybe<AiOpsIncidentRelatedAlertsResponse>;
|
|
164802
164905
|
aiops_incidentSuggestion?: Maybe<AiOpsIncidentSuggestionResponse>;
|
|
164803
164906
|
aiops_investigationById?: Maybe<AiOpsInvestigation>;
|
|
164804
164907
|
aiops_latestInvestigationByEntityTypeId?: Maybe<AiOpsInvestigationQueryResult>;
|
|
164805
|
-
aiops_latestInvestigationByIssueId?: Maybe<AiOpsInvestigationQueryResult>;
|
|
164806
164908
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
164807
164909
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
164808
164910
|
allUpdatesFeed?: Maybe<PaginatedAllUpdatesFeed>;
|
|
@@ -164959,6 +165061,7 @@ export declare type Query = {
|
|
|
164959
165061
|
avp_getReadOnlyDashboard?: Maybe<AvpDashboard>;
|
|
164960
165062
|
avp_getRecentDashboards?: Maybe<Array<AvpRecentDashboard>>;
|
|
164961
165063
|
avp_getStarredDashboards?: Maybe<Array<Scalars['String']['output']>>;
|
|
165064
|
+
avp_getWorkspaceExperience?: Maybe<AvpWorkspaceExperience>;
|
|
164962
165065
|
avp_searchDashboards?: Maybe<AvpDashboardsConnection>;
|
|
164963
165066
|
avpanalytics_getDataSource?: Maybe<AvpAnalyticsDataSource>;
|
|
164964
165067
|
avpanalytics_getDataSources?: Maybe<Array<AvpAnalyticsDataSource>>;
|
|
@@ -165202,6 +165305,7 @@ export declare type Query = {
|
|
|
165202
165305
|
confluence_subCalendarEmbedInfo?: Maybe<Array<Maybe<ConfluenceSubCalendarEmbedInfo>>>;
|
|
165203
165306
|
confluence_subCalendarSubscribersCount?: Maybe<ConfluenceSubCalendarSubscribersCount>;
|
|
165204
165307
|
confluence_subCalendarWatchingStatuses?: Maybe<Array<Maybe<ConfluenceSubCalendarWatchingStatus>>>;
|
|
165308
|
+
confluence_systemOperationRoleConfigurations?: Maybe<Array<Maybe<ConfluenceSystemOperationRoleConfiguration>>>;
|
|
165205
165309
|
confluence_teamAdminControlsSettings?: Maybe<ConfluenceTeamAdminControlsSettings>;
|
|
165206
165310
|
confluence_teamPresenceContentSetting?: Maybe<ConfluenceTeamPresence>;
|
|
165207
165311
|
confluence_teamPresenceSpaceSettings?: Maybe<ConfluenceTeamPresenceSpaceSettings>;
|
|
@@ -166929,9 +167033,6 @@ export declare type QueryAiManagedObject_AiManagedObjectsByReferenceObjectAriArg
|
|
|
166929
167033
|
referenceObjectAri: Scalars['ID']['input'];
|
|
166930
167034
|
status?: InputMaybe<AiManagedObjectStatus>;
|
|
166931
167035
|
};
|
|
166932
|
-
export declare type QueryAiops_EchoArgs = {
|
|
166933
|
-
input?: InputMaybe<Scalars['String']['input']>;
|
|
166934
|
-
};
|
|
166935
167036
|
export declare type QueryAiops_IncidentRelatedAlertsArgs = {
|
|
166936
167037
|
cloudId: Scalars['ID']['input'];
|
|
166937
167038
|
filter: AiOpsIncidentRelatedAlertsInput;
|
|
@@ -166949,9 +167050,6 @@ export declare type QueryAiops_LatestInvestigationByEntityTypeIdArgs = {
|
|
|
166949
167050
|
entityId: Scalars['ID']['input'];
|
|
166950
167051
|
entityType: AiOpsInvestigationSourceEntityType;
|
|
166951
167052
|
};
|
|
166952
|
-
export declare type QueryAiops_LatestInvestigationByIssueIdArgs = {
|
|
166953
|
-
issueId: Scalars['ID']['input'];
|
|
166954
|
-
};
|
|
166955
167053
|
export declare type QueryAllIndividualSpacesArgs = {
|
|
166956
167054
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
166957
167055
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -167746,6 +167844,10 @@ export declare type QueryAvp_GetStarredDashboardsArgs = {
|
|
|
167746
167844
|
principalAri: Scalars['ID']['input'];
|
|
167747
167845
|
workspaceAri: Scalars['ID']['input'];
|
|
167748
167846
|
};
|
|
167847
|
+
export declare type QueryAvp_GetWorkspaceExperienceArgs = {
|
|
167848
|
+
cloudId: Scalars['ID']['input'];
|
|
167849
|
+
workspaceAri: Scalars['ID']['input'];
|
|
167850
|
+
};
|
|
167749
167851
|
export declare type QueryAvp_SearchDashboardsArgs = {
|
|
167750
167852
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
167751
167853
|
cloudId: Scalars['ID']['input'];
|
|
@@ -168794,6 +168896,9 @@ export declare type QueryConfluence_SubCalendarWatchingStatusesArgs = {
|
|
|
168794
168896
|
cloudId: Scalars['ID']['input'];
|
|
168795
168897
|
subCalendarIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
168796
168898
|
};
|
|
168899
|
+
export declare type QueryConfluence_SystemOperationRoleConfigurationsArgs = {
|
|
168900
|
+
cloudId: Scalars['ID']['input'];
|
|
168901
|
+
};
|
|
168797
168902
|
export declare type QueryConfluence_TeamAdminControlsSettingsArgs = {
|
|
168798
168903
|
cloudId: Scalars['ID']['input'];
|
|
168799
168904
|
};
|
|
@@ -168848,6 +168953,7 @@ export declare type QueryConfluence_ValidateCalendarJqlArgs = {
|
|
|
168848
168953
|
jql: Scalars['String']['input'];
|
|
168849
168954
|
};
|
|
168850
168955
|
export declare type QueryConfluence_ValidateConvertPageToMarkdownModeArgs = {
|
|
168956
|
+
adf?: InputMaybe<Scalars['String']['input']>;
|
|
168851
168957
|
cloudId: Scalars['ID']['input'];
|
|
168852
168958
|
contentId: Scalars['ID']['input'];
|
|
168853
168959
|
};
|
|
@@ -208693,6 +208799,7 @@ export declare type TrelloMemberOwnedWebhook = {
|
|
|
208693
208799
|
id: Scalars['ID']['output'];
|
|
208694
208800
|
modelId: Scalars['ID']['output'];
|
|
208695
208801
|
oauth2Client?: Maybe<TrelloMemberOwnedWebhookOAuth2Client>;
|
|
208802
|
+
tokenId?: Maybe<Scalars['ID']['output']>;
|
|
208696
208803
|
};
|
|
208697
208804
|
export declare type TrelloMemberOwnedWebhookConnection = {
|
|
208698
208805
|
__typename?: 'TrelloMemberOwnedWebhookConnection';
|