@forge/cli-shared 8.23.1-next.1 → 8.23.1-next.2-experimental-49a346a
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 +18 -0
- package/out/graphql/graphql-types.d.ts +1572 -144
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +149 -61
- package/package.json +2 -2
|
@@ -141,6 +141,10 @@ export declare type AiConfigResponse = {
|
|
|
141
141
|
isRovoEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
142
142
|
isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
143
143
|
};
|
|
144
|
+
export declare type AiOpsAnalysisScopeTaskOutput = {
|
|
145
|
+
__typename?: 'AIOpsAnalysisScopeTaskOutput';
|
|
146
|
+
dependencyMappings?: Maybe<Array<AiOpsServiceDependencyMapping>>;
|
|
147
|
+
};
|
|
144
148
|
export declare type AiOpsAutomationRuleUserPrompt = {
|
|
145
149
|
__typename?: 'AIOpsAutomationRuleUserPrompt';
|
|
146
150
|
defaultValue?: Maybe<Scalars['String']['output']>;
|
|
@@ -149,6 +153,16 @@ export declare type AiOpsAutomationRuleUserPrompt = {
|
|
|
149
153
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
150
154
|
variableName?: Maybe<Scalars['String']['output']>;
|
|
151
155
|
};
|
|
156
|
+
export declare enum AiOpsChangeAnalysisStatus {
|
|
157
|
+
Completed = "COMPLETED",
|
|
158
|
+
InProgress = "IN_PROGRESS",
|
|
159
|
+
NotStarted = "NOT_STARTED",
|
|
160
|
+
Skipped = "SKIPPED"
|
|
161
|
+
}
|
|
162
|
+
export declare type AiOpsChangeImpactTaskOutput = {
|
|
163
|
+
__typename?: 'AIOpsChangeImpactTaskOutput';
|
|
164
|
+
perServiceAnalysis?: Maybe<Array<AiOpsServiceChangeAnalysis>>;
|
|
165
|
+
};
|
|
152
166
|
export declare type AiOpsCreateInvestigationPayload = Payload & {
|
|
153
167
|
__typename?: 'AIOpsCreateInvestigationPayload';
|
|
154
168
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -342,6 +356,12 @@ export declare type AiOpsIncidentSuggestionResponse = {
|
|
|
342
356
|
probableRCATitle?: Maybe<Scalars['String']['output']>;
|
|
343
357
|
suggestedActions?: Maybe<Array<AiOpsIncidentSuggestedAction>>;
|
|
344
358
|
};
|
|
359
|
+
export declare type AiOpsInvestigatedServiceDetail = {
|
|
360
|
+
__typename?: 'AIOpsInvestigatedServiceDetail';
|
|
361
|
+
hasRepository?: Maybe<Scalars['Boolean']['output']>;
|
|
362
|
+
serviceAri?: Maybe<Scalars['String']['output']>;
|
|
363
|
+
serviceName?: Maybe<Scalars['String']['output']>;
|
|
364
|
+
};
|
|
345
365
|
export declare type AiOpsInvestigation = {
|
|
346
366
|
__typename?: 'AIOpsInvestigation';
|
|
347
367
|
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
@@ -349,8 +369,13 @@ export declare type AiOpsInvestigation = {
|
|
|
349
369
|
input: AiOpsInvestigationInputContext;
|
|
350
370
|
lastUpdatedAt?: Maybe<Scalars['Long']['output']>;
|
|
351
371
|
status?: Maybe<AiOpsInvestigationStatus>;
|
|
372
|
+
task?: Maybe<AiOpsInvestigationTask>;
|
|
373
|
+
tasks?: Maybe<Array<AiOpsInvestigationTask>>;
|
|
352
374
|
terminalState?: Maybe<AiOpsInvestigationResult>;
|
|
353
375
|
};
|
|
376
|
+
export declare type AiOpsInvestigationTaskArgs = {
|
|
377
|
+
taskId: Scalars['String']['input'];
|
|
378
|
+
};
|
|
354
379
|
export declare type AiOpsInvestigationCompleted = {
|
|
355
380
|
__typename?: 'AIOpsInvestigationCompleted';
|
|
356
381
|
changeCandidateFunnelCounts?: Maybe<Scalars['String']['output']>;
|
|
@@ -366,6 +391,15 @@ export declare type AiOpsInvestigationInputContext = {
|
|
|
366
391
|
sourceEntityId: Scalars['String']['output'];
|
|
367
392
|
sourceEntityType: AiOpsInvestigationSourceEntityType;
|
|
368
393
|
};
|
|
394
|
+
export declare type AiOpsInvestigationProgressItem = {
|
|
395
|
+
__typename?: 'AIOpsInvestigationProgressItem';
|
|
396
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
397
|
+
type?: Maybe<AiOpsInvestigationProgressItemType>;
|
|
398
|
+
};
|
|
399
|
+
export declare enum AiOpsInvestigationProgressItemType {
|
|
400
|
+
Info = "INFO",
|
|
401
|
+
Warning = "WARNING"
|
|
402
|
+
}
|
|
369
403
|
export declare type AiOpsInvestigationQueryResult = AiOpsInvestigation | QueryError;
|
|
370
404
|
export declare type AiOpsInvestigationResult = AiOpsInvestigationCompleted | AiOpsInvestigationTerminated;
|
|
371
405
|
export declare enum AiOpsInvestigationSourceEntityType {
|
|
@@ -378,6 +412,29 @@ export declare enum AiOpsInvestigationStatus {
|
|
|
378
412
|
InProgress = "IN_PROGRESS",
|
|
379
413
|
New = "NEW"
|
|
380
414
|
}
|
|
415
|
+
export declare type AiOpsInvestigationTask = {
|
|
416
|
+
__typename?: 'AIOpsInvestigationTask';
|
|
417
|
+
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
418
|
+
durationSeconds?: Maybe<Scalars['Int']['output']>;
|
|
419
|
+
output?: Maybe<AiOpsInvestigationTaskOutput>;
|
|
420
|
+
progressInfo?: Maybe<Array<AiOpsInvestigationProgressItem>>;
|
|
421
|
+
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
422
|
+
state?: Maybe<AiOpsInvestigationTaskState>;
|
|
423
|
+
taskId: Scalars['String']['output'];
|
|
424
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
425
|
+
type?: Maybe<AiOpsInvestigationTaskType>;
|
|
426
|
+
};
|
|
427
|
+
export declare type AiOpsInvestigationTaskOutput = AiOpsAnalysisScopeTaskOutput | AiOpsChangeImpactTaskOutput | AiOpsRootCauseTaskOutput;
|
|
428
|
+
export declare enum AiOpsInvestigationTaskState {
|
|
429
|
+
Completed = "COMPLETED",
|
|
430
|
+
InProgress = "IN_PROGRESS",
|
|
431
|
+
Pending = "PENDING"
|
|
432
|
+
}
|
|
433
|
+
export declare enum AiOpsInvestigationTaskType {
|
|
434
|
+
AnalysisScope = "ANALYSIS_SCOPE",
|
|
435
|
+
ChangeImpact = "CHANGE_IMPACT",
|
|
436
|
+
RootCause = "ROOT_CAUSE"
|
|
437
|
+
}
|
|
381
438
|
export declare type AiOpsInvestigationTerminated = {
|
|
382
439
|
__typename?: 'AIOpsInvestigationTerminated';
|
|
383
440
|
terminatedAt?: Maybe<Scalars['Long']['output']>;
|
|
@@ -479,6 +536,39 @@ export declare enum AiOpsRelatedAlertStatus {
|
|
|
479
536
|
Resolved = "RESOLVED",
|
|
480
537
|
Snoozed = "SNOOZED"
|
|
481
538
|
}
|
|
539
|
+
export declare type AiOpsRootCauseTaskOutput = {
|
|
540
|
+
__typename?: 'AIOpsRootCauseTaskOutput';
|
|
541
|
+
likelyRootCauses?: Maybe<Array<AiOpsLikelyRootCause>>;
|
|
542
|
+
};
|
|
543
|
+
export declare type AiOpsServiceChangeAnalysis = {
|
|
544
|
+
__typename?: 'AIOpsServiceChangeAnalysis';
|
|
545
|
+
deployments?: Maybe<Array<AiOpsServiceDeployment>>;
|
|
546
|
+
featureFlags?: Maybe<Array<AiOpsServiceFeatureFlag>>;
|
|
547
|
+
rootCauses?: Maybe<Array<AiOpsLikelyRootCause>>;
|
|
548
|
+
serviceAri?: Maybe<Scalars['String']['output']>;
|
|
549
|
+
serviceName?: Maybe<Scalars['String']['output']>;
|
|
550
|
+
status?: Maybe<AiOpsChangeAnalysisStatus>;
|
|
551
|
+
};
|
|
552
|
+
export declare type AiOpsServiceDependencyMapping = {
|
|
553
|
+
__typename?: 'AIOpsServiceDependencyMapping';
|
|
554
|
+
affectedService?: Maybe<AiOpsInvestigatedServiceDetail>;
|
|
555
|
+
dependentServices?: Maybe<Array<AiOpsInvestigatedServiceDetail>>;
|
|
556
|
+
};
|
|
557
|
+
export declare type AiOpsServiceDeployment = {
|
|
558
|
+
__typename?: 'AIOpsServiceDeployment';
|
|
559
|
+
commitCount?: Maybe<Scalars['Int']['output']>;
|
|
560
|
+
deploymentId?: Maybe<Scalars['String']['output']>;
|
|
561
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
562
|
+
workItemCount?: Maybe<Scalars['Int']['output']>;
|
|
563
|
+
};
|
|
564
|
+
export declare type AiOpsServiceFeatureFlag = {
|
|
565
|
+
__typename?: 'AIOpsServiceFeatureFlag';
|
|
566
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
567
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
568
|
+
};
|
|
569
|
+
export declare type AiOpsTerminateInvestigationInput = {
|
|
570
|
+
investigationId: Scalars['ID']['input'];
|
|
571
|
+
};
|
|
482
572
|
export declare type AiOpsTriggerInvestigationInput = {
|
|
483
573
|
agentic?: InputMaybe<Scalars['Boolean']['input']>;
|
|
484
574
|
inScopeServiceIds: Array<Scalars['ID']['input']>;
|
|
@@ -1675,6 +1765,29 @@ export declare type AvpCreateChartPayload = Payload & {
|
|
|
1675
1765
|
errors?: Maybe<Array<MutationError>>;
|
|
1676
1766
|
success: Scalars['Boolean']['output'];
|
|
1677
1767
|
};
|
|
1768
|
+
export declare type AvpCreateChartsInput = {
|
|
1769
|
+
charts: Array<AvpCreateChartsItemInput>;
|
|
1770
|
+
dashboardAri: Scalars['ID']['input'];
|
|
1771
|
+
};
|
|
1772
|
+
export declare type AvpCreateChartsItemInput = {
|
|
1773
|
+
canvasElementId?: InputMaybe<Scalars['ID']['input']>;
|
|
1774
|
+
chart: AvpChartInput;
|
|
1775
|
+
idempotencyKey: Scalars['String']['input'];
|
|
1776
|
+
};
|
|
1777
|
+
export declare type AvpCreateChartsItemResult = {
|
|
1778
|
+
__typename?: 'AVPCreateChartsItemResult';
|
|
1779
|
+
chart?: Maybe<AvpChart>;
|
|
1780
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1781
|
+
idempotencyKey: Scalars['String']['output'];
|
|
1782
|
+
success: Scalars['Boolean']['output'];
|
|
1783
|
+
};
|
|
1784
|
+
export declare type AvpCreateChartsPayload = Payload & {
|
|
1785
|
+
__typename?: 'AVPCreateChartsPayload';
|
|
1786
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
1787
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1788
|
+
results: Array<AvpCreateChartsItemResult>;
|
|
1789
|
+
success: Scalars['Boolean']['output'];
|
|
1790
|
+
};
|
|
1678
1791
|
export declare type AvpCreateDashboardFilterInput = {
|
|
1679
1792
|
dashboardAri: Scalars['ID']['input'];
|
|
1680
1793
|
filter: AvpDashboardFilterInput;
|
|
@@ -2040,6 +2153,16 @@ export declare enum AvpFilterOperator {
|
|
|
2040
2153
|
And = "AND",
|
|
2041
2154
|
Or = "OR"
|
|
2042
2155
|
}
|
|
2156
|
+
export declare type AvpGadgetMigrationStatus = {
|
|
2157
|
+
__typename?: 'AVPGadgetMigrationStatus';
|
|
2158
|
+
gadgetId: Scalars['ID']['output'];
|
|
2159
|
+
status: AvpGadgetMigrationStatusValue;
|
|
2160
|
+
};
|
|
2161
|
+
export declare enum AvpGadgetMigrationStatusValue {
|
|
2162
|
+
Failed = "FAILED",
|
|
2163
|
+
Success = "SUCCESS",
|
|
2164
|
+
Unsupported = "UNSUPPORTED"
|
|
2165
|
+
}
|
|
2043
2166
|
export declare type AvpGetDashboardIdBySlugPayload = {
|
|
2044
2167
|
__typename?: 'AVPGetDashboardIdBySlugPayload';
|
|
2045
2168
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -2060,6 +2183,11 @@ export declare type AvpGetDashboardTemplatesInput = {
|
|
|
2060
2183
|
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
2061
2184
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
2062
2185
|
};
|
|
2186
|
+
export declare type AvpGetJiraDashboardMigrationStatusInput = {
|
|
2187
|
+
cloudId: Scalars['ID']['input'];
|
|
2188
|
+
jiraDashboardId: Scalars['ID']['input'];
|
|
2189
|
+
workspaceAri: Scalars['ID']['input'];
|
|
2190
|
+
};
|
|
2063
2191
|
export declare type AvpGetReadOnlyDashboardInput = {
|
|
2064
2192
|
cloudId: Scalars['ID']['input'];
|
|
2065
2193
|
integrationId?: InputMaybe<AvpIntegrationId>;
|
|
@@ -2087,6 +2215,22 @@ export declare enum AvpIntegrationId {
|
|
|
2087
2215
|
JsmSummaryPage = "JSM_SUMMARY_PAGE",
|
|
2088
2216
|
Townsquare = "TOWNSQUARE"
|
|
2089
2217
|
}
|
|
2218
|
+
export declare type AvpJiraDashboardMigrationStatus = {
|
|
2219
|
+
__typename?: 'AVPJiraDashboardMigrationStatus';
|
|
2220
|
+
avpDashboardIds: Array<Scalars['ID']['output']>;
|
|
2221
|
+
gadgetStatuses: Array<AvpGadgetMigrationStatus>;
|
|
2222
|
+
jiraDashboardAri: Scalars['ID']['output'];
|
|
2223
|
+
lastRetryAt: Scalars['String']['output'];
|
|
2224
|
+
lastRetryFinishedAt?: Maybe<Scalars['String']['output']>;
|
|
2225
|
+
retried: Scalars['Int']['output'];
|
|
2226
|
+
startedBy: Scalars['String']['output'];
|
|
2227
|
+
status: AvpJiraDashboardMigrationStatusValue;
|
|
2228
|
+
};
|
|
2229
|
+
export declare enum AvpJiraDashboardMigrationStatusValue {
|
|
2230
|
+
Failed = "FAILED",
|
|
2231
|
+
Partial = "PARTIAL",
|
|
2232
|
+
Success = "SUCCESS"
|
|
2233
|
+
}
|
|
2090
2234
|
export declare type AvpJqlSource = {
|
|
2091
2235
|
__typename?: 'AVPJqlSource';
|
|
2092
2236
|
filterId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -2421,8 +2565,10 @@ export declare type AvpRemoveDashboardRowPayload = Payload & {
|
|
|
2421
2565
|
export declare type AvpSearchDashboardsInput = {
|
|
2422
2566
|
ascending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2423
2567
|
category?: InputMaybe<Scalars['String']['input']>;
|
|
2568
|
+
containerAri?: InputMaybe<Scalars['ID']['input']>;
|
|
2424
2569
|
creatorAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2425
2570
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2571
|
+
integrationId?: InputMaybe<Scalars['String']['input']>;
|
|
2426
2572
|
sortKey?: InputMaybe<AvpDashboardSortKey>;
|
|
2427
2573
|
starredOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2428
2574
|
status?: InputMaybe<AvpDashboardStatus>;
|
|
@@ -5252,7 +5398,7 @@ export declare type AgentSessionEdge = {
|
|
|
5252
5398
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
5253
5399
|
node?: Maybe<AgentSession>;
|
|
5254
5400
|
};
|
|
5255
|
-
export declare type AgentSessionLinkedEntity = JiraIssue;
|
|
5401
|
+
export declare type AgentSessionLinkedEntity = ConfluencePage | JiraIssue;
|
|
5256
5402
|
export declare type AgentSessionNode = {
|
|
5257
5403
|
id?: Maybe<Scalars['ID']['output']>;
|
|
5258
5404
|
};
|
|
@@ -5535,6 +5681,7 @@ export declare type AgentStudioAssistantConversation = {
|
|
|
5535
5681
|
id?: Maybe<Scalars['ID']['output']>;
|
|
5536
5682
|
lastMessageDate?: Maybe<Scalars['String']['output']>;
|
|
5537
5683
|
name?: Maybe<Scalars['String']['output']>;
|
|
5684
|
+
resolutionReason?: Maybe<Scalars['String']['output']>;
|
|
5538
5685
|
resolutionStatus?: Maybe<AgentStudioResolutionStatus>;
|
|
5539
5686
|
};
|
|
5540
5687
|
export declare type AgentStudioAssistantConversationEdge = {
|
|
@@ -5548,6 +5695,8 @@ export declare type AgentStudioAssistantMessage = {
|
|
|
5548
5695
|
author?: Maybe<AgentStudioMessageAuthor>;
|
|
5549
5696
|
content?: Maybe<AgentStudioMessageContent>;
|
|
5550
5697
|
contentMimeType?: Maybe<Scalars['String']['output']>;
|
|
5698
|
+
feedbackCategories?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
5699
|
+
feedbackMessage?: Maybe<Scalars['String']['output']>;
|
|
5551
5700
|
feedbackValue?: Maybe<AgentStudioFeedbackValue>;
|
|
5552
5701
|
id?: Maybe<Scalars['ID']['output']>;
|
|
5553
5702
|
role?: Maybe<Scalars['String']['output']>;
|
|
@@ -6986,6 +7135,14 @@ export declare type AgentWorkspaceAgentShiftsEdge = {
|
|
|
6986
7135
|
cursor: Scalars['String']['output'];
|
|
6987
7136
|
node: AgentWorkspaceAgentShifts;
|
|
6988
7137
|
};
|
|
7138
|
+
export declare type AgentWorkspaceAgentUtilizationForPendingChanges = {
|
|
7139
|
+
__typename?: 'AgentWorkspaceAgentUtilizationForPendingChanges';
|
|
7140
|
+
agentId: Scalars['ID']['output'];
|
|
7141
|
+
currentWorkItemCount: Scalars['Int']['output'];
|
|
7142
|
+
projectedStatus: AgentWorkspaceCapacityStatus;
|
|
7143
|
+
projectedUtilization: Scalars['Float']['output'];
|
|
7144
|
+
projectedWorkItemCount: Scalars['Int']['output'];
|
|
7145
|
+
};
|
|
6989
7146
|
export declare type AgentWorkspaceAgentsPageInfo = {
|
|
6990
7147
|
__typename?: 'AgentWorkspaceAgentsPageInfo';
|
|
6991
7148
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -7018,8 +7175,8 @@ export declare type AgentWorkspaceAssignAgentToGapInput = {
|
|
|
7018
7175
|
};
|
|
7019
7176
|
export declare type AgentWorkspaceAssignAgentToGapPayload = {
|
|
7020
7177
|
__typename?: 'AgentWorkspaceAssignAgentToGapPayload';
|
|
7178
|
+
coveringShift?: Maybe<AgentWorkspaceCoveringShift>;
|
|
7021
7179
|
errors?: Maybe<Array<AgentWorkspaceScheduleError>>;
|
|
7022
|
-
shift?: Maybe<AgentWorkspaceShift>;
|
|
7023
7180
|
success: Scalars['Boolean']['output'];
|
|
7024
7181
|
};
|
|
7025
7182
|
export declare type AgentWorkspaceAssignAgentsToSkillInput = {
|
|
@@ -7200,6 +7357,7 @@ export declare type AgentWorkspaceCapacitySummary = {
|
|
|
7200
7357
|
export declare type AgentWorkspaceCoverShiftEditBoundsInput = {
|
|
7201
7358
|
agentId: Scalars['ID']['input'];
|
|
7202
7359
|
coveringShiftId: Scalars['ID']['input'];
|
|
7360
|
+
occurrenceStartTime: Scalars['DateTime']['input'];
|
|
7203
7361
|
projectARI: Scalars['ID']['input'];
|
|
7204
7362
|
scheduleId: Scalars['ID']['input'];
|
|
7205
7363
|
};
|
|
@@ -7219,6 +7377,7 @@ export declare type AgentWorkspaceCoveringShift = {
|
|
|
7219
7377
|
coveringShiftId: Scalars['ID']['output'];
|
|
7220
7378
|
durationMinutes: Scalars['Int']['output'];
|
|
7221
7379
|
endTime: Scalars['DateTime']['output'];
|
|
7380
|
+
occurrenceStartTime: Scalars['DateTime']['output'];
|
|
7222
7381
|
scheduleId: Scalars['ID']['output'];
|
|
7223
7382
|
scheduleName: Scalars['String']['output'];
|
|
7224
7383
|
startTime: Scalars['DateTime']['output'];
|
|
@@ -7241,6 +7400,7 @@ export declare type AgentWorkspaceCreateDraftedRoutingTableEntriesInput = {
|
|
|
7241
7400
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
7242
7401
|
fieldId: Scalars['String']['input'];
|
|
7243
7402
|
projectKey: Scalars['String']['input'];
|
|
7403
|
+
serviceFieldType: Scalars['String']['input'];
|
|
7244
7404
|
};
|
|
7245
7405
|
export declare type AgentWorkspaceCreateDraftedRoutingTableEntriesPayload = {
|
|
7246
7406
|
__typename?: 'AgentWorkspaceCreateDraftedRoutingTableEntriesPayload';
|
|
@@ -7334,23 +7494,16 @@ export declare type AgentWorkspaceDraftedRoutingTableEntry = {
|
|
|
7334
7494
|
description?: Maybe<Scalars['String']['output']>;
|
|
7335
7495
|
serviceId: Scalars['ID']['output'];
|
|
7336
7496
|
serviceName: Scalars['String']['output'];
|
|
7337
|
-
skills
|
|
7497
|
+
skills?: Maybe<Array<AgentWorkspaceSkill>>;
|
|
7338
7498
|
team?: Maybe<TeamV2>;
|
|
7339
7499
|
teamAri?: Maybe<Scalars['ID']['output']>;
|
|
7340
7500
|
version: Scalars['Int']['output'];
|
|
7341
7501
|
};
|
|
7342
7502
|
export declare type AgentWorkspaceDraftedRoutingTableEntryPatch = {
|
|
7343
|
-
confidence?: InputMaybe<Scalars['Float']['input']>;
|
|
7344
7503
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7345
|
-
serviceName?: InputMaybe<Scalars['String']['input']>;
|
|
7346
7504
|
skills?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7347
|
-
source?: InputMaybe<AgentWorkspaceDraftedRoutingTableEntrySource>;
|
|
7348
7505
|
teamAri?: InputMaybe<Scalars['ID']['input']>;
|
|
7349
7506
|
};
|
|
7350
|
-
export declare enum AgentWorkspaceDraftedRoutingTableEntrySource {
|
|
7351
|
-
Manual = "MANUAL",
|
|
7352
|
-
Rovo = "ROVO"
|
|
7353
|
-
}
|
|
7354
7507
|
export declare type AgentWorkspaceDraftedRoutingTableStatus = {
|
|
7355
7508
|
__typename?: 'AgentWorkspaceDraftedRoutingTableStatus';
|
|
7356
7509
|
serviceFieldId?: Maybe<Scalars['String']['output']>;
|
|
@@ -7361,6 +7514,7 @@ export declare type AgentWorkspaceEditCoverShiftInput = {
|
|
|
7361
7514
|
newAgentId?: InputMaybe<Scalars['ID']['input']>;
|
|
7362
7515
|
newEndTime: Scalars['DateTime']['input'];
|
|
7363
7516
|
newStartTime: Scalars['DateTime']['input'];
|
|
7517
|
+
occurrenceStartTime: Scalars['DateTime']['input'];
|
|
7364
7518
|
projectARI: Scalars['ID']['input'];
|
|
7365
7519
|
scheduleId: Scalars['ID']['input'];
|
|
7366
7520
|
};
|
|
@@ -7415,20 +7569,7 @@ export declare type AgentWorkspaceGroupTooLarge = {
|
|
|
7415
7569
|
export declare type AgentWorkspaceIssueRebalancingRecommendation = {
|
|
7416
7570
|
__typename?: 'AgentWorkspaceIssueRebalancingRecommendation';
|
|
7417
7571
|
issueARI: Scalars['ID']['output'];
|
|
7418
|
-
projectedReceiverUtilization: Scalars['Float']['output'];
|
|
7419
|
-
projectedSourceUtilization: Scalars['Float']['output'];
|
|
7420
7572
|
recommendations: Array<AgentWorkspaceRebalancingRecommendation>;
|
|
7421
|
-
sourceAgentId: Scalars['ID']['output'];
|
|
7422
|
-
toAgentId: Scalars['ID']['output'];
|
|
7423
|
-
};
|
|
7424
|
-
export declare type AgentWorkspaceIssueRoutingHistory = {
|
|
7425
|
-
__typename?: 'AgentWorkspaceIssueRoutingHistory';
|
|
7426
|
-
events: AgentWorkspaceRoutingHistoryEventConnection;
|
|
7427
|
-
issueKey: Scalars['String']['output'];
|
|
7428
|
-
};
|
|
7429
|
-
export declare type AgentWorkspaceIssueRoutingHistoryEventsArgs = {
|
|
7430
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
7431
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7432
7573
|
};
|
|
7433
7574
|
export declare type AgentWorkspaceLiveRoutingTable = {
|
|
7434
7575
|
__typename?: 'AgentWorkspaceLiveRoutingTable';
|
|
@@ -7444,6 +7585,15 @@ export declare type AgentWorkspacePageInfo = {
|
|
|
7444
7585
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
7445
7586
|
hasNextPage: Scalars['Boolean']['output'];
|
|
7446
7587
|
};
|
|
7588
|
+
export declare type AgentWorkspacePendingAgentUtilizationChangesInput = {
|
|
7589
|
+
id: Scalars['ID']['input'];
|
|
7590
|
+
newTicketsByTeam: Array<AgentWorkspacePendingTicketsByTeamInput>;
|
|
7591
|
+
removedTicketsByTeam: Array<AgentWorkspacePendingTicketsByTeamInput>;
|
|
7592
|
+
};
|
|
7593
|
+
export declare type AgentWorkspacePendingTicketsByTeamInput = {
|
|
7594
|
+
count: Scalars['Int']['input'];
|
|
7595
|
+
issueTeam?: InputMaybe<Scalars['ID']['input']>;
|
|
7596
|
+
};
|
|
7447
7597
|
export declare type AgentWorkspaceProjectDefaultAvailability = {
|
|
7448
7598
|
__typename?: 'AgentWorkspaceProjectDefaultAvailability';
|
|
7449
7599
|
projectId: Scalars['ID']['output'];
|
|
@@ -7457,8 +7607,73 @@ export declare type AgentWorkspaceProjectDefaultAvailabilityPayload = {
|
|
|
7457
7607
|
projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
|
|
7458
7608
|
success: Scalars['Boolean']['output'];
|
|
7459
7609
|
};
|
|
7610
|
+
export declare type AgentWorkspaceProjectRoutingHistory = {
|
|
7611
|
+
__typename?: 'AgentWorkspaceProjectRoutingHistory';
|
|
7612
|
+
events: AgentWorkspaceRoutingHistoryEventConnection;
|
|
7613
|
+
};
|
|
7614
|
+
export declare type AgentWorkspaceProjectRoutingHistoryEventsArgs = {
|
|
7615
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
7616
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7617
|
+
};
|
|
7618
|
+
export declare type AgentWorkspaceProjectSkill = {
|
|
7619
|
+
__typename?: 'AgentWorkspaceProjectSkill';
|
|
7620
|
+
agents: Array<AgentWorkspaceProjectSkillAgent>;
|
|
7621
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
7622
|
+
id: Scalars['ID']['output'];
|
|
7623
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7624
|
+
services: Array<AgentWorkspaceProjectSkillService>;
|
|
7625
|
+
};
|
|
7626
|
+
export declare type AgentWorkspaceProjectSkillAgent = {
|
|
7627
|
+
__typename?: 'AgentWorkspaceProjectSkillAgent';
|
|
7628
|
+
id: Scalars['ID']['output'];
|
|
7629
|
+
user?: Maybe<User>;
|
|
7630
|
+
};
|
|
7631
|
+
export declare type AgentWorkspaceProjectSkillCategory = {
|
|
7632
|
+
__typename?: 'AgentWorkspaceProjectSkillCategory';
|
|
7633
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
7634
|
+
id: Scalars['ID']['output'];
|
|
7635
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7636
|
+
projectSkills?: Maybe<AgentWorkspaceProjectSkillConnection>;
|
|
7637
|
+
skillCount?: Maybe<Scalars['Int']['output']>;
|
|
7638
|
+
};
|
|
7639
|
+
export declare type AgentWorkspaceProjectSkillCategoryProjectSkillsArgs = {
|
|
7640
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7641
|
+
start?: InputMaybe<Scalars['String']['input']>;
|
|
7642
|
+
};
|
|
7643
|
+
export declare type AgentWorkspaceProjectSkillCategoryConnection = {
|
|
7644
|
+
__typename?: 'AgentWorkspaceProjectSkillCategoryConnection';
|
|
7645
|
+
edges?: Maybe<Array<AgentWorkspaceProjectSkillCategoryEdge>>;
|
|
7646
|
+
errors?: Maybe<Array<QueryError>>;
|
|
7647
|
+
nodes?: Maybe<Array<Maybe<AgentWorkspaceProjectSkillCategory>>>;
|
|
7648
|
+
pageInfo: PageInfo;
|
|
7649
|
+
totalCategoryCount?: Maybe<Scalars['Int']['output']>;
|
|
7650
|
+
};
|
|
7651
|
+
export declare type AgentWorkspaceProjectSkillCategoryEdge = {
|
|
7652
|
+
__typename?: 'AgentWorkspaceProjectSkillCategoryEdge';
|
|
7653
|
+
cursor: Scalars['String']['output'];
|
|
7654
|
+
node: AgentWorkspaceProjectSkillCategory;
|
|
7655
|
+
};
|
|
7656
|
+
export declare type AgentWorkspaceProjectSkillConnection = {
|
|
7657
|
+
__typename?: 'AgentWorkspaceProjectSkillConnection';
|
|
7658
|
+
edges?: Maybe<Array<AgentWorkspaceProjectSkillEdge>>;
|
|
7659
|
+
errors?: Maybe<Array<QueryError>>;
|
|
7660
|
+
nodes?: Maybe<Array<Maybe<AgentWorkspaceProjectSkill>>>;
|
|
7661
|
+
pageInfo: PageInfo;
|
|
7662
|
+
};
|
|
7663
|
+
export declare type AgentWorkspaceProjectSkillEdge = {
|
|
7664
|
+
__typename?: 'AgentWorkspaceProjectSkillEdge';
|
|
7665
|
+
cursor: Scalars['String']['output'];
|
|
7666
|
+
node: AgentWorkspaceProjectSkill;
|
|
7667
|
+
};
|
|
7668
|
+
export declare type AgentWorkspaceProjectSkillService = {
|
|
7669
|
+
__typename?: 'AgentWorkspaceProjectSkillService';
|
|
7670
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
7671
|
+
id: Scalars['ID']['output'];
|
|
7672
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7673
|
+
};
|
|
7460
7674
|
export declare type AgentWorkspaceRebalancingRecommendation = {
|
|
7461
7675
|
__typename?: 'AgentWorkspaceRebalancingRecommendation';
|
|
7676
|
+
sourceAgentId: Scalars['ID']['output'];
|
|
7462
7677
|
toAgentId: Scalars['ID']['output'];
|
|
7463
7678
|
};
|
|
7464
7679
|
export declare type AgentWorkspaceRecommendationError = {
|
|
@@ -7522,12 +7737,19 @@ export declare type AgentWorkspaceRestoreSkillPayload = {
|
|
|
7522
7737
|
errors?: Maybe<Array<MutationError>>;
|
|
7523
7738
|
success: Scalars['Boolean']['output'];
|
|
7524
7739
|
};
|
|
7740
|
+
export declare type AgentWorkspaceRoutingHistoryEntity = {
|
|
7741
|
+
fallbackText: Scalars['String']['output'];
|
|
7742
|
+
key: Scalars['String']['output'];
|
|
7743
|
+
};
|
|
7525
7744
|
export declare type AgentWorkspaceRoutingHistoryEvent = {
|
|
7526
7745
|
__typename?: 'AgentWorkspaceRoutingHistoryEvent';
|
|
7527
|
-
|
|
7528
|
-
headline: Scalars['String']['output'];
|
|
7746
|
+
entities: Array<AgentWorkspaceRoutingHistoryEntity>;
|
|
7529
7747
|
id: Scalars['ID']['output'];
|
|
7748
|
+
issue?: Maybe<JiraIssue>;
|
|
7749
|
+
issueARI: Scalars['ID']['output'];
|
|
7750
|
+
issueId: Scalars['ID']['output'];
|
|
7530
7751
|
kind: AgentWorkspaceRoutingHistoryEventKind;
|
|
7752
|
+
message: Scalars['String']['output'];
|
|
7531
7753
|
occurredAt: Scalars['DateTime']['output'];
|
|
7532
7754
|
};
|
|
7533
7755
|
export declare type AgentWorkspaceRoutingHistoryEventConnection = {
|
|
@@ -7552,12 +7774,26 @@ export declare type AgentWorkspaceRoutingHistoryPageInfo = {
|
|
|
7552
7774
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
7553
7775
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
7554
7776
|
};
|
|
7777
|
+
export declare type AgentWorkspaceRoutingHistoryTeamEntity = AgentWorkspaceRoutingHistoryEntity & {
|
|
7778
|
+
__typename?: 'AgentWorkspaceRoutingHistoryTeamEntity';
|
|
7779
|
+
fallbackText: Scalars['String']['output'];
|
|
7780
|
+
key: Scalars['String']['output'];
|
|
7781
|
+
team?: Maybe<TeamV2>;
|
|
7782
|
+
teamAri: Scalars['ID']['output'];
|
|
7783
|
+
};
|
|
7784
|
+
export declare type AgentWorkspaceRoutingHistoryUserEntity = AgentWorkspaceRoutingHistoryEntity & {
|
|
7785
|
+
__typename?: 'AgentWorkspaceRoutingHistoryUserEntity';
|
|
7786
|
+
accountId: Scalars['ID']['output'];
|
|
7787
|
+
fallbackText: Scalars['String']['output'];
|
|
7788
|
+
key: Scalars['String']['output'];
|
|
7789
|
+
user?: Maybe<User>;
|
|
7790
|
+
};
|
|
7555
7791
|
export declare type AgentWorkspaceRoutingTableEntry = {
|
|
7556
7792
|
__typename?: 'AgentWorkspaceRoutingTableEntry';
|
|
7557
7793
|
description: Scalars['String']['output'];
|
|
7558
|
-
|
|
7559
|
-
serviceFieldValue: Scalars['String']['output'];
|
|
7794
|
+
serviceId: Scalars['ID']['output'];
|
|
7560
7795
|
serviceName: Scalars['String']['output'];
|
|
7796
|
+
skills?: Maybe<Array<AgentWorkspaceSkill>>;
|
|
7561
7797
|
team?: Maybe<TeamV2>;
|
|
7562
7798
|
teamAri: Scalars['ID']['output'];
|
|
7563
7799
|
};
|
|
@@ -7629,13 +7865,16 @@ export declare type AgentWorkspaceScheduleError = {
|
|
|
7629
7865
|
export declare enum AgentWorkspaceScheduleErrorCode {
|
|
7630
7866
|
AgentNotFound = "AGENT_NOT_FOUND",
|
|
7631
7867
|
AgentNotInTeam = "AGENT_NOT_IN_TEAM",
|
|
7868
|
+
ConcurrentModification = "CONCURRENT_MODIFICATION",
|
|
7632
7869
|
Forbidden = "FORBIDDEN",
|
|
7633
7870
|
InternalError = "INTERNAL_ERROR",
|
|
7871
|
+
InvalidGapWindow = "INVALID_GAP_WINDOW",
|
|
7634
7872
|
InvalidRecurrence = "INVALID_RECURRENCE",
|
|
7635
7873
|
InvalidTimeRange = "INVALID_TIME_RANGE",
|
|
7636
7874
|
ProjectNotFound = "PROJECT_NOT_FOUND",
|
|
7637
7875
|
ScheduleDeleted = "SCHEDULE_DELETED",
|
|
7638
7876
|
ScheduleNotFound = "SCHEDULE_NOT_FOUND",
|
|
7877
|
+
ShiftOverrideNotFound = "SHIFT_OVERRIDE_NOT_FOUND",
|
|
7639
7878
|
TeamNotFound = "TEAM_NOT_FOUND",
|
|
7640
7879
|
ValidationError = "VALIDATION_ERROR"
|
|
7641
7880
|
}
|
|
@@ -8026,11 +8265,9 @@ export declare type AgentWorkspaceTeamRebalancingSummariesInput = {
|
|
|
8026
8265
|
};
|
|
8027
8266
|
export declare type AgentWorkspaceTeamRebalancingSummary = {
|
|
8028
8267
|
__typename?: 'AgentWorkspaceTeamRebalancingSummary';
|
|
8029
|
-
|
|
8268
|
+
averageUtilization: Scalars['Float']['output'];
|
|
8030
8269
|
overloadedAgentCount: Scalars['Int']['output'];
|
|
8031
8270
|
teamARI: Scalars['ID']['output'];
|
|
8032
|
-
totalCapacity: Scalars['Int']['output'];
|
|
8033
|
-
totalCurrentLoad: Scalars['Int']['output'];
|
|
8034
8271
|
totalWorkItemCount: Scalars['Int']['output'];
|
|
8035
8272
|
};
|
|
8036
8273
|
export declare type AgentWorkspaceTeamSchedules = {
|
|
@@ -8096,6 +8333,18 @@ export declare type AgentWorkspaceTimeRange = {
|
|
|
8096
8333
|
endTime: Scalars['DateTime']['output'];
|
|
8097
8334
|
startTime: Scalars['DateTime']['output'];
|
|
8098
8335
|
};
|
|
8336
|
+
export declare type AgentWorkspaceUnassignCoverShiftInput = {
|
|
8337
|
+
agentId: Scalars['ID']['input'];
|
|
8338
|
+
coveringShiftId: Scalars['ID']['input'];
|
|
8339
|
+
occurrenceStartTime: Scalars['DateTime']['input'];
|
|
8340
|
+
projectARI: Scalars['ID']['input'];
|
|
8341
|
+
scheduleId: Scalars['ID']['input'];
|
|
8342
|
+
};
|
|
8343
|
+
export declare type AgentWorkspaceUnassignCoverShiftPayload = {
|
|
8344
|
+
__typename?: 'AgentWorkspaceUnassignCoverShiftPayload';
|
|
8345
|
+
errors?: Maybe<Array<AgentWorkspaceScheduleError>>;
|
|
8346
|
+
success: Scalars['Boolean']['output'];
|
|
8347
|
+
};
|
|
8099
8348
|
export declare type AgentWorkspaceUpdateRoutingConfigInput = {
|
|
8100
8349
|
cloudId: Scalars['ID']['input'];
|
|
8101
8350
|
enabled: Scalars['Boolean']['input'];
|
|
@@ -8181,6 +8430,11 @@ export declare type AgentWorkspaceUserEdge = {
|
|
|
8181
8430
|
cursor: Scalars['String']['output'];
|
|
8182
8431
|
node: AgentWorkspaceUser;
|
|
8183
8432
|
};
|
|
8433
|
+
export declare type AgentWorkspaceUtilizationForPendingChangesInput = {
|
|
8434
|
+
agents: Array<AgentWorkspacePendingAgentUtilizationChangesInput>;
|
|
8435
|
+
cloudId: Scalars['ID']['input'];
|
|
8436
|
+
projectKey: Scalars['String']['input'];
|
|
8437
|
+
};
|
|
8184
8438
|
export declare type AiCoreApiCsvExportInput = {
|
|
8185
8439
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
8186
8440
|
fromDate?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -8292,6 +8546,7 @@ export declare type AiCoreApiRsaRequestTypeEntry = {
|
|
|
8292
8546
|
__typename?: 'AiCoreApiRsaRequestTypeEntry';
|
|
8293
8547
|
assisted: Scalars['Int']['output'];
|
|
8294
8548
|
fullyResolved: Scalars['Int']['output'];
|
|
8549
|
+
notAssignedToRovo: Scalars['Int']['output'];
|
|
8295
8550
|
requestTypeId: Scalars['String']['output'];
|
|
8296
8551
|
requestTypeName: Scalars['String']['output'];
|
|
8297
8552
|
totalClosed: Scalars['Int']['output'];
|
|
@@ -8393,6 +8648,11 @@ export declare type AiManagedObjectEdge = {
|
|
|
8393
8648
|
cursor: Scalars['String']['output'];
|
|
8394
8649
|
node: AiManagedObject;
|
|
8395
8650
|
};
|
|
8651
|
+
export declare type AiManagedObjectExecutionResult = {
|
|
8652
|
+
__typename?: 'AiManagedObjectExecutionResult';
|
|
8653
|
+
aiManagedObject: AiManagedObject;
|
|
8654
|
+
output: Scalars['JSON']['output'];
|
|
8655
|
+
};
|
|
8396
8656
|
export declare enum AiManagedObjectExecutionStatus {
|
|
8397
8657
|
Failure = "FAILURE",
|
|
8398
8658
|
Skipped = "SKIPPED",
|
|
@@ -8418,7 +8678,7 @@ export declare enum AiManagedObjectType {
|
|
|
8418
8678
|
Block = "BLOCK"
|
|
8419
8679
|
}
|
|
8420
8680
|
export declare type AiManagedObjectUpdateInput = {
|
|
8421
|
-
config
|
|
8681
|
+
config: AiManagedObjectConfigCreateInput;
|
|
8422
8682
|
referenceObjectAri?: InputMaybe<Scalars['String']['input']>;
|
|
8423
8683
|
referenceProduct?: InputMaybe<AiManagedObjectReferenceProduct>;
|
|
8424
8684
|
status?: InputMaybe<AiManagedObjectStatus>;
|
|
@@ -8432,9 +8692,14 @@ export declare type AiPlannerPlan = {
|
|
|
8432
8692
|
description?: Maybe<Scalars['String']['output']>;
|
|
8433
8693
|
id: Scalars['String']['output'];
|
|
8434
8694
|
name: Scalars['String']['output'];
|
|
8695
|
+
readinessScore?: Maybe<Scalars['Int']['output']>;
|
|
8435
8696
|
tasks: AiPlannerPlanTaskConnection;
|
|
8436
8697
|
updatedAt: Scalars['String']['output'];
|
|
8437
8698
|
};
|
|
8699
|
+
export declare type AiPlannerPlanConversationsArgs = {
|
|
8700
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
8701
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
8702
|
+
};
|
|
8438
8703
|
export declare type AiPlannerPlanConnection = {
|
|
8439
8704
|
__typename?: 'AiPlannerPlanConnection';
|
|
8440
8705
|
edges: Array<AiPlannerPlanEdge>;
|
|
@@ -13488,6 +13753,10 @@ export declare type AssetsVerticalCreateVerticalInstantiationInput = {
|
|
|
13488
13753
|
depreciationRules?: InputMaybe<Array<AssetsVerticalCreateDepreciationRuleWithinInstantiationInput>>;
|
|
13489
13754
|
type: AssetsVerticalVerticalType;
|
|
13490
13755
|
};
|
|
13756
|
+
export declare type AssetsVerticalCreateWorkbenchDashboardInput = {
|
|
13757
|
+
cloudId: Scalars['ID']['input'];
|
|
13758
|
+
verticalInstantiationId: Scalars['ID']['input'];
|
|
13759
|
+
};
|
|
13491
13760
|
export declare type AssetsVerticalCustomInsightDefinition = {
|
|
13492
13761
|
__typename?: 'AssetsVerticalCustomInsightDefinition';
|
|
13493
13762
|
category: AssetsVerticalInsightCategory;
|
|
@@ -13946,9 +14215,20 @@ export declare type AssetsVerticalModelObjectsInput = {
|
|
|
13946
14215
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
13947
14216
|
orderDirection?: InputMaybe<AssetsVerticalObjectsOrderDirection>;
|
|
13948
14217
|
orderKey?: InputMaybe<Scalars['String']['input']>;
|
|
14218
|
+
verticalInstantiationCategoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
13949
14219
|
workspaceId: Scalars['ID']['input'];
|
|
13950
14220
|
};
|
|
13951
14221
|
export declare type AssetsVerticalModelObjectsResult = AssetsVerticalModelObjects | QueryError;
|
|
14222
|
+
export declare type AssetsVerticalNonConfiguredAssetType = {
|
|
14223
|
+
__typename?: 'AssetsVerticalNonConfiguredAssetType';
|
|
14224
|
+
objSchema?: Maybe<AssetsSchema>;
|
|
14225
|
+
objType?: Maybe<AssetsObjectType>;
|
|
14226
|
+
};
|
|
14227
|
+
export declare type AssetsVerticalNonConfiguredAssetTypesPayload = {
|
|
14228
|
+
__typename?: 'AssetsVerticalNonConfiguredAssetTypesPayload';
|
|
14229
|
+
assetTypes: Array<AssetsVerticalNonConfiguredAssetType>;
|
|
14230
|
+
};
|
|
14231
|
+
export declare type AssetsVerticalNonConfiguredAssetTypesResult = AssetsVerticalNonConfiguredAssetTypesPayload | QueryError;
|
|
13952
14232
|
export declare type AssetsVerticalObjectType = {
|
|
13953
14233
|
__typename?: 'AssetsVerticalObjectType';
|
|
13954
14234
|
objectTypeId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -14136,6 +14416,7 @@ export declare type AssetsVerticalStockroomObjectsInput = {
|
|
|
14136
14416
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
14137
14417
|
orderDirection?: InputMaybe<AssetsVerticalObjectsOrderDirection>;
|
|
14138
14418
|
orderKey?: InputMaybe<Scalars['String']['input']>;
|
|
14419
|
+
verticalInstantiationCategoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
14139
14420
|
workspaceId: Scalars['ID']['input'];
|
|
14140
14421
|
};
|
|
14141
14422
|
export declare type AssetsVerticalStockroomObjectsResult = AssetsVerticalStockroomObjects | QueryError;
|
|
@@ -14379,6 +14660,57 @@ export declare type AssetsVerticalVerticalTemplateV2Result = AssetsVerticalDefau
|
|
|
14379
14660
|
export declare enum AssetsVerticalVerticalType {
|
|
14380
14661
|
Ham = "HAM"
|
|
14381
14662
|
}
|
|
14663
|
+
export declare type AssetsVerticalWorkbenchDashboard = {
|
|
14664
|
+
__typename?: 'AssetsVerticalWorkbenchDashboard';
|
|
14665
|
+
dashboardId?: Maybe<Scalars['ID']['output']>;
|
|
14666
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
14667
|
+
viewId: Scalars['ID']['output'];
|
|
14668
|
+
};
|
|
14669
|
+
export declare enum AssetsVerticalWorkbenchDashboardErrorCode {
|
|
14670
|
+
InternalError = "INTERNAL_ERROR",
|
|
14671
|
+
NotFound = "NOT_FOUND",
|
|
14672
|
+
PermissionDenied = "PERMISSION_DENIED"
|
|
14673
|
+
}
|
|
14674
|
+
export declare type AssetsVerticalWorkbenchDashboardMutationErrorExtension = MutationErrorExtension & {
|
|
14675
|
+
__typename?: 'AssetsVerticalWorkbenchDashboardMutationErrorExtension';
|
|
14676
|
+
code?: Maybe<AssetsVerticalWorkbenchDashboardErrorCode>;
|
|
14677
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
14678
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
14679
|
+
};
|
|
14680
|
+
export declare type AssetsVerticalWorkbenchDashboardPayload = Payload & {
|
|
14681
|
+
__typename?: 'AssetsVerticalWorkbenchDashboardPayload';
|
|
14682
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14683
|
+
success: Scalars['Boolean']['output'];
|
|
14684
|
+
workbenchDashboard?: Maybe<AssetsVerticalWorkbenchDashboard>;
|
|
14685
|
+
};
|
|
14686
|
+
export declare type AssetsVerticalWorkbenchDashboardRollbackStatus = {
|
|
14687
|
+
__typename?: 'AssetsVerticalWorkbenchDashboardRollbackStatus';
|
|
14688
|
+
available: Scalars['Boolean']['output'];
|
|
14689
|
+
rollbackVersion?: Maybe<Scalars['Int']['output']>;
|
|
14690
|
+
};
|
|
14691
|
+
export declare type AssetsVerticalWorkbenchDashboardTemplateStatus = {
|
|
14692
|
+
__typename?: 'AssetsVerticalWorkbenchDashboardTemplateStatus';
|
|
14693
|
+
rollback?: Maybe<AssetsVerticalWorkbenchDashboardRollbackStatus>;
|
|
14694
|
+
upgrade?: Maybe<AssetsVerticalWorkbenchDashboardUpgradeStatus>;
|
|
14695
|
+
};
|
|
14696
|
+
export declare type AssetsVerticalWorkbenchDashboardTryUpgradeInput = {
|
|
14697
|
+
cloudId: Scalars['ID']['input'];
|
|
14698
|
+
viewId: Scalars['ID']['input'];
|
|
14699
|
+
};
|
|
14700
|
+
export declare type AssetsVerticalWorkbenchDashboardTryUpgradePayload = {
|
|
14701
|
+
__typename?: 'AssetsVerticalWorkbenchDashboardTryUpgradePayload';
|
|
14702
|
+
dashboardId?: Maybe<Scalars['String']['output']>;
|
|
14703
|
+
dashboardStatus?: Maybe<Scalars['String']['output']>;
|
|
14704
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14705
|
+
previewVersion?: Maybe<Scalars['Int']['output']>;
|
|
14706
|
+
success: Scalars['Boolean']['output'];
|
|
14707
|
+
viewId?: Maybe<Scalars['ID']['output']>;
|
|
14708
|
+
};
|
|
14709
|
+
export declare type AssetsVerticalWorkbenchDashboardUpgradeStatus = {
|
|
14710
|
+
__typename?: 'AssetsVerticalWorkbenchDashboardUpgradeStatus';
|
|
14711
|
+
available: Scalars['Boolean']['output'];
|
|
14712
|
+
latestTemplateVersion: Scalars['Int']['output'];
|
|
14713
|
+
};
|
|
14382
14714
|
export declare type AssignIssueParentInput = {
|
|
14383
14715
|
boardId: Scalars['ID']['input'];
|
|
14384
14716
|
issueIds: Array<Scalars['ID']['input']>;
|
|
@@ -14511,6 +14843,20 @@ export declare type AttachEventSourcePayload = Payload & {
|
|
|
14511
14843
|
errors?: Maybe<Array<MutationError>>;
|
|
14512
14844
|
success: Scalars['Boolean']['output'];
|
|
14513
14845
|
};
|
|
14846
|
+
export declare type AttributeStoreAssignLabelInput = {
|
|
14847
|
+
entityAri: Scalars['String']['input'];
|
|
14848
|
+
labelId: Scalars['String']['input'];
|
|
14849
|
+
orgId: Scalars['String']['input'];
|
|
14850
|
+
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
14851
|
+
};
|
|
14852
|
+
export declare type AttributeStoreLabelAssignment = {
|
|
14853
|
+
__typename?: 'AttributeStoreLabelAssignment';
|
|
14854
|
+
assignedAt: Scalars['String']['output'];
|
|
14855
|
+
entityAri: Scalars['String']['output'];
|
|
14856
|
+
labelId: Scalars['String']['output'];
|
|
14857
|
+
orgId?: Maybe<Scalars['String']['output']>;
|
|
14858
|
+
workspaceAri?: Maybe<Scalars['String']['output']>;
|
|
14859
|
+
};
|
|
14514
14860
|
export declare type AuditEvent = {
|
|
14515
14861
|
__typename?: 'AuditEvent';
|
|
14516
14862
|
attributes: AuditEventAttributes;
|
|
@@ -18408,12 +18754,10 @@ export declare type CloudifyRecommendationInput = {
|
|
|
18408
18754
|
title: Scalars['String']['input'];
|
|
18409
18755
|
};
|
|
18410
18756
|
export declare enum CloudifyRecommendationStatus {
|
|
18411
|
-
Disabled = "DISABLED",
|
|
18412
|
-
Enabled = "ENABLED",
|
|
18413
18757
|
Failed = "FAILED",
|
|
18414
18758
|
New = "NEW",
|
|
18759
|
+
Prepared = "PREPARED",
|
|
18415
18760
|
Preparing = "PREPARING",
|
|
18416
|
-
ReadyForReview = "READY_FOR_REVIEW",
|
|
18417
18761
|
Rejected = "REJECTED"
|
|
18418
18762
|
}
|
|
18419
18763
|
export declare type CloudifyRecommendationStep = {
|
|
@@ -19132,7 +19476,7 @@ export declare type CommerceExpBillToParty = {
|
|
|
19132
19476
|
taxId?: Maybe<Scalars['String']['output']>;
|
|
19133
19477
|
taxIds?: Maybe<Array<Maybe<CommerceExpTaxId>>>;
|
|
19134
19478
|
};
|
|
19135
|
-
export declare type CommerceExpBillToPartyResult = CommerceExpBillToParty | QueryError;
|
|
19479
|
+
export declare type CommerceExpBillToPartyResult = CommerceExpBillToParty | CommerceExpEmptyBillToParty | QueryError;
|
|
19136
19480
|
export declare type CommerceExpBillingBehaviour = {
|
|
19137
19481
|
__typename?: 'CommerceExpBillingBehaviour';
|
|
19138
19482
|
startTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
@@ -19242,6 +19586,7 @@ export declare type CommerceExpCcpEntitlement = {
|
|
|
19242
19586
|
actions?: Maybe<CommerceExpEntitlementActions>;
|
|
19243
19587
|
actions2?: Maybe<CommerceExpEntitlementActionsV2>;
|
|
19244
19588
|
allRelatedEntitlementsForBac?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
19589
|
+
allowanceExemptions?: Maybe<CommerceExpUtsAllowanceExemptionList>;
|
|
19245
19590
|
allowancePoolContributors?: Maybe<Array<Maybe<CommerceExpAllowancePoolContributor>>>;
|
|
19246
19591
|
availableAddonsToPurchase?: Maybe<Array<CommerceExpAvailableAddonToPurchase>>;
|
|
19247
19592
|
billEstimateForAutoscalingAndLicensedChargeElements?: Maybe<CommerceExpBillEstimateResult>;
|
|
@@ -19302,6 +19647,9 @@ export declare type CommerceExpCcpEntitlement = {
|
|
|
19302
19647
|
export declare type CommerceExpCcpEntitlementAccountModificationForBacArgs = {
|
|
19303
19648
|
destinationTxa: Scalars['ID']['input'];
|
|
19304
19649
|
};
|
|
19650
|
+
export declare type CommerceExpCcpEntitlementAllowanceExemptionsArgs = {
|
|
19651
|
+
scopeType?: InputMaybe<CommerceExpUtsAllowanceExemptionScopeType>;
|
|
19652
|
+
};
|
|
19305
19653
|
export declare type CommerceExpCcpEntitlementBillEstimateForChargeElementArgs = {
|
|
19306
19654
|
chargeElement: Scalars['String']['input'];
|
|
19307
19655
|
};
|
|
@@ -20610,6 +20958,10 @@ export declare type CommerceExpEligiblePromotionWindow = {
|
|
|
20610
20958
|
endTime?: Maybe<Scalars['DateTime']['output']>;
|
|
20611
20959
|
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
20612
20960
|
};
|
|
20961
|
+
export declare type CommerceExpEmptyBillToParty = {
|
|
20962
|
+
__typename?: 'CommerceExpEmptyBillToParty';
|
|
20963
|
+
identifier: Scalars['String']['output'];
|
|
20964
|
+
};
|
|
20613
20965
|
export declare type CommerceExpEndCollectionOrderInput = {
|
|
20614
20966
|
entitlementId: Scalars['String']['input'];
|
|
20615
20967
|
};
|
|
@@ -20744,6 +21096,7 @@ export declare type CommerceExpEntitlementProvisioning = {
|
|
|
20744
21096
|
};
|
|
20745
21097
|
export declare enum CommerceExpEntitlementProvisioningStatus {
|
|
20746
21098
|
Active = "ACTIVE",
|
|
21099
|
+
DeletedUnrecoverable = "DELETED_UNRECOVERABLE",
|
|
20747
21100
|
Destroyed = "DESTROYED",
|
|
20748
21101
|
HardDeleted = "HARD_DELETED",
|
|
20749
21102
|
Inactive = "INACTIVE",
|
|
@@ -22656,6 +23009,33 @@ export declare enum CommerceExpUserRole {
|
|
|
22656
23009
|
BillingAdmin = "BILLING_ADMIN",
|
|
22657
23010
|
CustomerContact = "CUSTOMER_CONTACT"
|
|
22658
23011
|
}
|
|
23012
|
+
export declare type CommerceExpUtsAllowanceExemption = {
|
|
23013
|
+
__typename?: 'CommerceExpUtsAllowanceExemption';
|
|
23014
|
+
exemptionType?: Maybe<Scalars['String']['output']>;
|
|
23015
|
+
expiresAt?: Maybe<Scalars['String']['output']>;
|
|
23016
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
23017
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
23018
|
+
scopeId?: Maybe<Scalars['ID']['output']>;
|
|
23019
|
+
scopeType?: Maybe<CommerceExpUtsAllowanceExemptionScopeType>;
|
|
23020
|
+
status?: Maybe<CommerceExpUtsAllowanceExemptionStatus>;
|
|
23021
|
+
usageKey?: Maybe<Scalars['String']['output']>;
|
|
23022
|
+
};
|
|
23023
|
+
export declare type CommerceExpUtsAllowanceExemptionList = {
|
|
23024
|
+
__typename?: 'CommerceExpUtsAllowanceExemptionList';
|
|
23025
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
23026
|
+
exemptions?: Maybe<Array<Maybe<CommerceExpUtsAllowanceExemption>>>;
|
|
23027
|
+
nextPageToken?: Maybe<Scalars['String']['output']>;
|
|
23028
|
+
};
|
|
23029
|
+
export declare enum CommerceExpUtsAllowanceExemptionScopeType {
|
|
23030
|
+
Org = "ORG",
|
|
23031
|
+
OrgMeter = "ORG_METER"
|
|
23032
|
+
}
|
|
23033
|
+
export declare enum CommerceExpUtsAllowanceExemptionStatus {
|
|
23034
|
+
Active = "ACTIVE",
|
|
23035
|
+
Cancelled = "CANCELLED",
|
|
23036
|
+
Expired = "EXPIRED",
|
|
23037
|
+
Scheduled = "SCHEDULED"
|
|
23038
|
+
}
|
|
22659
23039
|
export declare type CommerceExpValidOrderError = {
|
|
22660
23040
|
__typename?: 'CommerceExpValidOrderError';
|
|
22661
23041
|
orderPreviewError?: Maybe<CommerceExpCcpOrderValidationError>;
|
|
@@ -30833,6 +31213,16 @@ export declare type ConfluenceMarkdownModeUpdated = {
|
|
|
30833
31213
|
__typename?: 'ConfluenceMarkdownModeUpdated';
|
|
30834
31214
|
isMarkdownMode?: Maybe<Scalars['Boolean']['output']>;
|
|
30835
31215
|
};
|
|
31216
|
+
export declare type ConfluenceMediaItemDescriptor = {
|
|
31217
|
+
__typename?: 'ConfluenceMediaItemDescriptor';
|
|
31218
|
+
collection?: Maybe<Scalars['String']['output']>;
|
|
31219
|
+
fileId?: Maybe<Scalars['String']['output']>;
|
|
31220
|
+
};
|
|
31221
|
+
export declare type ConfluenceMediaItemDescriptorV2 = {
|
|
31222
|
+
__typename?: 'ConfluenceMediaItemDescriptorV2';
|
|
31223
|
+
collection?: Maybe<Scalars['String']['output']>;
|
|
31224
|
+
fileId?: Maybe<Scalars['String']['output']>;
|
|
31225
|
+
};
|
|
30836
31226
|
export declare type ConfluenceMediaTokenData = {
|
|
30837
31227
|
__typename?: 'ConfluenceMediaTokenData';
|
|
30838
31228
|
clientId: Scalars['String']['output'];
|
|
@@ -32888,6 +33278,10 @@ export declare type ConfluenceRemoveContentApprovalReviewerInput = {
|
|
|
32888
33278
|
principalType: ConfluencePrincipalType;
|
|
32889
33279
|
workflowApplicationId: Scalars['ID']['input'];
|
|
32890
33280
|
};
|
|
33281
|
+
export declare type ConfluenceRemoveEnforcedReviewerInput = {
|
|
33282
|
+
principalId: Scalars['ID']['input'];
|
|
33283
|
+
principalType: ConfluencePrincipalType;
|
|
33284
|
+
};
|
|
32891
33285
|
export declare type ConfluenceRemoveInlineReactionInput = {
|
|
32892
33286
|
commentId: Scalars['ID']['input'];
|
|
32893
33287
|
containerId: Scalars['ID']['input'];
|
|
@@ -33825,6 +34219,7 @@ export declare type ConfluenceSuggestedEditsUpdated = {
|
|
|
33825
34219
|
};
|
|
33826
34220
|
export declare type ConfluenceSyncSmartFolderInput = {
|
|
33827
34221
|
folderId: Scalars['ID']['input'];
|
|
34222
|
+
force?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33828
34223
|
};
|
|
33829
34224
|
export declare type ConfluenceSyncSmartFolderPayload = Payload & {
|
|
33830
34225
|
__typename?: 'ConfluenceSyncSmartFolderPayload';
|
|
@@ -34517,6 +34912,7 @@ export declare type ConfluenceUpdateLoomEntryPointsConfigurationPayload = Payloa
|
|
|
34517
34912
|
export declare type ConfluenceUpdateMarkdownModeInput = {
|
|
34518
34913
|
contentId: Scalars['ID']['input'];
|
|
34519
34914
|
isMarkdownMode: Scalars['Boolean']['input'];
|
|
34915
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
34520
34916
|
};
|
|
34521
34917
|
export declare type ConfluenceUpdateMarkdownModePayload = Payload & {
|
|
34522
34918
|
__typename?: 'ConfluenceUpdateMarkdownModePayload';
|
|
@@ -34524,6 +34920,7 @@ export declare type ConfluenceUpdateMarkdownModePayload = Payload & {
|
|
|
34524
34920
|
errors?: Maybe<Array<MutationError>>;
|
|
34525
34921
|
isMarkdownMode?: Maybe<Scalars['Boolean']['output']>;
|
|
34526
34922
|
success: Scalars['Boolean']['output'];
|
|
34923
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
34527
34924
|
};
|
|
34528
34925
|
export declare enum ConfluenceUpdateModeChangeErrorCode {
|
|
34529
34926
|
AlreadyInRolesMode = "ALREADY_IN_ROLES_MODE",
|
|
@@ -35352,6 +35749,7 @@ export declare enum ContainerType {
|
|
|
35352
35749
|
export declare type Content = {
|
|
35353
35750
|
__typename?: 'Content';
|
|
35354
35751
|
aiProperty?: Maybe<ConfluenceContentAiSummaryResponse>;
|
|
35752
|
+
allCommentAgentSessions?: Maybe<AgentSessionAssociationConnection>;
|
|
35355
35753
|
ancestors?: Maybe<Array<Maybe<Content>>>;
|
|
35356
35754
|
archivableDescendantsCount: Scalars['Long']['output'];
|
|
35357
35755
|
archiveNote?: Maybe<Scalars['String']['output']>;
|
|
@@ -35435,6 +35833,11 @@ export declare type ContentAiPropertyArgs = {
|
|
|
35435
35833
|
entryPoint?: InputMaybe<Scalars['String']['input']>;
|
|
35436
35834
|
objectType?: KnowledgeGraphObjectType;
|
|
35437
35835
|
};
|
|
35836
|
+
export declare type ContentAllCommentAgentSessionsArgs = {
|
|
35837
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35838
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35839
|
+
sort?: InputMaybe<Scalars['String']['input']>;
|
|
35840
|
+
};
|
|
35438
35841
|
export declare type ContentAttachmentsArgs = {
|
|
35439
35842
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35440
35843
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -36128,7 +36531,8 @@ export declare type ConvoAiErrorMessage = ConvoAiAgentMessage & {
|
|
|
36128
36531
|
};
|
|
36129
36532
|
export declare enum ConvoAiErrorMessageTemplate {
|
|
36130
36533
|
AcceptableUseViolations = "ACCEPTABLE_USE_VIOLATIONS",
|
|
36131
|
-
Error = "ERROR"
|
|
36534
|
+
Error = "ERROR",
|
|
36535
|
+
PreExecutionError = "PRE_EXECUTION_ERROR"
|
|
36132
36536
|
}
|
|
36133
36537
|
export declare type ConvoAiHomeThread = {
|
|
36134
36538
|
__typename?: 'ConvoAiHomeThread';
|
|
@@ -36188,7 +36592,7 @@ export declare type ConvoAiHomeThreadsFirstPartySourceType = BitbucketPullReques
|
|
|
36188
36592
|
export declare type ConvoAiHomeThreadsInput = {
|
|
36189
36593
|
promptOverride?: InputMaybe<Scalars['String']['input']>;
|
|
36190
36594
|
skipCache?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36191
|
-
userId
|
|
36595
|
+
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
36192
36596
|
};
|
|
36193
36597
|
export declare type ConvoAiHomeThreadsResult = {
|
|
36194
36598
|
__typename?: 'ConvoAiHomeThreadsResult';
|
|
@@ -36390,6 +36794,7 @@ export declare type ConvoAiThirdPartyRelatedLink = {
|
|
|
36390
36794
|
};
|
|
36391
36795
|
export declare type ConvoAiTraceMessage = ConvoAiAgentMessage & {
|
|
36392
36796
|
__typename?: 'ConvoAiTraceMessage';
|
|
36797
|
+
contentIsMarkdown?: Maybe<Scalars['Boolean']['output']>;
|
|
36393
36798
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
36394
36799
|
messageTemplate: Scalars['String']['output'];
|
|
36395
36800
|
timeCreated: Scalars['DateTime']['output'];
|
|
@@ -38582,6 +38987,7 @@ export declare type CsmAiWidgetConfig = {
|
|
|
38582
38987
|
__typename?: 'CsmAiWidgetConfig';
|
|
38583
38988
|
allowedDomains?: Maybe<Array<Scalars['String']['output']>>;
|
|
38584
38989
|
clientKeys?: Maybe<CsmAiWidgetClientKeysResult>;
|
|
38990
|
+
consentForm?: Maybe<CsmAiWidgetConsentForm>;
|
|
38585
38991
|
description?: Maybe<Scalars['String']['output']>;
|
|
38586
38992
|
id: Scalars['ID']['output'];
|
|
38587
38993
|
isAnonymousAccessEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -38596,6 +39002,21 @@ export declare type CsmAiWidgetConfigSnippetsArgs = {
|
|
|
38596
39002
|
authType: CsmAiSnippetAuthType;
|
|
38597
39003
|
};
|
|
38598
39004
|
export declare type CsmAiWidgetConfigResult = CsmAiWidgetConfig | QueryError;
|
|
39005
|
+
export declare type CsmAiWidgetConsentForm = {
|
|
39006
|
+
__typename?: 'CsmAiWidgetConsentForm';
|
|
39007
|
+
acceptLabel?: Maybe<Scalars['String']['output']>;
|
|
39008
|
+
declineLabel?: Maybe<Scalars['String']['output']>;
|
|
39009
|
+
isEnabled: Scalars['Boolean']['output'];
|
|
39010
|
+
policy?: Maybe<Scalars['String']['output']>;
|
|
39011
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
39012
|
+
};
|
|
39013
|
+
export declare type CsmAiWidgetConsentFormInput = {
|
|
39014
|
+
acceptLabel?: InputMaybe<Scalars['String']['input']>;
|
|
39015
|
+
declineLabel?: InputMaybe<Scalars['String']['input']>;
|
|
39016
|
+
isEnabled: Scalars['Boolean']['input'];
|
|
39017
|
+
policy?: InputMaybe<Scalars['String']['input']>;
|
|
39018
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
39019
|
+
};
|
|
38599
39020
|
export declare type CsmAiWidgetIcon = {
|
|
38600
39021
|
__typename?: 'CsmAiWidgetIcon';
|
|
38601
39022
|
type: CsmAiWidgetIconType;
|
|
@@ -38625,6 +39046,7 @@ export declare enum CsmAiWidgetType {
|
|
|
38625
39046
|
}
|
|
38626
39047
|
export declare type CsmAiWidgetUpdateInput = {
|
|
38627
39048
|
allowedDomains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
39049
|
+
consentForm?: InputMaybe<CsmAiWidgetConsentFormInput>;
|
|
38628
39050
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
38629
39051
|
isAnonymousAccessEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38630
39052
|
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -41804,10 +42226,19 @@ export declare type DevAiRemoveContainerConfigVariablePayload = Payload & {
|
|
|
41804
42226
|
success: Scalars['Boolean']['output'];
|
|
41805
42227
|
};
|
|
41806
42228
|
export declare enum DevAiResourceType {
|
|
42229
|
+
DevaiStandard = "DEVAI_STANDARD",
|
|
42230
|
+
DevaiStandardAndJira = "DEVAI_STANDARD_AND_JIRA",
|
|
42231
|
+
DevaiStandardAndJiraAndConfluence = "DEVAI_STANDARD_AND_JIRA_AND_CONFLUENCE",
|
|
42232
|
+
DevaiStandardTrial = "DEVAI_STANDARD_TRIAL",
|
|
42233
|
+
DevaiStandardTrialAndJira = "DEVAI_STANDARD_TRIAL_AND_JIRA",
|
|
42234
|
+
Jira = "JIRA",
|
|
42235
|
+
JiraAndConfluence = "JIRA_AND_CONFLUENCE",
|
|
41807
42236
|
NoActiveProduct = "NO_ACTIVE_PRODUCT",
|
|
41808
42237
|
RovoDevBeta = "ROVO_DEV_BETA",
|
|
41809
42238
|
RovoDevEverywhere = "ROVO_DEV_EVERYWHERE",
|
|
41810
42239
|
RovoDevStandard = "ROVO_DEV_STANDARD",
|
|
42240
|
+
RovoDevStandardAndJira = "ROVO_DEV_STANDARD_AND_JIRA",
|
|
42241
|
+
RovoDevStandardAndJiraAndConfluence = "ROVO_DEV_STANDARD_AND_JIRA_AND_CONFLUENCE",
|
|
41811
42242
|
RovoDevStandardTrial = "ROVO_DEV_STANDARD_TRIAL"
|
|
41812
42243
|
}
|
|
41813
42244
|
export declare type DevAiRovoAgent = {
|
|
@@ -41898,6 +42329,7 @@ export declare type DevAiRovoDevCreatePullRequestPayload = Payload & {
|
|
|
41898
42329
|
};
|
|
41899
42330
|
export declare type DevAiRovoDevCreateSessionByCloudIdInput = {
|
|
41900
42331
|
automationInvokerId?: InputMaybe<Scalars['String']['input']>;
|
|
42332
|
+
automationRuleId?: InputMaybe<Scalars['String']['input']>;
|
|
41901
42333
|
cloudId: Scalars['ID']['input'];
|
|
41902
42334
|
linkConversationId?: InputMaybe<Scalars['String']['input']>;
|
|
41903
42335
|
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
@@ -41984,6 +42416,7 @@ export declare type DevAiRovoDevSession = Node & {
|
|
|
41984
42416
|
__typename?: 'DevAiRovoDevSession';
|
|
41985
42417
|
accountId?: Maybe<Scalars['ID']['output']>;
|
|
41986
42418
|
automationInvokerId?: Maybe<Scalars['String']['output']>;
|
|
42419
|
+
automationRuleId?: Maybe<Scalars['String']['output']>;
|
|
41987
42420
|
buildStatus?: Maybe<DevAiRovoDevBuildStatus>;
|
|
41988
42421
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
41989
42422
|
editorPath?: Maybe<Scalars['String']['output']>;
|
|
@@ -42004,6 +42437,7 @@ export declare type DevAiRovoDevSession = Node & {
|
|
|
42004
42437
|
sessionTitle?: Maybe<Scalars['String']['output']>;
|
|
42005
42438
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
42006
42439
|
workspaceAri?: Maybe<Scalars['ID']['output']>;
|
|
42440
|
+
xid?: Maybe<Scalars['String']['output']>;
|
|
42007
42441
|
};
|
|
42008
42442
|
export declare type DevAiRovoDevSessionEditorPathArgs = {
|
|
42009
42443
|
keepAlive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -44965,9 +45399,11 @@ export declare enum EcosystemRollingReleaseStatus {
|
|
|
44965
45399
|
}
|
|
44966
45400
|
export declare type EcosystemSiteEntitlement = {
|
|
44967
45401
|
__typename?: 'EcosystemSiteEntitlement';
|
|
45402
|
+
appKey?: Maybe<Scalars['String']['output']>;
|
|
44968
45403
|
entitlementId: Scalars['String']['output'];
|
|
44969
45404
|
productKey?: Maybe<Scalars['String']['output']>;
|
|
44970
45405
|
status?: Maybe<Scalars['String']['output']>;
|
|
45406
|
+
transactionAccountId?: Maybe<Scalars['String']['output']>;
|
|
44971
45407
|
};
|
|
44972
45408
|
export declare type EcosystemSiteEntitlementsResult = {
|
|
44973
45409
|
__typename?: 'EcosystemSiteEntitlementsResult';
|
|
@@ -45071,8 +45507,10 @@ export declare type EmbeddedContent = {
|
|
|
45071
45507
|
};
|
|
45072
45508
|
export declare type EmbeddedMediaToken = {
|
|
45073
45509
|
__typename?: 'EmbeddedMediaToken';
|
|
45510
|
+
clientId?: Maybe<Scalars['String']['output']>;
|
|
45074
45511
|
collectionIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
45075
45512
|
contentId?: Maybe<Scalars['ID']['output']>;
|
|
45513
|
+
descriptors?: Maybe<Array<Maybe<ConfluenceMediaItemDescriptor>>>;
|
|
45076
45514
|
expiryDateTime?: Maybe<Scalars['String']['output']>;
|
|
45077
45515
|
fileIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
45078
45516
|
links?: Maybe<LinksContextBase>;
|
|
@@ -45080,8 +45518,10 @@ export declare type EmbeddedMediaToken = {
|
|
|
45080
45518
|
};
|
|
45081
45519
|
export declare type EmbeddedMediaTokenV2 = {
|
|
45082
45520
|
__typename?: 'EmbeddedMediaTokenV2';
|
|
45521
|
+
clientId?: Maybe<Scalars['String']['output']>;
|
|
45083
45522
|
collectionIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
45084
45523
|
contentId?: Maybe<Scalars['ID']['output']>;
|
|
45524
|
+
descriptors?: Maybe<Array<Maybe<ConfluenceMediaItemDescriptorV2>>>;
|
|
45085
45525
|
expiryDateTime?: Maybe<Scalars['String']['output']>;
|
|
45086
45526
|
fileIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
45087
45527
|
mediaUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -45444,7 +45884,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
45444
45884
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
45445
45885
|
node?: Maybe<ExternalAssociation>;
|
|
45446
45886
|
};
|
|
45447
|
-
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
45887
|
+
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
45448
45888
|
export declare type ExternalAttachment = {
|
|
45449
45889
|
__typename?: 'ExternalAttachment';
|
|
45450
45890
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -45563,13 +46003,18 @@ export declare type ExternalCalendarEvent = Node & {
|
|
|
45563
46003
|
createdBy?: Maybe<ExternalUser>;
|
|
45564
46004
|
description?: Maybe<Scalars['String']['output']>;
|
|
45565
46005
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
46006
|
+
division?: Maybe<Scalars['String']['output']>;
|
|
46007
|
+
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
45566
46008
|
eventEndTime?: Maybe<Scalars['String']['output']>;
|
|
45567
46009
|
eventStartTime?: Maybe<Scalars['String']['output']>;
|
|
45568
46010
|
eventType?: Maybe<ExternalEventType>;
|
|
45569
46011
|
exceedsMaxAttendees?: Maybe<Scalars['Boolean']['output']>;
|
|
45570
46012
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
46013
|
+
groupEventType?: Maybe<Scalars['String']['output']>;
|
|
45571
46014
|
id: Scalars['ID']['output'];
|
|
45572
46015
|
isAllDayEvent?: Maybe<Scalars['Boolean']['output']>;
|
|
46016
|
+
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
46017
|
+
isPrivate?: Maybe<Scalars['Boolean']['output']>;
|
|
45573
46018
|
isRecurringEvent?: Maybe<Scalars['Boolean']['output']>;
|
|
45574
46019
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
45575
46020
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
@@ -45579,6 +46024,7 @@ export declare type ExternalCalendarEvent = Node & {
|
|
|
45579
46024
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
45580
46025
|
provider?: Maybe<ExternalProvider>;
|
|
45581
46026
|
recordingUrl?: Maybe<Scalars['String']['output']>;
|
|
46027
|
+
recurrence?: Maybe<ExternalRecurrence>;
|
|
45582
46028
|
recurringEventId?: Maybe<Scalars['String']['output']>;
|
|
45583
46029
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
45584
46030
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
@@ -46198,8 +46644,13 @@ export declare enum ExternalDesignType {
|
|
|
46198
46644
|
}
|
|
46199
46645
|
export declare type ExternalDocument = Node & {
|
|
46200
46646
|
__typename?: 'ExternalDocument';
|
|
46647
|
+
archivedAt?: Maybe<Scalars['String']['output']>;
|
|
46648
|
+
archivedBy?: Maybe<ExternalUser>;
|
|
46201
46649
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
46650
|
+
attachedToCount?: Maybe<Scalars['Int']['output']>;
|
|
46202
46651
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
46652
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
46653
|
+
channel?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
46203
46654
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
46204
46655
|
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
46205
46656
|
container?: Maybe<ExternalEntity>;
|
|
@@ -46208,26 +46659,41 @@ export declare type ExternalDocument = Node & {
|
|
|
46208
46659
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
46209
46660
|
createdBy?: Maybe<ExternalUser>;
|
|
46210
46661
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
46662
|
+
documentNumber?: Maybe<Scalars['String']['output']>;
|
|
46663
|
+
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
46211
46664
|
exportLinks?: Maybe<Array<Maybe<ExternalExportLink>>>;
|
|
46212
46665
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
46213
46666
|
extractedText?: Maybe<Scalars['String']['output']>;
|
|
46214
46667
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
46215
46668
|
id: Scalars['ID']['output'];
|
|
46669
|
+
isMasterLanguage?: Maybe<Scalars['Boolean']['output']>;
|
|
46216
46670
|
labels?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
46671
|
+
language?: Maybe<Scalars['String']['output']>;
|
|
46217
46672
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
46218
46673
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
46674
|
+
masterLanguage?: Maybe<Scalars['String']['output']>;
|
|
46219
46675
|
nonIndexableContent?: Maybe<ExternalLargeContent>;
|
|
46220
46676
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
46221
46677
|
parent?: Maybe<ExternalEntity>;
|
|
46222
46678
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
46223
46679
|
provider?: Maybe<ExternalProvider>;
|
|
46680
|
+
publishedAt?: Maybe<Scalars['String']['output']>;
|
|
46224
46681
|
reactions?: Maybe<Array<Maybe<ExternalReaction>>>;
|
|
46682
|
+
review?: Maybe<ExternalReview>;
|
|
46683
|
+
score?: Maybe<Scalars['Int']['output']>;
|
|
46684
|
+
subType?: Maybe<Scalars['String']['output']>;
|
|
46225
46685
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
46226
46686
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
46687
|
+
totalViewCount?: Maybe<Scalars['Int']['output']>;
|
|
46688
|
+
translationCompletedAt?: Maybe<Scalars['String']['output']>;
|
|
46689
|
+
translationExportedAt?: Maybe<Scalars['String']['output']>;
|
|
46690
|
+
translationImportedAt?: Maybe<Scalars['String']['output']>;
|
|
46227
46691
|
truncatedDisplayName?: Maybe<Scalars['Boolean']['output']>;
|
|
46228
46692
|
type?: Maybe<ExternalDocumentType>;
|
|
46229
46693
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
46230
46694
|
url?: Maybe<Scalars['String']['output']>;
|
|
46695
|
+
validationStatus?: Maybe<Scalars['String']['output']>;
|
|
46696
|
+
versionNumber?: Maybe<Scalars['Int']['output']>;
|
|
46231
46697
|
};
|
|
46232
46698
|
export declare enum ExternalDocumentCategory {
|
|
46233
46699
|
Archive = "ARCHIVE",
|
|
@@ -46281,6 +46747,7 @@ export declare type ExternalEntities = {
|
|
|
46281
46747
|
document?: Maybe<Array<Maybe<ExternalDocument>>>;
|
|
46282
46748
|
experimental?: Maybe<Array<Maybe<ExternalExperimental>>>;
|
|
46283
46749
|
featureFlag?: Maybe<Array<Maybe<ExternalFeatureFlag>>>;
|
|
46750
|
+
lead?: Maybe<Array<Maybe<ExternalLead>>>;
|
|
46284
46751
|
message?: Maybe<Array<Maybe<ExternalMessage>>>;
|
|
46285
46752
|
organisation?: Maybe<Array<Maybe<ExternalOrganisation>>>;
|
|
46286
46753
|
position?: Maybe<Array<Maybe<ExternalPosition>>>;
|
|
@@ -46301,7 +46768,7 @@ export declare type ExternalEntities = {
|
|
|
46301
46768
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
46302
46769
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
46303
46770
|
};
|
|
46304
|
-
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
46771
|
+
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
46305
46772
|
export declare type ExternalEntityExtendedValue = {
|
|
46306
46773
|
__typename?: 'ExternalEntityExtendedValue';
|
|
46307
46774
|
dataType?: Maybe<Scalars['String']['output']>;
|
|
@@ -46440,6 +46907,52 @@ export declare type ExternalLargeContent = {
|
|
|
46440
46907
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
46441
46908
|
representation?: Maybe<ExternalContentRepresentation>;
|
|
46442
46909
|
};
|
|
46910
|
+
export declare type ExternalLead = Node & {
|
|
46911
|
+
__typename?: 'ExternalLead';
|
|
46912
|
+
annualRevenue?: Maybe<ExternalCurrency>;
|
|
46913
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
46914
|
+
company?: Maybe<Scalars['String']['output']>;
|
|
46915
|
+
companyDunsNumber?: Maybe<Scalars['String']['output']>;
|
|
46916
|
+
container?: Maybe<ExternalEntity>;
|
|
46917
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
46918
|
+
convertedDate?: Maybe<Scalars['String']['output']>;
|
|
46919
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
46920
|
+
createdBy?: Maybe<ExternalUser>;
|
|
46921
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
46922
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
46923
|
+
division?: Maybe<Scalars['String']['output']>;
|
|
46924
|
+
emailBouncedDate?: Maybe<Scalars['String']['output']>;
|
|
46925
|
+
emailBouncedReason?: Maybe<Scalars['String']['output']>;
|
|
46926
|
+
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
46927
|
+
exportStatus?: Maybe<Scalars['String']['output']>;
|
|
46928
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
46929
|
+
firstCallDateTime?: Maybe<Scalars['String']['output']>;
|
|
46930
|
+
firstEmailDateTime?: Maybe<Scalars['String']['output']>;
|
|
46931
|
+
hasOptedOutOfEmail?: Maybe<Scalars['Boolean']['output']>;
|
|
46932
|
+
hasOptedOutOfFax?: Maybe<Scalars['Boolean']['output']>;
|
|
46933
|
+
id: Scalars['ID']['output'];
|
|
46934
|
+
industry?: Maybe<Scalars['String']['output']>;
|
|
46935
|
+
isConverted?: Maybe<Scalars['Boolean']['output']>;
|
|
46936
|
+
isPriorityRecord?: Maybe<Scalars['Boolean']['output']>;
|
|
46937
|
+
isUnreadByOwner?: Maybe<Scalars['Boolean']['output']>;
|
|
46938
|
+
lastActivityDate?: Maybe<Scalars['String']['output']>;
|
|
46939
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
46940
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
46941
|
+
leadSource?: Maybe<Scalars['String']['output']>;
|
|
46942
|
+
leadUser?: Maybe<ExternalUser>;
|
|
46943
|
+
numberOfEmployees?: Maybe<Scalars['Long']['output']>;
|
|
46944
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
46945
|
+
parent?: Maybe<ExternalEntity>;
|
|
46946
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
46947
|
+
provider?: Maybe<ExternalProvider>;
|
|
46948
|
+
rating?: Maybe<Scalars['String']['output']>;
|
|
46949
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
46950
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
46951
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
46952
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
46953
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
46954
|
+
website?: Maybe<Scalars['String']['output']>;
|
|
46955
|
+
};
|
|
46443
46956
|
export declare type ExternalLocation = {
|
|
46444
46957
|
__typename?: 'ExternalLocation';
|
|
46445
46958
|
address?: Maybe<Scalars['String']['output']>;
|
|
@@ -46541,8 +47054,11 @@ export declare type ExternalPipeline = {
|
|
|
46541
47054
|
export declare type ExternalPosition = Node & {
|
|
46542
47055
|
__typename?: 'ExternalPosition';
|
|
46543
47056
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
47057
|
+
container?: Maybe<ExternalEntity>;
|
|
47058
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
46544
47059
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
46545
47060
|
createdBy?: Maybe<ExternalUser>;
|
|
47061
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
46546
47062
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
46547
47063
|
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
46548
47064
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -46670,6 +47186,16 @@ export declare type ExternalReactions = {
|
|
|
46670
47186
|
total?: Maybe<Scalars['Int']['output']>;
|
|
46671
47187
|
type?: Maybe<ExternalCommentReactionType>;
|
|
46672
47188
|
};
|
|
47189
|
+
export declare type ExternalRecurrence = {
|
|
47190
|
+
__typename?: 'ExternalRecurrence';
|
|
47191
|
+
instance?: Maybe<Scalars['String']['output']>;
|
|
47192
|
+
month?: Maybe<Scalars['String']['output']>;
|
|
47193
|
+
regeneratedType?: Maybe<Scalars['String']['output']>;
|
|
47194
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
47195
|
+
timeZone?: Maybe<Scalars['String']['output']>;
|
|
47196
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
47197
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
47198
|
+
};
|
|
46673
47199
|
export declare type ExternalRemoteLink = Node & {
|
|
46674
47200
|
__typename?: 'ExternalRemoteLink';
|
|
46675
47201
|
actionIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -46724,6 +47250,15 @@ export declare type ExternalRepository = Node & {
|
|
|
46724
47250
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
46725
47251
|
url?: Maybe<Scalars['String']['output']>;
|
|
46726
47252
|
};
|
|
47253
|
+
export declare type ExternalReview = {
|
|
47254
|
+
__typename?: 'ExternalReview';
|
|
47255
|
+
assignedAt?: Maybe<Scalars['String']['output']>;
|
|
47256
|
+
assignedBy?: Maybe<ExternalUser>;
|
|
47257
|
+
assignedTo?: Maybe<ExternalUser>;
|
|
47258
|
+
dueDate?: Maybe<Scalars['String']['output']>;
|
|
47259
|
+
nextReviewDate?: Maybe<Scalars['String']['output']>;
|
|
47260
|
+
notes?: Maybe<Scalars['String']['output']>;
|
|
47261
|
+
};
|
|
46727
47262
|
export declare type ExternalReviewer = {
|
|
46728
47263
|
__typename?: 'ExternalReviewer';
|
|
46729
47264
|
approvalStatus?: Maybe<ExternalApprovalStatus>;
|
|
@@ -47091,6 +47626,7 @@ export declare type ExternalWorkItem = Node & {
|
|
|
47091
47626
|
largeDescription?: Maybe<ExternalLargeContent>;
|
|
47092
47627
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
47093
47628
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
47629
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
47094
47630
|
parent?: Maybe<ExternalEntity>;
|
|
47095
47631
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
47096
47632
|
priority?: Maybe<Scalars['String']['output']>;
|
|
@@ -47100,6 +47636,7 @@ export declare type ExternalWorkItem = Node & {
|
|
|
47100
47636
|
subtype?: Maybe<ExternalWorkItemSubtype>;
|
|
47101
47637
|
team?: Maybe<Scalars['String']['output']>;
|
|
47102
47638
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
47639
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
47103
47640
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
47104
47641
|
urgency?: Maybe<Scalars['String']['output']>;
|
|
47105
47642
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -48667,6 +49204,7 @@ export declare type GenericQueryErrorExtension = QueryErrorExtension & {
|
|
|
48667
49204
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
48668
49205
|
};
|
|
48669
49206
|
export declare type GetAllPlansFilterInput = {
|
|
49207
|
+
jiraProjectAri?: InputMaybe<Scalars['String']['input']>;
|
|
48670
49208
|
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
48671
49209
|
};
|
|
48672
49210
|
export declare enum GlanceEnvironment {
|
|
@@ -49749,6 +50287,20 @@ export declare type GraphIncidentLinkedJswIssueRelationshipEdge = {
|
|
|
49749
50287
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
49750
50288
|
node: GraphIncidentLinkedJswIssueRelationship;
|
|
49751
50289
|
};
|
|
50290
|
+
export declare type GraphInferenceGetJiraEntityContextInput = {
|
|
50291
|
+
contextTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
50292
|
+
includeEvidence?: InputMaybe<Scalars['Boolean']['input']>;
|
|
50293
|
+
jiraEntityAri: Scalars['String']['input'];
|
|
50294
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
50295
|
+
nodeTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
50296
|
+
};
|
|
50297
|
+
export declare type GraphInferenceGetJiraEntityContextResponse = {
|
|
50298
|
+
__typename?: 'GraphInferenceGetJiraEntityContextResponse';
|
|
50299
|
+
apiVersion: Scalars['String']['output'];
|
|
50300
|
+
candidates: Array<GraphInferenceJiraEntityContextCandidate>;
|
|
50301
|
+
meta: GraphInferenceJiraEntityContextMeta;
|
|
50302
|
+
root: GraphInferenceJiraEntityContextRoot;
|
|
50303
|
+
};
|
|
49752
50304
|
export declare type GraphInferenceGetRelatedReposInput = {
|
|
49753
50305
|
cloudId: Scalars['String']['input'];
|
|
49754
50306
|
site: Scalars['String']['input'];
|
|
@@ -49759,6 +50311,33 @@ export declare type GraphInferenceGetRelatedReposResponse = {
|
|
|
49759
50311
|
outputs?: Maybe<Scalars['JSON']['output']>;
|
|
49760
50312
|
status?: Maybe<Scalars['JSON']['output']>;
|
|
49761
50313
|
};
|
|
50314
|
+
export declare type GraphInferenceJiraEntityContextCandidate = {
|
|
50315
|
+
__typename?: 'GraphInferenceJiraEntityContextCandidate';
|
|
50316
|
+
ari: Scalars['String']['output'];
|
|
50317
|
+
evidence?: Maybe<Array<GraphInferenceJiraEntityContextEvidence>>;
|
|
50318
|
+
nodeType: Scalars['String']['output'];
|
|
50319
|
+
reasonCodes: Array<Scalars['String']['output']>;
|
|
50320
|
+
score: Scalars['Float']['output'];
|
|
50321
|
+
};
|
|
50322
|
+
export declare type GraphInferenceJiraEntityContextEvidence = {
|
|
50323
|
+
__typename?: 'GraphInferenceJiraEntityContextEvidence';
|
|
50324
|
+
contextType: Scalars['String']['output'];
|
|
50325
|
+
relationship: Scalars['String']['output'];
|
|
50326
|
+
source: Scalars['String']['output'];
|
|
50327
|
+
};
|
|
50328
|
+
export declare type GraphInferenceJiraEntityContextMeta = {
|
|
50329
|
+
__typename?: 'GraphInferenceJiraEntityContextMeta';
|
|
50330
|
+
degraded: Array<Scalars['String']['output']>;
|
|
50331
|
+
servedBy: Scalars['String']['output'];
|
|
50332
|
+
traceId?: Maybe<Scalars['String']['output']>;
|
|
50333
|
+
warnings: Array<Scalars['String']['output']>;
|
|
50334
|
+
};
|
|
50335
|
+
export declare type GraphInferenceJiraEntityContextRoot = {
|
|
50336
|
+
__typename?: 'GraphInferenceJiraEntityContextRoot';
|
|
50337
|
+
ari: Scalars['String']['output'];
|
|
50338
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
50339
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
50340
|
+
};
|
|
49762
50341
|
export declare type GraphIntegrationActionAdminManagementActionConfiguration = {
|
|
49763
50342
|
__typename?: 'GraphIntegrationActionAdminManagementActionConfiguration';
|
|
49764
50343
|
status: GraphIntegrationActionAdminManagementActionStatus;
|
|
@@ -50318,10 +50897,15 @@ export declare type GraphIntegrationSkillItem = {
|
|
|
50318
50897
|
name: Scalars['String']['output'];
|
|
50319
50898
|
uiMetadata: GraphIntegrationSkillUiMetadata;
|
|
50320
50899
|
};
|
|
50900
|
+
export declare type GraphIntegrationSkillMcpServer = {
|
|
50901
|
+
__typename?: 'GraphIntegrationSkillMcpServer';
|
|
50902
|
+
productAri: Scalars['String']['output'];
|
|
50903
|
+
};
|
|
50321
50904
|
export declare type GraphIntegrationSkillMetadata = {
|
|
50322
50905
|
__typename?: 'GraphIntegrationSkillMetadata';
|
|
50323
50906
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
50324
50907
|
createdBy?: Maybe<User>;
|
|
50908
|
+
mcpServers: Array<GraphIntegrationSkillMcpServer>;
|
|
50325
50909
|
tags: Array<Scalars['String']['output']>;
|
|
50326
50910
|
tools: Array<GraphIntegrationSkillTool>;
|
|
50327
50911
|
version: Scalars['String']['output'];
|
|
@@ -53216,6 +53800,8 @@ export declare type GraphStore = {
|
|
|
53216
53800
|
atlassianUserCreatedExternalTestRunInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestRunInverseConnection>;
|
|
53217
53801
|
atlassianUserCreatedExternalTestStatus?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusConnection>;
|
|
53218
53802
|
atlassianUserCreatedExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusInverseConnection>;
|
|
53803
|
+
atlassianUserCreatedRovoAgent?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedRovoAgentConnection>;
|
|
53804
|
+
atlassianUserCreatedRovoAgentInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedRovoAgentInverseConnection>;
|
|
53219
53805
|
atlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
53220
53806
|
atlassianUserDismissedJiraForYouRecommendationEntityBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
53221
53807
|
atlassianUserDismissedJiraForYouRecommendationEntityInverse?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseConnection>;
|
|
@@ -53314,6 +53900,8 @@ export declare type GraphStore = {
|
|
|
53314
53900
|
confluenceBlogpostHasCommentInverse?: Maybe<GraphStoreSimplifiedConfluenceBlogpostHasCommentInverseConnection>;
|
|
53315
53901
|
confluenceBlogpostSharedWithUser?: Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserConnection>;
|
|
53316
53902
|
confluenceBlogpostSharedWithUserInverse?: Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseConnection>;
|
|
53903
|
+
confluenceContentHasRelatedConfluenceContent?: Maybe<GraphStoreSimplifiedConfluenceContentHasRelatedConfluenceContentConnection>;
|
|
53904
|
+
confluenceContentHasRelatedConfluenceContentInverse?: Maybe<GraphStoreSimplifiedConfluenceContentHasRelatedConfluenceContentInverseConnection>;
|
|
53317
53905
|
confluencePageHasComment?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentConnection>;
|
|
53318
53906
|
confluencePageHasCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentInverseConnection>;
|
|
53319
53907
|
confluencePageHasConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceApprovalInverseConnection>;
|
|
@@ -53821,6 +54409,8 @@ export declare type GraphStore = {
|
|
|
53821
54409
|
riskHasProjectBatch?: Maybe<GraphStoreBatchRiskHasProjectConnection>;
|
|
53822
54410
|
riskHasProjectInverse?: Maybe<GraphStoreSimplifiedRiskHasProjectInverseConnection>;
|
|
53823
54411
|
riskHasProjectInverseBatch?: Maybe<GraphStoreBatchRiskHasProjectConnection>;
|
|
54412
|
+
rovoAgentActsAsIdentityUser?: Maybe<GraphStoreSimplifiedRovoAgentActsAsIdentityUserConnection>;
|
|
54413
|
+
rovoAgentActsAsIdentityUserInverse?: Maybe<GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseConnection>;
|
|
53824
54414
|
scorecardHasAtlasGoal?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalConnection>;
|
|
53825
54415
|
scorecardHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalInverseConnection>;
|
|
53826
54416
|
secodaDownstreamLineageBatch?: Maybe<GraphStoreBatchSecodaDownstreamLineageConnection>;
|
|
@@ -54964,6 +55554,22 @@ export declare type GraphStoreAtlassianUserCreatedExternalTestStatusInverseArgs
|
|
|
54964
55554
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
54965
55555
|
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalTestStatusSortInput>;
|
|
54966
55556
|
};
|
|
55557
|
+
export declare type GraphStoreAtlassianUserCreatedRovoAgentArgs = {
|
|
55558
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55559
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55560
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55561
|
+
id: Scalars['ID']['input'];
|
|
55562
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55563
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedRovoAgentSortInput>;
|
|
55564
|
+
};
|
|
55565
|
+
export declare type GraphStoreAtlassianUserCreatedRovoAgentInverseArgs = {
|
|
55566
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55567
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55568
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55569
|
+
id: Scalars['ID']['input'];
|
|
55570
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55571
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedRovoAgentSortInput>;
|
|
55572
|
+
};
|
|
54967
55573
|
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityArgs = {
|
|
54968
55574
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
54969
55575
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -55730,6 +56336,22 @@ export declare type GraphStoreConfluenceBlogpostSharedWithUserInverseArgs = {
|
|
|
55730
56336
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55731
56337
|
sort?: InputMaybe<GraphStoreConfluenceBlogpostSharedWithUserSortInput>;
|
|
55732
56338
|
};
|
|
56339
|
+
export declare type GraphStoreConfluenceContentHasRelatedConfluenceContentArgs = {
|
|
56340
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
56341
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
56342
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
56343
|
+
id: Scalars['ID']['input'];
|
|
56344
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
56345
|
+
sort?: InputMaybe<GraphStoreConfluenceContentHasRelatedConfluenceContentSortInput>;
|
|
56346
|
+
};
|
|
56347
|
+
export declare type GraphStoreConfluenceContentHasRelatedConfluenceContentInverseArgs = {
|
|
56348
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
56349
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
56350
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
56351
|
+
id: Scalars['ID']['input'];
|
|
56352
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
56353
|
+
sort?: InputMaybe<GraphStoreConfluenceContentHasRelatedConfluenceContentSortInput>;
|
|
56354
|
+
};
|
|
55733
56355
|
export declare type GraphStoreConfluencePageHasCommentArgs = {
|
|
55734
56356
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
55735
56357
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -59590,6 +60212,22 @@ export declare type GraphStoreRiskHasProjectInverseBatchArgs = {
|
|
|
59590
60212
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
59591
60213
|
sort?: InputMaybe<GraphStoreRiskHasProjectSortInput>;
|
|
59592
60214
|
};
|
|
60215
|
+
export declare type GraphStoreRovoAgentActsAsIdentityUserArgs = {
|
|
60216
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
60217
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60218
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
60219
|
+
id: Scalars['ID']['input'];
|
|
60220
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
60221
|
+
sort?: InputMaybe<GraphStoreRovoAgentActsAsIdentityUserSortInput>;
|
|
60222
|
+
};
|
|
60223
|
+
export declare type GraphStoreRovoAgentActsAsIdentityUserInverseArgs = {
|
|
60224
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
60225
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60226
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
60227
|
+
id: Scalars['ID']['input'];
|
|
60228
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
60229
|
+
sort?: InputMaybe<GraphStoreRovoAgentActsAsIdentityUserSortInput>;
|
|
60230
|
+
};
|
|
59593
60231
|
export declare type GraphStoreScorecardHasAtlasGoalArgs = {
|
|
59594
60232
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
59595
60233
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -63270,6 +63908,9 @@ export declare type GraphStoreAtlassianUserCreatedExternalTestRunSortInput = {
|
|
|
63270
63908
|
export declare type GraphStoreAtlassianUserCreatedExternalTestStatusSortInput = {
|
|
63271
63909
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
63272
63910
|
};
|
|
63911
|
+
export declare type GraphStoreAtlassianUserCreatedRovoAgentSortInput = {
|
|
63912
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
63913
|
+
};
|
|
63273
63914
|
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput = {
|
|
63274
63915
|
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput>>>;
|
|
63275
63916
|
category?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategoryFilterInput>;
|
|
@@ -63694,7 +64335,7 @@ export declare type GraphStoreBatchContentReferencedEntityEndNode = {
|
|
|
63694
64335
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
63695
64336
|
id: Scalars['ID']['output'];
|
|
63696
64337
|
};
|
|
63697
|
-
export declare type GraphStoreBatchContentReferencedEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
64338
|
+
export declare type GraphStoreBatchContentReferencedEntityEndUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
63698
64339
|
export declare type GraphStoreBatchContentReferencedEntityInnerConnection = {
|
|
63699
64340
|
__typename?: 'GraphStoreBatchContentReferencedEntityInnerConnection';
|
|
63700
64341
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityInnerEdge>>;
|
|
@@ -63719,7 +64360,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
63719
64360
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
63720
64361
|
id: Scalars['ID']['output'];
|
|
63721
64362
|
};
|
|
63722
|
-
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
64363
|
+
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
63723
64364
|
export declare type GraphStoreBatchCostItemHasWorkConnection = HasPageInfo & {
|
|
63724
64365
|
__typename?: 'GraphStoreBatchCostItemHasWorkConnection';
|
|
63725
64366
|
edges: Array<Maybe<GraphStoreBatchCostItemHasWorkEdge>>;
|
|
@@ -64676,7 +65317,7 @@ export declare type GraphStoreBatchProjectLinksToEntityEndNode = {
|
|
|
64676
65317
|
data?: Maybe<GraphStoreBatchProjectLinksToEntityEndUnion>;
|
|
64677
65318
|
id: Scalars['ID']['output'];
|
|
64678
65319
|
};
|
|
64679
|
-
export declare type GraphStoreBatchProjectLinksToEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
65320
|
+
export declare type GraphStoreBatchProjectLinksToEntityEndUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
64680
65321
|
export declare type GraphStoreBatchProjectLinksToEntityInnerConnection = {
|
|
64681
65322
|
__typename?: 'GraphStoreBatchProjectLinksToEntityInnerConnection';
|
|
64682
65323
|
edges: Array<Maybe<GraphStoreBatchProjectLinksToEntityInnerEdge>>;
|
|
@@ -65154,6 +65795,9 @@ export declare type GraphStoreConfluenceBlogpostHasCommentSortInput = {
|
|
|
65154
65795
|
export declare type GraphStoreConfluenceBlogpostSharedWithUserSortInput = {
|
|
65155
65796
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
65156
65797
|
};
|
|
65798
|
+
export declare type GraphStoreConfluenceContentHasRelatedConfluenceContentSortInput = {
|
|
65799
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
65800
|
+
};
|
|
65157
65801
|
export declare type GraphStoreConfluencePageHasCommentSortInput = {
|
|
65158
65802
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
65159
65803
|
};
|
|
@@ -65849,7 +66493,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
65849
66493
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
65850
66494
|
id: Scalars['ID']['output'];
|
|
65851
66495
|
};
|
|
65852
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
66496
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
65853
66497
|
export declare type GraphStoreCypherQueryStringListObject = {
|
|
65854
66498
|
__typename?: 'GraphStoreCypherQueryStringListObject';
|
|
65855
66499
|
values: Array<Scalars['String']['output']>;
|
|
@@ -65871,13 +66515,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
65871
66515
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
65872
66516
|
id: Scalars['ID']['output'];
|
|
65873
66517
|
};
|
|
65874
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
66518
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
65875
66519
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
65876
66520
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
65877
66521
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
65878
66522
|
id: Scalars['ID']['output'];
|
|
65879
66523
|
};
|
|
65880
|
-
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
66524
|
+
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
65881
66525
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
65882
66526
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
65883
66527
|
value: Scalars['Boolean']['output'];
|
|
@@ -66022,7 +66666,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
66022
66666
|
V2 = "V2",
|
|
66023
66667
|
V3 = "V3"
|
|
66024
66668
|
}
|
|
66025
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
66669
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
66026
66670
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
66027
66671
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
66028
66672
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -66922,7 +67566,7 @@ export declare type GraphStoreFullContentReferencedEntityEndNode = {
|
|
|
66922
67566
|
data?: Maybe<GraphStoreFullContentReferencedEntityEndUnion>;
|
|
66923
67567
|
id: Scalars['ID']['output'];
|
|
66924
67568
|
};
|
|
66925
|
-
export declare type GraphStoreFullContentReferencedEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
67569
|
+
export declare type GraphStoreFullContentReferencedEntityEndUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
66926
67570
|
export declare type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
66927
67571
|
__typename?: 'GraphStoreFullContentReferencedEntityNode';
|
|
66928
67572
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -66936,7 +67580,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
66936
67580
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
66937
67581
|
id: Scalars['ID']['output'];
|
|
66938
67582
|
};
|
|
66939
|
-
export declare type GraphStoreFullContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
67583
|
+
export declare type GraphStoreFullContentReferencedEntityStartUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
66940
67584
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
66941
67585
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
66942
67586
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -71376,6 +72020,9 @@ export declare type GraphStorePullRequestLinksToServiceSortInput = {
|
|
|
71376
72020
|
export declare type GraphStoreRiskHasProjectSortInput = {
|
|
71377
72021
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71378
72022
|
};
|
|
72023
|
+
export declare type GraphStoreRovoAgentActsAsIdentityUserSortInput = {
|
|
72024
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72025
|
+
};
|
|
71379
72026
|
export declare type GraphStoreScorecardHasAtlasGoalSortInput = {
|
|
71380
72027
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71381
72028
|
};
|
|
@@ -72578,6 +73225,34 @@ export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusIn
|
|
|
72578
73225
|
};
|
|
72579
73226
|
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
72580
73227
|
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusUnion = ExternalTestStatus;
|
|
73228
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedRovoAgentConnection = HasPageInfo & {
|
|
73229
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedRovoAgentConnection';
|
|
73230
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedRovoAgentEdge>>>;
|
|
73231
|
+
pageInfo: PageInfo;
|
|
73232
|
+
};
|
|
73233
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedRovoAgentEdge = {
|
|
73234
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedRovoAgentEdge';
|
|
73235
|
+
createdAt: Scalars['DateTime']['output'];
|
|
73236
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
73237
|
+
id: Scalars['ID']['output'];
|
|
73238
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
73239
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedRovoAgentUnion>;
|
|
73240
|
+
};
|
|
73241
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedRovoAgentInverseConnection = HasPageInfo & {
|
|
73242
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedRovoAgentInverseConnection';
|
|
73243
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedRovoAgentInverseEdge>>>;
|
|
73244
|
+
pageInfo: PageInfo;
|
|
73245
|
+
};
|
|
73246
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedRovoAgentInverseEdge = {
|
|
73247
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedRovoAgentInverseEdge';
|
|
73248
|
+
createdAt: Scalars['DateTime']['output'];
|
|
73249
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
73250
|
+
id: Scalars['ID']['output'];
|
|
73251
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
73252
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedRovoAgentInverseUnion>;
|
|
73253
|
+
};
|
|
73254
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedRovoAgentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
73255
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedRovoAgentUnion = AgentStudioAssistant | AgentStudioServiceAgent;
|
|
72581
73256
|
export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection = HasPageInfo & HasTotal & {
|
|
72582
73257
|
__typename?: 'GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection';
|
|
72583
73258
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityEdge>>>;
|
|
@@ -73533,7 +74208,7 @@ export declare type GraphStoreSimplifiedCompassComponentLinkLinksEntityInverseEd
|
|
|
73533
74208
|
node?: Maybe<GraphStoreSimplifiedCompassComponentLinkLinksEntityInverseUnion>;
|
|
73534
74209
|
};
|
|
73535
74210
|
export declare type GraphStoreSimplifiedCompassComponentLinkLinksEntityInverseUnion = CompassLinkNode;
|
|
73536
|
-
export declare type GraphStoreSimplifiedCompassComponentLinkLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
74211
|
+
export declare type GraphStoreSimplifiedCompassComponentLinkLinksEntityUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
73537
74212
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentConnection = HasPageInfo & {
|
|
73538
74213
|
__typename?: 'GraphStoreSimplifiedComponentAssociatedDocumentConnection';
|
|
73539
74214
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentAssociatedDocumentEdge>>>;
|
|
@@ -73734,6 +74409,34 @@ export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseE
|
|
|
73734
74409
|
};
|
|
73735
74410
|
export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseUnion = ConfluenceBlogPost;
|
|
73736
74411
|
export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
74412
|
+
export declare type GraphStoreSimplifiedConfluenceContentHasRelatedConfluenceContentConnection = HasPageInfo & {
|
|
74413
|
+
__typename?: 'GraphStoreSimplifiedConfluenceContentHasRelatedConfluenceContentConnection';
|
|
74414
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceContentHasRelatedConfluenceContentEdge>>>;
|
|
74415
|
+
pageInfo: PageInfo;
|
|
74416
|
+
};
|
|
74417
|
+
export declare type GraphStoreSimplifiedConfluenceContentHasRelatedConfluenceContentEdge = {
|
|
74418
|
+
__typename?: 'GraphStoreSimplifiedConfluenceContentHasRelatedConfluenceContentEdge';
|
|
74419
|
+
createdAt: Scalars['DateTime']['output'];
|
|
74420
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
74421
|
+
id: Scalars['ID']['output'];
|
|
74422
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
74423
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceContentHasRelatedConfluenceContentUnion>;
|
|
74424
|
+
};
|
|
74425
|
+
export declare type GraphStoreSimplifiedConfluenceContentHasRelatedConfluenceContentInverseConnection = HasPageInfo & {
|
|
74426
|
+
__typename?: 'GraphStoreSimplifiedConfluenceContentHasRelatedConfluenceContentInverseConnection';
|
|
74427
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceContentHasRelatedConfluenceContentInverseEdge>>>;
|
|
74428
|
+
pageInfo: PageInfo;
|
|
74429
|
+
};
|
|
74430
|
+
export declare type GraphStoreSimplifiedConfluenceContentHasRelatedConfluenceContentInverseEdge = {
|
|
74431
|
+
__typename?: 'GraphStoreSimplifiedConfluenceContentHasRelatedConfluenceContentInverseEdge';
|
|
74432
|
+
createdAt: Scalars['DateTime']['output'];
|
|
74433
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
74434
|
+
id: Scalars['ID']['output'];
|
|
74435
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
74436
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceContentHasRelatedConfluenceContentInverseUnion>;
|
|
74437
|
+
};
|
|
74438
|
+
export declare type GraphStoreSimplifiedConfluenceContentHasRelatedConfluenceContentInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
74439
|
+
export declare type GraphStoreSimplifiedConfluenceContentHasRelatedConfluenceContentUnion = ConfluenceBlogPost | ConfluencePage;
|
|
73737
74440
|
export declare type GraphStoreSimplifiedConfluencePageHasCommentConnection = HasPageInfo & {
|
|
73738
74441
|
__typename?: 'GraphStoreSimplifiedConfluencePageHasCommentConnection';
|
|
73739
74442
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasCommentEdge>>>;
|
|
@@ -74082,8 +74785,8 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
74082
74785
|
lastUpdated: Scalars['DateTime']['output'];
|
|
74083
74786
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
74084
74787
|
};
|
|
74085
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
74086
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
74788
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
74789
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
74087
74790
|
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
74088
74791
|
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
74089
74792
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConversationHasMessageEdge>>>;
|
|
@@ -78755,7 +79458,7 @@ export declare type GraphStoreSimplifiedProjectLinksToEntityInverseEdge = {
|
|
|
78755
79458
|
node?: Maybe<GraphStoreSimplifiedProjectLinksToEntityInverseUnion>;
|
|
78756
79459
|
};
|
|
78757
79460
|
export declare type GraphStoreSimplifiedProjectLinksToEntityInverseUnion = TownsquareProject;
|
|
78758
|
-
export declare type GraphStoreSimplifiedProjectLinksToEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
79461
|
+
export declare type GraphStoreSimplifiedProjectLinksToEntityUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
78759
79462
|
export declare type GraphStoreSimplifiedPullRequestLinksToServiceConnection = HasPageInfo & {
|
|
78760
79463
|
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceConnection';
|
|
78761
79464
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPullRequestLinksToServiceEdge>>>;
|
|
@@ -78812,6 +79515,34 @@ export declare type GraphStoreSimplifiedRiskHasProjectInverseEdge = {
|
|
|
78812
79515
|
};
|
|
78813
79516
|
export declare type GraphStoreSimplifiedRiskHasProjectInverseUnion = MercuryRisk;
|
|
78814
79517
|
export declare type GraphStoreSimplifiedRiskHasProjectUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
79518
|
+
export declare type GraphStoreSimplifiedRovoAgentActsAsIdentityUserConnection = HasPageInfo & {
|
|
79519
|
+
__typename?: 'GraphStoreSimplifiedRovoAgentActsAsIdentityUserConnection';
|
|
79520
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedRovoAgentActsAsIdentityUserEdge>>>;
|
|
79521
|
+
pageInfo: PageInfo;
|
|
79522
|
+
};
|
|
79523
|
+
export declare type GraphStoreSimplifiedRovoAgentActsAsIdentityUserEdge = {
|
|
79524
|
+
__typename?: 'GraphStoreSimplifiedRovoAgentActsAsIdentityUserEdge';
|
|
79525
|
+
createdAt: Scalars['DateTime']['output'];
|
|
79526
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
79527
|
+
id: Scalars['ID']['output'];
|
|
79528
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
79529
|
+
node?: Maybe<GraphStoreSimplifiedRovoAgentActsAsIdentityUserUnion>;
|
|
79530
|
+
};
|
|
79531
|
+
export declare type GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseConnection = HasPageInfo & {
|
|
79532
|
+
__typename?: 'GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseConnection';
|
|
79533
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseEdge>>>;
|
|
79534
|
+
pageInfo: PageInfo;
|
|
79535
|
+
};
|
|
79536
|
+
export declare type GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseEdge = {
|
|
79537
|
+
__typename?: 'GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseEdge';
|
|
79538
|
+
createdAt: Scalars['DateTime']['output'];
|
|
79539
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
79540
|
+
id: Scalars['ID']['output'];
|
|
79541
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
79542
|
+
node?: Maybe<GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseUnion>;
|
|
79543
|
+
};
|
|
79544
|
+
export declare type GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseUnion = AgentStudioAssistant | AgentStudioServiceAgent;
|
|
79545
|
+
export declare type GraphStoreSimplifiedRovoAgentActsAsIdentityUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
78815
79546
|
export declare type GraphStoreSimplifiedScorecardHasAtlasGoalConnection = HasPageInfo & {
|
|
78816
79547
|
__typename?: 'GraphStoreSimplifiedScorecardHasAtlasGoalConnection';
|
|
78817
79548
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalEdge>>>;
|
|
@@ -85225,6 +85956,8 @@ export declare type GraphStoreV2 = {
|
|
|
85225
85956
|
atlassianUserCreatedLoomVideoComment?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedLoomVideoCommentConnection>;
|
|
85226
85957
|
atlassianUserCreatedLoomVideoCommentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedLoomVideoCommentInverseConnection>;
|
|
85227
85958
|
atlassianUserCreatedLoomVideoInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedLoomVideoInverseConnection>;
|
|
85959
|
+
atlassianUserCreatedRovoAgent?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentConnection>;
|
|
85960
|
+
atlassianUserCreatedRovoAgentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentInverseConnection>;
|
|
85228
85961
|
atlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreV2SimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
85229
85962
|
atlassianUserDismissedJiraForYouRecommendationEntityInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseConnection>;
|
|
85230
85963
|
atlassianUserFavoritedAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalConnection>;
|
|
@@ -85381,6 +86114,8 @@ export declare type GraphStoreV2 = {
|
|
|
85381
86114
|
confluenceBlogpostSharedWithAtlassianUserInverse?: Maybe<GraphStoreV2SimplifiedConfluenceBlogpostSharedWithAtlassianUserInverseConnection>;
|
|
85382
86115
|
confluenceCommentHasChildConfluenceComment?: Maybe<GraphStoreV2SimplifiedConfluenceCommentHasChildConfluenceCommentConnection>;
|
|
85383
86116
|
confluenceCommentHasChildConfluenceCommentInverse?: Maybe<GraphStoreV2SimplifiedConfluenceCommentHasChildConfluenceCommentInverseConnection>;
|
|
86117
|
+
confluenceContentHasRelatedConfluenceContent?: Maybe<GraphStoreV2SimplifiedConfluenceContentHasRelatedConfluenceContentConnection>;
|
|
86118
|
+
confluenceContentHasRelatedConfluenceContentInverse?: Maybe<GraphStoreV2SimplifiedConfluenceContentHasRelatedConfluenceContentInverseConnection>;
|
|
85384
86119
|
confluencePageHasChildConfluencePage?: Maybe<GraphStoreV2SimplifiedConfluencePageHasChildConfluencePageConnection>;
|
|
85385
86120
|
confluencePageHasChildConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedConfluencePageHasChildConfluencePageInverseConnection>;
|
|
85386
86121
|
confluencePageHasConfluenceApprovalInverse?: Maybe<GraphStoreV2SimplifiedConfluencePageHasConfluenceApprovalInverseConnection>;
|
|
@@ -85906,6 +86641,8 @@ export declare type GraphStoreV2 = {
|
|
|
85906
86641
|
mediaFileAttachedToContentEntity?: Maybe<GraphStoreV2SimplifiedMediaFileAttachedToContentEntityConnection>;
|
|
85907
86642
|
repositoryEntityIsBitbucketRepository?: Maybe<GraphStoreV2SimplifiedRepositoryEntityIsBitbucketRepositoryConnection>;
|
|
85908
86643
|
repositoryEntityIsBitbucketRepositoryInverse?: Maybe<GraphStoreV2SimplifiedRepositoryEntityIsBitbucketRepositoryInverseConnection>;
|
|
86644
|
+
rovoAgentActsAsAtlassianUser?: Maybe<GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserConnection>;
|
|
86645
|
+
rovoAgentActsAsAtlassianUserInverse?: Maybe<GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseConnection>;
|
|
85909
86646
|
talentPositionLinksExternalPosition?: Maybe<GraphStoreV2SimplifiedTalentPositionLinksExternalPositionConnection>;
|
|
85910
86647
|
talentPositionLinksExternalPositionInverse?: Maybe<GraphStoreV2SimplifiedTalentPositionLinksExternalPositionInverseConnection>;
|
|
85911
86648
|
talentWorkerLinksExternalWorker?: Maybe<GraphStoreV2SimplifiedTalentWorkerLinksExternalWorkerConnection>;
|
|
@@ -86805,6 +87542,20 @@ export declare type GraphStoreV2AtlassianUserCreatedLoomVideoInverseArgs = {
|
|
|
86805
87542
|
id: Scalars['ID']['input'];
|
|
86806
87543
|
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedLoomVideoSortInput>;
|
|
86807
87544
|
};
|
|
87545
|
+
export declare type GraphStoreV2AtlassianUserCreatedRovoAgentArgs = {
|
|
87546
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
87547
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
87548
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87549
|
+
id: Scalars['ID']['input'];
|
|
87550
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedRovoAgentSortInput>;
|
|
87551
|
+
};
|
|
87552
|
+
export declare type GraphStoreV2AtlassianUserCreatedRovoAgentInverseArgs = {
|
|
87553
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
87554
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
87555
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87556
|
+
id: Scalars['ID']['input'];
|
|
87557
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedRovoAgentSortInput>;
|
|
87558
|
+
};
|
|
86808
87559
|
export declare type GraphStoreV2AtlassianUserDismissedJiraForYouRecommendationEntityArgs = {
|
|
86809
87560
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
86810
87561
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -87903,6 +88654,20 @@ export declare type GraphStoreV2ConfluenceCommentHasChildConfluenceCommentInvers
|
|
|
87903
88654
|
id: Scalars['ID']['input'];
|
|
87904
88655
|
sort?: InputMaybe<GraphStoreV2ConfluenceCommentHasChildConfluenceCommentSortInput>;
|
|
87905
88656
|
};
|
|
88657
|
+
export declare type GraphStoreV2ConfluenceContentHasRelatedConfluenceContentArgs = {
|
|
88658
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88659
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88660
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88661
|
+
id: Scalars['ID']['input'];
|
|
88662
|
+
sort?: InputMaybe<GraphStoreV2ConfluenceContentHasRelatedConfluenceContentSortInput>;
|
|
88663
|
+
};
|
|
88664
|
+
export declare type GraphStoreV2ConfluenceContentHasRelatedConfluenceContentInverseArgs = {
|
|
88665
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88666
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88667
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88668
|
+
id: Scalars['ID']['input'];
|
|
88669
|
+
sort?: InputMaybe<GraphStoreV2ConfluenceContentHasRelatedConfluenceContentSortInput>;
|
|
88670
|
+
};
|
|
87906
88671
|
export declare type GraphStoreV2ConfluencePageHasChildConfluencePageArgs = {
|
|
87907
88672
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87908
88673
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -91625,6 +92390,20 @@ export declare type GraphStoreV2RepositoryEntityIsBitbucketRepositoryInverseArgs
|
|
|
91625
92390
|
id: Scalars['ID']['input'];
|
|
91626
92391
|
sort?: InputMaybe<GraphStoreV2RepositoryEntityIsBitbucketRepositorySortInput>;
|
|
91627
92392
|
};
|
|
92393
|
+
export declare type GraphStoreV2RovoAgentActsAsAtlassianUserArgs = {
|
|
92394
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92395
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92396
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92397
|
+
id: Scalars['ID']['input'];
|
|
92398
|
+
sort?: InputMaybe<GraphStoreV2RovoAgentActsAsAtlassianUserSortInput>;
|
|
92399
|
+
};
|
|
92400
|
+
export declare type GraphStoreV2RovoAgentActsAsAtlassianUserInverseArgs = {
|
|
92401
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92402
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92403
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92404
|
+
id: Scalars['ID']['input'];
|
|
92405
|
+
sort?: InputMaybe<GraphStoreV2RovoAgentActsAsAtlassianUserSortInput>;
|
|
92406
|
+
};
|
|
91628
92407
|
export declare type GraphStoreV2TalentPositionLinksExternalPositionArgs = {
|
|
91629
92408
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91630
92409
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -91900,6 +92679,9 @@ export declare type GraphStoreV2AtlassianUserCreatedLoomVideoCommentSortInput =
|
|
|
91900
92679
|
export declare type GraphStoreV2AtlassianUserCreatedLoomVideoSortInput = {
|
|
91901
92680
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
91902
92681
|
};
|
|
92682
|
+
export declare type GraphStoreV2AtlassianUserCreatedRovoAgentSortInput = {
|
|
92683
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
92684
|
+
};
|
|
91903
92685
|
export declare type GraphStoreV2AtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput = {
|
|
91904
92686
|
and?: InputMaybe<Array<InputMaybe<GraphStoreV2AtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput>>>;
|
|
91905
92687
|
category?: InputMaybe<GraphStoreV2AtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategoryFilterInput>;
|
|
@@ -92236,6 +93018,9 @@ export declare type GraphStoreV2ConfluenceBlogpostSharedWithAtlassianUserSortInp
|
|
|
92236
93018
|
export declare type GraphStoreV2ConfluenceCommentHasChildConfluenceCommentSortInput = {
|
|
92237
93019
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
92238
93020
|
};
|
|
93021
|
+
export declare type GraphStoreV2ConfluenceContentHasRelatedConfluenceContentSortInput = {
|
|
93022
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
93023
|
+
};
|
|
92239
93024
|
export declare type GraphStoreV2ConfluencePageHasChildConfluencePageSortInput = {
|
|
92240
93025
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
92241
93026
|
};
|
|
@@ -92812,7 +93597,7 @@ export declare type GraphStoreV2CypherQueryV2AriNode = {
|
|
|
92812
93597
|
data?: Maybe<GraphStoreV2CypherQueryV2AriNodeUnion>;
|
|
92813
93598
|
id: Scalars['ID']['output'];
|
|
92814
93599
|
};
|
|
92815
|
-
export declare type GraphStoreV2CypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
93600
|
+
export declare type GraphStoreV2CypherQueryV2AriNodeUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
92816
93601
|
export declare type GraphStoreV2CypherQueryV2BoolListObject = {
|
|
92817
93602
|
__typename?: 'GraphStoreV2CypherQueryV2BoolListObject';
|
|
92818
93603
|
values: Array<Scalars['Boolean']['output']>;
|
|
@@ -95297,6 +96082,9 @@ export declare type GraphStoreV2MutationDeleteLoomVideoHasConfluencePageArgs = {
|
|
|
95297
96082
|
export declare type GraphStoreV2RepositoryEntityIsBitbucketRepositorySortInput = {
|
|
95298
96083
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
95299
96084
|
};
|
|
96085
|
+
export declare type GraphStoreV2RovoAgentActsAsAtlassianUserSortInput = {
|
|
96086
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96087
|
+
};
|
|
95300
96088
|
export declare type GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeConnection = HasPageInfo & {
|
|
95301
96089
|
__typename?: 'GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeConnection';
|
|
95302
96090
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeEdge>>>;
|
|
@@ -95706,7 +96494,7 @@ export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseEdge
|
|
|
95706
96494
|
node?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseUnion>;
|
|
95707
96495
|
};
|
|
95708
96496
|
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseUnion = TownsquareProject;
|
|
95709
|
-
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
96497
|
+
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
95710
96498
|
export declare type GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection = HasPageInfo & {
|
|
95711
96499
|
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection';
|
|
95712
96500
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemEdge>>>;
|
|
@@ -97091,6 +97879,34 @@ export declare type GraphStoreV2SimplifiedAtlassianUserCreatedLoomVideoInverseEd
|
|
|
97091
97879
|
};
|
|
97092
97880
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedLoomVideoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
97093
97881
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedLoomVideoUnion = LoomVideo;
|
|
97882
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentConnection = HasPageInfo & {
|
|
97883
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentConnection';
|
|
97884
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentEdge>>>;
|
|
97885
|
+
pageInfo: PageInfo;
|
|
97886
|
+
};
|
|
97887
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentEdge = {
|
|
97888
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentEdge';
|
|
97889
|
+
createdAt: Scalars['DateTime']['output'];
|
|
97890
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
97891
|
+
id: Scalars['ID']['output'];
|
|
97892
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
97893
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentUnion>;
|
|
97894
|
+
};
|
|
97895
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentInverseConnection = HasPageInfo & {
|
|
97896
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentInverseConnection';
|
|
97897
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentInverseEdge>>>;
|
|
97898
|
+
pageInfo: PageInfo;
|
|
97899
|
+
};
|
|
97900
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentInverseEdge = {
|
|
97901
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentInverseEdge';
|
|
97902
|
+
createdAt: Scalars['DateTime']['output'];
|
|
97903
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
97904
|
+
id: Scalars['ID']['output'];
|
|
97905
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
97906
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentInverseUnion>;
|
|
97907
|
+
};
|
|
97908
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
97909
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentUnion = AgentStudioAssistant | AgentStudioServiceAgent;
|
|
97094
97910
|
export declare type GraphStoreV2SimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection = HasPageInfo & HasTotal & {
|
|
97095
97911
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection';
|
|
97096
97912
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityEdge>>>;
|
|
@@ -99198,7 +100014,7 @@ export declare type GraphStoreV2SimplifiedCompassComponentLinkLinksEntityInverse
|
|
|
99198
100014
|
node?: Maybe<GraphStoreV2SimplifiedCompassComponentLinkLinksEntityInverseUnion>;
|
|
99199
100015
|
};
|
|
99200
100016
|
export declare type GraphStoreV2SimplifiedCompassComponentLinkLinksEntityInverseUnion = CompassLinkNode;
|
|
99201
|
-
export declare type GraphStoreV2SimplifiedCompassComponentLinkLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
100017
|
+
export declare type GraphStoreV2SimplifiedCompassComponentLinkLinksEntityUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
99202
100018
|
export declare type GraphStoreV2SimplifiedCompassScorecardHasAtlassianGoalConnection = HasPageInfo & {
|
|
99203
100019
|
__typename?: 'GraphStoreV2SimplifiedCompassScorecardHasAtlassianGoalConnection';
|
|
99204
100020
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCompassScorecardHasAtlassianGoalEdge>>>;
|
|
@@ -99311,6 +100127,34 @@ export declare type GraphStoreV2SimplifiedConfluenceCommentHasChildConfluenceCom
|
|
|
99311
100127
|
};
|
|
99312
100128
|
export declare type GraphStoreV2SimplifiedConfluenceCommentHasChildConfluenceCommentInverseUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
99313
100129
|
export declare type GraphStoreV2SimplifiedConfluenceCommentHasChildConfluenceCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
100130
|
+
export declare type GraphStoreV2SimplifiedConfluenceContentHasRelatedConfluenceContentConnection = HasPageInfo & {
|
|
100131
|
+
__typename?: 'GraphStoreV2SimplifiedConfluenceContentHasRelatedConfluenceContentConnection';
|
|
100132
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedConfluenceContentHasRelatedConfluenceContentEdge>>>;
|
|
100133
|
+
pageInfo: PageInfo;
|
|
100134
|
+
};
|
|
100135
|
+
export declare type GraphStoreV2SimplifiedConfluenceContentHasRelatedConfluenceContentEdge = {
|
|
100136
|
+
__typename?: 'GraphStoreV2SimplifiedConfluenceContentHasRelatedConfluenceContentEdge';
|
|
100137
|
+
createdAt: Scalars['DateTime']['output'];
|
|
100138
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
100139
|
+
id: Scalars['ID']['output'];
|
|
100140
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
100141
|
+
node?: Maybe<GraphStoreV2SimplifiedConfluenceContentHasRelatedConfluenceContentUnion>;
|
|
100142
|
+
};
|
|
100143
|
+
export declare type GraphStoreV2SimplifiedConfluenceContentHasRelatedConfluenceContentInverseConnection = HasPageInfo & {
|
|
100144
|
+
__typename?: 'GraphStoreV2SimplifiedConfluenceContentHasRelatedConfluenceContentInverseConnection';
|
|
100145
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedConfluenceContentHasRelatedConfluenceContentInverseEdge>>>;
|
|
100146
|
+
pageInfo: PageInfo;
|
|
100147
|
+
};
|
|
100148
|
+
export declare type GraphStoreV2SimplifiedConfluenceContentHasRelatedConfluenceContentInverseEdge = {
|
|
100149
|
+
__typename?: 'GraphStoreV2SimplifiedConfluenceContentHasRelatedConfluenceContentInverseEdge';
|
|
100150
|
+
createdAt: Scalars['DateTime']['output'];
|
|
100151
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
100152
|
+
id: Scalars['ID']['output'];
|
|
100153
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
100154
|
+
node?: Maybe<GraphStoreV2SimplifiedConfluenceContentHasRelatedConfluenceContentInverseUnion>;
|
|
100155
|
+
};
|
|
100156
|
+
export declare type GraphStoreV2SimplifiedConfluenceContentHasRelatedConfluenceContentInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
100157
|
+
export declare type GraphStoreV2SimplifiedConfluenceContentHasRelatedConfluenceContentUnion = ConfluenceBlogPost | ConfluencePage;
|
|
99314
100158
|
export declare type GraphStoreV2SimplifiedConfluencePageHasChildConfluencePageConnection = HasPageInfo & {
|
|
99315
100159
|
__typename?: 'GraphStoreV2SimplifiedConfluencePageHasChildConfluencePageConnection';
|
|
99316
100160
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedConfluencePageHasChildConfluencePageEdge>>>;
|
|
@@ -99687,8 +100531,8 @@ export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseEdge =
|
|
|
99687
100531
|
lastUpdated: Scalars['DateTime']['output'];
|
|
99688
100532
|
node?: Maybe<GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion>;
|
|
99689
100533
|
};
|
|
99690
|
-
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
99691
|
-
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
100534
|
+
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
100535
|
+
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
99692
100536
|
export declare type GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemConnection = HasPageInfo & {
|
|
99693
100537
|
__typename?: 'GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemConnection';
|
|
99694
100538
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemEdge>>>;
|
|
@@ -104718,7 +105562,7 @@ export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseEdge = {
|
|
|
104718
105562
|
node?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseUnion>;
|
|
104719
105563
|
};
|
|
104720
105564
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseUnion = TownsquareProject;
|
|
104721
|
-
export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
105565
|
+
export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
104722
105566
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchConnection = HasPageInfo & HasTotal & {
|
|
104723
105567
|
__typename?: 'GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchConnection';
|
|
104724
105568
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchEdge>>>;
|
|
@@ -106895,6 +107739,34 @@ export declare type GraphStoreV2SimplifiedRepositoryEntityIsBitbucketRepositoryI
|
|
|
106895
107739
|
};
|
|
106896
107740
|
export declare type GraphStoreV2SimplifiedRepositoryEntityIsBitbucketRepositoryInverseUnion = DevOpsRepository | ExternalRepository;
|
|
106897
107741
|
export declare type GraphStoreV2SimplifiedRepositoryEntityIsBitbucketRepositoryUnion = BitbucketRepository;
|
|
107742
|
+
export declare type GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserConnection = HasPageInfo & {
|
|
107743
|
+
__typename?: 'GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserConnection';
|
|
107744
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserEdge>>>;
|
|
107745
|
+
pageInfo: PageInfo;
|
|
107746
|
+
};
|
|
107747
|
+
export declare type GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserEdge = {
|
|
107748
|
+
__typename?: 'GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserEdge';
|
|
107749
|
+
createdAt: Scalars['DateTime']['output'];
|
|
107750
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
107751
|
+
id: Scalars['ID']['output'];
|
|
107752
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
107753
|
+
node?: Maybe<GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserUnion>;
|
|
107754
|
+
};
|
|
107755
|
+
export declare type GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseConnection = HasPageInfo & {
|
|
107756
|
+
__typename?: 'GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseConnection';
|
|
107757
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseEdge>>>;
|
|
107758
|
+
pageInfo: PageInfo;
|
|
107759
|
+
};
|
|
107760
|
+
export declare type GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseEdge = {
|
|
107761
|
+
__typename?: 'GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseEdge';
|
|
107762
|
+
createdAt: Scalars['DateTime']['output'];
|
|
107763
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
107764
|
+
id: Scalars['ID']['output'];
|
|
107765
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
107766
|
+
node?: Maybe<GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseUnion>;
|
|
107767
|
+
};
|
|
107768
|
+
export declare type GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseUnion = AgentStudioAssistant | AgentStudioServiceAgent;
|
|
107769
|
+
export declare type GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
106898
107770
|
export declare type GraphStoreV2SimplifiedTalentPositionLinksExternalPositionConnection = HasPageInfo & {
|
|
106899
107771
|
__typename?: 'GraphStoreV2SimplifiedTalentPositionLinksExternalPositionConnection';
|
|
106900
107772
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedTalentPositionLinksExternalPositionEdge>>>;
|
|
@@ -107177,6 +108049,18 @@ export declare type GravityDeleteReactionPayload = Payload & {
|
|
|
107177
108049
|
errors?: Maybe<Array<MutationError>>;
|
|
107178
108050
|
success: Scalars['Boolean']['output'];
|
|
107179
108051
|
};
|
|
108052
|
+
export declare type GravityDeliveryItemMatch = {
|
|
108053
|
+
__typename?: 'GravityDeliveryItemMatch';
|
|
108054
|
+
confidence: Scalars['Float']['output'];
|
|
108055
|
+
deliveryIssueIdOrKey: Scalars['ID']['output'];
|
|
108056
|
+
discoveryIssueIdOrKey: Scalars['ID']['output'];
|
|
108057
|
+
reason: Scalars['String']['output'];
|
|
108058
|
+
};
|
|
108059
|
+
export declare type GravityDeliveryMatchingResult = GravityDeliveryMatchingSuccess | QueryError;
|
|
108060
|
+
export declare type GravityDeliveryMatchingSuccess = {
|
|
108061
|
+
__typename?: 'GravityDeliveryMatchingSuccess';
|
|
108062
|
+
matches: Array<GravityDeliveryItemMatch>;
|
|
108063
|
+
};
|
|
107180
108064
|
export declare type GravityDeliverySettings = {
|
|
107181
108065
|
__typename?: 'GravityDeliverySettings';
|
|
107182
108066
|
projectId: Scalars['ID']['output'];
|
|
@@ -107318,6 +108202,10 @@ export declare enum GravityImportSourceType {
|
|
|
107318
108202
|
Pdf = "PDF",
|
|
107319
108203
|
Text = "TEXT"
|
|
107320
108204
|
}
|
|
108205
|
+
export declare type GravityMatchDeliveryInput = {
|
|
108206
|
+
deliveryIssueIdsOrKeys: Array<Scalars['ID']['input']>;
|
|
108207
|
+
discoveryIssueIdsOrKeys: Array<Scalars['ID']['input']>;
|
|
108208
|
+
};
|
|
107321
108209
|
export declare type GravityPostFeedbackInput = {
|
|
107322
108210
|
message: Scalars['String']['input'];
|
|
107323
108211
|
target: GravityFeedbackTarget;
|
|
@@ -111956,6 +112844,16 @@ export declare type JiraAdfInput = {
|
|
|
111956
112844
|
jsonValue?: InputMaybe<Scalars['JSON']['input']>;
|
|
111957
112845
|
version?: InputMaybe<Scalars['Int']['input']>;
|
|
111958
112846
|
};
|
|
112847
|
+
export declare type JiraAcceptAgentContextItemInput = {
|
|
112848
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
112849
|
+
sourceAri: Scalars['ID']['input'];
|
|
112850
|
+
targetAri: Scalars['ID']['input'];
|
|
112851
|
+
};
|
|
112852
|
+
export declare type JiraAcceptAgentContextItemPayload = {
|
|
112853
|
+
__typename?: 'JiraAcceptAgentContextItemPayload';
|
|
112854
|
+
errors?: Maybe<Array<MutationError>>;
|
|
112855
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
112856
|
+
};
|
|
111959
112857
|
export declare type JiraAccessAtlassianIntelligenceFeature = {
|
|
111960
112858
|
__typename?: 'JiraAccessAtlassianIntelligenceFeature';
|
|
111961
112859
|
isAccessible?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -112024,6 +112922,16 @@ export declare type JiraActorEdge = {
|
|
|
112024
112922
|
cursor: Scalars['String']['output'];
|
|
112025
112923
|
node?: Maybe<JiraActor>;
|
|
112026
112924
|
};
|
|
112925
|
+
export declare type JiraAddAgentContextItemInput = {
|
|
112926
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
112927
|
+
sourceAri: Scalars['ID']['input'];
|
|
112928
|
+
targetAri: Scalars['ID']['input'];
|
|
112929
|
+
};
|
|
112930
|
+
export declare type JiraAddAgentContextItemPayload = {
|
|
112931
|
+
__typename?: 'JiraAddAgentContextItemPayload';
|
|
112932
|
+
errors?: Maybe<Array<MutationError>>;
|
|
112933
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
112934
|
+
};
|
|
112027
112935
|
export declare type JiraAddAgentToBoardViewStatusColumnInput = {
|
|
112028
112936
|
agentAccountId: Scalars['ID']['input'];
|
|
112029
112937
|
columnId: Scalars['ID']['input'];
|
|
@@ -112296,6 +113204,34 @@ export declare type JiraAgentAssignableInput = {
|
|
|
112296
113204
|
agentAccountId?: InputMaybe<Scalars['ID']['input']>;
|
|
112297
113205
|
agentId?: InputMaybe<Scalars['ID']['input']>;
|
|
112298
113206
|
};
|
|
113207
|
+
export declare type JiraAgentContextFilter = {
|
|
113208
|
+
entityTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
113209
|
+
origins?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
113210
|
+
};
|
|
113211
|
+
export declare type JiraAgentContextItem = {
|
|
113212
|
+
__typename?: 'JiraAgentContextItem';
|
|
113213
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
113214
|
+
entityType?: Maybe<Scalars['String']['output']>;
|
|
113215
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
113216
|
+
id: Scalars['ID']['output'];
|
|
113217
|
+
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
113218
|
+
origin?: Maybe<Scalars['String']['output']>;
|
|
113219
|
+
reasonCodes?: Maybe<Array<Scalars['String']['output']>>;
|
|
113220
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
113221
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
113222
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
113223
|
+
};
|
|
113224
|
+
export declare type JiraAgentContextItemConnection = {
|
|
113225
|
+
__typename?: 'JiraAgentContextItemConnection';
|
|
113226
|
+
edges?: Maybe<Array<Maybe<JiraAgentContextItemEdge>>>;
|
|
113227
|
+
pageInfo?: Maybe<PageInfo>;
|
|
113228
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
113229
|
+
};
|
|
113230
|
+
export declare type JiraAgentContextItemEdge = {
|
|
113231
|
+
__typename?: 'JiraAgentContextItemEdge';
|
|
113232
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
113233
|
+
node?: Maybe<JiraAgentContextItem>;
|
|
113234
|
+
};
|
|
112299
113235
|
export declare enum JiraAgentCreatorType {
|
|
112300
113236
|
Customer = "CUSTOMER",
|
|
112301
113237
|
Forge = "FORGE",
|
|
@@ -112675,6 +113611,7 @@ export declare type JiraAppUiModifications = {
|
|
|
112675
113611
|
};
|
|
112676
113612
|
export declare enum JiraApplicationKey {
|
|
112677
113613
|
JiraCore = "JIRA_CORE",
|
|
113614
|
+
JiraCustomerService = "JIRA_CUSTOMER_SERVICE",
|
|
112678
113615
|
JiraProductDiscovery = "JIRA_PRODUCT_DISCOVERY",
|
|
112679
113616
|
JiraServiceDesk = "JIRA_SERVICE_DESK",
|
|
112680
113617
|
JiraSoftware = "JIRA_SOFTWARE"
|
|
@@ -114262,6 +115199,7 @@ export declare type JiraBoard = Node & {
|
|
|
114262
115199
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
114263
115200
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
114264
115201
|
id: Scalars['ID']['output'];
|
|
115202
|
+
issueListKey?: Maybe<Scalars['String']['output']>;
|
|
114265
115203
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
114266
115204
|
name?: Maybe<Scalars['String']['output']>;
|
|
114267
115205
|
reportCategories?: Maybe<JiraReportCategoryConnection>;
|
|
@@ -114813,6 +115751,7 @@ export declare type JiraBoardViewWorkflow = {
|
|
|
114813
115751
|
eligibleTransitions?: Maybe<JiraTransitionConnection>;
|
|
114814
115752
|
id: Scalars['ID']['output'];
|
|
114815
115753
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
115754
|
+
workflowEntityId: Scalars['ID']['output'];
|
|
114816
115755
|
};
|
|
114817
115756
|
export declare type JiraBoardViewWorkflowEligibleTransitionsArgs = {
|
|
114818
115757
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -115229,6 +116168,11 @@ export declare enum JiraCfoFilterOperator {
|
|
|
115229
116168
|
NotIn = "NOT_IN",
|
|
115230
116169
|
StartsWith = "STARTS_WITH"
|
|
115231
116170
|
}
|
|
116171
|
+
export declare type JiraCfoInconclusiveData = {
|
|
116172
|
+
__typename?: 'JiraCFOInconclusiveData';
|
|
116173
|
+
isInconclusive?: Maybe<Scalars['Boolean']['output']>;
|
|
116174
|
+
name?: Maybe<JiraCfoDistributionCategory>;
|
|
116175
|
+
};
|
|
115232
116176
|
export declare type JiraCfoLoadTimeConfig = {
|
|
115233
116177
|
__typename?: 'JiraCFOLoadTimeConfig';
|
|
115234
116178
|
higherThreshold?: Maybe<Scalars['Float']['output']>;
|
|
@@ -115271,6 +116215,7 @@ export declare type JiraCfoMetricInsightEdge = {
|
|
|
115271
116215
|
};
|
|
115272
116216
|
export declare type JiraCfoMetricInsightMetaData = {
|
|
115273
116217
|
__typename?: 'JiraCFOMetricInsightMetaData';
|
|
116218
|
+
inconclusiveData?: Maybe<Array<Maybe<JiraCfoInconclusiveData>>>;
|
|
115274
116219
|
loadTimeDiff?: Maybe<Scalars['Int']['output']>;
|
|
115275
116220
|
loadTimeDiffFloat?: Maybe<Scalars['Float']['output']>;
|
|
115276
116221
|
};
|
|
@@ -115765,6 +116710,10 @@ export declare type JiraCascadingSelectOptionsFilter = {
|
|
|
115765
116710
|
parentOptionId?: InputMaybe<Scalars['ID']['input']>;
|
|
115766
116711
|
parentOptionName?: InputMaybe<Scalars['String']['input']>;
|
|
115767
116712
|
};
|
|
116713
|
+
export declare type JiraCaseManagementProjectSettings = {
|
|
116714
|
+
__typename?: 'JiraCaseManagementProjectSettings';
|
|
116715
|
+
isCaseManagementFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
116716
|
+
};
|
|
115768
116717
|
export declare type JiraCheckboxesField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
115769
116718
|
__typename?: 'JiraCheckboxesField';
|
|
115770
116719
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -118253,6 +119202,15 @@ export declare type JiraDisconnectTownsquareProjectToSpaceInput = {
|
|
|
118253
119202
|
spaceAri: Scalars['ID']['input'];
|
|
118254
119203
|
townsquareProjectAri: Scalars['String']['input'];
|
|
118255
119204
|
};
|
|
119205
|
+
export declare type JiraDismissAgentContextItemInput = {
|
|
119206
|
+
sourceAri: Scalars['ID']['input'];
|
|
119207
|
+
targetAri: Scalars['ID']['input'];
|
|
119208
|
+
};
|
|
119209
|
+
export declare type JiraDismissAgentContextItemPayload = {
|
|
119210
|
+
__typename?: 'JiraDismissAgentContextItemPayload';
|
|
119211
|
+
errors?: Maybe<Array<MutationError>>;
|
|
119212
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
119213
|
+
};
|
|
118256
119214
|
export declare type JiraDismissAiAgentSessionInput = {
|
|
118257
119215
|
agentIdentityAccountId: Scalars['String']['input'];
|
|
118258
119216
|
cloudId: Scalars['ID']['input'];
|
|
@@ -118614,9 +119572,9 @@ export declare type JiraFavouriteSortInput = {
|
|
|
118614
119572
|
};
|
|
118615
119573
|
export declare enum JiraFavouriteType {
|
|
118616
119574
|
Board = "BOARD",
|
|
118617
|
-
Collection = "COLLECTION",
|
|
118618
119575
|
Dashboard = "DASHBOARD",
|
|
118619
119576
|
Filter = "FILTER",
|
|
119577
|
+
JpdCollection = "JPD_COLLECTION",
|
|
118620
119578
|
Plan = "PLAN",
|
|
118621
119579
|
Project = "PROJECT",
|
|
118622
119580
|
Queue = "QUEUE"
|
|
@@ -119267,7 +120225,6 @@ export declare type JiraFilterNameMutationErrorExtension = MutationErrorExtensio
|
|
|
119267
120225
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
119268
120226
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
119269
120227
|
};
|
|
119270
|
-
export declare type JiraFilterResult = JiraCustomFilter | JiraSystemFilter | QueryError;
|
|
119271
120228
|
export declare enum JiraFilterSearchMode {
|
|
119272
120229
|
Advanced = "ADVANCED",
|
|
119273
120230
|
Basic = "BASIC",
|
|
@@ -120116,14 +121073,6 @@ export declare enum JiraGlobalPermissionType {
|
|
|
120116
121073
|
ManageCustomOnboarding = "MANAGE_CUSTOM_ONBOARDING",
|
|
120117
121074
|
UserPicker = "USER_PICKER"
|
|
120118
121075
|
}
|
|
120119
|
-
export declare type JiraGlobalTimeTrackingSettings = {
|
|
120120
|
-
__typename?: 'JiraGlobalTimeTrackingSettings';
|
|
120121
|
-
daysPerWeek: Scalars['Float']['output'];
|
|
120122
|
-
defaultUnit: JiraTimeUnit;
|
|
120123
|
-
format: JiraTimeFormat;
|
|
120124
|
-
hoursPerDay: Scalars['Float']['output'];
|
|
120125
|
-
isTimeTrackingEnabled: Scalars['Boolean']['output'];
|
|
120126
|
-
};
|
|
120127
121076
|
export declare type JiraGoal = Node & {
|
|
120128
121077
|
__typename?: 'JiraGoal';
|
|
120129
121078
|
iconKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -120789,6 +121738,9 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
120789
121738
|
issueTypesForHierarchyBelow?: Maybe<JiraIssueTypeConnection>;
|
|
120790
121739
|
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
120791
121740
|
jiraCoverMedia?: Maybe<JiraBackground>;
|
|
121741
|
+
jiraWorkItemLinksExternalBranch?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalBranchConnection>;
|
|
121742
|
+
jiraWorkItemLinksExternalBuild?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalBuildConnection>;
|
|
121743
|
+
jiraWorkItemLinksExternalCommit?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalCommitConnection>;
|
|
120792
121744
|
key: Scalars['String']['output'];
|
|
120793
121745
|
labels?: Maybe<JiraLabelConnection>;
|
|
120794
121746
|
labelsField?: Maybe<JiraLabelsField>;
|
|
@@ -121130,6 +122082,27 @@ export declare type JiraIssueIssueLinksArgs = {
|
|
|
121130
122082
|
export declare type JiraIssueIssuePropertyByKeyArgs = {
|
|
121131
122083
|
key: Scalars['String']['input'];
|
|
121132
122084
|
};
|
|
122085
|
+
export declare type JiraIssueJiraWorkItemLinksExternalBranchArgs = {
|
|
122086
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
122087
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
122088
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122089
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
122090
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksExternalBranchSortInput>;
|
|
122091
|
+
};
|
|
122092
|
+
export declare type JiraIssueJiraWorkItemLinksExternalBuildArgs = {
|
|
122093
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
122094
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
122095
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122096
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
122097
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksExternalBuildSortInput>;
|
|
122098
|
+
};
|
|
122099
|
+
export declare type JiraIssueJiraWorkItemLinksExternalCommitArgs = {
|
|
122100
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
122101
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
122102
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122103
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
122104
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksExternalCommitSortInput>;
|
|
122105
|
+
};
|
|
121133
122106
|
export declare type JiraIssueLabelsArgs = {
|
|
121134
122107
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
121135
122108
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -121163,6 +122136,9 @@ export declare type JiraIssueMatchesIssueSearchArgs = {
|
|
|
121163
122136
|
export declare type JiraIssueMediaReadTokenArgs = {
|
|
121164
122137
|
maxTokenLength: Scalars['Int']['input'];
|
|
121165
122138
|
};
|
|
122139
|
+
export declare type JiraIssueNextActionSuggestionsArgs = {
|
|
122140
|
+
excludeWorkItemIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
122141
|
+
};
|
|
121166
122142
|
export declare type JiraIssuePlanScenarioValuesArgs = {
|
|
121167
122143
|
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
121168
122144
|
};
|
|
@@ -121434,11 +122410,6 @@ export declare type JiraIssueCommandPaletteActionEdge = {
|
|
|
121434
122410
|
cursor: Scalars['String']['output'];
|
|
121435
122411
|
node?: Maybe<JiraIssueCommandPaletteAction>;
|
|
121436
122412
|
};
|
|
121437
|
-
export declare type JiraIssueCommandPaletteActionUnsupportedErrorExtension = QueryErrorExtension & {
|
|
121438
|
-
__typename?: 'JiraIssueCommandPaletteActionUnsupportedErrorExtension';
|
|
121439
|
-
errorType?: Maybe<Scalars['String']['output']>;
|
|
121440
|
-
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
121441
|
-
};
|
|
121442
122413
|
export declare type JiraIssueCommandPaletteUpdateFieldAction = JiraIssueCommandPaletteAction & Node & {
|
|
121443
122414
|
__typename?: 'JiraIssueCommandPaletteUpdateFieldAction';
|
|
121444
122415
|
field: JiraIssueField;
|
|
@@ -122009,7 +122980,6 @@ export declare type JiraIssueFieldConnection = JiraListRowFieldConnection & {
|
|
|
122009
122980
|
pageInfo: PageInfo;
|
|
122010
122981
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
122011
122982
|
};
|
|
122012
|
-
export declare type JiraIssueFieldConnectionResult = JiraIssueFieldConnection | QueryError;
|
|
122013
122983
|
export declare type JiraIssueFieldCreateContextOption = {
|
|
122014
122984
|
id: Scalars['ID']['output'];
|
|
122015
122985
|
};
|
|
@@ -124011,10 +124981,6 @@ export declare type JiraJqlBuilderVersionsArgs = {
|
|
|
124011
124981
|
jqlContext?: InputMaybe<Scalars['String']['input']>;
|
|
124012
124982
|
jqlTerm: Scalars['String']['input'];
|
|
124013
124983
|
};
|
|
124014
|
-
export declare enum JiraJqlBuilderMode {
|
|
124015
|
-
Basic = "BASIC",
|
|
124016
|
-
Jql = "JQL"
|
|
124017
|
-
}
|
|
124018
124984
|
export declare type JiraJqlCascadingOptionFieldValue = JiraJqlFieldValue & {
|
|
124019
124985
|
__typename?: 'JiraJqlCascadingOptionFieldValue';
|
|
124020
124986
|
displayName: Scalars['String']['output'];
|
|
@@ -125206,7 +126172,7 @@ export declare type JiraMoveIssueToBacklogInput = {
|
|
|
125206
126172
|
boardId: Scalars['ID']['input'];
|
|
125207
126173
|
issueId: Scalars['ID']['input'];
|
|
125208
126174
|
};
|
|
125209
|
-
export declare type JiraMoveIssueToBacklogPayload = {
|
|
126175
|
+
export declare type JiraMoveIssueToBacklogPayload = Payload & {
|
|
125210
126176
|
__typename?: 'JiraMoveIssueToBacklogPayload';
|
|
125211
126177
|
errors?: Maybe<Array<MutationError>>;
|
|
125212
126178
|
jiraView?: Maybe<JiraViewResult>;
|
|
@@ -127609,17 +128575,6 @@ export declare type JiraPermissionGrantValue = {
|
|
|
127609
128575
|
id: Scalars['ID']['output'];
|
|
127610
128576
|
value?: Maybe<JiraGrantTypeValue>;
|
|
127611
128577
|
};
|
|
127612
|
-
export declare type JiraPermissionGrantValueConnection = {
|
|
127613
|
-
__typename?: 'JiraPermissionGrantValueConnection';
|
|
127614
|
-
edges?: Maybe<Array<Maybe<JiraPermissionGrantValueEdge>>>;
|
|
127615
|
-
pageInfo: PageInfo;
|
|
127616
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
127617
|
-
};
|
|
127618
|
-
export declare type JiraPermissionGrantValueEdge = {
|
|
127619
|
-
__typename?: 'JiraPermissionGrantValueEdge';
|
|
127620
|
-
cursor: Scalars['String']['output'];
|
|
127621
|
-
node: JiraPermissionGrantValue;
|
|
127622
|
-
};
|
|
127623
128578
|
export declare type JiraPermissionGrants = {
|
|
127624
128579
|
__typename?: 'JiraPermissionGrants';
|
|
127625
128580
|
grantType: JiraGrantTypeKey;
|
|
@@ -128905,6 +129860,10 @@ export declare type JiraProjectFrontendConfig = {
|
|
|
128905
129860
|
project?: Maybe<Scalars['JSON']['output']>;
|
|
128906
129861
|
user?: Maybe<Scalars['JSON']['output']>;
|
|
128907
129862
|
};
|
|
129863
|
+
export declare type JiraProjectIdentifier = {
|
|
129864
|
+
cloudId: Scalars['ID']['input'];
|
|
129865
|
+
projectKey: Scalars['String']['input'];
|
|
129866
|
+
};
|
|
128908
129867
|
export declare type JiraProjectInput = {
|
|
128909
129868
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
128910
129869
|
projectId: Scalars['ID']['input'];
|
|
@@ -129669,6 +130628,7 @@ export declare type JiraQuery = {
|
|
|
129669
130628
|
jiraBoard?: Maybe<JiraBoardResult>;
|
|
129670
130629
|
jiraBulkTransitionsScreenDetails?: Maybe<JiraBulkTransitionScreenLayout>;
|
|
129671
130630
|
jiraCalendar?: Maybe<JiraCalendar>;
|
|
130631
|
+
jiraCaseManagementProjectSettings?: Maybe<JiraCaseManagementProjectSettings>;
|
|
129672
130632
|
jiraCustomerOrganizationsByUUIDs?: Maybe<JiraServiceManagementOrganizationConnection>;
|
|
129673
130633
|
jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
|
|
129674
130634
|
jiraFieldConfigs?: Maybe<JiraFieldConfigConnection>;
|
|
@@ -129695,6 +130655,8 @@ export declare type JiraQuery = {
|
|
|
129695
130655
|
jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
|
|
129696
130656
|
jpdGlobalViewFields?: Maybe<JiraPolarisGlobalViewFields>;
|
|
129697
130657
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
130658
|
+
jsmCustomerWidget?: Maybe<JiraServiceManagementCustomerWidget>;
|
|
130659
|
+
jsmEmails?: Maybe<JiraServiceManagementEmailsConnection>;
|
|
129698
130660
|
jsmPortal?: Maybe<JiraServiceManagementPortal>;
|
|
129699
130661
|
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
129700
130662
|
jsmWorkflowTemplates?: Maybe<JiraServiceManagementWorkflowTemplatesMetadataConnection>;
|
|
@@ -129731,7 +130693,6 @@ export declare type JiraQuery = {
|
|
|
129731
130693
|
opsgenieBaseUrl?: Maybe<Scalars['URL']['output']>;
|
|
129732
130694
|
outgoingMailConfig?: Maybe<JiraOutgoingMailConfigResponse>;
|
|
129733
130695
|
permission?: Maybe<JiraPermission>;
|
|
129734
|
-
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
129735
130696
|
planById?: Maybe<JiraPlan>;
|
|
129736
130697
|
postIncidentReviewLinksByIds?: Maybe<Array<Maybe<JiraPostIncidentReviewLink>>>;
|
|
129737
130698
|
projectCleanupLogTableEntries?: Maybe<JiraProjectCleanupLogTableEntryConnection>;
|
|
@@ -129783,7 +130744,6 @@ export declare type JiraQuery = {
|
|
|
129783
130744
|
suggestedFormulaFieldExpression?: Maybe<JiraFormulaFieldSuggestedExpressionResult>;
|
|
129784
130745
|
suggestedRequestTypes?: Maybe<JiraServiceManagementRequestTypeConnection>;
|
|
129785
130746
|
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
129786
|
-
timeTrackingSettings?: Maybe<JiraGlobalTimeTrackingSettings>;
|
|
129787
130747
|
uiModifications?: Maybe<Array<JiraAppUiModifications>>;
|
|
129788
130748
|
userHomePage?: Maybe<JiraHomePage>;
|
|
129789
130749
|
userNavigationConfiguration?: Maybe<JiraUserNavigationConfiguration>;
|
|
@@ -130426,6 +131386,10 @@ export declare type JiraQueryJiraCalendarArgs = {
|
|
|
130426
131386
|
input?: InputMaybe<JiraCalendarInput>;
|
|
130427
131387
|
scope?: InputMaybe<JiraViewScopeInput>;
|
|
130428
131388
|
};
|
|
131389
|
+
export declare type JiraQueryJiraCaseManagementProjectSettingsArgs = {
|
|
131390
|
+
cloudId: Scalars['ID']['input'];
|
|
131391
|
+
projectKey: Scalars['String']['input'];
|
|
131392
|
+
};
|
|
130429
131393
|
export declare type JiraQueryJiraCustomerOrganizationsByUuiDsArgs = {
|
|
130430
131394
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
130431
131395
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -130575,6 +131539,16 @@ export declare type JiraQueryJpdGlobalViewFieldsArgs = {
|
|
|
130575
131539
|
export declare type JiraQueryJqlBuilderArgs = {
|
|
130576
131540
|
cloudId: Scalars['ID']['input'];
|
|
130577
131541
|
};
|
|
131542
|
+
export declare type JiraQueryJsmCustomerWidgetArgs = {
|
|
131543
|
+
cloudId: Scalars['ID']['input'];
|
|
131544
|
+
projectId: Scalars['ID']['input'];
|
|
131545
|
+
};
|
|
131546
|
+
export declare type JiraQueryJsmEmailsArgs = {
|
|
131547
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
131548
|
+
cloudId: Scalars['ID']['input'];
|
|
131549
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131550
|
+
projectKey: Scalars['String']['input'];
|
|
131551
|
+
};
|
|
130578
131552
|
export declare type JiraQueryJsmPortalArgs = {
|
|
130579
131553
|
cloudId: Scalars['ID']['input'];
|
|
130580
131554
|
projectId: Scalars['Long']['input'];
|
|
@@ -130704,7 +131678,9 @@ export declare type JiraQueryLinkedWorkItemsArgs = {
|
|
|
130704
131678
|
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
|
|
130705
131679
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
130706
131680
|
hideIdeaLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
131681
|
+
isInitialLoadQuery?: InputMaybe<Scalars['Boolean']['input']>;
|
|
130707
131682
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
131683
|
+
maxRowsToReturn?: InputMaybe<Scalars['Int']['input']>;
|
|
130708
131684
|
shouldIncludeRemoteIssues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
130709
131685
|
sortInput?: InputMaybe<JiraLinkedWorkItemsSortInput>;
|
|
130710
131686
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
@@ -130746,14 +131722,6 @@ export declare type JiraQueryPermissionArgs = {
|
|
|
130746
131722
|
cloudId: Scalars['ID']['input'];
|
|
130747
131723
|
type: JiraPermissionType;
|
|
130748
131724
|
};
|
|
130749
|
-
export declare type JiraQueryPermissionSchemeGrantsArgs = {
|
|
130750
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
130751
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
130752
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
130753
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
130754
|
-
permissionKey?: InputMaybe<Scalars['String']['input']>;
|
|
130755
|
-
schemeId: Scalars['ID']['input'];
|
|
130756
|
-
};
|
|
130757
131725
|
export declare type JiraQueryPlanByIdArgs = {
|
|
130758
131726
|
id: Scalars['ID']['input'];
|
|
130759
131727
|
};
|
|
@@ -131024,9 +131992,6 @@ export declare type JiraQuerySystemFiltersArgs = {
|
|
|
131024
131992
|
isFavourite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
131025
131993
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
131026
131994
|
};
|
|
131027
|
-
export declare type JiraQueryTimeTrackingSettingsArgs = {
|
|
131028
|
-
cloudId: Scalars['ID']['input'];
|
|
131029
|
-
};
|
|
131030
131995
|
export declare type JiraQueryUiModificationsArgs = {
|
|
131031
131996
|
context: JiraUiModificationsContextInput;
|
|
131032
131997
|
};
|
|
@@ -131962,6 +132927,14 @@ export declare type JiraReportsPage = {
|
|
|
131962
132927
|
__typename?: 'JiraReportsPage';
|
|
131963
132928
|
categories?: Maybe<Array<Maybe<JiraReportCategory>>>;
|
|
131964
132929
|
};
|
|
132930
|
+
export declare type JiraResetAgentContextInput = {
|
|
132931
|
+
sourceAri: Scalars['ID']['input'];
|
|
132932
|
+
};
|
|
132933
|
+
export declare type JiraResetAgentContextPayload = {
|
|
132934
|
+
__typename?: 'JiraResetAgentContextPayload';
|
|
132935
|
+
errors?: Maybe<Array<MutationError>>;
|
|
132936
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
132937
|
+
};
|
|
131965
132938
|
export declare type JiraResetFaviconInput = {
|
|
131966
132939
|
cloudId: Scalars['ID']['input'];
|
|
131967
132940
|
};
|
|
@@ -132553,6 +133526,10 @@ export declare type JiraScmRepository = {
|
|
|
132553
133526
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
132554
133527
|
name?: Maybe<Scalars['String']['output']>;
|
|
132555
133528
|
};
|
|
133529
|
+
export declare type JiraScopedAgentContextInput = {
|
|
133530
|
+
projectByKey?: InputMaybe<JiraProjectIdentifier>;
|
|
133531
|
+
sourceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
133532
|
+
};
|
|
132556
133533
|
export declare type JiraScopedResetFieldsetsInput = {
|
|
132557
133534
|
context?: InputMaybe<JiraIssueSearchViewFieldSetsContext>;
|
|
132558
133535
|
doReset?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -132639,10 +133616,10 @@ export declare type JiraSearchableEntityEdge = {
|
|
|
132639
133616
|
};
|
|
132640
133617
|
export declare enum JiraSearchableEntityType {
|
|
132641
133618
|
Board = "BOARD",
|
|
132642
|
-
Collection = "COLLECTION",
|
|
132643
133619
|
Dashboard = "DASHBOARD",
|
|
132644
133620
|
Filter = "FILTER",
|
|
132645
133621
|
Issue = "ISSUE",
|
|
133622
|
+
JpdCollection = "JPD_COLLECTION",
|
|
132646
133623
|
Plan = "PLAN",
|
|
132647
133624
|
Project = "PROJECT",
|
|
132648
133625
|
Queue = "QUEUE"
|
|
@@ -133113,6 +134090,10 @@ export declare enum JiraServiceManagementCreateRequestTypeFromTemplateWorkflowIn
|
|
|
133113
134090
|
export declare type JiraServiceManagementCreateRequestTypeFromTemplateWorkflowIssueTypeReferenceInput = {
|
|
133114
134091
|
workflowIssueTypeId: Scalars['ID']['input'];
|
|
133115
134092
|
};
|
|
134093
|
+
export declare type JiraServiceManagementCustomerWidget = {
|
|
134094
|
+
__typename?: 'JiraServiceManagementCustomerWidget';
|
|
134095
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
134096
|
+
};
|
|
133116
134097
|
export declare type JiraServiceManagementDatePreviewField = JiraServiceManagementRequestTypeFieldCommon & {
|
|
133117
134098
|
__typename?: 'JiraServiceManagementDatePreviewField';
|
|
133118
134099
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -133174,6 +134155,22 @@ export declare type JiraServiceManagementDueDatePreviewField = JiraServiceManage
|
|
|
133174
134155
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
133175
134156
|
type?: Maybe<Scalars['String']['output']>;
|
|
133176
134157
|
};
|
|
134158
|
+
export declare type JiraServiceManagementEmail = {
|
|
134159
|
+
__typename?: 'JiraServiceManagementEmail';
|
|
134160
|
+
address?: Maybe<Scalars['String']['output']>;
|
|
134161
|
+
emailId?: Maybe<Scalars['String']['output']>;
|
|
134162
|
+
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
134163
|
+
};
|
|
134164
|
+
export declare type JiraServiceManagementEmailEdge = {
|
|
134165
|
+
__typename?: 'JiraServiceManagementEmailEdge';
|
|
134166
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
134167
|
+
node?: Maybe<JiraServiceManagementEmail>;
|
|
134168
|
+
};
|
|
134169
|
+
export declare type JiraServiceManagementEmailsConnection = {
|
|
134170
|
+
__typename?: 'JiraServiceManagementEmailsConnection';
|
|
134171
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementEmailEdge>>>;
|
|
134172
|
+
pageInfo?: Maybe<PageInfo>;
|
|
134173
|
+
};
|
|
133177
134174
|
export declare type JiraServiceManagementEntitledEntity = JiraServiceManagementEntitlementCustomer | JiraServiceManagementEntitlementOrganization;
|
|
133178
134175
|
export declare type JiraServiceManagementEntitlement = Node & {
|
|
133179
134176
|
__typename?: 'JiraServiceManagementEntitlement';
|
|
@@ -136035,6 +137032,7 @@ export declare type JiraTeamView = {
|
|
|
136035
137032
|
jiraIncludesYou?: Maybe<Scalars['Boolean']['output']>;
|
|
136036
137033
|
jiraMemberCount?: Maybe<Scalars['Int']['output']>;
|
|
136037
137034
|
jiraSuppliedAvatar?: Maybe<JiraAvatar>;
|
|
137035
|
+
jiraSuppliedDescription?: Maybe<Scalars['String']['output']>;
|
|
136038
137036
|
jiraSuppliedId: Scalars['ID']['output'];
|
|
136039
137037
|
jiraSuppliedIsVerified?: Maybe<Scalars['Boolean']['output']>;
|
|
136040
137038
|
jiraSuppliedName?: Maybe<Scalars['String']['output']>;
|
|
@@ -136453,6 +137451,7 @@ export declare type JiraTrackRecentProjectPayload = Payload & {
|
|
|
136453
137451
|
};
|
|
136454
137452
|
export declare type JiraTransition = Node & {
|
|
136455
137453
|
__typename?: 'JiraTransition';
|
|
137454
|
+
agentRules?: Maybe<Array<JiraTransitionAgentRule>>;
|
|
136456
137455
|
from?: Maybe<Array<JiraStatus>>;
|
|
136457
137456
|
hasPreConditions?: Maybe<Scalars['Boolean']['output']>;
|
|
136458
137457
|
hasScreen?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -136470,6 +137469,11 @@ export declare type JiraTransitionAgent = {
|
|
|
136470
137469
|
accountId: Scalars['ID']['output'];
|
|
136471
137470
|
agent?: Maybe<User>;
|
|
136472
137471
|
};
|
|
137472
|
+
export declare type JiraTransitionAgentRule = {
|
|
137473
|
+
__typename?: 'JiraTransitionAgentRule';
|
|
137474
|
+
agent: JiraTransitionAgent;
|
|
137475
|
+
promptValue?: Maybe<Scalars['String']['output']>;
|
|
137476
|
+
};
|
|
136473
137477
|
export declare type JiraTransitionConnection = {
|
|
136474
137478
|
__typename?: 'JiraTransitionConnection';
|
|
136475
137479
|
edges?: Maybe<Array<Maybe<JiraTransitionEdge>>>;
|
|
@@ -136615,6 +137619,25 @@ export declare type JiraUpdateBackgroundInput = {
|
|
|
136615
137619
|
dominantColor?: InputMaybe<Scalars['String']['input']>;
|
|
136616
137620
|
entityId: Scalars['ID']['input'];
|
|
136617
137621
|
};
|
|
137622
|
+
export declare type JiraUpdateBoardViewStatusColumnAgentInput = {
|
|
137623
|
+
agentAccountId: Scalars['ID']['input'];
|
|
137624
|
+
agentPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
137625
|
+
columnId: Scalars['ID']['input'];
|
|
137626
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
137627
|
+
transitionsToAdd?: InputMaybe<Array<JiraUpdateBoardViewStatusColumnAgentTransitionInput>>;
|
|
137628
|
+
transitionsToRemove?: InputMaybe<Array<JiraUpdateBoardViewStatusColumnAgentTransitionInput>>;
|
|
137629
|
+
};
|
|
137630
|
+
export declare type JiraUpdateBoardViewStatusColumnAgentPayload = {
|
|
137631
|
+
__typename?: 'JiraUpdateBoardViewStatusColumnAgentPayload';
|
|
137632
|
+
boardView?: Maybe<JiraBoardView>;
|
|
137633
|
+
column?: Maybe<JiraBoardViewStatusColumn>;
|
|
137634
|
+
errors?: Maybe<Array<MutationError>>;
|
|
137635
|
+
success: Scalars['Boolean']['output'];
|
|
137636
|
+
};
|
|
137637
|
+
export declare type JiraUpdateBoardViewStatusColumnAgentTransitionInput = {
|
|
137638
|
+
transitionId: Scalars['ID']['input'];
|
|
137639
|
+
workflowId: Scalars['ID']['input'];
|
|
137640
|
+
};
|
|
136618
137641
|
export declare type JiraUpdateCalendarViewConfigInput = {
|
|
136619
137642
|
overrides?: InputMaybe<JiraCalendarViewSettings>;
|
|
136620
137643
|
settings?: InputMaybe<JiraCalendarViewSettings>;
|
|
@@ -139614,6 +140637,7 @@ export declare type JsmChannelsConditionNode = JsmChannelsPlanNode & {
|
|
|
139614
140637
|
nodeType: JsmChannelsPlanNodeType;
|
|
139615
140638
|
};
|
|
139616
140639
|
export declare enum JsmChannelsConnectionType {
|
|
140640
|
+
Entra = "ENTRA",
|
|
139617
140641
|
Identitynow = "IDENTITYNOW",
|
|
139618
140642
|
Intune = "INTUNE",
|
|
139619
140643
|
Okta = "OKTA",
|
|
@@ -139718,6 +140742,12 @@ export declare type JsmChannelsJqlEnablementRuleInput = {
|
|
|
139718
140742
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
139719
140743
|
priority: Scalars['Int']['input'];
|
|
139720
140744
|
};
|
|
140745
|
+
export declare type JsmChannelsMsEntraTaskAgentConfiguration = {
|
|
140746
|
+
__typename?: 'JsmChannelsMsEntraTaskAgentConfiguration';
|
|
140747
|
+
accountId: Scalars['String']['output'];
|
|
140748
|
+
serviceKey: Scalars['String']['output'];
|
|
140749
|
+
tenantId: Scalars['String']['output'];
|
|
140750
|
+
};
|
|
139721
140751
|
export declare type JsmChannelsMsIntuneTaskAgentConfiguration = {
|
|
139722
140752
|
__typename?: 'JsmChannelsMsIntuneTaskAgentConfiguration';
|
|
139723
140753
|
accountId: Scalars['String']['output'];
|
|
@@ -139989,7 +141019,7 @@ export declare type JsmChannelsTaskAgent = {
|
|
|
139989
141019
|
displayName: Scalars['String']['output'];
|
|
139990
141020
|
status: JsmChannelsTaskAgentStatus;
|
|
139991
141021
|
};
|
|
139992
|
-
export declare type JsmChannelsTaskAgentConfigurationDetails = JsmChannelsIdentityNowTaskAgentConfiguration | JsmChannelsMsIntuneTaskAgentConfiguration | JsmChannelsOktaTaskAgentConfiguration | JsmChannelsSalesforceTaskAgentConfiguration;
|
|
141022
|
+
export declare type JsmChannelsTaskAgentConfigurationDetails = JsmChannelsIdentityNowTaskAgentConfiguration | JsmChannelsMsEntraTaskAgentConfiguration | JsmChannelsMsIntuneTaskAgentConfiguration | JsmChannelsOktaTaskAgentConfiguration | JsmChannelsSalesforceTaskAgentConfiguration;
|
|
139993
141023
|
export declare type JsmChannelsTaskAgentConfigurationInput = {
|
|
139994
141024
|
configuration?: InputMaybe<Scalars['JSON']['input']>;
|
|
139995
141025
|
status: JsmChannelsTaskAgentStatus;
|
|
@@ -141131,6 +142161,7 @@ export declare type KitsuneChunk = Node & {
|
|
|
141131
142161
|
content?: Maybe<Scalars['String']['output']>;
|
|
141132
142162
|
feedbackId: Scalars['ID']['output'];
|
|
141133
142163
|
id: Scalars['ID']['output'];
|
|
142164
|
+
index: Scalars['Int']['output'];
|
|
141134
142165
|
};
|
|
141135
142166
|
export declare type KitsuneChunkConnection = KitsuneConnection & {
|
|
141136
142167
|
__typename?: 'KitsuneChunkConnection';
|
|
@@ -141204,6 +142235,11 @@ export declare type KitsuneCustomerNode = {
|
|
|
141204
142235
|
customer?: Maybe<CustomerServiceCsmCustomer>;
|
|
141205
142236
|
customerId: Scalars['ID']['output'];
|
|
141206
142237
|
};
|
|
142238
|
+
export declare type KitsuneCustomersRollup = {
|
|
142239
|
+
__typename?: 'KitsuneCustomersRollup';
|
|
142240
|
+
customers: KitsuneCustomerConnection;
|
|
142241
|
+
organizations: KitsuneOrganizationConnection;
|
|
142242
|
+
};
|
|
141207
142243
|
export declare type KitsuneDateRangeInput = {
|
|
141208
142244
|
fromDate: Scalars['DateTime']['input'];
|
|
141209
142245
|
toDate: Scalars['DateTime']['input'];
|
|
@@ -141317,6 +142353,7 @@ export declare type KitsuneField = Node & {
|
|
|
141317
142353
|
entityTypes: Array<KitsuneEntityType>;
|
|
141318
142354
|
id: Scalars['ID']['output'];
|
|
141319
142355
|
name: Scalars['String']['output'];
|
|
142356
|
+
options: Array<KitsuneFieldValue>;
|
|
141320
142357
|
type: KitsuneFieldType;
|
|
141321
142358
|
valueType?: Maybe<KitsuneFieldValueType>;
|
|
141322
142359
|
};
|
|
@@ -141343,6 +142380,7 @@ export declare enum KitsuneFieldType {
|
|
|
141343
142380
|
export declare type KitsuneFieldValue = {
|
|
141344
142381
|
__typename?: 'KitsuneFieldValue';
|
|
141345
142382
|
_id: Scalars['ID']['output'];
|
|
142383
|
+
name: Scalars['String']['output'];
|
|
141346
142384
|
};
|
|
141347
142385
|
export declare enum KitsuneFieldValueType {
|
|
141348
142386
|
Boolean = "BOOLEAN",
|
|
@@ -141489,6 +142527,10 @@ export declare type KitsuneRankInput = {
|
|
|
141489
142527
|
after?: InputMaybe<Scalars['ID']['input']>;
|
|
141490
142528
|
before?: InputMaybe<Scalars['ID']['input']>;
|
|
141491
142529
|
};
|
|
142530
|
+
export declare type KitsuneRollupInput = {
|
|
142531
|
+
externalId?: InputMaybe<Scalars['ID']['input']>;
|
|
142532
|
+
insightAri?: InputMaybe<Scalars['ID']['input']>;
|
|
142533
|
+
};
|
|
141492
142534
|
export declare type KitsuneSearchChunk = {
|
|
141493
142535
|
__typename?: 'KitsuneSearchChunk';
|
|
141494
142536
|
chunks: Array<KitsuneChunk>;
|
|
@@ -141880,10 +142922,6 @@ export declare enum KitsuneViewType {
|
|
|
141880
142922
|
List = "LIST",
|
|
141881
142923
|
Table = "TABLE"
|
|
141882
142924
|
}
|
|
141883
|
-
export declare type KitsuneWorkspaceIdentifierInput = {
|
|
141884
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
141885
|
-
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
141886
|
-
};
|
|
141887
142925
|
export declare type KnowledgeBaseAccessibleLinkedSourceResult = {
|
|
141888
142926
|
__typename?: 'KnowledgeBaseAccessibleLinkedSourceResult';
|
|
141889
142927
|
sourceARI?: Maybe<Scalars['ID']['output']>;
|
|
@@ -144089,6 +145127,33 @@ export declare type LoomWorkspace = Node & {
|
|
|
144089
145127
|
name?: Maybe<Scalars['String']['output']>;
|
|
144090
145128
|
type: Scalars['String']['output'];
|
|
144091
145129
|
};
|
|
145130
|
+
export declare type LoopComment = {
|
|
145131
|
+
commentText?: Maybe<Scalars['String']['output']>;
|
|
145132
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
145133
|
+
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
145134
|
+
creator?: Maybe<User>;
|
|
145135
|
+
editDate?: Maybe<Scalars['DateTime']['output']>;
|
|
145136
|
+
id: Scalars['ID']['output'];
|
|
145137
|
+
parentComment?: Maybe<LoopComment>;
|
|
145138
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
145139
|
+
replies?: Maybe<LoopCommentConnection>;
|
|
145140
|
+
};
|
|
145141
|
+
export declare type LoopCommentRepliesArgs = {
|
|
145142
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
145143
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
145144
|
+
sort?: InputMaybe<Scalars['String']['input']>;
|
|
145145
|
+
};
|
|
145146
|
+
export declare type LoopCommentConnection = {
|
|
145147
|
+
__typename?: 'LoopCommentConnection';
|
|
145148
|
+
edges?: Maybe<Array<LoopCommentEdge>>;
|
|
145149
|
+
pageInfo: PageInfo;
|
|
145150
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
145151
|
+
};
|
|
145152
|
+
export declare type LoopCommentEdge = {
|
|
145153
|
+
__typename?: 'LoopCommentEdge';
|
|
145154
|
+
cursor: Scalars['String']['output'];
|
|
145155
|
+
node?: Maybe<LoopComment>;
|
|
145156
|
+
};
|
|
144092
145157
|
export declare type LpCertSort = {
|
|
144093
145158
|
sortDirection?: InputMaybe<SortDirection>;
|
|
144094
145159
|
sortField?: InputMaybe<LpCertSortField>;
|
|
@@ -144346,6 +145411,7 @@ export declare type MarketplaceApp = {
|
|
|
144346
145411
|
partnerId: Scalars['ID']['output'];
|
|
144347
145412
|
privacyPolicyUrl?: Maybe<Scalars['URL']['output']>;
|
|
144348
145413
|
productHostingOptions: Array<AtlassianProductHostingType>;
|
|
145414
|
+
productId?: Maybe<Scalars['ID']['output']>;
|
|
144349
145415
|
programs?: Maybe<MarketplaceAppPrograms>;
|
|
144350
145416
|
reviewSummary?: Maybe<MarketplaceAppReviewSummary>;
|
|
144351
145417
|
segmentWriteKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -146615,7 +147681,9 @@ export declare type MarketplaceStoreActiveApp = {
|
|
|
146615
147681
|
};
|
|
146616
147682
|
export declare type MarketplaceStoreActiveParentProduct = {
|
|
146617
147683
|
__typename?: 'MarketplaceStoreActiveParentProduct';
|
|
147684
|
+
billingPeriod?: Maybe<Scalars['String']['output']>;
|
|
146618
147685
|
parentProductKey: Scalars['String']['output'];
|
|
147686
|
+
userCount?: Maybe<Scalars['Int']['output']>;
|
|
146619
147687
|
};
|
|
146620
147688
|
export declare type MarketplaceStoreAlgoliaFilter = {
|
|
146621
147689
|
__typename?: 'MarketplaceStoreAlgoliaFilter';
|
|
@@ -147409,6 +148477,7 @@ export declare type MarketplaceStoreLayoutRegularSection = MarketplaceStoreLayou
|
|
|
147409
148477
|
objectsFetchCount?: Maybe<Scalars['Int']['output']>;
|
|
147410
148478
|
rightImageUrl?: Maybe<MarketplaceStoreImageUrlVariants>;
|
|
147411
148479
|
searchMetadata?: Maybe<MarketplaceStoreSearchMetadata>;
|
|
148480
|
+
sectionMetadata?: Maybe<MarketplaceStoreRecommendationsMetadata>;
|
|
147412
148481
|
title: Scalars['String']['output'];
|
|
147413
148482
|
type: MarketplaceStoreLayoutSectionType;
|
|
147414
148483
|
widgets?: Maybe<Array<Maybe<MarketplaceStoreLayoutWidget>>>;
|
|
@@ -147804,6 +148873,7 @@ export declare type MarketplaceStoreProduct = {
|
|
|
147804
148873
|
export declare type MarketplaceStoreProductDetailsByCloudIdResponse = {
|
|
147805
148874
|
__typename?: 'MarketplaceStoreProductDetailsByCloudIdResponse';
|
|
147806
148875
|
activeApps: Array<MarketplaceStoreActiveApp>;
|
|
148876
|
+
activeParentProducts: Array<MarketplaceStoreActiveParentProduct>;
|
|
147807
148877
|
cloudId: Scalars['String']['output'];
|
|
147808
148878
|
};
|
|
147809
148879
|
export declare type MarketplaceStoreProductListing = {
|
|
@@ -147884,6 +148954,7 @@ export declare enum MarketplaceStoreProductTagType {
|
|
|
147884
148954
|
Keywords = "KEYWORDS"
|
|
147885
148955
|
}
|
|
147886
148956
|
export declare enum MarketplaceStoreProductType {
|
|
148957
|
+
Chat = "CHAT",
|
|
147887
148958
|
Compass = "COMPASS",
|
|
147888
148959
|
Confluence = "CONFLUENCE",
|
|
147889
148960
|
Goal = "GOAL",
|
|
@@ -148536,7 +149607,7 @@ export declare type MenusLookAndFeel = {
|
|
|
148536
149607
|
color?: Maybe<Scalars['String']['output']>;
|
|
148537
149608
|
hoverOrFocus?: Maybe<Array<Maybe<MapOfStringToString>>>;
|
|
148538
149609
|
};
|
|
148539
|
-
export declare type MercuryActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraIssue | TownsquareGoal | TownsquareProject;
|
|
149610
|
+
export declare type MercuryActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraAlignAggProject | JiraIssue | TownsquareGoal | TownsquareProject;
|
|
148540
149611
|
export declare enum MercuryActivityHistoryUpdatedFieldKind {
|
|
148541
149612
|
Custom = "CUSTOM",
|
|
148542
149613
|
Managed = "MANAGED",
|
|
@@ -148951,7 +150022,7 @@ export declare type MercuryChangeProposalActivityHistoryConnection = {
|
|
|
148951
150022
|
pageInfo: PageInfo;
|
|
148952
150023
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
148953
150024
|
};
|
|
148954
|
-
export declare type MercuryChangeProposalActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser;
|
|
150025
|
+
export declare type MercuryChangeProposalActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraAlignAggProject | JiraIssue | MercuryFocusArea | TownsquareGoal | TownsquareProject | TownsquareTag;
|
|
148955
150026
|
export declare type MercuryChangeProposalActivityHistoryEdge = {
|
|
148956
150027
|
__typename?: 'MercuryChangeProposalActivityHistoryEdge';
|
|
148957
150028
|
cursor: Scalars['String']['output'];
|
|
@@ -149016,6 +150087,7 @@ export declare enum MercuryChangeProposalField {
|
|
|
149016
150087
|
FocusArea = "FOCUS_AREA",
|
|
149017
150088
|
Impact = "IMPACT",
|
|
149018
150089
|
LinkedGoal = "LINKED_GOAL",
|
|
150090
|
+
LinkedTag = "LINKED_TAG",
|
|
149019
150091
|
LinkedWork = "LINKED_WORK",
|
|
149020
150092
|
Name = "NAME",
|
|
149021
150093
|
Owner = "OWNER",
|
|
@@ -150514,6 +151586,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
150514
151586
|
owner?: Maybe<User>;
|
|
150515
151587
|
parent?: Maybe<MercuryFocusArea>;
|
|
150516
151588
|
path?: Maybe<Array<Scalars['String']['output']>>;
|
|
151589
|
+
ranks?: Maybe<MercuryFocusAreaRankConnection>;
|
|
150517
151590
|
starred?: Maybe<Scalars['Boolean']['output']>;
|
|
150518
151591
|
status: MercuryFocusAreaStatus;
|
|
150519
151592
|
statusTransitions: MercuryFocusAreaStatusTransitions;
|
|
@@ -150558,6 +151631,9 @@ export declare type MercuryFocusAreaLinkedGoalsArgs = {
|
|
|
150558
151631
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
150559
151632
|
sort?: InputMaybe<GraphStoreFocusAreaHasAtlasGoalSortInput>;
|
|
150560
151633
|
};
|
|
151634
|
+
export declare type MercuryFocusAreaRanksArgs = {
|
|
151635
|
+
containerFilters: Array<MercuryFocusAreaContainerFilter>;
|
|
151636
|
+
};
|
|
150561
151637
|
export declare type MercuryFocusAreaSubFocusAreasArgs = {
|
|
150562
151638
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
150563
151639
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -150657,6 +151733,10 @@ export declare type MercuryFocusAreaConnection = {
|
|
|
150657
151733
|
pageInfo: PageInfo;
|
|
150658
151734
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
150659
151735
|
};
|
|
151736
|
+
export declare type MercuryFocusAreaContainerFilter = {
|
|
151737
|
+
containerId?: InputMaybe<Scalars['ID']['input']>;
|
|
151738
|
+
containerType: MercuryRankingContainerType;
|
|
151739
|
+
};
|
|
150660
151740
|
export declare type MercuryFocusAreaCostSummary = {
|
|
150661
151741
|
__typename?: 'MercuryFocusAreaCostSummary';
|
|
150662
151742
|
estimateAtCompletion?: Maybe<MercuryEstimateCostAtCompletion>;
|
|
@@ -150825,6 +151905,7 @@ export declare enum MercuryFocusAreaPermission {
|
|
|
150825
151905
|
DeleteUpdate = "DELETE_UPDATE",
|
|
150826
151906
|
DeleteWorkLink = "DELETE_WORK_LINK",
|
|
150827
151907
|
EditAbout = "EDIT_ABOUT",
|
|
151908
|
+
EditCustomField = "EDIT_CUSTOM_FIELD",
|
|
150828
151909
|
EditName = "EDIT_NAME",
|
|
150829
151910
|
EditOwner = "EDIT_OWNER",
|
|
150830
151911
|
EditType = "EDIT_TYPE",
|
|
@@ -150841,6 +151922,24 @@ export declare type MercuryFocusAreaPositionChangeSummary = {
|
|
|
150841
151922
|
newCount?: Maybe<Scalars['Int']['output']>;
|
|
150842
151923
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
150843
151924
|
};
|
|
151925
|
+
export declare type MercuryFocusAreaRank = {
|
|
151926
|
+
__typename?: 'MercuryFocusAreaRank';
|
|
151927
|
+
containerId: Scalars['ID']['output'];
|
|
151928
|
+
containerType: MercuryRankingContainerType;
|
|
151929
|
+
groupType: MercuryRankingGroupType;
|
|
151930
|
+
rank?: Maybe<Scalars['Int']['output']>;
|
|
151931
|
+
};
|
|
151932
|
+
export declare type MercuryFocusAreaRankConnection = {
|
|
151933
|
+
__typename?: 'MercuryFocusAreaRankConnection';
|
|
151934
|
+
edges?: Maybe<Array<MercuryFocusAreaRankEdge>>;
|
|
151935
|
+
pageInfo: PageInfo;
|
|
151936
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
151937
|
+
};
|
|
151938
|
+
export declare type MercuryFocusAreaRankEdge = {
|
|
151939
|
+
__typename?: 'MercuryFocusAreaRankEdge';
|
|
151940
|
+
cursor: Scalars['String']['output'];
|
|
151941
|
+
node?: Maybe<MercuryFocusAreaRank>;
|
|
151942
|
+
};
|
|
150844
151943
|
export declare type MercuryFocusAreaRankingValidation = {
|
|
150845
151944
|
__typename?: 'MercuryFocusAreaRankingValidation';
|
|
150846
151945
|
isValid: Scalars['Boolean']['output'];
|
|
@@ -153035,6 +154134,7 @@ export declare type MercuryOrganizationsQueryApi = {
|
|
|
153035
154134
|
__typename?: 'MercuryOrganizationsQueryApi';
|
|
153036
154135
|
aiOrganizationListSummary?: Maybe<MercuryOrganizationListSummary>;
|
|
153037
154136
|
aiOrganizationSummary?: Maybe<MercuryOrganizationSummary>;
|
|
154137
|
+
isUserMemberOfOrganization?: Maybe<Scalars['Boolean']['output']>;
|
|
153038
154138
|
organization?: Maybe<MercuryOrganization>;
|
|
153039
154139
|
organizationCustomFieldDefinitionsSearch?: Maybe<MercuryCustomFieldDefinitionConnection>;
|
|
153040
154140
|
organizationHierarchies?: Maybe<Array<MercuryOrganizationHierarchy>>;
|
|
@@ -153066,6 +154166,10 @@ export declare type MercuryOrganizationsQueryApiAiOrganizationSummaryArgs = {
|
|
|
153066
154166
|
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
153067
154167
|
summaryType?: InputMaybe<MercuryOrganizationSummaryType>;
|
|
153068
154168
|
};
|
|
154169
|
+
export declare type MercuryOrganizationsQueryApiIsUserMemberOfOrganizationArgs = {
|
|
154170
|
+
organizationId: Scalars['ID']['input'];
|
|
154171
|
+
userId: Scalars['ID']['input'];
|
|
154172
|
+
};
|
|
153069
154173
|
export declare type MercuryOrganizationsQueryApiOrganizationArgs = {
|
|
153070
154174
|
id: Scalars['ID']['input'];
|
|
153071
154175
|
};
|
|
@@ -153173,6 +154277,7 @@ export declare enum MercuryPermission {
|
|
|
153173
154277
|
DeleteRisk = "DELETE_RISK",
|
|
153174
154278
|
DeleteStrategicEvent = "DELETE_STRATEGIC_EVENT",
|
|
153175
154279
|
EditFocusAreaAbout = "EDIT_FOCUS_AREA_ABOUT",
|
|
154280
|
+
EditFocusAreaCustomField = "EDIT_FOCUS_AREA_CUSTOM_FIELD",
|
|
153176
154281
|
EditFocusAreaName = "EDIT_FOCUS_AREA_NAME",
|
|
153177
154282
|
EditFocusAreaOwner = "EDIT_FOCUS_AREA_OWNER",
|
|
153178
154283
|
EditFocusAreaType = "EDIT_FOCUS_AREA_TYPE",
|
|
@@ -153678,6 +154783,7 @@ export declare type MercuryQueryApi = {
|
|
|
153678
154783
|
commentsByAris?: Maybe<Array<Maybe<MercuryComment>>>;
|
|
153679
154784
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
153680
154785
|
focusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
154786
|
+
focusAreaActivityHistoryByIds?: Maybe<Array<Maybe<MercuryFocusAreaActivityHistory>>>;
|
|
153681
154787
|
focusAreaAsks?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
153682
154788
|
focusAreaCustomFieldDefinitionsSearch?: Maybe<MercuryCustomFieldDefinitionConnection>;
|
|
153683
154789
|
focusAreaHierarchies?: Maybe<Array<MercuryFocusAreaHierarchy>>;
|
|
@@ -153751,6 +154857,9 @@ export declare type MercuryQueryApiFocusAreaActivityHistoryArgs = {
|
|
|
153751
154857
|
focusAreaId: Scalars['ID']['input'];
|
|
153752
154858
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaActivitySort>>>;
|
|
153753
154859
|
};
|
|
154860
|
+
export declare type MercuryQueryApiFocusAreaActivityHistoryByIdsArgs = {
|
|
154861
|
+
ids: Array<Scalars['ID']['input']>;
|
|
154862
|
+
};
|
|
153754
154863
|
export declare type MercuryQueryApiFocusAreaAsksArgs = {
|
|
153755
154864
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
153756
154865
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -154114,7 +155223,7 @@ export declare type MercuryRiskActivityHistoryConnection = {
|
|
|
154114
155223
|
pageInfo: PageInfo;
|
|
154115
155224
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
154116
155225
|
};
|
|
154117
|
-
export declare type MercuryRiskActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | MercuryFocusArea;
|
|
155226
|
+
export declare type MercuryRiskActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraAlignAggProject | MercuryFocusArea;
|
|
154118
155227
|
export declare type MercuryRiskActivityHistoryEdge = {
|
|
154119
155228
|
__typename?: 'MercuryRiskActivityHistoryEdge';
|
|
154120
155229
|
cursor: Scalars['String']['output'];
|
|
@@ -154138,7 +155247,9 @@ export declare enum MercuryRiskEventType {
|
|
|
154138
155247
|
Create = "CREATE",
|
|
154139
155248
|
Delete = "DELETE",
|
|
154140
155249
|
LinkFocusArea = "LINK_FOCUS_AREA",
|
|
155250
|
+
LinkImpactedWorkItem = "LINK_IMPACTED_WORK_ITEM",
|
|
154141
155251
|
UnlinkFocusArea = "UNLINK_FOCUS_AREA",
|
|
155252
|
+
UnlinkImpactedWorkItem = "UNLINK_IMPACTED_WORK_ITEM",
|
|
154142
155253
|
Update = "UPDATE"
|
|
154143
155254
|
}
|
|
154144
155255
|
export declare type MercuryRiskImpact = {
|
|
@@ -155945,6 +157056,7 @@ export declare type MercuryViewSort = {
|
|
|
155945
157056
|
order: SortOrder;
|
|
155946
157057
|
};
|
|
155947
157058
|
export declare enum MercuryViewSortField {
|
|
157059
|
+
CreatedDate = "CREATED_DATE",
|
|
155948
157060
|
Name = "NAME",
|
|
155949
157061
|
Rank = "RANK",
|
|
155950
157062
|
StarredDate = "STARRED_DATE",
|
|
@@ -156360,6 +157472,7 @@ export declare type Mutation = {
|
|
|
156360
157472
|
agentWorkspace_startBulkScheduleImportJob?: Maybe<AgentWorkspaceStartBulkImportPayload>;
|
|
156361
157473
|
agentWorkspace_startGenerateRoutingTable?: Maybe<AgentWorkspaceStartGenerateRoutingTablePayload>;
|
|
156362
157474
|
agentWorkspace_submitDraftedRoutingTable?: Maybe<AgentWorkspaceSubmitDraftedRoutingTablePayload>;
|
|
157475
|
+
agentWorkspace_unassignCoverShift?: Maybe<AgentWorkspaceUnassignCoverShiftPayload>;
|
|
156363
157476
|
agentWorkspace_updateRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
|
|
156364
157477
|
agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
|
|
156365
157478
|
agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkillUpdatePayload>;
|
|
@@ -156372,7 +157485,9 @@ export declare type Mutation = {
|
|
|
156372
157485
|
aiManagedObject_createAiManagedObject?: Maybe<AiManagedObject>;
|
|
156373
157486
|
aiManagedObject_createAiManagedObjectConfig?: Maybe<AiManagedObjectConfig>;
|
|
156374
157487
|
aiManagedObject_deleteAiManagedObject?: Maybe<Scalars['Boolean']['output']>;
|
|
157488
|
+
aiManagedObject_execute?: Maybe<AiManagedObjectExecutionResult>;
|
|
156375
157489
|
aiManagedObject_updateAiManagedObject?: Maybe<AiManagedObject>;
|
|
157490
|
+
aiops_terminateInvestigation?: Maybe<AiOpsInvestigation>;
|
|
156376
157491
|
aiops_triggerInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
|
|
156377
157492
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
156378
157493
|
appStorage?: Maybe<AppStorageMutation>;
|
|
@@ -156454,6 +157569,7 @@ export declare type Mutation = {
|
|
|
156454
157569
|
assetsVertical_createRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentsMutationPayload>;
|
|
156455
157570
|
assetsVertical_createVerticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationPayload>;
|
|
156456
157571
|
assetsVertical_createVerticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryPayload>;
|
|
157572
|
+
assetsVertical_createWorkbenchDashboard?: Maybe<AssetsVerticalWorkbenchDashboardPayload>;
|
|
156457
157573
|
assetsVertical_deleteAssetTypesTracking?: Maybe<AssetsVerticalAssetTypesTrackingPayload>;
|
|
156458
157574
|
assetsVertical_deleteCustomInsight?: Maybe<AssetsVerticalDeleteCustomInsightPayload>;
|
|
156459
157575
|
assetsVertical_deleteDepreciationRule?: Maybe<AssetsVerticalDepreciationRulePayload>;
|
|
@@ -156468,11 +157584,14 @@ export declare type Mutation = {
|
|
|
156468
157584
|
assetsVertical_updateRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentsMutationPayload>;
|
|
156469
157585
|
assetsVertical_updateVerticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationPayload>;
|
|
156470
157586
|
assetsVertical_updateVerticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryPayload>;
|
|
157587
|
+
assetsVertical_workbenchDashboardTryUpgrade?: Maybe<AssetsVerticalWorkbenchDashboardTryUpgradePayload>;
|
|
156471
157588
|
assets_addExternalReferenceTypeAttributeValue?: Maybe<Array<Maybe<AssetsExternalReferenceTypeAttributeOnObject>>>;
|
|
156472
157589
|
assets_deleteExternalReferenceTypeAttributeValue?: Maybe<Array<Maybe<AssetsExternalReferenceTypeAttributeOnObject>>>;
|
|
156473
157590
|
assets_updateObjectAttributeValue?: Maybe<AssetsAttributeOnObject>;
|
|
156474
157591
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
156475
157592
|
attachDanglingComment?: Maybe<Comment>;
|
|
157593
|
+
attributeStore_assignLabel?: Maybe<AttributeStoreLabelAssignment>;
|
|
157594
|
+
attributeStore_unassignLabel?: Maybe<Scalars['Boolean']['output']>;
|
|
156476
157595
|
avpPermissions_updateDashboardUserAccess?: Maybe<AvpPermissionsUpdateDashboardUserAccessPayload>;
|
|
156477
157596
|
avp_addDashboardElement?: Maybe<AvpAddDashboardElementPayload>;
|
|
156478
157597
|
avp_addDashboardRow?: Maybe<AvpAddDashboardRowPayload>;
|
|
@@ -156482,6 +157601,7 @@ export declare type Mutation = {
|
|
|
156482
157601
|
avp_copyChart?: Maybe<AvpCopyChartPayload>;
|
|
156483
157602
|
avp_copyDashboardRow?: Maybe<AvpCopyDashboardRowPayload>;
|
|
156484
157603
|
avp_createChart?: Maybe<AvpCreateChartPayload>;
|
|
157604
|
+
avp_createCharts?: Maybe<AvpCreateChartsPayload>;
|
|
156485
157605
|
avp_createDashboard?: Maybe<AvpCreateDashboardPayload>;
|
|
156486
157606
|
avp_createDashboardFilter?: Maybe<AvpCreateDashboardFilterPayload>;
|
|
156487
157607
|
avp_createDashboardFromTemplate?: Maybe<AvpCreateDashboardPayload>;
|
|
@@ -156645,6 +157765,7 @@ export declare type Mutation = {
|
|
|
156645
157765
|
confluence_publishDraftWithApprovalReviewTransfer?: Maybe<ConfluenceWorkflowApplicationPayload>;
|
|
156646
157766
|
confluence_refreshSmartSpaceOverview?: Maybe<ConfluenceUpdateSmartSpaceOverviewPayload>;
|
|
156647
157767
|
confluence_removeContentApprovalReviewer?: Maybe<ConfluenceContentApprovalPayload>;
|
|
157768
|
+
confluence_removeEnforcedReviewer?: Maybe<ConfluenceContentApprovalsSpaceSettingConfigPayload>;
|
|
156648
157769
|
confluence_removeInlineReaction?: Maybe<ConfluenceInlineReactionPayload>;
|
|
156649
157770
|
confluence_removeTrack?: Maybe<ConfluenceRemoveTrackPayload>;
|
|
156650
157771
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
@@ -157035,6 +158156,8 @@ export declare type Mutation = {
|
|
|
157035
158156
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
157036
158157
|
jiraOpenBeta_createFeature?: Maybe<JiraOpenBetaFeatureCreatePayload>;
|
|
157037
158158
|
jiraOpenBeta_updateFeature?: Maybe<JiraOpenBetaFeatureUpdatePayload>;
|
|
158159
|
+
jira_acceptAgentContextItem?: Maybe<JiraAcceptAgentContextItemPayload>;
|
|
158160
|
+
jira_addAgentContextItem?: Maybe<JiraAddAgentContextItemPayload>;
|
|
157038
158161
|
jira_addAgentToBoardViewStatusColumn?: Maybe<JiraAddAgentToBoardViewStatusColumnPayload>;
|
|
157039
158162
|
jira_addFieldsToFieldScheme?: Maybe<JiraAddFieldsToFieldSchemePayload>;
|
|
157040
158163
|
jira_addTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
|
|
@@ -157065,6 +158188,7 @@ export declare type Mutation = {
|
|
|
157065
158188
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
157066
158189
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
157067
158190
|
jira_discardUserTimelineViewConfig?: Maybe<JiraDiscardUserTimelineViewConfigPayload>;
|
|
158191
|
+
jira_dismissAgentContextItem?: Maybe<JiraDismissAgentContextItemPayload>;
|
|
157068
158192
|
jira_dismissAiAgentSession?: Maybe<JiraDismissAiAgentSessionPayload>;
|
|
157069
158193
|
jira_dragAndDropBoardViewIssue?: Maybe<JiraDragAndDropBoardViewIssuePayload>;
|
|
157070
158194
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
@@ -157085,6 +158209,7 @@ export declare type Mutation = {
|
|
|
157085
158209
|
jira_renameProjectLevelSidebarMenuItem?: Maybe<JiraRenameProjectLevelSidebarMenuItemPayload>;
|
|
157086
158210
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
157087
158211
|
jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
|
|
158212
|
+
jira_resetAgentContext?: Maybe<JiraResetAgentContextPayload>;
|
|
157088
158213
|
jira_resetFavicon?: Maybe<JiraResetFaviconPayload>;
|
|
157089
158214
|
jira_resetLogo?: Maybe<JiraResetLogoPayload>;
|
|
157090
158215
|
jira_restoreCustomFields?: Maybe<JiraRestoreCustomFieldsPayload>;
|
|
@@ -157155,6 +158280,7 @@ export declare type Mutation = {
|
|
|
157155
158280
|
jira_trashCustomFields?: Maybe<JiraTrashCustomFieldsPayload>;
|
|
157156
158281
|
jira_trashGlobalCustomFields?: Maybe<JiraTrashGlobalCustomFieldsPayload>;
|
|
157157
158282
|
jira_unarchiveIssue?: Maybe<JiraIssueUnarchivePayload>;
|
|
158283
|
+
jira_updateBoardViewStatusColumnAgent?: Maybe<JiraUpdateBoardViewStatusColumnAgentPayload>;
|
|
157158
158284
|
jira_updateCustomField?: Maybe<JiraUpdateCustomFieldPayload>;
|
|
157159
158285
|
jira_updateCustomFieldDefaultContextOptions?: Maybe<JiraUpdateCustomFieldDefaultContextOptionsPayload>;
|
|
157160
158286
|
jira_updateCustomFields?: Maybe<JiraUpdateCustomFieldsPayload>;
|
|
@@ -157224,6 +158350,7 @@ export declare type Mutation = {
|
|
|
157224
158350
|
kitsune_syncCustomerFields?: Maybe<KitsuneJob>;
|
|
157225
158351
|
kitsune_syncCustomers?: Maybe<KitsuneJob>;
|
|
157226
158352
|
kitsune_updateCustomer?: Maybe<KitsuneCustomer>;
|
|
158353
|
+
kitsune_updateCustomerField?: Maybe<KitsuneCustomerCustomField>;
|
|
157227
158354
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
157228
158355
|
kitsune_updateField?: Maybe<KitsuneField>;
|
|
157229
158356
|
kitsune_updateInsight?: Maybe<KitsuneInsight>;
|
|
@@ -157457,6 +158584,7 @@ export declare type Mutation = {
|
|
|
157457
158584
|
spf_deleteView?: Maybe<SpfDeleteViewPayload>;
|
|
157458
158585
|
spf_grantEntityPermission?: Maybe<SpfGrantEntityPermissionPayload>;
|
|
157459
158586
|
spf_prioritizePlanScenarioInvestment?: Maybe<SpfPrioritizePlanScenarioInvestmentPayload>;
|
|
158587
|
+
spf_promoteWorkItemToImpactedWork?: Maybe<SpfUpsertAskPayload>;
|
|
157460
158588
|
spf_rejectProposedDate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
157461
158589
|
spf_removeConnectedWork?: Maybe<SpfAskConnectedWorkPayload>;
|
|
157462
158590
|
spf_removePlanApprover?: Maybe<SpfRemovePlanApproverPayload>;
|
|
@@ -157540,7 +158668,10 @@ export declare type Mutation = {
|
|
|
157540
158668
|
startSprint?: Maybe<SprintResponse>;
|
|
157541
158669
|
studio_createDraftBuild?: Maybe<StudioCreateDraftBuildPayload>;
|
|
157542
158670
|
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
158671
|
+
tags_assignLabel?: Maybe<TagsLabelAssignment>;
|
|
158672
|
+
tags_createAndAssignLabel?: Maybe<TagsCreateAndAssignLabelResponse>;
|
|
157543
158673
|
tags_createTag?: Maybe<TagsResponse>;
|
|
158674
|
+
tags_unassignLabel?: Maybe<Scalars['Boolean']['output']>;
|
|
157544
158675
|
tags_updateTag?: Maybe<TagsResponse>;
|
|
157545
158676
|
team?: Maybe<TeamMutation>;
|
|
157546
158677
|
templateMigration?: Maybe<TemplateMigration>;
|
|
@@ -158020,6 +159151,9 @@ export declare type MutationAgentWorkspace_StartGenerateRoutingTableArgs = {
|
|
|
158020
159151
|
export declare type MutationAgentWorkspace_SubmitDraftedRoutingTableArgs = {
|
|
158021
159152
|
input: AgentWorkspaceSubmitDraftedRoutingTableInput;
|
|
158022
159153
|
};
|
|
159154
|
+
export declare type MutationAgentWorkspace_UnassignCoverShiftArgs = {
|
|
159155
|
+
input: AgentWorkspaceUnassignCoverShiftInput;
|
|
159156
|
+
};
|
|
158023
159157
|
export declare type MutationAgentWorkspace_UpdateRoutingConfigArgs = {
|
|
158024
159158
|
input: AgentWorkspaceUpdateRoutingConfigInput;
|
|
158025
159159
|
};
|
|
@@ -158058,10 +159192,17 @@ export declare type MutationAiManagedObject_CreateAiManagedObjectConfigArgs = {
|
|
|
158058
159192
|
export declare type MutationAiManagedObject_DeleteAiManagedObjectArgs = {
|
|
158059
159193
|
id: Scalars['ID']['input'];
|
|
158060
159194
|
};
|
|
159195
|
+
export declare type MutationAiManagedObject_ExecuteArgs = {
|
|
159196
|
+
id: Scalars['ID']['input'];
|
|
159197
|
+
};
|
|
158061
159198
|
export declare type MutationAiManagedObject_UpdateAiManagedObjectArgs = {
|
|
158062
159199
|
id: Scalars['ID']['input'];
|
|
158063
159200
|
input: AiManagedObjectUpdateInput;
|
|
158064
159201
|
};
|
|
159202
|
+
export declare type MutationAiops_TerminateInvestigationArgs = {
|
|
159203
|
+
cloudId: Scalars['ID']['input'];
|
|
159204
|
+
input: AiOpsTerminateInvestigationInput;
|
|
159205
|
+
};
|
|
158065
159206
|
export declare type MutationAiops_TriggerInvestigationArgs = {
|
|
158066
159207
|
cloudId: Scalars['ID']['input'];
|
|
158067
159208
|
input: AiOpsTriggerInvestigationInput;
|
|
@@ -158439,6 +159580,9 @@ export declare type MutationAssetsVertical_CreateVerticalInstantiationArgs = {
|
|
|
158439
159580
|
export declare type MutationAssetsVertical_CreateVerticalInstantiationCategoryArgs = {
|
|
158440
159581
|
input: AssetsVerticalCreateVerticalInstantiationCategoryInput;
|
|
158441
159582
|
};
|
|
159583
|
+
export declare type MutationAssetsVertical_CreateWorkbenchDashboardArgs = {
|
|
159584
|
+
input: AssetsVerticalCreateWorkbenchDashboardInput;
|
|
159585
|
+
};
|
|
158442
159586
|
export declare type MutationAssetsVertical_DeleteAssetTypesTrackingArgs = {
|
|
158443
159587
|
input: AssetsVerticalDeleteAssetTypesTrackingInput;
|
|
158444
159588
|
};
|
|
@@ -158481,6 +159625,9 @@ export declare type MutationAssetsVertical_UpdateVerticalInstantiationArgs = {
|
|
|
158481
159625
|
export declare type MutationAssetsVertical_UpdateVerticalInstantiationCategoryArgs = {
|
|
158482
159626
|
input: AssetsVerticalUpdateVerticalInstantiationCategoryInput;
|
|
158483
159627
|
};
|
|
159628
|
+
export declare type MutationAssetsVertical_WorkbenchDashboardTryUpgradeArgs = {
|
|
159629
|
+
input: AssetsVerticalWorkbenchDashboardTryUpgradeInput;
|
|
159630
|
+
};
|
|
158484
159631
|
export declare type MutationAssets_AddExternalReferenceTypeAttributeValueArgs = {
|
|
158485
159632
|
externalReferences: Array<AssetsExternalReferenceInput>;
|
|
158486
159633
|
objectId: Scalars['ID']['input'];
|
|
@@ -158500,6 +159647,14 @@ export declare type MutationAssignIssueParentArgs = {
|
|
|
158500
159647
|
export declare type MutationAttachDanglingCommentArgs = {
|
|
158501
159648
|
input: ReattachInlineCommentInput;
|
|
158502
159649
|
};
|
|
159650
|
+
export declare type MutationAttributeStore_AssignLabelArgs = {
|
|
159651
|
+
input: AttributeStoreAssignLabelInput;
|
|
159652
|
+
};
|
|
159653
|
+
export declare type MutationAttributeStore_UnassignLabelArgs = {
|
|
159654
|
+
entityAri: Scalars['String']['input'];
|
|
159655
|
+
labelId: Scalars['String']['input'];
|
|
159656
|
+
orgId: Scalars['String']['input'];
|
|
159657
|
+
};
|
|
158503
159658
|
export declare type MutationAvpPermissions_UpdateDashboardUserAccessArgs = {
|
|
158504
159659
|
input: AvpPermissionsUpdateDashboardUserAccessInput;
|
|
158505
159660
|
};
|
|
@@ -158527,6 +159682,9 @@ export declare type MutationAvp_CopyDashboardRowArgs = {
|
|
|
158527
159682
|
export declare type MutationAvp_CreateChartArgs = {
|
|
158528
159683
|
input: AvpCreateChartInput;
|
|
158529
159684
|
};
|
|
159685
|
+
export declare type MutationAvp_CreateChartsArgs = {
|
|
159686
|
+
input: AvpCreateChartsInput;
|
|
159687
|
+
};
|
|
158530
159688
|
export declare type MutationAvp_CreateDashboardArgs = {
|
|
158531
159689
|
input: AvpCreateDashboardInput;
|
|
158532
159690
|
};
|
|
@@ -158714,9 +159872,11 @@ export declare type MutationChangeManagement_UpdateRovoRiskAssessmentSettingsArg
|
|
|
158714
159872
|
export declare type MutationChannelPlatform_AssignAgentToContactArgs = {
|
|
158715
159873
|
aaId?: InputMaybe<Scalars['String']['input']>;
|
|
158716
159874
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
159875
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
158717
159876
|
};
|
|
158718
159877
|
export declare type MutationChannelPlatform_AttachMediaFileArgs = {
|
|
158719
159878
|
fileId: Scalars['String']['input'];
|
|
159879
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
158720
159880
|
issueId: Scalars['String']['input'];
|
|
158721
159881
|
};
|
|
158722
159882
|
export declare type MutationChannelPlatform_BotConversationArgs = {
|
|
@@ -158724,9 +159884,11 @@ export declare type MutationChannelPlatform_BotConversationArgs = {
|
|
|
158724
159884
|
};
|
|
158725
159885
|
export declare type MutationChannelPlatform_CreateAttendeeArgs = {
|
|
158726
159886
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
159887
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
158727
159888
|
};
|
|
158728
159889
|
export declare type MutationChannelPlatform_CreateMeetingDetailsArgs = {
|
|
158729
159890
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
159891
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
158730
159892
|
};
|
|
158731
159893
|
export declare type MutationChannelPlatform_CreateQueuesArgs = {
|
|
158732
159894
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -158745,10 +159907,12 @@ export declare type MutationChannelPlatform_InitiateOtpArgs = {
|
|
|
158745
159907
|
conversationId: Scalars['String']['input'];
|
|
158746
159908
|
};
|
|
158747
159909
|
export declare type MutationChannelPlatform_PerformPluginActionArgs = {
|
|
159910
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
158748
159911
|
pluginActionRequest?: InputMaybe<ChannelPlatformPluginActionRequest>;
|
|
158749
159912
|
};
|
|
158750
159913
|
export declare type MutationChannelPlatform_RelayMessageArgs = {
|
|
158751
159914
|
eventRelayRequest?: InputMaybe<ChannelPlatformEventRelayRequest>;
|
|
159915
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
158752
159916
|
};
|
|
158753
159917
|
export declare type MutationChannelPlatform_UpdateTracMetricsArgs = {
|
|
158754
159918
|
metrics: Scalars['JSON']['input'];
|
|
@@ -159092,6 +160256,11 @@ export declare type MutationConfluence_RemoveContentApprovalReviewerArgs = {
|
|
|
159092
160256
|
cloudId: Scalars['ID']['input'];
|
|
159093
160257
|
removeContentApprovalReviewerInput: ConfluenceRemoveContentApprovalReviewerInput;
|
|
159094
160258
|
};
|
|
160259
|
+
export declare type MutationConfluence_RemoveEnforcedReviewerArgs = {
|
|
160260
|
+
cloudId: Scalars['ID']['input'];
|
|
160261
|
+
reviewer: ConfluenceRemoveEnforcedReviewerInput;
|
|
160262
|
+
spaceKey: Scalars['String']['input'];
|
|
160263
|
+
};
|
|
159095
160264
|
export declare type MutationConfluence_RemoveInlineReactionArgs = {
|
|
159096
160265
|
cloudId: Scalars['ID']['input'];
|
|
159097
160266
|
input: ConfluenceRemoveInlineReactionInput;
|
|
@@ -160405,6 +161574,14 @@ export declare type MutationJiraOpenBeta_UpdateFeatureArgs = {
|
|
|
160405
161574
|
cloudId: Scalars['ID']['input'];
|
|
160406
161575
|
input?: InputMaybe<JiraOpenBetaFeatureUpdateInput>;
|
|
160407
161576
|
};
|
|
161577
|
+
export declare type MutationJira_AcceptAgentContextItemArgs = {
|
|
161578
|
+
cloudId: Scalars['ID']['input'];
|
|
161579
|
+
input: JiraAcceptAgentContextItemInput;
|
|
161580
|
+
};
|
|
161581
|
+
export declare type MutationJira_AddAgentContextItemArgs = {
|
|
161582
|
+
cloudId: Scalars['ID']['input'];
|
|
161583
|
+
input: JiraAddAgentContextItemInput;
|
|
161584
|
+
};
|
|
160408
161585
|
export declare type MutationJira_AddAgentToBoardViewStatusColumnArgs = {
|
|
160409
161586
|
input: JiraAddAgentToBoardViewStatusColumnInput;
|
|
160410
161587
|
};
|
|
@@ -160503,6 +161680,10 @@ export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
|
160503
161680
|
export declare type MutationJira_DiscardUserTimelineViewConfigArgs = {
|
|
160504
161681
|
input: JiraDiscardUserTimelineViewConfigInput;
|
|
160505
161682
|
};
|
|
161683
|
+
export declare type MutationJira_DismissAgentContextItemArgs = {
|
|
161684
|
+
cloudId: Scalars['ID']['input'];
|
|
161685
|
+
input: JiraDismissAgentContextItemInput;
|
|
161686
|
+
};
|
|
160506
161687
|
export declare type MutationJira_DismissAiAgentSessionArgs = {
|
|
160507
161688
|
input?: InputMaybe<JiraDismissAiAgentSessionInput>;
|
|
160508
161689
|
};
|
|
@@ -160567,6 +161748,10 @@ export declare type MutationJira_ReorderBoardViewColumnArgs = {
|
|
|
160567
161748
|
export declare type MutationJira_ReorderProjectsSidebarMenuItemArgs = {
|
|
160568
161749
|
input: JiraReorderSidebarMenuItemInput;
|
|
160569
161750
|
};
|
|
161751
|
+
export declare type MutationJira_ResetAgentContextArgs = {
|
|
161752
|
+
cloudId: Scalars['ID']['input'];
|
|
161753
|
+
input: JiraResetAgentContextInput;
|
|
161754
|
+
};
|
|
160570
161755
|
export declare type MutationJira_ResetFaviconArgs = {
|
|
160571
161756
|
input: JiraResetFaviconInput;
|
|
160572
161757
|
};
|
|
@@ -160788,6 +161973,9 @@ export declare type MutationJira_TrashGlobalCustomFieldsArgs = {
|
|
|
160788
161973
|
export declare type MutationJira_UnarchiveIssueArgs = {
|
|
160789
161974
|
input: JiraIssueUnarchiveInput;
|
|
160790
161975
|
};
|
|
161976
|
+
export declare type MutationJira_UpdateBoardViewStatusColumnAgentArgs = {
|
|
161977
|
+
input: JiraUpdateBoardViewStatusColumnAgentInput;
|
|
161978
|
+
};
|
|
160791
161979
|
export declare type MutationJira_UpdateCustomFieldArgs = {
|
|
160792
161980
|
cloudId: Scalars['ID']['input'];
|
|
160793
161981
|
input: JiraUpdateCustomFieldInput;
|
|
@@ -160977,7 +162165,6 @@ export declare type MutationKitsune_CreateSnippetArgs = {
|
|
|
160977
162165
|
markId?: InputMaybe<Scalars['ID']['input']>;
|
|
160978
162166
|
};
|
|
160979
162167
|
export declare type MutationKitsune_CreateSpaceArgs = {
|
|
160980
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
160981
162168
|
name: Scalars['String']['input'];
|
|
160982
162169
|
workspaceAri: Scalars['ID']['input'];
|
|
160983
162170
|
};
|
|
@@ -161054,6 +162241,12 @@ export declare type MutationKitsune_UpdateCustomerArgs = {
|
|
|
161054
162241
|
ari: Scalars['ID']['input'];
|
|
161055
162242
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
161056
162243
|
};
|
|
162244
|
+
export declare type MutationKitsune_UpdateCustomerFieldArgs = {
|
|
162245
|
+
name: Scalars['String']['input'];
|
|
162246
|
+
newName: Scalars['String']['input'];
|
|
162247
|
+
options?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
162248
|
+
workspaceAri: Scalars['ID']['input'];
|
|
162249
|
+
};
|
|
161057
162250
|
export declare type MutationKitsune_UpdateFeedbackArgs = {
|
|
161058
162251
|
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
161059
162252
|
customerId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -161146,6 +162339,7 @@ export declare type MutationLoom_DeleteVideosArgs = {
|
|
|
161146
162339
|
ids: Array<Scalars['ID']['input']>;
|
|
161147
162340
|
};
|
|
161148
162341
|
export declare type MutationLoom_JoinWorkspaceArgs = {
|
|
162342
|
+
flowTraceId?: InputMaybe<Scalars['String']['input']>;
|
|
161149
162343
|
workspaceId: Scalars['String']['input'];
|
|
161150
162344
|
};
|
|
161151
162345
|
export declare type MutationLoom_SpaceCreateArgs = {
|
|
@@ -161789,6 +162983,9 @@ export declare type MutationSpf_GrantEntityPermissionArgs = {
|
|
|
161789
162983
|
export declare type MutationSpf_PrioritizePlanScenarioInvestmentArgs = {
|
|
161790
162984
|
input: SpfPrioritizePlanScenarioInvestmentInput;
|
|
161791
162985
|
};
|
|
162986
|
+
export declare type MutationSpf_PromoteWorkItemToImpactedWorkArgs = {
|
|
162987
|
+
input: SpfPromoteWorkItemToImpactedWorkInput;
|
|
162988
|
+
};
|
|
161792
162989
|
export declare type MutationSpf_RejectProposedDateArgs = {
|
|
161793
162990
|
input: SpfResolveProposedDateInput;
|
|
161794
162991
|
};
|
|
@@ -162088,10 +163285,22 @@ export declare type MutationStudio_CreateDraftBuildArgs = {
|
|
|
162088
163285
|
export declare type MutationSubscribeToAppArgs = {
|
|
162089
163286
|
input: AppSubscribeInput;
|
|
162090
163287
|
};
|
|
163288
|
+
export declare type MutationTags_AssignLabelArgs = {
|
|
163289
|
+
input: TagsAssignLabelInput;
|
|
163290
|
+
};
|
|
163291
|
+
export declare type MutationTags_CreateAndAssignLabelArgs = {
|
|
163292
|
+
input: TagsCreateAndAssignLabelInput;
|
|
163293
|
+
kind: Scalars['String']['input'];
|
|
163294
|
+
};
|
|
162091
163295
|
export declare type MutationTags_CreateTagArgs = {
|
|
162092
163296
|
input: TagsCreateInput;
|
|
162093
163297
|
kind: Scalars['String']['input'];
|
|
162094
163298
|
};
|
|
163299
|
+
export declare type MutationTags_UnassignLabelArgs = {
|
|
163300
|
+
entityAri: Scalars['String']['input'];
|
|
163301
|
+
labelId: Scalars['String']['input'];
|
|
163302
|
+
orgId: Scalars['String']['input'];
|
|
163303
|
+
};
|
|
162095
163304
|
export declare type MutationTags_UpdateTagArgs = {
|
|
162096
163305
|
input: TagsUpdateInput;
|
|
162097
163306
|
kind: Scalars['String']['input'];
|
|
@@ -164669,6 +165878,7 @@ export declare type PolarisView = {
|
|
|
164669
165878
|
global: Scalars['Boolean']['output'];
|
|
164670
165879
|
globalViewUuid?: Maybe<Scalars['ID']['output']>;
|
|
164671
165880
|
groupBy?: Maybe<PolarisIdeaField>;
|
|
165881
|
+
groupOrder?: Maybe<Scalars['String']['output']>;
|
|
164672
165882
|
groupValues?: Maybe<Array<PolarisGroupValue>>;
|
|
164673
165883
|
groupsFilter?: Maybe<Array<PolarisViewFilter>>;
|
|
164674
165884
|
hidden?: Maybe<Array<PolarisIdeaField>>;
|
|
@@ -164696,6 +165906,7 @@ export declare type PolarisView = {
|
|
|
164696
165906
|
userJql?: Maybe<Scalars['String']['output']>;
|
|
164697
165907
|
uuid: Scalars['ID']['output'];
|
|
164698
165908
|
verticalGroupBy?: Maybe<PolarisIdeaField>;
|
|
165909
|
+
verticalGroupOrder?: Maybe<Scalars['String']['output']>;
|
|
164699
165910
|
verticalGroupValues?: Maybe<Array<PolarisGroupValue>>;
|
|
164700
165911
|
verticalGroupsFilter?: Maybe<Array<PolarisViewFilter>>;
|
|
164701
165912
|
viewSetId: Scalars['ID']['output'];
|
|
@@ -165497,16 +166708,16 @@ export declare type Query = {
|
|
|
165497
166708
|
agentWorkspace_bulkScheduleImportJob?: Maybe<AgentWorkspaceBulkImportJob>;
|
|
165498
166709
|
agentWorkspace_capacity?: Maybe<AgentWorkspaceCapacityConnection>;
|
|
165499
166710
|
agentWorkspace_capacitySummary?: Maybe<AgentWorkspaceCapacitySummary>;
|
|
165500
|
-
agentWorkspace_categorySkillsInProject?: Maybe<
|
|
166711
|
+
agentWorkspace_categorySkillsInProject?: Maybe<AgentWorkspaceProjectSkillConnection>;
|
|
165501
166712
|
agentWorkspace_clusterServiceCategories?: Maybe<AgentWorkspaceServiceClusteringResult>;
|
|
165502
166713
|
agentWorkspace_coverShiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
|
|
165503
166714
|
agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
|
|
165504
166715
|
agentWorkspace_draftedRoutingTableEntries?: Maybe<AgentWorkspaceDraftedRoutingTableEntries>;
|
|
165505
166716
|
agentWorkspace_draftedRoutingTableStatus?: Maybe<AgentWorkspaceDraftedRoutingTableStatus>;
|
|
165506
166717
|
agentWorkspace_eligibleGroups?: Maybe<AgentWorkspaceEligibleGroupsPayload>;
|
|
165507
|
-
agentWorkspace_issueRoutingHistory?: Maybe<AgentWorkspaceIssueRoutingHistory>;
|
|
165508
166718
|
agentWorkspace_liveRoutingTable?: Maybe<AgentWorkspaceLiveRoutingTable>;
|
|
165509
166719
|
agentWorkspace_projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
|
|
166720
|
+
agentWorkspace_projectRoutingHistory?: Maybe<AgentWorkspaceProjectRoutingHistory>;
|
|
165510
166721
|
agentWorkspace_recommendedAgentsForCoverageGap?: Maybe<AgentWorkspaceRecommendedAgentsForCoverageGapPayload>;
|
|
165511
166722
|
agentWorkspace_recommendedAgentsForGap?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
165512
166723
|
agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
|
|
@@ -165519,7 +166730,7 @@ export declare type Query = {
|
|
|
165519
166730
|
agentWorkspace_shiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
|
|
165520
166731
|
agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
|
|
165521
166732
|
agentWorkspace_skillCategories?: Maybe<AgentWorkspaceSkillCategoryConnection>;
|
|
165522
|
-
agentWorkspace_skillCategoriesInProject?: Maybe<
|
|
166733
|
+
agentWorkspace_skillCategoriesInProject?: Maybe<AgentWorkspaceProjectSkillCategoryConnection>;
|
|
165523
166734
|
agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
|
|
165524
166735
|
agentWorkspace_skillsInCategory?: Maybe<AgentWorkspaceSkillConnection>;
|
|
165525
166736
|
agentWorkspace_smartRoutingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
@@ -165527,7 +166738,8 @@ export declare type Query = {
|
|
|
165527
166738
|
agentWorkspace_teamRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
|
|
165528
166739
|
agentWorkspace_teamRebalancingSummaries?: Maybe<Array<AgentWorkspaceTeamRebalancingSummary>>;
|
|
165529
166740
|
agentWorkspace_teamSchedules?: Maybe<AgentWorkspaceTeamSchedulesConnection>;
|
|
165530
|
-
|
|
166741
|
+
agentWorkspace_teamsMappedToProject?: Maybe<AgentWorkspaceTeamConnection>;
|
|
166742
|
+
agentWorkspace_utilizationForPendingChanges?: Maybe<Array<AgentWorkspaceAgentUtilizationForPendingChanges>>;
|
|
165531
166743
|
agent_sessionAssociationQuery?: Maybe<AgentSessionAssociationConnection>;
|
|
165532
166744
|
agent_sessionQuery?: Maybe<AgentSessionConnection>;
|
|
165533
166745
|
aiCoreApi_fetchRsaEmployeeTickets?: Maybe<AiCoreApiRsaEmployeeTicketsResult>;
|
|
@@ -165654,6 +166866,7 @@ export declare type Query = {
|
|
|
165654
166866
|
assetsVertical_modelItamAttributes?: Maybe<AssetsVerticalModelItamAttributesResult>;
|
|
165655
166867
|
assetsVertical_modelObjectTypes?: Maybe<AssetsVerticalModelObjectTypesResult>;
|
|
165656
166868
|
assetsVertical_modelObjects?: Maybe<AssetsVerticalModelObjectsResult>;
|
|
166869
|
+
assetsVertical_nonConfiguredAssetTypesTrackings?: Maybe<AssetsVerticalNonConfiguredAssetTypesResult>;
|
|
165657
166870
|
assetsVertical_objects?: Maybe<AssetsVerticalObjectsResult>;
|
|
165658
166871
|
assetsVertical_stockroomItamAttributes?: Maybe<AssetsVerticalStockroomItamAttributesResult>;
|
|
165659
166872
|
assetsVertical_stockroomObjectTypes?: Maybe<AssetsVerticalStockroomObjectTypesResult>;
|
|
@@ -165666,6 +166879,7 @@ export declare type Query = {
|
|
|
165666
166879
|
assetsVertical_verticalRoles?: Maybe<AssetsVerticalRolesResult>;
|
|
165667
166880
|
assetsVertical_verticalTemplate?: Maybe<AssetsVerticalVerticalTemplateResult>;
|
|
165668
166881
|
assetsVertical_verticalTemplateV2?: Maybe<AssetsVerticalVerticalTemplateV2Result>;
|
|
166882
|
+
assetsVertical_workbenchDashboardTemplateStatus?: Maybe<AssetsVerticalWorkbenchDashboardTemplateStatus>;
|
|
165669
166883
|
assets_bundle?: Maybe<AssetsBundleResult>;
|
|
165670
166884
|
assets_cdmObjectTypesDefinitions?: Maybe<Array<Maybe<AssetsCdmObjectTypeResult>>>;
|
|
165671
166885
|
assets_cdmSchemasDefinitions?: Maybe<Array<Maybe<AssetsCdmSchemaResult>>>;
|
|
@@ -165684,6 +166898,7 @@ export declare type Query = {
|
|
|
165684
166898
|
atlasProjectsLinkedToAtlasGoal?: Maybe<GraphStoreCypherQueryConnection>;
|
|
165685
166899
|
atlasProjectsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
165686
166900
|
atlassianStudio_userSiteContext?: Maybe<AtlassianStudioUserSiteContextResult>;
|
|
166901
|
+
attributeStore_getLabelAssignments?: Maybe<Array<AttributeStoreLabelAssignment>>;
|
|
165687
166902
|
availableContentStates?: Maybe<AvailableContentStates>;
|
|
165688
166903
|
avpPermissions_getCapabilities?: Maybe<AvpPermissionsGetCapabilitiesResponse>;
|
|
165689
166904
|
avpPermissions_getDashboardIdentityAccess?: Maybe<AvpPermissionsDashboardIdentityAccess>;
|
|
@@ -165702,6 +166917,7 @@ export declare type Query = {
|
|
|
165702
166917
|
avp_getDashboardsByAris?: Maybe<Array<Maybe<AvpDashboard>>>;
|
|
165703
166918
|
avp_getDashboardsByStatus?: Maybe<AvpDashboardsConnection>;
|
|
165704
166919
|
avp_getFilterExpression?: Maybe<AvpFilterExpression>;
|
|
166920
|
+
avp_getJiraDashboardMigrationStatus?: Maybe<AvpJiraDashboardMigrationStatus>;
|
|
165705
166921
|
avp_getReadOnlyDashboard?: Maybe<AvpDashboard>;
|
|
165706
166922
|
avp_getRecentDashboards?: Maybe<Array<AvpRecentDashboard>>;
|
|
165707
166923
|
avp_getStarredDashboards?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -166041,6 +167257,7 @@ export declare type Query = {
|
|
|
166041
167257
|
csm_emailChannelConfiguration?: Maybe<CustomerServiceEmailChannelConfigQueryResult>;
|
|
166042
167258
|
csm_helpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataQueryResult>;
|
|
166043
167259
|
csm_liveChatAgent?: Maybe<CustomerServiceLiveChatAgentQueryResult>;
|
|
167260
|
+
csm_liveChatAgentByWorkerIdentity?: Maybe<CustomerServiceLiveChatAgentQueryResult>;
|
|
166044
167261
|
csm_liveChatAgents?: Maybe<CustomerServiceLiveChatAgentConnection>;
|
|
166045
167262
|
csm_liveChatSettings?: Maybe<CustomerServiceLiveChatSettingsQueryResult>;
|
|
166046
167263
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
@@ -166186,6 +167403,7 @@ export declare type Query = {
|
|
|
166186
167403
|
goals_metricValuesByIds?: Maybe<Array<Maybe<TownsquareMetricValue>>>;
|
|
166187
167404
|
goals_metricsByIds?: Maybe<Array<Maybe<TownsquareMetric>>>;
|
|
166188
167405
|
goals_search?: Maybe<TownsquareGoalConnection>;
|
|
167406
|
+
graphInference_getJiraEntityContext?: Maybe<GraphInferenceGetJiraEntityContextResponse>;
|
|
166189
167407
|
graphInference_getRelatedRepos?: Maybe<GraphInferenceGetRelatedReposResponse>;
|
|
166190
167408
|
graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
|
|
166191
167409
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
@@ -166210,6 +167428,7 @@ export declare type Query = {
|
|
|
166210
167428
|
gravity_deliverySettings?: Maybe<GravityDeliverySettingsResult>;
|
|
166211
167429
|
gravity_detailedReaction?: Maybe<GravityDetailedReactionResult>;
|
|
166212
167430
|
gravity_importIdeas: GravityImportIdeasResult;
|
|
167431
|
+
gravity_matchDelivery?: Maybe<GravityDeliveryMatchingResult>;
|
|
166213
167432
|
gravity_reactions?: Maybe<GravityReactionsResult>;
|
|
166214
167433
|
gravity_viewTemplateMappingProposals: GravityViewTemplateMappingProposalsResult;
|
|
166215
167434
|
gravity_viewTemplates: GravityViewTemplatesResult;
|
|
@@ -166268,6 +167487,7 @@ export declare type Query = {
|
|
|
166268
167487
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
166269
167488
|
jiraReleases?: Maybe<JiraReleases>;
|
|
166270
167489
|
jiraServers?: Maybe<JiraServersResult>;
|
|
167490
|
+
jira_agentContextSources?: Maybe<JiraAgentContextItemConnection>;
|
|
166271
167491
|
jira_agentSessionsIsPlanModeEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
166272
167492
|
jira_backlog?: Maybe<JiraBacklog>;
|
|
166273
167493
|
jira_backlogView?: Maybe<JiraBacklogView>;
|
|
@@ -166357,6 +167577,7 @@ export declare type Query = {
|
|
|
166357
167577
|
kitsune_organizationByAri?: Maybe<KitsuneOrganization>;
|
|
166358
167578
|
kitsune_organizations?: Maybe<Array<Maybe<KitsuneOrganization>>>;
|
|
166359
167579
|
kitsune_organizationsByName?: Maybe<Array<Maybe<KitsuneOrganization>>>;
|
|
167580
|
+
kitsune_rollupCustomers?: Maybe<KitsuneCustomersRollup>;
|
|
166360
167581
|
kitsune_searchChunk?: Maybe<Array<KitsuneSearchChunk>>;
|
|
166361
167582
|
kitsune_searchCustomers?: Maybe<KitsuneCustomerConnection>;
|
|
166362
167583
|
kitsune_searchFeedback?: Maybe<KitsuneFeedbackConnection>;
|
|
@@ -166725,6 +167946,8 @@ export declare type Query = {
|
|
|
166725
167946
|
supportInquiry_channelsIdentityHash?: Maybe<Scalars['String']['output']>;
|
|
166726
167947
|
supportInquiry_channelsIdentityHashByClientName?: Maybe<Scalars['String']['output']>;
|
|
166727
167948
|
supportInquiry_userContext?: Maybe<SupportInquiryUserContext>;
|
|
167949
|
+
tags_getAssignedLabels?: Maybe<Array<TagsAssignedLabel>>;
|
|
167950
|
+
tags_getLabelAssignments?: Maybe<Array<TagsLabelAssignment>>;
|
|
166728
167951
|
tags_getTag?: Maybe<TagsResponse>;
|
|
166729
167952
|
tags_getTagByNameKindOrg?: Maybe<TagsResponse>;
|
|
166730
167953
|
tags_listTags?: Maybe<TagsListResponse>;
|
|
@@ -167524,10 +168747,6 @@ export declare type QueryAgentWorkspace_DraftedRoutingTableStatusArgs = {
|
|
|
167524
168747
|
export declare type QueryAgentWorkspace_EligibleGroupsArgs = {
|
|
167525
168748
|
projectAri: Scalars['ID']['input'];
|
|
167526
168749
|
};
|
|
167527
|
-
export declare type QueryAgentWorkspace_IssueRoutingHistoryArgs = {
|
|
167528
|
-
cloudId: Scalars['ID']['input'];
|
|
167529
|
-
issueKey: Scalars['String']['input'];
|
|
167530
|
-
};
|
|
167531
168750
|
export declare type QueryAgentWorkspace_LiveRoutingTableArgs = {
|
|
167532
168751
|
cloudId: Scalars['ID']['input'];
|
|
167533
168752
|
projectKey: Scalars['String']['input'];
|
|
@@ -167536,6 +168755,13 @@ export declare type QueryAgentWorkspace_ProjectDefaultAvailabilityArgs = {
|
|
|
167536
168755
|
cloudId: Scalars['ID']['input'];
|
|
167537
168756
|
projectId: Scalars['ID']['input'];
|
|
167538
168757
|
};
|
|
168758
|
+
export declare type QueryAgentWorkspace_ProjectRoutingHistoryArgs = {
|
|
168759
|
+
cloudId: Scalars['ID']['input'];
|
|
168760
|
+
endTime: Scalars['DateTime']['input'];
|
|
168761
|
+
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
168762
|
+
projectKey: Scalars['String']['input'];
|
|
168763
|
+
startTime: Scalars['DateTime']['input'];
|
|
168764
|
+
};
|
|
167539
168765
|
export declare type QueryAgentWorkspace_RecommendedAgentsForCoverageGapArgs = {
|
|
167540
168766
|
input: AgentWorkspaceRecommendedAgentsForCoverageGapInput;
|
|
167541
168767
|
};
|
|
@@ -167605,8 +168831,10 @@ export declare type QueryAgentWorkspace_SkillCategoriesInProjectArgs = {
|
|
|
167605
168831
|
agentAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
167606
168832
|
categoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
167607
168833
|
categoryQuery?: InputMaybe<Scalars['String']['input']>;
|
|
168834
|
+
cloudId: Scalars['ID']['input'];
|
|
167608
168835
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
167609
|
-
|
|
168836
|
+
limitSkillsToFirstCategories?: InputMaybe<Scalars['Int']['input']>;
|
|
168837
|
+
projectKey: Scalars['String']['input'];
|
|
167610
168838
|
skillsQuery?: InputMaybe<Scalars['String']['input']>;
|
|
167611
168839
|
teamARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
167612
168840
|
};
|
|
@@ -167642,12 +168870,15 @@ export declare type QueryAgentWorkspace_TeamSchedulesArgs = {
|
|
|
167642
168870
|
input: AgentWorkspaceTeamSchedulesQueryInput;
|
|
167643
168871
|
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
167644
168872
|
};
|
|
167645
|
-
export declare type
|
|
168873
|
+
export declare type QueryAgentWorkspace_TeamsMappedToProjectArgs = {
|
|
167646
168874
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
167647
168875
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
167648
168876
|
projectId: Scalars['ID']['input'];
|
|
167649
168877
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
167650
168878
|
};
|
|
168879
|
+
export declare type QueryAgentWorkspace_UtilizationForPendingChangesArgs = {
|
|
168880
|
+
input: AgentWorkspaceUtilizationForPendingChangesInput;
|
|
168881
|
+
};
|
|
167651
168882
|
export declare type QueryAgent_SessionAssociationQueryArgs = {
|
|
167652
168883
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
167653
168884
|
aqlQuery?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -168326,6 +169557,10 @@ export declare type QueryAssetsVertical_ModelObjectsArgs = {
|
|
|
168326
169557
|
cloudId: Scalars['ID']['input'];
|
|
168327
169558
|
input: AssetsVerticalModelObjectsInput;
|
|
168328
169559
|
};
|
|
169560
|
+
export declare type QueryAssetsVertical_NonConfiguredAssetTypesTrackingsArgs = {
|
|
169561
|
+
cloudId: Scalars['ID']['input'];
|
|
169562
|
+
verticalInstantiationCategoryId: Scalars['ID']['input'];
|
|
169563
|
+
};
|
|
168329
169564
|
export declare type QueryAssetsVertical_ObjectsArgs = {
|
|
168330
169565
|
cloudId: Scalars['ID']['input'];
|
|
168331
169566
|
input?: InputMaybe<AssetsVerticalObjectsInput>;
|
|
@@ -168384,6 +169619,11 @@ export declare type QueryAssetsVertical_VerticalTemplateV2Args = {
|
|
|
168384
169619
|
type: AssetsVerticalVerticalType;
|
|
168385
169620
|
version?: InputMaybe<Scalars['String']['input']>;
|
|
168386
169621
|
};
|
|
169622
|
+
export declare type QueryAssetsVertical_WorkbenchDashboardTemplateStatusArgs = {
|
|
169623
|
+
avpTemplateVersion: Scalars['Int']['input'];
|
|
169624
|
+
cloudId: Scalars['ID']['input'];
|
|
169625
|
+
viewId: Scalars['ID']['input'];
|
|
169626
|
+
};
|
|
168387
169627
|
export declare type QueryAssets_BundleArgs = {
|
|
168388
169628
|
cloudId: Scalars['ID']['input'];
|
|
168389
169629
|
type: AssetsBundleType;
|
|
@@ -168451,6 +169691,9 @@ export declare type QueryAtlasProjectsLinkedToJiraIssueArgs = {
|
|
|
168451
169691
|
export declare type QueryAtlassianStudio_UserSiteContextArgs = {
|
|
168452
169692
|
cloudId: Scalars['ID']['input'];
|
|
168453
169693
|
};
|
|
169694
|
+
export declare type QueryAttributeStore_GetLabelAssignmentsArgs = {
|
|
169695
|
+
entityAri: Scalars['String']['input'];
|
|
169696
|
+
};
|
|
168454
169697
|
export declare type QueryAvailableContentStatesArgs = {
|
|
168455
169698
|
contentId: Scalars['ID']['input'];
|
|
168456
169699
|
};
|
|
@@ -168526,6 +169769,9 @@ export declare type QueryAvp_GetDashboardsByStatusArgs = {
|
|
|
168526
169769
|
export declare type QueryAvp_GetFilterExpressionArgs = {
|
|
168527
169770
|
dashboardAri: Scalars['ID']['input'];
|
|
168528
169771
|
};
|
|
169772
|
+
export declare type QueryAvp_GetJiraDashboardMigrationStatusArgs = {
|
|
169773
|
+
input: AvpGetJiraDashboardMigrationStatusInput;
|
|
169774
|
+
};
|
|
168529
169775
|
export declare type QueryAvp_GetReadOnlyDashboardArgs = {
|
|
168530
169776
|
input: AvpGetReadOnlyDashboardInput;
|
|
168531
169777
|
};
|
|
@@ -168758,12 +170004,16 @@ export declare type QueryChannelPlatform_EvaluateChannelAvailabilityArgs = {
|
|
|
168758
170004
|
request?: InputMaybe<ChannelPlatformChannelAvailabilityRequestInput>;
|
|
168759
170005
|
};
|
|
168760
170006
|
export declare type QueryChannelPlatform_GenerateMediaTokenArgs = {
|
|
170007
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
168761
170008
|
issueId: Scalars['String']['input'];
|
|
168762
170009
|
};
|
|
168763
170010
|
export declare type QueryChannelPlatform_GetAgentIdForAaidArgs = {
|
|
168764
170011
|
aaId?: InputMaybe<Scalars['String']['input']>;
|
|
168765
170012
|
instanceId?: InputMaybe<Scalars['String']['input']>;
|
|
168766
170013
|
};
|
|
170014
|
+
export declare type QueryChannelPlatform_GetAgentStatusArgs = {
|
|
170015
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
170016
|
+
};
|
|
168767
170017
|
export declare type QueryChannelPlatform_GetAttachmentPreviewUrlArgs = {
|
|
168768
170018
|
attachmentId: Scalars['String']['input'];
|
|
168769
170019
|
issueId: Scalars['String']['input'];
|
|
@@ -168771,7 +170021,14 @@ export declare type QueryChannelPlatform_GetAttachmentPreviewUrlArgs = {
|
|
|
168771
170021
|
export declare type QueryChannelPlatform_GetChannelTokenArgs = {
|
|
168772
170022
|
request?: InputMaybe<ChannelPlatformGetChannelTokenRequest>;
|
|
168773
170023
|
};
|
|
170024
|
+
export declare type QueryChannelPlatform_GetClientConfigDetailsArgs = {
|
|
170025
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
170026
|
+
};
|
|
170027
|
+
export declare type QueryChannelPlatform_GetConnectDetailsArgs = {
|
|
170028
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
170029
|
+
};
|
|
168774
170030
|
export declare type QueryChannelPlatform_GetContactDetailsArgs = {
|
|
170031
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
168775
170032
|
ticketId?: InputMaybe<Scalars['ID']['input']>;
|
|
168776
170033
|
};
|
|
168777
170034
|
export declare type QueryChannelPlatform_GetCustomerConversationsArgs = {
|
|
@@ -168784,6 +170041,7 @@ export declare type QueryChannelPlatform_GetQueueArgs = {
|
|
|
168784
170041
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
168785
170042
|
};
|
|
168786
170043
|
export declare type QueryChannelPlatform_GetQuickResponseArgs = {
|
|
170044
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
168787
170045
|
quickResponseId: Scalars['String']['input'];
|
|
168788
170046
|
};
|
|
168789
170047
|
export declare type QueryChannelPlatform_GetSurveyLinkArgs = {
|
|
@@ -168794,9 +170052,11 @@ export declare type QueryChannelPlatform_GetTicketDetailsArgs = {
|
|
|
168794
170052
|
conversationId?: InputMaybe<Scalars['ID']['input']>;
|
|
168795
170053
|
};
|
|
168796
170054
|
export declare type QueryChannelPlatform_GetTranscriptArgs = {
|
|
170055
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
168797
170056
|
request?: InputMaybe<ChannelPlatformTranscriptRequest>;
|
|
168798
170057
|
};
|
|
168799
170058
|
export declare type QueryChannelPlatform_ListQuickResponsesArgs = {
|
|
170059
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
168800
170060
|
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
168801
170061
|
nextToken?: InputMaybe<Scalars['String']['input']>;
|
|
168802
170062
|
};
|
|
@@ -168804,6 +170064,7 @@ export declare type QueryChannelPlatform_SampleQueueByIdArgs = {
|
|
|
168804
170064
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
168805
170065
|
};
|
|
168806
170066
|
export declare type QueryChannelPlatform_SearchQuickResponsesArgs = {
|
|
170067
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
168807
170068
|
request: ChannelPlatformQuickResponseSearchRequest;
|
|
168808
170069
|
};
|
|
168809
170070
|
export declare type QueryChannelPlatform_SubmitRequestArgs = {
|
|
@@ -169854,7 +171115,7 @@ export declare type QueryConvoai_HomeThreadsArgs = {
|
|
|
169854
171115
|
cloudId: Scalars['ID']['input'];
|
|
169855
171116
|
experience: Scalars['String']['input'];
|
|
169856
171117
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
169857
|
-
homeThreadsInput
|
|
171118
|
+
homeThreadsInput?: InputMaybe<ConvoAiHomeThreadsInput>;
|
|
169858
171119
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
169859
171120
|
};
|
|
169860
171121
|
export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
@@ -170067,6 +171328,10 @@ export declare type QueryCsm_LiveChatAgentArgs = {
|
|
|
170067
171328
|
accountId: Scalars['ID']['input'];
|
|
170068
171329
|
cloudId: Scalars['ID']['input'];
|
|
170069
171330
|
};
|
|
171331
|
+
export declare type QueryCsm_LiveChatAgentByWorkerIdentityArgs = {
|
|
171332
|
+
cloudId: Scalars['ID']['input'];
|
|
171333
|
+
workerIdentity: Scalars['ID']['input'];
|
|
171334
|
+
};
|
|
170070
171335
|
export declare type QueryCsm_LiveChatAgentsArgs = {
|
|
170071
171336
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
170072
171337
|
cloudId: Scalars['ID']['input'];
|
|
@@ -170652,6 +171917,9 @@ export declare type QueryGoals_SearchArgs = {
|
|
|
170652
171917
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
170653
171918
|
sort?: InputMaybe<Array<InputMaybe<TownsquareGoalSortEnum>>>;
|
|
170654
171919
|
};
|
|
171920
|
+
export declare type QueryGraphInference_GetJiraEntityContextArgs = {
|
|
171921
|
+
input: GraphInferenceGetJiraEntityContextInput;
|
|
171922
|
+
};
|
|
170655
171923
|
export declare type QueryGraphInference_GetRelatedReposArgs = {
|
|
170656
171924
|
input: GraphInferenceGetRelatedReposInput;
|
|
170657
171925
|
};
|
|
@@ -170758,6 +172026,10 @@ export declare type QueryGravity_ImportIdeasArgs = {
|
|
|
170758
172026
|
cloudId: Scalars['ID']['input'];
|
|
170759
172027
|
input: GravityImportIdeasInput;
|
|
170760
172028
|
};
|
|
172029
|
+
export declare type QueryGravity_MatchDeliveryArgs = {
|
|
172030
|
+
cloudId: Scalars['ID']['input'];
|
|
172031
|
+
input: GravityMatchDeliveryInput;
|
|
172032
|
+
};
|
|
170761
172033
|
export declare type QueryGravity_ReactionsArgs = {
|
|
170762
172034
|
cloudId: Scalars['ID']['input'];
|
|
170763
172035
|
input: GravityGetReactionsInput;
|
|
@@ -170953,6 +172225,13 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
170953
172225
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
170954
172226
|
id: Scalars['ID']['input'];
|
|
170955
172227
|
};
|
|
172228
|
+
export declare type QueryJira_AgentContextSourcesArgs = {
|
|
172229
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
172230
|
+
cloudId: Scalars['ID']['input'];
|
|
172231
|
+
filter?: InputMaybe<JiraAgentContextFilter>;
|
|
172232
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
172233
|
+
input: JiraScopedAgentContextInput;
|
|
172234
|
+
};
|
|
170956
172235
|
export declare type QueryJira_AgentSessionsIsPlanModeEnabledArgs = {
|
|
170957
172236
|
cloudId: Scalars['ID']['input'];
|
|
170958
172237
|
};
|
|
@@ -171253,7 +172532,6 @@ export declare type QueryKitsune_CustomersArgs = {
|
|
|
171253
172532
|
workspaceAri: Scalars['ID']['input'];
|
|
171254
172533
|
};
|
|
171255
172534
|
export declare type QueryKitsune_EntitlementsArgs = {
|
|
171256
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171257
172535
|
workspaceAri: Scalars['ID']['input'];
|
|
171258
172536
|
};
|
|
171259
172537
|
export declare type QueryKitsune_FeedbackEventArgs = {
|
|
@@ -171287,12 +172565,14 @@ export declare type QueryKitsune_OrganizationsByNameArgs = {
|
|
|
171287
172565
|
names?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
171288
172566
|
workspaceAri: Scalars['ID']['input'];
|
|
171289
172567
|
};
|
|
172568
|
+
export declare type QueryKitsune_RollupCustomersArgs = {
|
|
172569
|
+
input: KitsuneRollupInput;
|
|
172570
|
+
workspaceAri: Scalars['ID']['input'];
|
|
172571
|
+
};
|
|
171290
172572
|
export declare type QueryKitsune_SearchChunkArgs = {
|
|
171291
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171292
172573
|
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
171293
172574
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
171294
172575
|
topK?: InputMaybe<Scalars['Int']['input']>;
|
|
171295
|
-
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
171296
172576
|
workspaceAri: Scalars['ID']['input'];
|
|
171297
172577
|
};
|
|
171298
172578
|
export declare type QueryKitsune_SearchCustomersArgs = {
|
|
@@ -171306,42 +172586,35 @@ export declare type QueryKitsune_SearchCustomersArgs = {
|
|
|
171306
172586
|
export declare type QueryKitsune_SearchFeedbackArgs = {
|
|
171307
172587
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
171308
172588
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
171309
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171310
172589
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171311
172590
|
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
171312
172591
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
171313
172592
|
spaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
171314
172593
|
withTotalCount?: InputMaybe<Scalars['Boolean']['input']>;
|
|
171315
|
-
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
171316
172594
|
workspaceAri: Scalars['ID']['input'];
|
|
171317
172595
|
};
|
|
171318
172596
|
export declare type QueryKitsune_SearchFeedbackWithHighlightsArgs = {
|
|
171319
172597
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
171320
172598
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
171321
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171322
172599
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171323
172600
|
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
171324
172601
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
171325
172602
|
spaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
171326
172603
|
withTotalCount?: InputMaybe<Scalars['Boolean']['input']>;
|
|
171327
|
-
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
171328
172604
|
workspaceAri: Scalars['ID']['input'];
|
|
171329
172605
|
};
|
|
171330
172606
|
export declare type QueryKitsune_SearchFieldsArgs = {
|
|
171331
172607
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
171332
172608
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
171333
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171334
172609
|
entityTypes?: InputMaybe<Array<KitsuneEntityType>>;
|
|
171335
172610
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171336
172611
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
171337
172612
|
name: Scalars['String']['input'];
|
|
171338
|
-
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
171339
172613
|
workspaceAri: Scalars['ID']['input'];
|
|
171340
172614
|
};
|
|
171341
172615
|
export declare type QueryKitsune_SearchInsightsArgs = {
|
|
171342
172616
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
171343
172617
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
171344
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171345
172618
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171346
172619
|
input?: InputMaybe<KitsuneSearchInsightsInput>;
|
|
171347
172620
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -171357,7 +172630,6 @@ export declare type QueryKitsune_SearchOrganizationsArgs = {
|
|
|
171357
172630
|
export declare type QueryKitsune_SearchSnippetsArgs = {
|
|
171358
172631
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
171359
172632
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
171360
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171361
172633
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171362
172634
|
insightAri?: InputMaybe<Scalars['ID']['input']>;
|
|
171363
172635
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -171376,11 +172648,9 @@ export declare type QueryKitsune_SpacesArgs = {
|
|
|
171376
172648
|
export declare type QueryKitsune_SpacesForWorkspaceArgs = {
|
|
171377
172649
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
171378
172650
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
171379
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171380
172651
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171381
172652
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
171382
172653
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
171383
|
-
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
171384
172654
|
workspaceAri: Scalars['ID']['input'];
|
|
171385
172655
|
};
|
|
171386
172656
|
export declare type QueryKitsune_ViewsArgs = {
|
|
@@ -172248,6 +173518,7 @@ export declare type QuerySpaceRoleAssignmentsByPrincipalArgs = {
|
|
|
172248
173518
|
export declare type QuerySpaceRolesByCriteriaArgs = {
|
|
172249
173519
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
172250
173520
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
173521
|
+
includeDisabledRoles?: InputMaybe<Scalars['Boolean']['input']>;
|
|
172251
173522
|
principal?: InputMaybe<RoleAssignmentPrincipalInput>;
|
|
172252
173523
|
spaceId?: InputMaybe<Scalars['Long']['input']>;
|
|
172253
173524
|
};
|
|
@@ -172711,6 +173982,14 @@ export declare type QuerySuggestedSpacesArgs = {
|
|
|
172711
173982
|
export declare type QuerySupportInquiry_ChannelsIdentityHashByClientNameArgs = {
|
|
172712
173983
|
request?: InputMaybe<SupportInquiryChannelPlatformIdentityHashRequest>;
|
|
172713
173984
|
};
|
|
173985
|
+
export declare type QueryTags_GetAssignedLabelsArgs = {
|
|
173986
|
+
entityAri: Scalars['String']['input'];
|
|
173987
|
+
kind: Scalars['String']['input'];
|
|
173988
|
+
orgId: Scalars['String']['input'];
|
|
173989
|
+
};
|
|
173990
|
+
export declare type QueryTags_GetLabelAssignmentsArgs = {
|
|
173991
|
+
entityAri: Scalars['String']['input'];
|
|
173992
|
+
};
|
|
172714
173993
|
export declare type QueryTags_GetTagArgs = {
|
|
172715
173994
|
kind: Scalars['String']['input'];
|
|
172716
173995
|
orgId: Scalars['String']['input'];
|
|
@@ -173195,6 +174474,7 @@ export declare enum RadarEntityType {
|
|
|
173195
174474
|
FocusArea = "focusArea",
|
|
173196
174475
|
FocusAreaType = "focusAreaType",
|
|
173197
174476
|
Position = "position",
|
|
174477
|
+
PositionsHistory = "positionsHistory",
|
|
173198
174478
|
Proposal = "proposal",
|
|
173199
174479
|
ProposedMovement = "proposedMovement",
|
|
173200
174480
|
Skill = "skill",
|
|
@@ -175239,9 +176519,11 @@ export declare enum Scope {
|
|
|
175239
176519
|
DeleteConfluenceFolder = "DELETE_CONFLUENCE_FOLDER",
|
|
175240
176520
|
DeleteConfluencePage = "DELETE_CONFLUENCE_PAGE",
|
|
175241
176521
|
DeleteConfluenceSpace = "DELETE_CONFLUENCE_SPACE",
|
|
176522
|
+
DeleteConfluenceTwgCli = "DELETE_CONFLUENCE_TWG_CLI",
|
|
175242
176523
|
DeleteConfluenceWhiteboard = "DELETE_CONFLUENCE_WHITEBOARD",
|
|
175243
176524
|
DeleteInsightJpd = "DELETE_INSIGHT_JPD",
|
|
175244
176525
|
DeleteItamConfigJsm = "DELETE_ITAM_CONFIG_JSM",
|
|
176526
|
+
DeleteJsmTwgCli = "DELETE_JSM_TWG_CLI",
|
|
175245
176527
|
DeleteJswBoardScopeAdmin = "DELETE_JSW_BOARD_SCOPE_ADMIN",
|
|
175246
176528
|
DeleteJswSprint = "DELETE_JSW_SPRINT",
|
|
175247
176529
|
DeleteOrganization = "DELETE_ORGANIZATION",
|
|
@@ -175606,6 +176888,7 @@ export declare enum Scope {
|
|
|
175606
176888
|
WriteConfluenceSpaceProperty = "WRITE_CONFLUENCE_SPACE_PROPERTY",
|
|
175607
176889
|
WriteConfluenceSpaceSetting = "WRITE_CONFLUENCE_SPACE_SETTING",
|
|
175608
176890
|
WriteConfluenceTemplate = "WRITE_CONFLUENCE_TEMPLATE",
|
|
176891
|
+
WriteConfluenceTwgCli = "WRITE_CONFLUENCE_TWG_CLI",
|
|
175609
176892
|
WriteConfluenceUserProperty = "WRITE_CONFLUENCE_USER_PROPERTY",
|
|
175610
176893
|
WriteConfluenceWatcher = "WRITE_CONFLUENCE_WATCHER",
|
|
175611
176894
|
WriteConfluenceWhiteboard = "WRITE_CONFLUENCE_WHITEBOARD",
|
|
@@ -175913,6 +177196,7 @@ export declare type SearchError = {
|
|
|
175913
177196
|
export declare type SearchExperimentContextInput = {
|
|
175914
177197
|
experimentId?: InputMaybe<Scalars['String']['input']>;
|
|
175915
177198
|
experimentLayers?: InputMaybe<Array<InputMaybe<SearchExperimentLayer>>>;
|
|
177199
|
+
matchingLayerExperimentsMetadata?: InputMaybe<SearchMatchingLayerExperimentsMetadata>;
|
|
175916
177200
|
shadowExperimentId?: InputMaybe<Scalars['String']['input']>;
|
|
175917
177201
|
};
|
|
175918
177202
|
export declare type SearchExperimentLayer = {
|
|
@@ -176014,6 +177298,7 @@ export declare type SearchInput = {
|
|
|
176014
177298
|
includeBoostedLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
176015
177299
|
interleaveResults?: InputMaybe<Scalars['Boolean']['input']>;
|
|
176016
177300
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
177301
|
+
matchingLayerExperimentsMetadata?: InputMaybe<SearchMatchingLayerExperimentsMetadata>;
|
|
176017
177302
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
176018
177303
|
sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
|
|
176019
177304
|
};
|
|
@@ -176126,6 +177411,13 @@ export declare enum SearchLinkedResultCategory {
|
|
|
176126
177411
|
Similar = "similar"
|
|
176127
177412
|
}
|
|
176128
177413
|
export declare type SearchLinkedResultEntity = ExternalCalendarEvent;
|
|
177414
|
+
export declare type SearchMatchingLayer = {
|
|
177415
|
+
layerName?: InputMaybe<Scalars['String']['input']>;
|
|
177416
|
+
layerType?: InputMaybe<Scalars['String']['input']>;
|
|
177417
|
+
};
|
|
177418
|
+
export declare type SearchMatchingLayerExperimentsMetadata = {
|
|
177419
|
+
matchingLayers?: InputMaybe<Array<InputMaybe<SearchMatchingLayer>>>;
|
|
177420
|
+
};
|
|
176129
177421
|
export declare type SearchMercuryFilter = {
|
|
176130
177422
|
ancestorIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
176131
177423
|
focusAreaTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -176202,6 +177494,7 @@ export declare type SearchQueryApiAsyncSearchArgs = {
|
|
|
176202
177494
|
interleaveResults?: InputMaybe<Scalars['Boolean']['input']>;
|
|
176203
177495
|
isSearchTool?: InputMaybe<Scalars['Boolean']['input']>;
|
|
176204
177496
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
177497
|
+
matchingLayerExperimentsMetadata?: InputMaybe<SearchMatchingLayerExperimentsMetadata>;
|
|
176205
177498
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
176206
177499
|
sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
|
|
176207
177500
|
};
|
|
@@ -176232,6 +177525,7 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
176232
177525
|
interleaveResults?: InputMaybe<Scalars['Boolean']['input']>;
|
|
176233
177526
|
isSearchTool?: InputMaybe<Scalars['Boolean']['input']>;
|
|
176234
177527
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
177528
|
+
matchingLayerExperimentsMetadata?: InputMaybe<SearchMatchingLayerExperimentsMetadata>;
|
|
176235
177529
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
176236
177530
|
sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
|
|
176237
177531
|
};
|
|
@@ -196001,8 +197295,8 @@ export declare type ShepherdWorkspace = Node & {
|
|
|
196001
197295
|
cloudName?: Maybe<Scalars['String']['output']>;
|
|
196002
197296
|
createdOn: Scalars['DateTime']['output'];
|
|
196003
197297
|
currentUser?: Maybe<ShepherdCurrentUser>;
|
|
196004
|
-
customDetections
|
|
196005
|
-
detections
|
|
197298
|
+
customDetections?: Maybe<Array<ShepherdCustomDetection>>;
|
|
197299
|
+
detections?: Maybe<Array<ShepherdDetection>>;
|
|
196006
197300
|
hasDataCenterAlert?: Maybe<Scalars['Boolean']['output']>;
|
|
196007
197301
|
id: Scalars['ID']['output'];
|
|
196008
197302
|
newDetectionsCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -196467,6 +197761,8 @@ export declare type SmartsRecommendationsFieldQuery = {
|
|
|
196467
197761
|
};
|
|
196468
197762
|
export declare type SmartsRecommendationsQuery = {
|
|
196469
197763
|
context: SmartsContext;
|
|
197764
|
+
excludeInactive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
197765
|
+
excludeSelf?: InputMaybe<Scalars['Boolean']['input']>;
|
|
196470
197766
|
maxNumberOfResults?: InputMaybe<Scalars['Int']['input']>;
|
|
196471
197767
|
modelRequestParams: SmartsModelRequestParams;
|
|
196472
197768
|
requestingUserId: Scalars['String']['input'];
|
|
@@ -197135,6 +198431,7 @@ export declare type SpacePermissionsSubjectsWithPermissionsArgs = {
|
|
|
197135
198431
|
export declare type SpaceRole = {
|
|
197136
198432
|
__typename?: 'SpaceRole';
|
|
197137
198433
|
confluenceRoleAssignabilityCode: ConfluenceRoleAssignabilityCode;
|
|
198434
|
+
disabled: Scalars['Boolean']['output'];
|
|
197138
198435
|
inUseByDefaultSpaceRoleAssignments?: Maybe<Scalars['Boolean']['output']>;
|
|
197139
198436
|
inUseByPrincipals?: Maybe<Scalars['Boolean']['output']>;
|
|
197140
198437
|
roleDescription: Scalars['String']['output'];
|
|
@@ -198211,6 +199508,10 @@ export declare type SpfPrioritizePlanScenarioInvestmentPayload = Payload & {
|
|
|
198211
199508
|
planScenarioInvestments?: Maybe<Array<SpfPlanScenarioInvestmentEdge>>;
|
|
198212
199509
|
success: Scalars['Boolean']['output'];
|
|
198213
199510
|
};
|
|
199511
|
+
export declare type SpfPromoteWorkItemToImpactedWorkInput = {
|
|
199512
|
+
connectedWorkId: Scalars['String']['input'];
|
|
199513
|
+
id: Scalars['ID']['input'];
|
|
199514
|
+
};
|
|
198214
199515
|
export declare type SpfRemovePlanApproverInput = {
|
|
198215
199516
|
approverId: Scalars['String']['input'];
|
|
198216
199517
|
planId: Scalars['ID']['input'];
|
|
@@ -200108,6 +201409,7 @@ export declare enum StakeholderCommsUptimeStyle {
|
|
|
200108
201409
|
OnlyStatus = "ONLY_STATUS"
|
|
200109
201410
|
}
|
|
200110
201411
|
export declare type StakeholderCommsVerifyDnsInput = {
|
|
201412
|
+
cdmMigrationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
200111
201413
|
domain: Scalars['String']['input'];
|
|
200112
201414
|
pageId: Scalars['String']['input'];
|
|
200113
201415
|
};
|
|
@@ -201031,12 +202333,43 @@ export declare type SystemUser = {
|
|
|
201031
202333
|
isMentionable?: Maybe<Scalars['Boolean']['output']>;
|
|
201032
202334
|
nickName?: Maybe<Scalars['String']['output']>;
|
|
201033
202335
|
};
|
|
202336
|
+
export declare type TagsAssignLabelInput = {
|
|
202337
|
+
entityAri: Scalars['String']['input'];
|
|
202338
|
+
labelId: Scalars['String']['input'];
|
|
202339
|
+
orgId: Scalars['String']['input'];
|
|
202340
|
+
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
202341
|
+
};
|
|
202342
|
+
export declare type TagsAssignedLabel = {
|
|
202343
|
+
__typename?: 'TagsAssignedLabel';
|
|
202344
|
+
assignment: TagsLabelAssignment;
|
|
202345
|
+
tag?: Maybe<TagsResponse>;
|
|
202346
|
+
};
|
|
202347
|
+
export declare type TagsCreateAndAssignLabelInput = {
|
|
202348
|
+
entityAri: Scalars['String']['input'];
|
|
202349
|
+
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
202350
|
+
name: Scalars['String']['input'];
|
|
202351
|
+
orgId: Scalars['String']['input'];
|
|
202352
|
+
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
202353
|
+
};
|
|
202354
|
+
export declare type TagsCreateAndAssignLabelResponse = {
|
|
202355
|
+
__typename?: 'TagsCreateAndAssignLabelResponse';
|
|
202356
|
+
assignment: TagsLabelAssignment;
|
|
202357
|
+
tag: TagsResponse;
|
|
202358
|
+
};
|
|
201034
202359
|
export declare type TagsCreateInput = {
|
|
201035
202360
|
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
201036
202361
|
name: Scalars['String']['input'];
|
|
201037
202362
|
orgId: Scalars['String']['input'];
|
|
201038
202363
|
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
201039
202364
|
};
|
|
202365
|
+
export declare type TagsLabelAssignment = {
|
|
202366
|
+
__typename?: 'TagsLabelAssignment';
|
|
202367
|
+
assignedAt: Scalars['String']['output'];
|
|
202368
|
+
entityAri: Scalars['String']['output'];
|
|
202369
|
+
labelId: Scalars['String']['output'];
|
|
202370
|
+
orgId?: Maybe<Scalars['String']['output']>;
|
|
202371
|
+
workspaceAri?: Maybe<Scalars['String']['output']>;
|
|
202372
|
+
};
|
|
201040
202373
|
export declare type TagsListResponse = {
|
|
201041
202374
|
__typename?: 'TagsListResponse';
|
|
201042
202375
|
items: Array<TagsResponse>;
|
|
@@ -201395,6 +202728,39 @@ export declare type TeamMembershipSyncResult = {
|
|
|
201395
202728
|
members: Array<TeamMemberAccountId>;
|
|
201396
202729
|
status: TeamMembershipProcessingStatus;
|
|
201397
202730
|
};
|
|
202731
|
+
export declare type TeamMergeError = {
|
|
202732
|
+
__typename?: 'TeamMergeError';
|
|
202733
|
+
destinationTeamId: Scalars['ID']['output'];
|
|
202734
|
+
errorCode: TeamMergeErrorCode;
|
|
202735
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
202736
|
+
sourceTeamId: Scalars['ID']['output'];
|
|
202737
|
+
};
|
|
202738
|
+
export declare enum TeamMergeErrorCode {
|
|
202739
|
+
BadRequest = "BAD_REQUEST",
|
|
202740
|
+
DestinationTeamNotFound = "DESTINATION_TEAM_NOT_FOUND",
|
|
202741
|
+
MergeFailed = "MERGE_FAILED",
|
|
202742
|
+
SourceTeamNotFound = "SOURCE_TEAM_NOT_FOUND"
|
|
202743
|
+
}
|
|
202744
|
+
export declare type TeamMergePair = {
|
|
202745
|
+
destinationTeamId: Scalars['ID']['input'];
|
|
202746
|
+
sourceTeamId: Scalars['ID']['input'];
|
|
202747
|
+
};
|
|
202748
|
+
export declare type TeamMergeScheduled = {
|
|
202749
|
+
__typename?: 'TeamMergeScheduled';
|
|
202750
|
+
destinationTeamId: Scalars['ID']['output'];
|
|
202751
|
+
sourceTeamId: Scalars['ID']['output'];
|
|
202752
|
+
};
|
|
202753
|
+
export declare type TeamMergeTeamsInput = {
|
|
202754
|
+
merges: Array<TeamMergePair>;
|
|
202755
|
+
scopeId: Scalars['ID']['input'];
|
|
202756
|
+
};
|
|
202757
|
+
export declare type TeamMergeTeamsPayload = Payload & {
|
|
202758
|
+
__typename?: 'TeamMergeTeamsPayload';
|
|
202759
|
+
errors?: Maybe<Array<MutationError>>;
|
|
202760
|
+
failedMerges?: Maybe<Array<TeamMergeError>>;
|
|
202761
|
+
success: Scalars['Boolean']['output'];
|
|
202762
|
+
successfulMerges?: Maybe<Array<TeamMergeScheduled>>;
|
|
202763
|
+
};
|
|
201398
202764
|
export declare type TeamMutation = {
|
|
201399
202765
|
__typename?: 'TeamMutation';
|
|
201400
202766
|
addChild?: Maybe<TeamV2>;
|
|
@@ -201414,6 +202780,7 @@ export declare type TeamMutation = {
|
|
|
201414
202780
|
linkCustomFieldToOption?: Maybe<TeamCustomFieldKeyValues>;
|
|
201415
202781
|
linkCustomFieldToValue?: Maybe<TeamCustomFieldKeyValues>;
|
|
201416
202782
|
linkExternalTeam?: Maybe<TeamLinkExternalTeamPayload>;
|
|
202783
|
+
mergeTeams?: Maybe<TeamMergeTeamsPayload>;
|
|
201417
202784
|
removeChild?: Maybe<TeamV2>;
|
|
201418
202785
|
removeParent?: Maybe<TeamV2>;
|
|
201419
202786
|
restoreExternalTeam?: Maybe<TeamRestoreExternalTeamPayload>;
|
|
@@ -201493,6 +202860,9 @@ export declare type TeamMutationLinkCustomFieldToValueArgs = {
|
|
|
201493
202860
|
export declare type TeamMutationLinkExternalTeamArgs = {
|
|
201494
202861
|
input: TeamLinkExternalTeamInput;
|
|
201495
202862
|
};
|
|
202863
|
+
export declare type TeamMutationMergeTeamsArgs = {
|
|
202864
|
+
input: TeamMergeTeamsInput;
|
|
202865
|
+
};
|
|
201496
202866
|
export declare type TeamMutationRemoveChildArgs = {
|
|
201497
202867
|
childId: Scalars['ID']['input'];
|
|
201498
202868
|
siteId: Scalars['ID']['input'];
|
|
@@ -203537,12 +204907,18 @@ export declare enum TownsquareGoalSortEnum {
|
|
|
203537
204907
|
LatestUpdateDateDesc = "LATEST_UPDATE_DATE_DESC",
|
|
203538
204908
|
NameAsc = "NAME_ASC",
|
|
203539
204909
|
NameDesc = "NAME_DESC",
|
|
204910
|
+
PhaseIdAsc = "PHASE_ID_ASC",
|
|
204911
|
+
PhaseIdDesc = "PHASE_ID_DESC",
|
|
203540
204912
|
ProjectCountAsc = "PROJECT_COUNT_ASC",
|
|
203541
204913
|
ProjectCountDesc = "PROJECT_COUNT_DESC",
|
|
203542
204914
|
ScoreAsc = "SCORE_ASC",
|
|
203543
204915
|
ScoreDesc = "SCORE_DESC",
|
|
204916
|
+
StartDateAsc = "START_DATE_ASC",
|
|
204917
|
+
StartDateDesc = "START_DATE_DESC",
|
|
203544
204918
|
TargetDateAsc = "TARGET_DATE_ASC",
|
|
203545
204919
|
TargetDateDesc = "TARGET_DATE_DESC",
|
|
204920
|
+
WatcherCountAsc = "WATCHER_COUNT_ASC",
|
|
204921
|
+
WatcherCountDesc = "WATCHER_COUNT_DESC",
|
|
203546
204922
|
WatchingAsc = "WATCHING_ASC",
|
|
203547
204923
|
WatchingDesc = "WATCHING_DESC"
|
|
203548
204924
|
}
|
|
@@ -203777,6 +205153,7 @@ export declare type TownsquareGoalsAppPermissionPolicyInput = {
|
|
|
203777
205153
|
export declare type TownsquareGoalsAppSettings = {
|
|
203778
205154
|
__typename?: 'TownsquareGoalsAppSettings';
|
|
203779
205155
|
aiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
205156
|
+
defaultGoalAccessLevel?: Maybe<TownsquareGoalAccessLevel>;
|
|
203780
205157
|
scoringMode?: Maybe<TownsquareGoalScoringMode>;
|
|
203781
205158
|
};
|
|
203782
205159
|
export declare type TownsquareGoalsArchiveMetricInput = {
|
|
@@ -204567,10 +205944,17 @@ export declare type TownsquareMetricTarget = Node & {
|
|
|
204567
205944
|
__typename?: 'TownsquareMetricTarget';
|
|
204568
205945
|
id: Scalars['ID']['output'];
|
|
204569
205946
|
metric?: Maybe<TownsquareMetric>;
|
|
205947
|
+
metricTargetPeriods?: Maybe<TownsquareMetricTargetPeriodConnection>;
|
|
204570
205948
|
snapshotValue?: Maybe<TownsquareMetricValue>;
|
|
204571
205949
|
startValue?: Maybe<Scalars['Float']['output']>;
|
|
204572
205950
|
targetValue?: Maybe<Scalars['Float']['output']>;
|
|
204573
205951
|
};
|
|
205952
|
+
export declare type TownsquareMetricTargetMetricTargetPeriodsArgs = {
|
|
205953
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
205954
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
205955
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
205956
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
205957
|
+
};
|
|
204574
205958
|
export declare type TownsquareMetricTargetConnection = {
|
|
204575
205959
|
__typename?: 'TownsquareMetricTargetConnection';
|
|
204576
205960
|
edges?: Maybe<Array<Maybe<TownsquareMetricTargetEdge>>>;
|
|
@@ -204581,6 +205965,21 @@ export declare type TownsquareMetricTargetEdge = {
|
|
|
204581
205965
|
cursor: Scalars['String']['output'];
|
|
204582
205966
|
node?: Maybe<TownsquareMetricTarget>;
|
|
204583
205967
|
};
|
|
205968
|
+
export declare type TownsquareMetricTargetPeriod = {
|
|
205969
|
+
__typename?: 'TownsquareMetricTargetPeriod';
|
|
205970
|
+
date?: Maybe<TownsquareTargetDate>;
|
|
205971
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
205972
|
+
};
|
|
205973
|
+
export declare type TownsquareMetricTargetPeriodConnection = {
|
|
205974
|
+
__typename?: 'TownsquareMetricTargetPeriodConnection';
|
|
205975
|
+
edges?: Maybe<Array<Maybe<TownsquareMetricTargetPeriodEdge>>>;
|
|
205976
|
+
pageInfo: PageInfo;
|
|
205977
|
+
};
|
|
205978
|
+
export declare type TownsquareMetricTargetPeriodEdge = {
|
|
205979
|
+
__typename?: 'TownsquareMetricTargetPeriodEdge';
|
|
205980
|
+
cursor: Scalars['String']['output'];
|
|
205981
|
+
node?: Maybe<TownsquareMetricTargetPeriod>;
|
|
205982
|
+
};
|
|
204584
205983
|
export declare enum TownsquareMetricType {
|
|
204585
205984
|
Currency = "CURRENCY",
|
|
204586
205985
|
Numeric = "NUMERIC",
|
|
@@ -206939,6 +208338,11 @@ export declare type TrelloAtlassianIntelligence = {
|
|
|
206939
208338
|
__typename?: 'TrelloAtlassianIntelligence';
|
|
206940
208339
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
206941
208340
|
};
|
|
208341
|
+
export declare type TrelloAtlassianOrganization = {
|
|
208342
|
+
__typename?: 'TrelloAtlassianOrganization';
|
|
208343
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
208344
|
+
id: Scalars['ID']['output'];
|
|
208345
|
+
};
|
|
206942
208346
|
export declare type TrelloAtlassianSite = {
|
|
206943
208347
|
__typename?: 'TrelloAtlassianSite';
|
|
206944
208348
|
resourceId: Scalars['String']['output'];
|
|
@@ -207166,7 +208570,6 @@ export declare type TrelloBoard = Node & TrelloBaseBoard & {
|
|
|
207166
208570
|
premiumFeatures?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
207167
208571
|
shortLink: Scalars['TrelloShortLink']['output'];
|
|
207168
208572
|
shortUrl?: Maybe<Scalars['URL']['output']>;
|
|
207169
|
-
smartActivity?: Maybe<TrelloBoardSmartActivity>;
|
|
207170
208573
|
tags?: Maybe<TrelloTagConnection>;
|
|
207171
208574
|
type?: Maybe<Scalars['String']['output']>;
|
|
207172
208575
|
url?: Maybe<Scalars['URL']['output']>;
|
|
@@ -207481,10 +208884,6 @@ export declare type TrelloBoardSearchResult = {
|
|
|
207481
208884
|
options?: Maybe<TrelloSearchOptions>;
|
|
207482
208885
|
results?: Maybe<TrelloSearchBoardConnection>;
|
|
207483
208886
|
};
|
|
207484
|
-
export declare type TrelloBoardSmartActivity = {
|
|
207485
|
-
__typename?: 'TrelloBoardSmartActivity';
|
|
207486
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
207487
|
-
};
|
|
207488
208887
|
export declare type TrelloBoardStarConnectionUpdated = {
|
|
207489
208888
|
__typename?: 'TrelloBoardStarConnectionUpdated';
|
|
207490
208889
|
edges?: Maybe<Array<TrelloBoardStarUpdatedEdge>>;
|
|
@@ -207937,6 +209336,7 @@ export declare enum TrelloCardExternalSource {
|
|
|
207937
209336
|
Confluence = "CONFLUENCE",
|
|
207938
209337
|
Email = "EMAIL",
|
|
207939
209338
|
GoogleChat = "GOOGLE_CHAT",
|
|
209339
|
+
GoogleGmail = "GOOGLE_GMAIL",
|
|
207940
209340
|
Loom = "LOOM",
|
|
207941
209341
|
Msteams = "MSTEAMS",
|
|
207942
209342
|
Siri = "SIRI",
|
|
@@ -208297,6 +209697,7 @@ export declare type TrelloCompleteOnboardingInput = {
|
|
|
208297
209697
|
export declare type TrelloCompleteOnboardingPayload = Payload & {
|
|
208298
209698
|
__typename?: 'TrelloCompleteOnboardingPayload';
|
|
208299
209699
|
board: TrelloBoard;
|
|
209700
|
+
boardV2?: Maybe<TrelloBaseBoard>;
|
|
208300
209701
|
errors?: Maybe<Array<MutationError>>;
|
|
208301
209702
|
success: Scalars['Boolean']['output'];
|
|
208302
209703
|
workspace?: Maybe<TrelloWorkspace>;
|
|
@@ -208511,6 +209912,8 @@ export declare type TrelloCreateCardFromEmailActionDisplayEntities = {
|
|
|
208511
209912
|
};
|
|
208512
209913
|
export declare type TrelloCreateCardInput = {
|
|
208513
209914
|
agentName?: InputMaybe<Scalars['String']['input']>;
|
|
209915
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
209916
|
+
due?: InputMaybe<Scalars['DateTime']['input']>;
|
|
208514
209917
|
externalSource?: InputMaybe<TrelloCardExternalSource>;
|
|
208515
209918
|
faviconUrl?: InputMaybe<Scalars['String']['input']>;
|
|
208516
209919
|
listId: Scalars['ID']['input'];
|
|
@@ -208965,6 +210368,7 @@ export declare type TrelloEndVoiceCaptureSessionPayload = Payload & {
|
|
|
208965
210368
|
export declare type TrelloEnterprise = Node & {
|
|
208966
210369
|
__typename?: 'TrelloEnterprise';
|
|
208967
210370
|
admins?: Maybe<TrelloMemberConnection>;
|
|
210371
|
+
atlassianOrganization?: Maybe<TrelloAtlassianOrganization>;
|
|
208968
210372
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
208969
210373
|
id: Scalars['ID']['output'];
|
|
208970
210374
|
managedMemberTokensCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -209023,6 +210427,7 @@ export declare type TrelloGenerateBoardBackgroundWithAiPayload = Payload & {
|
|
|
209023
210427
|
__typename?: 'TrelloGenerateBoardBackgroundWithAiPayload';
|
|
209024
210428
|
board?: Maybe<TrelloBaseBoard>;
|
|
209025
210429
|
errors?: Maybe<Array<MutationError>>;
|
|
210430
|
+
member?: Maybe<TrelloMember>;
|
|
209026
210431
|
success: Scalars['Boolean']['output'];
|
|
209027
210432
|
};
|
|
209028
210433
|
export declare type TrelloGenerateCardCoverWithAiInput = {
|
|
@@ -209034,6 +210439,7 @@ export declare type TrelloGenerateCardCoverWithAiPayload = Payload & {
|
|
|
209034
210439
|
__typename?: 'TrelloGenerateCardCoverWithAiPayload';
|
|
209035
210440
|
card?: Maybe<TrelloBaseCard>;
|
|
209036
210441
|
errors?: Maybe<Array<MutationError>>;
|
|
210442
|
+
member?: Maybe<TrelloMember>;
|
|
209037
210443
|
success: Scalars['Boolean']['output'];
|
|
209038
210444
|
};
|
|
209039
210445
|
export declare type TrelloGenerateCardSummaryInput = {
|
|
@@ -209690,6 +211096,7 @@ export declare type TrelloMemberOwnedWebhookEdge = {
|
|
|
209690
211096
|
export declare type TrelloMemberOwnedWebhookLegacyApplication = {
|
|
209691
211097
|
__typename?: 'TrelloMemberOwnedWebhookLegacyApplication';
|
|
209692
211098
|
id?: Maybe<Scalars['ID']['output']>;
|
|
211099
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
209693
211100
|
name?: Maybe<Scalars['String']['output']>;
|
|
209694
211101
|
};
|
|
209695
211102
|
export declare type TrelloMemberOwnedWebhookOAuth2Client = {
|
|
@@ -209745,6 +211152,7 @@ export declare type TrelloMemberUpdated = {
|
|
|
209745
211152
|
planner?: Maybe<TrelloPlannerUpdated>;
|
|
209746
211153
|
referral?: Maybe<TrelloMemberReferralUpdated>;
|
|
209747
211154
|
referrer?: Maybe<TrelloMemberReferrerUpdated>;
|
|
211155
|
+
usageLimits?: Maybe<Array<TrelloUsageLimitUpdated>>;
|
|
209748
211156
|
username?: Maybe<Scalars['String']['output']>;
|
|
209749
211157
|
};
|
|
209750
211158
|
export declare type TrelloMemberUpdatedConnection = {
|
|
@@ -211706,6 +213114,7 @@ export declare type TrelloRevokeMemberOAuth2AccessGrantsPayload = Payload & {
|
|
|
211706
213114
|
__typename?: 'TrelloRevokeMemberOAuth2AccessGrantsPayload';
|
|
211707
213115
|
errors?: Maybe<Array<MutationError>>;
|
|
211708
213116
|
failedOAuth2ClientIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
213117
|
+
memberOAuth2AccessGrants?: Maybe<TrelloMemberOAuth2AccessGrantsResult>;
|
|
211709
213118
|
success: Scalars['Boolean']['output'];
|
|
211710
213119
|
};
|
|
211711
213120
|
export declare type TrelloRotateOAuth2ClientSecretInput = {
|
|
@@ -212588,6 +213997,7 @@ export declare enum TrelloUsageLimitKey {
|
|
|
212588
213997
|
AiBoardBackgroundGeneration = "AI_BOARD_BACKGROUND_GENERATION",
|
|
212589
213998
|
AiCardCoverGeneration = "AI_CARD_COVER_GENERATION"
|
|
212590
213999
|
}
|
|
214000
|
+
export declare type TrelloUsageLimitUpdated = TrelloUsageLimit;
|
|
212591
214001
|
export declare type TrelloUserGeneratedText = {
|
|
212592
214002
|
__typename?: 'TrelloUserGeneratedText';
|
|
212593
214003
|
text?: Maybe<Scalars['String']['output']>;
|
|
@@ -213717,6 +215127,7 @@ export declare type UnifiedGamificationBadgesArgs = {
|
|
|
213717
215127
|
export declare type UnifiedGamificationBadge = UnifiedIBadge & UnifiedINode & {
|
|
213718
215128
|
__typename?: 'UnifiedGamificationBadge';
|
|
213719
215129
|
actionUrl?: Maybe<Scalars['String']['output']>;
|
|
215130
|
+
category?: Maybe<UnifiedGamificationBadgeCategory>;
|
|
213720
215131
|
description?: Maybe<Scalars['String']['output']>;
|
|
213721
215132
|
id: Scalars['ID']['output'];
|
|
213722
215133
|
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -213724,6 +215135,10 @@ export declare type UnifiedGamificationBadge = UnifiedIBadge & UnifiedINode & {
|
|
|
213724
215135
|
name?: Maybe<Scalars['String']['output']>;
|
|
213725
215136
|
type?: Maybe<Scalars['String']['output']>;
|
|
213726
215137
|
};
|
|
215138
|
+
export declare enum UnifiedGamificationBadgeCategory {
|
|
215139
|
+
Course = "COURSE",
|
|
215140
|
+
LearningPath = "LEARNING_PATH"
|
|
215141
|
+
}
|
|
213727
215142
|
export declare type UnifiedGamificationBadgeEdge = UnifiedIEdge & {
|
|
213728
215143
|
__typename?: 'UnifiedGamificationBadgeEdge';
|
|
213729
215144
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -213859,6 +215274,8 @@ export declare type UnifiedLearning = UnifiedINode & {
|
|
|
213859
215274
|
id: Scalars['ID']['output'];
|
|
213860
215275
|
recentCourses?: Maybe<UnifiedURecentCourseResult>;
|
|
213861
215276
|
recentCoursesBadges?: Maybe<UnifiedUProfileBadgesResult>;
|
|
215277
|
+
recentLearningAchievementBadges?: Maybe<UnifiedUProfileBadgesResult>;
|
|
215278
|
+
recentLearningPathBadges?: Maybe<UnifiedUProfileBadgesResult>;
|
|
213862
215279
|
};
|
|
213863
215280
|
export declare type UnifiedLearningCertificationsArgs = {
|
|
213864
215281
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -213876,6 +215293,14 @@ export declare type UnifiedLearningRecentCoursesBadgesArgs = {
|
|
|
213876
215293
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
213877
215294
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
213878
215295
|
};
|
|
215296
|
+
export declare type UnifiedLearningRecentLearningAchievementBadgesArgs = {
|
|
215297
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
215298
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
215299
|
+
};
|
|
215300
|
+
export declare type UnifiedLearningRecentLearningPathBadgesArgs = {
|
|
215301
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
215302
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
215303
|
+
};
|
|
213879
215304
|
export declare type UnifiedLearningCertification = UnifiedINode & {
|
|
213880
215305
|
__typename?: 'UnifiedLearningCertification';
|
|
213881
215306
|
activeDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -214106,6 +215531,7 @@ export declare type UnifiedProfileBadgesArgs = {
|
|
|
214106
215531
|
export declare type UnifiedProfileBadge = UnifiedIBadge & UnifiedINode & {
|
|
214107
215532
|
__typename?: 'UnifiedProfileBadge';
|
|
214108
215533
|
actionUrl?: Maybe<Scalars['String']['output']>;
|
|
215534
|
+
category?: Maybe<UnifiedGamificationBadgeCategory>;
|
|
214109
215535
|
description?: Maybe<Scalars['String']['output']>;
|
|
214110
215536
|
id: Scalars['ID']['output'];
|
|
214111
215537
|
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -215063,6 +216489,7 @@ export declare type UpdatePolarisViewInput = {
|
|
|
215063
216489
|
fields?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
215064
216490
|
filter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
215065
216491
|
groupBy?: InputMaybe<Scalars['ID']['input']>;
|
|
216492
|
+
groupOrder?: InputMaybe<Scalars['String']['input']>;
|
|
215066
216493
|
groupValues?: InputMaybe<Array<PolarisGroupValueInput>>;
|
|
215067
216494
|
groupsFilter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
215068
216495
|
hidden?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -215084,6 +216511,7 @@ export declare type UpdatePolarisViewInput = {
|
|
|
215084
216511
|
treeConfig?: InputMaybe<UpdatePolarisTreeConfig>;
|
|
215085
216512
|
userJql?: InputMaybe<Scalars['String']['input']>;
|
|
215086
216513
|
verticalGroupBy?: InputMaybe<Scalars['ID']['input']>;
|
|
216514
|
+
verticalGroupOrder?: InputMaybe<Scalars['String']['input']>;
|
|
215087
216515
|
verticalGroupValues?: InputMaybe<Array<PolarisGroupValueInput>>;
|
|
215088
216516
|
verticalGroupsFilter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
215089
216517
|
view?: InputMaybe<Scalars['ID']['input']>;
|