@forge/cli-shared 9.3.0-next.6 → 9.3.0-next.8
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 +15 -0
- package/out/apps/create-an-app.d.ts +1 -3
- package/out/apps/create-an-app.d.ts.map +1 -1
- package/out/apps/create-an-app.js +2 -3
- package/out/apps/register-app.d.ts +2 -3
- package/out/apps/register-app.d.ts.map +1 -1
- package/out/apps/register-app.js +1 -2
- package/out/graphql/graphql-types.d.ts +292 -45
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +82 -36
- package/package.json +2 -2
|
@@ -359,6 +359,7 @@ export type AiOpsIncidentRelatedAlertsInput = {
|
|
|
359
359
|
onlyAlerts?: InputMaybe<Scalars['Boolean']['input']>;
|
|
360
360
|
priorities?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
361
361
|
serviceIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
362
|
+
serviceNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
362
363
|
};
|
|
363
364
|
export type AiOpsIncidentRelatedAlertsResponse = {
|
|
364
365
|
__typename?: 'AIOpsIncidentRelatedAlertsResponse';
|
|
@@ -11052,6 +11053,13 @@ export type AppLogsWithMetaDataResponse = {
|
|
|
11052
11053
|
offset?: Maybe<Scalars['Int']['output']>;
|
|
11053
11054
|
totalLogs: Scalars['Int']['output'];
|
|
11054
11055
|
};
|
|
11056
|
+
export type AppManifestTransformationContextFilter = {
|
|
11057
|
+
placement?: InputMaybe<Scalars['String']['input']>;
|
|
11058
|
+
};
|
|
11059
|
+
export type AppManifestTransformationResponse = {
|
|
11060
|
+
__typename?: 'AppManifestTransformationResponse';
|
|
11061
|
+
manifest?: Maybe<Scalars['JSON']['output']>;
|
|
11062
|
+
};
|
|
11055
11063
|
export declare enum AppNetworkEgressCategory {
|
|
11056
11064
|
Analytics = "ANALYTICS"
|
|
11057
11065
|
}
|
|
@@ -20782,22 +20790,6 @@ export type CollabTokenResponse = {
|
|
|
20782
20790
|
__typename?: 'CollabTokenResponse';
|
|
20783
20791
|
token: Scalars['String']['output'];
|
|
20784
20792
|
};
|
|
20785
|
-
export type CollaborationGraphRecommendationResult = {
|
|
20786
|
-
__typename?: 'CollaborationGraphRecommendationResult';
|
|
20787
|
-
id: Scalars['ID']['output'];
|
|
20788
|
-
score: Scalars['Float']['output'];
|
|
20789
|
-
};
|
|
20790
|
-
export type CollaborationGraphRecommendationResults = {
|
|
20791
|
-
__typename?: 'CollaborationGraphRecommendationResults';
|
|
20792
|
-
nodes: Array<CollaborationGraphRecommendationResult>;
|
|
20793
|
-
totalCount: Scalars['Int']['output'];
|
|
20794
|
-
};
|
|
20795
|
-
export type CollaborationGraphRequestContext = {
|
|
20796
|
-
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
20797
|
-
objectId?: InputMaybe<Scalars['String']['input']>;
|
|
20798
|
-
product?: InputMaybe<Scalars['String']['input']>;
|
|
20799
|
-
toPrivacySafeString?: InputMaybe<Scalars['String']['input']>;
|
|
20800
|
-
};
|
|
20801
20793
|
export type Column = {
|
|
20802
20794
|
__typename?: 'Column';
|
|
20803
20795
|
cards: Array<Maybe<SoftwareCard>>;
|
|
@@ -22277,6 +22269,7 @@ export type CommerceExpCcpTransactionAccountCurrentUserPermissionsArgs = {
|
|
|
22277
22269
|
};
|
|
22278
22270
|
export type CommerceExpCcpTransactionAccountEntitlementsArgs = {
|
|
22279
22271
|
filter?: InputMaybe<CommerceExpEntitlementFilter>;
|
|
22272
|
+
sort?: InputMaybe<Array<CommerceExpSort>>;
|
|
22280
22273
|
};
|
|
22281
22274
|
export type CommerceExpCcpTransactionAccountEntitlements2Args = {
|
|
22282
22275
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -36456,6 +36449,31 @@ export type ConfluenceSpaceWithActivityCount = {
|
|
|
36456
36449
|
activityCount?: Maybe<Scalars['Int']['output']>;
|
|
36457
36450
|
space?: Maybe<Space>;
|
|
36458
36451
|
};
|
|
36452
|
+
export type ConfluenceStaticMacroRenderError = {
|
|
36453
|
+
__typename?: 'ConfluenceStaticMacroRenderError';
|
|
36454
|
+
code: ConfluenceStaticMacroRenderErrorCode;
|
|
36455
|
+
message: Scalars['String']['output'];
|
|
36456
|
+
};
|
|
36457
|
+
export declare enum ConfluenceStaticMacroRenderErrorCode {
|
|
36458
|
+
InvocationFailed = "INVOCATION_FAILED"
|
|
36459
|
+
}
|
|
36460
|
+
export type ConfluenceStaticMacroRendered = {
|
|
36461
|
+
__typename?: 'ConfluenceStaticMacroRendered';
|
|
36462
|
+
error?: Maybe<ConfluenceStaticMacroRenderError>;
|
|
36463
|
+
macroId: Scalars['String']['output'];
|
|
36464
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
36465
|
+
};
|
|
36466
|
+
export type ConfluenceStaticMacroRenderedConnection = {
|
|
36467
|
+
__typename?: 'ConfluenceStaticMacroRenderedConnection';
|
|
36468
|
+
edges?: Maybe<Array<ConfluenceStaticMacroRenderedEdge>>;
|
|
36469
|
+
nodes?: Maybe<Array<ConfluenceStaticMacroRendered>>;
|
|
36470
|
+
pageInfo: PageInfoV2;
|
|
36471
|
+
};
|
|
36472
|
+
export type ConfluenceStaticMacroRenderedEdge = {
|
|
36473
|
+
__typename?: 'ConfluenceStaticMacroRenderedEdge';
|
|
36474
|
+
cursor: Scalars['String']['output'];
|
|
36475
|
+
node?: Maybe<ConfluenceStaticMacroRendered>;
|
|
36476
|
+
};
|
|
36459
36477
|
export type ConfluenceStorage = {
|
|
36460
36478
|
__typename?: 'ConfluenceStorage';
|
|
36461
36479
|
bytesLimit?: Maybe<Scalars['Long']['output']>;
|
|
@@ -45427,6 +45445,7 @@ export type DevAiRovoDevCreateSessionByCloudIdInput = {
|
|
|
45427
45445
|
options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
|
|
45428
45446
|
promptAdf?: InputMaybe<Scalars['JSON']['input']>;
|
|
45429
45447
|
repository: DevAiRovoDevRepositoryInput;
|
|
45448
|
+
repositoryResolutionPromptAdf?: InputMaybe<Scalars['JSON']['input']>;
|
|
45430
45449
|
source?: InputMaybe<Scalars['String']['input']>;
|
|
45431
45450
|
useCase?: InputMaybe<Scalars['String']['input']>;
|
|
45432
45451
|
xid?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -45439,6 +45458,7 @@ export type DevAiRovoDevCreateSessionInput = {
|
|
|
45439
45458
|
options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
|
|
45440
45459
|
promptAdf?: InputMaybe<Scalars['JSON']['input']>;
|
|
45441
45460
|
repository: DevAiRovoDevRepositoryInput;
|
|
45461
|
+
repositoryResolutionPromptAdf?: InputMaybe<Scalars['JSON']['input']>;
|
|
45442
45462
|
source?: InputMaybe<Scalars['String']['input']>;
|
|
45443
45463
|
useCase?: InputMaybe<Scalars['String']['input']>;
|
|
45444
45464
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -48034,6 +48054,10 @@ export type EcosystemCancelRollingReleasePayload = Payload & {
|
|
|
48034
48054
|
errors?: Maybe<Array<MutationError>>;
|
|
48035
48055
|
success: Scalars['Boolean']['output'];
|
|
48036
48056
|
};
|
|
48057
|
+
export type EcosystemChargeQuantityInput = {
|
|
48058
|
+
chargeElement: Scalars['String']['input'];
|
|
48059
|
+
quantity: Scalars['Float']['input'];
|
|
48060
|
+
};
|
|
48037
48061
|
export type EcosystemConnectApp = {
|
|
48038
48062
|
__typename?: 'EcosystemConnectApp';
|
|
48039
48063
|
baseUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -48354,6 +48378,7 @@ export type EcosystemOrderEntitlementInput = {
|
|
|
48354
48378
|
version: Scalars['Int']['input'];
|
|
48355
48379
|
};
|
|
48356
48380
|
export type EcosystemOrderItemChargingDetailsInput = {
|
|
48381
|
+
chargeQuantities?: InputMaybe<Array<EcosystemChargeQuantityInput>>;
|
|
48357
48382
|
pricingPlanId: Scalars['String']['input'];
|
|
48358
48383
|
};
|
|
48359
48384
|
export type EcosystemOrderItemOptedUsageOptionsInput = {
|
|
@@ -52436,13 +52461,38 @@ export type ForgeMetricsSuccessRateValueData = ForgeMetricsData & {
|
|
|
52436
52461
|
type: ForgeMetricsDataType;
|
|
52437
52462
|
};
|
|
52438
52463
|
export type ForgeMetricsSuccessRateValueResult = ForgeMetricsSuccessRateValueData | QueryError;
|
|
52464
|
+
export type ForgeObservabilityFrontendLogContextInput = {
|
|
52465
|
+
appId: Scalars['ID']['input'];
|
|
52466
|
+
contextAri: Scalars['ID']['input'];
|
|
52467
|
+
extensionId: Scalars['ID']['input'];
|
|
52468
|
+
installationId: Scalars['ID']['input'];
|
|
52469
|
+
userAgent: Scalars['String']['input'];
|
|
52470
|
+
};
|
|
52471
|
+
export type ForgeObservabilityFrontendLogEntryInput = {
|
|
52472
|
+
args?: InputMaybe<Array<InputMaybe<Scalars['JSON']['input']>>>;
|
|
52473
|
+
errorType?: InputMaybe<Scalars['String']['input']>;
|
|
52474
|
+
logId: Scalars['ID']['input'];
|
|
52475
|
+
logSource: ForgeObservabilityFrontendLogSource;
|
|
52476
|
+
lvl: Scalars['Int']['input'];
|
|
52477
|
+
msg: Scalars['String']['input'];
|
|
52478
|
+
timestamp: Scalars['Float']['input'];
|
|
52479
|
+
};
|
|
52480
|
+
export declare enum ForgeObservabilityFrontendLogSource {
|
|
52481
|
+
Console = "CONSOLE",
|
|
52482
|
+
UncaughtException = "UNCAUGHT_EXCEPTION",
|
|
52483
|
+
UnhandledRejection = "UNHANDLED_REJECTION"
|
|
52484
|
+
}
|
|
52439
52485
|
export type ForgeObservabilityMutation = {
|
|
52440
52486
|
__typename?: 'ForgeObservabilityMutation';
|
|
52441
52487
|
publishFrontendCustomMetric?: Maybe<ForgeObservabilityPublishFrontendCustomMetricResponse>;
|
|
52488
|
+
publishFrontendLogs?: Maybe<ForgeObservabilityPublishFrontendLogsResponse>;
|
|
52442
52489
|
};
|
|
52443
52490
|
export type ForgeObservabilityMutationPublishFrontendCustomMetricArgs = {
|
|
52444
52491
|
input: ForgeObservabilityPublishFrontendCustomMetricInput;
|
|
52445
52492
|
};
|
|
52493
|
+
export type ForgeObservabilityMutationPublishFrontendLogsArgs = {
|
|
52494
|
+
input: ForgeObservabilityPublishFrontendLogsInput;
|
|
52495
|
+
};
|
|
52446
52496
|
export type ForgeObservabilityPublishFrontendCustomMetricInput = {
|
|
52447
52497
|
appId: Scalars['ID']['input'];
|
|
52448
52498
|
contextAri: Scalars['ID']['input'];
|
|
@@ -52455,6 +52505,14 @@ export type ForgeObservabilityPublishFrontendCustomMetricResponse = {
|
|
|
52455
52505
|
__typename?: 'ForgeObservabilityPublishFrontendCustomMetricResponse';
|
|
52456
52506
|
success: Scalars['Boolean']['output'];
|
|
52457
52507
|
};
|
|
52508
|
+
export type ForgeObservabilityPublishFrontendLogsInput = {
|
|
52509
|
+
context: ForgeObservabilityFrontendLogContextInput;
|
|
52510
|
+
logs: Array<ForgeObservabilityFrontendLogEntryInput>;
|
|
52511
|
+
};
|
|
52512
|
+
export type ForgeObservabilityPublishFrontendLogsResponse = {
|
|
52513
|
+
__typename?: 'ForgeObservabilityPublishFrontendLogsResponse';
|
|
52514
|
+
success: Scalars['Boolean']['output'];
|
|
52515
|
+
};
|
|
52458
52516
|
export declare enum FormStatus {
|
|
52459
52517
|
Approved = "APPROVED",
|
|
52460
52518
|
Rejected = "REJECTED",
|
|
@@ -52727,10 +52785,6 @@ export type GlobalAppInstallationConfig = {
|
|
|
52727
52785
|
key: Scalars['String']['output'];
|
|
52728
52786
|
value: Scalars['Boolean']['output'];
|
|
52729
52787
|
};
|
|
52730
|
-
export type GlobalAppIsProductAdminResponse = {
|
|
52731
|
-
__typename?: 'GlobalAppIsProductAdminResponse';
|
|
52732
|
-
isAdmin: Scalars['Boolean']['output'];
|
|
52733
|
-
};
|
|
52734
52788
|
export type GlobalAppLicense = {
|
|
52735
52789
|
__typename?: 'GlobalAppLicense';
|
|
52736
52790
|
active: Scalars['Boolean']['output'];
|
|
@@ -52796,6 +52850,15 @@ export type GlobalAppTmpPersonalAppSignForgeContextTokensResponse = Payload & {
|
|
|
52796
52850
|
success: Scalars['Boolean']['output'];
|
|
52797
52851
|
tokens: Array<GlobalAppTmpPersonalAppForgeContextToken>;
|
|
52798
52852
|
};
|
|
52853
|
+
export declare enum GlobalAppUserAccess {
|
|
52854
|
+
Admin = "ADMIN",
|
|
52855
|
+
Forbidden = "FORBIDDEN",
|
|
52856
|
+
User = "USER"
|
|
52857
|
+
}
|
|
52858
|
+
export type GlobalAppUserAccessResponse = {
|
|
52859
|
+
__typename?: 'GlobalAppUserAccessResponse';
|
|
52860
|
+
userAccess?: Maybe<GlobalAppUserAccess>;
|
|
52861
|
+
};
|
|
52799
52862
|
export type GlobalCardCreateAdditionalFields = {
|
|
52800
52863
|
__typename?: 'GlobalCardCreateAdditionalFields';
|
|
52801
52864
|
boardIssueListKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -54538,6 +54601,7 @@ export type GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload = Paylo
|
|
|
54538
54601
|
success: Scalars['Boolean']['output'];
|
|
54539
54602
|
};
|
|
54540
54603
|
export type GraphIntegrationMcpAdminManagementUpdateMcpRegistrationInput = {
|
|
54604
|
+
authConfig?: InputMaybe<GraphIntegrationMcpAdminManagementMcpServerAuthConfigInput>;
|
|
54541
54605
|
autoEnableNewTools?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54542
54606
|
cloudId: Scalars['ID']['input'];
|
|
54543
54607
|
serverId: Scalars['ID']['input'];
|
|
@@ -120371,6 +120435,26 @@ export declare enum InspectPermissions {
|
|
|
120371
120435
|
Edit = "EDIT",
|
|
120372
120436
|
View = "VIEW"
|
|
120373
120437
|
}
|
|
120438
|
+
export type Installation = {
|
|
120439
|
+
__typename?: 'Installation';
|
|
120440
|
+
analyticsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
120441
|
+
appId?: Maybe<Scalars['String']['output']>;
|
|
120442
|
+
atlassianApp?: Maybe<Array<Scalars['String']['output']>>;
|
|
120443
|
+
cloudId?: Maybe<Scalars['String']['output']>;
|
|
120444
|
+
computeVersion?: Maybe<Scalars['String']['output']>;
|
|
120445
|
+
contextARI?: Maybe<Scalars['String']['output']>;
|
|
120446
|
+
customMetricsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
120447
|
+
edition?: Maybe<Scalars['String']['output']>;
|
|
120448
|
+
environment?: Maybe<Scalars['String']['output']>;
|
|
120449
|
+
hostName?: Maybe<Scalars['String']['output']>;
|
|
120450
|
+
installationId: Scalars['String']['output'];
|
|
120451
|
+
installedOn?: Maybe<Scalars['String']['output']>;
|
|
120452
|
+
license?: Maybe<Scalars['String']['output']>;
|
|
120453
|
+
logsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
120454
|
+
secondaryContexts?: Maybe<Array<Scalars['String']['output']>>;
|
|
120455
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
120456
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
120457
|
+
};
|
|
120374
120458
|
export type InstallationContext = {
|
|
120375
120459
|
__typename?: 'InstallationContext';
|
|
120376
120460
|
environmentId: Scalars['ID']['output'];
|
|
@@ -120443,6 +120527,13 @@ export type InstallationsListFilterByAppInstallationsWithCompulsoryContexts = {
|
|
|
120443
120527
|
export type InstallationsListFilterByApps = {
|
|
120444
120528
|
ids: Array<Scalars['ID']['input']>;
|
|
120445
120529
|
};
|
|
120530
|
+
export type InstallationsResponse = {
|
|
120531
|
+
__typename?: 'InstallationsResponse';
|
|
120532
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
120533
|
+
installations: Array<Installation>;
|
|
120534
|
+
offset?: Maybe<Scalars['Int']['output']>;
|
|
120535
|
+
totalCount: Scalars['Int']['output'];
|
|
120536
|
+
};
|
|
120446
120537
|
export type InstanceAnalyticsCount = {
|
|
120447
120538
|
__typename?: 'InstanceAnalyticsCount';
|
|
120448
120539
|
user: Scalars['Int']['output'];
|
|
@@ -121309,6 +121400,26 @@ export type JiraAgentAssignableInput = {
|
|
|
121309
121400
|
agentAccountId?: InputMaybe<Scalars['ID']['input']>;
|
|
121310
121401
|
agentId?: InputMaybe<Scalars['ID']['input']>;
|
|
121311
121402
|
};
|
|
121403
|
+
export type JiraAgentContextAcceptItemInput = {
|
|
121404
|
+
agentAri?: InputMaybe<Scalars['ID']['input']>;
|
|
121405
|
+
spaceAri: Scalars['ID']['input'];
|
|
121406
|
+
targetAri: Scalars['ID']['input'];
|
|
121407
|
+
};
|
|
121408
|
+
export type JiraAgentContextAcceptItemPayload = {
|
|
121409
|
+
__typename?: 'JiraAgentContextAcceptItemPayload';
|
|
121410
|
+
errors?: Maybe<Array<MutationError>>;
|
|
121411
|
+
success: Scalars['Boolean']['output'];
|
|
121412
|
+
};
|
|
121413
|
+
export type JiraAgentContextAddItemInput = {
|
|
121414
|
+
agentAri?: InputMaybe<Scalars['ID']['input']>;
|
|
121415
|
+
spaceAri: Scalars['ID']['input'];
|
|
121416
|
+
targetAri: Scalars['ID']['input'];
|
|
121417
|
+
};
|
|
121418
|
+
export type JiraAgentContextAddItemPayload = {
|
|
121419
|
+
__typename?: 'JiraAgentContextAddItemPayload';
|
|
121420
|
+
errors?: Maybe<Array<MutationError>>;
|
|
121421
|
+
success: Scalars['Boolean']['output'];
|
|
121422
|
+
};
|
|
121312
121423
|
export type JiraAgentContextFilter = {
|
|
121313
121424
|
entityTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
121314
121425
|
origins?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -121397,6 +121508,7 @@ export declare enum JiraAgentInSpaceSource {
|
|
|
121397
121508
|
Assignable = "ASSIGNABLE",
|
|
121398
121509
|
JiraAutomation = "JIRA_AUTOMATION",
|
|
121399
121510
|
Ootb = "OOTB",
|
|
121511
|
+
QueryInput = "QUERY_INPUT",
|
|
121400
121512
|
StudioAutomation = "STUDIO_AUTOMATION",
|
|
121401
121513
|
ThirdParty = "THIRD_PARTY",
|
|
121402
121514
|
Workflow = "WORKFLOW"
|
|
@@ -141416,6 +141528,7 @@ export type JiraRecommendedActionCategory = {
|
|
|
141416
141528
|
export type JiraRecommendedActionCategoryConnection = {
|
|
141417
141529
|
__typename?: 'JiraRecommendedActionCategoryConnection';
|
|
141418
141530
|
edges?: Maybe<Array<Maybe<JiraRecommendedActionCategoryEdge>>>;
|
|
141531
|
+
isUserEligibleForNewRecommendation?: Maybe<Scalars['Boolean']['output']>;
|
|
141419
141532
|
pageInfo: PageInfo;
|
|
141420
141533
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
141421
141534
|
};
|
|
@@ -141430,7 +141543,11 @@ export declare enum JiraRecommendedActionCategoryType {
|
|
|
141430
141543
|
CommentReply = "COMMENT_REPLY",
|
|
141431
141544
|
ConfluenceLinkedIssues = "CONFLUENCE_LINKED_ISSUES",
|
|
141432
141545
|
IssueApproval = "ISSUE_APPROVAL",
|
|
141546
|
+
IssueBlockedByMe = "ISSUE_BLOCKED_BY_ME",
|
|
141547
|
+
IssueBlockingMe = "ISSUE_BLOCKING_ME",
|
|
141433
141548
|
IssueDueSoon = "ISSUE_DUE_SOON",
|
|
141549
|
+
IssueRecentlyUnblocked = "ISSUE_RECENTLY_UNBLOCKED",
|
|
141550
|
+
IssueStuck = "ISSUE_STUCK",
|
|
141434
141551
|
NotSet = "NOT_SET",
|
|
141435
141552
|
ProjectInviterContext = "PROJECT_INVITER_CONTEXT",
|
|
141436
141553
|
ProjectPopularity = "PROJECT_POPULARITY",
|
|
@@ -146078,6 +146195,12 @@ export type JiraStakeholderUpdatedValue = {
|
|
|
146078
146195
|
description?: Maybe<Scalars['String']['output']>;
|
|
146079
146196
|
message?: Maybe<Scalars['String']['output']>;
|
|
146080
146197
|
};
|
|
146198
|
+
export type JiraStartAiAgentSessionByExternalReferenceInput = {
|
|
146199
|
+
clientMutationId: Scalars['String']['input'];
|
|
146200
|
+
cloudId: Scalars['ID']['input'];
|
|
146201
|
+
externalReference: Scalars['String']['input'];
|
|
146202
|
+
issueId: Scalars['String']['input'];
|
|
146203
|
+
};
|
|
146081
146204
|
export type JiraStartAiAgentSessionInput = {
|
|
146082
146205
|
agentId: Scalars['String']['input'];
|
|
146083
146206
|
clientMutationId: Scalars['String']['input'];
|
|
@@ -146088,6 +146211,7 @@ export type JiraStartAiAgentSessionInput = {
|
|
|
146088
146211
|
};
|
|
146089
146212
|
export type JiraStartAiAgentSessionPayload = Payload & {
|
|
146090
146213
|
__typename?: 'JiraStartAiAgentSessionPayload';
|
|
146214
|
+
agentSession?: Maybe<JiraAgentSession>;
|
|
146091
146215
|
errors?: Maybe<Array<MutationError>>;
|
|
146092
146216
|
success: Scalars['Boolean']['output'];
|
|
146093
146217
|
};
|
|
@@ -151866,6 +151990,11 @@ export declare enum JsmSolutionComposerStepStatusType {
|
|
|
151866
151990
|
Failed = "FAILED",
|
|
151867
151991
|
InProgress = "IN_PROGRESS"
|
|
151868
151992
|
}
|
|
151993
|
+
export declare enum JsmTelemetryChartSource {
|
|
151994
|
+
AiRecommended = "AI_RECOMMENDED",
|
|
151995
|
+
Hypothesis = "HYPOTHESIS",
|
|
151996
|
+
Manual = "MANUAL"
|
|
151997
|
+
}
|
|
151869
151998
|
export type JsmTelemetryConnection = {
|
|
151870
151999
|
__typename?: 'JsmTelemetryConnection';
|
|
151871
152000
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -151935,36 +152064,41 @@ export type JsmTelemetryDashboardChartInput = {
|
|
|
151935
152064
|
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
151936
152065
|
provider: JsmTelemetryProviderType;
|
|
151937
152066
|
query: JsmTelemetryDashboardChartQueryInput;
|
|
151938
|
-
|
|
152067
|
+
serviceId?: InputMaybe<Scalars['ID']['input']>;
|
|
152068
|
+
source: JsmTelemetryChartSource;
|
|
151939
152069
|
};
|
|
151940
152070
|
export type JsmTelemetryDashboardChartQueryInput = {
|
|
151941
152071
|
aggregation?: InputMaybe<JsmTelemetryMetricAggregationInput>;
|
|
151942
152072
|
filters: Array<JsmTelemetryMetricFilterInput>;
|
|
151943
152073
|
metricName: Scalars['String']['input'];
|
|
151944
|
-
resolution?: InputMaybe<JsmTelemetryMetricResolutionInput>;
|
|
151945
|
-
timeRange?: InputMaybe<JsmTelemetryTimeRangeInput>;
|
|
151946
152074
|
};
|
|
151947
152075
|
export type JsmTelemetryDashboardChartQueryResult = {
|
|
151948
152076
|
__typename?: 'JsmTelemetryDashboardChartQueryResult';
|
|
151949
152077
|
aggregation?: Maybe<JsmTelemetryMetricAggregation>;
|
|
151950
152078
|
filters: Array<JsmTelemetryMetricFilter>;
|
|
151951
152079
|
metricName: Scalars['String']['output'];
|
|
151952
|
-
resolution?: Maybe<JsmTelemetryMetricResolution>;
|
|
151953
|
-
timeRange?: Maybe<JsmTelemetryTimeRange>;
|
|
151954
152080
|
};
|
|
151955
152081
|
export type JsmTelemetryDashboardChartResult = {
|
|
151956
152082
|
__typename?: 'JsmTelemetryDashboardChartResult';
|
|
151957
|
-
|
|
152083
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
151958
152084
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
152085
|
+
id: Scalars['ID']['output'];
|
|
151959
152086
|
provider: JsmTelemetryProviderType;
|
|
151960
152087
|
query: JsmTelemetryDashboardChartQueryResult;
|
|
151961
|
-
|
|
152088
|
+
serviceId?: Maybe<Scalars['ID']['output']>;
|
|
152089
|
+
source: JsmTelemetryChartSource;
|
|
152090
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
151962
152091
|
};
|
|
151963
152092
|
export type JsmTelemetryDashboardConfigResponseDto = {
|
|
151964
152093
|
__typename?: 'JsmTelemetryDashboardConfigResponseDto';
|
|
151965
152094
|
charts: Array<JsmTelemetryDashboardChartResult>;
|
|
152095
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
151966
152096
|
id: Scalars['ID']['output'];
|
|
151967
|
-
|
|
152097
|
+
scopeId: Scalars['ID']['output'];
|
|
152098
|
+
scopeType?: Maybe<JsmTelemetryScopeType>;
|
|
152099
|
+
status: JsmTelemetryDashboardStatus;
|
|
152100
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
152101
|
+
version: Scalars['Int']['output'];
|
|
151968
152102
|
};
|
|
151969
152103
|
export type JsmTelemetryDashboardQueryInput = {
|
|
151970
152104
|
placeholder?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -151974,6 +152108,10 @@ export type JsmTelemetryDashboardResult = {
|
|
|
151974
152108
|
data?: Maybe<JsmTelemetryDashboardConfigResponseDto>;
|
|
151975
152109
|
error?: Maybe<JsmTelemetryDomainError>;
|
|
151976
152110
|
};
|
|
152111
|
+
export declare enum JsmTelemetryDashboardStatus {
|
|
152112
|
+
Active = "ACTIVE",
|
|
152113
|
+
Frozen = "FROZEN"
|
|
152114
|
+
}
|
|
151977
152115
|
export type JsmTelemetryDeleteTelemetryConnectionInput = {
|
|
151978
152116
|
id: Scalars['ID']['input'];
|
|
151979
152117
|
};
|
|
@@ -152352,6 +152490,9 @@ export type JsmTelemetryRuleConditionSchema = {
|
|
|
152352
152490
|
const?: Maybe<Scalars['String']['output']>;
|
|
152353
152491
|
not?: Maybe<JsmTelemetryRuleConditionFragment>;
|
|
152354
152492
|
};
|
|
152493
|
+
export declare enum JsmTelemetryScopeType {
|
|
152494
|
+
Incident = "INCIDENT"
|
|
152495
|
+
}
|
|
152355
152496
|
export type JsmTelemetryServiceInfo = {
|
|
152356
152497
|
__typename?: 'JsmTelemetryServiceInfo';
|
|
152357
152498
|
apiStatus: Scalars['String']['output'];
|
|
@@ -152845,6 +152986,7 @@ export type KitsuneEntitlements = {
|
|
|
152845
152986
|
cloudId: Scalars['String']['output'];
|
|
152846
152987
|
editionType: KitsuneFeedbackEditionType;
|
|
152847
152988
|
isAiEnabled: Scalars['Boolean']['output'];
|
|
152989
|
+
isCsmActive: Scalars['Boolean']['output'];
|
|
152848
152990
|
isUserAdmin: Scalars['Boolean']['output'];
|
|
152849
152991
|
userHasProductAccess: Scalars['Boolean']['output'];
|
|
152850
152992
|
};
|
|
@@ -153016,6 +153158,7 @@ export type KitsuneFilter = {
|
|
|
153016
153158
|
__typename?: 'KitsuneFilter';
|
|
153017
153159
|
comparisonOperator: KitsuneComparisonOperator;
|
|
153018
153160
|
field: KitsuneField;
|
|
153161
|
+
fieldId: Scalars['ID']['output'];
|
|
153019
153162
|
logicalOperator: KitsuneLogicalOperator;
|
|
153020
153163
|
values: Array<KitsuneFilterValue>;
|
|
153021
153164
|
};
|
|
@@ -157859,6 +158002,7 @@ export type MarketplaceConsoleMutationApi = {
|
|
|
157859
158002
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
|
|
157860
158003
|
makeAppVersionPublic?: Maybe<MarketplaceConsoleMakeAppVersionPublicMutationOutput>;
|
|
157861
158004
|
patchProductMigration?: Maybe<MarketplaceConsoleProductMigrationResponse>;
|
|
158005
|
+
refreshAppPublishWizardScreen?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
|
|
157862
158006
|
regenerateAppPublishWizardField?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
|
|
157863
158007
|
startAppPublishWizardSession?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
|
|
157864
158008
|
submitAppPublishWizardSession?: Maybe<MarketplaceConsoleAppPublishWizardReadinessResponse>;
|
|
@@ -157940,6 +158084,11 @@ export type MarketplaceConsoleMutationApiPatchProductMigrationArgs = {
|
|
|
157940
158084
|
operations: Array<MarketplaceConsoleJsonPatchOperation>;
|
|
157941
158085
|
productId: Scalars['ID']['input'];
|
|
157942
158086
|
};
|
|
158087
|
+
export type MarketplaceConsoleMutationApiRefreshAppPublishWizardScreenArgs = {
|
|
158088
|
+
appSoftwareId: Scalars['ID']['input'];
|
|
158089
|
+
input: MarketplaceConsoleCompleteAppPublishWizardScreenInput;
|
|
158090
|
+
submissionId: Scalars['ID']['input'];
|
|
158091
|
+
};
|
|
157943
158092
|
export type MarketplaceConsoleMutationApiRegenerateAppPublishWizardFieldArgs = {
|
|
157944
158093
|
appSoftwareId: Scalars['ID']['input'];
|
|
157945
158094
|
fieldId: Scalars['ID']['input'];
|
|
@@ -160351,6 +160500,7 @@ export type MarketplaceStoreQueryApiAppSoftwareVersionListingByAppIdArgs = {
|
|
|
160351
160500
|
export type MarketplaceStoreQueryApiAppSoftwareVersionListingByAppKeyArgs = {
|
|
160352
160501
|
appKey: Scalars['String']['input'];
|
|
160353
160502
|
buildNumber: Scalars['ID']['input'];
|
|
160503
|
+
complianceBoundary?: InputMaybe<MarketplaceStoreCloudComplianceBoundary>;
|
|
160354
160504
|
};
|
|
160355
160505
|
export type MarketplaceStoreQueryApiBillingSystemArgs = {
|
|
160356
160506
|
billingSystemInput: MarketplaceStoreBillingSystemInput;
|
|
@@ -163598,6 +163748,7 @@ export type MercuryFocusArea = Node & {
|
|
|
163598
163748
|
sponsorOrganization?: Maybe<MercuryOrganization>;
|
|
163599
163749
|
sponsorOrganizationId?: Maybe<Scalars['ID']['output']>;
|
|
163600
163750
|
starred?: Maybe<Scalars['Boolean']['output']>;
|
|
163751
|
+
startDate?: Maybe<MercuryFocusAreaStartDate>;
|
|
163601
163752
|
status: MercuryFocusAreaStatus;
|
|
163602
163753
|
statusTransitions: MercuryFocusAreaStatusTransitions;
|
|
163603
163754
|
subFocusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
@@ -164021,6 +164172,16 @@ export declare enum MercuryFocusAreaSortField {
|
|
|
164021
164172
|
TargetDate = "TARGET_DATE",
|
|
164022
164173
|
Watching = "WATCHING"
|
|
164023
164174
|
}
|
|
164175
|
+
export type MercuryFocusAreaStartDate = {
|
|
164176
|
+
__typename?: 'MercuryFocusAreaStartDate';
|
|
164177
|
+
startDate?: Maybe<Scalars['String']['output']>;
|
|
164178
|
+
startDateType?: Maybe<MercuryFocusAreaStartDateType>;
|
|
164179
|
+
};
|
|
164180
|
+
export declare enum MercuryFocusAreaStartDateType {
|
|
164181
|
+
Day = "DAY",
|
|
164182
|
+
Month = "MONTH",
|
|
164183
|
+
Quarter = "QUARTER"
|
|
164184
|
+
}
|
|
164024
164185
|
export type MercuryFocusAreaStatus = {
|
|
164025
164186
|
__typename?: 'MercuryFocusAreaStatus';
|
|
164026
164187
|
displayName: Scalars['String']['output'];
|
|
@@ -165294,6 +165455,7 @@ export type MercuryMutationApi = {
|
|
|
165294
165455
|
updateFocusAreaHierarchyName?: Maybe<MercuryUpdateFocusAreaHierarchyPayload>;
|
|
165295
165456
|
updateFocusAreaName?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
165296
165457
|
updateFocusAreaOwner?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
165458
|
+
updateFocusAreaStartDate?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
165297
165459
|
updateFocusAreaStatusUpdate?: Maybe<MercuryUpdateFocusAreaStatusUpdatePayload>;
|
|
165298
165460
|
updateFocusAreaTargetDate?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
165299
165461
|
updatePortfolioName?: Maybe<MercuryUpdatePortfolioPayload>;
|
|
@@ -165447,6 +165609,9 @@ export type MercuryMutationApiUpdateFocusAreaNameArgs = {
|
|
|
165447
165609
|
export type MercuryMutationApiUpdateFocusAreaOwnerArgs = {
|
|
165448
165610
|
input: MercuryUpdateFocusAreaOwnerInput;
|
|
165449
165611
|
};
|
|
165612
|
+
export type MercuryMutationApiUpdateFocusAreaStartDateArgs = {
|
|
165613
|
+
input: MercuryUpdateFocusAreaStartDateInput;
|
|
165614
|
+
};
|
|
165450
165615
|
export type MercuryMutationApiUpdateFocusAreaStatusUpdateArgs = {
|
|
165451
165616
|
input: MercuryUpdateFocusAreaStatusUpdateInput;
|
|
165452
165617
|
};
|
|
@@ -169328,6 +169493,11 @@ export type MercuryUpdateFocusAreaPayload = Payload & {
|
|
|
169328
169493
|
success: Scalars['Boolean']['output'];
|
|
169329
169494
|
updatedFocusArea?: Maybe<MercuryFocusArea>;
|
|
169330
169495
|
};
|
|
169496
|
+
export type MercuryUpdateFocusAreaStartDateInput = {
|
|
169497
|
+
id: Scalars['ID']['input'];
|
|
169498
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
169499
|
+
startDateType?: InputMaybe<MercuryFocusAreaStartDateType>;
|
|
169500
|
+
};
|
|
169331
169501
|
export type MercuryUpdateFocusAreaStatusUpdateInput = {
|
|
169332
169502
|
cloudId: Scalars['ID']['input'];
|
|
169333
169503
|
health?: InputMaybe<MercuryFocusAreaHealthInput>;
|
|
@@ -170126,10 +170296,6 @@ export declare enum MobilePlatform {
|
|
|
170126
170296
|
Android = "ANDROID",
|
|
170127
170297
|
Ios = "IOS"
|
|
170128
170298
|
}
|
|
170129
|
-
export type ModelRequestParams = {
|
|
170130
|
-
caller: Scalars['String']['input'];
|
|
170131
|
-
experience: Scalars['String']['input'];
|
|
170132
|
-
};
|
|
170133
170299
|
export type ModuleCompleteKey = {
|
|
170134
170300
|
__typename?: 'ModuleCompleteKey';
|
|
170135
170301
|
moduleKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -171213,6 +171379,8 @@ export type Mutation = {
|
|
|
171213
171379
|
jira_addBoardViewStatusColumn?: Maybe<JiraAddBoardViewStatusColumnPayload>;
|
|
171214
171380
|
jira_addFieldsToFieldScheme?: Maybe<JiraAddFieldsToFieldSchemePayload>;
|
|
171215
171381
|
jira_addTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
|
|
171382
|
+
jira_agentContextAcceptItem?: Maybe<JiraAgentContextAcceptItemPayload>;
|
|
171383
|
+
jira_agentContextAddItem?: Maybe<JiraAgentContextAddItemPayload>;
|
|
171216
171384
|
jira_archiveIssue?: Maybe<JiraIssueArchivePayload>;
|
|
171217
171385
|
jira_archiveIssueAsync?: Maybe<JiraIssueArchiveAsyncPayload>;
|
|
171218
171386
|
jira_associateProjectToFieldScheme?: Maybe<JiraAssociateProjectToFieldSchemePayload>;
|
|
@@ -171339,6 +171507,7 @@ export type Mutation = {
|
|
|
171339
171507
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
171340
171508
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
171341
171509
|
jira_startAiAgentSession?: Maybe<JiraStartAiAgentSessionPayload>;
|
|
171510
|
+
jira_startAiAgentSessionByExternalReference?: Maybe<JiraStartAiAgentSessionPayload>;
|
|
171342
171511
|
jira_trashCustomFields?: Maybe<JiraTrashCustomFieldsPayload>;
|
|
171343
171512
|
jira_trashGlobalCustomFields?: Maybe<JiraTrashGlobalCustomFieldsPayload>;
|
|
171344
171513
|
jira_unarchiveIssue?: Maybe<JiraIssueUnarchivePayload>;
|
|
@@ -171641,7 +171810,6 @@ export type Mutation = {
|
|
|
171641
171810
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
171642
171811
|
rankColumn?: Maybe<RankColumnOutput>;
|
|
171643
171812
|
rankCustomFilter?: Maybe<GenericMutationResponse>;
|
|
171644
|
-
rateLimitTest?: Maybe<GenericMutationResponse>;
|
|
171645
171813
|
recoverSpaceAdminPermission?: Maybe<RecoverSpaceAdminPermissionPayload>;
|
|
171646
171814
|
recoverSpaceWithAdminRoleAssignment?: Maybe<RecoverSpaceWithAdminRoleAssignmentPayload>;
|
|
171647
171815
|
refreshPolarisSnippets?: Maybe<RefreshPolarisSnippetsPayload>;
|
|
@@ -175519,6 +175687,14 @@ export type MutationJira_AddTimelineIssueLinkArgs = {
|
|
|
175519
175687
|
cloudId: Scalars['ID']['input'];
|
|
175520
175688
|
input: JiraAddTimelineIssueLinkInput;
|
|
175521
175689
|
};
|
|
175690
|
+
export type MutationJira_AgentContextAcceptItemArgs = {
|
|
175691
|
+
cloudId: Scalars['ID']['input'];
|
|
175692
|
+
input: JiraAgentContextAcceptItemInput;
|
|
175693
|
+
};
|
|
175694
|
+
export type MutationJira_AgentContextAddItemArgs = {
|
|
175695
|
+
cloudId: Scalars['ID']['input'];
|
|
175696
|
+
input: JiraAgentContextAddItemInput;
|
|
175697
|
+
};
|
|
175522
175698
|
export type MutationJira_ArchiveIssueArgs = {
|
|
175523
175699
|
input: JiraIssueArchiveInput;
|
|
175524
175700
|
};
|
|
@@ -175921,6 +176097,9 @@ export type MutationJira_SetViewGroupByArgs = {
|
|
|
175921
176097
|
export type MutationJira_StartAiAgentSessionArgs = {
|
|
175922
176098
|
input: JiraStartAiAgentSessionInput;
|
|
175923
176099
|
};
|
|
176100
|
+
export type MutationJira_StartAiAgentSessionByExternalReferenceArgs = {
|
|
176101
|
+
input: JiraStartAiAgentSessionByExternalReferenceInput;
|
|
176102
|
+
};
|
|
175924
176103
|
export type MutationJira_TrashCustomFieldsArgs = {
|
|
175925
176104
|
cloudId: Scalars['ID']['input'];
|
|
175926
176105
|
input: JiraTrashCustomFieldsInput;
|
|
@@ -176147,6 +176326,7 @@ export type MutationKitsune_CreateFeedbackArgs = {
|
|
|
176147
176326
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
176148
176327
|
};
|
|
176149
176328
|
export type MutationKitsune_CreateFieldArgs = {
|
|
176329
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
176150
176330
|
entityTypes: Array<KitsuneEntityType>;
|
|
176151
176331
|
name: Scalars['String']['input'];
|
|
176152
176332
|
options?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -176961,9 +177141,6 @@ export type MutationRankCustomFilterArgs = {
|
|
|
176961
177141
|
input?: InputMaybe<RankCustomFilterInput>;
|
|
176962
177142
|
isCMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
176963
177143
|
};
|
|
176964
|
-
export type MutationRateLimitTestArgs = {
|
|
176965
|
-
input: InvokeExtensionInput;
|
|
176966
|
-
};
|
|
176967
177144
|
export type MutationRecoverSpaceAdminPermissionArgs = {
|
|
176968
177145
|
input: RecoverSpaceAdminPermissionInput;
|
|
176969
177146
|
};
|
|
@@ -180891,6 +181068,7 @@ export type Query = {
|
|
|
180891
181068
|
appLogLines?: Maybe<AppLogLineConnection>;
|
|
180892
181069
|
appLogs?: Maybe<AppLogConnection>;
|
|
180893
181070
|
appLogsWithMetaData?: Maybe<AppLogsWithMetaDataResponse>;
|
|
181071
|
+
appManifestTransformation?: Maybe<AppManifestTransformationResponse>;
|
|
180894
181072
|
appPreDeploymentCheck?: Maybe<AppPreDeploymentCheckResponse>;
|
|
180895
181073
|
appServices?: Maybe<AppServicesConnection>;
|
|
180896
181074
|
appStorage_admin?: Maybe<AppStorageAdmin>;
|
|
@@ -181301,6 +181479,7 @@ export type Query = {
|
|
|
181301
181479
|
confluence_spaceRoleMode?: Maybe<ConfluenceSpaceRoleMode>;
|
|
181302
181480
|
confluence_spaceWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
181303
181481
|
confluence_spacesByCombinationId?: Maybe<ConfluencePermissionTransitionSpaceConnection>;
|
|
181482
|
+
confluence_staticMacros?: Maybe<ConfluenceStaticMacroRenderedConnection>;
|
|
181304
181483
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
181305
181484
|
confluence_subCalendarEmbedInfo?: Maybe<Array<Maybe<ConfluenceSubCalendarEmbedInfo>>>;
|
|
181306
181485
|
confluence_subCalendarSubscribersCount?: Maybe<ConfluenceSubCalendarSubscribersCount>;
|
|
@@ -181547,6 +181726,7 @@ export type Query = {
|
|
|
181547
181726
|
forYouFeed?: Maybe<ForYouPaginatedFeed>;
|
|
181548
181727
|
futureContentTypeMobileSupport?: Maybe<FutureContentTypeMobileSupport>;
|
|
181549
181728
|
getAIConfig?: Maybe<AiConfigResponse>;
|
|
181729
|
+
getAppInstallations?: Maybe<InstallationsResponse>;
|
|
181550
181730
|
getCommentReplySuggestions?: Maybe<CommentReplySuggestions>;
|
|
181551
181731
|
getCommentsSummary?: Maybe<SmartFeaturesCommentsSummary>;
|
|
181552
181732
|
getFeedUserConfig?: Maybe<FollowingFeedGetUserConfig>;
|
|
@@ -181564,7 +181744,7 @@ export type Query = {
|
|
|
181564
181744
|
glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
181565
181745
|
globalApp_extensionsByContextAri?: Maybe<GlobalAppExtensionsResponse>;
|
|
181566
181746
|
globalApp_extensionsByInstallationId?: Maybe<GlobalAppExtensionsResponse>;
|
|
181567
|
-
|
|
181747
|
+
globalApp_userAccess?: Maybe<GlobalAppUserAccessResponse>;
|
|
181568
181748
|
globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
181569
181749
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
181570
181750
|
goals_allWatchedGoalUpdates?: Maybe<TownsquareUpdateConnection>;
|
|
@@ -183804,6 +183984,7 @@ export type Query = {
|
|
|
183804
183984
|
jira_agentContextSources?: Maybe<JiraAgentContextItemConnection>;
|
|
183805
183985
|
jira_agentSessionsIsPlanModeEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
183806
183986
|
jira_agentsInSpace?: Maybe<JiraAgentsInSpace>;
|
|
183987
|
+
jira_agentsInSpaceByAgentAris?: Maybe<Array<Maybe<JiraAgentInSpace>>>;
|
|
183807
183988
|
jira_availableStatuses?: Maybe<JiraStatusConnection>;
|
|
183808
183989
|
jira_backlog?: Maybe<JiraBacklog>;
|
|
183809
183990
|
jira_backlogView?: Maybe<JiraBacklogView>;
|
|
@@ -184042,7 +184223,6 @@ export type Query = {
|
|
|
184042
184223
|
notesByCreator?: Maybe<NoteConnection>;
|
|
184043
184224
|
notifications?: Maybe<InfluentsNotificationQuery>;
|
|
184044
184225
|
oauthClients?: Maybe<OAuthClientsQuery>;
|
|
184045
|
-
objectRecommendations?: Maybe<CollaborationGraphRecommendationResults>;
|
|
184046
184226
|
onboardingState?: Maybe<Array<OnboardingState>>;
|
|
184047
184227
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
184048
184228
|
opsgenieTeamRelationshipForDevOpsService?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
|
|
@@ -185594,6 +185774,12 @@ export type QueryAppLogsWithMetaDataArgs = {
|
|
|
185594
185774
|
query?: InputMaybe<LogQueryInput>;
|
|
185595
185775
|
queryStartTime: Scalars['String']['input'];
|
|
185596
185776
|
};
|
|
185777
|
+
export type QueryAppManifestTransformationArgs = {
|
|
185778
|
+
appId: Scalars['ID']['input'];
|
|
185779
|
+
contextFilter?: InputMaybe<AppManifestTransformationContextFilter>;
|
|
185780
|
+
environmentKey: Scalars['String']['input'];
|
|
185781
|
+
manifest: Scalars['JSON']['input'];
|
|
185782
|
+
};
|
|
185597
185783
|
export type QueryAppPreDeploymentCheckArgs = {
|
|
185598
185784
|
input: AppPreDeploymentCheckInput;
|
|
185599
185785
|
};
|
|
@@ -187510,6 +187696,13 @@ export type QueryConfluence_SpacesByCombinationIdArgs = {
|
|
|
187510
187696
|
spaceSelection?: InputMaybe<ConfluencePermissionTransitionSpaceTargetSelectionInput>;
|
|
187511
187697
|
spaceTypeFilters?: InputMaybe<Array<InputMaybe<ConfluencePermissionTransitionSpaceTypeFilter>>>;
|
|
187512
187698
|
};
|
|
187699
|
+
export type QueryConfluence_StaticMacrosArgs = {
|
|
187700
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
187701
|
+
cloudId: Scalars['ID']['input'];
|
|
187702
|
+
contentId: Scalars['ID']['input'];
|
|
187703
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
187704
|
+
mode?: InputMaybe<MacroRendererMode>;
|
|
187705
|
+
};
|
|
187513
187706
|
export type QueryConfluence_StorageArgs = {
|
|
187514
187707
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
187515
187708
|
};
|
|
@@ -188657,6 +188850,15 @@ export type QueryGetAiConfigArgs = {
|
|
|
188657
188850
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
188658
188851
|
product: Product;
|
|
188659
188852
|
};
|
|
188853
|
+
export type QueryGetAppInstallationsArgs = {
|
|
188854
|
+
appId: Scalars['ID']['input'];
|
|
188855
|
+
atlassianApp?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
188856
|
+
environment?: InputMaybe<Scalars['String']['input']>;
|
|
188857
|
+
installedOn?: InputMaybe<DateSearchInput>;
|
|
188858
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
188859
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
188860
|
+
version?: InputMaybe<Scalars['String']['input']>;
|
|
188861
|
+
};
|
|
188660
188862
|
export type QueryGetCommentReplySuggestionsArgs = {
|
|
188661
188863
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
188662
188864
|
commentId: Scalars['ID']['input'];
|
|
@@ -188721,7 +188923,7 @@ export type QueryGlobalApp_ExtensionsByInstallationIdArgs = {
|
|
|
188721
188923
|
filter?: InputMaybe<GlobalAppExtensionsFilterInput>;
|
|
188722
188924
|
installationId: Scalars['ID']['input'];
|
|
188723
188925
|
};
|
|
188724
|
-
export type
|
|
188926
|
+
export type QueryGlobalApp_UserAccessArgs = {
|
|
188725
188927
|
contextAri: Scalars['ID']['input'];
|
|
188726
188928
|
};
|
|
188727
188929
|
export type QueryGoals_AllWatchedGoalUpdatesArgs = {
|
|
@@ -204904,6 +205106,11 @@ export type QueryJira_AgentsInSpaceArgs = {
|
|
|
204904
205106
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
204905
205107
|
input: JiraAgentsInSpaceInput;
|
|
204906
205108
|
};
|
|
205109
|
+
export type QueryJira_AgentsInSpaceByAgentArisArgs = {
|
|
205110
|
+
agentAris: Array<Scalars['ID']['input']>;
|
|
205111
|
+
cloudId: Scalars['ID']['input'];
|
|
205112
|
+
input: JiraAgentsInSpaceInput;
|
|
205113
|
+
};
|
|
204907
205114
|
export type QueryJira_AvailableStatusesArgs = {
|
|
204908
205115
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
204909
205116
|
category?: InputMaybe<JiraStatusCategoryFilter>;
|
|
@@ -205762,11 +205969,6 @@ export type QueryNotesByCreatorArgs = {
|
|
|
205762
205969
|
input?: InputMaybe<NotesByCreatorInput>;
|
|
205763
205970
|
orderBy?: InputMaybe<ConfluenceNotesOrdering>;
|
|
205764
205971
|
};
|
|
205765
|
-
export type QueryObjectRecommendationsArgs = {
|
|
205766
|
-
context: CollaborationGraphRequestContext;
|
|
205767
|
-
maxNumberOfResults?: InputMaybe<Scalars['Int']['input']>;
|
|
205768
|
-
modelRequestParams: ModelRequestParams;
|
|
205769
|
-
};
|
|
205770
205972
|
export type QueryOnboardingStateArgs = {
|
|
205771
205973
|
key?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
205772
205974
|
};
|
|
@@ -229565,6 +229767,7 @@ export type ShepherdAlertQueries = {
|
|
|
229565
229767
|
__typename?: 'ShepherdAlertQueries';
|
|
229566
229768
|
alertExports?: Maybe<ShepherdAlertExportsResult>;
|
|
229567
229769
|
alertSnippets?: Maybe<ShepherdAlertSnippetResult>;
|
|
229770
|
+
attachmentRedaction?: Maybe<ShepherdAttachmentRedactionResult>;
|
|
229568
229771
|
authorizedActions?: Maybe<ShepherdAlertAuthorizedActionsResult>;
|
|
229569
229772
|
byAri?: Maybe<ShepherdAlertResult>;
|
|
229570
229773
|
byContentAri?: Maybe<ShepherdAlertsResult>;
|
|
@@ -229577,6 +229780,9 @@ export type ShepherdAlertQueriesAlertExportsArgs = {
|
|
|
229577
229780
|
export type ShepherdAlertQueriesAlertSnippetsArgs = {
|
|
229578
229781
|
id: Scalars['ID']['input'];
|
|
229579
229782
|
};
|
|
229783
|
+
export type ShepherdAlertQueriesAttachmentRedactionArgs = {
|
|
229784
|
+
id: Scalars['ID']['input'];
|
|
229785
|
+
};
|
|
229580
229786
|
export type ShepherdAlertQueriesAuthorizedActionsArgs = {
|
|
229581
229787
|
id: Scalars['ID']['input'];
|
|
229582
229788
|
resource: Scalars['ID']['input'];
|
|
@@ -229587,6 +229793,7 @@ export type ShepherdAlertQueriesByAriArgs = {
|
|
|
229587
229793
|
export type ShepherdAlertQueriesByContentAriArgs = {
|
|
229588
229794
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
229589
229795
|
contentAri: Scalars['String']['input'];
|
|
229796
|
+
fileId?: InputMaybe<Scalars['String']['input']>;
|
|
229590
229797
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
229591
229798
|
workspaceId: Scalars['ID']['input'];
|
|
229592
229799
|
};
|
|
@@ -229800,6 +230007,29 @@ export type ShepherdAtlassianSystemActor = {
|
|
|
229800
230007
|
__typename?: 'ShepherdAtlassianSystemActor';
|
|
229801
230008
|
name: Scalars['String']['output'];
|
|
229802
230009
|
};
|
|
230010
|
+
export type ShepherdAttachmentRedaction = ShepherdRedactionOperation & {
|
|
230011
|
+
__typename?: 'ShepherdAttachmentRedaction';
|
|
230012
|
+
action: ShepherdAttachmentRedactionAction;
|
|
230013
|
+
actionDate: Scalars['DateTime']['output'];
|
|
230014
|
+
createdOn: Scalars['DateTime']['output'];
|
|
230015
|
+
id: Scalars['ID']['output'];
|
|
230016
|
+
resource: Scalars['ID']['output'];
|
|
230017
|
+
status: ShepherdRedactionStatus;
|
|
230018
|
+
updatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
230019
|
+
};
|
|
230020
|
+
export declare enum ShepherdAttachmentRedactionAction {
|
|
230021
|
+
AttachmentTombstone = "ATTACHMENT_TOMBSTONE"
|
|
230022
|
+
}
|
|
230023
|
+
export type ShepherdAttachmentRedactionPayload = Payload & {
|
|
230024
|
+
__typename?: 'ShepherdAttachmentRedactionPayload';
|
|
230025
|
+
errors?: Maybe<Array<MutationError>>;
|
|
230026
|
+
node?: Maybe<ShepherdAttachmentRedaction>;
|
|
230027
|
+
success: Scalars['Boolean']['output'];
|
|
230028
|
+
};
|
|
230029
|
+
export type ShepherdAttachmentRedactionResult = QueryError | ShepherdAttachmentRedaction;
|
|
230030
|
+
export type ShepherdAttachmentTombstoneInput = {
|
|
230031
|
+
alertAri: Scalars['ID']['input'];
|
|
230032
|
+
};
|
|
229803
230033
|
export type ShepherdAuditLogAttribute = {
|
|
229804
230034
|
__typename?: 'ShepherdAuditLogAttribute';
|
|
229805
230035
|
name: Scalars['String']['output'];
|
|
@@ -230431,7 +230661,7 @@ export declare enum ShepherdRedactedContentStatus {
|
|
|
230431
230661
|
RedactionFailed = "REDACTION_FAILED",
|
|
230432
230662
|
RedactionPending = "REDACTION_PENDING"
|
|
230433
230663
|
}
|
|
230434
|
-
export type ShepherdRedaction = Node & {
|
|
230664
|
+
export type ShepherdRedaction = Node & ShepherdRedactionOperation & {
|
|
230435
230665
|
__typename?: 'ShepherdRedaction';
|
|
230436
230666
|
createdOn: Scalars['DateTime']['output'];
|
|
230437
230667
|
id: Scalars['ID']['output'];
|
|
@@ -230451,6 +230681,7 @@ export type ShepherdRedactionMutations = {
|
|
|
230451
230681
|
bulkRedact?: Maybe<ShepherdBulkRedactionPayload>;
|
|
230452
230682
|
redact?: Maybe<ShepherdRedactionPayload>;
|
|
230453
230683
|
restore?: Maybe<ShepherdRestoreRedactionPayload>;
|
|
230684
|
+
tombstoneAttachment?: Maybe<ShepherdAttachmentRedactionPayload>;
|
|
230454
230685
|
};
|
|
230455
230686
|
export type ShepherdRedactionMutationsBulkRedactArgs = {
|
|
230456
230687
|
input: ShepherdBulkRedactionInput;
|
|
@@ -230462,6 +230693,16 @@ export type ShepherdRedactionMutationsRestoreArgs = {
|
|
|
230462
230693
|
input: ShepherdRestoreRedactionInput;
|
|
230463
230694
|
workspaceId: Scalars['ID']['input'];
|
|
230464
230695
|
};
|
|
230696
|
+
export type ShepherdRedactionMutationsTombstoneAttachmentArgs = {
|
|
230697
|
+
input: ShepherdAttachmentTombstoneInput;
|
|
230698
|
+
};
|
|
230699
|
+
export type ShepherdRedactionOperation = {
|
|
230700
|
+
createdOn: Scalars['DateTime']['output'];
|
|
230701
|
+
id: Scalars['ID']['output'];
|
|
230702
|
+
resource: Scalars['ID']['output'];
|
|
230703
|
+
status: ShepherdRedactionStatus;
|
|
230704
|
+
updatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
230705
|
+
};
|
|
230465
230706
|
export type ShepherdRedactionPayload = Payload & {
|
|
230466
230707
|
__typename?: 'ShepherdRedactionPayload';
|
|
230467
230708
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -242363,6 +242604,7 @@ export type TrelloAdministeredPaidWorkspacesUpdated = {
|
|
|
242363
242604
|
};
|
|
242364
242605
|
export type TrelloAgentSessionUpdated = TrelloStatefulSessionUpdated & {
|
|
242365
242606
|
__typename?: 'TrelloAgentSessionUpdated';
|
|
242607
|
+
objectId: Scalars['ID']['output'];
|
|
242366
242608
|
sessionId: Scalars['ID']['output'];
|
|
242367
242609
|
tasks: TrelloAgentTaskUpdatedConnection;
|
|
242368
242610
|
};
|
|
@@ -242405,6 +242647,7 @@ export type TrelloAgentTaskStatusUpdated = {
|
|
|
242405
242647
|
export type TrelloAgentTaskUpdated = {
|
|
242406
242648
|
__typename?: 'TrelloAgentTaskUpdated';
|
|
242407
242649
|
id: Scalars['ID']['output'];
|
|
242650
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
242408
242651
|
sessionId?: Maybe<Scalars['ID']['output']>;
|
|
242409
242652
|
status?: Maybe<TrelloAgentTaskStatusUpdated>;
|
|
242410
242653
|
};
|
|
@@ -242751,6 +242994,9 @@ export type TrelloAtlassianSite = {
|
|
|
242751
242994
|
isRovoAiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
242752
242995
|
resourceId: Scalars['String']['output'];
|
|
242753
242996
|
};
|
|
242997
|
+
export type TrelloAtlassianSiteFilter = {
|
|
242998
|
+
isRovoAiEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
242999
|
+
};
|
|
242754
243000
|
export type TrelloAttachment = Node & {
|
|
242755
243001
|
__typename?: 'TrelloAttachment';
|
|
242756
243002
|
aiMetadata?: Maybe<TrelloObjectAiMetadata>;
|
|
@@ -245585,6 +245831,7 @@ export type TrelloMemberAiRulesArgs = {
|
|
|
245585
245831
|
};
|
|
245586
245832
|
export type TrelloMemberAtlassianSitesArgs = {
|
|
245587
245833
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
245834
|
+
filter?: InputMaybe<TrelloAtlassianSiteFilter>;
|
|
245588
245835
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
245589
245836
|
};
|
|
245590
245837
|
export type TrelloMemberBoardBackgroundsArgs = {
|