@forge/cli-shared 8.23.1-next.2 → 8.23.1-next.2-experimental-ad10820
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 +1935 -122
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +182 -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>;
|
|
@@ -4821,6 +4944,7 @@ export declare type AdminUnit = {
|
|
|
4821
4944
|
name: Scalars['String']['output'];
|
|
4822
4945
|
orgId: Scalars['ID']['output'];
|
|
4823
4946
|
sites?: Maybe<AdminSiteConnection>;
|
|
4947
|
+
type?: Maybe<AdminUnitType>;
|
|
4824
4948
|
userStats?: Maybe<AdminUnitUserStats>;
|
|
4825
4949
|
};
|
|
4826
4950
|
export declare type AdminUnitAppsArgs = {
|
|
@@ -4892,6 +5016,10 @@ export declare type AdminUnitPageInfo = {
|
|
|
4892
5016
|
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
4893
5017
|
previousCursor?: Maybe<Scalars['String']['output']>;
|
|
4894
5018
|
};
|
|
5019
|
+
export declare enum AdminUnitType {
|
|
5020
|
+
Production = "PRODUCTION",
|
|
5021
|
+
Sandbox = "SANDBOX"
|
|
5022
|
+
}
|
|
4895
5023
|
export declare type AdminUnitUserStats = {
|
|
4896
5024
|
__typename?: 'AdminUnitUserStats';
|
|
4897
5025
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -4911,7 +5039,8 @@ export declare enum AdminUnitsEligibilityState {
|
|
|
4911
5039
|
UnitsNotEligible = "UNITS_NOT_ELIGIBLE"
|
|
4912
5040
|
}
|
|
4913
5041
|
export declare type AdminUnitsForOrgSearchInput = {
|
|
4914
|
-
name
|
|
5042
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
5043
|
+
type?: InputMaybe<AdminUnitType>;
|
|
4915
5044
|
};
|
|
4916
5045
|
export declare type AdminUnitsForOrgSortInput = {
|
|
4917
5046
|
name: SortDirection;
|
|
@@ -5275,7 +5404,7 @@ export declare type AgentSessionEdge = {
|
|
|
5275
5404
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
5276
5405
|
node?: Maybe<AgentSession>;
|
|
5277
5406
|
};
|
|
5278
|
-
export declare type AgentSessionLinkedEntity = JiraIssue;
|
|
5407
|
+
export declare type AgentSessionLinkedEntity = ConfluencePage | JiraIssue;
|
|
5279
5408
|
export declare type AgentSessionNode = {
|
|
5280
5409
|
id?: Maybe<Scalars['ID']['output']>;
|
|
5281
5410
|
};
|
|
@@ -5558,6 +5687,7 @@ export declare type AgentStudioAssistantConversation = {
|
|
|
5558
5687
|
id?: Maybe<Scalars['ID']['output']>;
|
|
5559
5688
|
lastMessageDate?: Maybe<Scalars['String']['output']>;
|
|
5560
5689
|
name?: Maybe<Scalars['String']['output']>;
|
|
5690
|
+
resolutionReason?: Maybe<Scalars['String']['output']>;
|
|
5561
5691
|
resolutionStatus?: Maybe<AgentStudioResolutionStatus>;
|
|
5562
5692
|
};
|
|
5563
5693
|
export declare type AgentStudioAssistantConversationEdge = {
|
|
@@ -7000,7 +7130,6 @@ export declare type AgentWorkspaceAgentShifts = {
|
|
|
7000
7130
|
__typename?: 'AgentWorkspaceAgentShifts';
|
|
7001
7131
|
agent: AgentWorkspaceAgent;
|
|
7002
7132
|
coverageGapDetails?: Maybe<Array<AgentWorkspaceCoverageGap>>;
|
|
7003
|
-
coverageGaps: Array<AgentWorkspaceTimeRange>;
|
|
7004
7133
|
coveringShifts: Array<AgentWorkspaceCoveringShift>;
|
|
7005
7134
|
hasShifts: Scalars['Boolean']['output'];
|
|
7006
7135
|
shifts: Array<AgentWorkspaceShift>;
|
|
@@ -7011,6 +7140,14 @@ export declare type AgentWorkspaceAgentShiftsEdge = {
|
|
|
7011
7140
|
cursor: Scalars['String']['output'];
|
|
7012
7141
|
node: AgentWorkspaceAgentShifts;
|
|
7013
7142
|
};
|
|
7143
|
+
export declare type AgentWorkspaceAgentUtilizationForPendingChanges = {
|
|
7144
|
+
__typename?: 'AgentWorkspaceAgentUtilizationForPendingChanges';
|
|
7145
|
+
agentId: Scalars['ID']['output'];
|
|
7146
|
+
currentWorkItemCount: Scalars['Int']['output'];
|
|
7147
|
+
projectedStatus: AgentWorkspaceCapacityStatus;
|
|
7148
|
+
projectedUtilization: Scalars['Float']['output'];
|
|
7149
|
+
projectedWorkItemCount: Scalars['Int']['output'];
|
|
7150
|
+
};
|
|
7014
7151
|
export declare type AgentWorkspaceAgentsPageInfo = {
|
|
7015
7152
|
__typename?: 'AgentWorkspaceAgentsPageInfo';
|
|
7016
7153
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -7268,6 +7405,7 @@ export declare type AgentWorkspaceCreateDraftedRoutingTableEntriesInput = {
|
|
|
7268
7405
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
7269
7406
|
fieldId: Scalars['String']['input'];
|
|
7270
7407
|
projectKey: Scalars['String']['input'];
|
|
7408
|
+
serviceFieldType: Scalars['String']['input'];
|
|
7271
7409
|
};
|
|
7272
7410
|
export declare type AgentWorkspaceCreateDraftedRoutingTableEntriesPayload = {
|
|
7273
7411
|
__typename?: 'AgentWorkspaceCreateDraftedRoutingTableEntriesPayload';
|
|
@@ -7315,17 +7453,6 @@ export declare type AgentWorkspaceDefaultCapacity = {
|
|
|
7315
7453
|
projectId: Scalars['ID']['output'];
|
|
7316
7454
|
updatedAt: Scalars['DateTime']['output'];
|
|
7317
7455
|
};
|
|
7318
|
-
export declare type AgentWorkspaceDeleteCoverShiftInput = {
|
|
7319
|
-
agentId: Scalars['ID']['input'];
|
|
7320
|
-
coveringShiftId: Scalars['ID']['input'];
|
|
7321
|
-
projectARI: Scalars['ID']['input'];
|
|
7322
|
-
scheduleId: Scalars['ID']['input'];
|
|
7323
|
-
};
|
|
7324
|
-
export declare type AgentWorkspaceDeleteCoverShiftPayload = {
|
|
7325
|
-
__typename?: 'AgentWorkspaceDeleteCoverShiftPayload';
|
|
7326
|
-
errors?: Maybe<Array<AgentWorkspaceScheduleError>>;
|
|
7327
|
-
success: Scalars['Boolean']['output'];
|
|
7328
|
-
};
|
|
7329
7456
|
export declare type AgentWorkspaceDeleteScheduleInput = {
|
|
7330
7457
|
cloudId: Scalars['ID']['input'];
|
|
7331
7458
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -7351,6 +7478,16 @@ export declare type AgentWorkspaceDeleteShiftPayload = {
|
|
|
7351
7478
|
shift?: Maybe<AgentWorkspaceShift>;
|
|
7352
7479
|
success: Scalars['Boolean']['output'];
|
|
7353
7480
|
};
|
|
7481
|
+
export declare type AgentWorkspaceDiscardDraftedRoutingTableInput = {
|
|
7482
|
+
cloudId: Scalars['ID']['input'];
|
|
7483
|
+
projectKey: Scalars['String']['input'];
|
|
7484
|
+
serviceFieldId: Scalars['String']['input'];
|
|
7485
|
+
};
|
|
7486
|
+
export declare type AgentWorkspaceDiscardDraftedRoutingTablePayload = {
|
|
7487
|
+
__typename?: 'AgentWorkspaceDiscardDraftedRoutingTablePayload';
|
|
7488
|
+
entriesDeleted: Scalars['Int']['output'];
|
|
7489
|
+
serviceFieldId: Scalars['String']['output'];
|
|
7490
|
+
};
|
|
7354
7491
|
export declare type AgentWorkspaceDraftedRoutingTableEntries = {
|
|
7355
7492
|
__typename?: 'AgentWorkspaceDraftedRoutingTableEntries';
|
|
7356
7493
|
entries: Array<AgentWorkspaceDraftedRoutingTableEntry>;
|
|
@@ -7361,23 +7498,16 @@ export declare type AgentWorkspaceDraftedRoutingTableEntry = {
|
|
|
7361
7498
|
description?: Maybe<Scalars['String']['output']>;
|
|
7362
7499
|
serviceId: Scalars['ID']['output'];
|
|
7363
7500
|
serviceName: Scalars['String']['output'];
|
|
7364
|
-
skills
|
|
7501
|
+
skills?: Maybe<Array<AgentWorkspaceSkill>>;
|
|
7365
7502
|
team?: Maybe<TeamV2>;
|
|
7366
7503
|
teamAri?: Maybe<Scalars['ID']['output']>;
|
|
7367
7504
|
version: Scalars['Int']['output'];
|
|
7368
7505
|
};
|
|
7369
7506
|
export declare type AgentWorkspaceDraftedRoutingTableEntryPatch = {
|
|
7370
|
-
confidence?: InputMaybe<Scalars['Float']['input']>;
|
|
7371
7507
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7372
|
-
serviceName?: InputMaybe<Scalars['String']['input']>;
|
|
7373
7508
|
skills?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7374
|
-
source?: InputMaybe<AgentWorkspaceDraftedRoutingTableEntrySource>;
|
|
7375
7509
|
teamAri?: InputMaybe<Scalars['ID']['input']>;
|
|
7376
7510
|
};
|
|
7377
|
-
export declare enum AgentWorkspaceDraftedRoutingTableEntrySource {
|
|
7378
|
-
Manual = "MANUAL",
|
|
7379
|
-
Rovo = "ROVO"
|
|
7380
|
-
}
|
|
7381
7511
|
export declare type AgentWorkspaceDraftedRoutingTableStatus = {
|
|
7382
7512
|
__typename?: 'AgentWorkspaceDraftedRoutingTableStatus';
|
|
7383
7513
|
serviceFieldId?: Maybe<Scalars['String']['output']>;
|
|
@@ -7443,11 +7573,7 @@ export declare type AgentWorkspaceGroupTooLarge = {
|
|
|
7443
7573
|
export declare type AgentWorkspaceIssueRebalancingRecommendation = {
|
|
7444
7574
|
__typename?: 'AgentWorkspaceIssueRebalancingRecommendation';
|
|
7445
7575
|
issueARI: Scalars['ID']['output'];
|
|
7446
|
-
projectedReceiverUtilization: Scalars['Float']['output'];
|
|
7447
|
-
projectedSourceUtilization: Scalars['Float']['output'];
|
|
7448
7576
|
recommendations: Array<AgentWorkspaceRebalancingRecommendation>;
|
|
7449
|
-
sourceAgentId: Scalars['ID']['output'];
|
|
7450
|
-
toAgentId: Scalars['ID']['output'];
|
|
7451
7577
|
};
|
|
7452
7578
|
export declare type AgentWorkspaceLiveRoutingTable = {
|
|
7453
7579
|
__typename?: 'AgentWorkspaceLiveRoutingTable';
|
|
@@ -7463,6 +7589,15 @@ export declare type AgentWorkspacePageInfo = {
|
|
|
7463
7589
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
7464
7590
|
hasNextPage: Scalars['Boolean']['output'];
|
|
7465
7591
|
};
|
|
7592
|
+
export declare type AgentWorkspacePendingAgentUtilizationChangesInput = {
|
|
7593
|
+
id: Scalars['ID']['input'];
|
|
7594
|
+
newTicketsByTeam: Array<AgentWorkspacePendingTicketsByTeamInput>;
|
|
7595
|
+
removedTicketsByTeam: Array<AgentWorkspacePendingTicketsByTeamInput>;
|
|
7596
|
+
};
|
|
7597
|
+
export declare type AgentWorkspacePendingTicketsByTeamInput = {
|
|
7598
|
+
count: Scalars['Int']['input'];
|
|
7599
|
+
issueTeam?: InputMaybe<Scalars['ID']['input']>;
|
|
7600
|
+
};
|
|
7466
7601
|
export declare type AgentWorkspaceProjectDefaultAvailability = {
|
|
7467
7602
|
__typename?: 'AgentWorkspaceProjectDefaultAvailability';
|
|
7468
7603
|
projectId: Scalars['ID']['output'];
|
|
@@ -7542,6 +7677,7 @@ export declare type AgentWorkspaceProjectSkillService = {
|
|
|
7542
7677
|
};
|
|
7543
7678
|
export declare type AgentWorkspaceRebalancingRecommendation = {
|
|
7544
7679
|
__typename?: 'AgentWorkspaceRebalancingRecommendation';
|
|
7680
|
+
sourceAgentId: Scalars['ID']['output'];
|
|
7545
7681
|
toAgentId: Scalars['ID']['output'];
|
|
7546
7682
|
};
|
|
7547
7683
|
export declare type AgentWorkspaceRecommendationError = {
|
|
@@ -7558,11 +7694,6 @@ export declare type AgentWorkspaceRecommendedAgentsForCoverageGapPayload = {
|
|
|
7558
7694
|
excludedAgents: Array<AgentWorkspaceExcludedAgent>;
|
|
7559
7695
|
recommendedAgents: Array<AgentWorkspaceAgent>;
|
|
7560
7696
|
};
|
|
7561
|
-
export declare type AgentWorkspaceRecommendedAgentsForGapInput = {
|
|
7562
|
-
originalAgentId: Scalars['ID']['input'];
|
|
7563
|
-
projectARI: Scalars['ID']['input'];
|
|
7564
|
-
scheduleId: Scalars['ID']['input'];
|
|
7565
|
-
};
|
|
7566
7697
|
export declare type AgentWorkspaceRecommendedAssigneesResponse = {
|
|
7567
7698
|
__typename?: 'AgentWorkspaceRecommendedAssigneesResponse';
|
|
7568
7699
|
errors?: Maybe<Array<AgentWorkspaceRecommendationError>>;
|
|
@@ -7659,9 +7790,9 @@ export declare type AgentWorkspaceRoutingHistoryUserEntity = AgentWorkspaceRouti
|
|
|
7659
7790
|
export declare type AgentWorkspaceRoutingTableEntry = {
|
|
7660
7791
|
__typename?: 'AgentWorkspaceRoutingTableEntry';
|
|
7661
7792
|
description: Scalars['String']['output'];
|
|
7662
|
-
|
|
7663
|
-
serviceFieldValue: Scalars['String']['output'];
|
|
7793
|
+
serviceId: Scalars['ID']['output'];
|
|
7664
7794
|
serviceName: Scalars['String']['output'];
|
|
7795
|
+
skills?: Maybe<Array<AgentWorkspaceSkill>>;
|
|
7665
7796
|
team?: Maybe<TeamV2>;
|
|
7666
7797
|
teamAri: Scalars['ID']['output'];
|
|
7667
7798
|
};
|
|
@@ -7696,7 +7827,6 @@ export declare type AgentWorkspaceSchedule = {
|
|
|
7696
7827
|
agents: Array<AgentWorkspaceAgent>;
|
|
7697
7828
|
cloudId: Scalars['ID']['output'];
|
|
7698
7829
|
coverageGapDetails?: Maybe<Array<AgentWorkspaceCoverageGap>>;
|
|
7699
|
-
coverageGaps: Array<AgentWorkspaceTimeRange>;
|
|
7700
7830
|
createdAt: Scalars['DateTime']['output'];
|
|
7701
7831
|
createdBy: Scalars['String']['output'];
|
|
7702
7832
|
createdByUser?: Maybe<User>;
|
|
@@ -7731,15 +7861,20 @@ export declare type AgentWorkspaceScheduleError = {
|
|
|
7731
7861
|
message: Scalars['String']['output'];
|
|
7732
7862
|
};
|
|
7733
7863
|
export declare enum AgentWorkspaceScheduleErrorCode {
|
|
7864
|
+
AgentMismatch = "AGENT_MISMATCH",
|
|
7734
7865
|
AgentNotFound = "AGENT_NOT_FOUND",
|
|
7735
7866
|
AgentNotInTeam = "AGENT_NOT_IN_TEAM",
|
|
7867
|
+
ConcurrentModification = "CONCURRENT_MODIFICATION",
|
|
7868
|
+
CoveringShiftNotFound = "COVERING_SHIFT_NOT_FOUND",
|
|
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 = {
|
|
@@ -8254,7 +8387,7 @@ export declare type AgentWorkspaceUpdateSkillMappingsInProjectInput = {
|
|
|
8254
8387
|
export declare type AgentWorkspaceUpdateSkillMappingsInProjectPayload = {
|
|
8255
8388
|
__typename?: 'AgentWorkspaceUpdateSkillMappingsInProjectPayload';
|
|
8256
8389
|
errors?: Maybe<Array<MutationError>>;
|
|
8257
|
-
|
|
8390
|
+
projectSkill?: Maybe<AgentWorkspaceProjectSkill>;
|
|
8258
8391
|
success: Scalars['Boolean']['output'];
|
|
8259
8392
|
};
|
|
8260
8393
|
export declare type AgentWorkspaceUpdateSmartRoutingConfigInput = {
|
|
@@ -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']>;
|
|
@@ -8376,7 +8514,8 @@ export declare enum AiCoreApiRsaQueryType {
|
|
|
8376
8514
|
Employee = "EMPLOYEE",
|
|
8377
8515
|
Funnel = "FUNNEL",
|
|
8378
8516
|
Resolved = "RESOLVED",
|
|
8379
|
-
RtDistribution = "RT_DISTRIBUTION"
|
|
8517
|
+
RtDistribution = "RT_DISTRIBUTION",
|
|
8518
|
+
SkillGap = "SKILL_GAP"
|
|
8380
8519
|
}
|
|
8381
8520
|
export declare type AiCoreApiRsaReportInput = {
|
|
8382
8521
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -8398,10 +8537,12 @@ export declare type AiCoreApiRsaReportPayload = {
|
|
|
8398
8537
|
funnel?: Maybe<AiCoreApiRsaFunnelResult>;
|
|
8399
8538
|
resolved?: Maybe<AiCoreApiRsaResolvedResult>;
|
|
8400
8539
|
rtDistribution?: Maybe<AiCoreApiRsaRtDistributionResult>;
|
|
8540
|
+
skillGap?: Maybe<AiCoreApiRsaSkillGapResult>;
|
|
8401
8541
|
status: AiCoreApiRsaJobStatus;
|
|
8402
8542
|
truncated?: Maybe<Scalars['Boolean']['output']>;
|
|
8403
8543
|
};
|
|
8404
8544
|
export declare enum AiCoreApiRsaReportType {
|
|
8545
|
+
Insight = "INSIGHT",
|
|
8405
8546
|
Overview = "OVERVIEW"
|
|
8406
8547
|
}
|
|
8407
8548
|
export declare type AiCoreApiRsaRequestTypeEntry = {
|
|
@@ -8423,6 +8564,22 @@ export declare type AiCoreApiRsaRtDistributionResult = {
|
|
|
8423
8564
|
__typename?: 'AiCoreApiRsaRtDistributionResult';
|
|
8424
8565
|
byRequestType: Array<AiCoreApiRsaRequestTypeEntry>;
|
|
8425
8566
|
};
|
|
8567
|
+
export declare type AiCoreApiRsaSkill = {
|
|
8568
|
+
__typename?: 'AiCoreApiRsaSkill';
|
|
8569
|
+
name: Scalars['String']['output'];
|
|
8570
|
+
totalTickets: Scalars['Int']['output'];
|
|
8571
|
+
};
|
|
8572
|
+
export declare type AiCoreApiRsaSkillGapItem = {
|
|
8573
|
+
__typename?: 'AiCoreApiRsaSkillGapItem';
|
|
8574
|
+
requestType: Scalars['String']['output'];
|
|
8575
|
+
skills: Array<AiCoreApiRsaSkill>;
|
|
8576
|
+
tool: Scalars['String']['output'];
|
|
8577
|
+
totalTickets: Scalars['Int']['output'];
|
|
8578
|
+
};
|
|
8579
|
+
export declare type AiCoreApiRsaSkillGapResult = {
|
|
8580
|
+
__typename?: 'AiCoreApiRsaSkillGapResult';
|
|
8581
|
+
items: Array<AiCoreApiRsaSkillGapItem>;
|
|
8582
|
+
};
|
|
8426
8583
|
export declare type AiCoreApiVsaQuestions = {
|
|
8427
8584
|
__typename?: 'AiCoreApiVSAQuestions';
|
|
8428
8585
|
projectAri: Scalars['ID']['output'];
|
|
@@ -12554,6 +12711,12 @@ export declare type AssetsDmObjectsReportAttributeByDs = {
|
|
|
12554
12711
|
rows: Array<Scalars['JSON']['output']>;
|
|
12555
12712
|
rowsCount: Scalars['Int']['output'];
|
|
12556
12713
|
};
|
|
12714
|
+
export declare type AssetsDmObjectsReportAttributePie = {
|
|
12715
|
+
__typename?: 'AssetsDMObjectsReportAttributePie';
|
|
12716
|
+
columns?: Maybe<Array<Scalars['String']['output']>>;
|
|
12717
|
+
rows?: Maybe<Array<Scalars['JSON']['output']>>;
|
|
12718
|
+
rowsCount?: Maybe<Scalars['Int']['output']>;
|
|
12719
|
+
};
|
|
12557
12720
|
export declare type AssetsDmObjectsReportDsByDs = {
|
|
12558
12721
|
__typename?: 'AssetsDMObjectsReportDsByDs';
|
|
12559
12722
|
columns: Array<Scalars['String']['output']>;
|
|
@@ -14545,6 +14708,34 @@ export declare type AssetsVerticalWorkbenchDashboardPayload = Payload & {
|
|
|
14545
14708
|
success: Scalars['Boolean']['output'];
|
|
14546
14709
|
workbenchDashboard?: Maybe<AssetsVerticalWorkbenchDashboard>;
|
|
14547
14710
|
};
|
|
14711
|
+
export declare type AssetsVerticalWorkbenchDashboardRollbackStatus = {
|
|
14712
|
+
__typename?: 'AssetsVerticalWorkbenchDashboardRollbackStatus';
|
|
14713
|
+
available: Scalars['Boolean']['output'];
|
|
14714
|
+
rollbackVersion?: Maybe<Scalars['Int']['output']>;
|
|
14715
|
+
};
|
|
14716
|
+
export declare type AssetsVerticalWorkbenchDashboardTemplateStatus = {
|
|
14717
|
+
__typename?: 'AssetsVerticalWorkbenchDashboardTemplateStatus';
|
|
14718
|
+
rollback?: Maybe<AssetsVerticalWorkbenchDashboardRollbackStatus>;
|
|
14719
|
+
upgrade?: Maybe<AssetsVerticalWorkbenchDashboardUpgradeStatus>;
|
|
14720
|
+
};
|
|
14721
|
+
export declare type AssetsVerticalWorkbenchDashboardTryUpgradeInput = {
|
|
14722
|
+
cloudId: Scalars['ID']['input'];
|
|
14723
|
+
viewId: Scalars['ID']['input'];
|
|
14724
|
+
};
|
|
14725
|
+
export declare type AssetsVerticalWorkbenchDashboardTryUpgradePayload = {
|
|
14726
|
+
__typename?: 'AssetsVerticalWorkbenchDashboardTryUpgradePayload';
|
|
14727
|
+
dashboardId?: Maybe<Scalars['String']['output']>;
|
|
14728
|
+
dashboardStatus?: Maybe<Scalars['String']['output']>;
|
|
14729
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14730
|
+
previewVersion?: Maybe<Scalars['Int']['output']>;
|
|
14731
|
+
success: Scalars['Boolean']['output'];
|
|
14732
|
+
viewId?: Maybe<Scalars['ID']['output']>;
|
|
14733
|
+
};
|
|
14734
|
+
export declare type AssetsVerticalWorkbenchDashboardUpgradeStatus = {
|
|
14735
|
+
__typename?: 'AssetsVerticalWorkbenchDashboardUpgradeStatus';
|
|
14736
|
+
available: Scalars['Boolean']['output'];
|
|
14737
|
+
latestTemplateVersion: Scalars['Int']['output'];
|
|
14738
|
+
};
|
|
14548
14739
|
export declare type AssignIssueParentInput = {
|
|
14549
14740
|
boardId: Scalars['ID']['input'];
|
|
14550
14741
|
issueIds: Array<Scalars['ID']['input']>;
|
|
@@ -18588,12 +18779,10 @@ export declare type CloudifyRecommendationInput = {
|
|
|
18588
18779
|
title: Scalars['String']['input'];
|
|
18589
18780
|
};
|
|
18590
18781
|
export declare enum CloudifyRecommendationStatus {
|
|
18591
|
-
Disabled = "DISABLED",
|
|
18592
|
-
Enabled = "ENABLED",
|
|
18593
18782
|
Failed = "FAILED",
|
|
18594
18783
|
New = "NEW",
|
|
18784
|
+
Prepared = "PREPARED",
|
|
18595
18785
|
Preparing = "PREPARING",
|
|
18596
|
-
ReadyForReview = "READY_FOR_REVIEW",
|
|
18597
18786
|
Rejected = "REJECTED"
|
|
18598
18787
|
}
|
|
18599
18788
|
export declare type CloudifyRecommendationStep = {
|
|
@@ -19159,6 +19348,7 @@ export declare enum CommerceExpApprovalDeskStatus {
|
|
|
19159
19348
|
}
|
|
19160
19349
|
export declare type CommerceExpApprovalDeskTask = {
|
|
19161
19350
|
__typename?: 'CommerceExpApprovalDeskTask';
|
|
19351
|
+
assignee?: Maybe<User>;
|
|
19162
19352
|
assigneeId?: Maybe<Scalars['ID']['output']>;
|
|
19163
19353
|
businessKey?: Maybe<Scalars['String']['output']>;
|
|
19164
19354
|
children?: Maybe<Array<Maybe<CommerceExpApprovalDeskTask>>>;
|
|
@@ -19168,6 +19358,7 @@ export declare type CommerceExpApprovalDeskTask = {
|
|
|
19168
19358
|
issueType?: Maybe<Scalars['String']['output']>;
|
|
19169
19359
|
key?: Maybe<Scalars['String']['output']>;
|
|
19170
19360
|
parentKey?: Maybe<Scalars['String']['output']>;
|
|
19361
|
+
reporter?: Maybe<User>;
|
|
19171
19362
|
reporterId?: Maybe<Scalars['ID']['output']>;
|
|
19172
19363
|
requestId?: Maybe<Scalars['String']['output']>;
|
|
19173
19364
|
resolutionDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -19312,7 +19503,7 @@ export declare type CommerceExpBillToParty = {
|
|
|
19312
19503
|
taxId?: Maybe<Scalars['String']['output']>;
|
|
19313
19504
|
taxIds?: Maybe<Array<Maybe<CommerceExpTaxId>>>;
|
|
19314
19505
|
};
|
|
19315
|
-
export declare type CommerceExpBillToPartyResult = CommerceExpBillToParty | QueryError;
|
|
19506
|
+
export declare type CommerceExpBillToPartyResult = CommerceExpBillToParty | CommerceExpEmptyBillToParty | QueryError;
|
|
19316
19507
|
export declare type CommerceExpBillingBehaviour = {
|
|
19317
19508
|
__typename?: 'CommerceExpBillingBehaviour';
|
|
19318
19509
|
startTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
@@ -19422,6 +19613,7 @@ export declare type CommerceExpCcpEntitlement = {
|
|
|
19422
19613
|
actions?: Maybe<CommerceExpEntitlementActions>;
|
|
19423
19614
|
actions2?: Maybe<CommerceExpEntitlementActionsV2>;
|
|
19424
19615
|
allRelatedEntitlementsForBac?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
19616
|
+
allowanceExemptions?: Maybe<CommerceExpUtsAllowanceExemptionList>;
|
|
19425
19617
|
allowancePoolContributors?: Maybe<Array<Maybe<CommerceExpAllowancePoolContributor>>>;
|
|
19426
19618
|
availableAddonsToPurchase?: Maybe<Array<CommerceExpAvailableAddonToPurchase>>;
|
|
19427
19619
|
billEstimateForAutoscalingAndLicensedChargeElements?: Maybe<CommerceExpBillEstimateResult>;
|
|
@@ -19482,6 +19674,9 @@ export declare type CommerceExpCcpEntitlement = {
|
|
|
19482
19674
|
export declare type CommerceExpCcpEntitlementAccountModificationForBacArgs = {
|
|
19483
19675
|
destinationTxa: Scalars['ID']['input'];
|
|
19484
19676
|
};
|
|
19677
|
+
export declare type CommerceExpCcpEntitlementAllowanceExemptionsArgs = {
|
|
19678
|
+
scopeType?: InputMaybe<CommerceExpUtsAllowanceExemptionScopeType>;
|
|
19679
|
+
};
|
|
19485
19680
|
export declare type CommerceExpCcpEntitlementBillEstimateForChargeElementArgs = {
|
|
19486
19681
|
chargeElement: Scalars['String']['input'];
|
|
19487
19682
|
};
|
|
@@ -20790,6 +20985,10 @@ export declare type CommerceExpEligiblePromotionWindow = {
|
|
|
20790
20985
|
endTime?: Maybe<Scalars['DateTime']['output']>;
|
|
20791
20986
|
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
20792
20987
|
};
|
|
20988
|
+
export declare type CommerceExpEmptyBillToParty = {
|
|
20989
|
+
__typename?: 'CommerceExpEmptyBillToParty';
|
|
20990
|
+
identifier: Scalars['String']['output'];
|
|
20991
|
+
};
|
|
20793
20992
|
export declare type CommerceExpEndCollectionOrderInput = {
|
|
20794
20993
|
entitlementId: Scalars['String']['input'];
|
|
20795
20994
|
};
|
|
@@ -22837,6 +23036,33 @@ export declare enum CommerceExpUserRole {
|
|
|
22837
23036
|
BillingAdmin = "BILLING_ADMIN",
|
|
22838
23037
|
CustomerContact = "CUSTOMER_CONTACT"
|
|
22839
23038
|
}
|
|
23039
|
+
export declare type CommerceExpUtsAllowanceExemption = {
|
|
23040
|
+
__typename?: 'CommerceExpUtsAllowanceExemption';
|
|
23041
|
+
exemptionType?: Maybe<Scalars['String']['output']>;
|
|
23042
|
+
expiresAt?: Maybe<Scalars['String']['output']>;
|
|
23043
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
23044
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
23045
|
+
scopeId?: Maybe<Scalars['ID']['output']>;
|
|
23046
|
+
scopeType?: Maybe<CommerceExpUtsAllowanceExemptionScopeType>;
|
|
23047
|
+
status?: Maybe<CommerceExpUtsAllowanceExemptionStatus>;
|
|
23048
|
+
usageKey?: Maybe<Scalars['String']['output']>;
|
|
23049
|
+
};
|
|
23050
|
+
export declare type CommerceExpUtsAllowanceExemptionList = {
|
|
23051
|
+
__typename?: 'CommerceExpUtsAllowanceExemptionList';
|
|
23052
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
23053
|
+
exemptions?: Maybe<Array<Maybe<CommerceExpUtsAllowanceExemption>>>;
|
|
23054
|
+
nextPageToken?: Maybe<Scalars['String']['output']>;
|
|
23055
|
+
};
|
|
23056
|
+
export declare enum CommerceExpUtsAllowanceExemptionScopeType {
|
|
23057
|
+
Org = "ORG",
|
|
23058
|
+
OrgMeter = "ORG_METER"
|
|
23059
|
+
}
|
|
23060
|
+
export declare enum CommerceExpUtsAllowanceExemptionStatus {
|
|
23061
|
+
Active = "ACTIVE",
|
|
23062
|
+
Cancelled = "CANCELLED",
|
|
23063
|
+
Expired = "EXPIRED",
|
|
23064
|
+
Scheduled = "SCHEDULED"
|
|
23065
|
+
}
|
|
22840
23066
|
export declare type CommerceExpValidOrderError = {
|
|
22841
23067
|
__typename?: 'CommerceExpValidOrderError';
|
|
22842
23068
|
orderPreviewError?: Maybe<CommerceExpCcpOrderValidationError>;
|
|
@@ -31014,6 +31240,16 @@ export declare type ConfluenceMarkdownModeUpdated = {
|
|
|
31014
31240
|
__typename?: 'ConfluenceMarkdownModeUpdated';
|
|
31015
31241
|
isMarkdownMode?: Maybe<Scalars['Boolean']['output']>;
|
|
31016
31242
|
};
|
|
31243
|
+
export declare type ConfluenceMediaItemDescriptor = {
|
|
31244
|
+
__typename?: 'ConfluenceMediaItemDescriptor';
|
|
31245
|
+
collection?: Maybe<Scalars['String']['output']>;
|
|
31246
|
+
fileId?: Maybe<Scalars['String']['output']>;
|
|
31247
|
+
};
|
|
31248
|
+
export declare type ConfluenceMediaItemDescriptorV2 = {
|
|
31249
|
+
__typename?: 'ConfluenceMediaItemDescriptorV2';
|
|
31250
|
+
collection?: Maybe<Scalars['String']['output']>;
|
|
31251
|
+
fileId?: Maybe<Scalars['String']['output']>;
|
|
31252
|
+
};
|
|
31017
31253
|
export declare type ConfluenceMediaTokenData = {
|
|
31018
31254
|
__typename?: 'ConfluenceMediaTokenData';
|
|
31019
31255
|
clientId: Scalars['String']['output'];
|
|
@@ -31780,6 +32016,7 @@ export declare type ConfluenceNbmVerificationEntry = {
|
|
|
31780
32016
|
error?: Maybe<Scalars['String']['output']>;
|
|
31781
32017
|
id: Scalars['ID']['output'];
|
|
31782
32018
|
manualState?: Maybe<ConfluenceNbmCategoryTypes>;
|
|
32019
|
+
note?: Maybe<Scalars['String']['output']>;
|
|
31783
32020
|
originalPageId?: Maybe<Scalars['ID']['output']>;
|
|
31784
32021
|
pageCount?: Maybe<Scalars['Int']['output']>;
|
|
31785
32022
|
screenshotId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -35540,6 +35777,7 @@ export declare enum ContainerType {
|
|
|
35540
35777
|
export declare type Content = {
|
|
35541
35778
|
__typename?: 'Content';
|
|
35542
35779
|
aiProperty?: Maybe<ConfluenceContentAiSummaryResponse>;
|
|
35780
|
+
allCommentAgentSessions?: Maybe<AgentSessionAssociationConnection>;
|
|
35543
35781
|
ancestors?: Maybe<Array<Maybe<Content>>>;
|
|
35544
35782
|
archivableDescendantsCount: Scalars['Long']['output'];
|
|
35545
35783
|
archiveNote?: Maybe<Scalars['String']['output']>;
|
|
@@ -35623,6 +35861,11 @@ export declare type ContentAiPropertyArgs = {
|
|
|
35623
35861
|
entryPoint?: InputMaybe<Scalars['String']['input']>;
|
|
35624
35862
|
objectType?: KnowledgeGraphObjectType;
|
|
35625
35863
|
};
|
|
35864
|
+
export declare type ContentAllCommentAgentSessionsArgs = {
|
|
35865
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35866
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35867
|
+
sort?: InputMaybe<Scalars['String']['input']>;
|
|
35868
|
+
};
|
|
35626
35869
|
export declare type ContentAttachmentsArgs = {
|
|
35627
35870
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35628
35871
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -36316,7 +36559,8 @@ export declare type ConvoAiErrorMessage = ConvoAiAgentMessage & {
|
|
|
36316
36559
|
};
|
|
36317
36560
|
export declare enum ConvoAiErrorMessageTemplate {
|
|
36318
36561
|
AcceptableUseViolations = "ACCEPTABLE_USE_VIOLATIONS",
|
|
36319
|
-
Error = "ERROR"
|
|
36562
|
+
Error = "ERROR",
|
|
36563
|
+
PreExecutionError = "PRE_EXECUTION_ERROR"
|
|
36320
36564
|
}
|
|
36321
36565
|
export declare type ConvoAiHomeThread = {
|
|
36322
36566
|
__typename?: 'ConvoAiHomeThread';
|
|
@@ -36376,7 +36620,7 @@ export declare type ConvoAiHomeThreadsFirstPartySourceType = BitbucketPullReques
|
|
|
36376
36620
|
export declare type ConvoAiHomeThreadsInput = {
|
|
36377
36621
|
promptOverride?: InputMaybe<Scalars['String']['input']>;
|
|
36378
36622
|
skipCache?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36379
|
-
userId
|
|
36623
|
+
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
36380
36624
|
};
|
|
36381
36625
|
export declare type ConvoAiHomeThreadsResult = {
|
|
36382
36626
|
__typename?: 'ConvoAiHomeThreadsResult';
|
|
@@ -36578,6 +36822,7 @@ export declare type ConvoAiThirdPartyRelatedLink = {
|
|
|
36578
36822
|
};
|
|
36579
36823
|
export declare type ConvoAiTraceMessage = ConvoAiAgentMessage & {
|
|
36580
36824
|
__typename?: 'ConvoAiTraceMessage';
|
|
36825
|
+
contentIsMarkdown?: Maybe<Scalars['Boolean']['output']>;
|
|
36581
36826
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
36582
36827
|
messageTemplate: Scalars['String']['output'];
|
|
36583
36828
|
timeCreated: Scalars['DateTime']['output'];
|
|
@@ -38770,6 +39015,7 @@ export declare type CsmAiWidgetConfig = {
|
|
|
38770
39015
|
__typename?: 'CsmAiWidgetConfig';
|
|
38771
39016
|
allowedDomains?: Maybe<Array<Scalars['String']['output']>>;
|
|
38772
39017
|
clientKeys?: Maybe<CsmAiWidgetClientKeysResult>;
|
|
39018
|
+
consentForm?: Maybe<CsmAiWidgetConsentForm>;
|
|
38773
39019
|
description?: Maybe<Scalars['String']['output']>;
|
|
38774
39020
|
id: Scalars['ID']['output'];
|
|
38775
39021
|
isAnonymousAccessEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -38784,6 +39030,21 @@ export declare type CsmAiWidgetConfigSnippetsArgs = {
|
|
|
38784
39030
|
authType: CsmAiSnippetAuthType;
|
|
38785
39031
|
};
|
|
38786
39032
|
export declare type CsmAiWidgetConfigResult = CsmAiWidgetConfig | QueryError;
|
|
39033
|
+
export declare type CsmAiWidgetConsentForm = {
|
|
39034
|
+
__typename?: 'CsmAiWidgetConsentForm';
|
|
39035
|
+
acceptLabel?: Maybe<Scalars['String']['output']>;
|
|
39036
|
+
declineLabel?: Maybe<Scalars['String']['output']>;
|
|
39037
|
+
isEnabled: Scalars['Boolean']['output'];
|
|
39038
|
+
policy?: Maybe<Scalars['String']['output']>;
|
|
39039
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
39040
|
+
};
|
|
39041
|
+
export declare type CsmAiWidgetConsentFormInput = {
|
|
39042
|
+
acceptLabel?: InputMaybe<Scalars['String']['input']>;
|
|
39043
|
+
declineLabel?: InputMaybe<Scalars['String']['input']>;
|
|
39044
|
+
isEnabled: Scalars['Boolean']['input'];
|
|
39045
|
+
policy?: InputMaybe<Scalars['String']['input']>;
|
|
39046
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
39047
|
+
};
|
|
38787
39048
|
export declare type CsmAiWidgetIcon = {
|
|
38788
39049
|
__typename?: 'CsmAiWidgetIcon';
|
|
38789
39050
|
type: CsmAiWidgetIconType;
|
|
@@ -38813,6 +39074,7 @@ export declare enum CsmAiWidgetType {
|
|
|
38813
39074
|
}
|
|
38814
39075
|
export declare type CsmAiWidgetUpdateInput = {
|
|
38815
39076
|
allowedDomains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
39077
|
+
consentForm?: InputMaybe<CsmAiWidgetConsentFormInput>;
|
|
38816
39078
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
38817
39079
|
isAnonymousAccessEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38818
39080
|
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -41992,6 +42254,11 @@ export declare type DevAiRemoveContainerConfigVariablePayload = Payload & {
|
|
|
41992
42254
|
success: Scalars['Boolean']['output'];
|
|
41993
42255
|
};
|
|
41994
42256
|
export declare enum DevAiResourceType {
|
|
42257
|
+
DevaiStandard = "DEVAI_STANDARD",
|
|
42258
|
+
DevaiStandardAndJira = "DEVAI_STANDARD_AND_JIRA",
|
|
42259
|
+
DevaiStandardAndJiraAndConfluence = "DEVAI_STANDARD_AND_JIRA_AND_CONFLUENCE",
|
|
42260
|
+
DevaiStandardTrial = "DEVAI_STANDARD_TRIAL",
|
|
42261
|
+
DevaiStandardTrialAndJira = "DEVAI_STANDARD_TRIAL_AND_JIRA",
|
|
41995
42262
|
Jira = "JIRA",
|
|
41996
42263
|
JiraAndConfluence = "JIRA_AND_CONFLUENCE",
|
|
41997
42264
|
NoActiveProduct = "NO_ACTIVE_PRODUCT",
|
|
@@ -42090,6 +42357,7 @@ export declare type DevAiRovoDevCreatePullRequestPayload = Payload & {
|
|
|
42090
42357
|
};
|
|
42091
42358
|
export declare type DevAiRovoDevCreateSessionByCloudIdInput = {
|
|
42092
42359
|
automationInvokerId?: InputMaybe<Scalars['String']['input']>;
|
|
42360
|
+
automationRuleId?: InputMaybe<Scalars['String']['input']>;
|
|
42093
42361
|
cloudId: Scalars['ID']['input'];
|
|
42094
42362
|
linkConversationId?: InputMaybe<Scalars['String']['input']>;
|
|
42095
42363
|
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
@@ -42176,6 +42444,7 @@ export declare type DevAiRovoDevSession = Node & {
|
|
|
42176
42444
|
__typename?: 'DevAiRovoDevSession';
|
|
42177
42445
|
accountId?: Maybe<Scalars['ID']['output']>;
|
|
42178
42446
|
automationInvokerId?: Maybe<Scalars['String']['output']>;
|
|
42447
|
+
automationRuleId?: Maybe<Scalars['String']['output']>;
|
|
42179
42448
|
buildStatus?: Maybe<DevAiRovoDevBuildStatus>;
|
|
42180
42449
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
42181
42450
|
editorPath?: Maybe<Scalars['String']['output']>;
|
|
@@ -45158,9 +45427,11 @@ export declare enum EcosystemRollingReleaseStatus {
|
|
|
45158
45427
|
}
|
|
45159
45428
|
export declare type EcosystemSiteEntitlement = {
|
|
45160
45429
|
__typename?: 'EcosystemSiteEntitlement';
|
|
45430
|
+
appKey?: Maybe<Scalars['String']['output']>;
|
|
45161
45431
|
entitlementId: Scalars['String']['output'];
|
|
45162
45432
|
productKey?: Maybe<Scalars['String']['output']>;
|
|
45163
45433
|
status?: Maybe<Scalars['String']['output']>;
|
|
45434
|
+
transactionAccountId?: Maybe<Scalars['String']['output']>;
|
|
45164
45435
|
};
|
|
45165
45436
|
export declare type EcosystemSiteEntitlementsResult = {
|
|
45166
45437
|
__typename?: 'EcosystemSiteEntitlementsResult';
|
|
@@ -45264,8 +45535,10 @@ export declare type EmbeddedContent = {
|
|
|
45264
45535
|
};
|
|
45265
45536
|
export declare type EmbeddedMediaToken = {
|
|
45266
45537
|
__typename?: 'EmbeddedMediaToken';
|
|
45538
|
+
clientId?: Maybe<Scalars['String']['output']>;
|
|
45267
45539
|
collectionIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
45268
45540
|
contentId?: Maybe<Scalars['ID']['output']>;
|
|
45541
|
+
descriptors?: Maybe<Array<Maybe<ConfluenceMediaItemDescriptor>>>;
|
|
45269
45542
|
expiryDateTime?: Maybe<Scalars['String']['output']>;
|
|
45270
45543
|
fileIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
45271
45544
|
links?: Maybe<LinksContextBase>;
|
|
@@ -45273,8 +45546,10 @@ export declare type EmbeddedMediaToken = {
|
|
|
45273
45546
|
};
|
|
45274
45547
|
export declare type EmbeddedMediaTokenV2 = {
|
|
45275
45548
|
__typename?: 'EmbeddedMediaTokenV2';
|
|
45549
|
+
clientId?: Maybe<Scalars['String']['output']>;
|
|
45276
45550
|
collectionIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
45277
45551
|
contentId?: Maybe<Scalars['ID']['output']>;
|
|
45552
|
+
descriptors?: Maybe<Array<Maybe<ConfluenceMediaItemDescriptorV2>>>;
|
|
45278
45553
|
expiryDateTime?: Maybe<Scalars['String']['output']>;
|
|
45279
45554
|
fileIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
45280
45555
|
mediaUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -45637,7 +45912,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
45637
45912
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
45638
45913
|
node?: Maybe<ExternalAssociation>;
|
|
45639
45914
|
};
|
|
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;
|
|
45915
|
+
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
45916
|
export declare type ExternalAttachment = {
|
|
45642
45917
|
__typename?: 'ExternalAttachment';
|
|
45643
45918
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -45756,13 +46031,18 @@ export declare type ExternalCalendarEvent = Node & {
|
|
|
45756
46031
|
createdBy?: Maybe<ExternalUser>;
|
|
45757
46032
|
description?: Maybe<Scalars['String']['output']>;
|
|
45758
46033
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
46034
|
+
division?: Maybe<Scalars['String']['output']>;
|
|
46035
|
+
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
45759
46036
|
eventEndTime?: Maybe<Scalars['String']['output']>;
|
|
45760
46037
|
eventStartTime?: Maybe<Scalars['String']['output']>;
|
|
45761
46038
|
eventType?: Maybe<ExternalEventType>;
|
|
45762
46039
|
exceedsMaxAttendees?: Maybe<Scalars['Boolean']['output']>;
|
|
45763
46040
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
46041
|
+
groupEventType?: Maybe<Scalars['String']['output']>;
|
|
45764
46042
|
id: Scalars['ID']['output'];
|
|
45765
46043
|
isAllDayEvent?: Maybe<Scalars['Boolean']['output']>;
|
|
46044
|
+
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
46045
|
+
isPrivate?: Maybe<Scalars['Boolean']['output']>;
|
|
45766
46046
|
isRecurringEvent?: Maybe<Scalars['Boolean']['output']>;
|
|
45767
46047
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
45768
46048
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
@@ -45772,6 +46052,7 @@ export declare type ExternalCalendarEvent = Node & {
|
|
|
45772
46052
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
45773
46053
|
provider?: Maybe<ExternalProvider>;
|
|
45774
46054
|
recordingUrl?: Maybe<Scalars['String']['output']>;
|
|
46055
|
+
recurrence?: Maybe<ExternalRecurrence>;
|
|
45775
46056
|
recurringEventId?: Maybe<Scalars['String']['output']>;
|
|
45776
46057
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
45777
46058
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
@@ -45788,6 +46069,13 @@ export declare type ExternalCalendarEventAttachment = {
|
|
|
45788
46069
|
title?: Maybe<Scalars['String']['output']>;
|
|
45789
46070
|
url?: Maybe<Scalars['String']['output']>;
|
|
45790
46071
|
};
|
|
46072
|
+
export declare type ExternalCall = {
|
|
46073
|
+
__typename?: 'ExternalCall';
|
|
46074
|
+
durationInSeconds?: Maybe<Scalars['Int']['output']>;
|
|
46075
|
+
identifier?: Maybe<Scalars['String']['output']>;
|
|
46076
|
+
outcome?: Maybe<Scalars['String']['output']>;
|
|
46077
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
46078
|
+
};
|
|
45791
46079
|
export declare type ExternalCampaign = Node & {
|
|
45792
46080
|
__typename?: 'ExternalCampaign';
|
|
45793
46081
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
@@ -46391,8 +46679,13 @@ export declare enum ExternalDesignType {
|
|
|
46391
46679
|
}
|
|
46392
46680
|
export declare type ExternalDocument = Node & {
|
|
46393
46681
|
__typename?: 'ExternalDocument';
|
|
46682
|
+
archivedAt?: Maybe<Scalars['String']['output']>;
|
|
46683
|
+
archivedBy?: Maybe<ExternalUser>;
|
|
46394
46684
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
46685
|
+
attachedToCount?: Maybe<Scalars['Int']['output']>;
|
|
46395
46686
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
46687
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
46688
|
+
channel?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
46396
46689
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
46397
46690
|
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
46398
46691
|
container?: Maybe<ExternalEntity>;
|
|
@@ -46401,26 +46694,41 @@ export declare type ExternalDocument = Node & {
|
|
|
46401
46694
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
46402
46695
|
createdBy?: Maybe<ExternalUser>;
|
|
46403
46696
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
46697
|
+
documentNumber?: Maybe<Scalars['String']['output']>;
|
|
46698
|
+
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
46404
46699
|
exportLinks?: Maybe<Array<Maybe<ExternalExportLink>>>;
|
|
46405
46700
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
46406
46701
|
extractedText?: Maybe<Scalars['String']['output']>;
|
|
46407
46702
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
46408
46703
|
id: Scalars['ID']['output'];
|
|
46704
|
+
isMasterLanguage?: Maybe<Scalars['Boolean']['output']>;
|
|
46409
46705
|
labels?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
46706
|
+
language?: Maybe<Scalars['String']['output']>;
|
|
46410
46707
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
46411
46708
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
46709
|
+
masterLanguage?: Maybe<Scalars['String']['output']>;
|
|
46412
46710
|
nonIndexableContent?: Maybe<ExternalLargeContent>;
|
|
46413
46711
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
46414
46712
|
parent?: Maybe<ExternalEntity>;
|
|
46415
46713
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
46416
46714
|
provider?: Maybe<ExternalProvider>;
|
|
46715
|
+
publishedAt?: Maybe<Scalars['String']['output']>;
|
|
46417
46716
|
reactions?: Maybe<Array<Maybe<ExternalReaction>>>;
|
|
46717
|
+
review?: Maybe<ExternalReview>;
|
|
46718
|
+
score?: Maybe<Scalars['Int']['output']>;
|
|
46719
|
+
subType?: Maybe<Scalars['String']['output']>;
|
|
46418
46720
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
46419
46721
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
46722
|
+
totalViewCount?: Maybe<Scalars['Int']['output']>;
|
|
46723
|
+
translationCompletedAt?: Maybe<Scalars['String']['output']>;
|
|
46724
|
+
translationExportedAt?: Maybe<Scalars['String']['output']>;
|
|
46725
|
+
translationImportedAt?: Maybe<Scalars['String']['output']>;
|
|
46420
46726
|
truncatedDisplayName?: Maybe<Scalars['Boolean']['output']>;
|
|
46421
46727
|
type?: Maybe<ExternalDocumentType>;
|
|
46422
46728
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
46423
46729
|
url?: Maybe<Scalars['String']['output']>;
|
|
46730
|
+
validationStatus?: Maybe<Scalars['String']['output']>;
|
|
46731
|
+
versionNumber?: Maybe<Scalars['Int']['output']>;
|
|
46424
46732
|
};
|
|
46425
46733
|
export declare enum ExternalDocumentCategory {
|
|
46426
46734
|
Archive = "ARCHIVE",
|
|
@@ -46474,6 +46782,7 @@ export declare type ExternalEntities = {
|
|
|
46474
46782
|
document?: Maybe<Array<Maybe<ExternalDocument>>>;
|
|
46475
46783
|
experimental?: Maybe<Array<Maybe<ExternalExperimental>>>;
|
|
46476
46784
|
featureFlag?: Maybe<Array<Maybe<ExternalFeatureFlag>>>;
|
|
46785
|
+
lead?: Maybe<Array<Maybe<ExternalLead>>>;
|
|
46477
46786
|
message?: Maybe<Array<Maybe<ExternalMessage>>>;
|
|
46478
46787
|
organisation?: Maybe<Array<Maybe<ExternalOrganisation>>>;
|
|
46479
46788
|
position?: Maybe<Array<Maybe<ExternalPosition>>>;
|
|
@@ -46494,7 +46803,7 @@ export declare type ExternalEntities = {
|
|
|
46494
46803
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
46495
46804
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
46496
46805
|
};
|
|
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;
|
|
46806
|
+
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
46807
|
export declare type ExternalEntityExtendedValue = {
|
|
46499
46808
|
__typename?: 'ExternalEntityExtendedValue';
|
|
46500
46809
|
dataType?: Maybe<Scalars['String']['output']>;
|
|
@@ -46633,6 +46942,52 @@ export declare type ExternalLargeContent = {
|
|
|
46633
46942
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
46634
46943
|
representation?: Maybe<ExternalContentRepresentation>;
|
|
46635
46944
|
};
|
|
46945
|
+
export declare type ExternalLead = Node & {
|
|
46946
|
+
__typename?: 'ExternalLead';
|
|
46947
|
+
annualRevenue?: Maybe<ExternalCurrency>;
|
|
46948
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
46949
|
+
company?: Maybe<Scalars['String']['output']>;
|
|
46950
|
+
companyDunsNumber?: Maybe<Scalars['String']['output']>;
|
|
46951
|
+
container?: Maybe<ExternalEntity>;
|
|
46952
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
46953
|
+
convertedDate?: Maybe<Scalars['String']['output']>;
|
|
46954
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
46955
|
+
createdBy?: Maybe<ExternalUser>;
|
|
46956
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
46957
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
46958
|
+
division?: Maybe<Scalars['String']['output']>;
|
|
46959
|
+
emailBouncedDate?: Maybe<Scalars['String']['output']>;
|
|
46960
|
+
emailBouncedReason?: Maybe<Scalars['String']['output']>;
|
|
46961
|
+
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
46962
|
+
exportStatus?: Maybe<Scalars['String']['output']>;
|
|
46963
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
46964
|
+
firstCallDateTime?: Maybe<Scalars['String']['output']>;
|
|
46965
|
+
firstEmailDateTime?: Maybe<Scalars['String']['output']>;
|
|
46966
|
+
hasOptedOutOfEmail?: Maybe<Scalars['Boolean']['output']>;
|
|
46967
|
+
hasOptedOutOfFax?: Maybe<Scalars['Boolean']['output']>;
|
|
46968
|
+
id: Scalars['ID']['output'];
|
|
46969
|
+
industry?: Maybe<Scalars['String']['output']>;
|
|
46970
|
+
isConverted?: Maybe<Scalars['Boolean']['output']>;
|
|
46971
|
+
isPriorityRecord?: Maybe<Scalars['Boolean']['output']>;
|
|
46972
|
+
isUnreadByOwner?: Maybe<Scalars['Boolean']['output']>;
|
|
46973
|
+
lastActivityDate?: Maybe<Scalars['String']['output']>;
|
|
46974
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
46975
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
46976
|
+
leadSource?: Maybe<Scalars['String']['output']>;
|
|
46977
|
+
leadUser?: Maybe<ExternalUser>;
|
|
46978
|
+
numberOfEmployees?: Maybe<Scalars['Long']['output']>;
|
|
46979
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
46980
|
+
parent?: Maybe<ExternalEntity>;
|
|
46981
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
46982
|
+
provider?: Maybe<ExternalProvider>;
|
|
46983
|
+
rating?: Maybe<Scalars['String']['output']>;
|
|
46984
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
46985
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
46986
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
46987
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
46988
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
46989
|
+
website?: Maybe<Scalars['String']['output']>;
|
|
46990
|
+
};
|
|
46636
46991
|
export declare type ExternalLocation = {
|
|
46637
46992
|
__typename?: 'ExternalLocation';
|
|
46638
46993
|
address?: Maybe<Scalars['String']['output']>;
|
|
@@ -46734,8 +47089,11 @@ export declare type ExternalPipeline = {
|
|
|
46734
47089
|
export declare type ExternalPosition = Node & {
|
|
46735
47090
|
__typename?: 'ExternalPosition';
|
|
46736
47091
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
47092
|
+
container?: Maybe<ExternalEntity>;
|
|
47093
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
46737
47094
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
46738
47095
|
createdBy?: Maybe<ExternalUser>;
|
|
47096
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
46739
47097
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
46740
47098
|
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
46741
47099
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -46863,6 +47221,16 @@ export declare type ExternalReactions = {
|
|
|
46863
47221
|
total?: Maybe<Scalars['Int']['output']>;
|
|
46864
47222
|
type?: Maybe<ExternalCommentReactionType>;
|
|
46865
47223
|
};
|
|
47224
|
+
export declare type ExternalRecurrence = {
|
|
47225
|
+
__typename?: 'ExternalRecurrence';
|
|
47226
|
+
instance?: Maybe<Scalars['String']['output']>;
|
|
47227
|
+
month?: Maybe<Scalars['String']['output']>;
|
|
47228
|
+
regeneratedType?: Maybe<Scalars['String']['output']>;
|
|
47229
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
47230
|
+
timeZone?: Maybe<Scalars['String']['output']>;
|
|
47231
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
47232
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
47233
|
+
};
|
|
46866
47234
|
export declare type ExternalRemoteLink = Node & {
|
|
46867
47235
|
__typename?: 'ExternalRemoteLink';
|
|
46868
47236
|
actionIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -46917,6 +47285,15 @@ export declare type ExternalRepository = Node & {
|
|
|
46917
47285
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
46918
47286
|
url?: Maybe<Scalars['String']['output']>;
|
|
46919
47287
|
};
|
|
47288
|
+
export declare type ExternalReview = {
|
|
47289
|
+
__typename?: 'ExternalReview';
|
|
47290
|
+
assignedAt?: Maybe<Scalars['String']['output']>;
|
|
47291
|
+
assignedBy?: Maybe<ExternalUser>;
|
|
47292
|
+
assignedTo?: Maybe<ExternalUser>;
|
|
47293
|
+
dueDate?: Maybe<Scalars['String']['output']>;
|
|
47294
|
+
nextReviewDate?: Maybe<Scalars['String']['output']>;
|
|
47295
|
+
notes?: Maybe<Scalars['String']['output']>;
|
|
47296
|
+
};
|
|
46920
47297
|
export declare type ExternalReviewer = {
|
|
46921
47298
|
__typename?: 'ExternalReviewer';
|
|
46922
47299
|
approvalStatus?: Maybe<ExternalApprovalStatus>;
|
|
@@ -47265,11 +47642,14 @@ export declare enum ExternalVulnerabilityType {
|
|
|
47265
47642
|
}
|
|
47266
47643
|
export declare type ExternalWorkItem = Node & {
|
|
47267
47644
|
__typename?: 'ExternalWorkItem';
|
|
47645
|
+
activityType?: Maybe<Scalars['String']['output']>;
|
|
47268
47646
|
assignee?: Maybe<ExternalUser>;
|
|
47269
47647
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
47270
47648
|
attachments?: Maybe<Array<Maybe<ExternalWorkItemAttachment>>>;
|
|
47649
|
+
call?: Maybe<ExternalCall>;
|
|
47271
47650
|
categories?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
47272
47651
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
47652
|
+
completedAt?: Maybe<Scalars['String']['output']>;
|
|
47273
47653
|
container?: Maybe<ExternalEntity>;
|
|
47274
47654
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
47275
47655
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -47277,22 +47657,28 @@ export declare type ExternalWorkItem = Node & {
|
|
|
47277
47657
|
description?: Maybe<Scalars['String']['output']>;
|
|
47278
47658
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
47279
47659
|
dueDate?: Maybe<Scalars['String']['output']>;
|
|
47660
|
+
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
47280
47661
|
exceedsMaxCollaborators?: Maybe<Scalars['Boolean']['output']>;
|
|
47281
47662
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
47282
47663
|
id: Scalars['ID']['output'];
|
|
47283
47664
|
impact?: Maybe<Scalars['String']['output']>;
|
|
47665
|
+
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
47284
47666
|
largeDescription?: Maybe<ExternalLargeContent>;
|
|
47285
47667
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
47286
47668
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
47669
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
47287
47670
|
parent?: Maybe<ExternalEntity>;
|
|
47288
47671
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
47289
47672
|
priority?: Maybe<Scalars['String']['output']>;
|
|
47290
47673
|
project?: Maybe<ExternalProject>;
|
|
47291
47674
|
provider?: Maybe<ExternalProvider>;
|
|
47675
|
+
recurrence?: Maybe<ExternalRecurrence>;
|
|
47292
47676
|
status?: Maybe<Scalars['String']['output']>;
|
|
47293
47677
|
subtype?: Maybe<ExternalWorkItemSubtype>;
|
|
47678
|
+
taskType?: Maybe<Scalars['String']['output']>;
|
|
47294
47679
|
team?: Maybe<Scalars['String']['output']>;
|
|
47295
47680
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
47681
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
47296
47682
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
47297
47683
|
urgency?: Maybe<Scalars['String']['output']>;
|
|
47298
47684
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -47333,8 +47719,11 @@ export declare enum ExternalWorkItemSubtype {
|
|
|
47333
47719
|
export declare type ExternalWorker = Node & {
|
|
47334
47720
|
__typename?: 'ExternalWorker';
|
|
47335
47721
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
47722
|
+
container?: Maybe<ExternalEntity>;
|
|
47723
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
47336
47724
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
47337
47725
|
createdBy?: Maybe<ExternalUser>;
|
|
47726
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
47338
47727
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
47339
47728
|
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
47340
47729
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -47343,6 +47732,8 @@ export declare type ExternalWorker = Node & {
|
|
|
47343
47732
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
47344
47733
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
47345
47734
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
47735
|
+
parent?: Maybe<ExternalEntity>;
|
|
47736
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
47346
47737
|
provider?: Maybe<ExternalProvider>;
|
|
47347
47738
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
47348
47739
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
@@ -48860,6 +49251,7 @@ export declare type GenericQueryErrorExtension = QueryErrorExtension & {
|
|
|
48860
49251
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
48861
49252
|
};
|
|
48862
49253
|
export declare type GetAllPlansFilterInput = {
|
|
49254
|
+
jiraProjectAri?: InputMaybe<Scalars['String']['input']>;
|
|
48863
49255
|
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
48864
49256
|
};
|
|
48865
49257
|
export declare enum GlanceEnvironment {
|
|
@@ -48929,6 +49321,7 @@ export declare enum GrantCheckProduct {
|
|
|
48929
49321
|
Goal = "GOAL",
|
|
48930
49322
|
Jira = "JIRA",
|
|
48931
49323
|
JiraServicedesk = "JIRA_SERVICEDESK",
|
|
49324
|
+
Loom = "LOOM",
|
|
48932
49325
|
Mercury = "MERCURY",
|
|
48933
49326
|
NoGrantChecks = "NO_GRANT_CHECKS",
|
|
48934
49327
|
Townsquare = "TOWNSQUARE"
|
|
@@ -53455,6 +53848,8 @@ export declare type GraphStore = {
|
|
|
53455
53848
|
atlassianUserCreatedExternalTestRunInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestRunInverseConnection>;
|
|
53456
53849
|
atlassianUserCreatedExternalTestStatus?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusConnection>;
|
|
53457
53850
|
atlassianUserCreatedExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusInverseConnection>;
|
|
53851
|
+
atlassianUserCreatedRovoAgent?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedRovoAgentConnection>;
|
|
53852
|
+
atlassianUserCreatedRovoAgentInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedRovoAgentInverseConnection>;
|
|
53458
53853
|
atlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
53459
53854
|
atlassianUserDismissedJiraForYouRecommendationEntityBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
53460
53855
|
atlassianUserDismissedJiraForYouRecommendationEntityInverse?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseConnection>;
|
|
@@ -53732,6 +54127,14 @@ export declare type GraphStore = {
|
|
|
53732
54127
|
focusAreaHasWatcherInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasWatcherInverseConnection>;
|
|
53733
54128
|
focusAreaHasWatcherInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasWatcherConnection>;
|
|
53734
54129
|
graphDocument3pDocumentInverse?: Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseConnection>;
|
|
54130
|
+
graphDocumentReplicates3pDocumentGoogleDriveDocumentInverse?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseConnection>;
|
|
54131
|
+
graphDocumentReplicates3pDocumentGoogleDriveOtherInverse?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseConnection>;
|
|
54132
|
+
graphDocumentReplicates3pDocumentGoogleDrivePdfInverse?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseConnection>;
|
|
54133
|
+
graphDocumentReplicates3pDocumentGoogleDrivePresentationInverse?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseConnection>;
|
|
54134
|
+
graphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverse?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseConnection>;
|
|
54135
|
+
graphDocumentReplicates3pDocumentOnedriveInverse?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentOnedriveInverseConnection>;
|
|
54136
|
+
graphDocumentReplicates3pDocumentSharepointInverse?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentSharepointInverseConnection>;
|
|
54137
|
+
graphEntityReplicates3pEntityComplementInverse?: Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityComplementInverseConnection>;
|
|
53735
54138
|
graphEntityReplicates3pEntityInverse?: Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseConnection>;
|
|
53736
54139
|
groupCanViewConfluenceSpace?: Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection>;
|
|
53737
54140
|
groupCanViewConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceInverseConnection>;
|
|
@@ -53841,6 +54244,10 @@ export declare type GraphStore = {
|
|
|
53841
54244
|
issueToWhiteboardRelationship?: Maybe<GraphStoreFullIssueToWhiteboardConnection>;
|
|
53842
54245
|
jcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationConnection>;
|
|
53843
54246
|
jcsIssueAssociatedSupportEscalationInverse?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseConnection>;
|
|
54247
|
+
jiraEntityDismissedKnowledgeBaseEntity?: Maybe<GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityConnection>;
|
|
54248
|
+
jiraEntityDismissedKnowledgeBaseEntityInverse?: Maybe<GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityInverseConnection>;
|
|
54249
|
+
jiraEntityHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityConnection>;
|
|
54250
|
+
jiraEntityHasLinkedKnowledgeBaseEntityInverse?: Maybe<GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityInverseConnection>;
|
|
53844
54251
|
jiraEpicContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection>;
|
|
53845
54252
|
jiraEpicContributesToAtlasGoalBatch?: Maybe<GraphStoreBatchJiraEpicContributesToAtlasGoalConnection>;
|
|
53846
54253
|
jiraEpicContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseConnection>;
|
|
@@ -54062,6 +54469,8 @@ export declare type GraphStore = {
|
|
|
54062
54469
|
riskHasProjectBatch?: Maybe<GraphStoreBatchRiskHasProjectConnection>;
|
|
54063
54470
|
riskHasProjectInverse?: Maybe<GraphStoreSimplifiedRiskHasProjectInverseConnection>;
|
|
54064
54471
|
riskHasProjectInverseBatch?: Maybe<GraphStoreBatchRiskHasProjectConnection>;
|
|
54472
|
+
rovoAgentActsAsIdentityUser?: Maybe<GraphStoreSimplifiedRovoAgentActsAsIdentityUserConnection>;
|
|
54473
|
+
rovoAgentActsAsIdentityUserInverse?: Maybe<GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseConnection>;
|
|
54065
54474
|
scorecardHasAtlasGoal?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalConnection>;
|
|
54066
54475
|
scorecardHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalInverseConnection>;
|
|
54067
54476
|
secodaDownstreamLineageBatch?: Maybe<GraphStoreBatchSecodaDownstreamLineageConnection>;
|
|
@@ -55205,6 +55614,22 @@ export declare type GraphStoreAtlassianUserCreatedExternalTestStatusInverseArgs
|
|
|
55205
55614
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55206
55615
|
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalTestStatusSortInput>;
|
|
55207
55616
|
};
|
|
55617
|
+
export declare type GraphStoreAtlassianUserCreatedRovoAgentArgs = {
|
|
55618
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55619
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55620
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55621
|
+
id: Scalars['ID']['input'];
|
|
55622
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55623
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedRovoAgentSortInput>;
|
|
55624
|
+
};
|
|
55625
|
+
export declare type GraphStoreAtlassianUserCreatedRovoAgentInverseArgs = {
|
|
55626
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55627
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55628
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55629
|
+
id: Scalars['ID']['input'];
|
|
55630
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55631
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedRovoAgentSortInput>;
|
|
55632
|
+
};
|
|
55208
55633
|
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityArgs = {
|
|
55209
55634
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
55210
55635
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -57377,6 +57802,70 @@ export declare type GraphStoreGraphDocument3pDocumentInverseArgs = {
|
|
|
57377
57802
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57378
57803
|
sort?: InputMaybe<GraphStoreGraphDocument3pDocumentSortInput>;
|
|
57379
57804
|
};
|
|
57805
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseArgs = {
|
|
57806
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57807
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57808
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57809
|
+
id: Scalars['ID']['input'];
|
|
57810
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57811
|
+
sort?: InputMaybe<GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveDocumentSortInput>;
|
|
57812
|
+
};
|
|
57813
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseArgs = {
|
|
57814
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57815
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57816
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57817
|
+
id: Scalars['ID']['input'];
|
|
57818
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57819
|
+
sort?: InputMaybe<GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveOtherSortInput>;
|
|
57820
|
+
};
|
|
57821
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseArgs = {
|
|
57822
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57823
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57824
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57825
|
+
id: Scalars['ID']['input'];
|
|
57826
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57827
|
+
sort?: InputMaybe<GraphStoreGraphDocumentReplicates3pDocumentGoogleDrivePdfSortInput>;
|
|
57828
|
+
};
|
|
57829
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseArgs = {
|
|
57830
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57831
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57832
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57833
|
+
id: Scalars['ID']['input'];
|
|
57834
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57835
|
+
sort?: InputMaybe<GraphStoreGraphDocumentReplicates3pDocumentGoogleDrivePresentationSortInput>;
|
|
57836
|
+
};
|
|
57837
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseArgs = {
|
|
57838
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57839
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57840
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57841
|
+
id: Scalars['ID']['input'];
|
|
57842
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57843
|
+
sort?: InputMaybe<GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetSortInput>;
|
|
57844
|
+
};
|
|
57845
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentOnedriveInverseArgs = {
|
|
57846
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57847
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57848
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57849
|
+
id: Scalars['ID']['input'];
|
|
57850
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57851
|
+
sort?: InputMaybe<GraphStoreGraphDocumentReplicates3pDocumentOnedriveSortInput>;
|
|
57852
|
+
};
|
|
57853
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentSharepointInverseArgs = {
|
|
57854
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57855
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57856
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57857
|
+
id: Scalars['ID']['input'];
|
|
57858
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57859
|
+
sort?: InputMaybe<GraphStoreGraphDocumentReplicates3pDocumentSharepointSortInput>;
|
|
57860
|
+
};
|
|
57861
|
+
export declare type GraphStoreGraphEntityReplicates3pEntityComplementInverseArgs = {
|
|
57862
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57863
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57864
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57865
|
+
id: Scalars['ID']['input'];
|
|
57866
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57867
|
+
sort?: InputMaybe<GraphStoreGraphEntityReplicates3pEntityComplementSortInput>;
|
|
57868
|
+
};
|
|
57380
57869
|
export declare type GraphStoreGraphEntityReplicates3pEntityInverseArgs = {
|
|
57381
57870
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
57382
57871
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -58179,6 +58668,38 @@ export declare type GraphStoreJcsIssueAssociatedSupportEscalationInverseArgs = {
|
|
|
58179
58668
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58180
58669
|
sort?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationSortInput>;
|
|
58181
58670
|
};
|
|
58671
|
+
export declare type GraphStoreJiraEntityDismissedKnowledgeBaseEntityArgs = {
|
|
58672
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58673
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58674
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58675
|
+
id: Scalars['ID']['input'];
|
|
58676
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58677
|
+
sort?: InputMaybe<GraphStoreJiraEntityDismissedKnowledgeBaseEntitySortInput>;
|
|
58678
|
+
};
|
|
58679
|
+
export declare type GraphStoreJiraEntityDismissedKnowledgeBaseEntityInverseArgs = {
|
|
58680
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58681
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58682
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58683
|
+
id: Scalars['ID']['input'];
|
|
58684
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58685
|
+
sort?: InputMaybe<GraphStoreJiraEntityDismissedKnowledgeBaseEntitySortInput>;
|
|
58686
|
+
};
|
|
58687
|
+
export declare type GraphStoreJiraEntityHasLinkedKnowledgeBaseEntityArgs = {
|
|
58688
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58689
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58690
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58691
|
+
id: Scalars['ID']['input'];
|
|
58692
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58693
|
+
sort?: InputMaybe<GraphStoreJiraEntityHasLinkedKnowledgeBaseEntitySortInput>;
|
|
58694
|
+
};
|
|
58695
|
+
export declare type GraphStoreJiraEntityHasLinkedKnowledgeBaseEntityInverseArgs = {
|
|
58696
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58697
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58698
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58699
|
+
id: Scalars['ID']['input'];
|
|
58700
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58701
|
+
sort?: InputMaybe<GraphStoreJiraEntityHasLinkedKnowledgeBaseEntitySortInput>;
|
|
58702
|
+
};
|
|
58182
58703
|
export declare type GraphStoreJiraEpicContributesToAtlasGoalArgs = {
|
|
58183
58704
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
58184
58705
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -59847,6 +60368,22 @@ export declare type GraphStoreRiskHasProjectInverseBatchArgs = {
|
|
|
59847
60368
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
59848
60369
|
sort?: InputMaybe<GraphStoreRiskHasProjectSortInput>;
|
|
59849
60370
|
};
|
|
60371
|
+
export declare type GraphStoreRovoAgentActsAsIdentityUserArgs = {
|
|
60372
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
60373
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60374
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
60375
|
+
id: Scalars['ID']['input'];
|
|
60376
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
60377
|
+
sort?: InputMaybe<GraphStoreRovoAgentActsAsIdentityUserSortInput>;
|
|
60378
|
+
};
|
|
60379
|
+
export declare type GraphStoreRovoAgentActsAsIdentityUserInverseArgs = {
|
|
60380
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
60381
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60382
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
60383
|
+
id: Scalars['ID']['input'];
|
|
60384
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
60385
|
+
sort?: InputMaybe<GraphStoreRovoAgentActsAsIdentityUserSortInput>;
|
|
60386
|
+
};
|
|
59850
60387
|
export declare type GraphStoreScorecardHasAtlasGoalArgs = {
|
|
59851
60388
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
59852
60389
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -63527,6 +64064,9 @@ export declare type GraphStoreAtlassianUserCreatedExternalTestRunSortInput = {
|
|
|
63527
64064
|
export declare type GraphStoreAtlassianUserCreatedExternalTestStatusSortInput = {
|
|
63528
64065
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
63529
64066
|
};
|
|
64067
|
+
export declare type GraphStoreAtlassianUserCreatedRovoAgentSortInput = {
|
|
64068
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
64069
|
+
};
|
|
63530
64070
|
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput = {
|
|
63531
64071
|
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput>>>;
|
|
63532
64072
|
category?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategoryFilterInput>;
|
|
@@ -65627,6 +66167,47 @@ export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationRelations
|
|
|
65627
66167
|
linkType?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationEscalationLinkTypeInput>;
|
|
65628
66168
|
status?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationEscalationStatusInput>;
|
|
65629
66169
|
};
|
|
66170
|
+
export declare type GraphStoreCreateJiraEntityDismissedKnowledgeBaseEntityInput = {
|
|
66171
|
+
relationships: Array<GraphStoreCreateJiraEntityDismissedKnowledgeBaseEntityRelationshipInput>;
|
|
66172
|
+
};
|
|
66173
|
+
export declare type GraphStoreCreateJiraEntityDismissedKnowledgeBaseEntityPayload = Payload & {
|
|
66174
|
+
__typename?: 'GraphStoreCreateJiraEntityDismissedKnowledgeBaseEntityPayload';
|
|
66175
|
+
errors?: Maybe<Array<MutationError>>;
|
|
66176
|
+
success: Scalars['Boolean']['output'];
|
|
66177
|
+
};
|
|
66178
|
+
export declare type GraphStoreCreateJiraEntityDismissedKnowledgeBaseEntityRelationshipInput = {
|
|
66179
|
+
from: Scalars['ID']['input'];
|
|
66180
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
66181
|
+
to: Scalars['ID']['input'];
|
|
66182
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
66183
|
+
};
|
|
66184
|
+
export declare type GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityInput = {
|
|
66185
|
+
relationships: Array<GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityRelationshipInput>;
|
|
66186
|
+
};
|
|
66187
|
+
export declare enum GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityLinkSourceInput {
|
|
66188
|
+
Accepted = "ACCEPTED",
|
|
66189
|
+
NotSet = "NOT_SET",
|
|
66190
|
+
UserAdded = "USER_ADDED"
|
|
66191
|
+
}
|
|
66192
|
+
export declare type GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityPayload = Payload & {
|
|
66193
|
+
__typename?: 'GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityPayload';
|
|
66194
|
+
errors?: Maybe<Array<MutationError>>;
|
|
66195
|
+
success: Scalars['Boolean']['output'];
|
|
66196
|
+
};
|
|
66197
|
+
export declare type GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityRelationshipInput = {
|
|
66198
|
+
from: Scalars['ID']['input'];
|
|
66199
|
+
objectMetadata?: InputMaybe<GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityRelationshipObjectMetadataInput>;
|
|
66200
|
+
relationshipMetadata?: InputMaybe<GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityRelationshipMetadataInput>;
|
|
66201
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
66202
|
+
to: Scalars['ID']['input'];
|
|
66203
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
66204
|
+
};
|
|
66205
|
+
export declare type GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityRelationshipMetadataInput = {
|
|
66206
|
+
linkSource?: InputMaybe<GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityLinkSourceInput>;
|
|
66207
|
+
};
|
|
66208
|
+
export declare type GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityRelationshipObjectMetadataInput = {
|
|
66209
|
+
linkSource?: InputMaybe<GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityLinkSourceInput>;
|
|
66210
|
+
};
|
|
65630
66211
|
export declare type GraphStoreCreateJswProjectAssociatedComponentInput = {
|
|
65631
66212
|
relationships: Array<GraphStoreCreateJswProjectAssociatedComponentRelationshipInput>;
|
|
65632
66213
|
};
|
|
@@ -66383,6 +66964,32 @@ export declare type GraphStoreDeleteJcsIssueAssociatedSupportEscalationRelations
|
|
|
66383
66964
|
from: Scalars['ID']['input'];
|
|
66384
66965
|
to: Scalars['ID']['input'];
|
|
66385
66966
|
};
|
|
66967
|
+
export declare type GraphStoreDeleteJiraEntityDismissedKnowledgeBaseEntityInput = {
|
|
66968
|
+
relationships: Array<GraphStoreDeleteJiraEntityDismissedKnowledgeBaseEntityRelationshipInput>;
|
|
66969
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66970
|
+
};
|
|
66971
|
+
export declare type GraphStoreDeleteJiraEntityDismissedKnowledgeBaseEntityPayload = Payload & {
|
|
66972
|
+
__typename?: 'GraphStoreDeleteJiraEntityDismissedKnowledgeBaseEntityPayload';
|
|
66973
|
+
errors?: Maybe<Array<MutationError>>;
|
|
66974
|
+
success: Scalars['Boolean']['output'];
|
|
66975
|
+
};
|
|
66976
|
+
export declare type GraphStoreDeleteJiraEntityDismissedKnowledgeBaseEntityRelationshipInput = {
|
|
66977
|
+
from: Scalars['ID']['input'];
|
|
66978
|
+
to: Scalars['ID']['input'];
|
|
66979
|
+
};
|
|
66980
|
+
export declare type GraphStoreDeleteJiraEntityHasLinkedKnowledgeBaseEntityInput = {
|
|
66981
|
+
relationships: Array<GraphStoreDeleteJiraEntityHasLinkedKnowledgeBaseEntityRelationshipInput>;
|
|
66982
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66983
|
+
};
|
|
66984
|
+
export declare type GraphStoreDeleteJiraEntityHasLinkedKnowledgeBaseEntityPayload = Payload & {
|
|
66985
|
+
__typename?: 'GraphStoreDeleteJiraEntityHasLinkedKnowledgeBaseEntityPayload';
|
|
66986
|
+
errors?: Maybe<Array<MutationError>>;
|
|
66987
|
+
success: Scalars['Boolean']['output'];
|
|
66988
|
+
};
|
|
66989
|
+
export declare type GraphStoreDeleteJiraEntityHasLinkedKnowledgeBaseEntityRelationshipInput = {
|
|
66990
|
+
from: Scalars['ID']['input'];
|
|
66991
|
+
to: Scalars['ID']['input'];
|
|
66992
|
+
};
|
|
66386
66993
|
export declare type GraphStoreDeleteJswProjectAssociatedComponentInput = {
|
|
66387
66994
|
relationships: Array<GraphStoreDeleteJswProjectAssociatedComponentRelationshipInput>;
|
|
66388
66995
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -70364,6 +70971,30 @@ export declare enum GraphStoreFullVulnerabilityAssociatedIssueVulnerabilityTypeO
|
|
|
70364
70971
|
export declare type GraphStoreGraphDocument3pDocumentSortInput = {
|
|
70365
70972
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70366
70973
|
};
|
|
70974
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveDocumentSortInput = {
|
|
70975
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70976
|
+
};
|
|
70977
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveOtherSortInput = {
|
|
70978
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70979
|
+
};
|
|
70980
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDrivePdfSortInput = {
|
|
70981
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70982
|
+
};
|
|
70983
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDrivePresentationSortInput = {
|
|
70984
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70985
|
+
};
|
|
70986
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetSortInput = {
|
|
70987
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70988
|
+
};
|
|
70989
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentOnedriveSortInput = {
|
|
70990
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70991
|
+
};
|
|
70992
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentSharepointSortInput = {
|
|
70993
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70994
|
+
};
|
|
70995
|
+
export declare type GraphStoreGraphEntityReplicates3pEntityComplementSortInput = {
|
|
70996
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70997
|
+
};
|
|
70367
70998
|
export declare type GraphStoreGraphEntityReplicates3pEntitySortInput = {
|
|
70368
70999
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70369
71000
|
};
|
|
@@ -70646,6 +71277,20 @@ export declare type GraphStoreJcsIssueAssociatedSupportEscalationSortInput = {
|
|
|
70646
71277
|
relationship_status?: InputMaybe<GraphStoreSortInput>;
|
|
70647
71278
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
70648
71279
|
};
|
|
71280
|
+
export declare type GraphStoreJiraEntityDismissedKnowledgeBaseEntitySortInput = {
|
|
71281
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
71282
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
71283
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71284
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
71285
|
+
};
|
|
71286
|
+
export declare type GraphStoreJiraEntityHasLinkedKnowledgeBaseEntitySortInput = {
|
|
71287
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
71288
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
71289
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71290
|
+
relationship_linkSource?: InputMaybe<GraphStoreSortInput>;
|
|
71291
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
71292
|
+
to_linkSource?: InputMaybe<GraphStoreSortInput>;
|
|
71293
|
+
};
|
|
70649
71294
|
export declare type GraphStoreJiraEpicContributesToAtlasGoalSortInput = {
|
|
70650
71295
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70651
71296
|
};
|
|
@@ -70806,6 +71451,8 @@ export declare type GraphStoreMutation = {
|
|
|
70806
71451
|
createIncidentLinkedJswIssue?: Maybe<GraphStoreCreateIncidentLinkedJswIssuePayload>;
|
|
70807
71452
|
createIssueToWhiteboard?: Maybe<GraphStoreCreateIssueToWhiteboardPayload>;
|
|
70808
71453
|
createJcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationPayload>;
|
|
71454
|
+
createJiraEntityDismissedKnowledgeBaseEntity?: Maybe<GraphStoreCreateJiraEntityDismissedKnowledgeBaseEntityPayload>;
|
|
71455
|
+
createJiraEntityHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityPayload>;
|
|
70809
71456
|
createJswProjectAssociatedComponent?: Maybe<GraphStoreCreateJswProjectAssociatedComponentPayload>;
|
|
70810
71457
|
createLoomVideoHasConfluencePage?: Maybe<GraphStoreCreateLoomVideoHasConfluencePagePayload>;
|
|
70811
71458
|
createMeetingHasJiraProject?: Maybe<GraphStoreCreateMeetingHasJiraProjectPayload>;
|
|
@@ -70840,6 +71487,8 @@ export declare type GraphStoreMutation = {
|
|
|
70840
71487
|
deleteIncidentLinkedJswIssue?: Maybe<GraphStoreDeleteIncidentLinkedJswIssuePayload>;
|
|
70841
71488
|
deleteIssueToWhiteboard?: Maybe<GraphStoreDeleteIssueToWhiteboardPayload>;
|
|
70842
71489
|
deleteJcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreDeleteJcsIssueAssociatedSupportEscalationPayload>;
|
|
71490
|
+
deleteJiraEntityDismissedKnowledgeBaseEntity?: Maybe<GraphStoreDeleteJiraEntityDismissedKnowledgeBaseEntityPayload>;
|
|
71491
|
+
deleteJiraEntityHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreDeleteJiraEntityHasLinkedKnowledgeBaseEntityPayload>;
|
|
70843
71492
|
deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
|
|
70844
71493
|
deleteLoomVideoHasConfluencePage?: Maybe<GraphStoreDeleteLoomVideoHasConfluencePagePayload>;
|
|
70845
71494
|
deleteMeetingHasJiraProject?: Maybe<GraphStoreDeleteMeetingHasJiraProjectPayload>;
|
|
@@ -70889,6 +71538,12 @@ export declare type GraphStoreMutationCreateIssueToWhiteboardArgs = {
|
|
|
70889
71538
|
export declare type GraphStoreMutationCreateJcsIssueAssociatedSupportEscalationArgs = {
|
|
70890
71539
|
input?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationInput>;
|
|
70891
71540
|
};
|
|
71541
|
+
export declare type GraphStoreMutationCreateJiraEntityDismissedKnowledgeBaseEntityArgs = {
|
|
71542
|
+
input?: InputMaybe<GraphStoreCreateJiraEntityDismissedKnowledgeBaseEntityInput>;
|
|
71543
|
+
};
|
|
71544
|
+
export declare type GraphStoreMutationCreateJiraEntityHasLinkedKnowledgeBaseEntityArgs = {
|
|
71545
|
+
input?: InputMaybe<GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityInput>;
|
|
71546
|
+
};
|
|
70892
71547
|
export declare type GraphStoreMutationCreateJswProjectAssociatedComponentArgs = {
|
|
70893
71548
|
input?: InputMaybe<GraphStoreCreateJswProjectAssociatedComponentInput>;
|
|
70894
71549
|
};
|
|
@@ -70991,6 +71646,12 @@ export declare type GraphStoreMutationDeleteIssueToWhiteboardArgs = {
|
|
|
70991
71646
|
export declare type GraphStoreMutationDeleteJcsIssueAssociatedSupportEscalationArgs = {
|
|
70992
71647
|
input?: InputMaybe<GraphStoreDeleteJcsIssueAssociatedSupportEscalationInput>;
|
|
70993
71648
|
};
|
|
71649
|
+
export declare type GraphStoreMutationDeleteJiraEntityDismissedKnowledgeBaseEntityArgs = {
|
|
71650
|
+
input?: InputMaybe<GraphStoreDeleteJiraEntityDismissedKnowledgeBaseEntityInput>;
|
|
71651
|
+
};
|
|
71652
|
+
export declare type GraphStoreMutationDeleteJiraEntityHasLinkedKnowledgeBaseEntityArgs = {
|
|
71653
|
+
input?: InputMaybe<GraphStoreDeleteJiraEntityHasLinkedKnowledgeBaseEntityInput>;
|
|
71654
|
+
};
|
|
70994
71655
|
export declare type GraphStoreMutationDeleteJswProjectAssociatedComponentArgs = {
|
|
70995
71656
|
input?: InputMaybe<GraphStoreDeleteJswProjectAssociatedComponentInput>;
|
|
70996
71657
|
};
|
|
@@ -71636,6 +72297,9 @@ export declare type GraphStorePullRequestLinksToServiceSortInput = {
|
|
|
71636
72297
|
export declare type GraphStoreRiskHasProjectSortInput = {
|
|
71637
72298
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71638
72299
|
};
|
|
72300
|
+
export declare type GraphStoreRovoAgentActsAsIdentityUserSortInput = {
|
|
72301
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72302
|
+
};
|
|
71639
72303
|
export declare type GraphStoreScorecardHasAtlasGoalSortInput = {
|
|
71640
72304
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71641
72305
|
};
|
|
@@ -72838,6 +73502,34 @@ export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusIn
|
|
|
72838
73502
|
};
|
|
72839
73503
|
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
72840
73504
|
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusUnion = ExternalTestStatus;
|
|
73505
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedRovoAgentConnection = HasPageInfo & {
|
|
73506
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedRovoAgentConnection';
|
|
73507
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedRovoAgentEdge>>>;
|
|
73508
|
+
pageInfo: PageInfo;
|
|
73509
|
+
};
|
|
73510
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedRovoAgentEdge = {
|
|
73511
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedRovoAgentEdge';
|
|
73512
|
+
createdAt: Scalars['DateTime']['output'];
|
|
73513
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
73514
|
+
id: Scalars['ID']['output'];
|
|
73515
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
73516
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedRovoAgentUnion>;
|
|
73517
|
+
};
|
|
73518
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedRovoAgentInverseConnection = HasPageInfo & {
|
|
73519
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedRovoAgentInverseConnection';
|
|
73520
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedRovoAgentInverseEdge>>>;
|
|
73521
|
+
pageInfo: PageInfo;
|
|
73522
|
+
};
|
|
73523
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedRovoAgentInverseEdge = {
|
|
73524
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedRovoAgentInverseEdge';
|
|
73525
|
+
createdAt: Scalars['DateTime']['output'];
|
|
73526
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
73527
|
+
id: Scalars['ID']['output'];
|
|
73528
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
73529
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedRovoAgentInverseUnion>;
|
|
73530
|
+
};
|
|
73531
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedRovoAgentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
73532
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedRovoAgentUnion = AgentStudioAssistant | AgentStudioServiceAgent;
|
|
72841
73533
|
export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection = HasPageInfo & HasTotal & {
|
|
72842
73534
|
__typename?: 'GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection';
|
|
72843
73535
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityEdge>>>;
|
|
@@ -76176,6 +76868,118 @@ export declare type GraphStoreSimplifiedGraphDocument3pDocumentInverseEdge = {
|
|
|
76176
76868
|
node?: Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseUnion>;
|
|
76177
76869
|
};
|
|
76178
76870
|
export declare type GraphStoreSimplifiedGraphDocument3pDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
76871
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseConnection = HasPageInfo & {
|
|
76872
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseConnection';
|
|
76873
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseEdge>>>;
|
|
76874
|
+
pageInfo: PageInfo;
|
|
76875
|
+
};
|
|
76876
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseEdge = {
|
|
76877
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseEdge';
|
|
76878
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76879
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76880
|
+
id: Scalars['ID']['output'];
|
|
76881
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76882
|
+
node?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseUnion>;
|
|
76883
|
+
};
|
|
76884
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
76885
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseConnection = HasPageInfo & {
|
|
76886
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseConnection';
|
|
76887
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseEdge>>>;
|
|
76888
|
+
pageInfo: PageInfo;
|
|
76889
|
+
};
|
|
76890
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseEdge = {
|
|
76891
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseEdge';
|
|
76892
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76893
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76894
|
+
id: Scalars['ID']['output'];
|
|
76895
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76896
|
+
node?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseUnion>;
|
|
76897
|
+
};
|
|
76898
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseUnion = DevOpsDocument | ExternalDocument;
|
|
76899
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseConnection = HasPageInfo & {
|
|
76900
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseConnection';
|
|
76901
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseEdge>>>;
|
|
76902
|
+
pageInfo: PageInfo;
|
|
76903
|
+
};
|
|
76904
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseEdge = {
|
|
76905
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseEdge';
|
|
76906
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76907
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76908
|
+
id: Scalars['ID']['output'];
|
|
76909
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76910
|
+
node?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseUnion>;
|
|
76911
|
+
};
|
|
76912
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseUnion = DevOpsDocument | ExternalDocument;
|
|
76913
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseConnection = HasPageInfo & {
|
|
76914
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseConnection';
|
|
76915
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseEdge>>>;
|
|
76916
|
+
pageInfo: PageInfo;
|
|
76917
|
+
};
|
|
76918
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseEdge = {
|
|
76919
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseEdge';
|
|
76920
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76921
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76922
|
+
id: Scalars['ID']['output'];
|
|
76923
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76924
|
+
node?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseUnion>;
|
|
76925
|
+
};
|
|
76926
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseUnion = DevOpsDocument | ExternalDocument;
|
|
76927
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseConnection = HasPageInfo & {
|
|
76928
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseConnection';
|
|
76929
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseEdge>>>;
|
|
76930
|
+
pageInfo: PageInfo;
|
|
76931
|
+
};
|
|
76932
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseEdge = {
|
|
76933
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseEdge';
|
|
76934
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76935
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76936
|
+
id: Scalars['ID']['output'];
|
|
76937
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76938
|
+
node?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseUnion>;
|
|
76939
|
+
};
|
|
76940
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseUnion = DevOpsDocument | ExternalDocument;
|
|
76941
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentOnedriveInverseConnection = HasPageInfo & {
|
|
76942
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentOnedriveInverseConnection';
|
|
76943
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentOnedriveInverseEdge>>>;
|
|
76944
|
+
pageInfo: PageInfo;
|
|
76945
|
+
};
|
|
76946
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentOnedriveInverseEdge = {
|
|
76947
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentOnedriveInverseEdge';
|
|
76948
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76949
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76950
|
+
id: Scalars['ID']['output'];
|
|
76951
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76952
|
+
node?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentOnedriveInverseUnion>;
|
|
76953
|
+
};
|
|
76954
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentOnedriveInverseUnion = DevOpsDocument | ExternalDocument;
|
|
76955
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentSharepointInverseConnection = HasPageInfo & {
|
|
76956
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentSharepointInverseConnection';
|
|
76957
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentSharepointInverseEdge>>>;
|
|
76958
|
+
pageInfo: PageInfo;
|
|
76959
|
+
};
|
|
76960
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentSharepointInverseEdge = {
|
|
76961
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentSharepointInverseEdge';
|
|
76962
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76963
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76964
|
+
id: Scalars['ID']['output'];
|
|
76965
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76966
|
+
node?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentSharepointInverseUnion>;
|
|
76967
|
+
};
|
|
76968
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentSharepointInverseUnion = DevOpsDocument | ExternalDocument;
|
|
76969
|
+
export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityComplementInverseConnection = HasPageInfo & {
|
|
76970
|
+
__typename?: 'GraphStoreSimplifiedGraphEntityReplicates3pEntityComplementInverseConnection';
|
|
76971
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityComplementInverseEdge>>>;
|
|
76972
|
+
pageInfo: PageInfo;
|
|
76973
|
+
};
|
|
76974
|
+
export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityComplementInverseEdge = {
|
|
76975
|
+
__typename?: 'GraphStoreSimplifiedGraphEntityReplicates3pEntityComplementInverseEdge';
|
|
76976
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76977
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76978
|
+
id: Scalars['ID']['output'];
|
|
76979
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76980
|
+
node?: Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityComplementInverseUnion>;
|
|
76981
|
+
};
|
|
76982
|
+
export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityComplementInverseUnion = DeploymentSummary | DevOpsDocument | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | ExternalBranch | ExternalBuildInfo | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDocument | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability;
|
|
76179
76983
|
export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseConnection = HasPageInfo & {
|
|
76180
76984
|
__typename?: 'GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseConnection';
|
|
76181
76985
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseEdge>>>;
|
|
@@ -77070,6 +77874,70 @@ export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInver
|
|
|
77070
77874
|
};
|
|
77071
77875
|
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseUnion = JiraIssue;
|
|
77072
77876
|
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationUnion = JiraIssue | JiraProject;
|
|
77877
|
+
export declare type GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityConnection = HasPageInfo & HasTotal & {
|
|
77878
|
+
__typename?: 'GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityConnection';
|
|
77879
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityEdge>>>;
|
|
77880
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
77881
|
+
pageInfo: PageInfo;
|
|
77882
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
77883
|
+
};
|
|
77884
|
+
export declare type GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityEdge = {
|
|
77885
|
+
__typename?: 'GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityEdge';
|
|
77886
|
+
createdAt: Scalars['DateTime']['output'];
|
|
77887
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
77888
|
+
id: Scalars['ID']['output'];
|
|
77889
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
77890
|
+
node?: Maybe<GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityUnion>;
|
|
77891
|
+
};
|
|
77892
|
+
export declare type GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityInverseConnection = HasPageInfo & HasTotal & {
|
|
77893
|
+
__typename?: 'GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityInverseConnection';
|
|
77894
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityInverseEdge>>>;
|
|
77895
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
77896
|
+
pageInfo: PageInfo;
|
|
77897
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
77898
|
+
};
|
|
77899
|
+
export declare type GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityInverseEdge = {
|
|
77900
|
+
__typename?: 'GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityInverseEdge';
|
|
77901
|
+
createdAt: Scalars['DateTime']['output'];
|
|
77902
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
77903
|
+
id: Scalars['ID']['output'];
|
|
77904
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
77905
|
+
node?: Maybe<GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityInverseUnion>;
|
|
77906
|
+
};
|
|
77907
|
+
export declare type GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityInverseUnion = JiraIssue | JiraProject;
|
|
77908
|
+
export declare type GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
77909
|
+
export declare type GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityConnection = HasPageInfo & HasTotal & {
|
|
77910
|
+
__typename?: 'GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityConnection';
|
|
77911
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityEdge>>>;
|
|
77912
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
77913
|
+
pageInfo: PageInfo;
|
|
77914
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
77915
|
+
};
|
|
77916
|
+
export declare type GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityEdge = {
|
|
77917
|
+
__typename?: 'GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityEdge';
|
|
77918
|
+
createdAt: Scalars['DateTime']['output'];
|
|
77919
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
77920
|
+
id: Scalars['ID']['output'];
|
|
77921
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
77922
|
+
node?: Maybe<GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityUnion>;
|
|
77923
|
+
};
|
|
77924
|
+
export declare type GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityInverseConnection = HasPageInfo & HasTotal & {
|
|
77925
|
+
__typename?: 'GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityInverseConnection';
|
|
77926
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityInverseEdge>>>;
|
|
77927
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
77928
|
+
pageInfo: PageInfo;
|
|
77929
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
77930
|
+
};
|
|
77931
|
+
export declare type GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityInverseEdge = {
|
|
77932
|
+
__typename?: 'GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityInverseEdge';
|
|
77933
|
+
createdAt: Scalars['DateTime']['output'];
|
|
77934
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
77935
|
+
id: Scalars['ID']['output'];
|
|
77936
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
77937
|
+
node?: Maybe<GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityInverseUnion>;
|
|
77938
|
+
};
|
|
77939
|
+
export declare type GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityInverseUnion = JiraIssue | JiraProject;
|
|
77940
|
+
export declare type GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
77073
77941
|
export declare type GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection = HasPageInfo & {
|
|
77074
77942
|
__typename?: 'GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection';
|
|
77075
77943
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalEdge>>>;
|
|
@@ -79100,6 +79968,34 @@ export declare type GraphStoreSimplifiedRiskHasProjectInverseEdge = {
|
|
|
79100
79968
|
};
|
|
79101
79969
|
export declare type GraphStoreSimplifiedRiskHasProjectInverseUnion = MercuryRisk;
|
|
79102
79970
|
export declare type GraphStoreSimplifiedRiskHasProjectUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
79971
|
+
export declare type GraphStoreSimplifiedRovoAgentActsAsIdentityUserConnection = HasPageInfo & {
|
|
79972
|
+
__typename?: 'GraphStoreSimplifiedRovoAgentActsAsIdentityUserConnection';
|
|
79973
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedRovoAgentActsAsIdentityUserEdge>>>;
|
|
79974
|
+
pageInfo: PageInfo;
|
|
79975
|
+
};
|
|
79976
|
+
export declare type GraphStoreSimplifiedRovoAgentActsAsIdentityUserEdge = {
|
|
79977
|
+
__typename?: 'GraphStoreSimplifiedRovoAgentActsAsIdentityUserEdge';
|
|
79978
|
+
createdAt: Scalars['DateTime']['output'];
|
|
79979
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
79980
|
+
id: Scalars['ID']['output'];
|
|
79981
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
79982
|
+
node?: Maybe<GraphStoreSimplifiedRovoAgentActsAsIdentityUserUnion>;
|
|
79983
|
+
};
|
|
79984
|
+
export declare type GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseConnection = HasPageInfo & {
|
|
79985
|
+
__typename?: 'GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseConnection';
|
|
79986
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseEdge>>>;
|
|
79987
|
+
pageInfo: PageInfo;
|
|
79988
|
+
};
|
|
79989
|
+
export declare type GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseEdge = {
|
|
79990
|
+
__typename?: 'GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseEdge';
|
|
79991
|
+
createdAt: Scalars['DateTime']['output'];
|
|
79992
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
79993
|
+
id: Scalars['ID']['output'];
|
|
79994
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
79995
|
+
node?: Maybe<GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseUnion>;
|
|
79996
|
+
};
|
|
79997
|
+
export declare type GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseUnion = AgentStudioAssistant | AgentStudioServiceAgent;
|
|
79998
|
+
export declare type GraphStoreSimplifiedRovoAgentActsAsIdentityUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
79103
79999
|
export declare type GraphStoreSimplifiedScorecardHasAtlasGoalConnection = HasPageInfo & {
|
|
79104
80000
|
__typename?: 'GraphStoreSimplifiedScorecardHasAtlasGoalConnection';
|
|
79105
80001
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalEdge>>>;
|
|
@@ -85513,6 +86409,8 @@ export declare type GraphStoreV2 = {
|
|
|
85513
86409
|
atlassianUserCreatedLoomVideoComment?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedLoomVideoCommentConnection>;
|
|
85514
86410
|
atlassianUserCreatedLoomVideoCommentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedLoomVideoCommentInverseConnection>;
|
|
85515
86411
|
atlassianUserCreatedLoomVideoInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedLoomVideoInverseConnection>;
|
|
86412
|
+
atlassianUserCreatedRovoAgent?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentConnection>;
|
|
86413
|
+
atlassianUserCreatedRovoAgentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentInverseConnection>;
|
|
85516
86414
|
atlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreV2SimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
85517
86415
|
atlassianUserDismissedJiraForYouRecommendationEntityInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseConnection>;
|
|
85518
86416
|
atlassianUserFavoritedAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalConnection>;
|
|
@@ -85775,11 +86673,19 @@ export declare type GraphStoreV2 = {
|
|
|
85775
86673
|
externalDeploymentLinksExternalDeploymentInverse?: Maybe<GraphStoreV2SimplifiedExternalDeploymentLinksExternalDeploymentInverseConnection>;
|
|
85776
86674
|
externalDeploymentLinksExternalRepository?: Maybe<GraphStoreV2SimplifiedExternalDeploymentLinksExternalRepositoryConnection>;
|
|
85777
86675
|
externalDeploymentLinksExternalRepositoryInverse?: Maybe<GraphStoreV2SimplifiedExternalDeploymentLinksExternalRepositoryInverseConnection>;
|
|
86676
|
+
externalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseConnection>;
|
|
86677
|
+
externalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseConnection>;
|
|
86678
|
+
externalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseConnection>;
|
|
86679
|
+
externalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseConnection>;
|
|
86680
|
+
externalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseConnection>;
|
|
85778
86681
|
externalDocumentHasChildExternalDocument?: Maybe<GraphStoreV2SimplifiedExternalDocumentHasChildExternalDocumentConnection>;
|
|
85779
86682
|
externalDocumentHasChildExternalDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentHasChildExternalDocumentInverseConnection>;
|
|
85780
86683
|
externalDocumentHasExternalSpace?: Maybe<GraphStoreV2SimplifiedExternalDocumentHasExternalSpaceConnection>;
|
|
85781
86684
|
externalDocumentHasExternalSpaceInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentHasExternalSpaceInverseConnection>;
|
|
85782
86685
|
externalDocumentLinksThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentLinksThirdPartyDocumentInverseConnection>;
|
|
86686
|
+
externalDocumentOnedriveLinksThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentOnedriveLinksThirdPartyDocumentInverseConnection>;
|
|
86687
|
+
externalDocumentSharepointLinksThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentSharepointLinksThirdPartyDocumentInverseConnection>;
|
|
86688
|
+
externalEntityComplementLinksThirdPartyEntityInverse?: Maybe<GraphStoreV2SimplifiedExternalEntityComplementLinksThirdPartyEntityInverseConnection>;
|
|
85783
86689
|
externalEntityIsThirdPartyEntityInverse?: Maybe<GraphStoreV2SimplifiedExternalEntityIsThirdPartyEntityInverseConnection>;
|
|
85784
86690
|
externalMeetingRecurrenceHasJiraSpace?: Maybe<GraphStoreV2SimplifiedExternalMeetingRecurrenceHasJiraSpaceConnection>;
|
|
85785
86691
|
externalMeetingRecurrenceHasJiraSpaceInverse?: Maybe<GraphStoreV2SimplifiedExternalMeetingRecurrenceHasJiraSpaceInverseConnection>;
|
|
@@ -86122,6 +87028,8 @@ export declare type GraphStoreV2 = {
|
|
|
86122
87028
|
jiraWorkItemCommentHasChildJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentInverseConnection>;
|
|
86123
87029
|
jiraWorkItemContributesToAtlassianGoal?: Maybe<GraphStoreV2SimplifiedJiraWorkItemContributesToAtlassianGoalConnection>;
|
|
86124
87030
|
jiraWorkItemContributesToAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemContributesToAtlassianGoalInverseConnection>;
|
|
87031
|
+
jiraWorkItemDismissedKnowledgeBaseEntity?: Maybe<GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityConnection>;
|
|
87032
|
+
jiraWorkItemDismissedKnowledgeBaseEntityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityInverseConnection>;
|
|
86125
87033
|
jiraWorkItemHasAtlassianAutodevJob?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasAtlassianAutodevJobConnection>;
|
|
86126
87034
|
jiraWorkItemHasAtlassianAutodevJobInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasAtlassianAutodevJobInverseConnection>;
|
|
86127
87035
|
jiraWorkItemHasChangedJiraPriority?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasChangedJiraPriorityConnection>;
|
|
@@ -86134,6 +87042,8 @@ export declare type GraphStoreV2 = {
|
|
|
86134
87042
|
jiraWorkItemHasJiraPriorityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraPriorityInverseConnection>;
|
|
86135
87043
|
jiraWorkItemHasJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentConnection>;
|
|
86136
87044
|
jiraWorkItemHasJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseConnection>;
|
|
87045
|
+
jiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityConnection>;
|
|
87046
|
+
jiraWorkItemHasLinkedKnowledgeBaseEntityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseConnection>;
|
|
86137
87047
|
jiraWorkItemLinksAssetsObject?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection>;
|
|
86138
87048
|
jiraWorkItemLinksAssetsObjectInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseConnection>;
|
|
86139
87049
|
jiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardConnection>;
|
|
@@ -86196,6 +87106,8 @@ export declare type GraphStoreV2 = {
|
|
|
86196
87106
|
mediaFileAttachedToContentEntity?: Maybe<GraphStoreV2SimplifiedMediaFileAttachedToContentEntityConnection>;
|
|
86197
87107
|
repositoryEntityIsBitbucketRepository?: Maybe<GraphStoreV2SimplifiedRepositoryEntityIsBitbucketRepositoryConnection>;
|
|
86198
87108
|
repositoryEntityIsBitbucketRepositoryInverse?: Maybe<GraphStoreV2SimplifiedRepositoryEntityIsBitbucketRepositoryInverseConnection>;
|
|
87109
|
+
rovoAgentActsAsAtlassianUser?: Maybe<GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserConnection>;
|
|
87110
|
+
rovoAgentActsAsAtlassianUserInverse?: Maybe<GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseConnection>;
|
|
86199
87111
|
talentPositionLinksExternalPosition?: Maybe<GraphStoreV2SimplifiedTalentPositionLinksExternalPositionConnection>;
|
|
86200
87112
|
talentPositionLinksExternalPositionInverse?: Maybe<GraphStoreV2SimplifiedTalentPositionLinksExternalPositionInverseConnection>;
|
|
86201
87113
|
talentWorkerLinksExternalWorker?: Maybe<GraphStoreV2SimplifiedTalentWorkerLinksExternalWorkerConnection>;
|
|
@@ -87095,6 +88007,20 @@ export declare type GraphStoreV2AtlassianUserCreatedLoomVideoInverseArgs = {
|
|
|
87095
88007
|
id: Scalars['ID']['input'];
|
|
87096
88008
|
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedLoomVideoSortInput>;
|
|
87097
88009
|
};
|
|
88010
|
+
export declare type GraphStoreV2AtlassianUserCreatedRovoAgentArgs = {
|
|
88011
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88012
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88013
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88014
|
+
id: Scalars['ID']['input'];
|
|
88015
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedRovoAgentSortInput>;
|
|
88016
|
+
};
|
|
88017
|
+
export declare type GraphStoreV2AtlassianUserCreatedRovoAgentInverseArgs = {
|
|
88018
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88019
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88020
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88021
|
+
id: Scalars['ID']['input'];
|
|
88022
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedRovoAgentSortInput>;
|
|
88023
|
+
};
|
|
87098
88024
|
export declare type GraphStoreV2AtlassianUserDismissedJiraForYouRecommendationEntityArgs = {
|
|
87099
88025
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87100
88026
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -88936,6 +89862,41 @@ export declare type GraphStoreV2ExternalDeploymentLinksExternalRepositoryInverse
|
|
|
88936
89862
|
id: Scalars['ID']['input'];
|
|
88937
89863
|
sort?: InputMaybe<GraphStoreV2ExternalDeploymentLinksExternalRepositorySortInput>;
|
|
88938
89864
|
};
|
|
89865
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseArgs = {
|
|
89866
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89867
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89868
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89869
|
+
id: Scalars['ID']['input'];
|
|
89870
|
+
sort?: InputMaybe<GraphStoreV2ExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentSortInput>;
|
|
89871
|
+
};
|
|
89872
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseArgs = {
|
|
89873
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89874
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89875
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89876
|
+
id: Scalars['ID']['input'];
|
|
89877
|
+
sort?: InputMaybe<GraphStoreV2ExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentSortInput>;
|
|
89878
|
+
};
|
|
89879
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseArgs = {
|
|
89880
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89881
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89882
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89883
|
+
id: Scalars['ID']['input'];
|
|
89884
|
+
sort?: InputMaybe<GraphStoreV2ExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentSortInput>;
|
|
89885
|
+
};
|
|
89886
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseArgs = {
|
|
89887
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89888
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89889
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89890
|
+
id: Scalars['ID']['input'];
|
|
89891
|
+
sort?: InputMaybe<GraphStoreV2ExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentSortInput>;
|
|
89892
|
+
};
|
|
89893
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseArgs = {
|
|
89894
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89895
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89896
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89897
|
+
id: Scalars['ID']['input'];
|
|
89898
|
+
sort?: InputMaybe<GraphStoreV2ExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentSortInput>;
|
|
89899
|
+
};
|
|
88939
89900
|
export declare type GraphStoreV2ExternalDocumentHasChildExternalDocumentArgs = {
|
|
88940
89901
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
88941
89902
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -88971,6 +89932,27 @@ export declare type GraphStoreV2ExternalDocumentLinksThirdPartyDocumentInverseAr
|
|
|
88971
89932
|
id: Scalars['ID']['input'];
|
|
88972
89933
|
sort?: InputMaybe<GraphStoreV2ExternalDocumentLinksThirdPartyDocumentSortInput>;
|
|
88973
89934
|
};
|
|
89935
|
+
export declare type GraphStoreV2ExternalDocumentOnedriveLinksThirdPartyDocumentInverseArgs = {
|
|
89936
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89937
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89938
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89939
|
+
id: Scalars['ID']['input'];
|
|
89940
|
+
sort?: InputMaybe<GraphStoreV2ExternalDocumentOnedriveLinksThirdPartyDocumentSortInput>;
|
|
89941
|
+
};
|
|
89942
|
+
export declare type GraphStoreV2ExternalDocumentSharepointLinksThirdPartyDocumentInverseArgs = {
|
|
89943
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89944
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89945
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89946
|
+
id: Scalars['ID']['input'];
|
|
89947
|
+
sort?: InputMaybe<GraphStoreV2ExternalDocumentSharepointLinksThirdPartyDocumentSortInput>;
|
|
89948
|
+
};
|
|
89949
|
+
export declare type GraphStoreV2ExternalEntityComplementLinksThirdPartyEntityInverseArgs = {
|
|
89950
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89951
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89952
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89953
|
+
id: Scalars['ID']['input'];
|
|
89954
|
+
sort?: InputMaybe<GraphStoreV2ExternalEntityComplementLinksThirdPartyEntitySortInput>;
|
|
89955
|
+
};
|
|
88974
89956
|
export declare type GraphStoreV2ExternalEntityIsThirdPartyEntityInverseArgs = {
|
|
88975
89957
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
88976
89958
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -91401,6 +92383,20 @@ export declare type GraphStoreV2JiraWorkItemContributesToAtlassianGoalInverseArg
|
|
|
91401
92383
|
id: Scalars['ID']['input'];
|
|
91402
92384
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemContributesToAtlassianGoalSortInput>;
|
|
91403
92385
|
};
|
|
92386
|
+
export declare type GraphStoreV2JiraWorkItemDismissedKnowledgeBaseEntityArgs = {
|
|
92387
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92388
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92389
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92390
|
+
id: Scalars['ID']['input'];
|
|
92391
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemDismissedKnowledgeBaseEntitySortInput>;
|
|
92392
|
+
};
|
|
92393
|
+
export declare type GraphStoreV2JiraWorkItemDismissedKnowledgeBaseEntityInverseArgs = {
|
|
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<GraphStoreV2JiraWorkItemDismissedKnowledgeBaseEntitySortInput>;
|
|
92399
|
+
};
|
|
91404
92400
|
export declare type GraphStoreV2JiraWorkItemHasAtlassianAutodevJobArgs = {
|
|
91405
92401
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91406
92402
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -91487,6 +92483,20 @@ export declare type GraphStoreV2JiraWorkItemHasJiraWorkItemCommentInverseArgs =
|
|
|
91487
92483
|
id: Scalars['ID']['input'];
|
|
91488
92484
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasJiraWorkItemCommentSortInput>;
|
|
91489
92485
|
};
|
|
92486
|
+
export declare type GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
92487
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92488
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92489
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92490
|
+
id: Scalars['ID']['input'];
|
|
92491
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntitySortInput>;
|
|
92492
|
+
};
|
|
92493
|
+
export declare type GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntityInverseArgs = {
|
|
92494
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92495
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92496
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92497
|
+
id: Scalars['ID']['input'];
|
|
92498
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntitySortInput>;
|
|
92499
|
+
};
|
|
91490
92500
|
export declare type GraphStoreV2JiraWorkItemLinksAssetsObjectArgs = {
|
|
91491
92501
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91492
92502
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -91929,6 +92939,20 @@ export declare type GraphStoreV2RepositoryEntityIsBitbucketRepositoryInverseArgs
|
|
|
91929
92939
|
id: Scalars['ID']['input'];
|
|
91930
92940
|
sort?: InputMaybe<GraphStoreV2RepositoryEntityIsBitbucketRepositorySortInput>;
|
|
91931
92941
|
};
|
|
92942
|
+
export declare type GraphStoreV2RovoAgentActsAsAtlassianUserArgs = {
|
|
92943
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92944
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92945
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92946
|
+
id: Scalars['ID']['input'];
|
|
92947
|
+
sort?: InputMaybe<GraphStoreV2RovoAgentActsAsAtlassianUserSortInput>;
|
|
92948
|
+
};
|
|
92949
|
+
export declare type GraphStoreV2RovoAgentActsAsAtlassianUserInverseArgs = {
|
|
92950
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92951
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92952
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92953
|
+
id: Scalars['ID']['input'];
|
|
92954
|
+
sort?: InputMaybe<GraphStoreV2RovoAgentActsAsAtlassianUserSortInput>;
|
|
92955
|
+
};
|
|
91932
92956
|
export declare type GraphStoreV2TalentPositionLinksExternalPositionArgs = {
|
|
91933
92957
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91934
92958
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -92204,6 +93228,9 @@ export declare type GraphStoreV2AtlassianUserCreatedLoomVideoCommentSortInput =
|
|
|
92204
93228
|
export declare type GraphStoreV2AtlassianUserCreatedLoomVideoSortInput = {
|
|
92205
93229
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
92206
93230
|
};
|
|
93231
|
+
export declare type GraphStoreV2AtlassianUserCreatedRovoAgentSortInput = {
|
|
93232
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
93233
|
+
};
|
|
92207
93234
|
export declare type GraphStoreV2AtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput = {
|
|
92208
93235
|
and?: InputMaybe<Array<InputMaybe<GraphStoreV2AtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput>>>;
|
|
92209
93236
|
category?: InputMaybe<GraphStoreV2AtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategoryFilterInput>;
|
|
@@ -92897,6 +93924,47 @@ export declare type GraphStoreV2CreateJiraVersionLinksExternalFeatureFlagPayload
|
|
|
92897
93924
|
errors?: Maybe<Array<MutationError>>;
|
|
92898
93925
|
success: Scalars['Boolean']['output'];
|
|
92899
93926
|
};
|
|
93927
|
+
export declare type GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityAliasInput = {
|
|
93928
|
+
from: Scalars['ID']['input'];
|
|
93929
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
93930
|
+
to: Scalars['ID']['input'];
|
|
93931
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
93932
|
+
};
|
|
93933
|
+
export declare type GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityInput = {
|
|
93934
|
+
aliases: Array<GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityAliasInput>;
|
|
93935
|
+
};
|
|
93936
|
+
export declare type GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityPayload = {
|
|
93937
|
+
__typename?: 'GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityPayload';
|
|
93938
|
+
errors?: Maybe<Array<MutationError>>;
|
|
93939
|
+
success: Scalars['Boolean']['output'];
|
|
93940
|
+
};
|
|
93941
|
+
export declare type GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityAliasInput = {
|
|
93942
|
+
from: Scalars['ID']['input'];
|
|
93943
|
+
objectMetadata?: InputMaybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityRelationshipObjectMetadataInput>;
|
|
93944
|
+
relationshipMetadata?: InputMaybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityRelationshipMetadataInput>;
|
|
93945
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
93946
|
+
to: Scalars['ID']['input'];
|
|
93947
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
93948
|
+
};
|
|
93949
|
+
export declare type GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityInput = {
|
|
93950
|
+
aliases: Array<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityAliasInput>;
|
|
93951
|
+
};
|
|
93952
|
+
export declare enum GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityLinkSourceInput {
|
|
93953
|
+
Accepted = "ACCEPTED",
|
|
93954
|
+
NotSet = "NOT_SET",
|
|
93955
|
+
UserAdded = "USER_ADDED"
|
|
93956
|
+
}
|
|
93957
|
+
export declare type GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityPayload = {
|
|
93958
|
+
__typename?: 'GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityPayload';
|
|
93959
|
+
errors?: Maybe<Array<MutationError>>;
|
|
93960
|
+
success: Scalars['Boolean']['output'];
|
|
93961
|
+
};
|
|
93962
|
+
export declare type GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityRelationshipMetadataInput = {
|
|
93963
|
+
linkSource?: InputMaybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityLinkSourceInput>;
|
|
93964
|
+
};
|
|
93965
|
+
export declare type GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityRelationshipObjectMetadataInput = {
|
|
93966
|
+
linkSource?: InputMaybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityLinkSourceInput>;
|
|
93967
|
+
};
|
|
92900
93968
|
export declare type GraphStoreV2CreateJiraWorkItemLinksConfluenceWhiteboardAliasInput = {
|
|
92901
93969
|
from: Scalars['ID']['input'];
|
|
92902
93970
|
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
@@ -93431,6 +94499,30 @@ export declare type GraphStoreV2DeleteJiraVersionLinksExternalFeatureFlagPayload
|
|
|
93431
94499
|
errors?: Maybe<Array<MutationError>>;
|
|
93432
94500
|
success: Scalars['Boolean']['output'];
|
|
93433
94501
|
};
|
|
94502
|
+
export declare type GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityAliasInput = {
|
|
94503
|
+
from: Scalars['ID']['input'];
|
|
94504
|
+
to: Scalars['ID']['input'];
|
|
94505
|
+
};
|
|
94506
|
+
export declare type GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityInput = {
|
|
94507
|
+
aliases: Array<GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityAliasInput>;
|
|
94508
|
+
};
|
|
94509
|
+
export declare type GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityPayload = {
|
|
94510
|
+
__typename?: 'GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityPayload';
|
|
94511
|
+
errors?: Maybe<Array<MutationError>>;
|
|
94512
|
+
success: Scalars['Boolean']['output'];
|
|
94513
|
+
};
|
|
94514
|
+
export declare type GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityAliasInput = {
|
|
94515
|
+
from: Scalars['ID']['input'];
|
|
94516
|
+
to: Scalars['ID']['input'];
|
|
94517
|
+
};
|
|
94518
|
+
export declare type GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityInput = {
|
|
94519
|
+
aliases: Array<GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityAliasInput>;
|
|
94520
|
+
};
|
|
94521
|
+
export declare type GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityPayload = {
|
|
94522
|
+
__typename?: 'GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityPayload';
|
|
94523
|
+
errors?: Maybe<Array<MutationError>>;
|
|
94524
|
+
success: Scalars['Boolean']['output'];
|
|
94525
|
+
};
|
|
93434
94526
|
export declare type GraphStoreV2DeleteJiraWorkItemLinksConfluenceWhiteboardAliasInput = {
|
|
93435
94527
|
from: Scalars['ID']['input'];
|
|
93436
94528
|
to: Scalars['ID']['input'];
|
|
@@ -93638,6 +94730,21 @@ export declare type GraphStoreV2ExternalDeploymentLinksExternalDeploymentSortInp
|
|
|
93638
94730
|
export declare type GraphStoreV2ExternalDeploymentLinksExternalRepositorySortInput = {
|
|
93639
94731
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
93640
94732
|
};
|
|
94733
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentSortInput = {
|
|
94734
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94735
|
+
};
|
|
94736
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentSortInput = {
|
|
94737
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94738
|
+
};
|
|
94739
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentSortInput = {
|
|
94740
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94741
|
+
};
|
|
94742
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentSortInput = {
|
|
94743
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94744
|
+
};
|
|
94745
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentSortInput = {
|
|
94746
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94747
|
+
};
|
|
93641
94748
|
export declare type GraphStoreV2ExternalDocumentHasChildExternalDocumentSortInput = {
|
|
93642
94749
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
93643
94750
|
};
|
|
@@ -93647,6 +94754,15 @@ export declare type GraphStoreV2ExternalDocumentHasExternalSpaceSortInput = {
|
|
|
93647
94754
|
export declare type GraphStoreV2ExternalDocumentLinksThirdPartyDocumentSortInput = {
|
|
93648
94755
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
93649
94756
|
};
|
|
94757
|
+
export declare type GraphStoreV2ExternalDocumentOnedriveLinksThirdPartyDocumentSortInput = {
|
|
94758
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94759
|
+
};
|
|
94760
|
+
export declare type GraphStoreV2ExternalDocumentSharepointLinksThirdPartyDocumentSortInput = {
|
|
94761
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94762
|
+
};
|
|
94763
|
+
export declare type GraphStoreV2ExternalEntityComplementLinksThirdPartyEntitySortInput = {
|
|
94764
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94765
|
+
};
|
|
93650
94766
|
export declare type GraphStoreV2ExternalEntityIsThirdPartyEntitySortInput = {
|
|
93651
94767
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
93652
94768
|
};
|
|
@@ -95021,6 +96137,12 @@ export declare type GraphStoreV2JiraWorkItemCommentHasChildJiraWorkItemCommentSo
|
|
|
95021
96137
|
export declare type GraphStoreV2JiraWorkItemContributesToAtlassianGoalSortInput = {
|
|
95022
96138
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
95023
96139
|
};
|
|
96140
|
+
export declare type GraphStoreV2JiraWorkItemDismissedKnowledgeBaseEntitySortInput = {
|
|
96141
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
96142
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
96143
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96144
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
96145
|
+
};
|
|
95024
96146
|
export declare enum GraphStoreV2JiraWorkItemHasAtlassianAutodevJobAutodevJobStatus {
|
|
95025
96147
|
Cancelled = "CANCELLED",
|
|
95026
96148
|
Completed = "COMPLETED",
|
|
@@ -95074,6 +96196,14 @@ export declare type GraphStoreV2JiraWorkItemHasJiraPrioritySortInput = {
|
|
|
95074
96196
|
export declare type GraphStoreV2JiraWorkItemHasJiraWorkItemCommentSortInput = {
|
|
95075
96197
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
95076
96198
|
};
|
|
96199
|
+
export declare type GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntitySortInput = {
|
|
96200
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
96201
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
96202
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96203
|
+
relationship_linkSource?: InputMaybe<GraphStoreSortInput>;
|
|
96204
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
96205
|
+
to_linkSource?: InputMaybe<GraphStoreSortInput>;
|
|
96206
|
+
};
|
|
95077
96207
|
export declare type GraphStoreV2JiraWorkItemLinksAssetsObjectSortInput = {
|
|
95078
96208
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
95079
96209
|
};
|
|
@@ -95388,6 +96518,8 @@ export declare type GraphStoreV2Mutation = {
|
|
|
95388
96518
|
createJiraSprintHasRetroConfluencePage?: Maybe<GraphStoreV2CreateJiraSprintHasRetroConfluencePagePayload>;
|
|
95389
96519
|
createJiraSprintHasRetroConfluenceWhiteboard?: Maybe<GraphStoreV2CreateJiraSprintHasRetroConfluenceWhiteboardPayload>;
|
|
95390
96520
|
createJiraVersionLinksExternalFeatureFlag?: Maybe<GraphStoreV2CreateJiraVersionLinksExternalFeatureFlagPayload>;
|
|
96521
|
+
createJiraWorkItemDismissedKnowledgeBaseEntity?: Maybe<GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityPayload>;
|
|
96522
|
+
createJiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityPayload>;
|
|
95391
96523
|
createJiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2CreateJiraWorkItemLinksConfluenceWhiteboardPayload>;
|
|
95392
96524
|
createJiraWorkItemLinksExternalVulnerability?: Maybe<GraphStoreV2CreateJiraWorkItemLinksExternalVulnerabilityPayload>;
|
|
95393
96525
|
createJiraWorkItemLinksSupportEscalationEntity?: Maybe<GraphStoreV2CreateJiraWorkItemLinksSupportEscalationEntityPayload>;
|
|
@@ -95417,6 +96549,8 @@ export declare type GraphStoreV2Mutation = {
|
|
|
95417
96549
|
deleteJiraSprintHasRetroConfluencePage?: Maybe<GraphStoreV2DeleteJiraSprintHasRetroConfluencePagePayload>;
|
|
95418
96550
|
deleteJiraSprintHasRetroConfluenceWhiteboard?: Maybe<GraphStoreV2DeleteJiraSprintHasRetroConfluenceWhiteboardPayload>;
|
|
95419
96551
|
deleteJiraVersionLinksExternalFeatureFlag?: Maybe<GraphStoreV2DeleteJiraVersionLinksExternalFeatureFlagPayload>;
|
|
96552
|
+
deleteJiraWorkItemDismissedKnowledgeBaseEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityPayload>;
|
|
96553
|
+
deleteJiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityPayload>;
|
|
95420
96554
|
deleteJiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksConfluenceWhiteboardPayload>;
|
|
95421
96555
|
deleteJiraWorkItemLinksExternalVulnerability?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksExternalVulnerabilityPayload>;
|
|
95422
96556
|
deleteJiraWorkItemLinksSupportEscalationEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksSupportEscalationEntityPayload>;
|
|
@@ -95487,6 +96621,12 @@ export declare type GraphStoreV2MutationCreateJiraSprintHasRetroConfluenceWhiteb
|
|
|
95487
96621
|
export declare type GraphStoreV2MutationCreateJiraVersionLinksExternalFeatureFlagArgs = {
|
|
95488
96622
|
input?: InputMaybe<GraphStoreV2CreateJiraVersionLinksExternalFeatureFlagInput>;
|
|
95489
96623
|
};
|
|
96624
|
+
export declare type GraphStoreV2MutationCreateJiraWorkItemDismissedKnowledgeBaseEntityArgs = {
|
|
96625
|
+
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityInput>;
|
|
96626
|
+
};
|
|
96627
|
+
export declare type GraphStoreV2MutationCreateJiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
96628
|
+
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityInput>;
|
|
96629
|
+
};
|
|
95490
96630
|
export declare type GraphStoreV2MutationCreateJiraWorkItemLinksConfluenceWhiteboardArgs = {
|
|
95491
96631
|
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemLinksConfluenceWhiteboardInput>;
|
|
95492
96632
|
};
|
|
@@ -95574,6 +96714,12 @@ export declare type GraphStoreV2MutationDeleteJiraSprintHasRetroConfluenceWhiteb
|
|
|
95574
96714
|
export declare type GraphStoreV2MutationDeleteJiraVersionLinksExternalFeatureFlagArgs = {
|
|
95575
96715
|
input?: InputMaybe<GraphStoreV2DeleteJiraVersionLinksExternalFeatureFlagInput>;
|
|
95576
96716
|
};
|
|
96717
|
+
export declare type GraphStoreV2MutationDeleteJiraWorkItemDismissedKnowledgeBaseEntityArgs = {
|
|
96718
|
+
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityInput>;
|
|
96719
|
+
};
|
|
96720
|
+
export declare type GraphStoreV2MutationDeleteJiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
96721
|
+
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityInput>;
|
|
96722
|
+
};
|
|
95577
96723
|
export declare type GraphStoreV2MutationDeleteJiraWorkItemLinksConfluenceWhiteboardArgs = {
|
|
95578
96724
|
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemLinksConfluenceWhiteboardInput>;
|
|
95579
96725
|
};
|
|
@@ -95604,6 +96750,9 @@ export declare type GraphStoreV2MutationDeleteLoomVideoHasConfluencePageArgs = {
|
|
|
95604
96750
|
export declare type GraphStoreV2RepositoryEntityIsBitbucketRepositorySortInput = {
|
|
95605
96751
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
95606
96752
|
};
|
|
96753
|
+
export declare type GraphStoreV2RovoAgentActsAsAtlassianUserSortInput = {
|
|
96754
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96755
|
+
};
|
|
95607
96756
|
export declare type GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeConnection = HasPageInfo & {
|
|
95608
96757
|
__typename?: 'GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeConnection';
|
|
95609
96758
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeEdge>>>;
|
|
@@ -97398,6 +98547,34 @@ export declare type GraphStoreV2SimplifiedAtlassianUserCreatedLoomVideoInverseEd
|
|
|
97398
98547
|
};
|
|
97399
98548
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedLoomVideoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
97400
98549
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedLoomVideoUnion = LoomVideo;
|
|
98550
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentConnection = HasPageInfo & {
|
|
98551
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentConnection';
|
|
98552
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentEdge>>>;
|
|
98553
|
+
pageInfo: PageInfo;
|
|
98554
|
+
};
|
|
98555
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentEdge = {
|
|
98556
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentEdge';
|
|
98557
|
+
createdAt: Scalars['DateTime']['output'];
|
|
98558
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
98559
|
+
id: Scalars['ID']['output'];
|
|
98560
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
98561
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentUnion>;
|
|
98562
|
+
};
|
|
98563
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentInverseConnection = HasPageInfo & {
|
|
98564
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentInverseConnection';
|
|
98565
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentInverseEdge>>>;
|
|
98566
|
+
pageInfo: PageInfo;
|
|
98567
|
+
};
|
|
98568
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentInverseEdge = {
|
|
98569
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentInverseEdge';
|
|
98570
|
+
createdAt: Scalars['DateTime']['output'];
|
|
98571
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
98572
|
+
id: Scalars['ID']['output'];
|
|
98573
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
98574
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentInverseUnion>;
|
|
98575
|
+
};
|
|
98576
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
98577
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedRovoAgentUnion = AgentStudioAssistant | AgentStudioServiceAgent;
|
|
97401
98578
|
export declare type GraphStoreV2SimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection = HasPageInfo & HasTotal & {
|
|
97402
98579
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection';
|
|
97403
98580
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityEdge>>>;
|
|
@@ -101088,6 +102265,76 @@ export declare type GraphStoreV2SimplifiedExternalDeploymentLinksExternalReposit
|
|
|
101088
102265
|
};
|
|
101089
102266
|
export declare type GraphStoreV2SimplifiedExternalDeploymentLinksExternalRepositoryInverseUnion = DeploymentSummary | ExternalDeployment;
|
|
101090
102267
|
export declare type GraphStoreV2SimplifiedExternalDeploymentLinksExternalRepositoryUnion = DevOpsRepository | ExternalRepository;
|
|
102268
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
102269
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseConnection';
|
|
102270
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseEdge>>>;
|
|
102271
|
+
pageInfo: PageInfo;
|
|
102272
|
+
};
|
|
102273
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseEdge = {
|
|
102274
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseEdge';
|
|
102275
|
+
createdAt: Scalars['DateTime']['output'];
|
|
102276
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
102277
|
+
id: Scalars['ID']['output'];
|
|
102278
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
102279
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseUnion>;
|
|
102280
|
+
};
|
|
102281
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
102282
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
102283
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseConnection';
|
|
102284
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseEdge>>>;
|
|
102285
|
+
pageInfo: PageInfo;
|
|
102286
|
+
};
|
|
102287
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseEdge = {
|
|
102288
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseEdge';
|
|
102289
|
+
createdAt: Scalars['DateTime']['output'];
|
|
102290
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
102291
|
+
id: Scalars['ID']['output'];
|
|
102292
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
102293
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseUnion>;
|
|
102294
|
+
};
|
|
102295
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
102296
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
102297
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseConnection';
|
|
102298
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseEdge>>>;
|
|
102299
|
+
pageInfo: PageInfo;
|
|
102300
|
+
};
|
|
102301
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseEdge = {
|
|
102302
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseEdge';
|
|
102303
|
+
createdAt: Scalars['DateTime']['output'];
|
|
102304
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
102305
|
+
id: Scalars['ID']['output'];
|
|
102306
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
102307
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseUnion>;
|
|
102308
|
+
};
|
|
102309
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
102310
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
102311
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseConnection';
|
|
102312
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseEdge>>>;
|
|
102313
|
+
pageInfo: PageInfo;
|
|
102314
|
+
};
|
|
102315
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseEdge = {
|
|
102316
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseEdge';
|
|
102317
|
+
createdAt: Scalars['DateTime']['output'];
|
|
102318
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
102319
|
+
id: Scalars['ID']['output'];
|
|
102320
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
102321
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseUnion>;
|
|
102322
|
+
};
|
|
102323
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
102324
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
102325
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseConnection';
|
|
102326
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseEdge>>>;
|
|
102327
|
+
pageInfo: PageInfo;
|
|
102328
|
+
};
|
|
102329
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseEdge = {
|
|
102330
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseEdge';
|
|
102331
|
+
createdAt: Scalars['DateTime']['output'];
|
|
102332
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
102333
|
+
id: Scalars['ID']['output'];
|
|
102334
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
102335
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseUnion>;
|
|
102336
|
+
};
|
|
102337
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
101091
102338
|
export declare type GraphStoreV2SimplifiedExternalDocumentHasChildExternalDocumentConnection = HasPageInfo & {
|
|
101092
102339
|
__typename?: 'GraphStoreV2SimplifiedExternalDocumentHasChildExternalDocumentConnection';
|
|
101093
102340
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDocumentHasChildExternalDocumentEdge>>>;
|
|
@@ -101158,6 +102405,48 @@ export declare type GraphStoreV2SimplifiedExternalDocumentLinksThirdPartyDocumen
|
|
|
101158
102405
|
node?: Maybe<GraphStoreV2SimplifiedExternalDocumentLinksThirdPartyDocumentInverseUnion>;
|
|
101159
102406
|
};
|
|
101160
102407
|
export declare type GraphStoreV2SimplifiedExternalDocumentLinksThirdPartyDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
102408
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentOnedriveLinksThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
102409
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentOnedriveLinksThirdPartyDocumentInverseConnection';
|
|
102410
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDocumentOnedriveLinksThirdPartyDocumentInverseEdge>>>;
|
|
102411
|
+
pageInfo: PageInfo;
|
|
102412
|
+
};
|
|
102413
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentOnedriveLinksThirdPartyDocumentInverseEdge = {
|
|
102414
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentOnedriveLinksThirdPartyDocumentInverseEdge';
|
|
102415
|
+
createdAt: Scalars['DateTime']['output'];
|
|
102416
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
102417
|
+
id: Scalars['ID']['output'];
|
|
102418
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
102419
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalDocumentOnedriveLinksThirdPartyDocumentInverseUnion>;
|
|
102420
|
+
};
|
|
102421
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentOnedriveLinksThirdPartyDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
102422
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentSharepointLinksThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
102423
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentSharepointLinksThirdPartyDocumentInverseConnection';
|
|
102424
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDocumentSharepointLinksThirdPartyDocumentInverseEdge>>>;
|
|
102425
|
+
pageInfo: PageInfo;
|
|
102426
|
+
};
|
|
102427
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentSharepointLinksThirdPartyDocumentInverseEdge = {
|
|
102428
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentSharepointLinksThirdPartyDocumentInverseEdge';
|
|
102429
|
+
createdAt: Scalars['DateTime']['output'];
|
|
102430
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
102431
|
+
id: Scalars['ID']['output'];
|
|
102432
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
102433
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalDocumentSharepointLinksThirdPartyDocumentInverseUnion>;
|
|
102434
|
+
};
|
|
102435
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentSharepointLinksThirdPartyDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
102436
|
+
export declare type GraphStoreV2SimplifiedExternalEntityComplementLinksThirdPartyEntityInverseConnection = HasPageInfo & {
|
|
102437
|
+
__typename?: 'GraphStoreV2SimplifiedExternalEntityComplementLinksThirdPartyEntityInverseConnection';
|
|
102438
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalEntityComplementLinksThirdPartyEntityInverseEdge>>>;
|
|
102439
|
+
pageInfo: PageInfo;
|
|
102440
|
+
};
|
|
102441
|
+
export declare type GraphStoreV2SimplifiedExternalEntityComplementLinksThirdPartyEntityInverseEdge = {
|
|
102442
|
+
__typename?: 'GraphStoreV2SimplifiedExternalEntityComplementLinksThirdPartyEntityInverseEdge';
|
|
102443
|
+
createdAt: Scalars['DateTime']['output'];
|
|
102444
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
102445
|
+
id: Scalars['ID']['output'];
|
|
102446
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
102447
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalEntityComplementLinksThirdPartyEntityInverseUnion>;
|
|
102448
|
+
};
|
|
102449
|
+
export declare type GraphStoreV2SimplifiedExternalEntityComplementLinksThirdPartyEntityInverseUnion = DeploymentSummary | DevOpsDocument | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | ExternalBranch | ExternalBuildInfo | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDocument | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability;
|
|
101161
102450
|
export declare type GraphStoreV2SimplifiedExternalEntityIsThirdPartyEntityInverseConnection = HasPageInfo & {
|
|
101162
102451
|
__typename?: 'GraphStoreV2SimplifiedExternalEntityIsThirdPartyEntityInverseConnection';
|
|
101163
102452
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalEntityIsThirdPartyEntityInverseEdge>>>;
|
|
@@ -106126,6 +107415,38 @@ export declare type GraphStoreV2SimplifiedJiraWorkItemContributesToAtlassianGoal
|
|
|
106126
107415
|
};
|
|
106127
107416
|
export declare type GraphStoreV2SimplifiedJiraWorkItemContributesToAtlassianGoalInverseUnion = JiraIssue;
|
|
106128
107417
|
export declare type GraphStoreV2SimplifiedJiraWorkItemContributesToAtlassianGoalUnion = TownsquareGoal;
|
|
107418
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityConnection = HasPageInfo & HasTotal & {
|
|
107419
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityConnection';
|
|
107420
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityEdge>>>;
|
|
107421
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
107422
|
+
pageInfo: PageInfo;
|
|
107423
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
107424
|
+
};
|
|
107425
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityEdge = {
|
|
107426
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityEdge';
|
|
107427
|
+
createdAt: Scalars['DateTime']['output'];
|
|
107428
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
107429
|
+
id: Scalars['ID']['output'];
|
|
107430
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
107431
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityUnion>;
|
|
107432
|
+
};
|
|
107433
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityInverseConnection = HasPageInfo & HasTotal & {
|
|
107434
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityInverseConnection';
|
|
107435
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityInverseEdge>>>;
|
|
107436
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
107437
|
+
pageInfo: PageInfo;
|
|
107438
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
107439
|
+
};
|
|
107440
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityInverseEdge = {
|
|
107441
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityInverseEdge';
|
|
107442
|
+
createdAt: Scalars['DateTime']['output'];
|
|
107443
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
107444
|
+
id: Scalars['ID']['output'];
|
|
107445
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
107446
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityInverseUnion>;
|
|
107447
|
+
};
|
|
107448
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityInverseUnion = JiraIssue | JiraProject;
|
|
107449
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
106129
107450
|
export declare type GraphStoreV2SimplifiedJiraWorkItemHasAtlassianAutodevJobConnection = HasPageInfo & HasTotal & {
|
|
106130
107451
|
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemHasAtlassianAutodevJobConnection';
|
|
106131
107452
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemHasAtlassianAutodevJobEdge>>>;
|
|
@@ -106298,6 +107619,38 @@ export declare type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInve
|
|
|
106298
107619
|
};
|
|
106299
107620
|
export declare type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseUnion = JiraIssue;
|
|
106300
107621
|
export declare type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
107622
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityConnection = HasPageInfo & HasTotal & {
|
|
107623
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityConnection';
|
|
107624
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityEdge>>>;
|
|
107625
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
107626
|
+
pageInfo: PageInfo;
|
|
107627
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
107628
|
+
};
|
|
107629
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityEdge = {
|
|
107630
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityEdge';
|
|
107631
|
+
createdAt: Scalars['DateTime']['output'];
|
|
107632
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
107633
|
+
id: Scalars['ID']['output'];
|
|
107634
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
107635
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityUnion>;
|
|
107636
|
+
};
|
|
107637
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseConnection = HasPageInfo & HasTotal & {
|
|
107638
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseConnection';
|
|
107639
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseEdge>>>;
|
|
107640
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
107641
|
+
pageInfo: PageInfo;
|
|
107642
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
107643
|
+
};
|
|
107644
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseEdge = {
|
|
107645
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseEdge';
|
|
107646
|
+
createdAt: Scalars['DateTime']['output'];
|
|
107647
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
107648
|
+
id: Scalars['ID']['output'];
|
|
107649
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
107650
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseUnion>;
|
|
107651
|
+
};
|
|
107652
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseUnion = JiraIssue | JiraProject;
|
|
107653
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
106301
107654
|
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection = HasPageInfo & {
|
|
106302
107655
|
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection';
|
|
106303
107656
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectEdge>>>;
|
|
@@ -107230,6 +108583,34 @@ export declare type GraphStoreV2SimplifiedRepositoryEntityIsBitbucketRepositoryI
|
|
|
107230
108583
|
};
|
|
107231
108584
|
export declare type GraphStoreV2SimplifiedRepositoryEntityIsBitbucketRepositoryInverseUnion = DevOpsRepository | ExternalRepository;
|
|
107232
108585
|
export declare type GraphStoreV2SimplifiedRepositoryEntityIsBitbucketRepositoryUnion = BitbucketRepository;
|
|
108586
|
+
export declare type GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserConnection = HasPageInfo & {
|
|
108587
|
+
__typename?: 'GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserConnection';
|
|
108588
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserEdge>>>;
|
|
108589
|
+
pageInfo: PageInfo;
|
|
108590
|
+
};
|
|
108591
|
+
export declare type GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserEdge = {
|
|
108592
|
+
__typename?: 'GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserEdge';
|
|
108593
|
+
createdAt: Scalars['DateTime']['output'];
|
|
108594
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
108595
|
+
id: Scalars['ID']['output'];
|
|
108596
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
108597
|
+
node?: Maybe<GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserUnion>;
|
|
108598
|
+
};
|
|
108599
|
+
export declare type GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseConnection = HasPageInfo & {
|
|
108600
|
+
__typename?: 'GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseConnection';
|
|
108601
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseEdge>>>;
|
|
108602
|
+
pageInfo: PageInfo;
|
|
108603
|
+
};
|
|
108604
|
+
export declare type GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseEdge = {
|
|
108605
|
+
__typename?: 'GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseEdge';
|
|
108606
|
+
createdAt: Scalars['DateTime']['output'];
|
|
108607
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
108608
|
+
id: Scalars['ID']['output'];
|
|
108609
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
108610
|
+
node?: Maybe<GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseUnion>;
|
|
108611
|
+
};
|
|
108612
|
+
export declare type GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseUnion = AgentStudioAssistant | AgentStudioServiceAgent;
|
|
108613
|
+
export declare type GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
107233
108614
|
export declare type GraphStoreV2SimplifiedTalentPositionLinksExternalPositionConnection = HasPageInfo & {
|
|
107234
108615
|
__typename?: 'GraphStoreV2SimplifiedTalentPositionLinksExternalPositionConnection';
|
|
107235
108616
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedTalentPositionLinksExternalPositionEdge>>>;
|
|
@@ -112307,6 +113688,16 @@ export declare type JiraAdfInput = {
|
|
|
112307
113688
|
jsonValue?: InputMaybe<Scalars['JSON']['input']>;
|
|
112308
113689
|
version?: InputMaybe<Scalars['Int']['input']>;
|
|
112309
113690
|
};
|
|
113691
|
+
export declare type JiraAcceptAgentContextItemInput = {
|
|
113692
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
113693
|
+
sourceAri: Scalars['ID']['input'];
|
|
113694
|
+
targetAri: Scalars['ID']['input'];
|
|
113695
|
+
};
|
|
113696
|
+
export declare type JiraAcceptAgentContextItemPayload = {
|
|
113697
|
+
__typename?: 'JiraAcceptAgentContextItemPayload';
|
|
113698
|
+
errors?: Maybe<Array<MutationError>>;
|
|
113699
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
113700
|
+
};
|
|
112310
113701
|
export declare type JiraAccessAtlassianIntelligenceFeature = {
|
|
112311
113702
|
__typename?: 'JiraAccessAtlassianIntelligenceFeature';
|
|
112312
113703
|
isAccessible?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -112375,6 +113766,16 @@ export declare type JiraActorEdge = {
|
|
|
112375
113766
|
cursor: Scalars['String']['output'];
|
|
112376
113767
|
node?: Maybe<JiraActor>;
|
|
112377
113768
|
};
|
|
113769
|
+
export declare type JiraAddAgentContextItemInput = {
|
|
113770
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
113771
|
+
sourceAri: Scalars['ID']['input'];
|
|
113772
|
+
targetAri: Scalars['ID']['input'];
|
|
113773
|
+
};
|
|
113774
|
+
export declare type JiraAddAgentContextItemPayload = {
|
|
113775
|
+
__typename?: 'JiraAddAgentContextItemPayload';
|
|
113776
|
+
errors?: Maybe<Array<MutationError>>;
|
|
113777
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
113778
|
+
};
|
|
112378
113779
|
export declare type JiraAddAgentToBoardViewStatusColumnInput = {
|
|
112379
113780
|
agentAccountId: Scalars['ID']['input'];
|
|
112380
113781
|
columnId: Scalars['ID']['input'];
|
|
@@ -112647,6 +114048,34 @@ export declare type JiraAgentAssignableInput = {
|
|
|
112647
114048
|
agentAccountId?: InputMaybe<Scalars['ID']['input']>;
|
|
112648
114049
|
agentId?: InputMaybe<Scalars['ID']['input']>;
|
|
112649
114050
|
};
|
|
114051
|
+
export declare type JiraAgentContextFilter = {
|
|
114052
|
+
entityTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
114053
|
+
origins?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
114054
|
+
};
|
|
114055
|
+
export declare type JiraAgentContextItem = {
|
|
114056
|
+
__typename?: 'JiraAgentContextItem';
|
|
114057
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
114058
|
+
entityType?: Maybe<Scalars['String']['output']>;
|
|
114059
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
114060
|
+
id: Scalars['ID']['output'];
|
|
114061
|
+
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
114062
|
+
origin?: Maybe<Scalars['String']['output']>;
|
|
114063
|
+
reasonCodes?: Maybe<Array<Scalars['String']['output']>>;
|
|
114064
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
114065
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
114066
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
114067
|
+
};
|
|
114068
|
+
export declare type JiraAgentContextItemConnection = {
|
|
114069
|
+
__typename?: 'JiraAgentContextItemConnection';
|
|
114070
|
+
edges?: Maybe<Array<Maybe<JiraAgentContextItemEdge>>>;
|
|
114071
|
+
pageInfo?: Maybe<PageInfo>;
|
|
114072
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
114073
|
+
};
|
|
114074
|
+
export declare type JiraAgentContextItemEdge = {
|
|
114075
|
+
__typename?: 'JiraAgentContextItemEdge';
|
|
114076
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
114077
|
+
node?: Maybe<JiraAgentContextItem>;
|
|
114078
|
+
};
|
|
112650
114079
|
export declare enum JiraAgentCreatorType {
|
|
112651
114080
|
Customer = "CUSTOMER",
|
|
112652
114081
|
Forge = "FORGE",
|
|
@@ -113026,6 +114455,7 @@ export declare type JiraAppUiModifications = {
|
|
|
113026
114455
|
};
|
|
113027
114456
|
export declare enum JiraApplicationKey {
|
|
113028
114457
|
JiraCore = "JIRA_CORE",
|
|
114458
|
+
JiraCustomerService = "JIRA_CUSTOMER_SERVICE",
|
|
113029
114459
|
JiraProductDiscovery = "JIRA_PRODUCT_DISCOVERY",
|
|
113030
114460
|
JiraServiceDesk = "JIRA_SERVICE_DESK",
|
|
113031
114461
|
JiraSoftware = "JIRA_SOFTWARE"
|
|
@@ -118616,6 +120046,15 @@ export declare type JiraDisconnectTownsquareProjectToSpaceInput = {
|
|
|
118616
120046
|
spaceAri: Scalars['ID']['input'];
|
|
118617
120047
|
townsquareProjectAri: Scalars['String']['input'];
|
|
118618
120048
|
};
|
|
120049
|
+
export declare type JiraDismissAgentContextItemInput = {
|
|
120050
|
+
sourceAri: Scalars['ID']['input'];
|
|
120051
|
+
targetAri: Scalars['ID']['input'];
|
|
120052
|
+
};
|
|
120053
|
+
export declare type JiraDismissAgentContextItemPayload = {
|
|
120054
|
+
__typename?: 'JiraDismissAgentContextItemPayload';
|
|
120055
|
+
errors?: Maybe<Array<MutationError>>;
|
|
120056
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
120057
|
+
};
|
|
118619
120058
|
export declare type JiraDismissAiAgentSessionInput = {
|
|
118620
120059
|
agentIdentityAccountId: Scalars['String']['input'];
|
|
118621
120060
|
cloudId: Scalars['ID']['input'];
|
|
@@ -118746,6 +120185,7 @@ export declare type JiraEditFieldSchemeInput = {
|
|
|
118746
120185
|
};
|
|
118747
120186
|
export declare type JiraEligibleProjectsFilter = {
|
|
118748
120187
|
projectCategoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
120188
|
+
projectCategoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
118749
120189
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
118750
120190
|
};
|
|
118751
120191
|
export declare enum JiraEmailMimeType {
|
|
@@ -119630,7 +121070,6 @@ export declare type JiraFilterNameMutationErrorExtension = MutationErrorExtensio
|
|
|
119630
121070
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
119631
121071
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
119632
121072
|
};
|
|
119633
|
-
export declare type JiraFilterResult = JiraCustomFilter | JiraSystemFilter | QueryError;
|
|
119634
121073
|
export declare enum JiraFilterSearchMode {
|
|
119635
121074
|
Advanced = "ADVANCED",
|
|
119636
121075
|
Basic = "BASIC",
|
|
@@ -120479,14 +121918,6 @@ export declare enum JiraGlobalPermissionType {
|
|
|
120479
121918
|
ManageCustomOnboarding = "MANAGE_CUSTOM_ONBOARDING",
|
|
120480
121919
|
UserPicker = "USER_PICKER"
|
|
120481
121920
|
}
|
|
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
121921
|
export declare type JiraGoal = Node & {
|
|
120491
121922
|
__typename?: 'JiraGoal';
|
|
120492
121923
|
iconKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -121653,11 +123084,6 @@ export declare enum JiraIssueAgentSessionsVisibility {
|
|
|
121653
123084
|
Team = "TEAM",
|
|
121654
123085
|
Yours = "YOURS"
|
|
121655
123086
|
}
|
|
121656
|
-
export declare type JiraIssueAndProject = {
|
|
121657
|
-
__typename?: 'JiraIssueAndProject';
|
|
121658
|
-
issueId: Scalars['ID']['output'];
|
|
121659
|
-
projectId: Scalars['ID']['output'];
|
|
121660
|
-
};
|
|
121661
123087
|
export declare type JiraIssueApprovalsConnection = {
|
|
121662
123088
|
__typename?: 'JiraIssueApprovalsConnection';
|
|
121663
123089
|
edges?: Maybe<Array<JiraIssueApprovalsEdge>>;
|
|
@@ -122394,7 +123820,6 @@ export declare type JiraIssueFieldConnection = JiraListRowFieldConnection & {
|
|
|
122394
123820
|
pageInfo: PageInfo;
|
|
122395
123821
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
122396
123822
|
};
|
|
122397
|
-
export declare type JiraIssueFieldConnectionResult = JiraIssueFieldConnection | QueryError;
|
|
122398
123823
|
export declare type JiraIssueFieldCreateContextOption = {
|
|
122399
123824
|
id: Scalars['ID']['output'];
|
|
122400
123825
|
};
|
|
@@ -124396,10 +125821,6 @@ export declare type JiraJqlBuilderVersionsArgs = {
|
|
|
124396
125821
|
jqlContext?: InputMaybe<Scalars['String']['input']>;
|
|
124397
125822
|
jqlTerm: Scalars['String']['input'];
|
|
124398
125823
|
};
|
|
124399
|
-
export declare enum JiraJqlBuilderMode {
|
|
124400
|
-
Basic = "BASIC",
|
|
124401
|
-
Jql = "JQL"
|
|
124402
|
-
}
|
|
124403
125824
|
export declare type JiraJqlCascadingOptionFieldValue = JiraJqlFieldValue & {
|
|
124404
125825
|
__typename?: 'JiraJqlCascadingOptionFieldValue';
|
|
124405
125826
|
displayName: Scalars['String']['output'];
|
|
@@ -126994,6 +128415,7 @@ export declare type JiraNavigationItemTypeEdge = {
|
|
|
126994
128415
|
node?: Maybe<JiraNavigationItemType>;
|
|
126995
128416
|
};
|
|
126996
128417
|
export declare enum JiraNavigationItemTypeKey {
|
|
128418
|
+
AiPlanning = "AI_PLANNING",
|
|
126997
128419
|
App = "APP",
|
|
126998
128420
|
Approvals = "APPROVALS",
|
|
126999
128421
|
Apps = "APPS",
|
|
@@ -127453,7 +128875,6 @@ export declare type JiraOAuthDevOpsProvider = JiraDevOpsProvider & {
|
|
|
127453
128875
|
oauthAppId?: Maybe<Scalars['ID']['output']>;
|
|
127454
128876
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
127455
128877
|
};
|
|
127456
|
-
export declare type JiraOnIssueCreatedForUserResponseType = JiraIssueAndProject | JiraProjectConnection;
|
|
127457
128878
|
export declare type JiraOnSuggestedChildIssueResult = JiraSuggestedChildIssueError | JiraSuggestedChildIssueStatus | JiraSuggestedIssue;
|
|
127458
128879
|
export declare type JiraOnboardingConfig = {
|
|
127459
128880
|
__typename?: 'JiraOnboardingConfig';
|
|
@@ -127994,17 +129415,6 @@ export declare type JiraPermissionGrantValue = {
|
|
|
127994
129415
|
id: Scalars['ID']['output'];
|
|
127995
129416
|
value?: Maybe<JiraGrantTypeValue>;
|
|
127996
129417
|
};
|
|
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
129418
|
export declare type JiraPermissionGrants = {
|
|
128009
129419
|
__typename?: 'JiraPermissionGrants';
|
|
128010
129420
|
grantType: JiraGrantTypeKey;
|
|
@@ -129290,6 +130700,10 @@ export declare type JiraProjectFrontendConfig = {
|
|
|
129290
130700
|
project?: Maybe<Scalars['JSON']['output']>;
|
|
129291
130701
|
user?: Maybe<Scalars['JSON']['output']>;
|
|
129292
130702
|
};
|
|
130703
|
+
export declare type JiraProjectIdentifier = {
|
|
130704
|
+
cloudId: Scalars['ID']['input'];
|
|
130705
|
+
projectKey: Scalars['String']['input'];
|
|
130706
|
+
};
|
|
129293
130707
|
export declare type JiraProjectInput = {
|
|
129294
130708
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
129295
130709
|
projectId: Scalars['ID']['input'];
|
|
@@ -129523,6 +130937,7 @@ export declare type JiraProjectPolicyEdge = {
|
|
|
129523
130937
|
};
|
|
129524
130938
|
export declare type JiraProjectPolicyProjectFilter = {
|
|
129525
130939
|
projectCategoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
130940
|
+
projectCategoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
129526
130941
|
projectNameQuery?: InputMaybe<Scalars['String']['input']>;
|
|
129527
130942
|
};
|
|
129528
130943
|
export declare type JiraProjectPolicyRule = {
|
|
@@ -130082,7 +131497,9 @@ export declare type JiraQuery = {
|
|
|
130082
131497
|
jpdGlobalViewFields?: Maybe<JiraPolarisGlobalViewFields>;
|
|
130083
131498
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
130084
131499
|
jsmCustomerWidget?: Maybe<JiraServiceManagementCustomerWidget>;
|
|
131500
|
+
jsmEmails?: Maybe<JiraServiceManagementEmailsConnection>;
|
|
130085
131501
|
jsmPortal?: Maybe<JiraServiceManagementPortal>;
|
|
131502
|
+
jsmProjectPortalAccess?: Maybe<JiraServiceManagementCustomerAccessType>;
|
|
130086
131503
|
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
130087
131504
|
jsmWorkflowTemplates?: Maybe<JiraServiceManagementWorkflowTemplatesMetadataConnection>;
|
|
130088
131505
|
jsonUserProperty?: Maybe<JiraEntityPropertyJson>;
|
|
@@ -130118,7 +131535,6 @@ export declare type JiraQuery = {
|
|
|
130118
131535
|
opsgenieBaseUrl?: Maybe<Scalars['URL']['output']>;
|
|
130119
131536
|
outgoingMailConfig?: Maybe<JiraOutgoingMailConfigResponse>;
|
|
130120
131537
|
permission?: Maybe<JiraPermission>;
|
|
130121
|
-
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
130122
131538
|
planById?: Maybe<JiraPlan>;
|
|
130123
131539
|
postIncidentReviewLinksByIds?: Maybe<Array<Maybe<JiraPostIncidentReviewLink>>>;
|
|
130124
131540
|
projectCleanupLogTableEntries?: Maybe<JiraProjectCleanupLogTableEntryConnection>;
|
|
@@ -130170,7 +131586,6 @@ export declare type JiraQuery = {
|
|
|
130170
131586
|
suggestedFormulaFieldExpression?: Maybe<JiraFormulaFieldSuggestedExpressionResult>;
|
|
130171
131587
|
suggestedRequestTypes?: Maybe<JiraServiceManagementRequestTypeConnection>;
|
|
130172
131588
|
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
130173
|
-
timeTrackingSettings?: Maybe<JiraGlobalTimeTrackingSettings>;
|
|
130174
131589
|
uiModifications?: Maybe<Array<JiraAppUiModifications>>;
|
|
130175
131590
|
userHomePage?: Maybe<JiraHomePage>;
|
|
130176
131591
|
userNavigationConfiguration?: Maybe<JiraUserNavigationConfiguration>;
|
|
@@ -130970,10 +132385,20 @@ export declare type JiraQueryJsmCustomerWidgetArgs = {
|
|
|
130970
132385
|
cloudId: Scalars['ID']['input'];
|
|
130971
132386
|
projectId: Scalars['ID']['input'];
|
|
130972
132387
|
};
|
|
132388
|
+
export declare type JiraQueryJsmEmailsArgs = {
|
|
132389
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
132390
|
+
cloudId: Scalars['ID']['input'];
|
|
132391
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
132392
|
+
projectKey: Scalars['String']['input'];
|
|
132393
|
+
};
|
|
130973
132394
|
export declare type JiraQueryJsmPortalArgs = {
|
|
130974
132395
|
cloudId: Scalars['ID']['input'];
|
|
130975
132396
|
projectId: Scalars['Long']['input'];
|
|
130976
132397
|
};
|
|
132398
|
+
export declare type JiraQueryJsmProjectPortalAccessArgs = {
|
|
132399
|
+
cloudId: Scalars['ID']['input'];
|
|
132400
|
+
projectKey: Scalars['String']['input'];
|
|
132401
|
+
};
|
|
130977
132402
|
export declare type JiraQueryJsmProjectTeamTypeArgs = {
|
|
130978
132403
|
projectId: Scalars['ID']['input'];
|
|
130979
132404
|
};
|
|
@@ -131143,14 +132568,6 @@ export declare type JiraQueryPermissionArgs = {
|
|
|
131143
132568
|
cloudId: Scalars['ID']['input'];
|
|
131144
132569
|
type: JiraPermissionType;
|
|
131145
132570
|
};
|
|
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
132571
|
export declare type JiraQueryPlanByIdArgs = {
|
|
131155
132572
|
id: Scalars['ID']['input'];
|
|
131156
132573
|
};
|
|
@@ -131421,9 +132838,6 @@ export declare type JiraQuerySystemFiltersArgs = {
|
|
|
131421
132838
|
isFavourite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
131422
132839
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
131423
132840
|
};
|
|
131424
|
-
export declare type JiraQueryTimeTrackingSettingsArgs = {
|
|
131425
|
-
cloudId: Scalars['ID']['input'];
|
|
131426
|
-
};
|
|
131427
132841
|
export declare type JiraQueryUiModificationsArgs = {
|
|
131428
132842
|
context: JiraUiModificationsContextInput;
|
|
131429
132843
|
};
|
|
@@ -132359,6 +133773,14 @@ export declare type JiraReportsPage = {
|
|
|
132359
133773
|
__typename?: 'JiraReportsPage';
|
|
132360
133774
|
categories?: Maybe<Array<Maybe<JiraReportCategory>>>;
|
|
132361
133775
|
};
|
|
133776
|
+
export declare type JiraResetAgentContextInput = {
|
|
133777
|
+
sourceAri: Scalars['ID']['input'];
|
|
133778
|
+
};
|
|
133779
|
+
export declare type JiraResetAgentContextPayload = {
|
|
133780
|
+
__typename?: 'JiraResetAgentContextPayload';
|
|
133781
|
+
errors?: Maybe<Array<MutationError>>;
|
|
133782
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
133783
|
+
};
|
|
132362
133784
|
export declare type JiraResetFaviconInput = {
|
|
132363
133785
|
cloudId: Scalars['ID']['input'];
|
|
132364
133786
|
};
|
|
@@ -132950,6 +134372,10 @@ export declare type JiraScmRepository = {
|
|
|
132950
134372
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
132951
134373
|
name?: Maybe<Scalars['String']['output']>;
|
|
132952
134374
|
};
|
|
134375
|
+
export declare type JiraScopedAgentContextInput = {
|
|
134376
|
+
projectByKey?: InputMaybe<JiraProjectIdentifier>;
|
|
134377
|
+
sourceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
134378
|
+
};
|
|
132953
134379
|
export declare type JiraScopedResetFieldsetsInput = {
|
|
132954
134380
|
context?: InputMaybe<JiraIssueSearchViewFieldSetsContext>;
|
|
132955
134381
|
doReset?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -133510,6 +134936,10 @@ export declare enum JiraServiceManagementCreateRequestTypeFromTemplateWorkflowIn
|
|
|
133510
134936
|
export declare type JiraServiceManagementCreateRequestTypeFromTemplateWorkflowIssueTypeReferenceInput = {
|
|
133511
134937
|
workflowIssueTypeId: Scalars['ID']['input'];
|
|
133512
134938
|
};
|
|
134939
|
+
export declare enum JiraServiceManagementCustomerAccessType {
|
|
134940
|
+
Public = "PUBLIC",
|
|
134941
|
+
Restricted = "RESTRICTED"
|
|
134942
|
+
}
|
|
133513
134943
|
export declare type JiraServiceManagementCustomerWidget = {
|
|
133514
134944
|
__typename?: 'JiraServiceManagementCustomerWidget';
|
|
133515
134945
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -133575,6 +135005,22 @@ export declare type JiraServiceManagementDueDatePreviewField = JiraServiceManage
|
|
|
133575
135005
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
133576
135006
|
type?: Maybe<Scalars['String']['output']>;
|
|
133577
135007
|
};
|
|
135008
|
+
export declare type JiraServiceManagementEmail = {
|
|
135009
|
+
__typename?: 'JiraServiceManagementEmail';
|
|
135010
|
+
address?: Maybe<Scalars['String']['output']>;
|
|
135011
|
+
emailId?: Maybe<Scalars['String']['output']>;
|
|
135012
|
+
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
135013
|
+
};
|
|
135014
|
+
export declare type JiraServiceManagementEmailEdge = {
|
|
135015
|
+
__typename?: 'JiraServiceManagementEmailEdge';
|
|
135016
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
135017
|
+
node?: Maybe<JiraServiceManagementEmail>;
|
|
135018
|
+
};
|
|
135019
|
+
export declare type JiraServiceManagementEmailsConnection = {
|
|
135020
|
+
__typename?: 'JiraServiceManagementEmailsConnection';
|
|
135021
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementEmailEdge>>>;
|
|
135022
|
+
pageInfo?: Maybe<PageInfo>;
|
|
135023
|
+
};
|
|
133578
135024
|
export declare type JiraServiceManagementEntitledEntity = JiraServiceManagementEntitlementCustomer | JiraServiceManagementEntitlementOrganization;
|
|
133579
135025
|
export declare type JiraServiceManagementEntitlement = Node & {
|
|
133580
135026
|
__typename?: 'JiraServiceManagementEntitlement';
|
|
@@ -136436,6 +137882,7 @@ export declare type JiraTeamView = {
|
|
|
136436
137882
|
jiraIncludesYou?: Maybe<Scalars['Boolean']['output']>;
|
|
136437
137883
|
jiraMemberCount?: Maybe<Scalars['Int']['output']>;
|
|
136438
137884
|
jiraSuppliedAvatar?: Maybe<JiraAvatar>;
|
|
137885
|
+
jiraSuppliedDescription?: Maybe<Scalars['String']['output']>;
|
|
136439
137886
|
jiraSuppliedId: Scalars['ID']['output'];
|
|
136440
137887
|
jiraSuppliedIsVerified?: Maybe<Scalars['Boolean']['output']>;
|
|
136441
137888
|
jiraSuppliedName?: Maybe<Scalars['String']['output']>;
|
|
@@ -136854,6 +138301,7 @@ export declare type JiraTrackRecentProjectPayload = Payload & {
|
|
|
136854
138301
|
};
|
|
136855
138302
|
export declare type JiraTransition = Node & {
|
|
136856
138303
|
__typename?: 'JiraTransition';
|
|
138304
|
+
agentRules?: Maybe<Array<JiraTransitionAgentRule>>;
|
|
136857
138305
|
from?: Maybe<Array<JiraStatus>>;
|
|
136858
138306
|
hasPreConditions?: Maybe<Scalars['Boolean']['output']>;
|
|
136859
138307
|
hasScreen?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -136871,6 +138319,11 @@ export declare type JiraTransitionAgent = {
|
|
|
136871
138319
|
accountId: Scalars['ID']['output'];
|
|
136872
138320
|
agent?: Maybe<User>;
|
|
136873
138321
|
};
|
|
138322
|
+
export declare type JiraTransitionAgentRule = {
|
|
138323
|
+
__typename?: 'JiraTransitionAgentRule';
|
|
138324
|
+
agent: JiraTransitionAgent;
|
|
138325
|
+
promptValue?: Maybe<Scalars['String']['output']>;
|
|
138326
|
+
};
|
|
136874
138327
|
export declare type JiraTransitionConnection = {
|
|
136875
138328
|
__typename?: 'JiraTransitionConnection';
|
|
136876
138329
|
edges?: Maybe<Array<Maybe<JiraTransitionEdge>>>;
|
|
@@ -137016,6 +138469,25 @@ export declare type JiraUpdateBackgroundInput = {
|
|
|
137016
138469
|
dominantColor?: InputMaybe<Scalars['String']['input']>;
|
|
137017
138470
|
entityId: Scalars['ID']['input'];
|
|
137018
138471
|
};
|
|
138472
|
+
export declare type JiraUpdateBoardViewStatusColumnAgentInput = {
|
|
138473
|
+
agentAccountId: Scalars['ID']['input'];
|
|
138474
|
+
agentPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
138475
|
+
columnId: Scalars['ID']['input'];
|
|
138476
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
138477
|
+
transitionsToAdd?: InputMaybe<Array<JiraUpdateBoardViewStatusColumnAgentTransitionInput>>;
|
|
138478
|
+
transitionsToRemove?: InputMaybe<Array<JiraUpdateBoardViewStatusColumnAgentTransitionInput>>;
|
|
138479
|
+
};
|
|
138480
|
+
export declare type JiraUpdateBoardViewStatusColumnAgentPayload = {
|
|
138481
|
+
__typename?: 'JiraUpdateBoardViewStatusColumnAgentPayload';
|
|
138482
|
+
boardView?: Maybe<JiraBoardView>;
|
|
138483
|
+
column?: Maybe<JiraBoardViewStatusColumn>;
|
|
138484
|
+
errors?: Maybe<Array<MutationError>>;
|
|
138485
|
+
success: Scalars['Boolean']['output'];
|
|
138486
|
+
};
|
|
138487
|
+
export declare type JiraUpdateBoardViewStatusColumnAgentTransitionInput = {
|
|
138488
|
+
transitionId: Scalars['ID']['input'];
|
|
138489
|
+
workflowId: Scalars['ID']['input'];
|
|
138490
|
+
};
|
|
137019
138491
|
export declare type JiraUpdateCalendarViewConfigInput = {
|
|
137020
138492
|
overrides?: InputMaybe<JiraCalendarViewSettings>;
|
|
137021
138493
|
settings?: InputMaybe<JiraCalendarViewSettings>;
|
|
@@ -140015,6 +141487,7 @@ export declare type JsmChannelsConditionNode = JsmChannelsPlanNode & {
|
|
|
140015
141487
|
nodeType: JsmChannelsPlanNodeType;
|
|
140016
141488
|
};
|
|
140017
141489
|
export declare enum JsmChannelsConnectionType {
|
|
141490
|
+
Entra = "ENTRA",
|
|
140018
141491
|
Identitynow = "IDENTITYNOW",
|
|
140019
141492
|
Intune = "INTUNE",
|
|
140020
141493
|
Okta = "OKTA",
|
|
@@ -140119,6 +141592,12 @@ export declare type JsmChannelsJqlEnablementRuleInput = {
|
|
|
140119
141592
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
140120
141593
|
priority: Scalars['Int']['input'];
|
|
140121
141594
|
};
|
|
141595
|
+
export declare type JsmChannelsMsEntraTaskAgentConfiguration = {
|
|
141596
|
+
__typename?: 'JsmChannelsMsEntraTaskAgentConfiguration';
|
|
141597
|
+
accountId: Scalars['String']['output'];
|
|
141598
|
+
serviceKey: Scalars['String']['output'];
|
|
141599
|
+
tenantId: Scalars['String']['output'];
|
|
141600
|
+
};
|
|
140122
141601
|
export declare type JsmChannelsMsIntuneTaskAgentConfiguration = {
|
|
140123
141602
|
__typename?: 'JsmChannelsMsIntuneTaskAgentConfiguration';
|
|
140124
141603
|
accountId: Scalars['String']['output'];
|
|
@@ -140390,7 +141869,7 @@ export declare type JsmChannelsTaskAgent = {
|
|
|
140390
141869
|
displayName: Scalars['String']['output'];
|
|
140391
141870
|
status: JsmChannelsTaskAgentStatus;
|
|
140392
141871
|
};
|
|
140393
|
-
export declare type JsmChannelsTaskAgentConfigurationDetails = JsmChannelsIdentityNowTaskAgentConfiguration | JsmChannelsMsIntuneTaskAgentConfiguration | JsmChannelsOktaTaskAgentConfiguration | JsmChannelsSalesforceTaskAgentConfiguration;
|
|
141872
|
+
export declare type JsmChannelsTaskAgentConfigurationDetails = JsmChannelsIdentityNowTaskAgentConfiguration | JsmChannelsMsEntraTaskAgentConfiguration | JsmChannelsMsIntuneTaskAgentConfiguration | JsmChannelsOktaTaskAgentConfiguration | JsmChannelsSalesforceTaskAgentConfiguration;
|
|
140394
141873
|
export declare type JsmChannelsTaskAgentConfigurationInput = {
|
|
140395
141874
|
configuration?: InputMaybe<Scalars['JSON']['input']>;
|
|
140396
141875
|
status: JsmChannelsTaskAgentStatus;
|
|
@@ -141532,6 +143011,7 @@ export declare type KitsuneChunk = Node & {
|
|
|
141532
143011
|
content?: Maybe<Scalars['String']['output']>;
|
|
141533
143012
|
feedbackId: Scalars['ID']['output'];
|
|
141534
143013
|
id: Scalars['ID']['output'];
|
|
143014
|
+
index: Scalars['Int']['output'];
|
|
141535
143015
|
};
|
|
141536
143016
|
export declare type KitsuneChunkConnection = KitsuneConnection & {
|
|
141537
143017
|
__typename?: 'KitsuneChunkConnection';
|
|
@@ -141743,6 +143223,7 @@ export declare enum KitsuneFieldType {
|
|
|
141743
143223
|
Creator = "CREATOR",
|
|
141744
143224
|
Custom = "CUSTOM",
|
|
141745
143225
|
Customer = "CUSTOMER",
|
|
143226
|
+
Idea = "IDEA",
|
|
141746
143227
|
Parent = "PARENT",
|
|
141747
143228
|
Reporter = "REPORTER",
|
|
141748
143229
|
SourceCategory = "SOURCE_CATEGORY"
|
|
@@ -142292,10 +143773,6 @@ export declare enum KitsuneViewType {
|
|
|
142292
143773
|
List = "LIST",
|
|
142293
143774
|
Table = "TABLE"
|
|
142294
143775
|
}
|
|
142295
|
-
export declare type KitsuneWorkspaceIdentifierInput = {
|
|
142296
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
142297
|
-
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
142298
|
-
};
|
|
142299
143776
|
export declare type KnowledgeBaseAccessibleLinkedSourceResult = {
|
|
142300
143777
|
__typename?: 'KnowledgeBaseAccessibleLinkedSourceResult';
|
|
142301
143778
|
sourceARI?: Maybe<Scalars['ID']['output']>;
|
|
@@ -142324,6 +143801,11 @@ export declare type KnowledgeBaseAgentArticleSearchInput = {
|
|
|
142324
143801
|
sortOrder?: InputMaybe<KnowledgeBaseArticleSearchSortOrder>;
|
|
142325
143802
|
};
|
|
142326
143803
|
export declare type KnowledgeBaseAgentArticleSearchResponse = KnowledgeBaseAgentArticleSearchConnection | QueryError;
|
|
143804
|
+
export declare enum KnowledgeBaseAppSource {
|
|
143805
|
+
Confluence = "CONFLUENCE",
|
|
143806
|
+
GoogleDrive = "GOOGLE_DRIVE",
|
|
143807
|
+
Sharepoint = "SHAREPOINT"
|
|
143808
|
+
}
|
|
142327
143809
|
export declare type KnowledgeBaseArticle = {
|
|
142328
143810
|
__typename?: 'KnowledgeBaseArticle';
|
|
142329
143811
|
id: Scalars['ID']['output'];
|
|
@@ -142514,6 +143996,7 @@ export declare type KnowledgeBaseQueryApiKnowledgeBaseArgs = {
|
|
|
142514
143996
|
};
|
|
142515
143997
|
export declare type KnowledgeBaseResponse = KnowledgeBaseSources | QueryError;
|
|
142516
143998
|
export declare type KnowledgeBaseSearchFiltersInput = {
|
|
143999
|
+
knowledgeBaseAppSources?: InputMaybe<Array<KnowledgeBaseAppSource>>;
|
|
142517
144000
|
sourceContainers?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
142518
144001
|
sourceVisibility?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
142519
144002
|
sources?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -144501,6 +145984,33 @@ export declare type LoomWorkspace = Node & {
|
|
|
144501
145984
|
name?: Maybe<Scalars['String']['output']>;
|
|
144502
145985
|
type: Scalars['String']['output'];
|
|
144503
145986
|
};
|
|
145987
|
+
export declare type LoopComment = {
|
|
145988
|
+
commentText?: Maybe<Scalars['String']['output']>;
|
|
145989
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
145990
|
+
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
145991
|
+
creator?: Maybe<User>;
|
|
145992
|
+
editDate?: Maybe<Scalars['DateTime']['output']>;
|
|
145993
|
+
id: Scalars['ID']['output'];
|
|
145994
|
+
parentComment?: Maybe<LoopComment>;
|
|
145995
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
145996
|
+
replies?: Maybe<LoopCommentConnection>;
|
|
145997
|
+
};
|
|
145998
|
+
export declare type LoopCommentRepliesArgs = {
|
|
145999
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
146000
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
146001
|
+
sort?: InputMaybe<Scalars['String']['input']>;
|
|
146002
|
+
};
|
|
146003
|
+
export declare type LoopCommentConnection = {
|
|
146004
|
+
__typename?: 'LoopCommentConnection';
|
|
146005
|
+
edges?: Maybe<Array<LoopCommentEdge>>;
|
|
146006
|
+
pageInfo: PageInfo;
|
|
146007
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
146008
|
+
};
|
|
146009
|
+
export declare type LoopCommentEdge = {
|
|
146010
|
+
__typename?: 'LoopCommentEdge';
|
|
146011
|
+
cursor: Scalars['String']['output'];
|
|
146012
|
+
node?: Maybe<LoopComment>;
|
|
146013
|
+
};
|
|
144504
146014
|
export declare type LpCertSort = {
|
|
144505
146015
|
sortDirection?: InputMaybe<SortDirection>;
|
|
144506
146016
|
sortField?: InputMaybe<LpCertSortField>;
|
|
@@ -147814,16 +149324,29 @@ export declare type MarketplaceStoreInstalledAppManageLinks = {
|
|
|
147814
149324
|
getStartedUrl?: Maybe<MarketplaceStoreInstalledAppManageLink>;
|
|
147815
149325
|
manageAppUrl?: Maybe<MarketplaceStoreInstalledAppManageLink>;
|
|
147816
149326
|
};
|
|
149327
|
+
export declare type MarketplaceStoreLayoutPartnerHeroSection = MarketplaceStoreLayoutSection & {
|
|
149328
|
+
__typename?: 'MarketplaceStoreLayoutPartnerHeroSection';
|
|
149329
|
+
appCount?: Maybe<Scalars['Int']['output']>;
|
|
149330
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
149331
|
+
key: MarketplaceStoreLayoutSectionKeys;
|
|
149332
|
+
partnerDescription: Scalars['String']['output'];
|
|
149333
|
+
partnerLogoUrl?: Maybe<MarketplaceStoreImageUrlVariants>;
|
|
149334
|
+
partnerName: Scalars['String']['output'];
|
|
149335
|
+
title: Scalars['String']['output'];
|
|
149336
|
+
totalInstalls?: Maybe<Scalars['Int']['output']>;
|
|
149337
|
+
};
|
|
147817
149338
|
export declare type MarketplaceStoreLayoutRegularSection = MarketplaceStoreLayoutSection & {
|
|
147818
149339
|
__typename?: 'MarketplaceStoreLayoutRegularSection';
|
|
147819
149340
|
backgroundImageUrl?: Maybe<MarketplaceStoreImageUrlVariants>;
|
|
147820
149341
|
description?: Maybe<Scalars['String']['output']>;
|
|
147821
149342
|
key: MarketplaceStoreLayoutSectionKeys;
|
|
147822
149343
|
leftImageUrl?: Maybe<MarketplaceStoreImageUrlVariants>;
|
|
149344
|
+
navigationLabel?: Maybe<Scalars['String']['output']>;
|
|
147823
149345
|
navigationUrl?: Maybe<Scalars['String']['output']>;
|
|
147824
149346
|
objectsFetchCount?: Maybe<Scalars['Int']['output']>;
|
|
147825
149347
|
rightImageUrl?: Maybe<MarketplaceStoreImageUrlVariants>;
|
|
147826
149348
|
searchMetadata?: Maybe<MarketplaceStoreSearchMetadata>;
|
|
149349
|
+
sectionMetadata?: Maybe<MarketplaceStoreRecommendationsMetadata>;
|
|
147827
149350
|
title: Scalars['String']['output'];
|
|
147828
149351
|
type: MarketplaceStoreLayoutSectionType;
|
|
147829
149352
|
widgets?: Maybe<Array<Maybe<MarketplaceStoreLayoutWidget>>>;
|
|
@@ -147842,8 +149365,12 @@ export declare enum MarketplaceStoreLayoutSectionKeys {
|
|
|
147842
149365
|
ExploreObjects = "EXPLORE_OBJECTS",
|
|
147843
149366
|
Hero = "HERO",
|
|
147844
149367
|
NewestAiApps = "NEWEST_AI_APPS",
|
|
149368
|
+
PartnerCredentials = "PARTNER_CREDENTIALS",
|
|
149369
|
+
PartnerHero = "PARTNER_HERO",
|
|
149370
|
+
PartnerSidebar = "PARTNER_SIDEBAR",
|
|
147845
149371
|
PickupWhereYouLeft = "PICKUP_WHERE_YOU_LEFT",
|
|
147846
149372
|
ProductHero = "PRODUCT_HERO",
|
|
149373
|
+
RecommendationsFallback = "RECOMMENDATIONS_FALLBACK",
|
|
147847
149374
|
RecommendedForYou = "RECOMMENDED_FOR_YOU",
|
|
147848
149375
|
Spotlight = "SPOTLIGHT",
|
|
147849
149376
|
Statistics = "STATISTICS",
|
|
@@ -148132,6 +149659,7 @@ export declare type MarketplaceStorePersonalisationContextInput = {
|
|
|
148132
149659
|
export declare enum MarketplaceStorePersonalisationTargetSurface {
|
|
148133
149660
|
StoreCategory = "STORE_CATEGORY",
|
|
148134
149661
|
StoreCollection = "STORE_COLLECTION",
|
|
149662
|
+
StorePartnerProfile = "STORE_PARTNER_PROFILE",
|
|
148135
149663
|
StoreProduct = "STORE_PRODUCT",
|
|
148136
149664
|
UnifiedStore = "UNIFIED_STORE"
|
|
148137
149665
|
}
|
|
@@ -148300,6 +149828,7 @@ export declare enum MarketplaceStoreProductTagType {
|
|
|
148300
149828
|
Keywords = "KEYWORDS"
|
|
148301
149829
|
}
|
|
148302
149830
|
export declare enum MarketplaceStoreProductType {
|
|
149831
|
+
Chat = "CHAT",
|
|
148303
149832
|
Compass = "COMPASS",
|
|
148304
149833
|
Confluence = "CONFLUENCE",
|
|
148305
149834
|
Goal = "GOAL",
|
|
@@ -149367,7 +150896,7 @@ export declare type MercuryChangeProposalActivityHistoryConnection = {
|
|
|
149367
150896
|
pageInfo: PageInfo;
|
|
149368
150897
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
149369
150898
|
};
|
|
149370
|
-
export declare type MercuryChangeProposalActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraAlignAggProject | JiraIssue | TownsquareGoal | TownsquareProject | TownsquareTag;
|
|
150899
|
+
export declare type MercuryChangeProposalActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraAlignAggProject | JiraIssue | MercuryFocusArea | TownsquareGoal | TownsquareProject | TownsquareTag;
|
|
149371
150900
|
export declare type MercuryChangeProposalActivityHistoryEdge = {
|
|
149372
150901
|
__typename?: 'MercuryChangeProposalActivityHistoryEdge';
|
|
149373
150902
|
cursor: Scalars['String']['output'];
|
|
@@ -154568,7 +156097,7 @@ export declare type MercuryRiskActivityHistoryConnection = {
|
|
|
154568
156097
|
pageInfo: PageInfo;
|
|
154569
156098
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
154570
156099
|
};
|
|
154571
|
-
export declare type MercuryRiskActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraAlignAggProject | MercuryFocusArea;
|
|
156100
|
+
export declare type MercuryRiskActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraAlignAggProject | MercuryFocusArea | MercuryOrganization;
|
|
154572
156101
|
export declare type MercuryRiskActivityHistoryEdge = {
|
|
154573
156102
|
__typename?: 'MercuryRiskActivityHistoryEdge';
|
|
154574
156103
|
cursor: Scalars['String']['output'];
|
|
@@ -156801,9 +158330,9 @@ export declare type Mutation = {
|
|
|
156801
158330
|
agentWorkspace_createDraftedRoutingTableEntries?: Maybe<AgentWorkspaceCreateDraftedRoutingTableEntriesPayload>;
|
|
156802
158331
|
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
156803
158332
|
agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
|
|
156804
|
-
agentWorkspace_deleteCoverShift?: Maybe<AgentWorkspaceDeleteCoverShiftPayload>;
|
|
156805
158333
|
agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
|
|
156806
158334
|
agentWorkspace_deleteShift?: Maybe<AgentWorkspaceDeleteShiftPayload>;
|
|
158335
|
+
agentWorkspace_discardDraftedRoutingTable?: Maybe<AgentWorkspaceDiscardDraftedRoutingTablePayload>;
|
|
156807
158336
|
agentWorkspace_editCoverShift?: Maybe<AgentWorkspaceEditCoverShiftPayload>;
|
|
156808
158337
|
agentWorkspace_editShift?: Maybe<AgentWorkspaceEditShiftPayload>;
|
|
156809
158338
|
agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
@@ -156832,6 +158361,7 @@ export declare type Mutation = {
|
|
|
156832
158361
|
aiManagedObject_deleteAiManagedObject?: Maybe<Scalars['Boolean']['output']>;
|
|
156833
158362
|
aiManagedObject_execute?: Maybe<AiManagedObjectExecutionResult>;
|
|
156834
158363
|
aiManagedObject_updateAiManagedObject?: Maybe<AiManagedObject>;
|
|
158364
|
+
aiops_terminateInvestigation?: Maybe<AiOpsInvestigation>;
|
|
156835
158365
|
aiops_triggerInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
|
|
156836
158366
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
156837
158367
|
appStorage?: Maybe<AppStorageMutation>;
|
|
@@ -156928,6 +158458,7 @@ export declare type Mutation = {
|
|
|
156928
158458
|
assetsVertical_updateRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentsMutationPayload>;
|
|
156929
158459
|
assetsVertical_updateVerticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationPayload>;
|
|
156930
158460
|
assetsVertical_updateVerticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryPayload>;
|
|
158461
|
+
assetsVertical_workbenchDashboardTryUpgrade?: Maybe<AssetsVerticalWorkbenchDashboardTryUpgradePayload>;
|
|
156931
158462
|
assets_addExternalReferenceTypeAttributeValue?: Maybe<Array<Maybe<AssetsExternalReferenceTypeAttributeOnObject>>>;
|
|
156932
158463
|
assets_deleteExternalReferenceTypeAttributeValue?: Maybe<Array<Maybe<AssetsExternalReferenceTypeAttributeOnObject>>>;
|
|
156933
158464
|
assets_updateObjectAttributeValue?: Maybe<AssetsAttributeOnObject>;
|
|
@@ -157180,6 +158711,7 @@ export declare type Mutation = {
|
|
|
157180
158711
|
contactAdmin?: Maybe<GraphQlContactAdminStatus>;
|
|
157181
158712
|
convertPageToLiveEditAction?: Maybe<ConvertPageToLiveEditActionPayload>;
|
|
157182
158713
|
convertToFolder?: Maybe<ConfluenceConvertContentToFolderPayload>;
|
|
158714
|
+
convoAi_cancelConversation?: Maybe<ConvoAiUpdateConversationStatePayload>;
|
|
157183
158715
|
convoAi_completeConversation?: Maybe<ConvoAiUpdateConversationStatePayload>;
|
|
157184
158716
|
convoAi_deleteAgentSession?: Maybe<ConvoAiDeleteAgentSessionPayload>;
|
|
157185
158717
|
copyDefaultSpacePermissions?: Maybe<CopySpacePermissionsPayload>;
|
|
@@ -157499,6 +159031,8 @@ export declare type Mutation = {
|
|
|
157499
159031
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
157500
159032
|
jiraOpenBeta_createFeature?: Maybe<JiraOpenBetaFeatureCreatePayload>;
|
|
157501
159033
|
jiraOpenBeta_updateFeature?: Maybe<JiraOpenBetaFeatureUpdatePayload>;
|
|
159034
|
+
jira_acceptAgentContextItem?: Maybe<JiraAcceptAgentContextItemPayload>;
|
|
159035
|
+
jira_addAgentContextItem?: Maybe<JiraAddAgentContextItemPayload>;
|
|
157502
159036
|
jira_addAgentToBoardViewStatusColumn?: Maybe<JiraAddAgentToBoardViewStatusColumnPayload>;
|
|
157503
159037
|
jira_addFieldsToFieldScheme?: Maybe<JiraAddFieldsToFieldSchemePayload>;
|
|
157504
159038
|
jira_addTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
|
|
@@ -157529,6 +159063,7 @@ export declare type Mutation = {
|
|
|
157529
159063
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
157530
159064
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
157531
159065
|
jira_discardUserTimelineViewConfig?: Maybe<JiraDiscardUserTimelineViewConfigPayload>;
|
|
159066
|
+
jira_dismissAgentContextItem?: Maybe<JiraDismissAgentContextItemPayload>;
|
|
157532
159067
|
jira_dismissAiAgentSession?: Maybe<JiraDismissAiAgentSessionPayload>;
|
|
157533
159068
|
jira_dragAndDropBoardViewIssue?: Maybe<JiraDragAndDropBoardViewIssuePayload>;
|
|
157534
159069
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
@@ -157549,6 +159084,7 @@ export declare type Mutation = {
|
|
|
157549
159084
|
jira_renameProjectLevelSidebarMenuItem?: Maybe<JiraRenameProjectLevelSidebarMenuItemPayload>;
|
|
157550
159085
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
157551
159086
|
jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
|
|
159087
|
+
jira_resetAgentContext?: Maybe<JiraResetAgentContextPayload>;
|
|
157552
159088
|
jira_resetFavicon?: Maybe<JiraResetFaviconPayload>;
|
|
157553
159089
|
jira_resetLogo?: Maybe<JiraResetLogoPayload>;
|
|
157554
159090
|
jira_restoreCustomFields?: Maybe<JiraRestoreCustomFieldsPayload>;
|
|
@@ -157619,6 +159155,7 @@ export declare type Mutation = {
|
|
|
157619
159155
|
jira_trashCustomFields?: Maybe<JiraTrashCustomFieldsPayload>;
|
|
157620
159156
|
jira_trashGlobalCustomFields?: Maybe<JiraTrashGlobalCustomFieldsPayload>;
|
|
157621
159157
|
jira_unarchiveIssue?: Maybe<JiraIssueUnarchivePayload>;
|
|
159158
|
+
jira_updateBoardViewStatusColumnAgent?: Maybe<JiraUpdateBoardViewStatusColumnAgentPayload>;
|
|
157622
159159
|
jira_updateCustomField?: Maybe<JiraUpdateCustomFieldPayload>;
|
|
157623
159160
|
jira_updateCustomFieldDefaultContextOptions?: Maybe<JiraUpdateCustomFieldDefaultContextOptionsPayload>;
|
|
157624
159161
|
jira_updateCustomFields?: Maybe<JiraUpdateCustomFieldsPayload>;
|
|
@@ -157688,6 +159225,7 @@ export declare type Mutation = {
|
|
|
157688
159225
|
kitsune_syncCustomerFields?: Maybe<KitsuneJob>;
|
|
157689
159226
|
kitsune_syncCustomers?: Maybe<KitsuneJob>;
|
|
157690
159227
|
kitsune_updateCustomer?: Maybe<KitsuneCustomer>;
|
|
159228
|
+
kitsune_updateCustomerField?: Maybe<KitsuneCustomerCustomField>;
|
|
157691
159229
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
157692
159230
|
kitsune_updateField?: Maybe<KitsuneField>;
|
|
157693
159231
|
kitsune_updateInsight?: Maybe<KitsuneInsight>;
|
|
@@ -157803,6 +159341,7 @@ export declare type Mutation = {
|
|
|
157803
159341
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
157804
159342
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
157805
159343
|
radar_clearFocusAreaProposals?: Maybe<RadarMutationResponse>;
|
|
159344
|
+
radar_createAiConnector?: Maybe<RadarAiConnector>;
|
|
157806
159345
|
radar_createCustomField?: Maybe<RadarMutationResponse>;
|
|
157807
159346
|
radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
157808
159347
|
radar_deleteConnector?: Maybe<RadarMutationResponse>;
|
|
@@ -157814,7 +159353,9 @@ export declare type Mutation = {
|
|
|
157814
159353
|
radar_deleteView?: Maybe<RadarView>;
|
|
157815
159354
|
radar_recordEntityViewed?: Maybe<RadarRecordEntityViewedResponse>;
|
|
157816
159355
|
radar_starEntities?: Maybe<Array<RadarStarredEntity>>;
|
|
159356
|
+
radar_syncAiConnector?: Maybe<RadarSyncHistory>;
|
|
157817
159357
|
radar_unstarEntities?: Maybe<Array<RadarStarredEntity>>;
|
|
159358
|
+
radar_updateAiConnector?: Maybe<RadarAiConnector>;
|
|
157818
159359
|
radar_updateConnector?: Maybe<RadarConnector>;
|
|
157819
159360
|
radar_updateFieldDefinitionSettings?: Maybe<RadarUpdateFieldDefinitionSettingsMutationResponse>;
|
|
157820
159361
|
radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
|
|
@@ -157921,6 +159462,7 @@ export declare type Mutation = {
|
|
|
157921
159462
|
spf_deleteView?: Maybe<SpfDeleteViewPayload>;
|
|
157922
159463
|
spf_grantEntityPermission?: Maybe<SpfGrantEntityPermissionPayload>;
|
|
157923
159464
|
spf_prioritizePlanScenarioInvestment?: Maybe<SpfPrioritizePlanScenarioInvestmentPayload>;
|
|
159465
|
+
spf_promoteWorkItemToImpactedWork?: Maybe<SpfUpsertAskPayload>;
|
|
157924
159466
|
spf_rejectProposedDate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
157925
159467
|
spf_removeConnectedWork?: Maybe<SpfAskConnectedWorkPayload>;
|
|
157926
159468
|
spf_removePlanApprover?: Maybe<SpfRemovePlanApproverPayload>;
|
|
@@ -158437,15 +159979,15 @@ export declare type MutationAgentWorkspace_CreateScheduleArgs = {
|
|
|
158437
159979
|
export declare type MutationAgentWorkspace_CreateSkillArgs = {
|
|
158438
159980
|
input: AgentWorkspaceSkillCreateInput;
|
|
158439
159981
|
};
|
|
158440
|
-
export declare type MutationAgentWorkspace_DeleteCoverShiftArgs = {
|
|
158441
|
-
input: AgentWorkspaceDeleteCoverShiftInput;
|
|
158442
|
-
};
|
|
158443
159982
|
export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
|
|
158444
159983
|
input: AgentWorkspaceDeleteScheduleInput;
|
|
158445
159984
|
};
|
|
158446
159985
|
export declare type MutationAgentWorkspace_DeleteShiftArgs = {
|
|
158447
159986
|
input: AgentWorkspaceDeleteShiftInput;
|
|
158448
159987
|
};
|
|
159988
|
+
export declare type MutationAgentWorkspace_DiscardDraftedRoutingTableArgs = {
|
|
159989
|
+
input: AgentWorkspaceDiscardDraftedRoutingTableInput;
|
|
159990
|
+
};
|
|
158449
159991
|
export declare type MutationAgentWorkspace_EditCoverShiftArgs = {
|
|
158450
159992
|
input: AgentWorkspaceEditCoverShiftInput;
|
|
158451
159993
|
};
|
|
@@ -158535,6 +160077,10 @@ export declare type MutationAiManagedObject_UpdateAiManagedObjectArgs = {
|
|
|
158535
160077
|
id: Scalars['ID']['input'];
|
|
158536
160078
|
input: AiManagedObjectUpdateInput;
|
|
158537
160079
|
};
|
|
160080
|
+
export declare type MutationAiops_TerminateInvestigationArgs = {
|
|
160081
|
+
cloudId: Scalars['ID']['input'];
|
|
160082
|
+
input: AiOpsTerminateInvestigationInput;
|
|
160083
|
+
};
|
|
158538
160084
|
export declare type MutationAiops_TriggerInvestigationArgs = {
|
|
158539
160085
|
cloudId: Scalars['ID']['input'];
|
|
158540
160086
|
input: AiOpsTriggerInvestigationInput;
|
|
@@ -158957,6 +160503,9 @@ export declare type MutationAssetsVertical_UpdateVerticalInstantiationArgs = {
|
|
|
158957
160503
|
export declare type MutationAssetsVertical_UpdateVerticalInstantiationCategoryArgs = {
|
|
158958
160504
|
input: AssetsVerticalUpdateVerticalInstantiationCategoryInput;
|
|
158959
160505
|
};
|
|
160506
|
+
export declare type MutationAssetsVertical_WorkbenchDashboardTryUpgradeArgs = {
|
|
160507
|
+
input: AssetsVerticalWorkbenchDashboardTryUpgradeInput;
|
|
160508
|
+
};
|
|
158960
160509
|
export declare type MutationAssets_AddExternalReferenceTypeAttributeValueArgs = {
|
|
158961
160510
|
externalReferences: Array<AssetsExternalReferenceInput>;
|
|
158962
160511
|
objectId: Scalars['ID']['input'];
|
|
@@ -159201,9 +160750,11 @@ export declare type MutationChangeManagement_UpdateRovoRiskAssessmentSettingsArg
|
|
|
159201
160750
|
export declare type MutationChannelPlatform_AssignAgentToContactArgs = {
|
|
159202
160751
|
aaId?: InputMaybe<Scalars['String']['input']>;
|
|
159203
160752
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
160753
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
159204
160754
|
};
|
|
159205
160755
|
export declare type MutationChannelPlatform_AttachMediaFileArgs = {
|
|
159206
160756
|
fileId: Scalars['String']['input'];
|
|
160757
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
159207
160758
|
issueId: Scalars['String']['input'];
|
|
159208
160759
|
};
|
|
159209
160760
|
export declare type MutationChannelPlatform_BotConversationArgs = {
|
|
@@ -159211,9 +160762,11 @@ export declare type MutationChannelPlatform_BotConversationArgs = {
|
|
|
159211
160762
|
};
|
|
159212
160763
|
export declare type MutationChannelPlatform_CreateAttendeeArgs = {
|
|
159213
160764
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
160765
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
159214
160766
|
};
|
|
159215
160767
|
export declare type MutationChannelPlatform_CreateMeetingDetailsArgs = {
|
|
159216
160768
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
160769
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
159217
160770
|
};
|
|
159218
160771
|
export declare type MutationChannelPlatform_CreateQueuesArgs = {
|
|
159219
160772
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -159232,10 +160785,12 @@ export declare type MutationChannelPlatform_InitiateOtpArgs = {
|
|
|
159232
160785
|
conversationId: Scalars['String']['input'];
|
|
159233
160786
|
};
|
|
159234
160787
|
export declare type MutationChannelPlatform_PerformPluginActionArgs = {
|
|
160788
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
159235
160789
|
pluginActionRequest?: InputMaybe<ChannelPlatformPluginActionRequest>;
|
|
159236
160790
|
};
|
|
159237
160791
|
export declare type MutationChannelPlatform_RelayMessageArgs = {
|
|
159238
160792
|
eventRelayRequest?: InputMaybe<ChannelPlatformEventRelayRequest>;
|
|
160793
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
159239
160794
|
};
|
|
159240
160795
|
export declare type MutationChannelPlatform_UpdateTracMetricsArgs = {
|
|
159241
160796
|
metrics: Scalars['JSON']['input'];
|
|
@@ -159869,6 +161424,10 @@ export declare type MutationConvertPageToLiveEditActionArgs = {
|
|
|
159869
161424
|
export declare type MutationConvertToFolderArgs = {
|
|
159870
161425
|
id: Scalars['ID']['input'];
|
|
159871
161426
|
};
|
|
161427
|
+
export declare type MutationConvoAi_CancelConversationArgs = {
|
|
161428
|
+
cloudId: Scalars['ID']['input'];
|
|
161429
|
+
conversationId: Scalars['ID']['input'];
|
|
161430
|
+
};
|
|
159872
161431
|
export declare type MutationConvoAi_CompleteConversationArgs = {
|
|
159873
161432
|
cloudId: Scalars['ID']['input'];
|
|
159874
161433
|
conversationId: Scalars['ID']['input'];
|
|
@@ -160897,6 +162456,14 @@ export declare type MutationJiraOpenBeta_UpdateFeatureArgs = {
|
|
|
160897
162456
|
cloudId: Scalars['ID']['input'];
|
|
160898
162457
|
input?: InputMaybe<JiraOpenBetaFeatureUpdateInput>;
|
|
160899
162458
|
};
|
|
162459
|
+
export declare type MutationJira_AcceptAgentContextItemArgs = {
|
|
162460
|
+
cloudId: Scalars['ID']['input'];
|
|
162461
|
+
input: JiraAcceptAgentContextItemInput;
|
|
162462
|
+
};
|
|
162463
|
+
export declare type MutationJira_AddAgentContextItemArgs = {
|
|
162464
|
+
cloudId: Scalars['ID']['input'];
|
|
162465
|
+
input: JiraAddAgentContextItemInput;
|
|
162466
|
+
};
|
|
160900
162467
|
export declare type MutationJira_AddAgentToBoardViewStatusColumnArgs = {
|
|
160901
162468
|
input: JiraAddAgentToBoardViewStatusColumnInput;
|
|
160902
162469
|
};
|
|
@@ -160995,6 +162562,10 @@ export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
|
160995
162562
|
export declare type MutationJira_DiscardUserTimelineViewConfigArgs = {
|
|
160996
162563
|
input: JiraDiscardUserTimelineViewConfigInput;
|
|
160997
162564
|
};
|
|
162565
|
+
export declare type MutationJira_DismissAgentContextItemArgs = {
|
|
162566
|
+
cloudId: Scalars['ID']['input'];
|
|
162567
|
+
input: JiraDismissAgentContextItemInput;
|
|
162568
|
+
};
|
|
160998
162569
|
export declare type MutationJira_DismissAiAgentSessionArgs = {
|
|
160999
162570
|
input?: InputMaybe<JiraDismissAiAgentSessionInput>;
|
|
161000
162571
|
};
|
|
@@ -161059,6 +162630,10 @@ export declare type MutationJira_ReorderBoardViewColumnArgs = {
|
|
|
161059
162630
|
export declare type MutationJira_ReorderProjectsSidebarMenuItemArgs = {
|
|
161060
162631
|
input: JiraReorderSidebarMenuItemInput;
|
|
161061
162632
|
};
|
|
162633
|
+
export declare type MutationJira_ResetAgentContextArgs = {
|
|
162634
|
+
cloudId: Scalars['ID']['input'];
|
|
162635
|
+
input: JiraResetAgentContextInput;
|
|
162636
|
+
};
|
|
161062
162637
|
export declare type MutationJira_ResetFaviconArgs = {
|
|
161063
162638
|
input: JiraResetFaviconInput;
|
|
161064
162639
|
};
|
|
@@ -161280,6 +162855,9 @@ export declare type MutationJira_TrashGlobalCustomFieldsArgs = {
|
|
|
161280
162855
|
export declare type MutationJira_UnarchiveIssueArgs = {
|
|
161281
162856
|
input: JiraIssueUnarchiveInput;
|
|
161282
162857
|
};
|
|
162858
|
+
export declare type MutationJira_UpdateBoardViewStatusColumnAgentArgs = {
|
|
162859
|
+
input: JiraUpdateBoardViewStatusColumnAgentInput;
|
|
162860
|
+
};
|
|
161283
162861
|
export declare type MutationJira_UpdateCustomFieldArgs = {
|
|
161284
162862
|
cloudId: Scalars['ID']['input'];
|
|
161285
162863
|
input: JiraUpdateCustomFieldInput;
|
|
@@ -161469,7 +163047,6 @@ export declare type MutationKitsune_CreateSnippetArgs = {
|
|
|
161469
163047
|
markId?: InputMaybe<Scalars['ID']['input']>;
|
|
161470
163048
|
};
|
|
161471
163049
|
export declare type MutationKitsune_CreateSpaceArgs = {
|
|
161472
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
161473
163050
|
name: Scalars['String']['input'];
|
|
161474
163051
|
workspaceAri: Scalars['ID']['input'];
|
|
161475
163052
|
};
|
|
@@ -161546,6 +163123,12 @@ export declare type MutationKitsune_UpdateCustomerArgs = {
|
|
|
161546
163123
|
ari: Scalars['ID']['input'];
|
|
161547
163124
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
161548
163125
|
};
|
|
163126
|
+
export declare type MutationKitsune_UpdateCustomerFieldArgs = {
|
|
163127
|
+
name: Scalars['String']['input'];
|
|
163128
|
+
newName: Scalars['String']['input'];
|
|
163129
|
+
options?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
163130
|
+
workspaceAri: Scalars['ID']['input'];
|
|
163131
|
+
};
|
|
161549
163132
|
export declare type MutationKitsune_UpdateFeedbackArgs = {
|
|
161550
163133
|
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
161551
163134
|
customerId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -161638,6 +163221,7 @@ export declare type MutationLoom_DeleteVideosArgs = {
|
|
|
161638
163221
|
ids: Array<Scalars['ID']['input']>;
|
|
161639
163222
|
};
|
|
161640
163223
|
export declare type MutationLoom_JoinWorkspaceArgs = {
|
|
163224
|
+
flowTraceId?: InputMaybe<Scalars['String']['input']>;
|
|
161641
163225
|
workspaceId: Scalars['String']['input'];
|
|
161642
163226
|
};
|
|
161643
163227
|
export declare type MutationLoom_SpaceCreateArgs = {
|
|
@@ -161891,6 +163475,10 @@ export declare type MutationRadar_ClearFocusAreaProposalsArgs = {
|
|
|
161891
163475
|
cloudId: Scalars['ID']['input'];
|
|
161892
163476
|
input: Array<RadarClearFocusAreaProposalInput>;
|
|
161893
163477
|
};
|
|
163478
|
+
export declare type MutationRadar_CreateAiConnectorArgs = {
|
|
163479
|
+
cloudId: Scalars['ID']['input'];
|
|
163480
|
+
input: RadarCreateAiConnectorInput;
|
|
163481
|
+
};
|
|
161894
163482
|
export declare type MutationRadar_CreateCustomFieldArgs = {
|
|
161895
163483
|
cloudId: Scalars['ID']['input'];
|
|
161896
163484
|
input: RadarCustomFieldInput;
|
|
@@ -161933,10 +163521,18 @@ export declare type MutationRadar_StarEntitiesArgs = {
|
|
|
161933
163521
|
cloudId: Scalars['ID']['input'];
|
|
161934
163522
|
ids: Array<Scalars['ID']['input']>;
|
|
161935
163523
|
};
|
|
163524
|
+
export declare type MutationRadar_SyncAiConnectorArgs = {
|
|
163525
|
+
cloudId: Scalars['ID']['input'];
|
|
163526
|
+
input: RadarSyncAiConnectorInput;
|
|
163527
|
+
};
|
|
161936
163528
|
export declare type MutationRadar_UnstarEntitiesArgs = {
|
|
161937
163529
|
cloudId: Scalars['ID']['input'];
|
|
161938
163530
|
ids: Array<Scalars['ID']['input']>;
|
|
161939
163531
|
};
|
|
163532
|
+
export declare type MutationRadar_UpdateAiConnectorArgs = {
|
|
163533
|
+
cloudId: Scalars['ID']['input'];
|
|
163534
|
+
input: RadarUpdateAiConnectorInput;
|
|
163535
|
+
};
|
|
161940
163536
|
export declare type MutationRadar_UpdateConnectorArgs = {
|
|
161941
163537
|
cloudId: Scalars['ID']['input'];
|
|
161942
163538
|
input: RadarConnectorsInput;
|
|
@@ -162281,6 +163877,9 @@ export declare type MutationSpf_GrantEntityPermissionArgs = {
|
|
|
162281
163877
|
export declare type MutationSpf_PrioritizePlanScenarioInvestmentArgs = {
|
|
162282
163878
|
input: SpfPrioritizePlanScenarioInvestmentInput;
|
|
162283
163879
|
};
|
|
163880
|
+
export declare type MutationSpf_PromoteWorkItemToImpactedWorkArgs = {
|
|
163881
|
+
input: SpfPromoteWorkItemToImpactedWorkInput;
|
|
163882
|
+
};
|
|
162284
163883
|
export declare type MutationSpf_RejectProposedDateArgs = {
|
|
162285
163884
|
input: SpfResolveProposedDateInput;
|
|
162286
163885
|
};
|
|
@@ -165173,6 +166772,7 @@ export declare type PolarisView = {
|
|
|
165173
166772
|
global: Scalars['Boolean']['output'];
|
|
165174
166773
|
globalViewUuid?: Maybe<Scalars['ID']['output']>;
|
|
165175
166774
|
groupBy?: Maybe<PolarisIdeaField>;
|
|
166775
|
+
groupOrder?: Maybe<Scalars['String']['output']>;
|
|
165176
166776
|
groupValues?: Maybe<Array<PolarisGroupValue>>;
|
|
165177
166777
|
groupsFilter?: Maybe<Array<PolarisViewFilter>>;
|
|
165178
166778
|
hidden?: Maybe<Array<PolarisIdeaField>>;
|
|
@@ -165200,6 +166800,7 @@ export declare type PolarisView = {
|
|
|
165200
166800
|
userJql?: Maybe<Scalars['String']['output']>;
|
|
165201
166801
|
uuid: Scalars['ID']['output'];
|
|
165202
166802
|
verticalGroupBy?: Maybe<PolarisIdeaField>;
|
|
166803
|
+
verticalGroupOrder?: Maybe<Scalars['String']['output']>;
|
|
165203
166804
|
verticalGroupValues?: Maybe<Array<PolarisGroupValue>>;
|
|
165204
166805
|
verticalGroupsFilter?: Maybe<Array<PolarisViewFilter>>;
|
|
165205
166806
|
viewSetId: Scalars['ID']['output'];
|
|
@@ -166001,7 +167602,7 @@ export declare type Query = {
|
|
|
166001
167602
|
agentWorkspace_bulkScheduleImportJob?: Maybe<AgentWorkspaceBulkImportJob>;
|
|
166002
167603
|
agentWorkspace_capacity?: Maybe<AgentWorkspaceCapacityConnection>;
|
|
166003
167604
|
agentWorkspace_capacitySummary?: Maybe<AgentWorkspaceCapacitySummary>;
|
|
166004
|
-
agentWorkspace_categorySkillsInProject?: Maybe<
|
|
167605
|
+
agentWorkspace_categorySkillsInProject?: Maybe<AgentWorkspaceProjectSkillConnection>;
|
|
166005
167606
|
agentWorkspace_clusterServiceCategories?: Maybe<AgentWorkspaceServiceClusteringResult>;
|
|
166006
167607
|
agentWorkspace_coverShiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
|
|
166007
167608
|
agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
|
|
@@ -166012,7 +167613,6 @@ export declare type Query = {
|
|
|
166012
167613
|
agentWorkspace_projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
|
|
166013
167614
|
agentWorkspace_projectRoutingHistory?: Maybe<AgentWorkspaceProjectRoutingHistory>;
|
|
166014
167615
|
agentWorkspace_recommendedAgentsForCoverageGap?: Maybe<AgentWorkspaceRecommendedAgentsForCoverageGapPayload>;
|
|
166015
|
-
agentWorkspace_recommendedAgentsForGap?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
166016
167616
|
agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
|
|
166017
167617
|
agentWorkspace_routingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
166018
167618
|
agentWorkspace_routingTableGenerationStatus?: Maybe<AgentWorkspaceRoutingTableGeneration>;
|
|
@@ -166032,6 +167632,7 @@ export declare type Query = {
|
|
|
166032
167632
|
agentWorkspace_teamRebalancingSummaries?: Maybe<Array<AgentWorkspaceTeamRebalancingSummary>>;
|
|
166033
167633
|
agentWorkspace_teamSchedules?: Maybe<AgentWorkspaceTeamSchedulesConnection>;
|
|
166034
167634
|
agentWorkspace_teamsMappedToProject?: Maybe<AgentWorkspaceTeamConnection>;
|
|
167635
|
+
agentWorkspace_utilizationForPendingChanges?: Maybe<Array<AgentWorkspaceAgentUtilizationForPendingChanges>>;
|
|
166035
167636
|
agent_sessionAssociationQuery?: Maybe<AgentSessionAssociationConnection>;
|
|
166036
167637
|
agent_sessionQuery?: Maybe<AgentSessionConnection>;
|
|
166037
167638
|
aiCoreApi_fetchRsaEmployeeTickets?: Maybe<AiCoreApiRsaEmployeeTicketsResult>;
|
|
@@ -166128,6 +167729,7 @@ export declare type Query = {
|
|
|
166128
167729
|
assetsDM_objectsListDataRows?: Maybe<AssetsDmObjectsListDataRows>;
|
|
166129
167730
|
assetsDM_objectsListDownload?: Maybe<AssetsDmObjectsListDownloadResponse>;
|
|
166130
167731
|
assetsDM_objectsReportAttributeByDs?: Maybe<AssetsDmObjectsReportAttributeByDs>;
|
|
167732
|
+
assetsDM_objectsReportAttributePie?: Maybe<AssetsDmObjectsReportAttributePie>;
|
|
166131
167733
|
assetsDM_objectsReportDsByDs?: Maybe<AssetsDmObjectsReportDsByDs>;
|
|
166132
167734
|
assetsDM_objectsReportDsOverlap?: Maybe<AssetsDmObjectsReportDsOverlap>;
|
|
166133
167735
|
assetsDM_paginatedIssues?: Maybe<AssetsDmComputedIssuesPagination>;
|
|
@@ -166171,6 +167773,7 @@ export declare type Query = {
|
|
|
166171
167773
|
assetsVertical_verticalRoles?: Maybe<AssetsVerticalRolesResult>;
|
|
166172
167774
|
assetsVertical_verticalTemplate?: Maybe<AssetsVerticalVerticalTemplateResult>;
|
|
166173
167775
|
assetsVertical_verticalTemplateV2?: Maybe<AssetsVerticalVerticalTemplateV2Result>;
|
|
167776
|
+
assetsVertical_workbenchDashboardTemplateStatus?: Maybe<AssetsVerticalWorkbenchDashboardTemplateStatus>;
|
|
166174
167777
|
assets_bundle?: Maybe<AssetsBundleResult>;
|
|
166175
167778
|
assets_cdmObjectTypesDefinitions?: Maybe<Array<Maybe<AssetsCdmObjectTypeResult>>>;
|
|
166176
167779
|
assets_cdmSchemasDefinitions?: Maybe<Array<Maybe<AssetsCdmSchemaResult>>>;
|
|
@@ -166208,6 +167811,7 @@ export declare type Query = {
|
|
|
166208
167811
|
avp_getDashboardsByAris?: Maybe<Array<Maybe<AvpDashboard>>>;
|
|
166209
167812
|
avp_getDashboardsByStatus?: Maybe<AvpDashboardsConnection>;
|
|
166210
167813
|
avp_getFilterExpression?: Maybe<AvpFilterExpression>;
|
|
167814
|
+
avp_getJiraDashboardMigrationStatus?: Maybe<AvpJiraDashboardMigrationStatus>;
|
|
166211
167815
|
avp_getReadOnlyDashboard?: Maybe<AvpDashboard>;
|
|
166212
167816
|
avp_getRecentDashboards?: Maybe<Array<AvpRecentDashboard>>;
|
|
166213
167817
|
avp_getStarredDashboards?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -166427,6 +168031,7 @@ export declare type Query = {
|
|
|
166427
168031
|
confluence_reactedUsers?: Maybe<ConfluenceReactedUsersResponsePayload>;
|
|
166428
168032
|
confluence_reactionsSummary?: Maybe<ConfluenceReactionSummary>;
|
|
166429
168033
|
confluence_refreshMigrationMediaSession?: Maybe<ContentMediaSession>;
|
|
168034
|
+
confluence_remoteObjectSuggestionCount?: Maybe<Scalars['Int']['output']>;
|
|
166430
168035
|
confluence_resolvedSpaceKeyForContent?: Maybe<Scalars['String']['output']>;
|
|
166431
168036
|
confluence_rolesHubTransitionSteps?: Maybe<Array<Maybe<ConfluenceRolesHubTransitionStepState>>>;
|
|
166432
168037
|
confluence_search?: Maybe<ConfluenceSearchConnection>;
|
|
@@ -166547,6 +168152,7 @@ export declare type Query = {
|
|
|
166547
168152
|
csm_emailChannelConfiguration?: Maybe<CustomerServiceEmailChannelConfigQueryResult>;
|
|
166548
168153
|
csm_helpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataQueryResult>;
|
|
166549
168154
|
csm_liveChatAgent?: Maybe<CustomerServiceLiveChatAgentQueryResult>;
|
|
168155
|
+
csm_liveChatAgentByWorkerIdentity?: Maybe<CustomerServiceLiveChatAgentQueryResult>;
|
|
166550
168156
|
csm_liveChatAgents?: Maybe<CustomerServiceLiveChatAgentConnection>;
|
|
166551
168157
|
csm_liveChatSettings?: Maybe<CustomerServiceLiveChatSettingsQueryResult>;
|
|
166552
168158
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
@@ -166776,6 +168382,7 @@ export declare type Query = {
|
|
|
166776
168382
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
166777
168383
|
jiraReleases?: Maybe<JiraReleases>;
|
|
166778
168384
|
jiraServers?: Maybe<JiraServersResult>;
|
|
168385
|
+
jira_agentContextSources?: Maybe<JiraAgentContextItemConnection>;
|
|
166779
168386
|
jira_agentSessionsIsPlanModeEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
166780
168387
|
jira_backlog?: Maybe<JiraBacklog>;
|
|
166781
168388
|
jira_backlogView?: Maybe<JiraBacklogView>;
|
|
@@ -167055,6 +168662,8 @@ export declare type Query = {
|
|
|
167055
168662
|
pushNotificationSettings?: Maybe<ConfluencePushNotificationSettings>;
|
|
167056
168663
|
queuesprioritygroups_priorityGroups?: Maybe<QueuesPriorityGroupsResults>;
|
|
167057
168664
|
quickReload?: Maybe<QuickReload>;
|
|
168665
|
+
radar_aiConnectorById?: Maybe<RadarAiConnector>;
|
|
168666
|
+
radar_aiConnectors?: Maybe<RadarAiConnectorsConnection>;
|
|
167058
168667
|
radar_availableCustomFieldsFromLastSync?: Maybe<RadarAvailableCustomFieldsFromLastSync>;
|
|
167059
168668
|
radar_connectors?: Maybe<Array<RadarConnector>>;
|
|
167060
168669
|
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
@@ -167234,6 +168843,7 @@ export declare type Query = {
|
|
|
167234
168843
|
supportInquiry_channelsIdentityHash?: Maybe<Scalars['String']['output']>;
|
|
167235
168844
|
supportInquiry_channelsIdentityHashByClientName?: Maybe<Scalars['String']['output']>;
|
|
167236
168845
|
supportInquiry_userContext?: Maybe<SupportInquiryUserContext>;
|
|
168846
|
+
tags_getAssignedLabels?: Maybe<Array<TagsAssignedLabel>>;
|
|
167237
168847
|
tags_getLabelAssignments?: Maybe<Array<TagsLabelAssignment>>;
|
|
167238
168848
|
tags_getTag?: Maybe<TagsResponse>;
|
|
167239
168849
|
tags_getTagByNameKindOrg?: Maybe<TagsResponse>;
|
|
@@ -168052,9 +169662,6 @@ export declare type QueryAgentWorkspace_ProjectRoutingHistoryArgs = {
|
|
|
168052
169662
|
export declare type QueryAgentWorkspace_RecommendedAgentsForCoverageGapArgs = {
|
|
168053
169663
|
input: AgentWorkspaceRecommendedAgentsForCoverageGapInput;
|
|
168054
169664
|
};
|
|
168055
|
-
export declare type QueryAgentWorkspace_RecommendedAgentsForGapArgs = {
|
|
168056
|
-
input: AgentWorkspaceRecommendedAgentsForGapInput;
|
|
168057
|
-
};
|
|
168058
169665
|
export declare type QueryAgentWorkspace_RecommendedAssigneesArgs = {
|
|
168059
169666
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
168060
169667
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -168087,6 +169694,7 @@ export declare type QueryAgentWorkspace_ServicesArgs = {
|
|
|
168087
169694
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
168088
169695
|
cloudId: Scalars['ID']['input'];
|
|
168089
169696
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
169697
|
+
projectId: Scalars['ID']['input'];
|
|
168090
169698
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
168091
169699
|
};
|
|
168092
169700
|
export declare type QueryAgentWorkspace_ServicesMappedToSkillsInProjectArgs = {
|
|
@@ -168163,6 +169771,9 @@ export declare type QueryAgentWorkspace_TeamsMappedToProjectArgs = {
|
|
|
168163
169771
|
projectId: Scalars['ID']['input'];
|
|
168164
169772
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
168165
169773
|
};
|
|
169774
|
+
export declare type QueryAgentWorkspace_UtilizationForPendingChangesArgs = {
|
|
169775
|
+
input: AgentWorkspaceUtilizationForPendingChangesInput;
|
|
169776
|
+
};
|
|
168166
169777
|
export declare type QueryAgent_SessionAssociationQueryArgs = {
|
|
168167
169778
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
168168
169779
|
aqlQuery?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -168691,6 +170302,14 @@ export declare type QueryAssetsDm_ObjectsReportAttributeByDsArgs = {
|
|
|
168691
170302
|
objectId: Scalars['ID']['input'];
|
|
168692
170303
|
workspaceId: Scalars['ID']['input'];
|
|
168693
170304
|
};
|
|
170305
|
+
export declare type QueryAssetsDm_ObjectsReportAttributePieArgs = {
|
|
170306
|
+
attributeName: Scalars['String']['input'];
|
|
170307
|
+
cloudId: Scalars['ID']['input'];
|
|
170308
|
+
nextAttributeName?: InputMaybe<Scalars['String']['input']>;
|
|
170309
|
+
objectId: Scalars['ID']['input'];
|
|
170310
|
+
searchGroups?: Array<AssetsDmObjectsListSearchGroup>;
|
|
170311
|
+
workspaceId: Scalars['ID']['input'];
|
|
170312
|
+
};
|
|
168694
170313
|
export declare type QueryAssetsDm_ObjectsReportDsByDsArgs = {
|
|
168695
170314
|
cloudId: Scalars['ID']['input'];
|
|
168696
170315
|
fromSources: Array<Scalars['String']['input']>;
|
|
@@ -168903,6 +170522,11 @@ export declare type QueryAssetsVertical_VerticalTemplateV2Args = {
|
|
|
168903
170522
|
type: AssetsVerticalVerticalType;
|
|
168904
170523
|
version?: InputMaybe<Scalars['String']['input']>;
|
|
168905
170524
|
};
|
|
170525
|
+
export declare type QueryAssetsVertical_WorkbenchDashboardTemplateStatusArgs = {
|
|
170526
|
+
avpTemplateVersion: Scalars['Int']['input'];
|
|
170527
|
+
cloudId: Scalars['ID']['input'];
|
|
170528
|
+
viewId: Scalars['ID']['input'];
|
|
170529
|
+
};
|
|
168906
170530
|
export declare type QueryAssets_BundleArgs = {
|
|
168907
170531
|
cloudId: Scalars['ID']['input'];
|
|
168908
170532
|
type: AssetsBundleType;
|
|
@@ -169048,6 +170672,9 @@ export declare type QueryAvp_GetDashboardsByStatusArgs = {
|
|
|
169048
170672
|
export declare type QueryAvp_GetFilterExpressionArgs = {
|
|
169049
170673
|
dashboardAri: Scalars['ID']['input'];
|
|
169050
170674
|
};
|
|
170675
|
+
export declare type QueryAvp_GetJiraDashboardMigrationStatusArgs = {
|
|
170676
|
+
input: AvpGetJiraDashboardMigrationStatusInput;
|
|
170677
|
+
};
|
|
169051
170678
|
export declare type QueryAvp_GetReadOnlyDashboardArgs = {
|
|
169052
170679
|
input: AvpGetReadOnlyDashboardInput;
|
|
169053
170680
|
};
|
|
@@ -169280,12 +170907,16 @@ export declare type QueryChannelPlatform_EvaluateChannelAvailabilityArgs = {
|
|
|
169280
170907
|
request?: InputMaybe<ChannelPlatformChannelAvailabilityRequestInput>;
|
|
169281
170908
|
};
|
|
169282
170909
|
export declare type QueryChannelPlatform_GenerateMediaTokenArgs = {
|
|
170910
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
169283
170911
|
issueId: Scalars['String']['input'];
|
|
169284
170912
|
};
|
|
169285
170913
|
export declare type QueryChannelPlatform_GetAgentIdForAaidArgs = {
|
|
169286
170914
|
aaId?: InputMaybe<Scalars['String']['input']>;
|
|
169287
170915
|
instanceId?: InputMaybe<Scalars['String']['input']>;
|
|
169288
170916
|
};
|
|
170917
|
+
export declare type QueryChannelPlatform_GetAgentStatusArgs = {
|
|
170918
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
170919
|
+
};
|
|
169289
170920
|
export declare type QueryChannelPlatform_GetAttachmentPreviewUrlArgs = {
|
|
169290
170921
|
attachmentId: Scalars['String']['input'];
|
|
169291
170922
|
issueId: Scalars['String']['input'];
|
|
@@ -169293,7 +170924,14 @@ export declare type QueryChannelPlatform_GetAttachmentPreviewUrlArgs = {
|
|
|
169293
170924
|
export declare type QueryChannelPlatform_GetChannelTokenArgs = {
|
|
169294
170925
|
request?: InputMaybe<ChannelPlatformGetChannelTokenRequest>;
|
|
169295
170926
|
};
|
|
170927
|
+
export declare type QueryChannelPlatform_GetClientConfigDetailsArgs = {
|
|
170928
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
170929
|
+
};
|
|
170930
|
+
export declare type QueryChannelPlatform_GetConnectDetailsArgs = {
|
|
170931
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
170932
|
+
};
|
|
169296
170933
|
export declare type QueryChannelPlatform_GetContactDetailsArgs = {
|
|
170934
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
169297
170935
|
ticketId?: InputMaybe<Scalars['ID']['input']>;
|
|
169298
170936
|
};
|
|
169299
170937
|
export declare type QueryChannelPlatform_GetCustomerConversationsArgs = {
|
|
@@ -169306,6 +170944,7 @@ export declare type QueryChannelPlatform_GetQueueArgs = {
|
|
|
169306
170944
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
169307
170945
|
};
|
|
169308
170946
|
export declare type QueryChannelPlatform_GetQuickResponseArgs = {
|
|
170947
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
169309
170948
|
quickResponseId: Scalars['String']['input'];
|
|
169310
170949
|
};
|
|
169311
170950
|
export declare type QueryChannelPlatform_GetSurveyLinkArgs = {
|
|
@@ -169316,9 +170955,11 @@ export declare type QueryChannelPlatform_GetTicketDetailsArgs = {
|
|
|
169316
170955
|
conversationId?: InputMaybe<Scalars['ID']['input']>;
|
|
169317
170956
|
};
|
|
169318
170957
|
export declare type QueryChannelPlatform_GetTranscriptArgs = {
|
|
170958
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
169319
170959
|
request?: InputMaybe<ChannelPlatformTranscriptRequest>;
|
|
169320
170960
|
};
|
|
169321
170961
|
export declare type QueryChannelPlatform_ListQuickResponsesArgs = {
|
|
170962
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
169322
170963
|
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
169323
170964
|
nextToken?: InputMaybe<Scalars['String']['input']>;
|
|
169324
170965
|
};
|
|
@@ -169326,6 +170967,7 @@ export declare type QueryChannelPlatform_SampleQueueByIdArgs = {
|
|
|
169326
170967
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
169327
170968
|
};
|
|
169328
170969
|
export declare type QueryChannelPlatform_SearchQuickResponsesArgs = {
|
|
170970
|
+
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
169329
170971
|
request: ChannelPlatformQuickResponseSearchRequest;
|
|
169330
170972
|
};
|
|
169331
170973
|
export declare type QueryChannelPlatform_SubmitRequestArgs = {
|
|
@@ -169962,6 +171604,10 @@ export declare type QueryConfluence_RefreshMigrationMediaSessionArgs = {
|
|
|
169962
171604
|
cloudId: Scalars['ID']['input'];
|
|
169963
171605
|
migrationId: Scalars['String']['input'];
|
|
169964
171606
|
};
|
|
171607
|
+
export declare type QueryConfluence_RemoteObjectSuggestionCountArgs = {
|
|
171608
|
+
cloudId: Scalars['ID']['input'];
|
|
171609
|
+
spaceKey: Scalars['String']['input'];
|
|
171610
|
+
};
|
|
169965
171611
|
export declare type QueryConfluence_ResolvedSpaceKeyForContentArgs = {
|
|
169966
171612
|
cloudId: Scalars['ID']['input'];
|
|
169967
171613
|
id: Scalars['ID']['input'];
|
|
@@ -170376,7 +172022,7 @@ export declare type QueryConvoai_HomeThreadsArgs = {
|
|
|
170376
172022
|
cloudId: Scalars['ID']['input'];
|
|
170377
172023
|
experience: Scalars['String']['input'];
|
|
170378
172024
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
170379
|
-
homeThreadsInput
|
|
172025
|
+
homeThreadsInput?: InputMaybe<ConvoAiHomeThreadsInput>;
|
|
170380
172026
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
170381
172027
|
};
|
|
170382
172028
|
export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
@@ -170589,6 +172235,10 @@ export declare type QueryCsm_LiveChatAgentArgs = {
|
|
|
170589
172235
|
accountId: Scalars['ID']['input'];
|
|
170590
172236
|
cloudId: Scalars['ID']['input'];
|
|
170591
172237
|
};
|
|
172238
|
+
export declare type QueryCsm_LiveChatAgentByWorkerIdentityArgs = {
|
|
172239
|
+
cloudId: Scalars['ID']['input'];
|
|
172240
|
+
workerIdentity: Scalars['ID']['input'];
|
|
172241
|
+
};
|
|
170592
172242
|
export declare type QueryCsm_LiveChatAgentsArgs = {
|
|
170593
172243
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
170594
172244
|
cloudId: Scalars['ID']['input'];
|
|
@@ -171482,6 +173132,13 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
171482
173132
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171483
173133
|
id: Scalars['ID']['input'];
|
|
171484
173134
|
};
|
|
173135
|
+
export declare type QueryJira_AgentContextSourcesArgs = {
|
|
173136
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
173137
|
+
cloudId: Scalars['ID']['input'];
|
|
173138
|
+
filter?: InputMaybe<JiraAgentContextFilter>;
|
|
173139
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
173140
|
+
input: JiraScopedAgentContextInput;
|
|
173141
|
+
};
|
|
171485
173142
|
export declare type QueryJira_AgentSessionsIsPlanModeEnabledArgs = {
|
|
171486
173143
|
cloudId: Scalars['ID']['input'];
|
|
171487
173144
|
};
|
|
@@ -171782,7 +173439,6 @@ export declare type QueryKitsune_CustomersArgs = {
|
|
|
171782
173439
|
workspaceAri: Scalars['ID']['input'];
|
|
171783
173440
|
};
|
|
171784
173441
|
export declare type QueryKitsune_EntitlementsArgs = {
|
|
171785
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171786
173442
|
workspaceAri: Scalars['ID']['input'];
|
|
171787
173443
|
};
|
|
171788
173444
|
export declare type QueryKitsune_FeedbackEventArgs = {
|
|
@@ -171821,11 +173477,9 @@ export declare type QueryKitsune_RollupCustomersArgs = {
|
|
|
171821
173477
|
workspaceAri: Scalars['ID']['input'];
|
|
171822
173478
|
};
|
|
171823
173479
|
export declare type QueryKitsune_SearchChunkArgs = {
|
|
171824
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171825
173480
|
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
171826
173481
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
171827
173482
|
topK?: InputMaybe<Scalars['Int']['input']>;
|
|
171828
|
-
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
171829
173483
|
workspaceAri: Scalars['ID']['input'];
|
|
171830
173484
|
};
|
|
171831
173485
|
export declare type QueryKitsune_SearchCustomersArgs = {
|
|
@@ -171839,42 +173493,35 @@ export declare type QueryKitsune_SearchCustomersArgs = {
|
|
|
171839
173493
|
export declare type QueryKitsune_SearchFeedbackArgs = {
|
|
171840
173494
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
171841
173495
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
171842
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171843
173496
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171844
173497
|
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
171845
173498
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
171846
173499
|
spaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
171847
173500
|
withTotalCount?: InputMaybe<Scalars['Boolean']['input']>;
|
|
171848
|
-
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
171849
173501
|
workspaceAri: Scalars['ID']['input'];
|
|
171850
173502
|
};
|
|
171851
173503
|
export declare type QueryKitsune_SearchFeedbackWithHighlightsArgs = {
|
|
171852
173504
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
171853
173505
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
171854
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171855
173506
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171856
173507
|
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
171857
173508
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
171858
173509
|
spaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
171859
173510
|
withTotalCount?: InputMaybe<Scalars['Boolean']['input']>;
|
|
171860
|
-
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
171861
173511
|
workspaceAri: Scalars['ID']['input'];
|
|
171862
173512
|
};
|
|
171863
173513
|
export declare type QueryKitsune_SearchFieldsArgs = {
|
|
171864
173514
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
171865
173515
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
171866
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171867
173516
|
entityTypes?: InputMaybe<Array<KitsuneEntityType>>;
|
|
171868
173517
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171869
173518
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
171870
173519
|
name: Scalars['String']['input'];
|
|
171871
|
-
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
171872
173520
|
workspaceAri: Scalars['ID']['input'];
|
|
171873
173521
|
};
|
|
171874
173522
|
export declare type QueryKitsune_SearchInsightsArgs = {
|
|
171875
173523
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
171876
173524
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
171877
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171878
173525
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171879
173526
|
input?: InputMaybe<KitsuneSearchInsightsInput>;
|
|
171880
173527
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -171890,7 +173537,6 @@ export declare type QueryKitsune_SearchOrganizationsArgs = {
|
|
|
171890
173537
|
export declare type QueryKitsune_SearchSnippetsArgs = {
|
|
171891
173538
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
171892
173539
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
171893
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171894
173540
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171895
173541
|
insightAri?: InputMaybe<Scalars['ID']['input']>;
|
|
171896
173542
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -171909,11 +173555,9 @@ export declare type QueryKitsune_SpacesArgs = {
|
|
|
171909
173555
|
export declare type QueryKitsune_SpacesForWorkspaceArgs = {
|
|
171910
173556
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
171911
173557
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
171912
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171913
173558
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171914
173559
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
171915
173560
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
171916
|
-
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
171917
173561
|
workspaceAri: Scalars['ID']['input'];
|
|
171918
173562
|
};
|
|
171919
173563
|
export declare type QueryKitsune_ViewsArgs = {
|
|
@@ -172486,6 +174130,18 @@ export declare type QueryQuickReloadArgs = {
|
|
|
172486
174130
|
pageId: Scalars['Long']['input'];
|
|
172487
174131
|
since: Scalars['Long']['input'];
|
|
172488
174132
|
};
|
|
174133
|
+
export declare type QueryRadar_AiConnectorByIdArgs = {
|
|
174134
|
+
cloudId: Scalars['ID']['input'];
|
|
174135
|
+
id: Scalars['ID']['input'];
|
|
174136
|
+
};
|
|
174137
|
+
export declare type QueryRadar_AiConnectorsArgs = {
|
|
174138
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
174139
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
174140
|
+
cloudId: Scalars['ID']['input'];
|
|
174141
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
174142
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
174143
|
+
rql?: InputMaybe<Scalars['String']['input']>;
|
|
174144
|
+
};
|
|
172489
174145
|
export declare type QueryRadar_AvailableCustomFieldsFromLastSyncArgs = {
|
|
172490
174146
|
cloudId: Scalars['ID']['input'];
|
|
172491
174147
|
};
|
|
@@ -172781,6 +174437,7 @@ export declare type QuerySpaceRoleAssignmentsByPrincipalArgs = {
|
|
|
172781
174437
|
export declare type QuerySpaceRolesByCriteriaArgs = {
|
|
172782
174438
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
172783
174439
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
174440
|
+
includeDisabledRoles?: InputMaybe<Scalars['Boolean']['input']>;
|
|
172784
174441
|
principal?: InputMaybe<RoleAssignmentPrincipalInput>;
|
|
172785
174442
|
spaceId?: InputMaybe<Scalars['Long']['input']>;
|
|
172786
174443
|
};
|
|
@@ -173244,6 +174901,11 @@ export declare type QuerySuggestedSpacesArgs = {
|
|
|
173244
174901
|
export declare type QuerySupportInquiry_ChannelsIdentityHashByClientNameArgs = {
|
|
173245
174902
|
request?: InputMaybe<SupportInquiryChannelPlatformIdentityHashRequest>;
|
|
173246
174903
|
};
|
|
174904
|
+
export declare type QueryTags_GetAssignedLabelsArgs = {
|
|
174905
|
+
entityAri: Scalars['String']['input'];
|
|
174906
|
+
kind: Scalars['String']['input'];
|
|
174907
|
+
orgId: Scalars['String']['input'];
|
|
174908
|
+
};
|
|
173247
174909
|
export declare type QueryTags_GetLabelAssignmentsArgs = {
|
|
173248
174910
|
entityAri: Scalars['String']['input'];
|
|
173249
174911
|
};
|
|
@@ -173590,6 +175252,43 @@ export declare type QuickReloadComment = {
|
|
|
173590
175252
|
primaryActions: Array<Maybe<CommentUserAction>>;
|
|
173591
175253
|
secondaryActions: Array<Maybe<CommentUserAction>>;
|
|
173592
175254
|
};
|
|
175255
|
+
export declare type RadarAiConnector = {
|
|
175256
|
+
__typename?: 'RadarAiConnector';
|
|
175257
|
+
createdAt: Scalars['DateTime']['output'];
|
|
175258
|
+
id: Scalars['ID']['output'];
|
|
175259
|
+
isEnabled: Scalars['Boolean']['output'];
|
|
175260
|
+
lastSuccessfulSync?: Maybe<RadarSyncHistory>;
|
|
175261
|
+
lastSync?: Maybe<RadarSyncHistory>;
|
|
175262
|
+
name: Scalars['String']['output'];
|
|
175263
|
+
provider: RadarAiConnectorProvider;
|
|
175264
|
+
type: RadarAiConnectorType;
|
|
175265
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
175266
|
+
};
|
|
175267
|
+
export declare type RadarAiConnectorConfigInput = {
|
|
175268
|
+
apiKey?: InputMaybe<Scalars['String']['input']>;
|
|
175269
|
+
};
|
|
175270
|
+
export declare enum RadarAiConnectorProvider {
|
|
175271
|
+
AnthropicClaudeConsole = "ANTHROPIC_CLAUDE_CONSOLE",
|
|
175272
|
+
AnthropicClaudeEnterprise = "ANTHROPIC_CLAUDE_ENTERPRISE",
|
|
175273
|
+
Cursor = "CURSOR",
|
|
175274
|
+
Rovo = "ROVO"
|
|
175275
|
+
}
|
|
175276
|
+
export declare enum RadarAiConnectorType {
|
|
175277
|
+
Api = "API",
|
|
175278
|
+
Csv = "CSV"
|
|
175279
|
+
}
|
|
175280
|
+
export declare type RadarAiConnectorsConnection = RadarConnection & {
|
|
175281
|
+
__typename?: 'RadarAiConnectorsConnection';
|
|
175282
|
+
edges: Array<RadarAiConnectorsEdge>;
|
|
175283
|
+
nodes: Array<RadarAiConnector>;
|
|
175284
|
+
pageInfo: PageInfo;
|
|
175285
|
+
totalCount: Scalars['Int']['output'];
|
|
175286
|
+
};
|
|
175287
|
+
export declare type RadarAiConnectorsEdge = RadarEdge & {
|
|
175288
|
+
__typename?: 'RadarAiConnectorsEdge';
|
|
175289
|
+
cursor: Scalars['String']['output'];
|
|
175290
|
+
node: RadarAiConnector;
|
|
175291
|
+
};
|
|
173593
175292
|
export declare type RadarAriFieldValue = {
|
|
173594
175293
|
__typename?: 'RadarAriFieldValue';
|
|
173595
175294
|
ari?: Maybe<Scalars['ID']['output']>;
|
|
@@ -173638,6 +175337,12 @@ export declare type RadarConnectorsInput = {
|
|
|
173638
175337
|
isEnabled: Scalars['Boolean']['input'];
|
|
173639
175338
|
type?: InputMaybe<RadarConnectorType>;
|
|
173640
175339
|
};
|
|
175340
|
+
export declare type RadarCreateAiConnectorInput = {
|
|
175341
|
+
config?: InputMaybe<RadarAiConnectorConfigInput>;
|
|
175342
|
+
name: Scalars['String']['input'];
|
|
175343
|
+
provider: RadarAiConnectorProvider;
|
|
175344
|
+
type: RadarAiConnectorType;
|
|
175345
|
+
};
|
|
173641
175346
|
export declare type RadarCustomFieldDefinition = RadarFieldDefinition & {
|
|
173642
175347
|
__typename?: 'RadarCustomFieldDefinition';
|
|
173643
175348
|
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
@@ -173731,6 +175436,7 @@ export declare enum RadarEntityType {
|
|
|
173731
175436
|
FocusArea = "focusArea",
|
|
173732
175437
|
FocusAreaType = "focusAreaType",
|
|
173733
175438
|
Position = "position",
|
|
175439
|
+
PositionsHistory = "positionsHistory",
|
|
173734
175440
|
Proposal = "proposal",
|
|
173735
175441
|
ProposedMovement = "proposedMovement",
|
|
173736
175442
|
Skill = "skill",
|
|
@@ -174232,10 +175938,37 @@ export declare type RadarStringFieldValue = {
|
|
|
174232
175938
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
174233
175939
|
value?: Maybe<Scalars['String']['output']>;
|
|
174234
175940
|
};
|
|
175941
|
+
export declare type RadarSyncAiConnectorInput = {
|
|
175942
|
+
id: Scalars['ID']['input'];
|
|
175943
|
+
periodEndExclusive?: InputMaybe<Scalars['DateTime']['input']>;
|
|
175944
|
+
periodStartInclusive: Scalars['DateTime']['input'];
|
|
175945
|
+
};
|
|
174235
175946
|
export declare type RadarSyncData = {
|
|
174236
175947
|
__typename?: 'RadarSyncData';
|
|
174237
175948
|
lastSuccessfulSync?: Maybe<Scalars['DateTime']['output']>;
|
|
174238
175949
|
};
|
|
175950
|
+
export declare type RadarSyncHistory = {
|
|
175951
|
+
__typename?: 'RadarSyncHistory';
|
|
175952
|
+
createdAt: Scalars['DateTime']['output'];
|
|
175953
|
+
id: Scalars['ID']['output'];
|
|
175954
|
+
status: RadarSyncHistoryStatus;
|
|
175955
|
+
triggeredBy: Scalars['String']['output'];
|
|
175956
|
+
triggeredByUser?: Maybe<User>;
|
|
175957
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
175958
|
+
};
|
|
175959
|
+
export declare enum RadarSyncHistoryStatus {
|
|
175960
|
+
Failed = "FAILED",
|
|
175961
|
+
InProgress = "IN_PROGRESS",
|
|
175962
|
+
Scheduled = "SCHEDULED",
|
|
175963
|
+
Success = "SUCCESS",
|
|
175964
|
+
SystemError = "SYSTEM_ERROR"
|
|
175965
|
+
}
|
|
175966
|
+
export declare type RadarUpdateAiConnectorInput = {
|
|
175967
|
+
config?: InputMaybe<RadarAiConnectorConfigInput>;
|
|
175968
|
+
id: Scalars['ID']['input'];
|
|
175969
|
+
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
175970
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
175971
|
+
};
|
|
174239
175972
|
export declare type RadarUpdateFieldDefinitionSettingsMutationResponse = {
|
|
174240
175973
|
__typename?: 'RadarUpdateFieldDefinitionSettingsMutationResponse';
|
|
174241
175974
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -175782,6 +177515,7 @@ export declare enum Scope {
|
|
|
175782
177515
|
DeleteJsmTwgCli = "DELETE_JSM_TWG_CLI",
|
|
175783
177516
|
DeleteJswBoardScopeAdmin = "DELETE_JSW_BOARD_SCOPE_ADMIN",
|
|
175784
177517
|
DeleteJswSprint = "DELETE_JSW_SPRINT",
|
|
177518
|
+
DeleteLoomVideo = "DELETE_LOOM_VIDEO",
|
|
175785
177519
|
DeleteOrganization = "DELETE_ORGANIZATION",
|
|
175786
177520
|
DeleteOrganizationProperty = "DELETE_ORGANIZATION_PROPERTY",
|
|
175787
177521
|
DeleteOrganizationUser = "DELETE_ORGANIZATION_USER",
|
|
@@ -176021,7 +177755,12 @@ export declare enum Scope {
|
|
|
176021
177755
|
ReadJswTwgCli = "READ_JSW_TWG_CLI",
|
|
176022
177756
|
ReadKnowledgebase = "READ_KNOWLEDGEBASE",
|
|
176023
177757
|
ReadKnowledgeDiscoveryTopic = "READ_KNOWLEDGE_DISCOVERY_TOPIC",
|
|
177758
|
+
ReadLoomComment = "READ_LOOM_COMMENT",
|
|
177759
|
+
ReadLoomMeeting = "READ_LOOM_MEETING",
|
|
177760
|
+
ReadLoomSpace = "READ_LOOM_SPACE",
|
|
176024
177761
|
ReadLoomTwgCli = "READ_LOOM_TWG_CLI",
|
|
177762
|
+
ReadLoomVideo = "READ_LOOM_VIDEO",
|
|
177763
|
+
ReadLoomWorkspace = "READ_LOOM_WORKSPACE",
|
|
176025
177764
|
ReadMe = "READ_ME",
|
|
176026
177765
|
ReadMercuryTwgCli = "READ_MERCURY_TWG_CLI",
|
|
176027
177766
|
ReadNotifications = "READ_NOTIFICATIONS",
|
|
@@ -176181,7 +177920,9 @@ export declare enum Scope {
|
|
|
176181
177920
|
WriteJswSourceCode = "WRITE_JSW_SOURCE_CODE",
|
|
176182
177921
|
WriteJswSprint = "WRITE_JSW_SPRINT",
|
|
176183
177922
|
WriteJswTwgCli = "WRITE_JSW_TWG_CLI",
|
|
177923
|
+
WriteLoomSpace = "WRITE_LOOM_SPACE",
|
|
176184
177924
|
WriteLoomTwgCli = "WRITE_LOOM_TWG_CLI",
|
|
177925
|
+
WriteLoomWorkspace = "WRITE_LOOM_WORKSPACE",
|
|
176185
177926
|
WriteMercuryTwgCli = "WRITE_MERCURY_TWG_CLI",
|
|
176186
177927
|
WriteNotifications = "WRITE_NOTIFICATIONS",
|
|
176187
177928
|
WriteOrganization = "WRITE_ORGANIZATION",
|
|
@@ -176452,6 +178193,7 @@ export declare type SearchError = {
|
|
|
176452
178193
|
export declare type SearchExperimentContextInput = {
|
|
176453
178194
|
experimentId?: InputMaybe<Scalars['String']['input']>;
|
|
176454
178195
|
experimentLayers?: InputMaybe<Array<InputMaybe<SearchExperimentLayer>>>;
|
|
178196
|
+
matchingLayerExperimentsMetadata?: InputMaybe<SearchMatchingLayerExperimentsMetadata>;
|
|
176455
178197
|
shadowExperimentId?: InputMaybe<Scalars['String']['input']>;
|
|
176456
178198
|
};
|
|
176457
178199
|
export declare type SearchExperimentLayer = {
|
|
@@ -176553,6 +178295,7 @@ export declare type SearchInput = {
|
|
|
176553
178295
|
includeBoostedLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
176554
178296
|
interleaveResults?: InputMaybe<Scalars['Boolean']['input']>;
|
|
176555
178297
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
178298
|
+
matchingLayerExperimentsMetadata?: InputMaybe<SearchMatchingLayerExperimentsMetadata>;
|
|
176556
178299
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
176557
178300
|
sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
|
|
176558
178301
|
};
|
|
@@ -176665,6 +178408,13 @@ export declare enum SearchLinkedResultCategory {
|
|
|
176665
178408
|
Similar = "similar"
|
|
176666
178409
|
}
|
|
176667
178410
|
export declare type SearchLinkedResultEntity = ExternalCalendarEvent;
|
|
178411
|
+
export declare type SearchMatchingLayer = {
|
|
178412
|
+
layerName?: InputMaybe<Scalars['String']['input']>;
|
|
178413
|
+
layerType?: InputMaybe<Scalars['String']['input']>;
|
|
178414
|
+
};
|
|
178415
|
+
export declare type SearchMatchingLayerExperimentsMetadata = {
|
|
178416
|
+
matchingLayers?: InputMaybe<Array<InputMaybe<SearchMatchingLayer>>>;
|
|
178417
|
+
};
|
|
176668
178418
|
export declare type SearchMercuryFilter = {
|
|
176669
178419
|
ancestorIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
176670
178420
|
focusAreaTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -176741,6 +178491,7 @@ export declare type SearchQueryApiAsyncSearchArgs = {
|
|
|
176741
178491
|
interleaveResults?: InputMaybe<Scalars['Boolean']['input']>;
|
|
176742
178492
|
isSearchTool?: InputMaybe<Scalars['Boolean']['input']>;
|
|
176743
178493
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
178494
|
+
matchingLayerExperimentsMetadata?: InputMaybe<SearchMatchingLayerExperimentsMetadata>;
|
|
176744
178495
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
176745
178496
|
sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
|
|
176746
178497
|
};
|
|
@@ -176771,6 +178522,7 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
176771
178522
|
interleaveResults?: InputMaybe<Scalars['Boolean']['input']>;
|
|
176772
178523
|
isSearchTool?: InputMaybe<Scalars['Boolean']['input']>;
|
|
176773
178524
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
178525
|
+
matchingLayerExperimentsMetadata?: InputMaybe<SearchMatchingLayerExperimentsMetadata>;
|
|
176774
178526
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
176775
178527
|
sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
|
|
176776
178528
|
};
|
|
@@ -197676,6 +199428,7 @@ export declare type SpacePermissionsSubjectsWithPermissionsArgs = {
|
|
|
197676
199428
|
export declare type SpaceRole = {
|
|
197677
199429
|
__typename?: 'SpaceRole';
|
|
197678
199430
|
confluenceRoleAssignabilityCode: ConfluenceRoleAssignabilityCode;
|
|
199431
|
+
disabled: Scalars['Boolean']['output'];
|
|
197679
199432
|
inUseByDefaultSpaceRoleAssignments?: Maybe<Scalars['Boolean']['output']>;
|
|
197680
199433
|
inUseByPrincipals?: Maybe<Scalars['Boolean']['output']>;
|
|
197681
199434
|
roleDescription: Scalars['String']['output'];
|
|
@@ -198752,6 +200505,10 @@ export declare type SpfPrioritizePlanScenarioInvestmentPayload = Payload & {
|
|
|
198752
200505
|
planScenarioInvestments?: Maybe<Array<SpfPlanScenarioInvestmentEdge>>;
|
|
198753
200506
|
success: Scalars['Boolean']['output'];
|
|
198754
200507
|
};
|
|
200508
|
+
export declare type SpfPromoteWorkItemToImpactedWorkInput = {
|
|
200509
|
+
connectedWorkId: Scalars['String']['input'];
|
|
200510
|
+
id: Scalars['ID']['input'];
|
|
200511
|
+
};
|
|
198755
200512
|
export declare type SpfRemovePlanApproverInput = {
|
|
198756
200513
|
approverId: Scalars['String']['input'];
|
|
198757
200514
|
planId: Scalars['ID']['input'];
|
|
@@ -201579,6 +203336,11 @@ export declare type TagsAssignLabelInput = {
|
|
|
201579
203336
|
orgId: Scalars['String']['input'];
|
|
201580
203337
|
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
201581
203338
|
};
|
|
203339
|
+
export declare type TagsAssignedLabel = {
|
|
203340
|
+
__typename?: 'TagsAssignedLabel';
|
|
203341
|
+
assignment: TagsLabelAssignment;
|
|
203342
|
+
tag?: Maybe<TagsResponse>;
|
|
203343
|
+
};
|
|
201582
203344
|
export declare type TagsCreateAndAssignLabelInput = {
|
|
201583
203345
|
entityAri: Scalars['String']['input'];
|
|
201584
203346
|
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -204142,12 +205904,18 @@ export declare enum TownsquareGoalSortEnum {
|
|
|
204142
205904
|
LatestUpdateDateDesc = "LATEST_UPDATE_DATE_DESC",
|
|
204143
205905
|
NameAsc = "NAME_ASC",
|
|
204144
205906
|
NameDesc = "NAME_DESC",
|
|
205907
|
+
PhaseIdAsc = "PHASE_ID_ASC",
|
|
205908
|
+
PhaseIdDesc = "PHASE_ID_DESC",
|
|
204145
205909
|
ProjectCountAsc = "PROJECT_COUNT_ASC",
|
|
204146
205910
|
ProjectCountDesc = "PROJECT_COUNT_DESC",
|
|
204147
205911
|
ScoreAsc = "SCORE_ASC",
|
|
204148
205912
|
ScoreDesc = "SCORE_DESC",
|
|
205913
|
+
StartDateAsc = "START_DATE_ASC",
|
|
205914
|
+
StartDateDesc = "START_DATE_DESC",
|
|
204149
205915
|
TargetDateAsc = "TARGET_DATE_ASC",
|
|
204150
205916
|
TargetDateDesc = "TARGET_DATE_DESC",
|
|
205917
|
+
WatcherCountAsc = "WATCHER_COUNT_ASC",
|
|
205918
|
+
WatcherCountDesc = "WATCHER_COUNT_DESC",
|
|
204151
205919
|
WatchingAsc = "WATCHING_ASC",
|
|
204152
205920
|
WatchingDesc = "WATCHING_DESC"
|
|
204153
205921
|
}
|
|
@@ -204382,6 +206150,7 @@ export declare type TownsquareGoalsAppPermissionPolicyInput = {
|
|
|
204382
206150
|
export declare type TownsquareGoalsAppSettings = {
|
|
204383
206151
|
__typename?: 'TownsquareGoalsAppSettings';
|
|
204384
206152
|
aiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
206153
|
+
defaultGoalAccessLevel?: Maybe<TownsquareGoalAccessLevel>;
|
|
204385
206154
|
scoringMode?: Maybe<TownsquareGoalScoringMode>;
|
|
204386
206155
|
};
|
|
204387
206156
|
export declare type TownsquareGoalsArchiveMetricInput = {
|
|
@@ -204724,6 +206493,7 @@ export declare type TownsquareGoalsEditMetricPayload = {
|
|
|
204724
206493
|
export declare type TownsquareGoalsEditMetricTargetInput = {
|
|
204725
206494
|
currentValue?: InputMaybe<Scalars['Float']['input']>;
|
|
204726
206495
|
metricTargetId: Scalars['ID']['input'];
|
|
206496
|
+
metricTargetPeriods?: InputMaybe<Array<InputMaybe<TownsquareMetricTargetPeriodInput>>>;
|
|
204727
206497
|
startValue?: InputMaybe<Scalars['Float']['input']>;
|
|
204728
206498
|
targetValue?: InputMaybe<Scalars['Float']['input']>;
|
|
204729
206499
|
};
|
|
@@ -205196,6 +206966,7 @@ export declare type TownsquareMetricTargetEdge = {
|
|
|
205196
206966
|
export declare type TownsquareMetricTargetPeriod = {
|
|
205197
206967
|
__typename?: 'TownsquareMetricTargetPeriod';
|
|
205198
206968
|
date?: Maybe<TownsquareTargetDate>;
|
|
206969
|
+
latestValue?: Maybe<TownsquareMetricTargetPeriodToMetricValueEdge>;
|
|
205199
206970
|
value?: Maybe<Scalars['Float']['output']>;
|
|
205200
206971
|
};
|
|
205201
206972
|
export declare type TownsquareMetricTargetPeriodConnection = {
|
|
@@ -205208,6 +206979,15 @@ export declare type TownsquareMetricTargetPeriodEdge = {
|
|
|
205208
206979
|
cursor: Scalars['String']['output'];
|
|
205209
206980
|
node?: Maybe<TownsquareMetricTargetPeriod>;
|
|
205210
206981
|
};
|
|
206982
|
+
export declare type TownsquareMetricTargetPeriodInput = {
|
|
206983
|
+
date: TownsquareTargetDateInput;
|
|
206984
|
+
value?: InputMaybe<Scalars['Float']['input']>;
|
|
206985
|
+
};
|
|
206986
|
+
export declare type TownsquareMetricTargetPeriodToMetricValueEdge = {
|
|
206987
|
+
__typename?: 'TownsquareMetricTargetPeriodToMetricValueEdge';
|
|
206988
|
+
node?: Maybe<TownsquareMetricValue>;
|
|
206989
|
+
variance?: Maybe<Scalars['Float']['output']>;
|
|
206990
|
+
};
|
|
205211
206991
|
export declare enum TownsquareMetricType {
|
|
205212
206992
|
Currency = "CURRENCY",
|
|
205213
206993
|
Numeric = "NUMERIC",
|
|
@@ -207566,6 +209346,11 @@ export declare type TrelloAtlassianIntelligence = {
|
|
|
207566
209346
|
__typename?: 'TrelloAtlassianIntelligence';
|
|
207567
209347
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
207568
209348
|
};
|
|
209349
|
+
export declare type TrelloAtlassianOrganization = {
|
|
209350
|
+
__typename?: 'TrelloAtlassianOrganization';
|
|
209351
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
209352
|
+
id: Scalars['ID']['output'];
|
|
209353
|
+
};
|
|
207569
209354
|
export declare type TrelloAtlassianSite = {
|
|
207570
209355
|
__typename?: 'TrelloAtlassianSite';
|
|
207571
209356
|
resourceId: Scalars['String']['output'];
|
|
@@ -207647,6 +209432,10 @@ export declare type TrelloBaseBoardPlannerEventCardsArgs = {
|
|
|
207647
209432
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
207648
209433
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
207649
209434
|
};
|
|
209435
|
+
export declare type TrelloBaseBoardConnectionUpdated = {
|
|
209436
|
+
__typename?: 'TrelloBaseBoardConnectionUpdated';
|
|
209437
|
+
edges?: Maybe<Array<TrelloBaseBoardUpdatedEdge>>;
|
|
209438
|
+
};
|
|
207650
209439
|
export declare type TrelloBaseBoardId = {
|
|
207651
209440
|
id: Scalars['ID']['output'];
|
|
207652
209441
|
objectId: Scalars['ID']['output'];
|
|
@@ -207666,6 +209455,10 @@ export declare type TrelloBaseBoardUpdated = {
|
|
|
207666
209455
|
plannerEventCards?: Maybe<TrelloCardUpdatedConnection>;
|
|
207667
209456
|
workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
|
|
207668
209457
|
};
|
|
209458
|
+
export declare type TrelloBaseBoardUpdatedEdge = {
|
|
209459
|
+
__typename?: 'TrelloBaseBoardUpdatedEdge';
|
|
209460
|
+
node?: Maybe<TrelloBaseBoardUpdated>;
|
|
209461
|
+
};
|
|
207669
209462
|
export declare type TrelloBaseCard = {
|
|
207670
209463
|
actions?: Maybe<TrelloCardActionConnection>;
|
|
207671
209464
|
aiMetadata?: Maybe<TrelloObjectAiMetadata>;
|
|
@@ -208920,6 +210713,7 @@ export declare type TrelloCompleteOnboardingInput = {
|
|
|
208920
210713
|
export declare type TrelloCompleteOnboardingPayload = Payload & {
|
|
208921
210714
|
__typename?: 'TrelloCompleteOnboardingPayload';
|
|
208922
210715
|
board: TrelloBoard;
|
|
210716
|
+
boardV2?: Maybe<TrelloBaseBoard>;
|
|
208923
210717
|
errors?: Maybe<Array<MutationError>>;
|
|
208924
210718
|
success: Scalars['Boolean']['output'];
|
|
208925
210719
|
workspace?: Maybe<TrelloWorkspace>;
|
|
@@ -209590,6 +211384,7 @@ export declare type TrelloEndVoiceCaptureSessionPayload = Payload & {
|
|
|
209590
211384
|
export declare type TrelloEnterprise = Node & {
|
|
209591
211385
|
__typename?: 'TrelloEnterprise';
|
|
209592
211386
|
admins?: Maybe<TrelloMemberConnection>;
|
|
211387
|
+
atlassianOrganization?: Maybe<TrelloAtlassianOrganization>;
|
|
209593
211388
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
209594
211389
|
id: Scalars['ID']['output'];
|
|
209595
211390
|
managedMemberTokensCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -209648,6 +211443,7 @@ export declare type TrelloGenerateBoardBackgroundWithAiPayload = Payload & {
|
|
|
209648
211443
|
__typename?: 'TrelloGenerateBoardBackgroundWithAiPayload';
|
|
209649
211444
|
board?: Maybe<TrelloBaseBoard>;
|
|
209650
211445
|
errors?: Maybe<Array<MutationError>>;
|
|
211446
|
+
member?: Maybe<TrelloMember>;
|
|
209651
211447
|
success: Scalars['Boolean']['output'];
|
|
209652
211448
|
};
|
|
209653
211449
|
export declare type TrelloGenerateCardCoverWithAiInput = {
|
|
@@ -209659,6 +211455,7 @@ export declare type TrelloGenerateCardCoverWithAiPayload = Payload & {
|
|
|
209659
211455
|
__typename?: 'TrelloGenerateCardCoverWithAiPayload';
|
|
209660
211456
|
card?: Maybe<TrelloBaseCard>;
|
|
209661
211457
|
errors?: Maybe<Array<MutationError>>;
|
|
211458
|
+
member?: Maybe<TrelloMember>;
|
|
209662
211459
|
success: Scalars['Boolean']['output'];
|
|
209663
211460
|
};
|
|
209664
211461
|
export declare type TrelloGenerateCardSummaryInput = {
|
|
@@ -209902,6 +211699,7 @@ export declare type TrelloInboxUpdated = TrelloBaseBoardUpdated & {
|
|
|
209902
211699
|
};
|
|
209903
211700
|
export declare type TrelloInitializeVoiceCaptureSessionInput = {
|
|
209904
211701
|
boardId: Scalars['ID']['input'];
|
|
211702
|
+
isAudio?: InputMaybe<Scalars['Boolean']['input']>;
|
|
209905
211703
|
listId: Scalars['ID']['input'];
|
|
209906
211704
|
};
|
|
209907
211705
|
export declare type TrelloInitializeVoiceCaptureSessionPayload = Payload & {
|
|
@@ -210362,6 +212160,7 @@ export declare type TrelloMemberUpdated = {
|
|
|
210362
212160
|
bio?: Maybe<Scalars['String']['output']>;
|
|
210363
212161
|
boardStars?: Maybe<TrelloBoardStarConnectionUpdated>;
|
|
210364
212162
|
boards?: Maybe<TrelloBoardConnectionUpdated>;
|
|
212163
|
+
boardsV2?: Maybe<TrelloBaseBoardConnectionUpdated>;
|
|
210365
212164
|
confirmed?: Maybe<Scalars['Boolean']['output']>;
|
|
210366
212165
|
fullName?: Maybe<Scalars['String']['output']>;
|
|
210367
212166
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -210371,6 +212170,7 @@ export declare type TrelloMemberUpdated = {
|
|
|
210371
212170
|
planner?: Maybe<TrelloPlannerUpdated>;
|
|
210372
212171
|
referral?: Maybe<TrelloMemberReferralUpdated>;
|
|
210373
212172
|
referrer?: Maybe<TrelloMemberReferrerUpdated>;
|
|
212173
|
+
usageLimits?: Maybe<Array<TrelloUsageLimitUpdated>>;
|
|
210374
212174
|
username?: Maybe<Scalars['String']['output']>;
|
|
210375
212175
|
};
|
|
210376
212176
|
export declare type TrelloMemberUpdatedConnection = {
|
|
@@ -211336,6 +213136,7 @@ export declare type TrelloPlannerCalendarEvent = Node & {
|
|
|
211336
213136
|
plannerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
211337
213137
|
providerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
211338
213138
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
213139
|
+
rsvpAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
211339
213140
|
startAt?: Maybe<Scalars['DateTime']['output']>;
|
|
211340
213141
|
status?: Maybe<TrelloPlannerCalendarEventStatus>;
|
|
211341
213142
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -211450,6 +213251,7 @@ export declare type TrelloPlannerCalendarEventUpdated = {
|
|
|
211450
213251
|
plannerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
211451
213252
|
providerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
211452
213253
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
213254
|
+
rsvpAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
211453
213255
|
startAt?: Maybe<Scalars['DateTime']['output']>;
|
|
211454
213256
|
status?: Maybe<TrelloPlannerCalendarEventStatus>;
|
|
211455
213257
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -213215,6 +215017,15 @@ export declare enum TrelloUsageLimitKey {
|
|
|
213215
215017
|
AiBoardBackgroundGeneration = "AI_BOARD_BACKGROUND_GENERATION",
|
|
213216
215018
|
AiCardCoverGeneration = "AI_CARD_COVER_GENERATION"
|
|
213217
215019
|
}
|
|
215020
|
+
export declare type TrelloUsageLimitUpdated = {
|
|
215021
|
+
__typename?: 'TrelloUsageLimitUpdated';
|
|
215022
|
+
count: Scalars['Int']['output'];
|
|
215023
|
+
interval?: Maybe<TrelloUsageLimitInterval>;
|
|
215024
|
+
key: TrelloUsageLimitKey;
|
|
215025
|
+
limit: Scalars['Int']['output'];
|
|
215026
|
+
periodEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
215027
|
+
periodStart?: Maybe<Scalars['DateTime']['output']>;
|
|
215028
|
+
};
|
|
213218
215029
|
export declare type TrelloUserGeneratedText = {
|
|
213219
215030
|
__typename?: 'TrelloUserGeneratedText';
|
|
213220
215031
|
text?: Maybe<Scalars['String']['output']>;
|
|
@@ -215706,6 +217517,7 @@ export declare type UpdatePolarisViewInput = {
|
|
|
215706
217517
|
fields?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
215707
217518
|
filter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
215708
217519
|
groupBy?: InputMaybe<Scalars['ID']['input']>;
|
|
217520
|
+
groupOrder?: InputMaybe<Scalars['String']['input']>;
|
|
215709
217521
|
groupValues?: InputMaybe<Array<PolarisGroupValueInput>>;
|
|
215710
217522
|
groupsFilter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
215711
217523
|
hidden?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -215727,6 +217539,7 @@ export declare type UpdatePolarisViewInput = {
|
|
|
215727
217539
|
treeConfig?: InputMaybe<UpdatePolarisTreeConfig>;
|
|
215728
217540
|
userJql?: InputMaybe<Scalars['String']['input']>;
|
|
215729
217541
|
verticalGroupBy?: InputMaybe<Scalars['ID']['input']>;
|
|
217542
|
+
verticalGroupOrder?: InputMaybe<Scalars['String']['input']>;
|
|
215730
217543
|
verticalGroupValues?: InputMaybe<Array<PolarisGroupValueInput>>;
|
|
215731
217544
|
verticalGroupsFilter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
215732
217545
|
view?: InputMaybe<Scalars['ID']['input']>;
|