@forge/cli-shared 8.23.1-next.2 → 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 +11 -0
- package/out/graphql/graphql-types.d.ts +871 -86
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +114 -59
- 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']>;
|
|
@@ -2063,6 +2153,16 @@ export declare enum AvpFilterOperator {
|
|
|
2063
2153
|
And = "AND",
|
|
2064
2154
|
Or = "OR"
|
|
2065
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
|
+
}
|
|
2066
2166
|
export declare type AvpGetDashboardIdBySlugPayload = {
|
|
2067
2167
|
__typename?: 'AVPGetDashboardIdBySlugPayload';
|
|
2068
2168
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -2083,6 +2183,11 @@ export declare type AvpGetDashboardTemplatesInput = {
|
|
|
2083
2183
|
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
2084
2184
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
2085
2185
|
};
|
|
2186
|
+
export declare type AvpGetJiraDashboardMigrationStatusInput = {
|
|
2187
|
+
cloudId: Scalars['ID']['input'];
|
|
2188
|
+
jiraDashboardId: Scalars['ID']['input'];
|
|
2189
|
+
workspaceAri: Scalars['ID']['input'];
|
|
2190
|
+
};
|
|
2086
2191
|
export declare type AvpGetReadOnlyDashboardInput = {
|
|
2087
2192
|
cloudId: Scalars['ID']['input'];
|
|
2088
2193
|
integrationId?: InputMaybe<AvpIntegrationId>;
|
|
@@ -2110,6 +2215,22 @@ export declare enum AvpIntegrationId {
|
|
|
2110
2215
|
JsmSummaryPage = "JSM_SUMMARY_PAGE",
|
|
2111
2216
|
Townsquare = "TOWNSQUARE"
|
|
2112
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
|
+
}
|
|
2113
2234
|
export declare type AvpJqlSource = {
|
|
2114
2235
|
__typename?: 'AVPJqlSource';
|
|
2115
2236
|
filterId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -2444,8 +2565,10 @@ export declare type AvpRemoveDashboardRowPayload = Payload & {
|
|
|
2444
2565
|
export declare type AvpSearchDashboardsInput = {
|
|
2445
2566
|
ascending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2446
2567
|
category?: InputMaybe<Scalars['String']['input']>;
|
|
2568
|
+
containerAri?: InputMaybe<Scalars['ID']['input']>;
|
|
2447
2569
|
creatorAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2448
2570
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2571
|
+
integrationId?: InputMaybe<Scalars['String']['input']>;
|
|
2449
2572
|
sortKey?: InputMaybe<AvpDashboardSortKey>;
|
|
2450
2573
|
starredOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2451
2574
|
status?: InputMaybe<AvpDashboardStatus>;
|
|
@@ -5275,7 +5398,7 @@ export declare type AgentSessionEdge = {
|
|
|
5275
5398
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
5276
5399
|
node?: Maybe<AgentSession>;
|
|
5277
5400
|
};
|
|
5278
|
-
export declare type AgentSessionLinkedEntity = JiraIssue;
|
|
5401
|
+
export declare type AgentSessionLinkedEntity = ConfluencePage | JiraIssue;
|
|
5279
5402
|
export declare type AgentSessionNode = {
|
|
5280
5403
|
id?: Maybe<Scalars['ID']['output']>;
|
|
5281
5404
|
};
|
|
@@ -5558,6 +5681,7 @@ export declare type AgentStudioAssistantConversation = {
|
|
|
5558
5681
|
id?: Maybe<Scalars['ID']['output']>;
|
|
5559
5682
|
lastMessageDate?: Maybe<Scalars['String']['output']>;
|
|
5560
5683
|
name?: Maybe<Scalars['String']['output']>;
|
|
5684
|
+
resolutionReason?: Maybe<Scalars['String']['output']>;
|
|
5561
5685
|
resolutionStatus?: Maybe<AgentStudioResolutionStatus>;
|
|
5562
5686
|
};
|
|
5563
5687
|
export declare type AgentStudioAssistantConversationEdge = {
|
|
@@ -7011,6 +7135,14 @@ export declare type AgentWorkspaceAgentShiftsEdge = {
|
|
|
7011
7135
|
cursor: Scalars['String']['output'];
|
|
7012
7136
|
node: AgentWorkspaceAgentShifts;
|
|
7013
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
|
+
};
|
|
7014
7146
|
export declare type AgentWorkspaceAgentsPageInfo = {
|
|
7015
7147
|
__typename?: 'AgentWorkspaceAgentsPageInfo';
|
|
7016
7148
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -7268,6 +7400,7 @@ export declare type AgentWorkspaceCreateDraftedRoutingTableEntriesInput = {
|
|
|
7268
7400
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
7269
7401
|
fieldId: Scalars['String']['input'];
|
|
7270
7402
|
projectKey: Scalars['String']['input'];
|
|
7403
|
+
serviceFieldType: Scalars['String']['input'];
|
|
7271
7404
|
};
|
|
7272
7405
|
export declare type AgentWorkspaceCreateDraftedRoutingTableEntriesPayload = {
|
|
7273
7406
|
__typename?: 'AgentWorkspaceCreateDraftedRoutingTableEntriesPayload';
|
|
@@ -7361,23 +7494,16 @@ export declare type AgentWorkspaceDraftedRoutingTableEntry = {
|
|
|
7361
7494
|
description?: Maybe<Scalars['String']['output']>;
|
|
7362
7495
|
serviceId: Scalars['ID']['output'];
|
|
7363
7496
|
serviceName: Scalars['String']['output'];
|
|
7364
|
-
skills
|
|
7497
|
+
skills?: Maybe<Array<AgentWorkspaceSkill>>;
|
|
7365
7498
|
team?: Maybe<TeamV2>;
|
|
7366
7499
|
teamAri?: Maybe<Scalars['ID']['output']>;
|
|
7367
7500
|
version: Scalars['Int']['output'];
|
|
7368
7501
|
};
|
|
7369
7502
|
export declare type AgentWorkspaceDraftedRoutingTableEntryPatch = {
|
|
7370
|
-
confidence?: InputMaybe<Scalars['Float']['input']>;
|
|
7371
7503
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7372
|
-
serviceName?: InputMaybe<Scalars['String']['input']>;
|
|
7373
7504
|
skills?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7374
|
-
source?: InputMaybe<AgentWorkspaceDraftedRoutingTableEntrySource>;
|
|
7375
7505
|
teamAri?: InputMaybe<Scalars['ID']['input']>;
|
|
7376
7506
|
};
|
|
7377
|
-
export declare enum AgentWorkspaceDraftedRoutingTableEntrySource {
|
|
7378
|
-
Manual = "MANUAL",
|
|
7379
|
-
Rovo = "ROVO"
|
|
7380
|
-
}
|
|
7381
7507
|
export declare type AgentWorkspaceDraftedRoutingTableStatus = {
|
|
7382
7508
|
__typename?: 'AgentWorkspaceDraftedRoutingTableStatus';
|
|
7383
7509
|
serviceFieldId?: Maybe<Scalars['String']['output']>;
|
|
@@ -7443,11 +7569,7 @@ export declare type AgentWorkspaceGroupTooLarge = {
|
|
|
7443
7569
|
export declare type AgentWorkspaceIssueRebalancingRecommendation = {
|
|
7444
7570
|
__typename?: 'AgentWorkspaceIssueRebalancingRecommendation';
|
|
7445
7571
|
issueARI: Scalars['ID']['output'];
|
|
7446
|
-
projectedReceiverUtilization: Scalars['Float']['output'];
|
|
7447
|
-
projectedSourceUtilization: Scalars['Float']['output'];
|
|
7448
7572
|
recommendations: Array<AgentWorkspaceRebalancingRecommendation>;
|
|
7449
|
-
sourceAgentId: Scalars['ID']['output'];
|
|
7450
|
-
toAgentId: Scalars['ID']['output'];
|
|
7451
7573
|
};
|
|
7452
7574
|
export declare type AgentWorkspaceLiveRoutingTable = {
|
|
7453
7575
|
__typename?: 'AgentWorkspaceLiveRoutingTable';
|
|
@@ -7463,6 +7585,15 @@ export declare type AgentWorkspacePageInfo = {
|
|
|
7463
7585
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
7464
7586
|
hasNextPage: Scalars['Boolean']['output'];
|
|
7465
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
|
+
};
|
|
7466
7597
|
export declare type AgentWorkspaceProjectDefaultAvailability = {
|
|
7467
7598
|
__typename?: 'AgentWorkspaceProjectDefaultAvailability';
|
|
7468
7599
|
projectId: Scalars['ID']['output'];
|
|
@@ -7542,6 +7673,7 @@ export declare type AgentWorkspaceProjectSkillService = {
|
|
|
7542
7673
|
};
|
|
7543
7674
|
export declare type AgentWorkspaceRebalancingRecommendation = {
|
|
7544
7675
|
__typename?: 'AgentWorkspaceRebalancingRecommendation';
|
|
7676
|
+
sourceAgentId: Scalars['ID']['output'];
|
|
7545
7677
|
toAgentId: Scalars['ID']['output'];
|
|
7546
7678
|
};
|
|
7547
7679
|
export declare type AgentWorkspaceRecommendationError = {
|
|
@@ -7659,9 +7791,9 @@ export declare type AgentWorkspaceRoutingHistoryUserEntity = AgentWorkspaceRouti
|
|
|
7659
7791
|
export declare type AgentWorkspaceRoutingTableEntry = {
|
|
7660
7792
|
__typename?: 'AgentWorkspaceRoutingTableEntry';
|
|
7661
7793
|
description: Scalars['String']['output'];
|
|
7662
|
-
|
|
7663
|
-
serviceFieldValue: Scalars['String']['output'];
|
|
7794
|
+
serviceId: Scalars['ID']['output'];
|
|
7664
7795
|
serviceName: Scalars['String']['output'];
|
|
7796
|
+
skills?: Maybe<Array<AgentWorkspaceSkill>>;
|
|
7665
7797
|
team?: Maybe<TeamV2>;
|
|
7666
7798
|
teamAri: Scalars['ID']['output'];
|
|
7667
7799
|
};
|
|
@@ -7733,13 +7865,16 @@ export declare type AgentWorkspaceScheduleError = {
|
|
|
7733
7865
|
export declare enum AgentWorkspaceScheduleErrorCode {
|
|
7734
7866
|
AgentNotFound = "AGENT_NOT_FOUND",
|
|
7735
7867
|
AgentNotInTeam = "AGENT_NOT_IN_TEAM",
|
|
7868
|
+
ConcurrentModification = "CONCURRENT_MODIFICATION",
|
|
7736
7869
|
Forbidden = "FORBIDDEN",
|
|
7737
7870
|
InternalError = "INTERNAL_ERROR",
|
|
7871
|
+
InvalidGapWindow = "INVALID_GAP_WINDOW",
|
|
7738
7872
|
InvalidRecurrence = "INVALID_RECURRENCE",
|
|
7739
7873
|
InvalidTimeRange = "INVALID_TIME_RANGE",
|
|
7740
7874
|
ProjectNotFound = "PROJECT_NOT_FOUND",
|
|
7741
7875
|
ScheduleDeleted = "SCHEDULE_DELETED",
|
|
7742
7876
|
ScheduleNotFound = "SCHEDULE_NOT_FOUND",
|
|
7877
|
+
ShiftOverrideNotFound = "SHIFT_OVERRIDE_NOT_FOUND",
|
|
7743
7878
|
TeamNotFound = "TEAM_NOT_FOUND",
|
|
7744
7879
|
ValidationError = "VALIDATION_ERROR"
|
|
7745
7880
|
}
|
|
@@ -8130,11 +8265,9 @@ export declare type AgentWorkspaceTeamRebalancingSummariesInput = {
|
|
|
8130
8265
|
};
|
|
8131
8266
|
export declare type AgentWorkspaceTeamRebalancingSummary = {
|
|
8132
8267
|
__typename?: 'AgentWorkspaceTeamRebalancingSummary';
|
|
8133
|
-
|
|
8268
|
+
averageUtilization: Scalars['Float']['output'];
|
|
8134
8269
|
overloadedAgentCount: Scalars['Int']['output'];
|
|
8135
8270
|
teamARI: Scalars['ID']['output'];
|
|
8136
|
-
totalCapacity: Scalars['Int']['output'];
|
|
8137
|
-
totalCurrentLoad: Scalars['Int']['output'];
|
|
8138
8271
|
totalWorkItemCount: Scalars['Int']['output'];
|
|
8139
8272
|
};
|
|
8140
8273
|
export declare type AgentWorkspaceTeamSchedules = {
|
|
@@ -8297,6 +8430,11 @@ export declare type AgentWorkspaceUserEdge = {
|
|
|
8297
8430
|
cursor: Scalars['String']['output'];
|
|
8298
8431
|
node: AgentWorkspaceUser;
|
|
8299
8432
|
};
|
|
8433
|
+
export declare type AgentWorkspaceUtilizationForPendingChangesInput = {
|
|
8434
|
+
agents: Array<AgentWorkspacePendingAgentUtilizationChangesInput>;
|
|
8435
|
+
cloudId: Scalars['ID']['input'];
|
|
8436
|
+
projectKey: Scalars['String']['input'];
|
|
8437
|
+
};
|
|
8300
8438
|
export declare type AiCoreApiCsvExportInput = {
|
|
8301
8439
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
8302
8440
|
fromDate?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -14545,6 +14683,34 @@ export declare type AssetsVerticalWorkbenchDashboardPayload = Payload & {
|
|
|
14545
14683
|
success: Scalars['Boolean']['output'];
|
|
14546
14684
|
workbenchDashboard?: Maybe<AssetsVerticalWorkbenchDashboard>;
|
|
14547
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
|
+
};
|
|
14548
14714
|
export declare type AssignIssueParentInput = {
|
|
14549
14715
|
boardId: Scalars['ID']['input'];
|
|
14550
14716
|
issueIds: Array<Scalars['ID']['input']>;
|
|
@@ -18588,12 +18754,10 @@ export declare type CloudifyRecommendationInput = {
|
|
|
18588
18754
|
title: Scalars['String']['input'];
|
|
18589
18755
|
};
|
|
18590
18756
|
export declare enum CloudifyRecommendationStatus {
|
|
18591
|
-
Disabled = "DISABLED",
|
|
18592
|
-
Enabled = "ENABLED",
|
|
18593
18757
|
Failed = "FAILED",
|
|
18594
18758
|
New = "NEW",
|
|
18759
|
+
Prepared = "PREPARED",
|
|
18595
18760
|
Preparing = "PREPARING",
|
|
18596
|
-
ReadyForReview = "READY_FOR_REVIEW",
|
|
18597
18761
|
Rejected = "REJECTED"
|
|
18598
18762
|
}
|
|
18599
18763
|
export declare type CloudifyRecommendationStep = {
|
|
@@ -19312,7 +19476,7 @@ export declare type CommerceExpBillToParty = {
|
|
|
19312
19476
|
taxId?: Maybe<Scalars['String']['output']>;
|
|
19313
19477
|
taxIds?: Maybe<Array<Maybe<CommerceExpTaxId>>>;
|
|
19314
19478
|
};
|
|
19315
|
-
export declare type CommerceExpBillToPartyResult = CommerceExpBillToParty | QueryError;
|
|
19479
|
+
export declare type CommerceExpBillToPartyResult = CommerceExpBillToParty | CommerceExpEmptyBillToParty | QueryError;
|
|
19316
19480
|
export declare type CommerceExpBillingBehaviour = {
|
|
19317
19481
|
__typename?: 'CommerceExpBillingBehaviour';
|
|
19318
19482
|
startTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
@@ -19422,6 +19586,7 @@ export declare type CommerceExpCcpEntitlement = {
|
|
|
19422
19586
|
actions?: Maybe<CommerceExpEntitlementActions>;
|
|
19423
19587
|
actions2?: Maybe<CommerceExpEntitlementActionsV2>;
|
|
19424
19588
|
allRelatedEntitlementsForBac?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
19589
|
+
allowanceExemptions?: Maybe<CommerceExpUtsAllowanceExemptionList>;
|
|
19425
19590
|
allowancePoolContributors?: Maybe<Array<Maybe<CommerceExpAllowancePoolContributor>>>;
|
|
19426
19591
|
availableAddonsToPurchase?: Maybe<Array<CommerceExpAvailableAddonToPurchase>>;
|
|
19427
19592
|
billEstimateForAutoscalingAndLicensedChargeElements?: Maybe<CommerceExpBillEstimateResult>;
|
|
@@ -19482,6 +19647,9 @@ export declare type CommerceExpCcpEntitlement = {
|
|
|
19482
19647
|
export declare type CommerceExpCcpEntitlementAccountModificationForBacArgs = {
|
|
19483
19648
|
destinationTxa: Scalars['ID']['input'];
|
|
19484
19649
|
};
|
|
19650
|
+
export declare type CommerceExpCcpEntitlementAllowanceExemptionsArgs = {
|
|
19651
|
+
scopeType?: InputMaybe<CommerceExpUtsAllowanceExemptionScopeType>;
|
|
19652
|
+
};
|
|
19485
19653
|
export declare type CommerceExpCcpEntitlementBillEstimateForChargeElementArgs = {
|
|
19486
19654
|
chargeElement: Scalars['String']['input'];
|
|
19487
19655
|
};
|
|
@@ -20790,6 +20958,10 @@ export declare type CommerceExpEligiblePromotionWindow = {
|
|
|
20790
20958
|
endTime?: Maybe<Scalars['DateTime']['output']>;
|
|
20791
20959
|
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
20792
20960
|
};
|
|
20961
|
+
export declare type CommerceExpEmptyBillToParty = {
|
|
20962
|
+
__typename?: 'CommerceExpEmptyBillToParty';
|
|
20963
|
+
identifier: Scalars['String']['output'];
|
|
20964
|
+
};
|
|
20793
20965
|
export declare type CommerceExpEndCollectionOrderInput = {
|
|
20794
20966
|
entitlementId: Scalars['String']['input'];
|
|
20795
20967
|
};
|
|
@@ -22837,6 +23009,33 @@ export declare enum CommerceExpUserRole {
|
|
|
22837
23009
|
BillingAdmin = "BILLING_ADMIN",
|
|
22838
23010
|
CustomerContact = "CUSTOMER_CONTACT"
|
|
22839
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
|
+
}
|
|
22840
23039
|
export declare type CommerceExpValidOrderError = {
|
|
22841
23040
|
__typename?: 'CommerceExpValidOrderError';
|
|
22842
23041
|
orderPreviewError?: Maybe<CommerceExpCcpOrderValidationError>;
|
|
@@ -31014,6 +31213,16 @@ export declare type ConfluenceMarkdownModeUpdated = {
|
|
|
31014
31213
|
__typename?: 'ConfluenceMarkdownModeUpdated';
|
|
31015
31214
|
isMarkdownMode?: Maybe<Scalars['Boolean']['output']>;
|
|
31016
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
|
+
};
|
|
31017
31226
|
export declare type ConfluenceMediaTokenData = {
|
|
31018
31227
|
__typename?: 'ConfluenceMediaTokenData';
|
|
31019
31228
|
clientId: Scalars['String']['output'];
|
|
@@ -35540,6 +35749,7 @@ export declare enum ContainerType {
|
|
|
35540
35749
|
export declare type Content = {
|
|
35541
35750
|
__typename?: 'Content';
|
|
35542
35751
|
aiProperty?: Maybe<ConfluenceContentAiSummaryResponse>;
|
|
35752
|
+
allCommentAgentSessions?: Maybe<AgentSessionAssociationConnection>;
|
|
35543
35753
|
ancestors?: Maybe<Array<Maybe<Content>>>;
|
|
35544
35754
|
archivableDescendantsCount: Scalars['Long']['output'];
|
|
35545
35755
|
archiveNote?: Maybe<Scalars['String']['output']>;
|
|
@@ -35623,6 +35833,11 @@ export declare type ContentAiPropertyArgs = {
|
|
|
35623
35833
|
entryPoint?: InputMaybe<Scalars['String']['input']>;
|
|
35624
35834
|
objectType?: KnowledgeGraphObjectType;
|
|
35625
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
|
+
};
|
|
35626
35841
|
export declare type ContentAttachmentsArgs = {
|
|
35627
35842
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35628
35843
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -36316,7 +36531,8 @@ export declare type ConvoAiErrorMessage = ConvoAiAgentMessage & {
|
|
|
36316
36531
|
};
|
|
36317
36532
|
export declare enum ConvoAiErrorMessageTemplate {
|
|
36318
36533
|
AcceptableUseViolations = "ACCEPTABLE_USE_VIOLATIONS",
|
|
36319
|
-
Error = "ERROR"
|
|
36534
|
+
Error = "ERROR",
|
|
36535
|
+
PreExecutionError = "PRE_EXECUTION_ERROR"
|
|
36320
36536
|
}
|
|
36321
36537
|
export declare type ConvoAiHomeThread = {
|
|
36322
36538
|
__typename?: 'ConvoAiHomeThread';
|
|
@@ -36376,7 +36592,7 @@ export declare type ConvoAiHomeThreadsFirstPartySourceType = BitbucketPullReques
|
|
|
36376
36592
|
export declare type ConvoAiHomeThreadsInput = {
|
|
36377
36593
|
promptOverride?: InputMaybe<Scalars['String']['input']>;
|
|
36378
36594
|
skipCache?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36379
|
-
userId
|
|
36595
|
+
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
36380
36596
|
};
|
|
36381
36597
|
export declare type ConvoAiHomeThreadsResult = {
|
|
36382
36598
|
__typename?: 'ConvoAiHomeThreadsResult';
|
|
@@ -36578,6 +36794,7 @@ export declare type ConvoAiThirdPartyRelatedLink = {
|
|
|
36578
36794
|
};
|
|
36579
36795
|
export declare type ConvoAiTraceMessage = ConvoAiAgentMessage & {
|
|
36580
36796
|
__typename?: 'ConvoAiTraceMessage';
|
|
36797
|
+
contentIsMarkdown?: Maybe<Scalars['Boolean']['output']>;
|
|
36581
36798
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
36582
36799
|
messageTemplate: Scalars['String']['output'];
|
|
36583
36800
|
timeCreated: Scalars['DateTime']['output'];
|
|
@@ -38770,6 +38987,7 @@ export declare type CsmAiWidgetConfig = {
|
|
|
38770
38987
|
__typename?: 'CsmAiWidgetConfig';
|
|
38771
38988
|
allowedDomains?: Maybe<Array<Scalars['String']['output']>>;
|
|
38772
38989
|
clientKeys?: Maybe<CsmAiWidgetClientKeysResult>;
|
|
38990
|
+
consentForm?: Maybe<CsmAiWidgetConsentForm>;
|
|
38773
38991
|
description?: Maybe<Scalars['String']['output']>;
|
|
38774
38992
|
id: Scalars['ID']['output'];
|
|
38775
38993
|
isAnonymousAccessEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -38784,6 +39002,21 @@ export declare type CsmAiWidgetConfigSnippetsArgs = {
|
|
|
38784
39002
|
authType: CsmAiSnippetAuthType;
|
|
38785
39003
|
};
|
|
38786
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
|
+
};
|
|
38787
39020
|
export declare type CsmAiWidgetIcon = {
|
|
38788
39021
|
__typename?: 'CsmAiWidgetIcon';
|
|
38789
39022
|
type: CsmAiWidgetIconType;
|
|
@@ -38813,6 +39046,7 @@ export declare enum CsmAiWidgetType {
|
|
|
38813
39046
|
}
|
|
38814
39047
|
export declare type CsmAiWidgetUpdateInput = {
|
|
38815
39048
|
allowedDomains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
39049
|
+
consentForm?: InputMaybe<CsmAiWidgetConsentFormInput>;
|
|
38816
39050
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
38817
39051
|
isAnonymousAccessEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38818
39052
|
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -41992,6 +42226,11 @@ export declare type DevAiRemoveContainerConfigVariablePayload = Payload & {
|
|
|
41992
42226
|
success: Scalars['Boolean']['output'];
|
|
41993
42227
|
};
|
|
41994
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",
|
|
41995
42234
|
Jira = "JIRA",
|
|
41996
42235
|
JiraAndConfluence = "JIRA_AND_CONFLUENCE",
|
|
41997
42236
|
NoActiveProduct = "NO_ACTIVE_PRODUCT",
|
|
@@ -42090,6 +42329,7 @@ export declare type DevAiRovoDevCreatePullRequestPayload = Payload & {
|
|
|
42090
42329
|
};
|
|
42091
42330
|
export declare type DevAiRovoDevCreateSessionByCloudIdInput = {
|
|
42092
42331
|
automationInvokerId?: InputMaybe<Scalars['String']['input']>;
|
|
42332
|
+
automationRuleId?: InputMaybe<Scalars['String']['input']>;
|
|
42093
42333
|
cloudId: Scalars['ID']['input'];
|
|
42094
42334
|
linkConversationId?: InputMaybe<Scalars['String']['input']>;
|
|
42095
42335
|
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
@@ -42176,6 +42416,7 @@ export declare type DevAiRovoDevSession = Node & {
|
|
|
42176
42416
|
__typename?: 'DevAiRovoDevSession';
|
|
42177
42417
|
accountId?: Maybe<Scalars['ID']['output']>;
|
|
42178
42418
|
automationInvokerId?: Maybe<Scalars['String']['output']>;
|
|
42419
|
+
automationRuleId?: Maybe<Scalars['String']['output']>;
|
|
42179
42420
|
buildStatus?: Maybe<DevAiRovoDevBuildStatus>;
|
|
42180
42421
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
42181
42422
|
editorPath?: Maybe<Scalars['String']['output']>;
|
|
@@ -45158,9 +45399,11 @@ export declare enum EcosystemRollingReleaseStatus {
|
|
|
45158
45399
|
}
|
|
45159
45400
|
export declare type EcosystemSiteEntitlement = {
|
|
45160
45401
|
__typename?: 'EcosystemSiteEntitlement';
|
|
45402
|
+
appKey?: Maybe<Scalars['String']['output']>;
|
|
45161
45403
|
entitlementId: Scalars['String']['output'];
|
|
45162
45404
|
productKey?: Maybe<Scalars['String']['output']>;
|
|
45163
45405
|
status?: Maybe<Scalars['String']['output']>;
|
|
45406
|
+
transactionAccountId?: Maybe<Scalars['String']['output']>;
|
|
45164
45407
|
};
|
|
45165
45408
|
export declare type EcosystemSiteEntitlementsResult = {
|
|
45166
45409
|
__typename?: 'EcosystemSiteEntitlementsResult';
|
|
@@ -45264,8 +45507,10 @@ export declare type EmbeddedContent = {
|
|
|
45264
45507
|
};
|
|
45265
45508
|
export declare type EmbeddedMediaToken = {
|
|
45266
45509
|
__typename?: 'EmbeddedMediaToken';
|
|
45510
|
+
clientId?: Maybe<Scalars['String']['output']>;
|
|
45267
45511
|
collectionIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
45268
45512
|
contentId?: Maybe<Scalars['ID']['output']>;
|
|
45513
|
+
descriptors?: Maybe<Array<Maybe<ConfluenceMediaItemDescriptor>>>;
|
|
45269
45514
|
expiryDateTime?: Maybe<Scalars['String']['output']>;
|
|
45270
45515
|
fileIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
45271
45516
|
links?: Maybe<LinksContextBase>;
|
|
@@ -45273,8 +45518,10 @@ export declare type EmbeddedMediaToken = {
|
|
|
45273
45518
|
};
|
|
45274
45519
|
export declare type EmbeddedMediaTokenV2 = {
|
|
45275
45520
|
__typename?: 'EmbeddedMediaTokenV2';
|
|
45521
|
+
clientId?: Maybe<Scalars['String']['output']>;
|
|
45276
45522
|
collectionIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
45277
45523
|
contentId?: Maybe<Scalars['ID']['output']>;
|
|
45524
|
+
descriptors?: Maybe<Array<Maybe<ConfluenceMediaItemDescriptorV2>>>;
|
|
45278
45525
|
expiryDateTime?: Maybe<Scalars['String']['output']>;
|
|
45279
45526
|
fileIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
45280
45527
|
mediaUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -45637,7 +45884,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
45637
45884
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
45638
45885
|
node?: Maybe<ExternalAssociation>;
|
|
45639
45886
|
};
|
|
45640
|
-
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;
|
|
45641
45888
|
export declare type ExternalAttachment = {
|
|
45642
45889
|
__typename?: 'ExternalAttachment';
|
|
45643
45890
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -45756,13 +46003,18 @@ export declare type ExternalCalendarEvent = Node & {
|
|
|
45756
46003
|
createdBy?: Maybe<ExternalUser>;
|
|
45757
46004
|
description?: Maybe<Scalars['String']['output']>;
|
|
45758
46005
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
46006
|
+
division?: Maybe<Scalars['String']['output']>;
|
|
46007
|
+
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
45759
46008
|
eventEndTime?: Maybe<Scalars['String']['output']>;
|
|
45760
46009
|
eventStartTime?: Maybe<Scalars['String']['output']>;
|
|
45761
46010
|
eventType?: Maybe<ExternalEventType>;
|
|
45762
46011
|
exceedsMaxAttendees?: Maybe<Scalars['Boolean']['output']>;
|
|
45763
46012
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
46013
|
+
groupEventType?: Maybe<Scalars['String']['output']>;
|
|
45764
46014
|
id: Scalars['ID']['output'];
|
|
45765
46015
|
isAllDayEvent?: Maybe<Scalars['Boolean']['output']>;
|
|
46016
|
+
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
46017
|
+
isPrivate?: Maybe<Scalars['Boolean']['output']>;
|
|
45766
46018
|
isRecurringEvent?: Maybe<Scalars['Boolean']['output']>;
|
|
45767
46019
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
45768
46020
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
@@ -45772,6 +46024,7 @@ export declare type ExternalCalendarEvent = Node & {
|
|
|
45772
46024
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
45773
46025
|
provider?: Maybe<ExternalProvider>;
|
|
45774
46026
|
recordingUrl?: Maybe<Scalars['String']['output']>;
|
|
46027
|
+
recurrence?: Maybe<ExternalRecurrence>;
|
|
45775
46028
|
recurringEventId?: Maybe<Scalars['String']['output']>;
|
|
45776
46029
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
45777
46030
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
@@ -46391,8 +46644,13 @@ export declare enum ExternalDesignType {
|
|
|
46391
46644
|
}
|
|
46392
46645
|
export declare type ExternalDocument = Node & {
|
|
46393
46646
|
__typename?: 'ExternalDocument';
|
|
46647
|
+
archivedAt?: Maybe<Scalars['String']['output']>;
|
|
46648
|
+
archivedBy?: Maybe<ExternalUser>;
|
|
46394
46649
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
46650
|
+
attachedToCount?: Maybe<Scalars['Int']['output']>;
|
|
46395
46651
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
46652
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
46653
|
+
channel?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
46396
46654
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
46397
46655
|
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
46398
46656
|
container?: Maybe<ExternalEntity>;
|
|
@@ -46401,26 +46659,41 @@ export declare type ExternalDocument = Node & {
|
|
|
46401
46659
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
46402
46660
|
createdBy?: Maybe<ExternalUser>;
|
|
46403
46661
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
46662
|
+
documentNumber?: Maybe<Scalars['String']['output']>;
|
|
46663
|
+
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
46404
46664
|
exportLinks?: Maybe<Array<Maybe<ExternalExportLink>>>;
|
|
46405
46665
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
46406
46666
|
extractedText?: Maybe<Scalars['String']['output']>;
|
|
46407
46667
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
46408
46668
|
id: Scalars['ID']['output'];
|
|
46669
|
+
isMasterLanguage?: Maybe<Scalars['Boolean']['output']>;
|
|
46409
46670
|
labels?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
46671
|
+
language?: Maybe<Scalars['String']['output']>;
|
|
46410
46672
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
46411
46673
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
46674
|
+
masterLanguage?: Maybe<Scalars['String']['output']>;
|
|
46412
46675
|
nonIndexableContent?: Maybe<ExternalLargeContent>;
|
|
46413
46676
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
46414
46677
|
parent?: Maybe<ExternalEntity>;
|
|
46415
46678
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
46416
46679
|
provider?: Maybe<ExternalProvider>;
|
|
46680
|
+
publishedAt?: Maybe<Scalars['String']['output']>;
|
|
46417
46681
|
reactions?: Maybe<Array<Maybe<ExternalReaction>>>;
|
|
46682
|
+
review?: Maybe<ExternalReview>;
|
|
46683
|
+
score?: Maybe<Scalars['Int']['output']>;
|
|
46684
|
+
subType?: Maybe<Scalars['String']['output']>;
|
|
46418
46685
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
46419
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']>;
|
|
46420
46691
|
truncatedDisplayName?: Maybe<Scalars['Boolean']['output']>;
|
|
46421
46692
|
type?: Maybe<ExternalDocumentType>;
|
|
46422
46693
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
46423
46694
|
url?: Maybe<Scalars['String']['output']>;
|
|
46695
|
+
validationStatus?: Maybe<Scalars['String']['output']>;
|
|
46696
|
+
versionNumber?: Maybe<Scalars['Int']['output']>;
|
|
46424
46697
|
};
|
|
46425
46698
|
export declare enum ExternalDocumentCategory {
|
|
46426
46699
|
Archive = "ARCHIVE",
|
|
@@ -46474,6 +46747,7 @@ export declare type ExternalEntities = {
|
|
|
46474
46747
|
document?: Maybe<Array<Maybe<ExternalDocument>>>;
|
|
46475
46748
|
experimental?: Maybe<Array<Maybe<ExternalExperimental>>>;
|
|
46476
46749
|
featureFlag?: Maybe<Array<Maybe<ExternalFeatureFlag>>>;
|
|
46750
|
+
lead?: Maybe<Array<Maybe<ExternalLead>>>;
|
|
46477
46751
|
message?: Maybe<Array<Maybe<ExternalMessage>>>;
|
|
46478
46752
|
organisation?: Maybe<Array<Maybe<ExternalOrganisation>>>;
|
|
46479
46753
|
position?: Maybe<Array<Maybe<ExternalPosition>>>;
|
|
@@ -46494,7 +46768,7 @@ export declare type ExternalEntities = {
|
|
|
46494
46768
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
46495
46769
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
46496
46770
|
};
|
|
46497
|
-
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;
|
|
46498
46772
|
export declare type ExternalEntityExtendedValue = {
|
|
46499
46773
|
__typename?: 'ExternalEntityExtendedValue';
|
|
46500
46774
|
dataType?: Maybe<Scalars['String']['output']>;
|
|
@@ -46633,6 +46907,52 @@ export declare type ExternalLargeContent = {
|
|
|
46633
46907
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
46634
46908
|
representation?: Maybe<ExternalContentRepresentation>;
|
|
46635
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
|
+
};
|
|
46636
46956
|
export declare type ExternalLocation = {
|
|
46637
46957
|
__typename?: 'ExternalLocation';
|
|
46638
46958
|
address?: Maybe<Scalars['String']['output']>;
|
|
@@ -46734,8 +47054,11 @@ export declare type ExternalPipeline = {
|
|
|
46734
47054
|
export declare type ExternalPosition = Node & {
|
|
46735
47055
|
__typename?: 'ExternalPosition';
|
|
46736
47056
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
47057
|
+
container?: Maybe<ExternalEntity>;
|
|
47058
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
46737
47059
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
46738
47060
|
createdBy?: Maybe<ExternalUser>;
|
|
47061
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
46739
47062
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
46740
47063
|
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
46741
47064
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -46863,6 +47186,16 @@ export declare type ExternalReactions = {
|
|
|
46863
47186
|
total?: Maybe<Scalars['Int']['output']>;
|
|
46864
47187
|
type?: Maybe<ExternalCommentReactionType>;
|
|
46865
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
|
+
};
|
|
46866
47199
|
export declare type ExternalRemoteLink = Node & {
|
|
46867
47200
|
__typename?: 'ExternalRemoteLink';
|
|
46868
47201
|
actionIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -46917,6 +47250,15 @@ export declare type ExternalRepository = Node & {
|
|
|
46917
47250
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
46918
47251
|
url?: Maybe<Scalars['String']['output']>;
|
|
46919
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
|
+
};
|
|
46920
47262
|
export declare type ExternalReviewer = {
|
|
46921
47263
|
__typename?: 'ExternalReviewer';
|
|
46922
47264
|
approvalStatus?: Maybe<ExternalApprovalStatus>;
|
|
@@ -47284,6 +47626,7 @@ export declare type ExternalWorkItem = Node & {
|
|
|
47284
47626
|
largeDescription?: Maybe<ExternalLargeContent>;
|
|
47285
47627
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
47286
47628
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
47629
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
47287
47630
|
parent?: Maybe<ExternalEntity>;
|
|
47288
47631
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
47289
47632
|
priority?: Maybe<Scalars['String']['output']>;
|
|
@@ -47293,6 +47636,7 @@ export declare type ExternalWorkItem = Node & {
|
|
|
47293
47636
|
subtype?: Maybe<ExternalWorkItemSubtype>;
|
|
47294
47637
|
team?: Maybe<Scalars['String']['output']>;
|
|
47295
47638
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
47639
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
47296
47640
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
47297
47641
|
urgency?: Maybe<Scalars['String']['output']>;
|
|
47298
47642
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -48860,6 +49204,7 @@ export declare type GenericQueryErrorExtension = QueryErrorExtension & {
|
|
|
48860
49204
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
48861
49205
|
};
|
|
48862
49206
|
export declare type GetAllPlansFilterInput = {
|
|
49207
|
+
jiraProjectAri?: InputMaybe<Scalars['String']['input']>;
|
|
48863
49208
|
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
48864
49209
|
};
|
|
48865
49210
|
export declare enum GlanceEnvironment {
|
|
@@ -53455,6 +53800,8 @@ export declare type GraphStore = {
|
|
|
53455
53800
|
atlassianUserCreatedExternalTestRunInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestRunInverseConnection>;
|
|
53456
53801
|
atlassianUserCreatedExternalTestStatus?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusConnection>;
|
|
53457
53802
|
atlassianUserCreatedExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusInverseConnection>;
|
|
53803
|
+
atlassianUserCreatedRovoAgent?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedRovoAgentConnection>;
|
|
53804
|
+
atlassianUserCreatedRovoAgentInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedRovoAgentInverseConnection>;
|
|
53458
53805
|
atlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
53459
53806
|
atlassianUserDismissedJiraForYouRecommendationEntityBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
53460
53807
|
atlassianUserDismissedJiraForYouRecommendationEntityInverse?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseConnection>;
|
|
@@ -54062,6 +54409,8 @@ export declare type GraphStore = {
|
|
|
54062
54409
|
riskHasProjectBatch?: Maybe<GraphStoreBatchRiskHasProjectConnection>;
|
|
54063
54410
|
riskHasProjectInverse?: Maybe<GraphStoreSimplifiedRiskHasProjectInverseConnection>;
|
|
54064
54411
|
riskHasProjectInverseBatch?: Maybe<GraphStoreBatchRiskHasProjectConnection>;
|
|
54412
|
+
rovoAgentActsAsIdentityUser?: Maybe<GraphStoreSimplifiedRovoAgentActsAsIdentityUserConnection>;
|
|
54413
|
+
rovoAgentActsAsIdentityUserInverse?: Maybe<GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseConnection>;
|
|
54065
54414
|
scorecardHasAtlasGoal?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalConnection>;
|
|
54066
54415
|
scorecardHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalInverseConnection>;
|
|
54067
54416
|
secodaDownstreamLineageBatch?: Maybe<GraphStoreBatchSecodaDownstreamLineageConnection>;
|
|
@@ -55205,6 +55554,22 @@ export declare type GraphStoreAtlassianUserCreatedExternalTestStatusInverseArgs
|
|
|
55205
55554
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55206
55555
|
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalTestStatusSortInput>;
|
|
55207
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
|
+
};
|
|
55208
55573
|
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityArgs = {
|
|
55209
55574
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
55210
55575
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -59847,6 +60212,22 @@ export declare type GraphStoreRiskHasProjectInverseBatchArgs = {
|
|
|
59847
60212
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
59848
60213
|
sort?: InputMaybe<GraphStoreRiskHasProjectSortInput>;
|
|
59849
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
|
+
};
|
|
59850
60231
|
export declare type GraphStoreScorecardHasAtlasGoalArgs = {
|
|
59851
60232
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
59852
60233
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -63527,6 +63908,9 @@ export declare type GraphStoreAtlassianUserCreatedExternalTestRunSortInput = {
|
|
|
63527
63908
|
export declare type GraphStoreAtlassianUserCreatedExternalTestStatusSortInput = {
|
|
63528
63909
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
63529
63910
|
};
|
|
63911
|
+
export declare type GraphStoreAtlassianUserCreatedRovoAgentSortInput = {
|
|
63912
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
63913
|
+
};
|
|
63530
63914
|
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput = {
|
|
63531
63915
|
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput>>>;
|
|
63532
63916
|
category?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategoryFilterInput>;
|
|
@@ -71636,6 +72020,9 @@ export declare type GraphStorePullRequestLinksToServiceSortInput = {
|
|
|
71636
72020
|
export declare type GraphStoreRiskHasProjectSortInput = {
|
|
71637
72021
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71638
72022
|
};
|
|
72023
|
+
export declare type GraphStoreRovoAgentActsAsIdentityUserSortInput = {
|
|
72024
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72025
|
+
};
|
|
71639
72026
|
export declare type GraphStoreScorecardHasAtlasGoalSortInput = {
|
|
71640
72027
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71641
72028
|
};
|
|
@@ -72838,6 +73225,34 @@ export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusIn
|
|
|
72838
73225
|
};
|
|
72839
73226
|
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
72840
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;
|
|
72841
73256
|
export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection = HasPageInfo & HasTotal & {
|
|
72842
73257
|
__typename?: 'GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection';
|
|
72843
73258
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityEdge>>>;
|
|
@@ -79100,6 +79515,34 @@ export declare type GraphStoreSimplifiedRiskHasProjectInverseEdge = {
|
|
|
79100
79515
|
};
|
|
79101
79516
|
export declare type GraphStoreSimplifiedRiskHasProjectInverseUnion = MercuryRisk;
|
|
79102
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;
|
|
79103
79546
|
export declare type GraphStoreSimplifiedScorecardHasAtlasGoalConnection = HasPageInfo & {
|
|
79104
79547
|
__typename?: 'GraphStoreSimplifiedScorecardHasAtlasGoalConnection';
|
|
79105
79548
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalEdge>>>;
|
|
@@ -85513,6 +85956,8 @@ export declare type GraphStoreV2 = {
|
|
|
85513
85956
|
atlassianUserCreatedLoomVideoComment?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedLoomVideoCommentConnection>;
|
|
85514
85957
|
atlassianUserCreatedLoomVideoCommentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedLoomVideoCommentInverseConnection>;
|
|
85515
85958
|
atlassianUserCreatedLoomVideoInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedLoomVideoInverseConnection>;
|
|
85959
|
+
atlassianUserCreatedRovoAgent?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentConnection>;
|
|
85960
|
+
atlassianUserCreatedRovoAgentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentInverseConnection>;
|
|
85516
85961
|
atlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreV2SimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
85517
85962
|
atlassianUserDismissedJiraForYouRecommendationEntityInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseConnection>;
|
|
85518
85963
|
atlassianUserFavoritedAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalConnection>;
|
|
@@ -86196,6 +86641,8 @@ export declare type GraphStoreV2 = {
|
|
|
86196
86641
|
mediaFileAttachedToContentEntity?: Maybe<GraphStoreV2SimplifiedMediaFileAttachedToContentEntityConnection>;
|
|
86197
86642
|
repositoryEntityIsBitbucketRepository?: Maybe<GraphStoreV2SimplifiedRepositoryEntityIsBitbucketRepositoryConnection>;
|
|
86198
86643
|
repositoryEntityIsBitbucketRepositoryInverse?: Maybe<GraphStoreV2SimplifiedRepositoryEntityIsBitbucketRepositoryInverseConnection>;
|
|
86644
|
+
rovoAgentActsAsAtlassianUser?: Maybe<GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserConnection>;
|
|
86645
|
+
rovoAgentActsAsAtlassianUserInverse?: Maybe<GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseConnection>;
|
|
86199
86646
|
talentPositionLinksExternalPosition?: Maybe<GraphStoreV2SimplifiedTalentPositionLinksExternalPositionConnection>;
|
|
86200
86647
|
talentPositionLinksExternalPositionInverse?: Maybe<GraphStoreV2SimplifiedTalentPositionLinksExternalPositionInverseConnection>;
|
|
86201
86648
|
talentWorkerLinksExternalWorker?: Maybe<GraphStoreV2SimplifiedTalentWorkerLinksExternalWorkerConnection>;
|
|
@@ -87095,6 +87542,20 @@ export declare type GraphStoreV2AtlassianUserCreatedLoomVideoInverseArgs = {
|
|
|
87095
87542
|
id: Scalars['ID']['input'];
|
|
87096
87543
|
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedLoomVideoSortInput>;
|
|
87097
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
|
+
};
|
|
87098
87559
|
export declare type GraphStoreV2AtlassianUserDismissedJiraForYouRecommendationEntityArgs = {
|
|
87099
87560
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87100
87561
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -91929,6 +92390,20 @@ export declare type GraphStoreV2RepositoryEntityIsBitbucketRepositoryInverseArgs
|
|
|
91929
92390
|
id: Scalars['ID']['input'];
|
|
91930
92391
|
sort?: InputMaybe<GraphStoreV2RepositoryEntityIsBitbucketRepositorySortInput>;
|
|
91931
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
|
+
};
|
|
91932
92407
|
export declare type GraphStoreV2TalentPositionLinksExternalPositionArgs = {
|
|
91933
92408
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91934
92409
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -92204,6 +92679,9 @@ export declare type GraphStoreV2AtlassianUserCreatedLoomVideoCommentSortInput =
|
|
|
92204
92679
|
export declare type GraphStoreV2AtlassianUserCreatedLoomVideoSortInput = {
|
|
92205
92680
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
92206
92681
|
};
|
|
92682
|
+
export declare type GraphStoreV2AtlassianUserCreatedRovoAgentSortInput = {
|
|
92683
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
92684
|
+
};
|
|
92207
92685
|
export declare type GraphStoreV2AtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput = {
|
|
92208
92686
|
and?: InputMaybe<Array<InputMaybe<GraphStoreV2AtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput>>>;
|
|
92209
92687
|
category?: InputMaybe<GraphStoreV2AtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategoryFilterInput>;
|
|
@@ -95604,6 +96082,9 @@ export declare type GraphStoreV2MutationDeleteLoomVideoHasConfluencePageArgs = {
|
|
|
95604
96082
|
export declare type GraphStoreV2RepositoryEntityIsBitbucketRepositorySortInput = {
|
|
95605
96083
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
95606
96084
|
};
|
|
96085
|
+
export declare type GraphStoreV2RovoAgentActsAsAtlassianUserSortInput = {
|
|
96086
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96087
|
+
};
|
|
95607
96088
|
export declare type GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeConnection = HasPageInfo & {
|
|
95608
96089
|
__typename?: 'GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeConnection';
|
|
95609
96090
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeEdge>>>;
|
|
@@ -97398,6 +97879,34 @@ export declare type GraphStoreV2SimplifiedAtlassianUserCreatedLoomVideoInverseEd
|
|
|
97398
97879
|
};
|
|
97399
97880
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedLoomVideoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
97400
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;
|
|
97401
97910
|
export declare type GraphStoreV2SimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection = HasPageInfo & HasTotal & {
|
|
97402
97911
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection';
|
|
97403
97912
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityEdge>>>;
|
|
@@ -107230,6 +107739,34 @@ export declare type GraphStoreV2SimplifiedRepositoryEntityIsBitbucketRepositoryI
|
|
|
107230
107739
|
};
|
|
107231
107740
|
export declare type GraphStoreV2SimplifiedRepositoryEntityIsBitbucketRepositoryInverseUnion = DevOpsRepository | ExternalRepository;
|
|
107232
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;
|
|
107233
107770
|
export declare type GraphStoreV2SimplifiedTalentPositionLinksExternalPositionConnection = HasPageInfo & {
|
|
107234
107771
|
__typename?: 'GraphStoreV2SimplifiedTalentPositionLinksExternalPositionConnection';
|
|
107235
107772
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedTalentPositionLinksExternalPositionEdge>>>;
|
|
@@ -112307,6 +112844,16 @@ export declare type JiraAdfInput = {
|
|
|
112307
112844
|
jsonValue?: InputMaybe<Scalars['JSON']['input']>;
|
|
112308
112845
|
version?: InputMaybe<Scalars['Int']['input']>;
|
|
112309
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
|
+
};
|
|
112310
112857
|
export declare type JiraAccessAtlassianIntelligenceFeature = {
|
|
112311
112858
|
__typename?: 'JiraAccessAtlassianIntelligenceFeature';
|
|
112312
112859
|
isAccessible?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -112375,6 +112922,16 @@ export declare type JiraActorEdge = {
|
|
|
112375
112922
|
cursor: Scalars['String']['output'];
|
|
112376
112923
|
node?: Maybe<JiraActor>;
|
|
112377
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
|
+
};
|
|
112378
112935
|
export declare type JiraAddAgentToBoardViewStatusColumnInput = {
|
|
112379
112936
|
agentAccountId: Scalars['ID']['input'];
|
|
112380
112937
|
columnId: Scalars['ID']['input'];
|
|
@@ -112647,6 +113204,34 @@ export declare type JiraAgentAssignableInput = {
|
|
|
112647
113204
|
agentAccountId?: InputMaybe<Scalars['ID']['input']>;
|
|
112648
113205
|
agentId?: InputMaybe<Scalars['ID']['input']>;
|
|
112649
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
|
+
};
|
|
112650
113235
|
export declare enum JiraAgentCreatorType {
|
|
112651
113236
|
Customer = "CUSTOMER",
|
|
112652
113237
|
Forge = "FORGE",
|
|
@@ -113026,6 +113611,7 @@ export declare type JiraAppUiModifications = {
|
|
|
113026
113611
|
};
|
|
113027
113612
|
export declare enum JiraApplicationKey {
|
|
113028
113613
|
JiraCore = "JIRA_CORE",
|
|
113614
|
+
JiraCustomerService = "JIRA_CUSTOMER_SERVICE",
|
|
113029
113615
|
JiraProductDiscovery = "JIRA_PRODUCT_DISCOVERY",
|
|
113030
113616
|
JiraServiceDesk = "JIRA_SERVICE_DESK",
|
|
113031
113617
|
JiraSoftware = "JIRA_SOFTWARE"
|
|
@@ -118616,6 +119202,15 @@ export declare type JiraDisconnectTownsquareProjectToSpaceInput = {
|
|
|
118616
119202
|
spaceAri: Scalars['ID']['input'];
|
|
118617
119203
|
townsquareProjectAri: Scalars['String']['input'];
|
|
118618
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
|
+
};
|
|
118619
119214
|
export declare type JiraDismissAiAgentSessionInput = {
|
|
118620
119215
|
agentIdentityAccountId: Scalars['String']['input'];
|
|
118621
119216
|
cloudId: Scalars['ID']['input'];
|
|
@@ -119630,7 +120225,6 @@ export declare type JiraFilterNameMutationErrorExtension = MutationErrorExtensio
|
|
|
119630
120225
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
119631
120226
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
119632
120227
|
};
|
|
119633
|
-
export declare type JiraFilterResult = JiraCustomFilter | JiraSystemFilter | QueryError;
|
|
119634
120228
|
export declare enum JiraFilterSearchMode {
|
|
119635
120229
|
Advanced = "ADVANCED",
|
|
119636
120230
|
Basic = "BASIC",
|
|
@@ -120479,14 +121073,6 @@ export declare enum JiraGlobalPermissionType {
|
|
|
120479
121073
|
ManageCustomOnboarding = "MANAGE_CUSTOM_ONBOARDING",
|
|
120480
121074
|
UserPicker = "USER_PICKER"
|
|
120481
121075
|
}
|
|
120482
|
-
export declare type JiraGlobalTimeTrackingSettings = {
|
|
120483
|
-
__typename?: 'JiraGlobalTimeTrackingSettings';
|
|
120484
|
-
daysPerWeek: Scalars['Float']['output'];
|
|
120485
|
-
defaultUnit: JiraTimeUnit;
|
|
120486
|
-
format: JiraTimeFormat;
|
|
120487
|
-
hoursPerDay: Scalars['Float']['output'];
|
|
120488
|
-
isTimeTrackingEnabled: Scalars['Boolean']['output'];
|
|
120489
|
-
};
|
|
120490
121076
|
export declare type JiraGoal = Node & {
|
|
120491
121077
|
__typename?: 'JiraGoal';
|
|
120492
121078
|
iconKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -122394,7 +122980,6 @@ export declare type JiraIssueFieldConnection = JiraListRowFieldConnection & {
|
|
|
122394
122980
|
pageInfo: PageInfo;
|
|
122395
122981
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
122396
122982
|
};
|
|
122397
|
-
export declare type JiraIssueFieldConnectionResult = JiraIssueFieldConnection | QueryError;
|
|
122398
122983
|
export declare type JiraIssueFieldCreateContextOption = {
|
|
122399
122984
|
id: Scalars['ID']['output'];
|
|
122400
122985
|
};
|
|
@@ -124396,10 +124981,6 @@ export declare type JiraJqlBuilderVersionsArgs = {
|
|
|
124396
124981
|
jqlContext?: InputMaybe<Scalars['String']['input']>;
|
|
124397
124982
|
jqlTerm: Scalars['String']['input'];
|
|
124398
124983
|
};
|
|
124399
|
-
export declare enum JiraJqlBuilderMode {
|
|
124400
|
-
Basic = "BASIC",
|
|
124401
|
-
Jql = "JQL"
|
|
124402
|
-
}
|
|
124403
124984
|
export declare type JiraJqlCascadingOptionFieldValue = JiraJqlFieldValue & {
|
|
124404
124985
|
__typename?: 'JiraJqlCascadingOptionFieldValue';
|
|
124405
124986
|
displayName: Scalars['String']['output'];
|
|
@@ -127994,17 +128575,6 @@ export declare type JiraPermissionGrantValue = {
|
|
|
127994
128575
|
id: Scalars['ID']['output'];
|
|
127995
128576
|
value?: Maybe<JiraGrantTypeValue>;
|
|
127996
128577
|
};
|
|
127997
|
-
export declare type JiraPermissionGrantValueConnection = {
|
|
127998
|
-
__typename?: 'JiraPermissionGrantValueConnection';
|
|
127999
|
-
edges?: Maybe<Array<Maybe<JiraPermissionGrantValueEdge>>>;
|
|
128000
|
-
pageInfo: PageInfo;
|
|
128001
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
128002
|
-
};
|
|
128003
|
-
export declare type JiraPermissionGrantValueEdge = {
|
|
128004
|
-
__typename?: 'JiraPermissionGrantValueEdge';
|
|
128005
|
-
cursor: Scalars['String']['output'];
|
|
128006
|
-
node: JiraPermissionGrantValue;
|
|
128007
|
-
};
|
|
128008
128578
|
export declare type JiraPermissionGrants = {
|
|
128009
128579
|
__typename?: 'JiraPermissionGrants';
|
|
128010
128580
|
grantType: JiraGrantTypeKey;
|
|
@@ -129290,6 +129860,10 @@ export declare type JiraProjectFrontendConfig = {
|
|
|
129290
129860
|
project?: Maybe<Scalars['JSON']['output']>;
|
|
129291
129861
|
user?: Maybe<Scalars['JSON']['output']>;
|
|
129292
129862
|
};
|
|
129863
|
+
export declare type JiraProjectIdentifier = {
|
|
129864
|
+
cloudId: Scalars['ID']['input'];
|
|
129865
|
+
projectKey: Scalars['String']['input'];
|
|
129866
|
+
};
|
|
129293
129867
|
export declare type JiraProjectInput = {
|
|
129294
129868
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
129295
129869
|
projectId: Scalars['ID']['input'];
|
|
@@ -130082,6 +130656,7 @@ export declare type JiraQuery = {
|
|
|
130082
130656
|
jpdGlobalViewFields?: Maybe<JiraPolarisGlobalViewFields>;
|
|
130083
130657
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
130084
130658
|
jsmCustomerWidget?: Maybe<JiraServiceManagementCustomerWidget>;
|
|
130659
|
+
jsmEmails?: Maybe<JiraServiceManagementEmailsConnection>;
|
|
130085
130660
|
jsmPortal?: Maybe<JiraServiceManagementPortal>;
|
|
130086
130661
|
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
130087
130662
|
jsmWorkflowTemplates?: Maybe<JiraServiceManagementWorkflowTemplatesMetadataConnection>;
|
|
@@ -130118,7 +130693,6 @@ export declare type JiraQuery = {
|
|
|
130118
130693
|
opsgenieBaseUrl?: Maybe<Scalars['URL']['output']>;
|
|
130119
130694
|
outgoingMailConfig?: Maybe<JiraOutgoingMailConfigResponse>;
|
|
130120
130695
|
permission?: Maybe<JiraPermission>;
|
|
130121
|
-
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
130122
130696
|
planById?: Maybe<JiraPlan>;
|
|
130123
130697
|
postIncidentReviewLinksByIds?: Maybe<Array<Maybe<JiraPostIncidentReviewLink>>>;
|
|
130124
130698
|
projectCleanupLogTableEntries?: Maybe<JiraProjectCleanupLogTableEntryConnection>;
|
|
@@ -130170,7 +130744,6 @@ export declare type JiraQuery = {
|
|
|
130170
130744
|
suggestedFormulaFieldExpression?: Maybe<JiraFormulaFieldSuggestedExpressionResult>;
|
|
130171
130745
|
suggestedRequestTypes?: Maybe<JiraServiceManagementRequestTypeConnection>;
|
|
130172
130746
|
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
130173
|
-
timeTrackingSettings?: Maybe<JiraGlobalTimeTrackingSettings>;
|
|
130174
130747
|
uiModifications?: Maybe<Array<JiraAppUiModifications>>;
|
|
130175
130748
|
userHomePage?: Maybe<JiraHomePage>;
|
|
130176
130749
|
userNavigationConfiguration?: Maybe<JiraUserNavigationConfiguration>;
|
|
@@ -130970,6 +131543,12 @@ export declare type JiraQueryJsmCustomerWidgetArgs = {
|
|
|
130970
131543
|
cloudId: Scalars['ID']['input'];
|
|
130971
131544
|
projectId: Scalars['ID']['input'];
|
|
130972
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
|
+
};
|
|
130973
131552
|
export declare type JiraQueryJsmPortalArgs = {
|
|
130974
131553
|
cloudId: Scalars['ID']['input'];
|
|
130975
131554
|
projectId: Scalars['Long']['input'];
|
|
@@ -131143,14 +131722,6 @@ export declare type JiraQueryPermissionArgs = {
|
|
|
131143
131722
|
cloudId: Scalars['ID']['input'];
|
|
131144
131723
|
type: JiraPermissionType;
|
|
131145
131724
|
};
|
|
131146
|
-
export declare type JiraQueryPermissionSchemeGrantsArgs = {
|
|
131147
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
131148
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
131149
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131150
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
131151
|
-
permissionKey?: InputMaybe<Scalars['String']['input']>;
|
|
131152
|
-
schemeId: Scalars['ID']['input'];
|
|
131153
|
-
};
|
|
131154
131725
|
export declare type JiraQueryPlanByIdArgs = {
|
|
131155
131726
|
id: Scalars['ID']['input'];
|
|
131156
131727
|
};
|
|
@@ -131421,9 +131992,6 @@ export declare type JiraQuerySystemFiltersArgs = {
|
|
|
131421
131992
|
isFavourite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
131422
131993
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
131423
131994
|
};
|
|
131424
|
-
export declare type JiraQueryTimeTrackingSettingsArgs = {
|
|
131425
|
-
cloudId: Scalars['ID']['input'];
|
|
131426
|
-
};
|
|
131427
131995
|
export declare type JiraQueryUiModificationsArgs = {
|
|
131428
131996
|
context: JiraUiModificationsContextInput;
|
|
131429
131997
|
};
|
|
@@ -132359,6 +132927,14 @@ export declare type JiraReportsPage = {
|
|
|
132359
132927
|
__typename?: 'JiraReportsPage';
|
|
132360
132928
|
categories?: Maybe<Array<Maybe<JiraReportCategory>>>;
|
|
132361
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
|
+
};
|
|
132362
132938
|
export declare type JiraResetFaviconInput = {
|
|
132363
132939
|
cloudId: Scalars['ID']['input'];
|
|
132364
132940
|
};
|
|
@@ -132950,6 +133526,10 @@ export declare type JiraScmRepository = {
|
|
|
132950
133526
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
132951
133527
|
name?: Maybe<Scalars['String']['output']>;
|
|
132952
133528
|
};
|
|
133529
|
+
export declare type JiraScopedAgentContextInput = {
|
|
133530
|
+
projectByKey?: InputMaybe<JiraProjectIdentifier>;
|
|
133531
|
+
sourceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
133532
|
+
};
|
|
132953
133533
|
export declare type JiraScopedResetFieldsetsInput = {
|
|
132954
133534
|
context?: InputMaybe<JiraIssueSearchViewFieldSetsContext>;
|
|
132955
133535
|
doReset?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -133575,6 +134155,22 @@ export declare type JiraServiceManagementDueDatePreviewField = JiraServiceManage
|
|
|
133575
134155
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
133576
134156
|
type?: Maybe<Scalars['String']['output']>;
|
|
133577
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
|
+
};
|
|
133578
134174
|
export declare type JiraServiceManagementEntitledEntity = JiraServiceManagementEntitlementCustomer | JiraServiceManagementEntitlementOrganization;
|
|
133579
134175
|
export declare type JiraServiceManagementEntitlement = Node & {
|
|
133580
134176
|
__typename?: 'JiraServiceManagementEntitlement';
|
|
@@ -136436,6 +137032,7 @@ export declare type JiraTeamView = {
|
|
|
136436
137032
|
jiraIncludesYou?: Maybe<Scalars['Boolean']['output']>;
|
|
136437
137033
|
jiraMemberCount?: Maybe<Scalars['Int']['output']>;
|
|
136438
137034
|
jiraSuppliedAvatar?: Maybe<JiraAvatar>;
|
|
137035
|
+
jiraSuppliedDescription?: Maybe<Scalars['String']['output']>;
|
|
136439
137036
|
jiraSuppliedId: Scalars['ID']['output'];
|
|
136440
137037
|
jiraSuppliedIsVerified?: Maybe<Scalars['Boolean']['output']>;
|
|
136441
137038
|
jiraSuppliedName?: Maybe<Scalars['String']['output']>;
|
|
@@ -136854,6 +137451,7 @@ export declare type JiraTrackRecentProjectPayload = Payload & {
|
|
|
136854
137451
|
};
|
|
136855
137452
|
export declare type JiraTransition = Node & {
|
|
136856
137453
|
__typename?: 'JiraTransition';
|
|
137454
|
+
agentRules?: Maybe<Array<JiraTransitionAgentRule>>;
|
|
136857
137455
|
from?: Maybe<Array<JiraStatus>>;
|
|
136858
137456
|
hasPreConditions?: Maybe<Scalars['Boolean']['output']>;
|
|
136859
137457
|
hasScreen?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -136871,6 +137469,11 @@ export declare type JiraTransitionAgent = {
|
|
|
136871
137469
|
accountId: Scalars['ID']['output'];
|
|
136872
137470
|
agent?: Maybe<User>;
|
|
136873
137471
|
};
|
|
137472
|
+
export declare type JiraTransitionAgentRule = {
|
|
137473
|
+
__typename?: 'JiraTransitionAgentRule';
|
|
137474
|
+
agent: JiraTransitionAgent;
|
|
137475
|
+
promptValue?: Maybe<Scalars['String']['output']>;
|
|
137476
|
+
};
|
|
136874
137477
|
export declare type JiraTransitionConnection = {
|
|
136875
137478
|
__typename?: 'JiraTransitionConnection';
|
|
136876
137479
|
edges?: Maybe<Array<Maybe<JiraTransitionEdge>>>;
|
|
@@ -137016,6 +137619,25 @@ export declare type JiraUpdateBackgroundInput = {
|
|
|
137016
137619
|
dominantColor?: InputMaybe<Scalars['String']['input']>;
|
|
137017
137620
|
entityId: Scalars['ID']['input'];
|
|
137018
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
|
+
};
|
|
137019
137641
|
export declare type JiraUpdateCalendarViewConfigInput = {
|
|
137020
137642
|
overrides?: InputMaybe<JiraCalendarViewSettings>;
|
|
137021
137643
|
settings?: InputMaybe<JiraCalendarViewSettings>;
|
|
@@ -140015,6 +140637,7 @@ export declare type JsmChannelsConditionNode = JsmChannelsPlanNode & {
|
|
|
140015
140637
|
nodeType: JsmChannelsPlanNodeType;
|
|
140016
140638
|
};
|
|
140017
140639
|
export declare enum JsmChannelsConnectionType {
|
|
140640
|
+
Entra = "ENTRA",
|
|
140018
140641
|
Identitynow = "IDENTITYNOW",
|
|
140019
140642
|
Intune = "INTUNE",
|
|
140020
140643
|
Okta = "OKTA",
|
|
@@ -140119,6 +140742,12 @@ export declare type JsmChannelsJqlEnablementRuleInput = {
|
|
|
140119
140742
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
140120
140743
|
priority: Scalars['Int']['input'];
|
|
140121
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
|
+
};
|
|
140122
140751
|
export declare type JsmChannelsMsIntuneTaskAgentConfiguration = {
|
|
140123
140752
|
__typename?: 'JsmChannelsMsIntuneTaskAgentConfiguration';
|
|
140124
140753
|
accountId: Scalars['String']['output'];
|
|
@@ -140390,7 +141019,7 @@ export declare type JsmChannelsTaskAgent = {
|
|
|
140390
141019
|
displayName: Scalars['String']['output'];
|
|
140391
141020
|
status: JsmChannelsTaskAgentStatus;
|
|
140392
141021
|
};
|
|
140393
|
-
export declare type JsmChannelsTaskAgentConfigurationDetails = JsmChannelsIdentityNowTaskAgentConfiguration | JsmChannelsMsIntuneTaskAgentConfiguration | JsmChannelsOktaTaskAgentConfiguration | JsmChannelsSalesforceTaskAgentConfiguration;
|
|
141022
|
+
export declare type JsmChannelsTaskAgentConfigurationDetails = JsmChannelsIdentityNowTaskAgentConfiguration | JsmChannelsMsEntraTaskAgentConfiguration | JsmChannelsMsIntuneTaskAgentConfiguration | JsmChannelsOktaTaskAgentConfiguration | JsmChannelsSalesforceTaskAgentConfiguration;
|
|
140394
141023
|
export declare type JsmChannelsTaskAgentConfigurationInput = {
|
|
140395
141024
|
configuration?: InputMaybe<Scalars['JSON']['input']>;
|
|
140396
141025
|
status: JsmChannelsTaskAgentStatus;
|
|
@@ -141532,6 +142161,7 @@ export declare type KitsuneChunk = Node & {
|
|
|
141532
142161
|
content?: Maybe<Scalars['String']['output']>;
|
|
141533
142162
|
feedbackId: Scalars['ID']['output'];
|
|
141534
142163
|
id: Scalars['ID']['output'];
|
|
142164
|
+
index: Scalars['Int']['output'];
|
|
141535
142165
|
};
|
|
141536
142166
|
export declare type KitsuneChunkConnection = KitsuneConnection & {
|
|
141537
142167
|
__typename?: 'KitsuneChunkConnection';
|
|
@@ -142292,10 +142922,6 @@ export declare enum KitsuneViewType {
|
|
|
142292
142922
|
List = "LIST",
|
|
142293
142923
|
Table = "TABLE"
|
|
142294
142924
|
}
|
|
142295
|
-
export declare type KitsuneWorkspaceIdentifierInput = {
|
|
142296
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
142297
|
-
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
142298
|
-
};
|
|
142299
142925
|
export declare type KnowledgeBaseAccessibleLinkedSourceResult = {
|
|
142300
142926
|
__typename?: 'KnowledgeBaseAccessibleLinkedSourceResult';
|
|
142301
142927
|
sourceARI?: Maybe<Scalars['ID']['output']>;
|
|
@@ -144501,6 +145127,33 @@ export declare type LoomWorkspace = Node & {
|
|
|
144501
145127
|
name?: Maybe<Scalars['String']['output']>;
|
|
144502
145128
|
type: Scalars['String']['output'];
|
|
144503
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
|
+
};
|
|
144504
145157
|
export declare type LpCertSort = {
|
|
144505
145158
|
sortDirection?: InputMaybe<SortDirection>;
|
|
144506
145159
|
sortField?: InputMaybe<LpCertSortField>;
|
|
@@ -147824,6 +148477,7 @@ export declare type MarketplaceStoreLayoutRegularSection = MarketplaceStoreLayou
|
|
|
147824
148477
|
objectsFetchCount?: Maybe<Scalars['Int']['output']>;
|
|
147825
148478
|
rightImageUrl?: Maybe<MarketplaceStoreImageUrlVariants>;
|
|
147826
148479
|
searchMetadata?: Maybe<MarketplaceStoreSearchMetadata>;
|
|
148480
|
+
sectionMetadata?: Maybe<MarketplaceStoreRecommendationsMetadata>;
|
|
147827
148481
|
title: Scalars['String']['output'];
|
|
147828
148482
|
type: MarketplaceStoreLayoutSectionType;
|
|
147829
148483
|
widgets?: Maybe<Array<Maybe<MarketplaceStoreLayoutWidget>>>;
|
|
@@ -148300,6 +148954,7 @@ export declare enum MarketplaceStoreProductTagType {
|
|
|
148300
148954
|
Keywords = "KEYWORDS"
|
|
148301
148955
|
}
|
|
148302
148956
|
export declare enum MarketplaceStoreProductType {
|
|
148957
|
+
Chat = "CHAT",
|
|
148303
148958
|
Compass = "COMPASS",
|
|
148304
148959
|
Confluence = "CONFLUENCE",
|
|
148305
148960
|
Goal = "GOAL",
|
|
@@ -149367,7 +150022,7 @@ export declare type MercuryChangeProposalActivityHistoryConnection = {
|
|
|
149367
150022
|
pageInfo: PageInfo;
|
|
149368
150023
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
149369
150024
|
};
|
|
149370
|
-
export declare type MercuryChangeProposalActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraAlignAggProject | JiraIssue | TownsquareGoal | TownsquareProject | TownsquareTag;
|
|
150025
|
+
export declare type MercuryChangeProposalActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraAlignAggProject | JiraIssue | MercuryFocusArea | TownsquareGoal | TownsquareProject | TownsquareTag;
|
|
149371
150026
|
export declare type MercuryChangeProposalActivityHistoryEdge = {
|
|
149372
150027
|
__typename?: 'MercuryChangeProposalActivityHistoryEdge';
|
|
149373
150028
|
cursor: Scalars['String']['output'];
|
|
@@ -156832,6 +157487,7 @@ export declare type Mutation = {
|
|
|
156832
157487
|
aiManagedObject_deleteAiManagedObject?: Maybe<Scalars['Boolean']['output']>;
|
|
156833
157488
|
aiManagedObject_execute?: Maybe<AiManagedObjectExecutionResult>;
|
|
156834
157489
|
aiManagedObject_updateAiManagedObject?: Maybe<AiManagedObject>;
|
|
157490
|
+
aiops_terminateInvestigation?: Maybe<AiOpsInvestigation>;
|
|
156835
157491
|
aiops_triggerInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
|
|
156836
157492
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
156837
157493
|
appStorage?: Maybe<AppStorageMutation>;
|
|
@@ -156928,6 +157584,7 @@ export declare type Mutation = {
|
|
|
156928
157584
|
assetsVertical_updateRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentsMutationPayload>;
|
|
156929
157585
|
assetsVertical_updateVerticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationPayload>;
|
|
156930
157586
|
assetsVertical_updateVerticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryPayload>;
|
|
157587
|
+
assetsVertical_workbenchDashboardTryUpgrade?: Maybe<AssetsVerticalWorkbenchDashboardTryUpgradePayload>;
|
|
156931
157588
|
assets_addExternalReferenceTypeAttributeValue?: Maybe<Array<Maybe<AssetsExternalReferenceTypeAttributeOnObject>>>;
|
|
156932
157589
|
assets_deleteExternalReferenceTypeAttributeValue?: Maybe<Array<Maybe<AssetsExternalReferenceTypeAttributeOnObject>>>;
|
|
156933
157590
|
assets_updateObjectAttributeValue?: Maybe<AssetsAttributeOnObject>;
|
|
@@ -157499,6 +158156,8 @@ export declare type Mutation = {
|
|
|
157499
158156
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
157500
158157
|
jiraOpenBeta_createFeature?: Maybe<JiraOpenBetaFeatureCreatePayload>;
|
|
157501
158158
|
jiraOpenBeta_updateFeature?: Maybe<JiraOpenBetaFeatureUpdatePayload>;
|
|
158159
|
+
jira_acceptAgentContextItem?: Maybe<JiraAcceptAgentContextItemPayload>;
|
|
158160
|
+
jira_addAgentContextItem?: Maybe<JiraAddAgentContextItemPayload>;
|
|
157502
158161
|
jira_addAgentToBoardViewStatusColumn?: Maybe<JiraAddAgentToBoardViewStatusColumnPayload>;
|
|
157503
158162
|
jira_addFieldsToFieldScheme?: Maybe<JiraAddFieldsToFieldSchemePayload>;
|
|
157504
158163
|
jira_addTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
|
|
@@ -157529,6 +158188,7 @@ export declare type Mutation = {
|
|
|
157529
158188
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
157530
158189
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
157531
158190
|
jira_discardUserTimelineViewConfig?: Maybe<JiraDiscardUserTimelineViewConfigPayload>;
|
|
158191
|
+
jira_dismissAgentContextItem?: Maybe<JiraDismissAgentContextItemPayload>;
|
|
157532
158192
|
jira_dismissAiAgentSession?: Maybe<JiraDismissAiAgentSessionPayload>;
|
|
157533
158193
|
jira_dragAndDropBoardViewIssue?: Maybe<JiraDragAndDropBoardViewIssuePayload>;
|
|
157534
158194
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
@@ -157549,6 +158209,7 @@ export declare type Mutation = {
|
|
|
157549
158209
|
jira_renameProjectLevelSidebarMenuItem?: Maybe<JiraRenameProjectLevelSidebarMenuItemPayload>;
|
|
157550
158210
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
157551
158211
|
jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
|
|
158212
|
+
jira_resetAgentContext?: Maybe<JiraResetAgentContextPayload>;
|
|
157552
158213
|
jira_resetFavicon?: Maybe<JiraResetFaviconPayload>;
|
|
157553
158214
|
jira_resetLogo?: Maybe<JiraResetLogoPayload>;
|
|
157554
158215
|
jira_restoreCustomFields?: Maybe<JiraRestoreCustomFieldsPayload>;
|
|
@@ -157619,6 +158280,7 @@ export declare type Mutation = {
|
|
|
157619
158280
|
jira_trashCustomFields?: Maybe<JiraTrashCustomFieldsPayload>;
|
|
157620
158281
|
jira_trashGlobalCustomFields?: Maybe<JiraTrashGlobalCustomFieldsPayload>;
|
|
157621
158282
|
jira_unarchiveIssue?: Maybe<JiraIssueUnarchivePayload>;
|
|
158283
|
+
jira_updateBoardViewStatusColumnAgent?: Maybe<JiraUpdateBoardViewStatusColumnAgentPayload>;
|
|
157622
158284
|
jira_updateCustomField?: Maybe<JiraUpdateCustomFieldPayload>;
|
|
157623
158285
|
jira_updateCustomFieldDefaultContextOptions?: Maybe<JiraUpdateCustomFieldDefaultContextOptionsPayload>;
|
|
157624
158286
|
jira_updateCustomFields?: Maybe<JiraUpdateCustomFieldsPayload>;
|
|
@@ -157688,6 +158350,7 @@ export declare type Mutation = {
|
|
|
157688
158350
|
kitsune_syncCustomerFields?: Maybe<KitsuneJob>;
|
|
157689
158351
|
kitsune_syncCustomers?: Maybe<KitsuneJob>;
|
|
157690
158352
|
kitsune_updateCustomer?: Maybe<KitsuneCustomer>;
|
|
158353
|
+
kitsune_updateCustomerField?: Maybe<KitsuneCustomerCustomField>;
|
|
157691
158354
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
157692
158355
|
kitsune_updateField?: Maybe<KitsuneField>;
|
|
157693
158356
|
kitsune_updateInsight?: Maybe<KitsuneInsight>;
|
|
@@ -157921,6 +158584,7 @@ export declare type Mutation = {
|
|
|
157921
158584
|
spf_deleteView?: Maybe<SpfDeleteViewPayload>;
|
|
157922
158585
|
spf_grantEntityPermission?: Maybe<SpfGrantEntityPermissionPayload>;
|
|
157923
158586
|
spf_prioritizePlanScenarioInvestment?: Maybe<SpfPrioritizePlanScenarioInvestmentPayload>;
|
|
158587
|
+
spf_promoteWorkItemToImpactedWork?: Maybe<SpfUpsertAskPayload>;
|
|
157924
158588
|
spf_rejectProposedDate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
157925
158589
|
spf_removeConnectedWork?: Maybe<SpfAskConnectedWorkPayload>;
|
|
157926
158590
|
spf_removePlanApprover?: Maybe<SpfRemovePlanApproverPayload>;
|
|
@@ -158535,6 +159199,10 @@ export declare type MutationAiManagedObject_UpdateAiManagedObjectArgs = {
|
|
|
158535
159199
|
id: Scalars['ID']['input'];
|
|
158536
159200
|
input: AiManagedObjectUpdateInput;
|
|
158537
159201
|
};
|
|
159202
|
+
export declare type MutationAiops_TerminateInvestigationArgs = {
|
|
159203
|
+
cloudId: Scalars['ID']['input'];
|
|
159204
|
+
input: AiOpsTerminateInvestigationInput;
|
|
159205
|
+
};
|
|
158538
159206
|
export declare type MutationAiops_TriggerInvestigationArgs = {
|
|
158539
159207
|
cloudId: Scalars['ID']['input'];
|
|
158540
159208
|
input: AiOpsTriggerInvestigationInput;
|
|
@@ -158957,6 +159625,9 @@ export declare type MutationAssetsVertical_UpdateVerticalInstantiationArgs = {
|
|
|
158957
159625
|
export declare type MutationAssetsVertical_UpdateVerticalInstantiationCategoryArgs = {
|
|
158958
159626
|
input: AssetsVerticalUpdateVerticalInstantiationCategoryInput;
|
|
158959
159627
|
};
|
|
159628
|
+
export declare type MutationAssetsVertical_WorkbenchDashboardTryUpgradeArgs = {
|
|
159629
|
+
input: AssetsVerticalWorkbenchDashboardTryUpgradeInput;
|
|
159630
|
+
};
|
|
158960
159631
|
export declare type MutationAssets_AddExternalReferenceTypeAttributeValueArgs = {
|
|
158961
159632
|
externalReferences: Array<AssetsExternalReferenceInput>;
|
|
158962
159633
|
objectId: Scalars['ID']['input'];
|
|
@@ -159201,9 +159872,11 @@ export declare type MutationChangeManagement_UpdateRovoRiskAssessmentSettingsArg
|
|
|
159201
159872
|
export declare type MutationChannelPlatform_AssignAgentToContactArgs = {
|
|
159202
159873
|
aaId?: InputMaybe<Scalars['String']['input']>;
|
|
159203
159874
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
159875
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
159204
159876
|
};
|
|
159205
159877
|
export declare type MutationChannelPlatform_AttachMediaFileArgs = {
|
|
159206
159878
|
fileId: Scalars['String']['input'];
|
|
159879
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
159207
159880
|
issueId: Scalars['String']['input'];
|
|
159208
159881
|
};
|
|
159209
159882
|
export declare type MutationChannelPlatform_BotConversationArgs = {
|
|
@@ -159211,9 +159884,11 @@ export declare type MutationChannelPlatform_BotConversationArgs = {
|
|
|
159211
159884
|
};
|
|
159212
159885
|
export declare type MutationChannelPlatform_CreateAttendeeArgs = {
|
|
159213
159886
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
159887
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
159214
159888
|
};
|
|
159215
159889
|
export declare type MutationChannelPlatform_CreateMeetingDetailsArgs = {
|
|
159216
159890
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
159891
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
159217
159892
|
};
|
|
159218
159893
|
export declare type MutationChannelPlatform_CreateQueuesArgs = {
|
|
159219
159894
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -159232,10 +159907,12 @@ export declare type MutationChannelPlatform_InitiateOtpArgs = {
|
|
|
159232
159907
|
conversationId: Scalars['String']['input'];
|
|
159233
159908
|
};
|
|
159234
159909
|
export declare type MutationChannelPlatform_PerformPluginActionArgs = {
|
|
159910
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
159235
159911
|
pluginActionRequest?: InputMaybe<ChannelPlatformPluginActionRequest>;
|
|
159236
159912
|
};
|
|
159237
159913
|
export declare type MutationChannelPlatform_RelayMessageArgs = {
|
|
159238
159914
|
eventRelayRequest?: InputMaybe<ChannelPlatformEventRelayRequest>;
|
|
159915
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
159239
159916
|
};
|
|
159240
159917
|
export declare type MutationChannelPlatform_UpdateTracMetricsArgs = {
|
|
159241
159918
|
metrics: Scalars['JSON']['input'];
|
|
@@ -160897,6 +161574,14 @@ export declare type MutationJiraOpenBeta_UpdateFeatureArgs = {
|
|
|
160897
161574
|
cloudId: Scalars['ID']['input'];
|
|
160898
161575
|
input?: InputMaybe<JiraOpenBetaFeatureUpdateInput>;
|
|
160899
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
|
+
};
|
|
160900
161585
|
export declare type MutationJira_AddAgentToBoardViewStatusColumnArgs = {
|
|
160901
161586
|
input: JiraAddAgentToBoardViewStatusColumnInput;
|
|
160902
161587
|
};
|
|
@@ -160995,6 +161680,10 @@ export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
|
160995
161680
|
export declare type MutationJira_DiscardUserTimelineViewConfigArgs = {
|
|
160996
161681
|
input: JiraDiscardUserTimelineViewConfigInput;
|
|
160997
161682
|
};
|
|
161683
|
+
export declare type MutationJira_DismissAgentContextItemArgs = {
|
|
161684
|
+
cloudId: Scalars['ID']['input'];
|
|
161685
|
+
input: JiraDismissAgentContextItemInput;
|
|
161686
|
+
};
|
|
160998
161687
|
export declare type MutationJira_DismissAiAgentSessionArgs = {
|
|
160999
161688
|
input?: InputMaybe<JiraDismissAiAgentSessionInput>;
|
|
161000
161689
|
};
|
|
@@ -161059,6 +161748,10 @@ export declare type MutationJira_ReorderBoardViewColumnArgs = {
|
|
|
161059
161748
|
export declare type MutationJira_ReorderProjectsSidebarMenuItemArgs = {
|
|
161060
161749
|
input: JiraReorderSidebarMenuItemInput;
|
|
161061
161750
|
};
|
|
161751
|
+
export declare type MutationJira_ResetAgentContextArgs = {
|
|
161752
|
+
cloudId: Scalars['ID']['input'];
|
|
161753
|
+
input: JiraResetAgentContextInput;
|
|
161754
|
+
};
|
|
161062
161755
|
export declare type MutationJira_ResetFaviconArgs = {
|
|
161063
161756
|
input: JiraResetFaviconInput;
|
|
161064
161757
|
};
|
|
@@ -161280,6 +161973,9 @@ export declare type MutationJira_TrashGlobalCustomFieldsArgs = {
|
|
|
161280
161973
|
export declare type MutationJira_UnarchiveIssueArgs = {
|
|
161281
161974
|
input: JiraIssueUnarchiveInput;
|
|
161282
161975
|
};
|
|
161976
|
+
export declare type MutationJira_UpdateBoardViewStatusColumnAgentArgs = {
|
|
161977
|
+
input: JiraUpdateBoardViewStatusColumnAgentInput;
|
|
161978
|
+
};
|
|
161283
161979
|
export declare type MutationJira_UpdateCustomFieldArgs = {
|
|
161284
161980
|
cloudId: Scalars['ID']['input'];
|
|
161285
161981
|
input: JiraUpdateCustomFieldInput;
|
|
@@ -161469,7 +162165,6 @@ export declare type MutationKitsune_CreateSnippetArgs = {
|
|
|
161469
162165
|
markId?: InputMaybe<Scalars['ID']['input']>;
|
|
161470
162166
|
};
|
|
161471
162167
|
export declare type MutationKitsune_CreateSpaceArgs = {
|
|
161472
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
161473
162168
|
name: Scalars['String']['input'];
|
|
161474
162169
|
workspaceAri: Scalars['ID']['input'];
|
|
161475
162170
|
};
|
|
@@ -161546,6 +162241,12 @@ export declare type MutationKitsune_UpdateCustomerArgs = {
|
|
|
161546
162241
|
ari: Scalars['ID']['input'];
|
|
161547
162242
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
161548
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
|
+
};
|
|
161549
162250
|
export declare type MutationKitsune_UpdateFeedbackArgs = {
|
|
161550
162251
|
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
161551
162252
|
customerId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -161638,6 +162339,7 @@ export declare type MutationLoom_DeleteVideosArgs = {
|
|
|
161638
162339
|
ids: Array<Scalars['ID']['input']>;
|
|
161639
162340
|
};
|
|
161640
162341
|
export declare type MutationLoom_JoinWorkspaceArgs = {
|
|
162342
|
+
flowTraceId?: InputMaybe<Scalars['String']['input']>;
|
|
161641
162343
|
workspaceId: Scalars['String']['input'];
|
|
161642
162344
|
};
|
|
161643
162345
|
export declare type MutationLoom_SpaceCreateArgs = {
|
|
@@ -162281,6 +162983,9 @@ export declare type MutationSpf_GrantEntityPermissionArgs = {
|
|
|
162281
162983
|
export declare type MutationSpf_PrioritizePlanScenarioInvestmentArgs = {
|
|
162282
162984
|
input: SpfPrioritizePlanScenarioInvestmentInput;
|
|
162283
162985
|
};
|
|
162986
|
+
export declare type MutationSpf_PromoteWorkItemToImpactedWorkArgs = {
|
|
162987
|
+
input: SpfPromoteWorkItemToImpactedWorkInput;
|
|
162988
|
+
};
|
|
162284
162989
|
export declare type MutationSpf_RejectProposedDateArgs = {
|
|
162285
162990
|
input: SpfResolveProposedDateInput;
|
|
162286
162991
|
};
|
|
@@ -165173,6 +165878,7 @@ export declare type PolarisView = {
|
|
|
165173
165878
|
global: Scalars['Boolean']['output'];
|
|
165174
165879
|
globalViewUuid?: Maybe<Scalars['ID']['output']>;
|
|
165175
165880
|
groupBy?: Maybe<PolarisIdeaField>;
|
|
165881
|
+
groupOrder?: Maybe<Scalars['String']['output']>;
|
|
165176
165882
|
groupValues?: Maybe<Array<PolarisGroupValue>>;
|
|
165177
165883
|
groupsFilter?: Maybe<Array<PolarisViewFilter>>;
|
|
165178
165884
|
hidden?: Maybe<Array<PolarisIdeaField>>;
|
|
@@ -165200,6 +165906,7 @@ export declare type PolarisView = {
|
|
|
165200
165906
|
userJql?: Maybe<Scalars['String']['output']>;
|
|
165201
165907
|
uuid: Scalars['ID']['output'];
|
|
165202
165908
|
verticalGroupBy?: Maybe<PolarisIdeaField>;
|
|
165909
|
+
verticalGroupOrder?: Maybe<Scalars['String']['output']>;
|
|
165203
165910
|
verticalGroupValues?: Maybe<Array<PolarisGroupValue>>;
|
|
165204
165911
|
verticalGroupsFilter?: Maybe<Array<PolarisViewFilter>>;
|
|
165205
165912
|
viewSetId: Scalars['ID']['output'];
|
|
@@ -166001,7 +166708,7 @@ export declare type Query = {
|
|
|
166001
166708
|
agentWorkspace_bulkScheduleImportJob?: Maybe<AgentWorkspaceBulkImportJob>;
|
|
166002
166709
|
agentWorkspace_capacity?: Maybe<AgentWorkspaceCapacityConnection>;
|
|
166003
166710
|
agentWorkspace_capacitySummary?: Maybe<AgentWorkspaceCapacitySummary>;
|
|
166004
|
-
agentWorkspace_categorySkillsInProject?: Maybe<
|
|
166711
|
+
agentWorkspace_categorySkillsInProject?: Maybe<AgentWorkspaceProjectSkillConnection>;
|
|
166005
166712
|
agentWorkspace_clusterServiceCategories?: Maybe<AgentWorkspaceServiceClusteringResult>;
|
|
166006
166713
|
agentWorkspace_coverShiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
|
|
166007
166714
|
agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
|
|
@@ -166032,6 +166739,7 @@ export declare type Query = {
|
|
|
166032
166739
|
agentWorkspace_teamRebalancingSummaries?: Maybe<Array<AgentWorkspaceTeamRebalancingSummary>>;
|
|
166033
166740
|
agentWorkspace_teamSchedules?: Maybe<AgentWorkspaceTeamSchedulesConnection>;
|
|
166034
166741
|
agentWorkspace_teamsMappedToProject?: Maybe<AgentWorkspaceTeamConnection>;
|
|
166742
|
+
agentWorkspace_utilizationForPendingChanges?: Maybe<Array<AgentWorkspaceAgentUtilizationForPendingChanges>>;
|
|
166035
166743
|
agent_sessionAssociationQuery?: Maybe<AgentSessionAssociationConnection>;
|
|
166036
166744
|
agent_sessionQuery?: Maybe<AgentSessionConnection>;
|
|
166037
166745
|
aiCoreApi_fetchRsaEmployeeTickets?: Maybe<AiCoreApiRsaEmployeeTicketsResult>;
|
|
@@ -166171,6 +166879,7 @@ export declare type Query = {
|
|
|
166171
166879
|
assetsVertical_verticalRoles?: Maybe<AssetsVerticalRolesResult>;
|
|
166172
166880
|
assetsVertical_verticalTemplate?: Maybe<AssetsVerticalVerticalTemplateResult>;
|
|
166173
166881
|
assetsVertical_verticalTemplateV2?: Maybe<AssetsVerticalVerticalTemplateV2Result>;
|
|
166882
|
+
assetsVertical_workbenchDashboardTemplateStatus?: Maybe<AssetsVerticalWorkbenchDashboardTemplateStatus>;
|
|
166174
166883
|
assets_bundle?: Maybe<AssetsBundleResult>;
|
|
166175
166884
|
assets_cdmObjectTypesDefinitions?: Maybe<Array<Maybe<AssetsCdmObjectTypeResult>>>;
|
|
166176
166885
|
assets_cdmSchemasDefinitions?: Maybe<Array<Maybe<AssetsCdmSchemaResult>>>;
|
|
@@ -166208,6 +166917,7 @@ export declare type Query = {
|
|
|
166208
166917
|
avp_getDashboardsByAris?: Maybe<Array<Maybe<AvpDashboard>>>;
|
|
166209
166918
|
avp_getDashboardsByStatus?: Maybe<AvpDashboardsConnection>;
|
|
166210
166919
|
avp_getFilterExpression?: Maybe<AvpFilterExpression>;
|
|
166920
|
+
avp_getJiraDashboardMigrationStatus?: Maybe<AvpJiraDashboardMigrationStatus>;
|
|
166211
166921
|
avp_getReadOnlyDashboard?: Maybe<AvpDashboard>;
|
|
166212
166922
|
avp_getRecentDashboards?: Maybe<Array<AvpRecentDashboard>>;
|
|
166213
166923
|
avp_getStarredDashboards?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -166547,6 +167257,7 @@ export declare type Query = {
|
|
|
166547
167257
|
csm_emailChannelConfiguration?: Maybe<CustomerServiceEmailChannelConfigQueryResult>;
|
|
166548
167258
|
csm_helpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataQueryResult>;
|
|
166549
167259
|
csm_liveChatAgent?: Maybe<CustomerServiceLiveChatAgentQueryResult>;
|
|
167260
|
+
csm_liveChatAgentByWorkerIdentity?: Maybe<CustomerServiceLiveChatAgentQueryResult>;
|
|
166550
167261
|
csm_liveChatAgents?: Maybe<CustomerServiceLiveChatAgentConnection>;
|
|
166551
167262
|
csm_liveChatSettings?: Maybe<CustomerServiceLiveChatSettingsQueryResult>;
|
|
166552
167263
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
@@ -166776,6 +167487,7 @@ export declare type Query = {
|
|
|
166776
167487
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
166777
167488
|
jiraReleases?: Maybe<JiraReleases>;
|
|
166778
167489
|
jiraServers?: Maybe<JiraServersResult>;
|
|
167490
|
+
jira_agentContextSources?: Maybe<JiraAgentContextItemConnection>;
|
|
166779
167491
|
jira_agentSessionsIsPlanModeEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
166780
167492
|
jira_backlog?: Maybe<JiraBacklog>;
|
|
166781
167493
|
jira_backlogView?: Maybe<JiraBacklogView>;
|
|
@@ -167234,6 +167946,7 @@ export declare type Query = {
|
|
|
167234
167946
|
supportInquiry_channelsIdentityHash?: Maybe<Scalars['String']['output']>;
|
|
167235
167947
|
supportInquiry_channelsIdentityHashByClientName?: Maybe<Scalars['String']['output']>;
|
|
167236
167948
|
supportInquiry_userContext?: Maybe<SupportInquiryUserContext>;
|
|
167949
|
+
tags_getAssignedLabels?: Maybe<Array<TagsAssignedLabel>>;
|
|
167237
167950
|
tags_getLabelAssignments?: Maybe<Array<TagsLabelAssignment>>;
|
|
167238
167951
|
tags_getTag?: Maybe<TagsResponse>;
|
|
167239
167952
|
tags_getTagByNameKindOrg?: Maybe<TagsResponse>;
|
|
@@ -168163,6 +168876,9 @@ export declare type QueryAgentWorkspace_TeamsMappedToProjectArgs = {
|
|
|
168163
168876
|
projectId: Scalars['ID']['input'];
|
|
168164
168877
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
168165
168878
|
};
|
|
168879
|
+
export declare type QueryAgentWorkspace_UtilizationForPendingChangesArgs = {
|
|
168880
|
+
input: AgentWorkspaceUtilizationForPendingChangesInput;
|
|
168881
|
+
};
|
|
168166
168882
|
export declare type QueryAgent_SessionAssociationQueryArgs = {
|
|
168167
168883
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
168168
168884
|
aqlQuery?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -168903,6 +169619,11 @@ export declare type QueryAssetsVertical_VerticalTemplateV2Args = {
|
|
|
168903
169619
|
type: AssetsVerticalVerticalType;
|
|
168904
169620
|
version?: InputMaybe<Scalars['String']['input']>;
|
|
168905
169621
|
};
|
|
169622
|
+
export declare type QueryAssetsVertical_WorkbenchDashboardTemplateStatusArgs = {
|
|
169623
|
+
avpTemplateVersion: Scalars['Int']['input'];
|
|
169624
|
+
cloudId: Scalars['ID']['input'];
|
|
169625
|
+
viewId: Scalars['ID']['input'];
|
|
169626
|
+
};
|
|
168906
169627
|
export declare type QueryAssets_BundleArgs = {
|
|
168907
169628
|
cloudId: Scalars['ID']['input'];
|
|
168908
169629
|
type: AssetsBundleType;
|
|
@@ -169048,6 +169769,9 @@ export declare type QueryAvp_GetDashboardsByStatusArgs = {
|
|
|
169048
169769
|
export declare type QueryAvp_GetFilterExpressionArgs = {
|
|
169049
169770
|
dashboardAri: Scalars['ID']['input'];
|
|
169050
169771
|
};
|
|
169772
|
+
export declare type QueryAvp_GetJiraDashboardMigrationStatusArgs = {
|
|
169773
|
+
input: AvpGetJiraDashboardMigrationStatusInput;
|
|
169774
|
+
};
|
|
169051
169775
|
export declare type QueryAvp_GetReadOnlyDashboardArgs = {
|
|
169052
169776
|
input: AvpGetReadOnlyDashboardInput;
|
|
169053
169777
|
};
|
|
@@ -169280,12 +170004,16 @@ export declare type QueryChannelPlatform_EvaluateChannelAvailabilityArgs = {
|
|
|
169280
170004
|
request?: InputMaybe<ChannelPlatformChannelAvailabilityRequestInput>;
|
|
169281
170005
|
};
|
|
169282
170006
|
export declare type QueryChannelPlatform_GenerateMediaTokenArgs = {
|
|
170007
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
169283
170008
|
issueId: Scalars['String']['input'];
|
|
169284
170009
|
};
|
|
169285
170010
|
export declare type QueryChannelPlatform_GetAgentIdForAaidArgs = {
|
|
169286
170011
|
aaId?: InputMaybe<Scalars['String']['input']>;
|
|
169287
170012
|
instanceId?: InputMaybe<Scalars['String']['input']>;
|
|
169288
170013
|
};
|
|
170014
|
+
export declare type QueryChannelPlatform_GetAgentStatusArgs = {
|
|
170015
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
170016
|
+
};
|
|
169289
170017
|
export declare type QueryChannelPlatform_GetAttachmentPreviewUrlArgs = {
|
|
169290
170018
|
attachmentId: Scalars['String']['input'];
|
|
169291
170019
|
issueId: Scalars['String']['input'];
|
|
@@ -169293,7 +170021,14 @@ export declare type QueryChannelPlatform_GetAttachmentPreviewUrlArgs = {
|
|
|
169293
170021
|
export declare type QueryChannelPlatform_GetChannelTokenArgs = {
|
|
169294
170022
|
request?: InputMaybe<ChannelPlatformGetChannelTokenRequest>;
|
|
169295
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
|
+
};
|
|
169296
170030
|
export declare type QueryChannelPlatform_GetContactDetailsArgs = {
|
|
170031
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
169297
170032
|
ticketId?: InputMaybe<Scalars['ID']['input']>;
|
|
169298
170033
|
};
|
|
169299
170034
|
export declare type QueryChannelPlatform_GetCustomerConversationsArgs = {
|
|
@@ -169306,6 +170041,7 @@ export declare type QueryChannelPlatform_GetQueueArgs = {
|
|
|
169306
170041
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
169307
170042
|
};
|
|
169308
170043
|
export declare type QueryChannelPlatform_GetQuickResponseArgs = {
|
|
170044
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
169309
170045
|
quickResponseId: Scalars['String']['input'];
|
|
169310
170046
|
};
|
|
169311
170047
|
export declare type QueryChannelPlatform_GetSurveyLinkArgs = {
|
|
@@ -169316,9 +170052,11 @@ export declare type QueryChannelPlatform_GetTicketDetailsArgs = {
|
|
|
169316
170052
|
conversationId?: InputMaybe<Scalars['ID']['input']>;
|
|
169317
170053
|
};
|
|
169318
170054
|
export declare type QueryChannelPlatform_GetTranscriptArgs = {
|
|
170055
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
169319
170056
|
request?: InputMaybe<ChannelPlatformTranscriptRequest>;
|
|
169320
170057
|
};
|
|
169321
170058
|
export declare type QueryChannelPlatform_ListQuickResponsesArgs = {
|
|
170059
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
169322
170060
|
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
169323
170061
|
nextToken?: InputMaybe<Scalars['String']['input']>;
|
|
169324
170062
|
};
|
|
@@ -169326,6 +170064,7 @@ export declare type QueryChannelPlatform_SampleQueueByIdArgs = {
|
|
|
169326
170064
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
169327
170065
|
};
|
|
169328
170066
|
export declare type QueryChannelPlatform_SearchQuickResponsesArgs = {
|
|
170067
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
169329
170068
|
request: ChannelPlatformQuickResponseSearchRequest;
|
|
169330
170069
|
};
|
|
169331
170070
|
export declare type QueryChannelPlatform_SubmitRequestArgs = {
|
|
@@ -170376,7 +171115,7 @@ export declare type QueryConvoai_HomeThreadsArgs = {
|
|
|
170376
171115
|
cloudId: Scalars['ID']['input'];
|
|
170377
171116
|
experience: Scalars['String']['input'];
|
|
170378
171117
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
170379
|
-
homeThreadsInput
|
|
171118
|
+
homeThreadsInput?: InputMaybe<ConvoAiHomeThreadsInput>;
|
|
170380
171119
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
170381
171120
|
};
|
|
170382
171121
|
export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
@@ -170589,6 +171328,10 @@ export declare type QueryCsm_LiveChatAgentArgs = {
|
|
|
170589
171328
|
accountId: Scalars['ID']['input'];
|
|
170590
171329
|
cloudId: Scalars['ID']['input'];
|
|
170591
171330
|
};
|
|
171331
|
+
export declare type QueryCsm_LiveChatAgentByWorkerIdentityArgs = {
|
|
171332
|
+
cloudId: Scalars['ID']['input'];
|
|
171333
|
+
workerIdentity: Scalars['ID']['input'];
|
|
171334
|
+
};
|
|
170592
171335
|
export declare type QueryCsm_LiveChatAgentsArgs = {
|
|
170593
171336
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
170594
171337
|
cloudId: Scalars['ID']['input'];
|
|
@@ -171482,6 +172225,13 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
171482
172225
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171483
172226
|
id: Scalars['ID']['input'];
|
|
171484
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
|
+
};
|
|
171485
172235
|
export declare type QueryJira_AgentSessionsIsPlanModeEnabledArgs = {
|
|
171486
172236
|
cloudId: Scalars['ID']['input'];
|
|
171487
172237
|
};
|
|
@@ -171782,7 +172532,6 @@ export declare type QueryKitsune_CustomersArgs = {
|
|
|
171782
172532
|
workspaceAri: Scalars['ID']['input'];
|
|
171783
172533
|
};
|
|
171784
172534
|
export declare type QueryKitsune_EntitlementsArgs = {
|
|
171785
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171786
172535
|
workspaceAri: Scalars['ID']['input'];
|
|
171787
172536
|
};
|
|
171788
172537
|
export declare type QueryKitsune_FeedbackEventArgs = {
|
|
@@ -171821,11 +172570,9 @@ export declare type QueryKitsune_RollupCustomersArgs = {
|
|
|
171821
172570
|
workspaceAri: Scalars['ID']['input'];
|
|
171822
172571
|
};
|
|
171823
172572
|
export declare type QueryKitsune_SearchChunkArgs = {
|
|
171824
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171825
172573
|
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
171826
172574
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
171827
172575
|
topK?: InputMaybe<Scalars['Int']['input']>;
|
|
171828
|
-
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
171829
172576
|
workspaceAri: Scalars['ID']['input'];
|
|
171830
172577
|
};
|
|
171831
172578
|
export declare type QueryKitsune_SearchCustomersArgs = {
|
|
@@ -171839,42 +172586,35 @@ export declare type QueryKitsune_SearchCustomersArgs = {
|
|
|
171839
172586
|
export declare type QueryKitsune_SearchFeedbackArgs = {
|
|
171840
172587
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
171841
172588
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
171842
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171843
172589
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171844
172590
|
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
171845
172591
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
171846
172592
|
spaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
171847
172593
|
withTotalCount?: InputMaybe<Scalars['Boolean']['input']>;
|
|
171848
|
-
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
171849
172594
|
workspaceAri: Scalars['ID']['input'];
|
|
171850
172595
|
};
|
|
171851
172596
|
export declare type QueryKitsune_SearchFeedbackWithHighlightsArgs = {
|
|
171852
172597
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
171853
172598
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
171854
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171855
172599
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171856
172600
|
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
171857
172601
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
171858
172602
|
spaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
171859
172603
|
withTotalCount?: InputMaybe<Scalars['Boolean']['input']>;
|
|
171860
|
-
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
171861
172604
|
workspaceAri: Scalars['ID']['input'];
|
|
171862
172605
|
};
|
|
171863
172606
|
export declare type QueryKitsune_SearchFieldsArgs = {
|
|
171864
172607
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
171865
172608
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
171866
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171867
172609
|
entityTypes?: InputMaybe<Array<KitsuneEntityType>>;
|
|
171868
172610
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171869
172611
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
171870
172612
|
name: Scalars['String']['input'];
|
|
171871
|
-
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
171872
172613
|
workspaceAri: Scalars['ID']['input'];
|
|
171873
172614
|
};
|
|
171874
172615
|
export declare type QueryKitsune_SearchInsightsArgs = {
|
|
171875
172616
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
171876
172617
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
171877
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171878
172618
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171879
172619
|
input?: InputMaybe<KitsuneSearchInsightsInput>;
|
|
171880
172620
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -171890,7 +172630,6 @@ export declare type QueryKitsune_SearchOrganizationsArgs = {
|
|
|
171890
172630
|
export declare type QueryKitsune_SearchSnippetsArgs = {
|
|
171891
172631
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
171892
172632
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
171893
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171894
172633
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171895
172634
|
insightAri?: InputMaybe<Scalars['ID']['input']>;
|
|
171896
172635
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -171909,11 +172648,9 @@ export declare type QueryKitsune_SpacesArgs = {
|
|
|
171909
172648
|
export declare type QueryKitsune_SpacesForWorkspaceArgs = {
|
|
171910
172649
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
171911
172650
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
171912
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171913
172651
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171914
172652
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
171915
172653
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
171916
|
-
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
171917
172654
|
workspaceAri: Scalars['ID']['input'];
|
|
171918
172655
|
};
|
|
171919
172656
|
export declare type QueryKitsune_ViewsArgs = {
|
|
@@ -172781,6 +173518,7 @@ export declare type QuerySpaceRoleAssignmentsByPrincipalArgs = {
|
|
|
172781
173518
|
export declare type QuerySpaceRolesByCriteriaArgs = {
|
|
172782
173519
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
172783
173520
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
173521
|
+
includeDisabledRoles?: InputMaybe<Scalars['Boolean']['input']>;
|
|
172784
173522
|
principal?: InputMaybe<RoleAssignmentPrincipalInput>;
|
|
172785
173523
|
spaceId?: InputMaybe<Scalars['Long']['input']>;
|
|
172786
173524
|
};
|
|
@@ -173244,6 +173982,11 @@ export declare type QuerySuggestedSpacesArgs = {
|
|
|
173244
173982
|
export declare type QuerySupportInquiry_ChannelsIdentityHashByClientNameArgs = {
|
|
173245
173983
|
request?: InputMaybe<SupportInquiryChannelPlatformIdentityHashRequest>;
|
|
173246
173984
|
};
|
|
173985
|
+
export declare type QueryTags_GetAssignedLabelsArgs = {
|
|
173986
|
+
entityAri: Scalars['String']['input'];
|
|
173987
|
+
kind: Scalars['String']['input'];
|
|
173988
|
+
orgId: Scalars['String']['input'];
|
|
173989
|
+
};
|
|
173247
173990
|
export declare type QueryTags_GetLabelAssignmentsArgs = {
|
|
173248
173991
|
entityAri: Scalars['String']['input'];
|
|
173249
173992
|
};
|
|
@@ -173731,6 +174474,7 @@ export declare enum RadarEntityType {
|
|
|
173731
174474
|
FocusArea = "focusArea",
|
|
173732
174475
|
FocusAreaType = "focusAreaType",
|
|
173733
174476
|
Position = "position",
|
|
174477
|
+
PositionsHistory = "positionsHistory",
|
|
173734
174478
|
Proposal = "proposal",
|
|
173735
174479
|
ProposedMovement = "proposedMovement",
|
|
173736
174480
|
Skill = "skill",
|
|
@@ -176452,6 +177196,7 @@ export declare type SearchError = {
|
|
|
176452
177196
|
export declare type SearchExperimentContextInput = {
|
|
176453
177197
|
experimentId?: InputMaybe<Scalars['String']['input']>;
|
|
176454
177198
|
experimentLayers?: InputMaybe<Array<InputMaybe<SearchExperimentLayer>>>;
|
|
177199
|
+
matchingLayerExperimentsMetadata?: InputMaybe<SearchMatchingLayerExperimentsMetadata>;
|
|
176455
177200
|
shadowExperimentId?: InputMaybe<Scalars['String']['input']>;
|
|
176456
177201
|
};
|
|
176457
177202
|
export declare type SearchExperimentLayer = {
|
|
@@ -176553,6 +177298,7 @@ export declare type SearchInput = {
|
|
|
176553
177298
|
includeBoostedLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
176554
177299
|
interleaveResults?: InputMaybe<Scalars['Boolean']['input']>;
|
|
176555
177300
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
177301
|
+
matchingLayerExperimentsMetadata?: InputMaybe<SearchMatchingLayerExperimentsMetadata>;
|
|
176556
177302
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
176557
177303
|
sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
|
|
176558
177304
|
};
|
|
@@ -176665,6 +177411,13 @@ export declare enum SearchLinkedResultCategory {
|
|
|
176665
177411
|
Similar = "similar"
|
|
176666
177412
|
}
|
|
176667
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
|
+
};
|
|
176668
177421
|
export declare type SearchMercuryFilter = {
|
|
176669
177422
|
ancestorIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
176670
177423
|
focusAreaTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -176741,6 +177494,7 @@ export declare type SearchQueryApiAsyncSearchArgs = {
|
|
|
176741
177494
|
interleaveResults?: InputMaybe<Scalars['Boolean']['input']>;
|
|
176742
177495
|
isSearchTool?: InputMaybe<Scalars['Boolean']['input']>;
|
|
176743
177496
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
177497
|
+
matchingLayerExperimentsMetadata?: InputMaybe<SearchMatchingLayerExperimentsMetadata>;
|
|
176744
177498
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
176745
177499
|
sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
|
|
176746
177500
|
};
|
|
@@ -176771,6 +177525,7 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
176771
177525
|
interleaveResults?: InputMaybe<Scalars['Boolean']['input']>;
|
|
176772
177526
|
isSearchTool?: InputMaybe<Scalars['Boolean']['input']>;
|
|
176773
177527
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
177528
|
+
matchingLayerExperimentsMetadata?: InputMaybe<SearchMatchingLayerExperimentsMetadata>;
|
|
176774
177529
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
176775
177530
|
sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
|
|
176776
177531
|
};
|
|
@@ -197676,6 +198431,7 @@ export declare type SpacePermissionsSubjectsWithPermissionsArgs = {
|
|
|
197676
198431
|
export declare type SpaceRole = {
|
|
197677
198432
|
__typename?: 'SpaceRole';
|
|
197678
198433
|
confluenceRoleAssignabilityCode: ConfluenceRoleAssignabilityCode;
|
|
198434
|
+
disabled: Scalars['Boolean']['output'];
|
|
197679
198435
|
inUseByDefaultSpaceRoleAssignments?: Maybe<Scalars['Boolean']['output']>;
|
|
197680
198436
|
inUseByPrincipals?: Maybe<Scalars['Boolean']['output']>;
|
|
197681
198437
|
roleDescription: Scalars['String']['output'];
|
|
@@ -198752,6 +199508,10 @@ export declare type SpfPrioritizePlanScenarioInvestmentPayload = Payload & {
|
|
|
198752
199508
|
planScenarioInvestments?: Maybe<Array<SpfPlanScenarioInvestmentEdge>>;
|
|
198753
199509
|
success: Scalars['Boolean']['output'];
|
|
198754
199510
|
};
|
|
199511
|
+
export declare type SpfPromoteWorkItemToImpactedWorkInput = {
|
|
199512
|
+
connectedWorkId: Scalars['String']['input'];
|
|
199513
|
+
id: Scalars['ID']['input'];
|
|
199514
|
+
};
|
|
198755
199515
|
export declare type SpfRemovePlanApproverInput = {
|
|
198756
199516
|
approverId: Scalars['String']['input'];
|
|
198757
199517
|
planId: Scalars['ID']['input'];
|
|
@@ -201579,6 +202339,11 @@ export declare type TagsAssignLabelInput = {
|
|
|
201579
202339
|
orgId: Scalars['String']['input'];
|
|
201580
202340
|
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
201581
202341
|
};
|
|
202342
|
+
export declare type TagsAssignedLabel = {
|
|
202343
|
+
__typename?: 'TagsAssignedLabel';
|
|
202344
|
+
assignment: TagsLabelAssignment;
|
|
202345
|
+
tag?: Maybe<TagsResponse>;
|
|
202346
|
+
};
|
|
201582
202347
|
export declare type TagsCreateAndAssignLabelInput = {
|
|
201583
202348
|
entityAri: Scalars['String']['input'];
|
|
201584
202349
|
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -204142,12 +204907,18 @@ export declare enum TownsquareGoalSortEnum {
|
|
|
204142
204907
|
LatestUpdateDateDesc = "LATEST_UPDATE_DATE_DESC",
|
|
204143
204908
|
NameAsc = "NAME_ASC",
|
|
204144
204909
|
NameDesc = "NAME_DESC",
|
|
204910
|
+
PhaseIdAsc = "PHASE_ID_ASC",
|
|
204911
|
+
PhaseIdDesc = "PHASE_ID_DESC",
|
|
204145
204912
|
ProjectCountAsc = "PROJECT_COUNT_ASC",
|
|
204146
204913
|
ProjectCountDesc = "PROJECT_COUNT_DESC",
|
|
204147
204914
|
ScoreAsc = "SCORE_ASC",
|
|
204148
204915
|
ScoreDesc = "SCORE_DESC",
|
|
204916
|
+
StartDateAsc = "START_DATE_ASC",
|
|
204917
|
+
StartDateDesc = "START_DATE_DESC",
|
|
204149
204918
|
TargetDateAsc = "TARGET_DATE_ASC",
|
|
204150
204919
|
TargetDateDesc = "TARGET_DATE_DESC",
|
|
204920
|
+
WatcherCountAsc = "WATCHER_COUNT_ASC",
|
|
204921
|
+
WatcherCountDesc = "WATCHER_COUNT_DESC",
|
|
204151
204922
|
WatchingAsc = "WATCHING_ASC",
|
|
204152
204923
|
WatchingDesc = "WATCHING_DESC"
|
|
204153
204924
|
}
|
|
@@ -204382,6 +205153,7 @@ export declare type TownsquareGoalsAppPermissionPolicyInput = {
|
|
|
204382
205153
|
export declare type TownsquareGoalsAppSettings = {
|
|
204383
205154
|
__typename?: 'TownsquareGoalsAppSettings';
|
|
204384
205155
|
aiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
205156
|
+
defaultGoalAccessLevel?: Maybe<TownsquareGoalAccessLevel>;
|
|
204385
205157
|
scoringMode?: Maybe<TownsquareGoalScoringMode>;
|
|
204386
205158
|
};
|
|
204387
205159
|
export declare type TownsquareGoalsArchiveMetricInput = {
|
|
@@ -207566,6 +208338,11 @@ export declare type TrelloAtlassianIntelligence = {
|
|
|
207566
208338
|
__typename?: 'TrelloAtlassianIntelligence';
|
|
207567
208339
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
207568
208340
|
};
|
|
208341
|
+
export declare type TrelloAtlassianOrganization = {
|
|
208342
|
+
__typename?: 'TrelloAtlassianOrganization';
|
|
208343
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
208344
|
+
id: Scalars['ID']['output'];
|
|
208345
|
+
};
|
|
207569
208346
|
export declare type TrelloAtlassianSite = {
|
|
207570
208347
|
__typename?: 'TrelloAtlassianSite';
|
|
207571
208348
|
resourceId: Scalars['String']['output'];
|
|
@@ -208920,6 +209697,7 @@ export declare type TrelloCompleteOnboardingInput = {
|
|
|
208920
209697
|
export declare type TrelloCompleteOnboardingPayload = Payload & {
|
|
208921
209698
|
__typename?: 'TrelloCompleteOnboardingPayload';
|
|
208922
209699
|
board: TrelloBoard;
|
|
209700
|
+
boardV2?: Maybe<TrelloBaseBoard>;
|
|
208923
209701
|
errors?: Maybe<Array<MutationError>>;
|
|
208924
209702
|
success: Scalars['Boolean']['output'];
|
|
208925
209703
|
workspace?: Maybe<TrelloWorkspace>;
|
|
@@ -209590,6 +210368,7 @@ export declare type TrelloEndVoiceCaptureSessionPayload = Payload & {
|
|
|
209590
210368
|
export declare type TrelloEnterprise = Node & {
|
|
209591
210369
|
__typename?: 'TrelloEnterprise';
|
|
209592
210370
|
admins?: Maybe<TrelloMemberConnection>;
|
|
210371
|
+
atlassianOrganization?: Maybe<TrelloAtlassianOrganization>;
|
|
209593
210372
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
209594
210373
|
id: Scalars['ID']['output'];
|
|
209595
210374
|
managedMemberTokensCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -209648,6 +210427,7 @@ export declare type TrelloGenerateBoardBackgroundWithAiPayload = Payload & {
|
|
|
209648
210427
|
__typename?: 'TrelloGenerateBoardBackgroundWithAiPayload';
|
|
209649
210428
|
board?: Maybe<TrelloBaseBoard>;
|
|
209650
210429
|
errors?: Maybe<Array<MutationError>>;
|
|
210430
|
+
member?: Maybe<TrelloMember>;
|
|
209651
210431
|
success: Scalars['Boolean']['output'];
|
|
209652
210432
|
};
|
|
209653
210433
|
export declare type TrelloGenerateCardCoverWithAiInput = {
|
|
@@ -209659,6 +210439,7 @@ export declare type TrelloGenerateCardCoverWithAiPayload = Payload & {
|
|
|
209659
210439
|
__typename?: 'TrelloGenerateCardCoverWithAiPayload';
|
|
209660
210440
|
card?: Maybe<TrelloBaseCard>;
|
|
209661
210441
|
errors?: Maybe<Array<MutationError>>;
|
|
210442
|
+
member?: Maybe<TrelloMember>;
|
|
209662
210443
|
success: Scalars['Boolean']['output'];
|
|
209663
210444
|
};
|
|
209664
210445
|
export declare type TrelloGenerateCardSummaryInput = {
|
|
@@ -210371,6 +211152,7 @@ export declare type TrelloMemberUpdated = {
|
|
|
210371
211152
|
planner?: Maybe<TrelloPlannerUpdated>;
|
|
210372
211153
|
referral?: Maybe<TrelloMemberReferralUpdated>;
|
|
210373
211154
|
referrer?: Maybe<TrelloMemberReferrerUpdated>;
|
|
211155
|
+
usageLimits?: Maybe<Array<TrelloUsageLimitUpdated>>;
|
|
210374
211156
|
username?: Maybe<Scalars['String']['output']>;
|
|
210375
211157
|
};
|
|
210376
211158
|
export declare type TrelloMemberUpdatedConnection = {
|
|
@@ -213215,6 +213997,7 @@ export declare enum TrelloUsageLimitKey {
|
|
|
213215
213997
|
AiBoardBackgroundGeneration = "AI_BOARD_BACKGROUND_GENERATION",
|
|
213216
213998
|
AiCardCoverGeneration = "AI_CARD_COVER_GENERATION"
|
|
213217
213999
|
}
|
|
214000
|
+
export declare type TrelloUsageLimitUpdated = TrelloUsageLimit;
|
|
213218
214001
|
export declare type TrelloUserGeneratedText = {
|
|
213219
214002
|
__typename?: 'TrelloUserGeneratedText';
|
|
213220
214003
|
text?: Maybe<Scalars['String']['output']>;
|
|
@@ -215706,6 +216489,7 @@ export declare type UpdatePolarisViewInput = {
|
|
|
215706
216489
|
fields?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
215707
216490
|
filter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
215708
216491
|
groupBy?: InputMaybe<Scalars['ID']['input']>;
|
|
216492
|
+
groupOrder?: InputMaybe<Scalars['String']['input']>;
|
|
215709
216493
|
groupValues?: InputMaybe<Array<PolarisGroupValueInput>>;
|
|
215710
216494
|
groupsFilter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
215711
216495
|
hidden?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -215727,6 +216511,7 @@ export declare type UpdatePolarisViewInput = {
|
|
|
215727
216511
|
treeConfig?: InputMaybe<UpdatePolarisTreeConfig>;
|
|
215728
216512
|
userJql?: InputMaybe<Scalars['String']['input']>;
|
|
215729
216513
|
verticalGroupBy?: InputMaybe<Scalars['ID']['input']>;
|
|
216514
|
+
verticalGroupOrder?: InputMaybe<Scalars['String']['input']>;
|
|
215730
216515
|
verticalGroupValues?: InputMaybe<Array<PolarisGroupValueInput>>;
|
|
215731
216516
|
verticalGroupsFilter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
215732
216517
|
view?: InputMaybe<Scalars['ID']['input']>;
|