@forge/cli-shared 8.23.1-next.6-experimental-5c60439 → 8.24.0-next.7-experimental-04898b4
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 +14 -2
- package/out/config/config-file.d.ts +1 -0
- package/out/config/config-file.d.ts.map +1 -1
- package/out/config/config-file.js +33 -4
- package/out/graphql/graphql-types.d.ts +258 -7
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +102 -46
- package/out/service/statsig-service.d.ts +1 -1
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +1 -7
- package/out/ui/text.d.ts +1 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +1 -0
- package/package.json +2 -2
|
@@ -361,6 +361,42 @@ export declare type AiOpsIncidentSuggestionResponse = {
|
|
|
361
361
|
probableRCATitle?: Maybe<Scalars['String']['output']>;
|
|
362
362
|
suggestedActions?: Maybe<Array<AiOpsIncidentSuggestedAction>>;
|
|
363
363
|
};
|
|
364
|
+
export declare enum AiOpsIncidentTimelineIccCategory {
|
|
365
|
+
AffectedServicesAdded = "AFFECTED_SERVICES_ADDED",
|
|
366
|
+
AssigneeAdded = "ASSIGNEE_ADDED",
|
|
367
|
+
CommsPosted = "COMMS_POSTED",
|
|
368
|
+
IncidentCreated = "INCIDENT_CREATED",
|
|
369
|
+
InvestigationCompleted = "INVESTIGATION_COMPLETED",
|
|
370
|
+
InvestigationStarted = "INVESTIGATION_STARTED",
|
|
371
|
+
MajorIncidentDeclared = "MAJOR_INCIDENT_DECLARED",
|
|
372
|
+
PriorityChanged = "PRIORITY_CHANGED",
|
|
373
|
+
Resolved = "RESOLVED",
|
|
374
|
+
RespondersAdded = "RESPONDERS_ADDED",
|
|
375
|
+
SeverityChanged = "SEVERITY_CHANGED",
|
|
376
|
+
SlaBreached = "SLA_BREACHED",
|
|
377
|
+
SlaMet = "SLA_MET",
|
|
378
|
+
SlaStarted = "SLA_STARTED",
|
|
379
|
+
StatusChanged = "STATUS_CHANGED"
|
|
380
|
+
}
|
|
381
|
+
export declare type AiOpsIncidentTimelineIccEntry = {
|
|
382
|
+
__typename?: 'AIOpsIncidentTimelineIccEntry';
|
|
383
|
+
actorName?: Maybe<Scalars['String']['output']>;
|
|
384
|
+
category?: Maybe<AiOpsIncidentTimelineIccCategory>;
|
|
385
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
386
|
+
importance?: Maybe<AiOpsIncidentTimelineIccImportance>;
|
|
387
|
+
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
388
|
+
};
|
|
389
|
+
export declare enum AiOpsIncidentTimelineIccImportance {
|
|
390
|
+
Critical = "CRITICAL",
|
|
391
|
+
High = "HIGH",
|
|
392
|
+
Low = "LOW",
|
|
393
|
+
Medium = "MEDIUM"
|
|
394
|
+
}
|
|
395
|
+
export declare type AiOpsIncidentTimelineIccResponse = {
|
|
396
|
+
__typename?: 'AIOpsIncidentTimelineIccResponse';
|
|
397
|
+
entries?: Maybe<Array<AiOpsIncidentTimelineIccEntry>>;
|
|
398
|
+
totalAvailable?: Maybe<Scalars['Int']['output']>;
|
|
399
|
+
};
|
|
364
400
|
export declare type AiOpsInvestigatedServiceDetail = {
|
|
365
401
|
__typename?: 'AIOpsInvestigatedServiceDetail';
|
|
366
402
|
hasRepository?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -961,6 +997,9 @@ export declare type AvpAnalyticsGetModelsInput = {
|
|
|
961
997
|
searchInput?: InputMaybe<AvpAnalyticsSearchInput>;
|
|
962
998
|
sortInput?: InputMaybe<AvpAnalyticsSortInput>;
|
|
963
999
|
};
|
|
1000
|
+
export declare type AvpAnalyticsGetPermissionInput = {
|
|
1001
|
+
resourceAri: Scalars['ID']['input'];
|
|
1002
|
+
};
|
|
964
1003
|
export declare type AvpAnalyticsJoinColumnPairs = {
|
|
965
1004
|
__typename?: 'AVPAnalyticsJoinColumnPairs';
|
|
966
1005
|
joinOnOperator: AvpAnalyticsJoinOnOperator;
|
|
@@ -1339,6 +1378,12 @@ export declare type AvpAnalyticsPaginationInput = {
|
|
|
1339
1378
|
pageNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
1340
1379
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1341
1380
|
};
|
|
1381
|
+
export declare type AvpAnalyticsPermission = {
|
|
1382
|
+
__typename?: 'AVPAnalyticsPermission';
|
|
1383
|
+
resourceAri: Scalars['ID']['output'];
|
|
1384
|
+
resourcePermissionType: AvpAnalyticsResourcePermissionType;
|
|
1385
|
+
userPermissions: Array<AvpAnalyticsUserPermission>;
|
|
1386
|
+
};
|
|
1342
1387
|
export declare enum AvpAnalyticsPermissionType {
|
|
1343
1388
|
None = "NONE",
|
|
1344
1389
|
Read = "READ",
|
|
@@ -1368,6 +1413,11 @@ export declare type AvpAnalyticsRangeValueInput = {
|
|
|
1368
1413
|
toExpression?: InputMaybe<Scalars['String']['input']>;
|
|
1369
1414
|
toValue?: InputMaybe<Scalars['String']['input']>;
|
|
1370
1415
|
};
|
|
1416
|
+
export declare enum AvpAnalyticsResourcePermissionType {
|
|
1417
|
+
Closed = "CLOSED",
|
|
1418
|
+
Read = "READ",
|
|
1419
|
+
Write = "WRITE"
|
|
1420
|
+
}
|
|
1371
1421
|
export declare type AvpAnalyticsRoundFormula = {
|
|
1372
1422
|
__typename?: 'AVPAnalyticsRoundFormula';
|
|
1373
1423
|
decimalPlaces: Scalars['Int']['output'];
|
|
@@ -1462,6 +1512,29 @@ export declare type AvpAnalyticsUpdateModelPayload = Payload & {
|
|
|
1462
1512
|
model?: Maybe<AvpAnalyticsModel>;
|
|
1463
1513
|
success: Scalars['Boolean']['output'];
|
|
1464
1514
|
};
|
|
1515
|
+
export declare type AvpAnalyticsUpdatePermissionInput = {
|
|
1516
|
+
resourceAri: Scalars['ID']['input'];
|
|
1517
|
+
resourcePermissionType: AvpAnalyticsResourcePermissionType;
|
|
1518
|
+
userPermissions: Array<AvpAnalyticsUserPermissionInput>;
|
|
1519
|
+
};
|
|
1520
|
+
export declare type AvpAnalyticsUpdatePermissionPayload = Payload & {
|
|
1521
|
+
__typename?: 'AVPAnalyticsUpdatePermissionPayload';
|
|
1522
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1523
|
+
success: Scalars['Boolean']['output'];
|
|
1524
|
+
};
|
|
1525
|
+
export declare type AvpAnalyticsUserPermission = {
|
|
1526
|
+
__typename?: 'AVPAnalyticsUserPermission';
|
|
1527
|
+
principalAri: Scalars['ID']['output'];
|
|
1528
|
+
userPermissionType: AvpAnalyticsUserPermissionType;
|
|
1529
|
+
};
|
|
1530
|
+
export declare type AvpAnalyticsUserPermissionInput = {
|
|
1531
|
+
principalAri: Scalars['ID']['input'];
|
|
1532
|
+
userPermissionType: AvpAnalyticsUserPermissionType;
|
|
1533
|
+
};
|
|
1534
|
+
export declare enum AvpAnalyticsUserPermissionType {
|
|
1535
|
+
Read = "READ",
|
|
1536
|
+
Write = "WRITE"
|
|
1537
|
+
}
|
|
1465
1538
|
export declare type AvpAnalyticsVisualizationConfig = {
|
|
1466
1539
|
__typename?: 'AVPAnalyticsVisualizationConfig';
|
|
1467
1540
|
chartType?: Maybe<AvpAnalyticsChartType>;
|
|
@@ -2942,7 +3015,8 @@ export declare enum ActionsCapabilityType {
|
|
|
2942
3015
|
AgentStudio = "AGENT_STUDIO",
|
|
2943
3016
|
Ai = "AI",
|
|
2944
3017
|
Automation = "AUTOMATION",
|
|
2945
|
-
JsmTelemetry = "JSM_TELEMETRY"
|
|
3018
|
+
JsmTelemetry = "JSM_TELEMETRY",
|
|
3019
|
+
RovoMcp = "ROVO_MCP"
|
|
2946
3020
|
}
|
|
2947
3021
|
export declare enum ActionsConfigurationLayout {
|
|
2948
3022
|
VerticalLayout = "VerticalLayout"
|
|
@@ -5015,6 +5089,29 @@ export declare type AdminUnitEdge = {
|
|
|
5015
5089
|
__typename?: 'AdminUnitEdge';
|
|
5016
5090
|
node: AdminUnit;
|
|
5017
5091
|
};
|
|
5092
|
+
export declare type AdminUnitLinkedConnection = {
|
|
5093
|
+
__typename?: 'AdminUnitLinkedConnection';
|
|
5094
|
+
edges?: Maybe<Array<AdminUnitLinkedEdge>>;
|
|
5095
|
+
pageInfo: PageInfo;
|
|
5096
|
+
};
|
|
5097
|
+
export declare type AdminUnitLinkedEdge = {
|
|
5098
|
+
__typename?: 'AdminUnitLinkedEdge';
|
|
5099
|
+
cursor: Scalars['String']['output'];
|
|
5100
|
+
node?: Maybe<AdminUnitLinkedTo>;
|
|
5101
|
+
};
|
|
5102
|
+
export declare type AdminUnitLinkedResource = {
|
|
5103
|
+
__typename?: 'AdminUnitLinkedResource';
|
|
5104
|
+
id: Scalars['ID']['output'];
|
|
5105
|
+
links: AdminUnitLinkedConnection;
|
|
5106
|
+
};
|
|
5107
|
+
export declare type AdminUnitLinkedResourceLinksArgs = {
|
|
5108
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
5109
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5110
|
+
};
|
|
5111
|
+
export declare type AdminUnitLinkedTo = {
|
|
5112
|
+
__typename?: 'AdminUnitLinkedTo';
|
|
5113
|
+
id: Scalars['ID']['output'];
|
|
5114
|
+
};
|
|
5018
5115
|
export declare type AdminUnitPageInfo = {
|
|
5019
5116
|
__typename?: 'AdminUnitPageInfo';
|
|
5020
5117
|
hasNextPage: Scalars['Boolean']['output'];
|
|
@@ -5382,6 +5479,7 @@ export declare type AgentSessionAssociation = AgentSessionAssociationNode & {
|
|
|
5382
5479
|
id?: Maybe<Scalars['ID']['output']>;
|
|
5383
5480
|
invocationType?: Maybe<Scalars['String']['output']>;
|
|
5384
5481
|
startTime?: Maybe<Scalars['Long']['output']>;
|
|
5482
|
+
subEntityId?: Maybe<Scalars['String']['output']>;
|
|
5385
5483
|
triggeredBy?: Maybe<User>;
|
|
5386
5484
|
version?: Maybe<Scalars['Long']['output']>;
|
|
5387
5485
|
};
|
|
@@ -8184,7 +8282,15 @@ export declare type AgentWorkspaceSkillUpdatePayload = {
|
|
|
8184
8282
|
export declare type AgentWorkspaceSmartRoutingConfig = {
|
|
8185
8283
|
__typename?: 'AgentWorkspaceSmartRoutingConfig';
|
|
8186
8284
|
enabled: Scalars['Boolean']['output'];
|
|
8285
|
+
serviceFieldId?: Maybe<Scalars['String']['output']>;
|
|
8286
|
+
serviceFieldType?: Maybe<AgentWorkspaceSmartRoutingServiceFieldType>;
|
|
8287
|
+
setupVersion: Scalars['Int']['output'];
|
|
8187
8288
|
};
|
|
8289
|
+
export declare enum AgentWorkspaceSmartRoutingServiceFieldType {
|
|
8290
|
+
AffectedServices = "AFFECTED_SERVICES",
|
|
8291
|
+
Asset = "ASSET",
|
|
8292
|
+
Select = "SELECT"
|
|
8293
|
+
}
|
|
8188
8294
|
export declare enum AgentWorkspaceSortDirection {
|
|
8189
8295
|
Asc = "ASC",
|
|
8190
8296
|
Desc = "DESC"
|
|
@@ -8222,6 +8328,7 @@ export declare type AgentWorkspaceSubmitDraftedRoutingTableInput = {
|
|
|
8222
8328
|
fieldId: Scalars['String']['input'];
|
|
8223
8329
|
projectKey: Scalars['String']['input'];
|
|
8224
8330
|
selectedServiceIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
8331
|
+
serviceFieldType?: InputMaybe<AgentWorkspaceSmartRoutingServiceFieldType>;
|
|
8225
8332
|
};
|
|
8226
8333
|
export declare type AgentWorkspaceSubmitDraftedRoutingTablePayload = {
|
|
8227
8334
|
__typename?: 'AgentWorkspaceSubmitDraftedRoutingTablePayload';
|
|
@@ -8368,6 +8475,8 @@ export declare type AgentWorkspaceUpdateRoutingConfigInput = {
|
|
|
8368
8475
|
cloudId: Scalars['ID']['input'];
|
|
8369
8476
|
enabled: Scalars['Boolean']['input'];
|
|
8370
8477
|
projectKey: Scalars['String']['input'];
|
|
8478
|
+
serviceFieldId?: InputMaybe<Scalars['String']['input']>;
|
|
8479
|
+
serviceFieldType?: InputMaybe<AgentWorkspaceSmartRoutingServiceFieldType>;
|
|
8371
8480
|
};
|
|
8372
8481
|
export declare type AgentWorkspaceUpdateScheduleInput = {
|
|
8373
8482
|
agentIds: Array<Scalars['ID']['input']>;
|
|
@@ -8593,6 +8702,7 @@ export declare type AiCoreApiRsaSkill = {
|
|
|
8593
8702
|
export declare type AiCoreApiRsaSkillGapItem = {
|
|
8594
8703
|
__typename?: 'AiCoreApiRsaSkillGapItem';
|
|
8595
8704
|
requestType: Scalars['String']['output'];
|
|
8705
|
+
requestTypeId: Scalars['String']['output'];
|
|
8596
8706
|
skills: Array<AiCoreApiRsaSkill>;
|
|
8597
8707
|
tool: Scalars['String']['output'];
|
|
8598
8708
|
totalTickets: Scalars['Int']['output'];
|
|
@@ -8727,11 +8837,13 @@ export declare type AiManagedObjectUpdateInput = {
|
|
|
8727
8837
|
export declare type AiPlannerPlan = {
|
|
8728
8838
|
__typename?: 'AiPlannerPlan';
|
|
8729
8839
|
archivedAt?: Maybe<Scalars['String']['output']>;
|
|
8840
|
+
collaborators: AiPlannerPlanCollaboratorConnection;
|
|
8730
8841
|
conversations: AiPlannerPlanConversationConnection;
|
|
8731
8842
|
createdAt: Scalars['String']['output'];
|
|
8732
8843
|
description?: Maybe<Scalars['String']['output']>;
|
|
8733
8844
|
id: Scalars['String']['output'];
|
|
8734
8845
|
name: Scalars['String']['output'];
|
|
8846
|
+
owner?: Maybe<AiPlannerPlanOwner>;
|
|
8735
8847
|
readinessScore?: Maybe<Scalars['Int']['output']>;
|
|
8736
8848
|
tasks: AiPlannerPlanTaskConnection;
|
|
8737
8849
|
updatedAt: Scalars['String']['output'];
|
|
@@ -8740,6 +8852,16 @@ export declare type AiPlannerPlanConversationsArgs = {
|
|
|
8740
8852
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
8741
8853
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
8742
8854
|
};
|
|
8855
|
+
export declare type AiPlannerPlanCollaboratorConnection = {
|
|
8856
|
+
__typename?: 'AiPlannerPlanCollaboratorConnection';
|
|
8857
|
+
edges: Array<AiPlannerPlanCollaboratorEdge>;
|
|
8858
|
+
pageInfo: PageInfo;
|
|
8859
|
+
};
|
|
8860
|
+
export declare type AiPlannerPlanCollaboratorEdge = {
|
|
8861
|
+
__typename?: 'AiPlannerPlanCollaboratorEdge';
|
|
8862
|
+
cursor: Scalars['String']['output'];
|
|
8863
|
+
node: AiPlannerPlanOwner;
|
|
8864
|
+
};
|
|
8743
8865
|
export declare type AiPlannerPlanConnection = {
|
|
8744
8866
|
__typename?: 'AiPlannerPlanConnection';
|
|
8745
8867
|
edges: Array<AiPlannerPlanEdge>;
|
|
@@ -8768,6 +8890,12 @@ export declare type AiPlannerPlanEdge = {
|
|
|
8768
8890
|
cursor: Scalars['String']['output'];
|
|
8769
8891
|
node: AiPlannerPlan;
|
|
8770
8892
|
};
|
|
8893
|
+
export declare type AiPlannerPlanOwner = {
|
|
8894
|
+
__typename?: 'AiPlannerPlanOwner';
|
|
8895
|
+
atlassianId: Scalars['String']['output'];
|
|
8896
|
+
id: Scalars['String']['output'];
|
|
8897
|
+
user?: Maybe<User>;
|
|
8898
|
+
};
|
|
8771
8899
|
export declare type AiPlannerPlanTask = {
|
|
8772
8900
|
__typename?: 'AiPlannerPlanTask';
|
|
8773
8901
|
archivedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -19008,6 +19136,7 @@ export declare type Comment = {
|
|
|
19008
19136
|
commentSource?: Maybe<Platform>;
|
|
19009
19137
|
container: Content;
|
|
19010
19138
|
contentStatus: Scalars['String']['output'];
|
|
19139
|
+
contributors?: Maybe<Array<Maybe<Person>>>;
|
|
19011
19140
|
createdAt: ConfluenceDate;
|
|
19012
19141
|
createdAtNonLocalized: Scalars['String']['output'];
|
|
19013
19142
|
excerpt: Scalars['String']['output'];
|
|
@@ -28378,6 +28507,11 @@ export declare type ConfluenceAcceptAnswerPayload = Payload & {
|
|
|
28378
28507
|
errors?: Maybe<Array<MutationError>>;
|
|
28379
28508
|
success: Scalars['Boolean']['output'];
|
|
28380
28509
|
};
|
|
28510
|
+
export declare type ConfluenceAccessLinkInfo = {
|
|
28511
|
+
__typename?: 'ConfluenceAccessLinkInfo';
|
|
28512
|
+
accessType: ConfluenceShareableLinkAccessType;
|
|
28513
|
+
status: PublicLinkStatus;
|
|
28514
|
+
};
|
|
28381
28515
|
export declare type ConfluenceAccessRequestSettings = {
|
|
28382
28516
|
__typename?: 'ConfluenceAccessRequestSettings';
|
|
28383
28517
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -30392,6 +30526,12 @@ export declare type ConfluenceDisableBlueprintPayload = Payload & {
|
|
|
30392
30526
|
errors?: Maybe<Array<MutationError>>;
|
|
30393
30527
|
success: Scalars['Boolean']['output'];
|
|
30394
30528
|
};
|
|
30529
|
+
export declare type ConfluenceDisableCustomContentStatePayload = Payload & {
|
|
30530
|
+
__typename?: 'ConfluenceDisableCustomContentStatePayload';
|
|
30531
|
+
contentState?: Maybe<ContentState>;
|
|
30532
|
+
errors?: Maybe<Array<MutationError>>;
|
|
30533
|
+
success: Scalars['Boolean']['output'];
|
|
30534
|
+
};
|
|
30395
30535
|
export declare type ConfluenceDisableDefaultSpaceLogoPayload = Payload & {
|
|
30396
30536
|
__typename?: 'ConfluenceDisableDefaultSpaceLogoPayload';
|
|
30397
30537
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -31073,7 +31213,6 @@ export declare type ConfluenceJiraMacroAppLinksScanningStatus = {
|
|
|
31073
31213
|
problems?: Maybe<ConfluenceJiraMacroAppLinksValidatorResult>;
|
|
31074
31214
|
reportDownloadUrl?: Maybe<Scalars['String']['output']>;
|
|
31075
31215
|
reportFileStoreId?: Maybe<Scalars['String']['output']>;
|
|
31076
|
-
startedAtEpochMillis?: Maybe<Scalars['Long']['output']>;
|
|
31077
31216
|
status: ConfluenceJiraMacroAppLinksValidationStatus;
|
|
31078
31217
|
};
|
|
31079
31218
|
export declare enum ConfluenceJiraMacroAppLinksValidationStatus {
|
|
@@ -32224,6 +32363,11 @@ export declare type ConfluencePageCommentsArgs = {
|
|
|
32224
32363
|
export declare type ConfluencePagePropertiesArgs = {
|
|
32225
32364
|
keys: Array<InputMaybe<Scalars['String']['input']>>;
|
|
32226
32365
|
};
|
|
32366
|
+
export declare enum ConfluencePageAnalyticsActorType {
|
|
32367
|
+
Agents = "AGENTS",
|
|
32368
|
+
All = "ALL",
|
|
32369
|
+
People = "PEOPLE"
|
|
32370
|
+
}
|
|
32227
32371
|
export declare type ConfluencePageBlogified = {
|
|
32228
32372
|
__typename?: 'ConfluencePageBlogified';
|
|
32229
32373
|
blogTitle?: Maybe<Scalars['String']['output']>;
|
|
@@ -33459,6 +33603,14 @@ export declare type ConfluenceResolveInlineCommentPayload = {
|
|
|
33459
33603
|
errors?: Maybe<Array<MutationError>>;
|
|
33460
33604
|
success: Scalars['Boolean']['output'];
|
|
33461
33605
|
};
|
|
33606
|
+
export declare type ConfluenceResolvedMacroPageLinkParameter = {
|
|
33607
|
+
__typename?: 'ConfluenceResolvedMacroPageLinkParameter';
|
|
33608
|
+
contentId?: Maybe<Scalars['ID']['output']>;
|
|
33609
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
33610
|
+
pageTitle?: Maybe<Scalars['String']['output']>;
|
|
33611
|
+
spaceId?: Maybe<Scalars['ID']['output']>;
|
|
33612
|
+
spaceKey?: Maybe<Scalars['String']['output']>;
|
|
33613
|
+
};
|
|
33462
33614
|
export declare type ConfluenceRestoreContentVersionInput = {
|
|
33463
33615
|
contentId: Scalars['ID']['input'];
|
|
33464
33616
|
expand?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -35797,6 +35949,7 @@ export declare enum ContainerType {
|
|
|
35797
35949
|
}
|
|
35798
35950
|
export declare type Content = {
|
|
35799
35951
|
__typename?: 'Content';
|
|
35952
|
+
accessLinkInfo?: Maybe<ConfluenceAccessLinkInfo>;
|
|
35800
35953
|
aiProperty?: Maybe<ConfluenceContentAiSummaryResponse>;
|
|
35801
35954
|
allCommentAgentSessions?: Maybe<AgentSessionAssociationConnection>;
|
|
35802
35955
|
ancestors?: Maybe<Array<Maybe<Content>>>;
|
|
@@ -49278,6 +49431,7 @@ export declare type GenericQueryErrorExtension = QueryErrorExtension & {
|
|
|
49278
49431
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
49279
49432
|
};
|
|
49280
49433
|
export declare type GetAllPlansFilterInput = {
|
|
49434
|
+
excludeOwnerId?: InputMaybe<Scalars['String']['input']>;
|
|
49281
49435
|
jiraProjectAri?: InputMaybe<Scalars['String']['input']>;
|
|
49282
49436
|
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
49283
49437
|
};
|
|
@@ -50787,6 +50941,7 @@ export declare type GraphIntegrationMcpServerNode = Node & {
|
|
|
50787
50941
|
displayName: Scalars['String']['output'];
|
|
50788
50942
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
50789
50943
|
id: Scalars['ID']['output'];
|
|
50944
|
+
productAri?: Maybe<Scalars['String']['output']>;
|
|
50790
50945
|
tools?: Maybe<GraphIntegrationMcpToolNodeConnection>;
|
|
50791
50946
|
};
|
|
50792
50947
|
export declare type GraphIntegrationMcpServerNodeToolsArgs = {
|
|
@@ -51118,6 +51273,7 @@ export declare type GraphIntegrationUpdateSkillInput = {
|
|
|
51118
51273
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
51119
51274
|
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
51120
51275
|
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
51276
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
51121
51277
|
skillAri: Scalars['ID']['input'];
|
|
51122
51278
|
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
51123
51279
|
tools?: InputMaybe<Array<GraphIntegrationSkillToolInput>>;
|
|
@@ -114117,6 +114273,7 @@ export declare type JiraAgentSessionCreateEvent = {
|
|
|
114117
114273
|
__typename?: 'JiraAgentSessionCreateEvent';
|
|
114118
114274
|
agent?: Maybe<JiraAgent>;
|
|
114119
114275
|
conversationId: Scalars['String']['output'];
|
|
114276
|
+
triggeredBy?: Maybe<User>;
|
|
114120
114277
|
};
|
|
114121
114278
|
export declare type JiraAgenticUser = JiraActor & {
|
|
114122
114279
|
__typename?: 'JiraAgenticUser';
|
|
@@ -120716,6 +120873,26 @@ export declare enum JiraFieldOptionIdsFilterOperation {
|
|
|
120716
120873
|
Allow = "ALLOW",
|
|
120717
120874
|
Exclude = "EXCLUDE"
|
|
120718
120875
|
}
|
|
120876
|
+
export declare type JiraFieldPredictionCandidate = {
|
|
120877
|
+
__typename?: 'JiraFieldPredictionCandidate';
|
|
120878
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
120879
|
+
isAboveThreshold?: Maybe<Scalars['Boolean']['output']>;
|
|
120880
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
120881
|
+
};
|
|
120882
|
+
export declare type JiraFieldPredictionCandidateInput = {
|
|
120883
|
+
id: Scalars['String']['input'];
|
|
120884
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
120885
|
+
};
|
|
120886
|
+
export declare type JiraFieldPredictionResult = {
|
|
120887
|
+
__typename?: 'JiraFieldPredictionResult';
|
|
120888
|
+
candidatesAboveThreshold?: Maybe<Scalars['Int']['output']>;
|
|
120889
|
+
predictions?: Maybe<Array<Maybe<JiraFieldPredictionCandidate>>>;
|
|
120890
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
120891
|
+
};
|
|
120892
|
+
export declare enum JiraFieldPredictionSource {
|
|
120893
|
+
Agent = "AGENT",
|
|
120894
|
+
Gic = "GIC"
|
|
120895
|
+
}
|
|
120719
120896
|
export declare type JiraFieldScheme = Node & {
|
|
120720
120897
|
__typename?: 'JiraFieldScheme';
|
|
120721
120898
|
associatedIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -122545,12 +122722,14 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
122545
122722
|
coverMedia?: Maybe<JiraWorkManagementBackground>;
|
|
122546
122723
|
createBranchTargetCardinality?: Maybe<JiraZeroOneOrMany>;
|
|
122547
122724
|
createBranchTargets?: Maybe<JiraRemoteAppConnection>;
|
|
122725
|
+
created?: Maybe<Scalars['DateTime']['output']>;
|
|
122548
122726
|
createdField?: Maybe<JiraDateTimePickerField>;
|
|
122549
122727
|
defaultAssignee?: Maybe<User>;
|
|
122550
122728
|
delegator?: Maybe<User>;
|
|
122551
122729
|
deletableAttachmentsCount?: Maybe<Scalars['Int']['output']>;
|
|
122552
122730
|
deployments?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalDeploymentConnection>;
|
|
122553
122731
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
122732
|
+
description?: Maybe<JiraRichText>;
|
|
122554
122733
|
descriptionField?: Maybe<JiraRichTextField>;
|
|
122555
122734
|
designs?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignConnection>;
|
|
122556
122735
|
devInfoDetails?: Maybe<JiraIssueDevInfoDetails>;
|
|
@@ -122659,6 +122838,8 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
122659
122838
|
redactions?: Maybe<JiraRedactionConnection>;
|
|
122660
122839
|
remoteLinks?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalRemoteLinkConnection>;
|
|
122661
122840
|
reporter?: Maybe<User>;
|
|
122841
|
+
resolution?: Maybe<JiraResolution>;
|
|
122842
|
+
resolutionDate?: Maybe<Scalars['DateTime']['output']>;
|
|
122662
122843
|
resolutionDateField?: Maybe<JiraDateTimePickerField>;
|
|
122663
122844
|
resolutionField?: Maybe<JiraResolutionField>;
|
|
122664
122845
|
screenId?: Maybe<Scalars['Long']['output']>;
|
|
@@ -122685,6 +122866,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
122685
122866
|
timeOriginalEstimateField?: Maybe<JiraOriginalTimeEstimateField>;
|
|
122686
122867
|
timeTrackingField?: Maybe<JiraTimeTrackingField>;
|
|
122687
122868
|
totalAttachmentsCount?: Maybe<Scalars['Int']['output']>;
|
|
122869
|
+
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
122688
122870
|
updatedField?: Maybe<JiraDateTimePickerField>;
|
|
122689
122871
|
votesField?: Maybe<JiraVotesField>;
|
|
122690
122872
|
watchesField?: Maybe<JiraWatchesField>;
|
|
@@ -131425,6 +131607,7 @@ export declare type JiraQuery = {
|
|
|
131425
131607
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
131426
131608
|
favourites?: Maybe<JiraFavouriteConnection>;
|
|
131427
131609
|
fieldConfigById?: Maybe<Array<Maybe<JiraIssueFieldConfig>>>;
|
|
131610
|
+
fieldPrediction?: Maybe<JiraFieldPredictionResult>;
|
|
131428
131611
|
fieldSetViewQueryByProject?: Maybe<JiraFieldSetViewResult>;
|
|
131429
131612
|
fieldSetsById?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
131430
131613
|
fields?: Maybe<JiraJqlFieldConnectionResult>;
|
|
@@ -131895,6 +132078,17 @@ export declare type JiraQueryFavouritesArgs = {
|
|
|
131895
132078
|
export declare type JiraQueryFieldConfigByIdArgs = {
|
|
131896
132079
|
ids: Array<Scalars['ID']['input']>;
|
|
131897
132080
|
};
|
|
132081
|
+
export declare type JiraQueryFieldPredictionArgs = {
|
|
132082
|
+
candidates?: InputMaybe<Array<InputMaybe<JiraFieldPredictionCandidateInput>>>;
|
|
132083
|
+
cloudId: Scalars['ID']['input'];
|
|
132084
|
+
fieldId: Scalars['String']['input'];
|
|
132085
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
132086
|
+
searchFilter?: InputMaybe<Scalars['String']['input']>;
|
|
132087
|
+
semanticContext?: InputMaybe<Scalars['String']['input']>;
|
|
132088
|
+
semanticContextDescription?: InputMaybe<Scalars['String']['input']>;
|
|
132089
|
+
sessionId: Scalars['String']['input'];
|
|
132090
|
+
source?: InputMaybe<JiraFieldPredictionSource>;
|
|
132091
|
+
};
|
|
131898
132092
|
export declare type JiraQueryFieldSetViewQueryByProjectArgs = {
|
|
131899
132093
|
cloudId: Scalars['ID']['input'];
|
|
131900
132094
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -141489,6 +141683,26 @@ export declare enum JpdViewsServiceVisualizationType {
|
|
|
141489
141683
|
Timeline = "TIMELINE",
|
|
141490
141684
|
Tree = "TREE"
|
|
141491
141685
|
}
|
|
141686
|
+
export declare type JsmAdaptiveLanguageGlossary = {
|
|
141687
|
+
__typename?: 'JsmAdaptiveLanguageGlossary';
|
|
141688
|
+
brandExceptions?: Maybe<Scalars['String']['output']>;
|
|
141689
|
+
compiledGlossary?: Maybe<Scalars['String']['output']>;
|
|
141690
|
+
domainId?: Maybe<Scalars['String']['output']>;
|
|
141691
|
+
locale?: Maybe<Scalars['String']['output']>;
|
|
141692
|
+
matchOrder?: Maybe<Scalars['String']['output']>;
|
|
141693
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
141694
|
+
};
|
|
141695
|
+
export declare type JsmAdaptiveLanguageGlossaryResult = {
|
|
141696
|
+
__typename?: 'JsmAdaptiveLanguageGlossaryResult';
|
|
141697
|
+
glossary?: Maybe<JsmAdaptiveLanguageGlossary>;
|
|
141698
|
+
};
|
|
141699
|
+
export declare type JsmAdaptiveLanguageQueryApi = {
|
|
141700
|
+
__typename?: 'JsmAdaptiveLanguageQueryApi';
|
|
141701
|
+
glossaryForProject?: Maybe<JsmAdaptiveLanguageGlossaryResult>;
|
|
141702
|
+
};
|
|
141703
|
+
export declare type JsmAdaptiveLanguageQueryApiGlossaryForProjectArgs = {
|
|
141704
|
+
projectAri: Scalars['ID']['input'];
|
|
141705
|
+
};
|
|
141492
141706
|
export declare type JsmChannelsConditionNode = JsmChannelsPlanNode & {
|
|
141493
141707
|
__typename?: 'JsmChannelsConditionNode';
|
|
141494
141708
|
customPlanNodeAttributes?: Maybe<Array<JsmChannelsCustomPlanNodeAttribute>>;
|
|
@@ -146188,6 +146402,7 @@ export declare type Macro = {
|
|
|
146188
146402
|
contentId: Scalars['ID']['output'];
|
|
146189
146403
|
macroId: Scalars['ID']['output'];
|
|
146190
146404
|
renderedMacro?: Maybe<RenderedMacro>;
|
|
146405
|
+
resolvedPageLinkParameters?: Maybe<Array<Maybe<ConfluenceResolvedMacroPageLinkParameter>>>;
|
|
146191
146406
|
};
|
|
146192
146407
|
export declare type MacroRenderedMacroArgs = {
|
|
146193
146408
|
mode?: InputMaybe<MacroRendererMode>;
|
|
@@ -157069,6 +157284,9 @@ export declare type MercuryThreadedComment = Node & {
|
|
|
157069
157284
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
157070
157285
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
157071
157286
|
createdBy?: Maybe<User>;
|
|
157287
|
+
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
157288
|
+
creator?: Maybe<User>;
|
|
157289
|
+
editDate?: Maybe<Scalars['DateTime']['output']>;
|
|
157072
157290
|
id: Scalars['ID']['output'];
|
|
157073
157291
|
parentComment?: Maybe<MercuryThreadedComment>;
|
|
157074
157292
|
parentId: Scalars['ID']['output'];
|
|
@@ -157078,6 +157296,7 @@ export declare type MercuryThreadedComment = Node & {
|
|
|
157078
157296
|
export declare type MercuryThreadedCommentRepliesArgs = {
|
|
157079
157297
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
157080
157298
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
157299
|
+
sort?: InputMaybe<Scalars['String']['input']>;
|
|
157081
157300
|
};
|
|
157082
157301
|
export declare type MercuryThreadedCommentConnection = {
|
|
157083
157302
|
__typename?: 'MercuryThreadedCommentConnection';
|
|
@@ -158368,9 +158587,9 @@ export declare type Mutation = {
|
|
|
158368
158587
|
agentWorkspace_upsertDraftedRoutingTableEntry?: Maybe<AgentWorkspaceUpsertDraftedRoutingTableEntryPayload>;
|
|
158369
158588
|
aiCoreApi_initiateCsvExport?: Maybe<AiCoreApiCsvExportResult>;
|
|
158370
158589
|
aiCoreApi_initiateRsaReport?: Maybe<AiCoreApiRsaInitiateReportResult>;
|
|
158590
|
+
aiManagedObject_archiveAiManagedObject?: Maybe<Scalars['Boolean']['output']>;
|
|
158371
158591
|
aiManagedObject_createAiManagedObject?: Maybe<AiManagedObject>;
|
|
158372
158592
|
aiManagedObject_createAiManagedObjectConfig?: Maybe<AiManagedObjectConfig>;
|
|
158373
|
-
aiManagedObject_deleteAiManagedObject?: Maybe<Scalars['Boolean']['output']>;
|
|
158374
158593
|
aiManagedObject_execute?: Maybe<AiManagedObjectExecutionResult>;
|
|
158375
158594
|
aiManagedObject_updateAiManagedObject?: Maybe<AiManagedObject>;
|
|
158376
158595
|
aiops_terminateInvestigation?: Maybe<AiOpsInvestigation>;
|
|
@@ -158525,6 +158744,7 @@ export declare type Mutation = {
|
|
|
158525
158744
|
avpanalytics_discardModelUpdates?: Maybe<AvpAnalyticsDiscardModelUpdatesPayload>;
|
|
158526
158745
|
avpanalytics_updateMetric?: Maybe<AvpAnalyticsUpdateMetricPayload>;
|
|
158527
158746
|
avpanalytics_updateModel?: Maybe<AvpAnalyticsUpdateModelPayload>;
|
|
158747
|
+
avpanalytics_updatePermission?: Maybe<AvpAnalyticsUpdatePermissionPayload>;
|
|
158528
158748
|
blockService_batchCreateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
|
|
158529
158749
|
blockService_batchDeleteBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
|
|
158530
158750
|
blockService_batchUpdateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
|
|
@@ -158614,6 +158834,7 @@ export declare type Mutation = {
|
|
|
158614
158834
|
confluence_deleteSubCalendarPrivateUrl?: Maybe<ConfluenceDeleteSubCalendarPrivateUrlPayload>;
|
|
158615
158835
|
confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
|
|
158616
158836
|
confluence_deleteTopic?: Maybe<ConfluenceDeleteTopicPayload>;
|
|
158837
|
+
confluence_disableCustomContentState?: Maybe<ConfluenceDisableCustomContentStatePayload>;
|
|
158617
158838
|
confluence_disableSystemRole?: Maybe<ConfluenceDisableSystemRolePayload>;
|
|
158618
158839
|
confluence_enableGlobalAnonymousEnforcement?: Maybe<ConfluenceEnableGlobalAnonymousEnforcementPayload>;
|
|
158619
158840
|
confluence_experimentInitAiFirstCreation?: Maybe<ConfluenceExperimentInitAiFirstCreationPayload>;
|
|
@@ -160205,6 +160426,9 @@ export declare type MutationAiCoreApi_InitiateCsvExportArgs = {
|
|
|
160205
160426
|
export declare type MutationAiCoreApi_InitiateRsaReportArgs = {
|
|
160206
160427
|
input: AiCoreApiRsaReportInput;
|
|
160207
160428
|
};
|
|
160429
|
+
export declare type MutationAiManagedObject_ArchiveAiManagedObjectArgs = {
|
|
160430
|
+
id: Scalars['ID']['input'];
|
|
160431
|
+
};
|
|
160208
160432
|
export declare type MutationAiManagedObject_CreateAiManagedObjectArgs = {
|
|
160209
160433
|
cloudId: Scalars['ID']['input'];
|
|
160210
160434
|
input: AiManagedObjectCreateInput;
|
|
@@ -160213,9 +160437,6 @@ export declare type MutationAiManagedObject_CreateAiManagedObjectConfigArgs = {
|
|
|
160213
160437
|
aiManagedObjectId: Scalars['ID']['input'];
|
|
160214
160438
|
input: AiManagedObjectConfigCreateInput;
|
|
160215
160439
|
};
|
|
160216
|
-
export declare type MutationAiManagedObject_DeleteAiManagedObjectArgs = {
|
|
160217
|
-
id: Scalars['ID']['input'];
|
|
160218
|
-
};
|
|
160219
160440
|
export declare type MutationAiManagedObject_ExecuteArgs = {
|
|
160220
160441
|
id: Scalars['ID']['input'];
|
|
160221
160442
|
};
|
|
@@ -160828,6 +161049,10 @@ export declare type MutationAvpanalytics_UpdateModelArgs = {
|
|
|
160828
161049
|
cloudId: Scalars['ID']['input'];
|
|
160829
161050
|
input?: InputMaybe<AvpAnalyticsUpdateModelInput>;
|
|
160830
161051
|
};
|
|
161052
|
+
export declare type MutationAvpanalytics_UpdatePermissionArgs = {
|
|
161053
|
+
cloudId: Scalars['ID']['input'];
|
|
161054
|
+
input: AvpAnalyticsUpdatePermissionInput;
|
|
161055
|
+
};
|
|
160831
161056
|
export declare type MutationBlockService_BatchCreateBlocksArgs = {
|
|
160832
161057
|
input: BlockServiceBatchCreateBlocksInput;
|
|
160833
161058
|
};
|
|
@@ -161129,6 +161354,10 @@ export declare type MutationConfluence_DeleteTopicArgs = {
|
|
|
161129
161354
|
cloudId: Scalars['ID']['input'];
|
|
161130
161355
|
input: ConfluenceDeleteTopicInput;
|
|
161131
161356
|
};
|
|
161357
|
+
export declare type MutationConfluence_DisableCustomContentStateArgs = {
|
|
161358
|
+
cloudId: Scalars['ID']['input'];
|
|
161359
|
+
contentStateId: Scalars['ID']['input'];
|
|
161360
|
+
};
|
|
161132
161361
|
export declare type MutationConfluence_DisableSystemRoleArgs = {
|
|
161133
161362
|
cloudId: Scalars['ID']['input'];
|
|
161134
161363
|
input: ConfluenceDisableSystemRoleInput;
|
|
@@ -168069,6 +168298,7 @@ export declare type Query = {
|
|
|
168069
168298
|
admin_test?: Maybe<AdminTest>;
|
|
168070
168299
|
admin_tokens?: Maybe<AdminTokenConnection>;
|
|
168071
168300
|
admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
|
|
168301
|
+
admin_unitLinkedResource?: Maybe<AdminUnitLinkedResource>;
|
|
168072
168302
|
admin_unitProfile?: Maybe<AdminUnit>;
|
|
168073
168303
|
admin_unitSettings?: Maybe<AdminOrgUnitsSettings>;
|
|
168074
168304
|
admin_unitValidateName?: Maybe<AdminUnitValidateName>;
|
|
@@ -168195,6 +168425,7 @@ export declare type Query = {
|
|
|
168195
168425
|
aiops_incidentRelatedAlerts?: Maybe<AiOpsIncidentRelatedAlertsResponse>;
|
|
168196
168426
|
aiops_incidentSuggestion?: Maybe<AiOpsIncidentSuggestionResponse>;
|
|
168197
168427
|
aiops_incidentSuggestionAsync?: Maybe<AiOpsIncidentSuggestionAsyncResult>;
|
|
168428
|
+
aiops_incidentTimelineIcc?: Maybe<AiOpsIncidentTimelineIccResponse>;
|
|
168198
168429
|
aiops_investigationById?: Maybe<AiOpsInvestigationQueryResult>;
|
|
168199
168430
|
aiops_latestInvestigationByEntityTypeId?: Maybe<AiOpsInvestigationQueryResult>;
|
|
168200
168431
|
aiplanner_getAllPlans?: Maybe<AiPlannerPlanConnection>;
|
|
@@ -168373,6 +168604,7 @@ export declare type Query = {
|
|
|
168373
168604
|
avpanalytics_getMetrics?: Maybe<AvpAnalyticsMetricConnection>;
|
|
168374
168605
|
avpanalytics_getModel?: Maybe<AvpAnalyticsModel>;
|
|
168375
168606
|
avpanalytics_getModels?: Maybe<AvpAnalyticsModelConnection>;
|
|
168607
|
+
avpanalytics_getPermission?: Maybe<AvpAnalyticsPermission>;
|
|
168376
168608
|
avpanalytics_getSites?: Maybe<Array<AvpAnalyticsSite>>;
|
|
168377
168609
|
avpanalytics_previewMetricData?: Maybe<AvpAnalyticsMetric>;
|
|
168378
168610
|
avpanalytics_previewModelData?: Maybe<AvpAnalyticsModel>;
|
|
@@ -170978,6 +171210,7 @@ export declare type Query = {
|
|
|
170978
171210
|
jpdViewsService_globalViewsById?: Maybe<Array<Maybe<JpdViewsServiceGlobalView>>>;
|
|
170979
171211
|
jpdViewsService_globalViewsByIdV2?: Maybe<Array<Maybe<JpdViewsServiceGlobalView2>>>;
|
|
170980
171212
|
jpdViewsService_hydrateUser?: Maybe<JpdViewsServiceUserHydrationExample>;
|
|
171213
|
+
jsmAdaptiveLanguage?: Maybe<JsmAdaptiveLanguageQueryApi>;
|
|
170981
171214
|
jsmAgentWorkspace_dummy?: Maybe<Scalars['String']['output']>;
|
|
170982
171215
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
170983
171216
|
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
@@ -171695,6 +171928,9 @@ export declare type QueryAdmin_UnitCreateStatusArgs = {
|
|
|
171695
171928
|
orgId: Scalars['ID']['input'];
|
|
171696
171929
|
requestId: Scalars['ID']['input'];
|
|
171697
171930
|
};
|
|
171931
|
+
export declare type QueryAdmin_UnitLinkedResourceArgs = {
|
|
171932
|
+
id: Scalars['ID']['input'];
|
|
171933
|
+
};
|
|
171698
171934
|
export declare type QueryAdmin_UnitProfileArgs = {
|
|
171699
171935
|
directoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
171700
171936
|
orgId: Scalars['ID']['input'];
|
|
@@ -172381,6 +172617,11 @@ export declare type QueryAiops_IncidentSuggestionAsyncArgs = {
|
|
|
172381
172617
|
cloudId: Scalars['ID']['input'];
|
|
172382
172618
|
issueKey: Scalars['String']['input'];
|
|
172383
172619
|
};
|
|
172620
|
+
export declare type QueryAiops_IncidentTimelineIccArgs = {
|
|
172621
|
+
cloudId: Scalars['ID']['input'];
|
|
172622
|
+
issueKey: Scalars['String']['input'];
|
|
172623
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
172624
|
+
};
|
|
172384
172625
|
export declare type QueryAiops_InvestigationByIdArgs = {
|
|
172385
172626
|
cloudId: Scalars['ID']['input'];
|
|
172386
172627
|
investigationId: Scalars['ID']['input'];
|
|
@@ -173272,6 +173513,10 @@ export declare type QueryAvpanalytics_GetModelsArgs = {
|
|
|
173272
173513
|
cloudId: Scalars['ID']['input'];
|
|
173273
173514
|
input?: InputMaybe<AvpAnalyticsGetModelsInput>;
|
|
173274
173515
|
};
|
|
173516
|
+
export declare type QueryAvpanalytics_GetPermissionArgs = {
|
|
173517
|
+
cloudId: Scalars['ID']['input'];
|
|
173518
|
+
input: AvpAnalyticsGetPermissionInput;
|
|
173519
|
+
};
|
|
173275
173520
|
export declare type QueryAvpanalytics_GetSitesArgs = {
|
|
173276
173521
|
cloudId: Scalars['ID']['input'];
|
|
173277
173522
|
};
|
|
@@ -174424,6 +174669,7 @@ export declare type QueryContentAnalyticsViewsArgs = {
|
|
|
174424
174669
|
fromDate?: InputMaybe<Scalars['String']['input']>;
|
|
174425
174670
|
};
|
|
174426
174671
|
export declare type QueryContentAnalyticsViewsByDateArgs = {
|
|
174672
|
+
actorType?: InputMaybe<ConfluencePageAnalyticsActorType>;
|
|
174427
174673
|
contentId: Scalars['ID']['input'];
|
|
174428
174674
|
contentType: Scalars['String']['input'];
|
|
174429
174675
|
fromDate: Scalars['String']['input'];
|
|
@@ -191200,6 +191446,7 @@ export declare type QueryPageActivityArgs = {
|
|
|
191200
191446
|
};
|
|
191201
191447
|
export declare type QueryPageAnalyticsCountArgs = {
|
|
191202
191448
|
accountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
191449
|
+
actorType?: InputMaybe<ConfluencePageAnalyticsActorType>;
|
|
191203
191450
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
191204
191451
|
eventName: Array<AnalyticsEventName>;
|
|
191205
191452
|
pageId: Scalars['ID']['input'];
|
|
@@ -191207,6 +191454,7 @@ export declare type QueryPageAnalyticsCountArgs = {
|
|
|
191207
191454
|
uniqueBy?: InputMaybe<PageAnalyticsCountType>;
|
|
191208
191455
|
};
|
|
191209
191456
|
export declare type QueryPageAnalyticsTimeseriesCountArgs = {
|
|
191457
|
+
actorType?: InputMaybe<ConfluencePageAnalyticsActorType>;
|
|
191210
191458
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
191211
191459
|
eventName: Array<AnalyticsEventName>;
|
|
191212
191460
|
granularity: AnalyticsTimeseriesGranularity;
|
|
@@ -193144,6 +193392,7 @@ export declare type RadarNumericFieldValue = {
|
|
|
193144
193392
|
export declare enum RadarOrgMetric {
|
|
193145
193393
|
CraftRatio = "CRAFT_RATIO",
|
|
193146
193394
|
Footprint = "FOOTPRINT",
|
|
193395
|
+
OrgShape = "ORG_SHAPE",
|
|
193147
193396
|
SpanOfControl = "SPAN_OF_CONTROL"
|
|
193148
193397
|
}
|
|
193149
193398
|
export declare type RadarPermissions = {
|
|
@@ -196096,6 +196345,7 @@ export declare type SearchResultCodeRepository = {
|
|
|
196096
196345
|
id: Scalars['ID']['output'];
|
|
196097
196346
|
name: Scalars['String']['output'];
|
|
196098
196347
|
namespace: Scalars['String']['output'];
|
|
196348
|
+
scm?: Maybe<Scalars['String']['output']>;
|
|
196099
196349
|
url: Scalars['String']['output'];
|
|
196100
196350
|
};
|
|
196101
196351
|
export declare type SearchResultCompassComponent = SearchResult & {
|
|
@@ -228809,7 +229059,6 @@ export declare type TrelloEnableCardFrontCompleteTogglePayload = Payload & {
|
|
|
228809
229059
|
success: Scalars['Boolean']['output'];
|
|
228810
229060
|
};
|
|
228811
229061
|
export declare type TrelloEndVoiceCaptureSessionInput = {
|
|
228812
|
-
lastSequenceNumber: Scalars['Int']['input'];
|
|
228813
229062
|
sessionId: Scalars['ID']['input'];
|
|
228814
229063
|
};
|
|
228815
229064
|
export declare type TrelloEndVoiceCaptureSessionPayload = Payload & {
|
|
@@ -228877,6 +229126,7 @@ export declare type TrelloGenerateBoardBackgroundWithAiInput = {
|
|
|
228877
229126
|
};
|
|
228878
229127
|
export declare type TrelloGenerateBoardBackgroundWithAiPayload = Payload & {
|
|
228879
229128
|
__typename?: 'TrelloGenerateBoardBackgroundWithAiPayload';
|
|
229129
|
+
background?: Maybe<TrelloBoardBackground>;
|
|
228880
229130
|
board?: Maybe<TrelloBaseBoard>;
|
|
228881
229131
|
errors?: Maybe<Array<MutationError>>;
|
|
228882
229132
|
member?: Maybe<TrelloMember>;
|
|
@@ -232490,6 +232740,7 @@ export declare type TrelloVoiceCaptureSessionUpdated = TrelloStatefulSessionUpda
|
|
|
232490
232740
|
__typename?: 'TrelloVoiceCaptureSessionUpdated';
|
|
232491
232741
|
cards?: Maybe<TrelloVoiceCaptureSessionCardConnectionUpdated>;
|
|
232492
232742
|
sessionId: Scalars['ID']['output'];
|
|
232743
|
+
transcript?: Maybe<Scalars['String']['output']>;
|
|
232493
232744
|
};
|
|
232494
232745
|
export declare type TrelloWatchCardInput = {
|
|
232495
232746
|
cardId: Scalars['ID']['input'];
|