@forge/cli-shared 8.17.0-next.4 → 8.17.0
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 +29 -0
- package/out/graphql/graphql-types.d.ts +1675 -67
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +239 -55
- package/package.json +3 -3
|
@@ -172,6 +172,7 @@ export declare type AvpAddFilterExpressionsPayload = Payload & {
|
|
|
172
172
|
success: Scalars['Boolean']['output'];
|
|
173
173
|
};
|
|
174
174
|
export declare type AvpAnalyticsColumn = {
|
|
175
|
+
errors?: Maybe<Array<AvpAnalyticsError>>;
|
|
175
176
|
id: Scalars['ID']['output'];
|
|
176
177
|
isHidden: Scalars['Boolean']['output'];
|
|
177
178
|
name: Scalars['String']['output'];
|
|
@@ -238,6 +239,10 @@ export declare type AvpAnalyticsDataSourceModelsConnection = {
|
|
|
238
239
|
edges?: Maybe<Array<AvpAnalyticsDataSourceModelEdge>>;
|
|
239
240
|
pageInfo: PageInfo;
|
|
240
241
|
};
|
|
242
|
+
export declare type AvpAnalyticsError = {
|
|
243
|
+
__typename?: 'AVPAnalyticsError';
|
|
244
|
+
message: Scalars['String']['output'];
|
|
245
|
+
};
|
|
241
246
|
export declare type AvpAnalyticsFilter = {
|
|
242
247
|
type: AvpAnalyticsFilterType;
|
|
243
248
|
values: Array<Scalars['String']['input']>;
|
|
@@ -273,6 +278,7 @@ export declare type AvpAnalyticsFilterValueInput = {
|
|
|
273
278
|
};
|
|
274
279
|
export declare type AvpAnalyticsFormulaColumn = AvpAnalyticsColumn & {
|
|
275
280
|
__typename?: 'AVPAnalyticsFormulaColumn';
|
|
281
|
+
errors?: Maybe<Array<AvpAnalyticsError>>;
|
|
276
282
|
expression: Scalars['String']['output'];
|
|
277
283
|
id: Scalars['ID']['output'];
|
|
278
284
|
isHidden: Scalars['Boolean']['output'];
|
|
@@ -286,11 +292,6 @@ export declare type AvpAnalyticsFormulaColumnInput = {
|
|
|
286
292
|
name: Scalars['String']['input'];
|
|
287
293
|
type: AvpAnalyticsColumnType;
|
|
288
294
|
};
|
|
289
|
-
export declare type AvpAnalyticsGetDataSourceInput = {
|
|
290
|
-
cloudId: Scalars['ID']['input'];
|
|
291
|
-
dataSourceId: Scalars['ID']['input'];
|
|
292
|
-
workspaceId: Scalars['ID']['input'];
|
|
293
|
-
};
|
|
294
295
|
export declare type AvpAnalyticsGetDataSourcesInput = {
|
|
295
296
|
cloudId: Scalars['ID']['input'];
|
|
296
297
|
searchInput?: InputMaybe<AvpAnalyticsSearchInput>;
|
|
@@ -298,7 +299,6 @@ export declare type AvpAnalyticsGetDataSourcesInput = {
|
|
|
298
299
|
};
|
|
299
300
|
export declare type AvpAnalyticsGetModelInput = {
|
|
300
301
|
modelId: Scalars['ID']['input'];
|
|
301
|
-
modelType: AvpAnalyticsModelType;
|
|
302
302
|
modelVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
303
303
|
modelViewMode: AvpAnalyticsModelViewMode;
|
|
304
304
|
};
|
|
@@ -320,6 +320,11 @@ export declare type AvpAnalyticsJoinColumnPairsInput = {
|
|
|
320
320
|
leftColumnId: Scalars['ID']['input'];
|
|
321
321
|
rightColumnId: Scalars['ID']['input'];
|
|
322
322
|
};
|
|
323
|
+
export declare type AvpAnalyticsJoinConfigurationError = {
|
|
324
|
+
__typename?: 'AVPAnalyticsJoinConfigurationError';
|
|
325
|
+
leftConfigErrors?: Maybe<Array<AvpAnalyticsError>>;
|
|
326
|
+
rightConfigErrors?: Maybe<Array<AvpAnalyticsError>>;
|
|
327
|
+
};
|
|
323
328
|
export declare enum AvpAnalyticsJoinOnOperator {
|
|
324
329
|
Equals = "EQUALS",
|
|
325
330
|
GreaterOrEqualThan = "GREATER_OR_EQUAL_THAN",
|
|
@@ -331,6 +336,7 @@ export declare enum AvpAnalyticsJoinOnOperator {
|
|
|
331
336
|
export declare type AvpAnalyticsJoinPaths = {
|
|
332
337
|
__typename?: 'AVPAnalyticsJoinPaths';
|
|
333
338
|
columnPairs: Array<AvpAnalyticsJoinColumnPairs>;
|
|
339
|
+
error?: Maybe<AvpAnalyticsJoinConfigurationError>;
|
|
334
340
|
joinType: AvpAnalyticsJoinType;
|
|
335
341
|
leftModelId: Scalars['ID']['output'];
|
|
336
342
|
rightModelId: Scalars['ID']['output'];
|
|
@@ -354,8 +360,10 @@ export declare type AvpAnalyticsMetric = {
|
|
|
354
360
|
};
|
|
355
361
|
export declare type AvpAnalyticsModel = {
|
|
356
362
|
__typename?: 'AVPAnalyticsModel';
|
|
363
|
+
data?: Maybe<AvpAnalyticsModelDataConnection>;
|
|
357
364
|
definition?: Maybe<AvpAnalyticsModelDefinition>;
|
|
358
365
|
description?: Maybe<Scalars['String']['output']>;
|
|
366
|
+
errors?: Maybe<Array<AvpAnalyticsError>>;
|
|
359
367
|
id: Scalars['ID']['output'];
|
|
360
368
|
metadata?: Maybe<AvpAnalyticsModelMetadata>;
|
|
361
369
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -363,15 +371,41 @@ export declare type AvpAnalyticsModel = {
|
|
|
363
371
|
type: AvpAnalyticsModelType;
|
|
364
372
|
version: Scalars['Int']['output'];
|
|
365
373
|
};
|
|
374
|
+
export declare type AvpAnalyticsModelDataArgs = {
|
|
375
|
+
paginationInput: AvpAnalyticsPaginationInput;
|
|
376
|
+
sortInput: AvpAnalyticsModelDataSortInput;
|
|
377
|
+
};
|
|
366
378
|
export declare type AvpAnalyticsModelConnection = {
|
|
367
379
|
__typename?: 'AVPAnalyticsModelConnection';
|
|
368
380
|
edges?: Maybe<Array<Maybe<AvpAnalyticsModelEdge>>>;
|
|
369
381
|
pageInfo: PageInfo;
|
|
370
382
|
};
|
|
383
|
+
export declare type AvpAnalyticsModelDataConnection = {
|
|
384
|
+
__typename?: 'AVPAnalyticsModelDataConnection';
|
|
385
|
+
edges?: Maybe<Array<AvpAnalyticsModelDataEdge>>;
|
|
386
|
+
pageInfo: PageInfo;
|
|
387
|
+
};
|
|
388
|
+
export declare type AvpAnalyticsModelDataEdge = {
|
|
389
|
+
__typename?: 'AVPAnalyticsModelDataEdge';
|
|
390
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
391
|
+
node: AvpAnalyticsModelDataRow;
|
|
392
|
+
};
|
|
393
|
+
export declare type AvpAnalyticsModelDataRow = {
|
|
394
|
+
__typename?: 'AVPAnalyticsModelDataRow';
|
|
395
|
+
values: Array<AvpAnalyticsModelDataRowValue>;
|
|
396
|
+
};
|
|
397
|
+
export declare type AvpAnalyticsModelDataRowValue = {
|
|
398
|
+
__typename?: 'AVPAnalyticsModelDataRowValue';
|
|
399
|
+
columnName: Scalars['String']['output'];
|
|
400
|
+
columnValue: Scalars['String']['output'];
|
|
401
|
+
};
|
|
371
402
|
export declare type AvpAnalyticsModelDataSort = {
|
|
372
403
|
columnName: Scalars['String']['input'];
|
|
373
404
|
sortType: AvpAnalyticsSortType;
|
|
374
405
|
};
|
|
406
|
+
export declare type AvpAnalyticsModelDataSortInput = {
|
|
407
|
+
sorts: Array<AvpAnalyticsModelDataSort>;
|
|
408
|
+
};
|
|
375
409
|
export declare type AvpAnalyticsModelDataSource = {
|
|
376
410
|
__typename?: 'AVPAnalyticsModelDataSource';
|
|
377
411
|
id: Scalars['ID']['output'];
|
|
@@ -406,6 +440,7 @@ export declare type AvpAnalyticsModelEdge = {
|
|
|
406
440
|
export declare type AvpAnalyticsModelFilter = {
|
|
407
441
|
__typename?: 'AVPAnalyticsModelFilter';
|
|
408
442
|
columnName: Scalars['String']['output'];
|
|
443
|
+
errors?: Maybe<Array<AvpAnalyticsError>>;
|
|
409
444
|
operator: AvpAnalyticsFilterOperator;
|
|
410
445
|
value?: Maybe<AvpAnalyticsFilterValue>;
|
|
411
446
|
};
|
|
@@ -480,6 +515,7 @@ export declare type AvpAnalyticsSearchInput = {
|
|
|
480
515
|
};
|
|
481
516
|
export declare type AvpAnalyticsSimpleColumn = AvpAnalyticsColumn & {
|
|
482
517
|
__typename?: 'AVPAnalyticsSimpleColumn';
|
|
518
|
+
errors?: Maybe<Array<AvpAnalyticsError>>;
|
|
483
519
|
id: Scalars['ID']['output'];
|
|
484
520
|
isHidden: Scalars['Boolean']['output'];
|
|
485
521
|
name: Scalars['String']['output'];
|
|
@@ -2456,6 +2492,11 @@ export declare type AdminAuditLogGroupEventActionEdge = {
|
|
|
2456
2492
|
cursor: Scalars['String']['output'];
|
|
2457
2493
|
node: AdminAuditLogGroupEventAction;
|
|
2458
2494
|
};
|
|
2495
|
+
export declare type AdminAuditLogProductMapping = {
|
|
2496
|
+
__typename?: 'AdminAuditLogProductMapping';
|
|
2497
|
+
app: Scalars['String']['output'];
|
|
2498
|
+
prefixes: Array<Scalars['String']['output']>;
|
|
2499
|
+
};
|
|
2459
2500
|
export declare type AdminAuthPolicyConfig = {
|
|
2460
2501
|
__typename?: 'AdminAuthPolicyConfig';
|
|
2461
2502
|
apiToken?: Maybe<AdminApiTokenConfig>;
|
|
@@ -3611,12 +3652,27 @@ export declare type AdminWorkspaceTypeEdge = {
|
|
|
3611
3652
|
cursor: Scalars['String']['output'];
|
|
3612
3653
|
node?: Maybe<AdminWorkspaceType>;
|
|
3613
3654
|
};
|
|
3655
|
+
export declare type AgentAiCitation = {
|
|
3656
|
+
__typename?: 'AgentAICitation';
|
|
3657
|
+
confidence?: Maybe<Scalars['Float']['output']>;
|
|
3658
|
+
id: Scalars['String']['output'];
|
|
3659
|
+
isInternal?: Maybe<Scalars['Boolean']['output']>;
|
|
3660
|
+
sourceId?: Maybe<Scalars['String']['output']>;
|
|
3661
|
+
sourceType: AgentAiCitationSourceType;
|
|
3662
|
+
sourceUrl?: Maybe<Scalars['String']['output']>;
|
|
3663
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
3664
|
+
};
|
|
3665
|
+
export declare enum AgentAiCitationSourceType {
|
|
3666
|
+
KbArticle = "KB_ARTICLE",
|
|
3667
|
+
SimilarIssue = "SIMILAR_ISSUE"
|
|
3668
|
+
}
|
|
3614
3669
|
export declare type AgentAiContextPanelResponse = {
|
|
3615
3670
|
__typename?: 'AgentAIContextPanelResponse';
|
|
3616
3671
|
agentSteps?: Maybe<Scalars['String']['output']>;
|
|
3617
3672
|
nextSteps?: Maybe<Scalars['String']['output']>;
|
|
3618
3673
|
reporterDetails?: Maybe<Scalars['String']['output']>;
|
|
3619
3674
|
suggestedActions?: Maybe<Array<Maybe<AgentAiSuggestAction>>>;
|
|
3675
|
+
suggestedNextSteps?: Maybe<AgentAiSuggestedNextSteps>;
|
|
3620
3676
|
summary?: Maybe<Scalars['String']['output']>;
|
|
3621
3677
|
};
|
|
3622
3678
|
export declare type AgentAiContextPanelResult = AgentAiContextPanelResponse | QueryError;
|
|
@@ -3627,10 +3683,16 @@ export declare type AgentAiIssueSummary = {
|
|
|
3627
3683
|
summary?: Maybe<AgentAiSummary>;
|
|
3628
3684
|
};
|
|
3629
3685
|
export declare type AgentAiIssueSummaryResult = AgentAiIssueSummary | QueryError;
|
|
3686
|
+
export declare type AgentAiNextStep = {
|
|
3687
|
+
__typename?: 'AgentAINextStep';
|
|
3688
|
+
content: Scalars['String']['output'];
|
|
3689
|
+
};
|
|
3630
3690
|
export declare type AgentAiPanel = {
|
|
3631
3691
|
__typename?: 'AgentAIPanel';
|
|
3632
3692
|
changesFromLastVisit?: Maybe<Scalars['String']['output']>;
|
|
3693
|
+
nextActions?: Maybe<AgentAiContextPanelResponse>;
|
|
3633
3694
|
shortSummary?: Maybe<Scalars['String']['output']>;
|
|
3695
|
+
tldrGenerationTime?: Maybe<Scalars['Long']['output']>;
|
|
3634
3696
|
};
|
|
3635
3697
|
export declare type AgentAiPanelChangesFromLastVisitArgs = {
|
|
3636
3698
|
lastActivityTime?: InputMaybe<Scalars['Long']['input']>;
|
|
@@ -3665,6 +3727,11 @@ export declare type AgentAiSuggestedActionContext = {
|
|
|
3665
3727
|
id?: Maybe<Scalars['String']['output']>;
|
|
3666
3728
|
suggestion?: Maybe<Scalars['JSON']['output']>;
|
|
3667
3729
|
};
|
|
3730
|
+
export declare type AgentAiSuggestedNextSteps = {
|
|
3731
|
+
__typename?: 'AgentAISuggestedNextSteps';
|
|
3732
|
+
citations: Array<Maybe<AgentAiCitation>>;
|
|
3733
|
+
nextSteps: Array<Maybe<AgentAiNextStep>>;
|
|
3734
|
+
};
|
|
3668
3735
|
export declare type AgentAiSummary = {
|
|
3669
3736
|
__typename?: 'AgentAISummary';
|
|
3670
3737
|
adf?: Maybe<Scalars['String']['output']>;
|
|
@@ -3732,6 +3799,7 @@ export declare type AgentStudioAgent = {
|
|
|
3732
3799
|
description?: Maybe<Scalars['String']['output']>;
|
|
3733
3800
|
etag?: Maybe<Scalars['String']['output']>;
|
|
3734
3801
|
id: Scalars['ID']['output'];
|
|
3802
|
+
isModelUpgradeAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
3735
3803
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
3736
3804
|
name?: Maybe<Scalars['String']['output']>;
|
|
3737
3805
|
permissions?: Maybe<AgentStudioAgentPermissions>;
|
|
@@ -3851,6 +3919,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
3851
3919
|
identityAccountId?: Maybe<Scalars['String']['output']>;
|
|
3852
3920
|
instructions?: Maybe<Scalars['String']['output']>;
|
|
3853
3921
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
3922
|
+
isModelUpgradeAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
3854
3923
|
isVerified?: Maybe<Scalars['Boolean']['output']>;
|
|
3855
3924
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
3856
3925
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -4391,6 +4460,7 @@ export declare type AgentStudioKnowledgeGapSuggestionArticle = {
|
|
|
4391
4460
|
containerAri?: Maybe<Scalars['String']['output']>;
|
|
4392
4461
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
4393
4462
|
description?: Maybe<Scalars['String']['output']>;
|
|
4463
|
+
draftShareId?: Maybe<Scalars['String']['output']>;
|
|
4394
4464
|
evidences?: Maybe<AgentStudioKnowledgeGapEvidences>;
|
|
4395
4465
|
id: Scalars['ID']['output'];
|
|
4396
4466
|
knowledgeCollectionId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -4487,6 +4557,10 @@ export declare type AgentStudioMessageSource = {
|
|
|
4487
4557
|
title?: Maybe<Scalars['String']['output']>;
|
|
4488
4558
|
url?: Maybe<Scalars['String']['output']>;
|
|
4489
4559
|
};
|
|
4560
|
+
export declare enum AgentStudioModelUpgradeAction {
|
|
4561
|
+
Revert = "REVERT",
|
|
4562
|
+
Upgrade = "UPGRADE"
|
|
4563
|
+
}
|
|
4490
4564
|
export declare type AgentStudioPortalChannel = AgentStudioChannel & {
|
|
4491
4565
|
__typename?: 'AgentStudioPortalChannel';
|
|
4492
4566
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -4618,6 +4692,7 @@ export declare type AgentStudioServiceAgent = AgentStudioAgent & Node & {
|
|
|
4618
4692
|
description?: Maybe<Scalars['String']['output']>;
|
|
4619
4693
|
etag?: Maybe<Scalars['String']['output']>;
|
|
4620
4694
|
id: Scalars['ID']['output'];
|
|
4695
|
+
isModelUpgradeAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
4621
4696
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
4622
4697
|
linkedJiraProject?: Maybe<JiraProject>;
|
|
4623
4698
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -4797,6 +4872,12 @@ export declare type AgentStudioUpdateAgentKnowledgeSourcesPayload = Payload & {
|
|
|
4797
4872
|
errors?: Maybe<Array<MutationError>>;
|
|
4798
4873
|
success: Scalars['Boolean']['output'];
|
|
4799
4874
|
};
|
|
4875
|
+
export declare type AgentStudioUpdateAgentModelVersionPayload = Payload & {
|
|
4876
|
+
__typename?: 'AgentStudioUpdateAgentModelVersionPayload';
|
|
4877
|
+
agent?: Maybe<AgentStudioAgent>;
|
|
4878
|
+
errors?: Maybe<Array<MutationError>>;
|
|
4879
|
+
success: Scalars['Boolean']['output'];
|
|
4880
|
+
};
|
|
4800
4881
|
export declare type AgentStudioUpdateAgentPermissionInput = {
|
|
4801
4882
|
actorRoles?: InputMaybe<Array<AgentStudioActorRoleInput>>;
|
|
4802
4883
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -5405,6 +5486,16 @@ export declare enum AgentWorkspaceEligibilityErrorCode {
|
|
|
5405
5486
|
TeamNotFound = "TEAM_NOT_FOUND",
|
|
5406
5487
|
ValidationError = "VALIDATION_ERROR"
|
|
5407
5488
|
}
|
|
5489
|
+
export declare type AgentWorkspaceEligibleGroup = {
|
|
5490
|
+
__typename?: 'AgentWorkspaceEligibleGroup';
|
|
5491
|
+
group?: Maybe<IdentityGroup>;
|
|
5492
|
+
groupAri: Scalars['ID']['output'];
|
|
5493
|
+
};
|
|
5494
|
+
export declare type AgentWorkspaceEligibleGroupsPayload = {
|
|
5495
|
+
__typename?: 'AgentWorkspaceEligibleGroupsPayload';
|
|
5496
|
+
eligibleGroups: Array<AgentWorkspaceEligibleGroup>;
|
|
5497
|
+
groupsTooLarge: Array<AgentWorkspaceGroupTooLarge>;
|
|
5498
|
+
};
|
|
5408
5499
|
export declare type AgentWorkspaceFindBestMatchAgentsInput = {
|
|
5409
5500
|
cloudId: Scalars['ID']['input'];
|
|
5410
5501
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -5418,6 +5509,11 @@ export declare type AgentWorkspaceFindBestMatchAgentsPayload = {
|
|
|
5418
5509
|
rankedAgents?: Maybe<Array<AgentWorkspaceRankedAgent>>;
|
|
5419
5510
|
success: Scalars['Boolean']['output'];
|
|
5420
5511
|
};
|
|
5512
|
+
export declare type AgentWorkspaceGroupTooLarge = {
|
|
5513
|
+
__typename?: 'AgentWorkspaceGroupTooLarge';
|
|
5514
|
+
group?: Maybe<IdentityGroup>;
|
|
5515
|
+
groupAri: Scalars['ID']['output'];
|
|
5516
|
+
};
|
|
5421
5517
|
export declare type AgentWorkspaceHierarchyDefinition = {
|
|
5422
5518
|
__typename?: 'AgentWorkspaceHierarchyDefinition';
|
|
5423
5519
|
catalogTypes?: Maybe<Array<AgentWorkspaceCatalogType>>;
|
|
@@ -5688,9 +5784,14 @@ export declare type AgentWorkspaceShift = {
|
|
|
5688
5784
|
startTime: Scalars['DateTime']['output'];
|
|
5689
5785
|
user?: Maybe<User>;
|
|
5690
5786
|
};
|
|
5787
|
+
export declare type AgentWorkspaceShiftsAppliedFilters = {
|
|
5788
|
+
__typename?: 'AgentWorkspaceShiftsAppliedFilters';
|
|
5789
|
+
agentIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
5790
|
+
};
|
|
5691
5791
|
export declare type AgentWorkspaceShiftsConnection = {
|
|
5692
5792
|
__typename?: 'AgentWorkspaceShiftsConnection';
|
|
5693
5793
|
edges: Array<AgentWorkspaceAgentShiftsEdge>;
|
|
5794
|
+
initialFilters?: Maybe<AgentWorkspaceShiftsAppliedFilters>;
|
|
5694
5795
|
metadata: AgentWorkspaceShiftsMetadata;
|
|
5695
5796
|
pageInfo: AgentWorkspaceAgentsPageInfo;
|
|
5696
5797
|
summary: AgentWorkspaceShiftsSummary;
|
|
@@ -5708,6 +5809,7 @@ export declare type AgentWorkspaceShiftsQueryInput = {
|
|
|
5708
5809
|
agentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5709
5810
|
cloudId: Scalars['ID']['input'];
|
|
5710
5811
|
endTime: Scalars['DateTime']['input'];
|
|
5812
|
+
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5711
5813
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
5712
5814
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
5713
5815
|
scheduleIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -5850,6 +5952,7 @@ export declare type AgentWorkspaceTeamSchedules = {
|
|
|
5850
5952
|
export declare type AgentWorkspaceTeamSchedulesConnection = {
|
|
5851
5953
|
__typename?: 'AgentWorkspaceTeamSchedulesConnection';
|
|
5852
5954
|
edges: Array<AgentWorkspaceTeamSchedulesEdge>;
|
|
5955
|
+
initialFilters?: Maybe<AgentWorkspaceAppliedFilters>;
|
|
5853
5956
|
pageInfo: AgentWorkspaceTeamsPageInfo;
|
|
5854
5957
|
summary: AgentWorkspaceTeamSchedulesSummary;
|
|
5855
5958
|
};
|
|
@@ -5861,6 +5964,7 @@ export declare type AgentWorkspaceTeamSchedulesEdge = {
|
|
|
5861
5964
|
export declare type AgentWorkspaceTeamSchedulesQueryInput = {
|
|
5862
5965
|
cloudId: Scalars['ID']['input'];
|
|
5863
5966
|
endTime: Scalars['DateTime']['input'];
|
|
5967
|
+
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5864
5968
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
5865
5969
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
5866
5970
|
startTime: Scalars['DateTime']['input'];
|
|
@@ -10388,15 +10492,12 @@ export declare type AssetsVerticalAsyncBundleActionErrorResponse = {
|
|
|
10388
10492
|
errors?: Maybe<Array<AssetsVerticalAsyncBundleActionError>>;
|
|
10389
10493
|
};
|
|
10390
10494
|
export declare type AssetsVerticalAsyncBundleActionResult = AssetsVerticalAsyncBundleActionErrorResponse | AssetsVerticalAsyncTaskPayload;
|
|
10391
|
-
export declare type AssetsVerticalAsyncTaskPayload = {
|
|
10495
|
+
export declare type AssetsVerticalAsyncTaskPayload = Payload & {
|
|
10392
10496
|
__typename?: 'AssetsVerticalAsyncTaskPayload';
|
|
10497
|
+
errors?: Maybe<Array<MutationError>>;
|
|
10498
|
+
success: Scalars['Boolean']['output'];
|
|
10393
10499
|
taskId: Scalars['String']['output'];
|
|
10394
10500
|
};
|
|
10395
|
-
export declare enum AssetsVerticalAttributeCategory {
|
|
10396
|
-
Hardwares = "HARDWARES",
|
|
10397
|
-
Models = "MODELS",
|
|
10398
|
-
Stockrooms = "STOCKROOMS"
|
|
10399
|
-
}
|
|
10400
10501
|
export declare type AssetsVerticalAttributeDetailsInput = {
|
|
10401
10502
|
otId: Scalars['String']['input'];
|
|
10402
10503
|
otaId: Scalars['String']['input'];
|
|
@@ -10407,7 +10508,7 @@ export declare type AssetsVerticalAttributeValuesFailure = {
|
|
|
10407
10508
|
};
|
|
10408
10509
|
export declare type AssetsVerticalAttributeValuesInput = {
|
|
10409
10510
|
attributes: Array<AssetsVerticalAttributeDetailsInput>;
|
|
10410
|
-
category:
|
|
10511
|
+
category: AssetsVerticalObjectTypeCategory;
|
|
10411
10512
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
10412
10513
|
verticalInstantiationId: Scalars['ID']['input'];
|
|
10413
10514
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -10436,6 +10537,11 @@ export declare type AssetsVerticalBundle = {
|
|
|
10436
10537
|
export declare enum AssetsVerticalBundleActionErrorCode {
|
|
10437
10538
|
Conflict = "CONFLICT"
|
|
10438
10539
|
}
|
|
10540
|
+
export declare type AssetsVerticalBundleActionErrorExtension = MutationErrorExtension & {
|
|
10541
|
+
__typename?: 'AssetsVerticalBundleActionErrorExtension';
|
|
10542
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
10543
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
10544
|
+
};
|
|
10439
10545
|
export declare enum AssetsVerticalBundleType {
|
|
10440
10546
|
Cdm = "CDM",
|
|
10441
10547
|
Osc = "OSC"
|
|
@@ -10445,7 +10551,7 @@ export declare type AssetsVerticalCountByStatus = {
|
|
|
10445
10551
|
counts?: Maybe<Array<Maybe<AssetsVerticalStatusCount>>>;
|
|
10446
10552
|
};
|
|
10447
10553
|
export declare type AssetsVerticalCountByStatusInput = {
|
|
10448
|
-
category:
|
|
10554
|
+
category: AssetsVerticalObjectTypeCategory;
|
|
10449
10555
|
filters?: InputMaybe<Array<InputMaybe<Array<InputMaybe<AssetsVerticalObjectsFilterCondition>>>>>;
|
|
10450
10556
|
statusField: Scalars['String']['input'];
|
|
10451
10557
|
statuses: Array<Scalars['String']['input']>;
|
|
@@ -10493,6 +10599,10 @@ export declare enum AssetsVerticalInsightsStatus {
|
|
|
10493
10599
|
NotStarted = "NOT_STARTED",
|
|
10494
10600
|
Pending = "PENDING"
|
|
10495
10601
|
}
|
|
10602
|
+
export declare type AssetsVerticalInstantiateBundleByTypeInput = {
|
|
10603
|
+
cloudId: Scalars['ID']['input'];
|
|
10604
|
+
type: AssetsVerticalBundleType;
|
|
10605
|
+
};
|
|
10496
10606
|
export declare type AssetsVerticalInventoryError = {
|
|
10497
10607
|
__typename?: 'AssetsVerticalInventoryError';
|
|
10498
10608
|
code?: Maybe<AssetsVerticalInventoryErrorCode>;
|
|
@@ -10536,6 +10646,11 @@ export declare type AssetsVerticalObjectNode = {
|
|
|
10536
10646
|
name?: Maybe<Scalars['String']['output']>;
|
|
10537
10647
|
objectKey?: Maybe<Scalars['String']['output']>;
|
|
10538
10648
|
};
|
|
10649
|
+
export declare enum AssetsVerticalObjectTypeCategory {
|
|
10650
|
+
Hardwares = "HARDWARES",
|
|
10651
|
+
Models = "MODELS",
|
|
10652
|
+
Stockrooms = "STOCKROOMS"
|
|
10653
|
+
}
|
|
10539
10654
|
export declare type AssetsVerticalObjectsFilterCondition = {
|
|
10540
10655
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
10541
10656
|
operator?: InputMaybe<AssetsVerticalObjectsFilterOperator>;
|
|
@@ -10546,6 +10661,26 @@ export declare enum AssetsVerticalObjectsFilterOperator {
|
|
|
10546
10661
|
In = "IN",
|
|
10547
10662
|
Like = "LIKE"
|
|
10548
10663
|
}
|
|
10664
|
+
export declare type AssetsVerticalObjectsInput = {
|
|
10665
|
+
category: AssetsVerticalObjectTypeCategory;
|
|
10666
|
+
filters?: InputMaybe<Array<InputMaybe<Array<InputMaybe<AssetsVerticalObjectsFilterCondition>>>>>;
|
|
10667
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
10668
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
10669
|
+
orderDirection?: InputMaybe<AssetsVerticalObjectsOrderDirection>;
|
|
10670
|
+
orderKey?: InputMaybe<Scalars['String']['input']>;
|
|
10671
|
+
};
|
|
10672
|
+
export declare enum AssetsVerticalObjectsOrderDirection {
|
|
10673
|
+
Asc = "ASC",
|
|
10674
|
+
Desc = "DESC"
|
|
10675
|
+
}
|
|
10676
|
+
export declare type AssetsVerticalObjectsResult = AssetsVerticalObjectsSuccess | QueryError;
|
|
10677
|
+
export declare type AssetsVerticalObjectsSuccess = {
|
|
10678
|
+
__typename?: 'AssetsVerticalObjectsSuccess';
|
|
10679
|
+
objects?: Maybe<Array<Maybe<AssetsObject>>>;
|
|
10680
|
+
offset?: Maybe<Scalars['Int']['output']>;
|
|
10681
|
+
pageInfo?: Maybe<PageInfo>;
|
|
10682
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
10683
|
+
};
|
|
10549
10684
|
export declare type AssetsVerticalSchemaTemplate = {
|
|
10550
10685
|
__typename?: 'AssetsVerticalSchemaTemplate';
|
|
10551
10686
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -13547,6 +13682,17 @@ export declare type CcpQuoteUpcomingBillsLine = {
|
|
|
13547
13682
|
taxPercent?: Maybe<Scalars['Float']['output']>;
|
|
13548
13683
|
total?: Maybe<Scalars['Float']['output']>;
|
|
13549
13684
|
};
|
|
13685
|
+
export declare type CcpRecommendCollectionExperienceCapability = {
|
|
13686
|
+
__typename?: 'CcpRecommendCollectionExperienceCapability';
|
|
13687
|
+
createCollection?: Maybe<CcpCreateEntitlementExperienceCapability>;
|
|
13688
|
+
entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
13689
|
+
offering?: Maybe<CcpOffering>;
|
|
13690
|
+
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
13691
|
+
};
|
|
13692
|
+
export declare type CcpRecommendCollectionExperienceCapabilityCreateCollectionArgs = {
|
|
13693
|
+
experienceOptions?: InputMaybe<CcpCreateEntitlementExperienceOptions>;
|
|
13694
|
+
orderOptions?: InputMaybe<CcpCreateEntitlementOrderOptions>;
|
|
13695
|
+
};
|
|
13550
13696
|
export declare type CcpRelationshipCardinality = {
|
|
13551
13697
|
__typename?: 'CcpRelationshipCardinality';
|
|
13552
13698
|
max?: Maybe<Scalars['Int']['output']>;
|
|
@@ -13596,10 +13742,15 @@ export declare enum CcpRelationshipType {
|
|
|
13596
13742
|
export declare type CcpRootExperienceCapabilities = {
|
|
13597
13743
|
__typename?: 'CcpRootExperienceCapabilities';
|
|
13598
13744
|
createEntitlement?: Maybe<CcpCreateEntitlementExperienceCapability>;
|
|
13745
|
+
recommendCollection?: Maybe<CcpRecommendCollectionExperienceCapability>;
|
|
13599
13746
|
};
|
|
13600
13747
|
export declare type CcpRootExperienceCapabilitiesCreateEntitlementArgs = {
|
|
13601
13748
|
input: CcpCreateEntitlementInput;
|
|
13602
13749
|
};
|
|
13750
|
+
export declare type CcpRootExperienceCapabilitiesRecommendCollectionArgs = {
|
|
13751
|
+
entitlementIds: Array<Scalars['ID']['input']>;
|
|
13752
|
+
productKey?: InputMaybe<Scalars['String']['input']>;
|
|
13753
|
+
};
|
|
13603
13754
|
export declare type CcpScheduledChanges = {
|
|
13604
13755
|
__typename?: 'CcpScheduledChanges';
|
|
13605
13756
|
nextCycleChange?: Maybe<CcpNextCycleChange>;
|
|
@@ -14215,6 +14366,7 @@ export declare type ChildContentTypesAvailable = {
|
|
|
14215
14366
|
blogpost?: Maybe<Scalars['Boolean']['output']>;
|
|
14216
14367
|
comment?: Maybe<Scalars['Boolean']['output']>;
|
|
14217
14368
|
page?: Maybe<Scalars['Boolean']['output']>;
|
|
14369
|
+
slide?: Maybe<Scalars['Boolean']['output']>;
|
|
14218
14370
|
};
|
|
14219
14371
|
export declare enum Classification {
|
|
14220
14372
|
Other = "other",
|
|
@@ -14598,6 +14750,7 @@ export declare enum CommentCreationLocation {
|
|
|
14598
14750
|
Editor = "EDITOR",
|
|
14599
14751
|
Live = "LIVE",
|
|
14600
14752
|
Renderer = "RENDERER",
|
|
14753
|
+
Slide = "SLIDE",
|
|
14601
14754
|
Whiteboard = "WHITEBOARD"
|
|
14602
14755
|
}
|
|
14603
14756
|
export declare enum CommentDeletionLocation {
|
|
@@ -15411,6 +15564,7 @@ export declare type CommerceExpCcpMutation = {
|
|
|
15411
15564
|
setupIntent?: Maybe<CommerceExpSetupIntentPayload>;
|
|
15412
15565
|
updateInvoiceGroup?: Maybe<CommerceExpUpdateInvoiceGroupPayload>;
|
|
15413
15566
|
updatePaymentMethodInInvoiceGroups?: Maybe<CommerceExpUpdatePaymentMethodInInvoiceGroupsPayload>;
|
|
15567
|
+
updatePrimaryContact?: Maybe<CommerceExpUpdatePrimaryContactPayload>;
|
|
15414
15568
|
updateTransactionAccount?: Maybe<CommerceExpUpdateTransactionAccountPayload>;
|
|
15415
15569
|
};
|
|
15416
15570
|
export declare type CommerceExpCcpMutationActivateEntitlementsArgs = {
|
|
@@ -15484,6 +15638,10 @@ export declare type CommerceExpCcpMutationUpdatePaymentMethodInInvoiceGroupsArgs
|
|
|
15484
15638
|
defaultPaymentMethod: Scalars['String']['input'];
|
|
15485
15639
|
ids: Array<Scalars['ID']['input']>;
|
|
15486
15640
|
};
|
|
15641
|
+
export declare type CommerceExpCcpMutationUpdatePrimaryContactArgs = {
|
|
15642
|
+
input: CommerceExpUpdatePrimaryContactInput;
|
|
15643
|
+
txaId: Scalars['ID']['input'];
|
|
15644
|
+
};
|
|
15487
15645
|
export declare type CommerceExpCcpMutationUpdateTransactionAccountArgs = {
|
|
15488
15646
|
input: CommerceExpTransactionAccountInput;
|
|
15489
15647
|
transactionAccountId: Scalars['ID']['input'];
|
|
@@ -16543,8 +16701,12 @@ export declare type CommerceExpEndsAt = {
|
|
|
16543
16701
|
};
|
|
16544
16702
|
export declare type CommerceExpEnterpriseGatekeeper = {
|
|
16545
16703
|
__typename?: 'CommerceExpEnterpriseGatekeeper';
|
|
16704
|
+
forecasting?: Maybe<CommerceExpForecastingOutput>;
|
|
16546
16705
|
organisations?: Maybe<Array<Maybe<CommerceExpOrganisation>>>;
|
|
16547
16706
|
};
|
|
16707
|
+
export declare type CommerceExpEnterpriseGatekeeperForecastingArgs = {
|
|
16708
|
+
input: CommerceExpForecastingApiInput;
|
|
16709
|
+
};
|
|
16548
16710
|
export declare type CommerceExpEnterpriseInstanceFilter = {
|
|
16549
16711
|
status?: InputMaybe<CommerceExpEntitlementStatus>;
|
|
16550
16712
|
};
|
|
@@ -16612,6 +16774,7 @@ export declare type CommerceExpEntitlementFilter = {
|
|
|
16612
16774
|
excludedProductKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
16613
16775
|
includeFutureDated?: InputMaybe<Scalars['Boolean']['input']>;
|
|
16614
16776
|
includeManuallyBilled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
16777
|
+
invoiceGroupIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
16615
16778
|
isSandbox?: InputMaybe<Scalars['Boolean']['input']>;
|
|
16616
16779
|
pricingPlanTypes?: InputMaybe<Array<CommerceExpCcpPricingType>>;
|
|
16617
16780
|
productKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -16760,6 +16923,28 @@ export declare type CommerceExpExpectedBillsLineItem = {
|
|
|
16760
16923
|
taxItems?: Maybe<Array<Maybe<CommerceExpTaxItemsResponse>>>;
|
|
16761
16924
|
total?: Maybe<Scalars['Float']['output']>;
|
|
16762
16925
|
};
|
|
16926
|
+
export declare type CommerceExpForecastResult = {
|
|
16927
|
+
__typename?: 'CommerceExpForecastResult';
|
|
16928
|
+
extraUsageHigh?: Maybe<Scalars['Float']['output']>;
|
|
16929
|
+
extraUsageLow?: Maybe<Scalars['Float']['output']>;
|
|
16930
|
+
totalUsageHigh?: Maybe<Scalars['Float']['output']>;
|
|
16931
|
+
totalUsageLow?: Maybe<Scalars['Float']['output']>;
|
|
16932
|
+
};
|
|
16933
|
+
export declare type CommerceExpForecastingApiInput = {
|
|
16934
|
+
entityId: Scalars['ID']['input'];
|
|
16935
|
+
entityType: CommerceExpForecastingEntityType;
|
|
16936
|
+
meterId: Scalars['ID']['input'];
|
|
16937
|
+
orgId: Scalars['ID']['input'];
|
|
16938
|
+
};
|
|
16939
|
+
export declare enum CommerceExpForecastingEntityType {
|
|
16940
|
+
AllocationGroup = "ALLOCATION_GROUP",
|
|
16941
|
+
Entitlement = "ENTITLEMENT"
|
|
16942
|
+
}
|
|
16943
|
+
export declare type CommerceExpForecastingOutput = {
|
|
16944
|
+
__typename?: 'CommerceExpForecastingOutput';
|
|
16945
|
+
forecasts?: Maybe<CommerceExpForecastResult>;
|
|
16946
|
+
unit?: Maybe<Scalars['String']['output']>;
|
|
16947
|
+
};
|
|
16763
16948
|
export declare type CommerceExpGenericEntitlementActionResult = CommerceExpEntitlementActionResult & {
|
|
16764
16949
|
__typename?: 'CommerceExpGenericEntitlementActionResult';
|
|
16765
16950
|
experienceType?: Maybe<CommerceExpEntitlementActionExperienceType>;
|
|
@@ -18407,6 +18592,18 @@ export declare type CommerceExpUpdatePaymentMethodInInvoiceGroupsPayload = Comme
|
|
|
18407
18592
|
errors?: Maybe<Array<MutationError>>;
|
|
18408
18593
|
success: Scalars['Boolean']['output'];
|
|
18409
18594
|
};
|
|
18595
|
+
export declare type CommerceExpUpdatePrimaryContactInput = {
|
|
18596
|
+
contactType: CommerceExpContactType;
|
|
18597
|
+
customerType: CommerceExpCustomerType;
|
|
18598
|
+
existingPrimaryPrincipalAri?: InputMaybe<Scalars['String']['input']>;
|
|
18599
|
+
newPrimaryPrincipalAri: Scalars['String']['input'];
|
|
18600
|
+
resourceAri: Scalars['String']['input'];
|
|
18601
|
+
};
|
|
18602
|
+
export declare type CommerceExpUpdatePrimaryContactPayload = CommerceExpMutationPayload & {
|
|
18603
|
+
__typename?: 'CommerceExpUpdatePrimaryContactPayload';
|
|
18604
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18605
|
+
success: Scalars['Boolean']['output'];
|
|
18606
|
+
};
|
|
18410
18607
|
export declare type CommerceExpUpdateShipToPartyPayload = CommerceExpMutationPayload & {
|
|
18411
18608
|
__typename?: 'CommerceExpUpdateShipToPartyPayload';
|
|
18412
18609
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -23899,6 +24096,9 @@ export declare type ConfluenceAdvancedDiagramsFeature = {
|
|
|
23899
24096
|
__typename?: 'ConfluenceAdvancedDiagramsFeature';
|
|
23900
24097
|
isEntitled: Scalars['Boolean']['output'];
|
|
23901
24098
|
};
|
|
24099
|
+
export declare enum ConfluenceAggregationDimension {
|
|
24100
|
+
PerformanceRating = "PERFORMANCE_RATING"
|
|
24101
|
+
}
|
|
23902
24102
|
export declare enum ConfluenceAnalyticsCommentContentType {
|
|
23903
24103
|
Database = "database",
|
|
23904
24104
|
Page = "page",
|
|
@@ -24213,6 +24413,12 @@ export declare enum ConfluenceBodyRepresentation {
|
|
|
24213
24413
|
View = "VIEW",
|
|
24214
24414
|
WhiteboardDocFormat = "WHITEBOARD_DOC_FORMAT"
|
|
24215
24415
|
}
|
|
24416
|
+
export declare type ConfluenceBucketDefinition = {
|
|
24417
|
+
__typename?: 'ConfluenceBucketDefinition';
|
|
24418
|
+
max?: Maybe<Scalars['Float']['output']>;
|
|
24419
|
+
min?: Maybe<Scalars['Float']['output']>;
|
|
24420
|
+
unit: Scalars['String']['output'];
|
|
24421
|
+
};
|
|
24216
24422
|
export declare type ConfluenceBulkNestedConvertToLiveDocsPayload = {
|
|
24217
24423
|
__typename?: 'ConfluenceBulkNestedConvertToLiveDocsPayload';
|
|
24218
24424
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -24737,6 +24943,75 @@ export declare type ConfluenceContentNativeProperties = {
|
|
|
24737
24943
|
current?: Maybe<ConfluenceCurrentContentNativeProperties>;
|
|
24738
24944
|
draft?: Maybe<ConfluenceDraftContentNativeProperties>;
|
|
24739
24945
|
};
|
|
24946
|
+
export declare type ConfluenceContentPerformance = {
|
|
24947
|
+
__typename?: 'ConfluenceContentPerformance';
|
|
24948
|
+
content: ConfluenceContentPerformanceContent;
|
|
24949
|
+
contentOwner: ConfluenceContentPerformanceUser;
|
|
24950
|
+
contentType: ConfluenceContentPerformanceContentType;
|
|
24951
|
+
id: Scalars['ID']['output'];
|
|
24952
|
+
loadTimeRating: ConfluenceLoadTimeRating;
|
|
24953
|
+
medianLoadTime: Scalars['Float']['output'];
|
|
24954
|
+
operations: Array<Maybe<ConfluenceContentPerformanceOperationCheckResult>>;
|
|
24955
|
+
space: ConfluenceContentPerformanceSpace;
|
|
24956
|
+
views: Scalars['Int']['output'];
|
|
24957
|
+
};
|
|
24958
|
+
export declare type ConfluenceContentPerformanceConnection = {
|
|
24959
|
+
__typename?: 'ConfluenceContentPerformanceConnection';
|
|
24960
|
+
edges: Array<Maybe<ConfluenceContentPerformanceEdge>>;
|
|
24961
|
+
nodes: Array<Maybe<ConfluenceContentPerformance>>;
|
|
24962
|
+
pageInfo: ConfluenceContentPerformancePageInfo;
|
|
24963
|
+
totalCount: Scalars['Int']['output'];
|
|
24964
|
+
};
|
|
24965
|
+
export declare type ConfluenceContentPerformanceContent = {
|
|
24966
|
+
__typename?: 'ConfluenceContentPerformanceContent';
|
|
24967
|
+
contentId: Scalars['ID']['output'];
|
|
24968
|
+
contentTitle: Scalars['String']['output'];
|
|
24969
|
+
link: Scalars['String']['output'];
|
|
24970
|
+
};
|
|
24971
|
+
export declare enum ConfluenceContentPerformanceContentType {
|
|
24972
|
+
BlogPost = "BLOG_POST",
|
|
24973
|
+
LivePage = "LIVE_PAGE",
|
|
24974
|
+
Page = "PAGE"
|
|
24975
|
+
}
|
|
24976
|
+
export declare type ConfluenceContentPerformanceEdge = {
|
|
24977
|
+
__typename?: 'ConfluenceContentPerformanceEdge';
|
|
24978
|
+
cursor: Scalars['String']['output'];
|
|
24979
|
+
node: ConfluenceContentPerformance;
|
|
24980
|
+
};
|
|
24981
|
+
export declare type ConfluenceContentPerformanceFilters = {
|
|
24982
|
+
contentType?: InputMaybe<Array<InputMaybe<ConfluenceContentPerformanceContentType>>>;
|
|
24983
|
+
ownerId?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
24984
|
+
rating?: InputMaybe<Array<InputMaybe<ConfluenceLoadTimeRating>>>;
|
|
24985
|
+
spaceId?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
24986
|
+
};
|
|
24987
|
+
export declare type ConfluenceContentPerformanceOperationCheckResult = {
|
|
24988
|
+
__typename?: 'ConfluenceContentPerformanceOperationCheckResult';
|
|
24989
|
+
operation: Scalars['String']['output'];
|
|
24990
|
+
targetType: Scalars['String']['output'];
|
|
24991
|
+
};
|
|
24992
|
+
export declare type ConfluenceContentPerformancePageInfo = {
|
|
24993
|
+
__typename?: 'ConfluenceContentPerformancePageInfo';
|
|
24994
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
24995
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
24996
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
24997
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
24998
|
+
};
|
|
24999
|
+
export declare type ConfluenceContentPerformanceSpace = {
|
|
25000
|
+
__typename?: 'ConfluenceContentPerformanceSpace';
|
|
25001
|
+
id: Scalars['ID']['output'];
|
|
25002
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
25003
|
+
};
|
|
25004
|
+
export declare type ConfluenceContentPerformanceSummary = {
|
|
25005
|
+
__typename?: 'ConfluenceContentPerformanceSummary';
|
|
25006
|
+
distribution: ConfluencePerformanceDistribution;
|
|
25007
|
+
totalContent: Scalars['Int']['output'];
|
|
25008
|
+
};
|
|
25009
|
+
export declare type ConfluenceContentPerformanceUser = {
|
|
25010
|
+
__typename?: 'ConfluenceContentPerformanceUser';
|
|
25011
|
+
displayName: Scalars['String']['output'];
|
|
25012
|
+
id: Scalars['ID']['output'];
|
|
25013
|
+
profilePictureUrl?: Maybe<Scalars['String']['output']>;
|
|
25014
|
+
};
|
|
24740
25015
|
export declare type ConfluenceContentPermission = {
|
|
24741
25016
|
__typename?: 'ConfluenceContentPermission';
|
|
24742
25017
|
permissionType?: Maybe<ContentPermissionType>;
|
|
@@ -26264,6 +26539,11 @@ export declare type ConfluenceLikesSummary = {
|
|
|
26264
26539
|
count?: Maybe<Scalars['Int']['output']>;
|
|
26265
26540
|
likes?: Maybe<Array<Maybe<ConfluenceLike>>>;
|
|
26266
26541
|
};
|
|
26542
|
+
export declare enum ConfluenceLoadTimeRating {
|
|
26543
|
+
Fast = "FAST",
|
|
26544
|
+
Moderate = "MODERATE",
|
|
26545
|
+
Slow = "SLOW"
|
|
26546
|
+
}
|
|
26267
26547
|
export declare type ConfluenceLoginSettings = {
|
|
26268
26548
|
__typename?: 'ConfluenceLoginSettings';
|
|
26269
26549
|
enableElevatedSecurityCheck?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -26708,6 +26988,11 @@ export declare type ConfluenceNbmChainsForTransformationNode = {
|
|
|
26708
26988
|
isReadyForTransformation?: Maybe<Scalars['Boolean']['output']>;
|
|
26709
26989
|
suggestion?: Maybe<Scalars['String']['output']>;
|
|
26710
26990
|
};
|
|
26991
|
+
export declare type ConfluenceNbmConfigurableTransformer = {
|
|
26992
|
+
__typename?: 'ConfluenceNbmConfigurableTransformer';
|
|
26993
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
26994
|
+
name: Scalars['String']['output'];
|
|
26995
|
+
};
|
|
26711
26996
|
export declare type ConfluenceNbmExecuteTestTransformationInput = {
|
|
26712
26997
|
chain: Scalars['String']['input'];
|
|
26713
26998
|
scanId: Scalars['ID']['input'];
|
|
@@ -27025,6 +27310,10 @@ export declare type ConfluenceNbmTransformerConfig = {
|
|
|
27025
27310
|
__typename?: 'ConfluenceNbmTransformerConfig';
|
|
27026
27311
|
transformerNames: Array<Maybe<Scalars['String']['output']>>;
|
|
27027
27312
|
};
|
|
27313
|
+
export declare type ConfluenceNbmTransformers = {
|
|
27314
|
+
__typename?: 'ConfluenceNbmTransformers';
|
|
27315
|
+
transformers: Array<Maybe<ConfluenceNbmConfigurableTransformer>>;
|
|
27316
|
+
};
|
|
27028
27317
|
export declare type ConfluenceNbmUploadTransformerConfigInput = {
|
|
27029
27318
|
scanId: Scalars['ID']['input'];
|
|
27030
27319
|
transformerNames: Array<InputMaybe<Scalars['String']['input']>>;
|
|
@@ -27522,6 +27811,17 @@ export declare type ConfluencePendingAccessRequest = {
|
|
|
27522
27811
|
__typename?: 'ConfluencePendingAccessRequest';
|
|
27523
27812
|
isPendingAccessRequestExists?: Maybe<Scalars['Boolean']['output']>;
|
|
27524
27813
|
};
|
|
27814
|
+
export declare type ConfluencePerformanceBucket = {
|
|
27815
|
+
__typename?: 'ConfluencePerformanceBucket';
|
|
27816
|
+
count: Scalars['Int']['output'];
|
|
27817
|
+
definition: ConfluenceBucketDefinition;
|
|
27818
|
+
key: Scalars['String']['output'];
|
|
27819
|
+
percentage?: Maybe<Scalars['Float']['output']>;
|
|
27820
|
+
};
|
|
27821
|
+
export declare type ConfluencePerformanceDistribution = {
|
|
27822
|
+
__typename?: 'ConfluencePerformanceDistribution';
|
|
27823
|
+
buckets: Array<Maybe<ConfluencePerformanceBucket>>;
|
|
27824
|
+
};
|
|
27525
27825
|
export declare enum ConfluencePermission {
|
|
27526
27826
|
Edit = "EDIT",
|
|
27527
27827
|
Share = "SHARE",
|
|
@@ -27783,10 +28083,6 @@ export declare type ConfluencePromotePageTemplatePayload = Payload & {
|
|
|
27783
28083
|
errors?: Maybe<Array<MutationError>>;
|
|
27784
28084
|
success: Scalars['Boolean']['output'];
|
|
27785
28085
|
};
|
|
27786
|
-
export declare enum ConfluencePublicLinkAccessType {
|
|
27787
|
-
External = "EXTERNAL",
|
|
27788
|
-
InternalLicensed = "INTERNAL_LICENSED"
|
|
27789
|
-
}
|
|
27790
28086
|
export declare type ConfluencePublishBlogPostInput = {
|
|
27791
28087
|
id: Scalars['ID']['input'];
|
|
27792
28088
|
publishTitle?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -28433,6 +28729,40 @@ export declare type ConfluenceShareContentPayload = Payload & {
|
|
|
28433
28729
|
success: Scalars['Boolean']['output'];
|
|
28434
28730
|
triggerId?: Maybe<Scalars['String']['output']>;
|
|
28435
28731
|
};
|
|
28732
|
+
export declare enum ConfluenceShareableLinkAccessType {
|
|
28733
|
+
External = "EXTERNAL",
|
|
28734
|
+
InternalLicensed = "INTERNAL_LICENSED"
|
|
28735
|
+
}
|
|
28736
|
+
export declare type ConfluenceShareableLinkSiteConfig = {
|
|
28737
|
+
__typename?: 'ConfluenceShareableLinkSiteConfig';
|
|
28738
|
+
siteConfigs: Array<Maybe<ConfluenceShareableLinkSiteSetting>>;
|
|
28739
|
+
};
|
|
28740
|
+
export declare type ConfluenceShareableLinkSiteSetting = {
|
|
28741
|
+
__typename?: 'ConfluenceShareableLinkSiteSetting';
|
|
28742
|
+
accessType: ConfluenceShareableLinkAccessType;
|
|
28743
|
+
status: ConfluenceShareableLinkSiteStatus;
|
|
28744
|
+
};
|
|
28745
|
+
export declare enum ConfluenceShareableLinkSiteStatus {
|
|
28746
|
+
BlockedByOrg = "BLOCKED_BY_ORG",
|
|
28747
|
+
Off = "OFF",
|
|
28748
|
+
On = "ON"
|
|
28749
|
+
}
|
|
28750
|
+
export declare type ConfluenceShareableLinkSpaceConfig = {
|
|
28751
|
+
__typename?: 'ConfluenceShareableLinkSpaceConfig';
|
|
28752
|
+
spaceConfigs?: Maybe<Array<Maybe<ConfluenceShareableLinkSpaceSetting>>>;
|
|
28753
|
+
};
|
|
28754
|
+
export declare type ConfluenceShareableLinkSpaceSetting = {
|
|
28755
|
+
__typename?: 'ConfluenceShareableLinkSpaceSetting';
|
|
28756
|
+
accessType: ConfluenceShareableLinkAccessType;
|
|
28757
|
+
status: ConfluenceShareableLinkSpaceStatus;
|
|
28758
|
+
};
|
|
28759
|
+
export declare enum ConfluenceShareableLinkSpaceStatus {
|
|
28760
|
+
BlockedByContainerPolicy = "BLOCKED_BY_CONTAINER_POLICY",
|
|
28761
|
+
BlockedByOrg = "BLOCKED_BY_ORG",
|
|
28762
|
+
BlockedByProduct = "BLOCKED_BY_PRODUCT",
|
|
28763
|
+
Off = "OFF",
|
|
28764
|
+
On = "ON"
|
|
28765
|
+
}
|
|
28436
28766
|
export declare type ConfluenceSiteConfiguration = {
|
|
28437
28767
|
__typename?: 'ConfluenceSiteConfiguration';
|
|
28438
28768
|
attachmentSettings?: Maybe<ConfluenceAttachmentSettings>;
|
|
@@ -28487,11 +28817,56 @@ export declare enum ConfluenceSiteEmailAddressStatus {
|
|
|
28487
28817
|
Inactive = "INACTIVE",
|
|
28488
28818
|
SiteEmailAddressNotPresent = "SITE_EMAIL_ADDRESS_NOT_PRESENT"
|
|
28489
28819
|
}
|
|
28820
|
+
export declare type ConfluenceSlide = Node & {
|
|
28821
|
+
__typename?: 'ConfluenceSlide';
|
|
28822
|
+
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
28823
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
28824
|
+
commentCountSummary?: Maybe<ConfluenceCommentCountSummary>;
|
|
28825
|
+
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
28826
|
+
hasRestrictions: Scalars['Boolean']['output'];
|
|
28827
|
+
id: Scalars['ID']['output'];
|
|
28828
|
+
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
28829
|
+
links?: Maybe<ConfluenceSlideLinks>;
|
|
28830
|
+
owner?: Maybe<ConfluenceUserInfo>;
|
|
28831
|
+
slideId: Scalars['ID']['output'];
|
|
28832
|
+
space?: Maybe<ConfluenceSpace>;
|
|
28833
|
+
status?: Maybe<ConfluenceContentStatus>;
|
|
28834
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
28835
|
+
type?: Maybe<ConfluenceContentType>;
|
|
28836
|
+
viewer?: Maybe<ConfluenceContentViewerSummary>;
|
|
28837
|
+
};
|
|
28838
|
+
export declare type ConfluenceSlideCommentsArgs = {
|
|
28839
|
+
commentType?: InputMaybe<ConfluenceCommentType>;
|
|
28840
|
+
};
|
|
28841
|
+
export declare type ConfluenceSlideLinks = {
|
|
28842
|
+
__typename?: 'ConfluenceSlideLinks';
|
|
28843
|
+
base?: Maybe<Scalars['String']['output']>;
|
|
28844
|
+
webUi?: Maybe<Scalars['String']['output']>;
|
|
28845
|
+
};
|
|
28490
28846
|
export declare type ConfluenceSmartSpaceOverview = {
|
|
28491
28847
|
__typename?: 'ConfluenceSmartSpaceOverview';
|
|
28848
|
+
faq?: Maybe<ConfluenceSmartSpaceOverviewFaq>;
|
|
28492
28849
|
summary?: Maybe<ConfluenceSmartSpaceOverviewSummary>;
|
|
28493
28850
|
topLinks?: Maybe<ConfluenceSmartSpaceOverviewTopLinks>;
|
|
28494
28851
|
};
|
|
28852
|
+
export declare type ConfluenceSmartSpaceOverviewFaq = {
|
|
28853
|
+
__typename?: 'ConfluenceSmartSpaceOverviewFAQ';
|
|
28854
|
+
contentId?: Maybe<Scalars['ID']['output']>;
|
|
28855
|
+
entries: Array<ConfluenceSmartSpaceOverviewFaqEntry>;
|
|
28856
|
+
lastRefreshed?: Maybe<Scalars['DateTime']['output']>;
|
|
28857
|
+
};
|
|
28858
|
+
export declare type ConfluenceSmartSpaceOverviewFaqEntry = {
|
|
28859
|
+
__typename?: 'ConfluenceSmartSpaceOverviewFAQEntry';
|
|
28860
|
+
answer: Scalars['String']['output'];
|
|
28861
|
+
followUpQuestions: Array<Maybe<Scalars['String']['output']>>;
|
|
28862
|
+
isPinned: Scalars['Boolean']['output'];
|
|
28863
|
+
question: Scalars['String']['output'];
|
|
28864
|
+
sources: Array<ConfluenceSmartSpaceOverviewFaqSource>;
|
|
28865
|
+
};
|
|
28866
|
+
export declare type ConfluenceSmartSpaceOverviewFaqSource = {
|
|
28867
|
+
__typename?: 'ConfluenceSmartSpaceOverviewFAQSource';
|
|
28868
|
+
content?: Maybe<Content>;
|
|
28869
|
+
};
|
|
28495
28870
|
export declare type ConfluenceSmartSpaceOverviewSummary = {
|
|
28496
28871
|
__typename?: 'ConfluenceSmartSpaceOverviewSummary';
|
|
28497
28872
|
body?: Maybe<Scalars['String']['output']>;
|
|
@@ -28643,6 +29018,7 @@ export declare type ConfluenceSpacePermissionCombinationConnection = {
|
|
|
28643
29018
|
spacePermissionCombinationWithoutAssignedSpaceRoleCount?: Maybe<Scalars['Long']['output']>;
|
|
28644
29019
|
totalCount?: Maybe<Scalars['Long']['output']>;
|
|
28645
29020
|
totalOccurrences?: Maybe<Scalars['String']['output']>;
|
|
29021
|
+
totalRoleMatchCount?: Maybe<Scalars['Long']['output']>;
|
|
28646
29022
|
};
|
|
28647
29023
|
export declare type ConfluenceSpacePermissionCombinationEdge = {
|
|
28648
29024
|
__typename?: 'ConfluenceSpacePermissionCombinationEdge';
|
|
@@ -29547,10 +29923,29 @@ export declare type ConfluenceUpdateReviewerDecisionInput = {
|
|
|
29547
29923
|
decisionStatus: ConfluenceReviewerDecisionState;
|
|
29548
29924
|
reviewerId: Scalars['Long']['input'];
|
|
29549
29925
|
};
|
|
29550
|
-
export declare type
|
|
29551
|
-
accessType:
|
|
29926
|
+
export declare type ConfluenceUpdateShareableLinkInput = {
|
|
29927
|
+
accessType: ConfluenceShareableLinkAccessType;
|
|
29552
29928
|
contentId: Scalars['ID']['input'];
|
|
29553
29929
|
};
|
|
29930
|
+
export declare type ConfluenceUpdateShareableLinkSiteConfigInput = {
|
|
29931
|
+
accessType: ConfluenceShareableLinkAccessType;
|
|
29932
|
+
status: ConfluenceShareableLinkSiteStatus;
|
|
29933
|
+
};
|
|
29934
|
+
export declare type ConfluenceUpdateShareableLinkSiteConfigPayload = {
|
|
29935
|
+
__typename?: 'ConfluenceUpdateShareableLinkSiteConfigPayload';
|
|
29936
|
+
errors: Array<MutationError>;
|
|
29937
|
+
success: Scalars['Boolean']['output'];
|
|
29938
|
+
};
|
|
29939
|
+
export declare type ConfluenceUpdateShareableLinkSpaceConfigInput = {
|
|
29940
|
+
accessType: ConfluenceShareableLinkAccessType;
|
|
29941
|
+
spaceId: Scalars['ID']['input'];
|
|
29942
|
+
status: ConfluenceShareableLinkSpaceStatus;
|
|
29943
|
+
};
|
|
29944
|
+
export declare type ConfluenceUpdateShareableLinkSpaceConfigPayload = {
|
|
29945
|
+
__typename?: 'ConfluenceUpdateShareableLinkSpaceConfigPayload';
|
|
29946
|
+
errors?: Maybe<Array<MutationError>>;
|
|
29947
|
+
success: Scalars['Boolean']['output'];
|
|
29948
|
+
};
|
|
29554
29949
|
export declare type ConfluenceUpdateShareableLinksPayload = Payload & {
|
|
29555
29950
|
__typename?: 'ConfluenceUpdateShareableLinksPayload';
|
|
29556
29951
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -32609,6 +33004,20 @@ export declare type CplsAddWorkScopeAssociationsPayload = Payload & {
|
|
|
32609
33004
|
workDataIds?: Maybe<Array<CplsWorkDataIdEdge>>;
|
|
32610
33005
|
works?: Maybe<Array<CplsWorkEdge>>;
|
|
32611
33006
|
};
|
|
33007
|
+
export declare type CplsAtlasProject = {
|
|
33008
|
+
__typename?: 'CplsAtlasProject';
|
|
33009
|
+
atlasProjectId: Scalars['ID']['output'];
|
|
33010
|
+
};
|
|
33011
|
+
export declare type CplsAtlasProjectConnection = HasPageInfo & {
|
|
33012
|
+
__typename?: 'CplsAtlasProjectConnection';
|
|
33013
|
+
edges?: Maybe<Array<CplsAtlasProjectEdge>>;
|
|
33014
|
+
pageInfo: PageInfo;
|
|
33015
|
+
};
|
|
33016
|
+
export declare type CplsAtlasProjectEdge = {
|
|
33017
|
+
__typename?: 'CplsAtlasProjectEdge';
|
|
33018
|
+
cursor: Scalars['String']['output'];
|
|
33019
|
+
node?: Maybe<CplsAtlasProject>;
|
|
33020
|
+
};
|
|
32612
33021
|
export declare type CplsCapacityPlanningPeopleView = {
|
|
32613
33022
|
__typename?: 'CplsCapacityPlanningPeopleView';
|
|
32614
33023
|
contributor?: Maybe<CplsContributor>;
|
|
@@ -32819,9 +33228,17 @@ export declare type CplsDeleteContributorWorkAssociationInput = {
|
|
|
32819
33228
|
};
|
|
32820
33229
|
export declare type CplsDeleteContributorWorkAssociationPayload = Payload & {
|
|
32821
33230
|
__typename?: 'CplsDeleteContributorWorkAssociationPayload';
|
|
33231
|
+
contributorsByScope?: Maybe<Array<Maybe<CplsContributor>>>;
|
|
32822
33232
|
errors?: Maybe<Array<MutationError>>;
|
|
32823
33233
|
ids?: Maybe<Array<Scalars['ID']['output']>>;
|
|
32824
33234
|
success: Scalars['Boolean']['output'];
|
|
33235
|
+
worksByScope?: Maybe<Array<Maybe<CplsWork>>>;
|
|
33236
|
+
};
|
|
33237
|
+
export declare type CplsDeleteContributorWorkAssociationPayloadContributorsByScopeArgs = {
|
|
33238
|
+
scopeId: Scalars['ID']['input'];
|
|
33239
|
+
};
|
|
33240
|
+
export declare type CplsDeleteContributorWorkAssociationPayloadWorksByScopeArgs = {
|
|
33241
|
+
scopeId: Scalars['ID']['input'];
|
|
32825
33242
|
};
|
|
32826
33243
|
export declare type CplsDeleteWorkScopeAssociationsInput = {
|
|
32827
33244
|
cloudId: Scalars['ID']['input'];
|
|
@@ -32836,11 +33253,18 @@ export declare type CplsDeleteWorkScopeAssociationsPayload = Payload & {
|
|
|
32836
33253
|
};
|
|
32837
33254
|
export declare type CplsFilterConfiguration = {
|
|
32838
33255
|
__typename?: 'CplsFilterConfiguration';
|
|
33256
|
+
atlasProjects?: Maybe<CplsAtlasProjectConnection>;
|
|
32839
33257
|
contributorDataEntities?: Maybe<CplsContributorDataEntityConnection>;
|
|
32840
33258
|
customContributionTargets?: Maybe<CplsCustomContributionTargetConnection>;
|
|
32841
33259
|
jiraWorkItems?: Maybe<CplsJiraWorkItemConnection>;
|
|
32842
33260
|
workTypes?: Maybe<Array<CplsWorkType>>;
|
|
32843
33261
|
};
|
|
33262
|
+
export declare type CplsFilterConfigurationAtlasProjectsArgs = {
|
|
33263
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33264
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
33265
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33266
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
33267
|
+
};
|
|
32844
33268
|
export declare type CplsFilterConfigurationContributorDataEntitiesArgs = {
|
|
32845
33269
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32846
33270
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -35054,6 +35478,7 @@ export declare type CustomerServiceExternalStatus = {
|
|
|
35054
35478
|
__typename?: 'CustomerServiceExternalStatus';
|
|
35055
35479
|
externalLabel: Scalars['String']['output'];
|
|
35056
35480
|
jiraStatusIds: Array<Scalars['String']['output']>;
|
|
35481
|
+
statusCategory?: Maybe<Scalars['String']['output']>;
|
|
35057
35482
|
};
|
|
35058
35483
|
export declare type CustomerServiceExternalStatusesQueryResult = CustomerServiceExternalStatusesResponse | QueryError;
|
|
35059
35484
|
export declare type CustomerServiceExternalStatusesResponse = {
|
|
@@ -35127,6 +35552,10 @@ export declare type CustomerServiceLiveChatAgent = {
|
|
|
35127
35552
|
liveChatActivity?: Maybe<Scalars['String']['output']>;
|
|
35128
35553
|
};
|
|
35129
35554
|
export declare type CustomerServiceLiveChatAgentQueryResult = CustomerServiceLiveChatAgent | QueryError;
|
|
35555
|
+
export declare type CustomerServiceLiveChatSpacesByActivityInput = {
|
|
35556
|
+
activity: Scalars['String']['input'];
|
|
35557
|
+
ids: Array<Scalars['ID']['input']>;
|
|
35558
|
+
};
|
|
35130
35559
|
export declare type CustomerServiceMutationApi = {
|
|
35131
35560
|
__typename?: 'CustomerServiceMutationApi';
|
|
35132
35561
|
acceptEscalation?: Maybe<CustomerServiceAcceptEscalationPayload>;
|
|
@@ -35157,6 +35586,7 @@ export declare type CustomerServiceMutationApi = {
|
|
|
35157
35586
|
updateIndividualAttributeConfig?: Maybe<CustomerServiceAttributeConfigMetadataUpdatePayload>;
|
|
35158
35587
|
updateIndividualAttributeMultiValueByName?: Maybe<CustomerServiceIndividualUpdateAttributeValuePayload>;
|
|
35159
35588
|
updateIndividualAttributeValueByName?: Maybe<CustomerServiceIndividualUpdateAttributeValuePayload>;
|
|
35589
|
+
updateLiveChatAgentActivities?: Maybe<CustomerServiceUpdateLiveChatAgentActivitiesPayload>;
|
|
35160
35590
|
updateNote?: Maybe<CustomerServiceNoteUpdatePayload>;
|
|
35161
35591
|
updateOrganization?: Maybe<CustomerServiceOrganizationUpdatePayload>;
|
|
35162
35592
|
updateOrganizationAttribute?: Maybe<CustomerServiceAttributeUpdatePayload>;
|
|
@@ -35260,6 +35690,9 @@ export declare type CustomerServiceMutationApiUpdateIndividualAttributeMultiValu
|
|
|
35260
35690
|
export declare type CustomerServiceMutationApiUpdateIndividualAttributeValueByNameArgs = {
|
|
35261
35691
|
input: CustomerServiceIndividualUpdateAttributeByNameInput;
|
|
35262
35692
|
};
|
|
35693
|
+
export declare type CustomerServiceMutationApiUpdateLiveChatAgentActivitiesArgs = {
|
|
35694
|
+
input: CustomerServiceUpdateLiveChatAgentActivitiesInput;
|
|
35695
|
+
};
|
|
35263
35696
|
export declare type CustomerServiceMutationApiUpdateNoteArgs = {
|
|
35264
35697
|
input?: InputMaybe<CustomerServiceNoteUpdateInput>;
|
|
35265
35698
|
};
|
|
@@ -35714,6 +36147,7 @@ export declare type CustomerServiceStatusMapping = {
|
|
|
35714
36147
|
__typename?: 'CustomerServiceStatusMapping';
|
|
35715
36148
|
externalLabel: Scalars['String']['output'];
|
|
35716
36149
|
jiraStatusId: Scalars['String']['output'];
|
|
36150
|
+
statusCategory?: Maybe<Scalars['String']['output']>;
|
|
35717
36151
|
};
|
|
35718
36152
|
export declare type CustomerServiceStatusMappingConfig = {
|
|
35719
36153
|
__typename?: 'CustomerServiceStatusMappingConfig';
|
|
@@ -35724,6 +36158,7 @@ export declare type CustomerServiceStatusMappingConfig = {
|
|
|
35724
36158
|
export declare type CustomerServiceStatusMappingInput = {
|
|
35725
36159
|
externalLabel: Scalars['String']['input'];
|
|
35726
36160
|
jiraStatusId: Scalars['String']['input'];
|
|
36161
|
+
statusCategory?: InputMaybe<Scalars['String']['input']>;
|
|
35727
36162
|
};
|
|
35728
36163
|
export declare type CustomerServiceStatusMappingQueryResult = CustomerServiceStatusMappingConfig | QueryError;
|
|
35729
36164
|
export declare type CustomerServiceStatusMappingUpdateInput = {
|
|
@@ -35834,6 +36269,17 @@ export declare type CustomerServiceUpdateCustomDetailValuePayload = Payload & {
|
|
|
35834
36269
|
errors?: Maybe<Array<MutationError>>;
|
|
35835
36270
|
success: Scalars['Boolean']['output'];
|
|
35836
36271
|
};
|
|
36272
|
+
export declare type CustomerServiceUpdateLiveChatAgentActivitiesInput = {
|
|
36273
|
+
id: Scalars['ID']['input'];
|
|
36274
|
+
liveChatActivity: Scalars['String']['input'];
|
|
36275
|
+
liveChatSpacesByActivity: Array<CustomerServiceLiveChatSpacesByActivityInput>;
|
|
36276
|
+
};
|
|
36277
|
+
export declare type CustomerServiceUpdateLiveChatAgentActivitiesPayload = Payload & {
|
|
36278
|
+
__typename?: 'CustomerServiceUpdateLiveChatAgentActivitiesPayload';
|
|
36279
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36280
|
+
success: Scalars['Boolean']['output'];
|
|
36281
|
+
successfullyUpdatedLiveChatAgent?: Maybe<CustomerServiceLiveChatAgent>;
|
|
36282
|
+
};
|
|
35837
36283
|
export declare type CustomerServiceUpdateRequestParticipantInput = {
|
|
35838
36284
|
addedParticipants: Array<Scalars['String']['input']>;
|
|
35839
36285
|
deletedParticipants: Array<Scalars['ID']['input']>;
|
|
@@ -39261,6 +39707,31 @@ export declare enum DistributionStatus {
|
|
|
39261
39707
|
Development = "DEVELOPMENT",
|
|
39262
39708
|
Public = "PUBLIC"
|
|
39263
39709
|
}
|
|
39710
|
+
export declare type DlpClassificationJobResponse = {
|
|
39711
|
+
__typename?: 'DlpClassificationJobResponse';
|
|
39712
|
+
taskId?: Maybe<Scalars['String']['output']>;
|
|
39713
|
+
};
|
|
39714
|
+
export declare type DlpClassificationLevelAutoUpdated = {
|
|
39715
|
+
__typename?: 'DlpClassificationLevelAutoUpdated';
|
|
39716
|
+
classificationAri: Scalars['String']['output'];
|
|
39717
|
+
updatedByRules: Scalars['Int']['output'];
|
|
39718
|
+
};
|
|
39719
|
+
export declare type DlpClassificationLevelChange = {
|
|
39720
|
+
__typename?: 'DlpClassificationLevelChange';
|
|
39721
|
+
classificationAri: Scalars['String']['output'];
|
|
39722
|
+
numObjectsChange: Scalars['Int']['output'];
|
|
39723
|
+
};
|
|
39724
|
+
export declare type DlpClassificationLevelUpdateSummary = {
|
|
39725
|
+
__typename?: 'DlpClassificationLevelUpdateSummary';
|
|
39726
|
+
existingClassificationAri: Scalars['String']['output'];
|
|
39727
|
+
numObjects: Scalars['Int']['output'];
|
|
39728
|
+
updatedClassificationAri: Scalars['String']['output'];
|
|
39729
|
+
};
|
|
39730
|
+
export declare type DlpClassificationLevelsAutoUpdatedResponse = {
|
|
39731
|
+
__typename?: 'DlpClassificationLevelsAutoUpdatedResponse';
|
|
39732
|
+
levels?: Maybe<Array<Maybe<DlpClassificationLevelAutoUpdated>>>;
|
|
39733
|
+
orgDefault?: Maybe<DlpOrgDefaultAutoUpdated>;
|
|
39734
|
+
};
|
|
39264
39735
|
export declare type DlpDetectionContentSummary = {
|
|
39265
39736
|
__typename?: 'DlpDetectionContentSummary';
|
|
39266
39737
|
containerCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -39300,6 +39771,28 @@ export declare enum DlpMappingStatus {
|
|
|
39300
39771
|
Draft = "DRAFT",
|
|
39301
39772
|
Published = "PUBLISHED"
|
|
39302
39773
|
}
|
|
39774
|
+
export declare type DlpOrgDefaultAutoUpdated = {
|
|
39775
|
+
__typename?: 'DlpOrgDefaultAutoUpdated';
|
|
39776
|
+
classificationAri: Scalars['String']['output'];
|
|
39777
|
+
updatedToOrgDefault: Scalars['Int']['output'];
|
|
39778
|
+
};
|
|
39779
|
+
export declare enum DlpPreviewResultsStatus {
|
|
39780
|
+
Cancelled = "CANCELLED",
|
|
39781
|
+
Completed = "COMPLETED",
|
|
39782
|
+
Failed = "FAILED",
|
|
39783
|
+
Pending = "PENDING",
|
|
39784
|
+
Running = "RUNNING"
|
|
39785
|
+
}
|
|
39786
|
+
export declare type DlpPreviewRulesImpactResponse = {
|
|
39787
|
+
__typename?: 'DlpPreviewRulesImpactResponse';
|
|
39788
|
+
changeInClassificationLevel?: Maybe<Array<Maybe<DlpClassificationLevelChange>>>;
|
|
39789
|
+
classificationLevelUpdates?: Maybe<Array<Maybe<DlpClassificationLevelUpdateSummary>>>;
|
|
39790
|
+
classificationLevelsAutoUpdated?: Maybe<DlpClassificationLevelsAutoUpdatedResponse>;
|
|
39791
|
+
status: DlpPreviewResultsStatus;
|
|
39792
|
+
taskId: Scalars['String']['output'];
|
|
39793
|
+
totalObjectsUpdatedByRules?: Maybe<Scalars['Int']['output']>;
|
|
39794
|
+
totalObjectsWithDetections?: Maybe<Scalars['Int']['output']>;
|
|
39795
|
+
};
|
|
39303
39796
|
export declare type DlpScope = {
|
|
39304
39797
|
__typename?: 'DlpScope';
|
|
39305
39798
|
scopeType?: Maybe<DlpScopeType>;
|
|
@@ -39312,6 +39805,10 @@ export declare type DlpScopeInput = {
|
|
|
39312
39805
|
export declare enum DlpScopeType {
|
|
39313
39806
|
Workspace = "WORKSPACE"
|
|
39314
39807
|
}
|
|
39808
|
+
export declare type DlpStartPreviewResponse = {
|
|
39809
|
+
__typename?: 'DlpStartPreviewResponse';
|
|
39810
|
+
taskId: Scalars['String']['output'];
|
|
39811
|
+
};
|
|
39315
39812
|
export declare type DocumentBody = {
|
|
39316
39813
|
__typename?: 'DocumentBody';
|
|
39317
39814
|
representation: DocumentRepresentation;
|
|
@@ -39435,6 +39932,7 @@ export declare enum EcosystemAppsInstalledInContextsSortKey {
|
|
|
39435
39932
|
}
|
|
39436
39933
|
export declare type EcosystemConnectApp = {
|
|
39437
39934
|
__typename?: 'EcosystemConnectApp';
|
|
39935
|
+
baseUrl?: Maybe<Scalars['String']['output']>;
|
|
39438
39936
|
description: Scalars['String']['output'];
|
|
39439
39937
|
distributionStatus: Scalars['String']['output'];
|
|
39440
39938
|
id: Scalars['ID']['output'];
|
|
@@ -39979,6 +40477,7 @@ export declare type EnabledContentTypes = {
|
|
|
39979
40477
|
isEmbedsEnabled: Scalars['Boolean']['output'];
|
|
39980
40478
|
isFoldersEnabled: Scalars['Boolean']['output'];
|
|
39981
40479
|
isLivePagesEnabled: Scalars['Boolean']['output'];
|
|
40480
|
+
isSlidesEnabled: Scalars['Boolean']['output'];
|
|
39982
40481
|
isWhiteboardsEnabled: Scalars['Boolean']['output'];
|
|
39983
40482
|
};
|
|
39984
40483
|
export declare type EnabledContentTypesInput = {
|
|
@@ -39987,6 +40486,7 @@ export declare type EnabledContentTypesInput = {
|
|
|
39987
40486
|
isEmbedsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39988
40487
|
isFoldersEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39989
40488
|
isLivePagesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40489
|
+
isSlidesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39990
40490
|
isWhiteboardsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39991
40491
|
};
|
|
39992
40492
|
export declare type EnabledFeatures = {
|
|
@@ -40508,6 +41008,7 @@ export declare type ExternalComment = Node & {
|
|
|
40508
41008
|
provider?: Maybe<ExternalProvider>;
|
|
40509
41009
|
reactions?: Maybe<Array<Maybe<ExternalReactions>>>;
|
|
40510
41010
|
reactionsV2?: Maybe<Array<Maybe<ExternalReaction>>>;
|
|
41011
|
+
selectedText?: Maybe<Scalars['String']['output']>;
|
|
40511
41012
|
text?: Maybe<Scalars['String']['output']>;
|
|
40512
41013
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
40513
41014
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
@@ -40937,6 +41438,7 @@ export declare type ExternalDocument = Node & {
|
|
|
40937
41438
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
40938
41439
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
40939
41440
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
41441
|
+
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
40940
41442
|
container?: Maybe<ExternalEntity>;
|
|
40941
41443
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
40942
41444
|
content?: Maybe<ExternalLargeContent>;
|
|
@@ -42939,6 +43441,7 @@ export declare type ForgeMetricsLabelGroup = {
|
|
|
42939
43441
|
export declare enum ForgeMetricsLabels {
|
|
42940
43442
|
ForgeApiRequestCount = "FORGE_API_REQUEST_COUNT",
|
|
42941
43443
|
ForgeApiRequestLatency = "FORGE_API_REQUEST_LATENCY",
|
|
43444
|
+
ForgeBackendCustomMetricsCount = "FORGE_BACKEND_CUSTOM_METRICS_COUNT",
|
|
42942
43445
|
ForgeBackendInvocationCount = "FORGE_BACKEND_INVOCATION_COUNT",
|
|
42943
43446
|
ForgeBackendInvocationErrors = "FORGE_BACKEND_INVOCATION_ERRORS",
|
|
42944
43447
|
ForgeBackendInvocationLatency = "FORGE_BACKEND_INVOCATION_LATENCY"
|
|
@@ -48316,6 +48819,7 @@ export declare type GraphStore = {
|
|
|
48316
48819
|
userCanViewConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseConnection>;
|
|
48317
48820
|
userCollaboratedOnDocument?: Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentConnection>;
|
|
48318
48821
|
userCollaboratedOnDocumentInverse?: Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentInverseConnection>;
|
|
48822
|
+
userCommentedOnThirdPartyDocumentInverse?: Maybe<GraphStoreSimplifiedUserCommentedOnThirdPartyDocumentInverseConnection>;
|
|
48319
48823
|
userContributedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostConnection>;
|
|
48320
48824
|
userContributedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseConnection>;
|
|
48321
48825
|
userContributedConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserContributedConfluenceDatabaseConnection>;
|
|
@@ -48476,6 +48980,7 @@ export declare type GraphStore = {
|
|
|
48476
48980
|
userReportsIssueInverse?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseConnection>;
|
|
48477
48981
|
userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
|
|
48478
48982
|
userReviewsPrInverse?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseConnection>;
|
|
48983
|
+
userSharedThirdPartyDocumentInverse?: Maybe<GraphStoreSimplifiedUserSharedThirdPartyDocumentInverseConnection>;
|
|
48479
48984
|
userSnapshottedConfluencePage?: Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageConnection>;
|
|
48480
48985
|
userSnapshottedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageInverseConnection>;
|
|
48481
48986
|
userTaggedInComment?: Maybe<GraphStoreSimplifiedUserTaggedInCommentConnection>;
|
|
@@ -54231,6 +54736,14 @@ export declare type GraphStoreUserCollaboratedOnDocumentInverseArgs = {
|
|
|
54231
54736
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
54232
54737
|
sort?: InputMaybe<GraphStoreUserCollaboratedOnDocumentSortInput>;
|
|
54233
54738
|
};
|
|
54739
|
+
export declare type GraphStoreUserCommentedOnThirdPartyDocumentInverseArgs = {
|
|
54740
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54741
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54742
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54743
|
+
id: Scalars['ID']['input'];
|
|
54744
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
54745
|
+
sort?: InputMaybe<GraphStoreUserCommentedOnThirdPartyDocumentSortInput>;
|
|
54746
|
+
};
|
|
54234
54747
|
export declare type GraphStoreUserContributedConfluenceBlogpostArgs = {
|
|
54235
54748
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
54236
54749
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -55515,6 +56028,14 @@ export declare type GraphStoreUserReviewsPrInverseArgs = {
|
|
|
55515
56028
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55516
56029
|
sort?: InputMaybe<GraphStoreUserReviewsPrSortInput>;
|
|
55517
56030
|
};
|
|
56031
|
+
export declare type GraphStoreUserSharedThirdPartyDocumentInverseArgs = {
|
|
56032
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
56033
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
56034
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
56035
|
+
id: Scalars['ID']['input'];
|
|
56036
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
56037
|
+
sort?: InputMaybe<GraphStoreUserSharedThirdPartyDocumentSortInput>;
|
|
56038
|
+
};
|
|
55518
56039
|
export declare type GraphStoreUserSnapshottedConfluencePageArgs = {
|
|
55519
56040
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
55520
56041
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -57095,7 +57616,7 @@ export declare type GraphStoreBatchContentReferencedEntityEndNode = {
|
|
|
57095
57616
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
57096
57617
|
id: Scalars['ID']['output'];
|
|
57097
57618
|
};
|
|
57098
|
-
export declare type GraphStoreBatchContentReferencedEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | 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 | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
57619
|
+
export declare type GraphStoreBatchContentReferencedEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
57099
57620
|
export declare type GraphStoreBatchContentReferencedEntityInnerConnection = {
|
|
57100
57621
|
__typename?: 'GraphStoreBatchContentReferencedEntityInnerConnection';
|
|
57101
57622
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityInnerEdge>>;
|
|
@@ -57120,7 +57641,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
57120
57641
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
57121
57642
|
id: Scalars['ID']['output'];
|
|
57122
57643
|
};
|
|
57123
|
-
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
57644
|
+
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
57124
57645
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
57125
57646
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
57126
57647
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -59042,7 +59563,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
59042
59563
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
59043
59564
|
id: Scalars['ID']['output'];
|
|
59044
59565
|
};
|
|
59045
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | 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 | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
59566
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
59046
59567
|
export declare type GraphStoreCypherQueryStringListObject = {
|
|
59047
59568
|
__typename?: 'GraphStoreCypherQueryStringListObject';
|
|
59048
59569
|
values: Array<Scalars['String']['output']>;
|
|
@@ -59064,13 +59585,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
59064
59585
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
59065
59586
|
id: Scalars['ID']['output'];
|
|
59066
59587
|
};
|
|
59067
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | 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 | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
59588
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
59068
59589
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
59069
59590
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
59070
59591
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
59071
59592
|
id: Scalars['ID']['output'];
|
|
59072
59593
|
};
|
|
59073
|
-
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | 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 | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
59594
|
+
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
59074
59595
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
59075
59596
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
59076
59597
|
value: Scalars['Boolean']['output'];
|
|
@@ -59215,7 +59736,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
59215
59736
|
V2 = "V2",
|
|
59216
59737
|
V3 = "V3"
|
|
59217
59738
|
}
|
|
59218
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | 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 | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
59739
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
59219
59740
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
59220
59741
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
59221
59742
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -60052,7 +60573,7 @@ export declare type GraphStoreFullContentReferencedEntityEndNode = {
|
|
|
60052
60573
|
data?: Maybe<GraphStoreFullContentReferencedEntityEndUnion>;
|
|
60053
60574
|
id: Scalars['ID']['output'];
|
|
60054
60575
|
};
|
|
60055
|
-
export declare type GraphStoreFullContentReferencedEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | 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 | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
60576
|
+
export declare type GraphStoreFullContentReferencedEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
60056
60577
|
export declare type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
60057
60578
|
__typename?: 'GraphStoreFullContentReferencedEntityNode';
|
|
60058
60579
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -60066,7 +60587,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
60066
60587
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
60067
60588
|
id: Scalars['ID']['output'];
|
|
60068
60589
|
};
|
|
60069
|
-
export declare type GraphStoreFullContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
60590
|
+
export declare type GraphStoreFullContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
60070
60591
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
60071
60592
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
60072
60593
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -66686,8 +67207,8 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
66686
67207
|
lastUpdated: Scalars['DateTime']['output'];
|
|
66687
67208
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
66688
67209
|
};
|
|
66689
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
66690
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | 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 | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
67210
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
67211
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
66691
67212
|
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
66692
67213
|
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
66693
67214
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConversationHasMessageEdge>>>;
|
|
@@ -72170,6 +72691,20 @@ export declare type GraphStoreSimplifiedUserCollaboratedOnDocumentInverseEdge =
|
|
|
72170
72691
|
};
|
|
72171
72692
|
export declare type GraphStoreSimplifiedUserCollaboratedOnDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
72172
72693
|
export declare type GraphStoreSimplifiedUserCollaboratedOnDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
72694
|
+
export declare type GraphStoreSimplifiedUserCommentedOnThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
72695
|
+
__typename?: 'GraphStoreSimplifiedUserCommentedOnThirdPartyDocumentInverseConnection';
|
|
72696
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCommentedOnThirdPartyDocumentInverseEdge>>>;
|
|
72697
|
+
pageInfo: PageInfo;
|
|
72698
|
+
};
|
|
72699
|
+
export declare type GraphStoreSimplifiedUserCommentedOnThirdPartyDocumentInverseEdge = {
|
|
72700
|
+
__typename?: 'GraphStoreSimplifiedUserCommentedOnThirdPartyDocumentInverseEdge';
|
|
72701
|
+
createdAt: Scalars['DateTime']['output'];
|
|
72702
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
72703
|
+
id: Scalars['ID']['output'];
|
|
72704
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
72705
|
+
node?: Maybe<GraphStoreSimplifiedUserCommentedOnThirdPartyDocumentInverseUnion>;
|
|
72706
|
+
};
|
|
72707
|
+
export declare type GraphStoreSimplifiedUserCommentedOnThirdPartyDocumentInverseUnion = ThirdPartyUser;
|
|
72173
72708
|
export declare type GraphStoreSimplifiedUserContributedConfluenceBlogpostConnection = HasPageInfo & {
|
|
72174
72709
|
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceBlogpostConnection';
|
|
72175
72710
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostEdge>>>;
|
|
@@ -74414,6 +74949,20 @@ export declare type GraphStoreSimplifiedUserReviewsPrInverseEdge = {
|
|
|
74414
74949
|
};
|
|
74415
74950
|
export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
74416
74951
|
export declare type GraphStoreSimplifiedUserReviewsPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
74952
|
+
export declare type GraphStoreSimplifiedUserSharedThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
74953
|
+
__typename?: 'GraphStoreSimplifiedUserSharedThirdPartyDocumentInverseConnection';
|
|
74954
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserSharedThirdPartyDocumentInverseEdge>>>;
|
|
74955
|
+
pageInfo: PageInfo;
|
|
74956
|
+
};
|
|
74957
|
+
export declare type GraphStoreSimplifiedUserSharedThirdPartyDocumentInverseEdge = {
|
|
74958
|
+
__typename?: 'GraphStoreSimplifiedUserSharedThirdPartyDocumentInverseEdge';
|
|
74959
|
+
createdAt: Scalars['DateTime']['output'];
|
|
74960
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
74961
|
+
id: Scalars['ID']['output'];
|
|
74962
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
74963
|
+
node?: Maybe<GraphStoreSimplifiedUserSharedThirdPartyDocumentInverseUnion>;
|
|
74964
|
+
};
|
|
74965
|
+
export declare type GraphStoreSimplifiedUserSharedThirdPartyDocumentInverseUnion = ThirdPartyUser;
|
|
74417
74966
|
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageConnection = HasPageInfo & {
|
|
74418
74967
|
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageConnection';
|
|
74419
74968
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageEdge>>>;
|
|
@@ -76383,6 +76932,9 @@ export declare type GraphStoreUserCanViewConfluenceSpaceSortInput = {
|
|
|
76383
76932
|
export declare type GraphStoreUserCollaboratedOnDocumentSortInput = {
|
|
76384
76933
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76385
76934
|
};
|
|
76935
|
+
export declare type GraphStoreUserCommentedOnThirdPartyDocumentSortInput = {
|
|
76936
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76937
|
+
};
|
|
76386
76938
|
export declare type GraphStoreUserContributedConfluenceBlogpostSortInput = {
|
|
76387
76939
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76388
76940
|
};
|
|
@@ -76686,6 +77238,9 @@ export declare type GraphStoreUserReportsIssueSortInput = {
|
|
|
76686
77238
|
export declare type GraphStoreUserReviewsPrSortInput = {
|
|
76687
77239
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76688
77240
|
};
|
|
77241
|
+
export declare type GraphStoreUserSharedThirdPartyDocumentSortInput = {
|
|
77242
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
77243
|
+
};
|
|
76689
77244
|
export declare type GraphStoreUserSnapshottedConfluencePageSortInput = {
|
|
76690
77245
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76691
77246
|
};
|
|
@@ -77199,6 +77754,7 @@ export declare type GraphStoreV2 = {
|
|
|
77199
77754
|
externalUserAttendedExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedExternalUserAttendedExternalCalendarEventInverseConnection>;
|
|
77200
77755
|
externalUserCollaboratedOnExternalDocument?: Maybe<GraphStoreV2SimplifiedExternalUserCollaboratedOnExternalDocumentConnection>;
|
|
77201
77756
|
externalUserCollaboratedOnExternalDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCollaboratedOnExternalDocumentInverseConnection>;
|
|
77757
|
+
externalUserCommentedOnThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCommentedOnThirdPartyDocumentInverseConnection>;
|
|
77202
77758
|
externalUserCreatedExternalBranch?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalBranchConnection>;
|
|
77203
77759
|
externalUserCreatedExternalBranchInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalBranchInverseConnection>;
|
|
77204
77760
|
externalUserCreatedExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventConnection>;
|
|
@@ -77285,6 +77841,7 @@ export declare type GraphStoreV2 = {
|
|
|
77285
77841
|
externalUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestStatusInverseConnection>;
|
|
77286
77842
|
externalUserReviewedExternalPullRequest?: Maybe<GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestConnection>;
|
|
77287
77843
|
externalUserReviewedExternalPullRequestInverse?: Maybe<GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestInverseConnection>;
|
|
77844
|
+
externalUserSharedThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalUserSharedThirdPartyDocumentInverseConnection>;
|
|
77288
77845
|
externalUserUpdatedExternalCustomerContact?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactConnection>;
|
|
77289
77846
|
externalUserUpdatedExternalCustomerContactInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactInverseConnection>;
|
|
77290
77847
|
externalUserUpdatedExternalCustomerOrg?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerOrgConnection>;
|
|
@@ -80255,6 +80812,13 @@ export declare type GraphStoreV2ExternalUserCollaboratedOnExternalDocumentInvers
|
|
|
80255
80812
|
id: Scalars['ID']['input'];
|
|
80256
80813
|
sort?: InputMaybe<GraphStoreV2ExternalUserCollaboratedOnExternalDocumentSortInput>;
|
|
80257
80814
|
};
|
|
80815
|
+
export declare type GraphStoreV2ExternalUserCommentedOnThirdPartyDocumentInverseArgs = {
|
|
80816
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
80817
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
80818
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80819
|
+
id: Scalars['ID']['input'];
|
|
80820
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCommentedOnThirdPartyDocumentSortInput>;
|
|
80821
|
+
};
|
|
80258
80822
|
export declare type GraphStoreV2ExternalUserCreatedExternalBranchArgs = {
|
|
80259
80823
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
80260
80824
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -80859,6 +81423,13 @@ export declare type GraphStoreV2ExternalUserReviewedExternalPullRequestInverseAr
|
|
|
80859
81423
|
id: Scalars['ID']['input'];
|
|
80860
81424
|
sort?: InputMaybe<GraphStoreV2ExternalUserReviewedExternalPullRequestSortInput>;
|
|
80861
81425
|
};
|
|
81426
|
+
export declare type GraphStoreV2ExternalUserSharedThirdPartyDocumentInverseArgs = {
|
|
81427
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81428
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81429
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81430
|
+
id: Scalars['ID']['input'];
|
|
81431
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserSharedThirdPartyDocumentSortInput>;
|
|
81432
|
+
};
|
|
80862
81433
|
export declare type GraphStoreV2ExternalUserUpdatedExternalCustomerContactArgs = {
|
|
80863
81434
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
80864
81435
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -83672,7 +84243,7 @@ export declare type GraphStoreV2CypherQueryV2AriNode = {
|
|
|
83672
84243
|
data?: Maybe<GraphStoreV2CypherQueryV2AriNodeUnion>;
|
|
83673
84244
|
id: Scalars['ID']['output'];
|
|
83674
84245
|
};
|
|
83675
|
-
export declare type GraphStoreV2CypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | 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 | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
84246
|
+
export declare type GraphStoreV2CypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
83676
84247
|
export declare type GraphStoreV2CypherQueryV2BoolListObject = {
|
|
83677
84248
|
__typename?: 'GraphStoreV2CypherQueryV2BoolListObject';
|
|
83678
84249
|
values: Array<Scalars['Boolean']['output']>;
|
|
@@ -84289,6 +84860,9 @@ export declare type GraphStoreV2ExternalUserAttendedExternalCalendarEventSortInp
|
|
|
84289
84860
|
export declare type GraphStoreV2ExternalUserCollaboratedOnExternalDocumentSortInput = {
|
|
84290
84861
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84291
84862
|
};
|
|
84863
|
+
export declare type GraphStoreV2ExternalUserCommentedOnThirdPartyDocumentSortInput = {
|
|
84864
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84865
|
+
};
|
|
84292
84866
|
export declare type GraphStoreV2ExternalUserCreatedExternalBranchSortInput = {
|
|
84293
84867
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84294
84868
|
};
|
|
@@ -84435,6 +85009,9 @@ export declare type GraphStoreV2ExternalUserOwnsExternalTestStatusSortInput = {
|
|
|
84435
85009
|
export declare type GraphStoreV2ExternalUserReviewedExternalPullRequestSortInput = {
|
|
84436
85010
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84437
85011
|
};
|
|
85012
|
+
export declare type GraphStoreV2ExternalUserSharedThirdPartyDocumentSortInput = {
|
|
85013
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
85014
|
+
};
|
|
84438
85015
|
export declare type GraphStoreV2ExternalUserUpdatedExternalCustomerContactSortInput = {
|
|
84439
85016
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84440
85017
|
};
|
|
@@ -90067,8 +90644,8 @@ export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseEdge =
|
|
|
90067
90644
|
lastUpdated: Scalars['DateTime']['output'];
|
|
90068
90645
|
node?: Maybe<GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion>;
|
|
90069
90646
|
};
|
|
90070
|
-
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
90071
|
-
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | 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 | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
90647
|
+
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
90648
|
+
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | 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 | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
90072
90649
|
export declare type GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemConnection = HasPageInfo & {
|
|
90073
90650
|
__typename?: 'GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemConnection';
|
|
90074
90651
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemEdge>>>;
|
|
@@ -91521,6 +92098,20 @@ export declare type GraphStoreV2SimplifiedExternalUserCollaboratedOnExternalDocu
|
|
|
91521
92098
|
};
|
|
91522
92099
|
export declare type GraphStoreV2SimplifiedExternalUserCollaboratedOnExternalDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
91523
92100
|
export declare type GraphStoreV2SimplifiedExternalUserCollaboratedOnExternalDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
92101
|
+
export declare type GraphStoreV2SimplifiedExternalUserCommentedOnThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
92102
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCommentedOnThirdPartyDocumentInverseConnection';
|
|
92103
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCommentedOnThirdPartyDocumentInverseEdge>>>;
|
|
92104
|
+
pageInfo: PageInfo;
|
|
92105
|
+
};
|
|
92106
|
+
export declare type GraphStoreV2SimplifiedExternalUserCommentedOnThirdPartyDocumentInverseEdge = {
|
|
92107
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCommentedOnThirdPartyDocumentInverseEdge';
|
|
92108
|
+
createdAt: Scalars['DateTime']['output'];
|
|
92109
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
92110
|
+
id: Scalars['ID']['output'];
|
|
92111
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
92112
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserCommentedOnThirdPartyDocumentInverseUnion>;
|
|
92113
|
+
};
|
|
92114
|
+
export declare type GraphStoreV2SimplifiedExternalUserCommentedOnThirdPartyDocumentInverseUnion = ThirdPartyUser;
|
|
91524
92115
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalBranchConnection = HasPageInfo & {
|
|
91525
92116
|
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalBranchConnection';
|
|
91526
92117
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalBranchEdge>>>;
|
|
@@ -92729,6 +93320,20 @@ export declare type GraphStoreV2SimplifiedExternalUserReviewedExternalPullReques
|
|
|
92729
93320
|
};
|
|
92730
93321
|
export declare type GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
92731
93322
|
export declare type GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
93323
|
+
export declare type GraphStoreV2SimplifiedExternalUserSharedThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
93324
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserSharedThirdPartyDocumentInverseConnection';
|
|
93325
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserSharedThirdPartyDocumentInverseEdge>>>;
|
|
93326
|
+
pageInfo: PageInfo;
|
|
93327
|
+
};
|
|
93328
|
+
export declare type GraphStoreV2SimplifiedExternalUserSharedThirdPartyDocumentInverseEdge = {
|
|
93329
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserSharedThirdPartyDocumentInverseEdge';
|
|
93330
|
+
createdAt: Scalars['DateTime']['output'];
|
|
93331
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
93332
|
+
id: Scalars['ID']['output'];
|
|
93333
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
93334
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserSharedThirdPartyDocumentInverseUnion>;
|
|
93335
|
+
};
|
|
93336
|
+
export declare type GraphStoreV2SimplifiedExternalUserSharedThirdPartyDocumentInverseUnion = ThirdPartyUser;
|
|
92732
93337
|
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactConnection = HasPageInfo & {
|
|
92733
93338
|
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactConnection';
|
|
92734
93339
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactEdge>>>;
|
|
@@ -96457,7 +97062,7 @@ export declare type GravityField = {
|
|
|
96457
97062
|
__typename?: 'GravityField';
|
|
96458
97063
|
configuration?: Maybe<Scalars['JSON']['output']>;
|
|
96459
97064
|
custom: Scalars['Boolean']['output'];
|
|
96460
|
-
description?: Maybe<Scalars['
|
|
97065
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
96461
97066
|
global: Scalars['Boolean']['output'];
|
|
96462
97067
|
key: Scalars['String']['output'];
|
|
96463
97068
|
name: Scalars['String']['output'];
|
|
@@ -96467,7 +97072,7 @@ export declare type GravityField = {
|
|
|
96467
97072
|
export declare type GravityFieldDefinition = {
|
|
96468
97073
|
__typename?: 'GravityFieldDefinition';
|
|
96469
97074
|
configuration?: Maybe<Scalars['JSON']['output']>;
|
|
96470
|
-
description?: Maybe<Scalars['
|
|
97075
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
96471
97076
|
global: Scalars['Boolean']['output'];
|
|
96472
97077
|
name: Scalars['String']['output'];
|
|
96473
97078
|
options?: Maybe<Array<Scalars['JSON']['output']>>;
|
|
@@ -96535,8 +97140,8 @@ export declare type GravityRefMappingsInput = {
|
|
|
96535
97140
|
fields: Array<GravityFieldRefMappingInput>;
|
|
96536
97141
|
};
|
|
96537
97142
|
export declare enum GravityRefResolutionStrategy {
|
|
96538
|
-
|
|
96539
|
-
|
|
97143
|
+
CreateIfUnmapped = "CREATE_IF_UNMAPPED",
|
|
97144
|
+
FailIfUnmapped = "FAIL_IF_UNMAPPED"
|
|
96540
97145
|
}
|
|
96541
97146
|
export declare enum GravitySortOrder {
|
|
96542
97147
|
Asc = "ASC",
|
|
@@ -97970,6 +98575,7 @@ export declare type HelpCenterContentGapIndicatorsWithMetaData = {
|
|
|
97970
98575
|
contentGapIndicators?: Maybe<Array<HelpCenterContentGapIndicator>>;
|
|
97971
98576
|
};
|
|
97972
98577
|
export declare type HelpCenterCreateInput = {
|
|
98578
|
+
helpCenterBranding?: InputMaybe<HelpCenterBrandingInput>;
|
|
97973
98579
|
helpCenterType?: InputMaybe<HelpCenterTypeInput>;
|
|
97974
98580
|
homePageLayout?: InputMaybe<HelpCenterHomePageLayoutInput>;
|
|
97975
98581
|
name: HelpCenterNameInput;
|
|
@@ -98045,6 +98651,7 @@ export declare type HelpCenterHubProductEntityResult = {
|
|
|
98045
98651
|
data?: Maybe<HelpCenterProductEntityConnection>;
|
|
98046
98652
|
entityType: Scalars['String']['output'];
|
|
98047
98653
|
filterCriteria: HelpCenterProductEntityFilterCriteria;
|
|
98654
|
+
helpCenterAri?: Maybe<Scalars['ID']['output']>;
|
|
98048
98655
|
helpCenterId?: Maybe<Scalars['ID']['output']>;
|
|
98049
98656
|
parentFilters?: Maybe<HelpCenterParentFilters>;
|
|
98050
98657
|
sortConfig?: Maybe<HelpCenterProductEntitySortConfigOutput>;
|
|
@@ -98346,7 +98953,7 @@ export declare enum HelpCenterPortalsType {
|
|
|
98346
98953
|
Hidden = "HIDDEN",
|
|
98347
98954
|
Visible = "VISIBLE"
|
|
98348
98955
|
}
|
|
98349
|
-
export declare type HelpCenterProductEntityConnection = HelpObjectStoreProductEntityConnection | JiraServiceManagementRequestTypeConnection | QueryError;
|
|
98956
|
+
export declare type HelpCenterProductEntityConnection = HelpObjectStorePortalGroupsConnection | HelpObjectStoreProductEntityConnection | JiraServiceManagementRequestTypeConnection | QueryError;
|
|
98350
98957
|
export declare type HelpCenterProductEntityFilter = {
|
|
98351
98958
|
parentId?: InputMaybe<Scalars['String']['input']>;
|
|
98352
98959
|
subEntityTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -98356,6 +98963,7 @@ export declare type HelpCenterProductEntityFilterCriteria = {
|
|
|
98356
98963
|
after?: Maybe<Scalars['String']['output']>;
|
|
98357
98964
|
cloudId: Scalars['ID']['output'];
|
|
98358
98965
|
first?: Maybe<Scalars['Int']['output']>;
|
|
98966
|
+
helpCenterAri?: Maybe<Scalars['ID']['output']>;
|
|
98359
98967
|
};
|
|
98360
98968
|
export declare type HelpCenterProductEntityFilterOutput = {
|
|
98361
98969
|
__typename?: 'HelpCenterProductEntityFilterOutput';
|
|
@@ -98393,7 +99001,8 @@ export declare type HelpCenterProductEntitySortConfigOutput = {
|
|
|
98393
99001
|
export declare enum HelpCenterProductEntityType {
|
|
98394
99002
|
CommonRequestTypes = "COMMON_REQUEST_TYPES",
|
|
98395
99003
|
JsmHelpObjects = "JSM_HELP_OBJECTS",
|
|
98396
|
-
KnowledgeCards = "KNOWLEDGE_CARDS"
|
|
99004
|
+
KnowledgeCards = "KNOWLEDGE_CARDS",
|
|
99005
|
+
PortalGroups = "PORTAL_GROUPS"
|
|
98397
99006
|
}
|
|
98398
99007
|
export declare type HelpCenterProjectMappingData = {
|
|
98399
99008
|
__typename?: 'HelpCenterProjectMappingData';
|
|
@@ -99544,6 +100153,8 @@ export declare type HelpObjectStoreEntityDataGeneric = HelpObjectStoreEntityData
|
|
|
99544
100153
|
export declare enum HelpObjectStoreEntityTypes {
|
|
99545
100154
|
ExtResources = "EXT_RESOURCES",
|
|
99546
100155
|
KbArticles = "KB_ARTICLES",
|
|
100156
|
+
KbCategories = "KB_CATEGORIES",
|
|
100157
|
+
PortalGroups = "PORTAL_GROUPS",
|
|
99547
100158
|
RequestTypes = "REQUEST_TYPES"
|
|
99548
100159
|
}
|
|
99549
100160
|
export declare type HelpObjectStoreFilter = {
|
|
@@ -99580,6 +100191,32 @@ export declare enum HelpObjectStoreJsmEntityType {
|
|
|
99580
100191
|
Portal = "PORTAL",
|
|
99581
100192
|
RequestForm = "REQUEST_FORM"
|
|
99582
100193
|
}
|
|
100194
|
+
export declare type HelpObjectStoreKbCategories = {
|
|
100195
|
+
__typename?: 'HelpObjectStoreKbCategories';
|
|
100196
|
+
articles?: Maybe<Array<HelpObjectStoreKbCategoriesArticle>>;
|
|
100197
|
+
id: Scalars['ID']['output'];
|
|
100198
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
100199
|
+
};
|
|
100200
|
+
export declare type HelpObjectStoreKbCategoriesArticle = {
|
|
100201
|
+
__typename?: 'HelpObjectStoreKbCategoriesArticle';
|
|
100202
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
100203
|
+
displayLink?: Maybe<Scalars['String']['output']>;
|
|
100204
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
100205
|
+
id: Scalars['ID']['output'];
|
|
100206
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
100207
|
+
};
|
|
100208
|
+
export declare type HelpObjectStoreKbCategoriesConnection = {
|
|
100209
|
+
__typename?: 'HelpObjectStoreKbCategoriesConnection';
|
|
100210
|
+
edges?: Maybe<Array<HelpObjectStoreKbCategoriesEdge>>;
|
|
100211
|
+
pageInfo: PageInfo;
|
|
100212
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
100213
|
+
};
|
|
100214
|
+
export declare type HelpObjectStoreKbCategoriesEdge = {
|
|
100215
|
+
__typename?: 'HelpObjectStoreKbCategoriesEdge';
|
|
100216
|
+
cursor: Scalars['String']['output'];
|
|
100217
|
+
node?: Maybe<HelpObjectStoreKbCategories>;
|
|
100218
|
+
};
|
|
100219
|
+
export declare type HelpObjectStoreKbCategoriesResult = HelpObjectStoreKbCategoriesConnection | QueryError;
|
|
99583
100220
|
export declare type HelpObjectStoreMutationApi = {
|
|
99584
100221
|
__typename?: 'HelpObjectStoreMutationApi';
|
|
99585
100222
|
createEntityMapping?: Maybe<HelpObjectStoreCreateEntityMappingPayload>;
|
|
@@ -99601,6 +100238,33 @@ export declare type HelpObjectStorePortal = HelpObjectStoreHelpObject & Node & {
|
|
|
99601
100238
|
id: Scalars['ID']['output'];
|
|
99602
100239
|
title?: Maybe<Scalars['String']['output']>;
|
|
99603
100240
|
};
|
|
100241
|
+
export declare type HelpObjectStorePortalGroup = {
|
|
100242
|
+
__typename?: 'HelpObjectStorePortalGroup';
|
|
100243
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
100244
|
+
id: Scalars['ID']['output'];
|
|
100245
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
100246
|
+
requestForms?: Maybe<Array<HelpObjectStorePortalGroupRequestForm>>;
|
|
100247
|
+
};
|
|
100248
|
+
export declare type HelpObjectStorePortalGroupEdge = {
|
|
100249
|
+
__typename?: 'HelpObjectStorePortalGroupEdge';
|
|
100250
|
+
cursor: Scalars['String']['output'];
|
|
100251
|
+
node?: Maybe<HelpObjectStorePortalGroup>;
|
|
100252
|
+
};
|
|
100253
|
+
export declare type HelpObjectStorePortalGroupRequestForm = {
|
|
100254
|
+
__typename?: 'HelpObjectStorePortalGroupRequestForm';
|
|
100255
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
100256
|
+
displayLink?: Maybe<Scalars['String']['output']>;
|
|
100257
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
100258
|
+
id: Scalars['ID']['output'];
|
|
100259
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
100260
|
+
};
|
|
100261
|
+
export declare type HelpObjectStorePortalGroupsConnection = {
|
|
100262
|
+
__typename?: 'HelpObjectStorePortalGroupsConnection';
|
|
100263
|
+
edges?: Maybe<Array<HelpObjectStorePortalGroupEdge>>;
|
|
100264
|
+
pageInfo: PageInfo;
|
|
100265
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
100266
|
+
};
|
|
100267
|
+
export declare type HelpObjectStorePortalGroupsResult = HelpObjectStorePortalGroupsConnection | QueryError;
|
|
99604
100268
|
export declare type HelpObjectStorePortalMetadata = {
|
|
99605
100269
|
__typename?: 'HelpObjectStorePortalMetadata';
|
|
99606
100270
|
searchStrategy: HelpObjectStorePortalSearchStrategy;
|
|
@@ -99639,6 +100303,7 @@ export declare type HelpObjectStoreProductEntityInput = {
|
|
|
99639
100303
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
99640
100304
|
cloudId: Scalars['ID']['input'];
|
|
99641
100305
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
100306
|
+
helpCenterAri?: InputMaybe<Scalars['ID']['input']>;
|
|
99642
100307
|
};
|
|
99643
100308
|
export declare type HelpObjectStoreProductEntityResult = HelpObjectStoreProductEntityConnection | QueryError;
|
|
99644
100309
|
export declare type HelpObjectStoreQueryApi = {
|
|
@@ -99646,6 +100311,8 @@ export declare type HelpObjectStoreQueryApi = {
|
|
|
99646
100311
|
articles?: Maybe<Array<Maybe<HelpObjectStoreArticleResult>>>;
|
|
99647
100312
|
channels?: Maybe<Array<Maybe<HelpObjectStoreChannelResult>>>;
|
|
99648
100313
|
helpObjects?: Maybe<HelpObjectStoreProductEntityResult>;
|
|
100314
|
+
kbCategories?: Maybe<HelpObjectStoreKbCategoriesResult>;
|
|
100315
|
+
portalGroups?: Maybe<HelpObjectStorePortalGroupsResult>;
|
|
99649
100316
|
requestForms?: Maybe<Array<Maybe<HelpObjectStoreRequestFormResult>>>;
|
|
99650
100317
|
searchHelpObjects?: Maybe<Array<Maybe<HelpObjectStoreHelpCenterSearchResult>>>;
|
|
99651
100318
|
};
|
|
@@ -99660,6 +100327,14 @@ export declare type HelpObjectStoreQueryApiHelpObjectsArgs = {
|
|
|
99660
100327
|
input: HelpObjectStoreProductEntityInput;
|
|
99661
100328
|
sortConfig?: InputMaybe<HelpObjectStoreSortConfig>;
|
|
99662
100329
|
};
|
|
100330
|
+
export declare type HelpObjectStoreQueryApiKbCategoriesArgs = {
|
|
100331
|
+
filters?: InputMaybe<HelpObjectStoreFilters>;
|
|
100332
|
+
input: HelpObjectStoreProductEntityInput;
|
|
100333
|
+
};
|
|
100334
|
+
export declare type HelpObjectStoreQueryApiPortalGroupsArgs = {
|
|
100335
|
+
filters?: InputMaybe<HelpObjectStoreFilters>;
|
|
100336
|
+
input: HelpObjectStoreProductEntityInput;
|
|
100337
|
+
};
|
|
99663
100338
|
export declare type HelpObjectStoreQueryApiRequestFormsArgs = {
|
|
99664
100339
|
ids: Array<Scalars['ID']['input']>;
|
|
99665
100340
|
};
|
|
@@ -101118,6 +101793,7 @@ export declare type JiraAffectedServicesField = JiraHasMultipleSelectedValues &
|
|
|
101118
101793
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
101119
101794
|
fieldId: Scalars['String']['output'];
|
|
101120
101795
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
101796
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
101121
101797
|
id: Scalars['ID']['output'];
|
|
101122
101798
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
101123
101799
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -101193,6 +101869,7 @@ export declare type JiraAggregatedStatusField = JiraIssueField & Node & {
|
|
|
101193
101869
|
description?: Maybe<Scalars['String']['output']>;
|
|
101194
101870
|
fieldId: Scalars['String']['output'];
|
|
101195
101871
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
101872
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
101196
101873
|
id: Scalars['ID']['output'];
|
|
101197
101874
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
101198
101875
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -101210,11 +101887,14 @@ export declare type JiraAggregatedStatusFieldAggregatedStatusCategoryArgs = {
|
|
|
101210
101887
|
export declare type JiraAggregatedTimelineField = JiraIssueField & JiraTimelineVirtualField & Node & {
|
|
101211
101888
|
__typename?: 'JiraAggregatedTimelineField';
|
|
101212
101889
|
aggregatedEndDateViewField?: Maybe<JiraAggregatedDate>;
|
|
101890
|
+
aggregatedSprintEndDateViewField?: Maybe<JiraAggregatedDate>;
|
|
101891
|
+
aggregatedSprintStartDateViewField?: Maybe<JiraAggregatedDate>;
|
|
101213
101892
|
aggregatedStartDateViewField?: Maybe<JiraAggregatedDate>;
|
|
101214
101893
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
101215
101894
|
description?: Maybe<Scalars['String']['output']>;
|
|
101216
101895
|
fieldId: Scalars['String']['output'];
|
|
101217
101896
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
101897
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
101218
101898
|
id: Scalars['ID']['output'];
|
|
101219
101899
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
101220
101900
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -101224,9 +101904,19 @@ export declare type JiraAggregatedTimelineField = JiraIssueField & JiraTimelineV
|
|
|
101224
101904
|
type: Scalars['String']['output'];
|
|
101225
101905
|
};
|
|
101226
101906
|
export declare type JiraAggregatedTimelineFieldAggregatedEndDateViewFieldArgs = {
|
|
101907
|
+
input?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
101908
|
+
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
101909
|
+
};
|
|
101910
|
+
export declare type JiraAggregatedTimelineFieldAggregatedSprintEndDateViewFieldArgs = {
|
|
101911
|
+
input?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
101912
|
+
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
101913
|
+
};
|
|
101914
|
+
export declare type JiraAggregatedTimelineFieldAggregatedSprintStartDateViewFieldArgs = {
|
|
101915
|
+
input?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
101227
101916
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
101228
101917
|
};
|
|
101229
101918
|
export declare type JiraAggregatedTimelineFieldAggregatedStartDateViewFieldArgs = {
|
|
101919
|
+
input?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
101230
101920
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
101231
101921
|
};
|
|
101232
101922
|
export declare type JiraAiAgentSession = {
|
|
@@ -101661,6 +102351,7 @@ export declare type JiraAssetField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
101661
102351
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
101662
102352
|
fieldId: Scalars['String']['output'];
|
|
101663
102353
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
102354
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
101664
102355
|
id: Scalars['ID']['output'];
|
|
101665
102356
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
101666
102357
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -101748,6 +102439,7 @@ export declare type JiraAtlasProjectField = JiraIssueField & JiraIssueFieldConfi
|
|
|
101748
102439
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
101749
102440
|
fieldId: Scalars['String']['output'];
|
|
101750
102441
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
102442
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
101751
102443
|
id: Scalars['ID']['output'];
|
|
101752
102444
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
101753
102445
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -101792,6 +102484,7 @@ export declare type JiraAtlassianTeamField = JiraIssueField & JiraIssueFieldConf
|
|
|
101792
102484
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
101793
102485
|
fieldId: Scalars['String']['output'];
|
|
101794
102486
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
102487
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
101795
102488
|
id: Scalars['ID']['output'];
|
|
101796
102489
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
101797
102490
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -101962,6 +102655,7 @@ export declare type JiraAttachmentsField = JiraIssueField & JiraIssueFieldConfig
|
|
|
101962
102655
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
101963
102656
|
fieldId: Scalars['String']['output'];
|
|
101964
102657
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
102658
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
101965
102659
|
id: Scalars['ID']['output'];
|
|
101966
102660
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
101967
102661
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -102749,7 +103443,7 @@ export declare type JiraBacklogViewColumn = {
|
|
|
102749
103443
|
name?: Maybe<Scalars['String']['output']>;
|
|
102750
103444
|
statusIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
102751
103445
|
};
|
|
102752
|
-
export declare type JiraBacklogViewColumnCardList = JiraBacklogViewCardList & {
|
|
103446
|
+
export declare type JiraBacklogViewColumnCardList = JiraBacklogViewCardList & Node & {
|
|
102753
103447
|
__typename?: 'JiraBacklogViewColumnCardList';
|
|
102754
103448
|
column?: Maybe<JiraBacklogViewColumn>;
|
|
102755
103449
|
id: Scalars['ID']['output'];
|
|
@@ -102776,7 +103470,7 @@ export declare type JiraBacklogViewPermissions = {
|
|
|
102776
103470
|
export declare type JiraBacklogViewQueryInput = {
|
|
102777
103471
|
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
102778
103472
|
};
|
|
102779
|
-
export declare type JiraBacklogViewSprintCardList = JiraBacklogViewCardList & {
|
|
103473
|
+
export declare type JiraBacklogViewSprintCardList = JiraBacklogViewCardList & Node & {
|
|
102780
103474
|
__typename?: 'JiraBacklogViewSprintCardList';
|
|
102781
103475
|
id: Scalars['ID']['output'];
|
|
102782
103476
|
issues?: Maybe<JiraIssueConnection>;
|
|
@@ -102895,6 +103589,7 @@ export declare type JiraBoardCardCoverMediaField = JiraIssueField & Node & {
|
|
|
102895
103589
|
description?: Maybe<Scalars['String']['output']>;
|
|
102896
103590
|
fieldId: Scalars['String']['output'];
|
|
102897
103591
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
103592
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
102898
103593
|
id: Scalars['ID']['output'];
|
|
102899
103594
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
102900
103595
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -103318,6 +104013,7 @@ export declare type JiraBooleanField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
103318
104013
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
103319
104014
|
fieldId: Scalars['String']['output'];
|
|
103320
104015
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
104016
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
103321
104017
|
id: Scalars['ID']['output'];
|
|
103322
104018
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
103323
104019
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -103767,6 +104463,7 @@ export declare type JiraCmdbField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
103767
104463
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
103768
104464
|
fieldId: Scalars['String']['output'];
|
|
103769
104465
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
104466
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
103770
104467
|
id: Scalars['ID']['output'];
|
|
103771
104468
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
103772
104469
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -104106,6 +104803,7 @@ export declare type JiraCascadingSelectField = JiraHasSelectableValueOptions & J
|
|
|
104106
104803
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
104107
104804
|
fieldId: Scalars['String']['output'];
|
|
104108
104805
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
104806
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
104109
104807
|
id: Scalars['ID']['output'];
|
|
104110
104808
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
104111
104809
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -104172,6 +104870,7 @@ export declare type JiraCheckboxesField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
104172
104870
|
fieldId: Scalars['String']['output'];
|
|
104173
104871
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
104174
104872
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
104873
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
104175
104874
|
id: Scalars['ID']['output'];
|
|
104176
104875
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
104177
104876
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -104573,6 +105272,7 @@ export declare type JiraColorField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
104573
105272
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
104574
105273
|
fieldId: Scalars['String']['output'];
|
|
104575
105274
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105275
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
104576
105276
|
id: Scalars['ID']['output'];
|
|
104577
105277
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
104578
105278
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -104650,7 +105350,7 @@ export declare enum JiraCommentSortField {
|
|
|
104650
105350
|
}
|
|
104651
105351
|
export declare type JiraCommentSortInput = {
|
|
104652
105352
|
field: JiraCommentSortField;
|
|
104653
|
-
order
|
|
105353
|
+
order?: InputMaybe<SortDirection>;
|
|
104654
105354
|
};
|
|
104655
105355
|
export declare type JiraCommentSummary = {
|
|
104656
105356
|
__typename?: 'JiraCommentSummary';
|
|
@@ -104665,6 +105365,7 @@ export declare type JiraCommentSummaryField = JiraIssueField & JiraIssueFieldCon
|
|
|
104665
105365
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
104666
105366
|
fieldId: Scalars['String']['output'];
|
|
104667
105367
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105368
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
104668
105369
|
id: Scalars['ID']['output'];
|
|
104669
105370
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
104670
105371
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -104711,6 +105412,7 @@ export declare type JiraComponentsField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
104711
105412
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
104712
105413
|
fieldId: Scalars['String']['output'];
|
|
104713
105414
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105415
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
104714
105416
|
id: Scalars['ID']['output'];
|
|
104715
105417
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
104716
105418
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105010,6 +105712,7 @@ export declare type JiraConfluenceRemoteIssueLinksField = JiraIssueField & JiraI
|
|
|
105010
105712
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105011
105713
|
fieldId: Scalars['String']['output'];
|
|
105012
105714
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105715
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105013
105716
|
id: Scalars['ID']['output'];
|
|
105014
105717
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105015
105718
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105033,6 +105736,7 @@ export declare type JiraConnectDateTimeField = JiraIssueField & JiraIssueFieldCo
|
|
|
105033
105736
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105034
105737
|
fieldId: Scalars['String']['output'];
|
|
105035
105738
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105739
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105036
105740
|
id: Scalars['ID']['output'];
|
|
105037
105741
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105038
105742
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105049,6 +105753,7 @@ export declare type JiraConnectMultipleSelectField = JiraHasMultipleSelectedValu
|
|
|
105049
105753
|
fieldId: Scalars['String']['output'];
|
|
105050
105754
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105051
105755
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
105756
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105052
105757
|
id: Scalars['ID']['output'];
|
|
105053
105758
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105054
105759
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105097,6 +105802,7 @@ export declare type JiraConnectNumberField = JiraIssueField & JiraIssueFieldConf
|
|
|
105097
105802
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105098
105803
|
fieldId: Scalars['String']['output'];
|
|
105099
105804
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105805
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105100
105806
|
id: Scalars['ID']['output'];
|
|
105101
105807
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105102
105808
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105113,6 +105819,7 @@ export declare type JiraConnectReadOnlyField = JiraIssueField & JiraIssueFieldCo
|
|
|
105113
105819
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105114
105820
|
fieldId: Scalars['String']['output'];
|
|
105115
105821
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105822
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105116
105823
|
id: Scalars['ID']['output'];
|
|
105117
105824
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105118
105825
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105129,6 +105836,7 @@ export declare type JiraConnectRichTextField = JiraIssueField & JiraIssueFieldCo
|
|
|
105129
105836
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105130
105837
|
fieldId: Scalars['String']['output'];
|
|
105131
105838
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105839
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105132
105840
|
id: Scalars['ID']['output'];
|
|
105133
105841
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105134
105842
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105149,6 +105857,7 @@ export declare type JiraConnectSingleSelectField = JiraHasSelectableValueOptions
|
|
|
105149
105857
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105150
105858
|
fieldOption?: Maybe<JiraOption>;
|
|
105151
105859
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
105860
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105152
105861
|
id: Scalars['ID']['output'];
|
|
105153
105862
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105154
105863
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105182,6 +105891,7 @@ export declare type JiraConnectTextField = JiraIssueField & JiraIssueFieldConfig
|
|
|
105182
105891
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105183
105892
|
fieldId: Scalars['String']['output'];
|
|
105184
105893
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105894
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105185
105895
|
id: Scalars['ID']['output'];
|
|
105186
105896
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105187
105897
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105752,6 +106462,7 @@ export declare type JiraCustomerServiceOrganizationField = JiraIssueField & Jira
|
|
|
105752
106462
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105753
106463
|
fieldId: Scalars['String']['output'];
|
|
105754
106464
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
106465
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105755
106466
|
id: Scalars['ID']['output'];
|
|
105756
106467
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105757
106468
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105810,6 +106521,7 @@ export declare type JiraDataClassificationField = JiraIssueField & JiraIssueFiel
|
|
|
105810
106521
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105811
106522
|
fieldId: Scalars['String']['output'];
|
|
105812
106523
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
106524
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105813
106525
|
id: Scalars['ID']['output'];
|
|
105814
106526
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105815
106527
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105867,6 +106579,7 @@ export declare type JiraDateFormulaField = JiraIssueField & JiraIssueFieldConfig
|
|
|
105867
106579
|
fieldId: Scalars['String']['output'];
|
|
105868
106580
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105869
106581
|
formulaExpressionConfig?: Maybe<JiraFormulaFieldExpressionConfig>;
|
|
106582
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105870
106583
|
id: Scalars['ID']['output'];
|
|
105871
106584
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105872
106585
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105887,6 +106600,7 @@ export declare type JiraDatePickerField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
105887
106600
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105888
106601
|
fieldId: Scalars['String']['output'];
|
|
105889
106602
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
106603
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105890
106604
|
id: Scalars['ID']['output'];
|
|
105891
106605
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105892
106606
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105924,6 +106638,7 @@ export declare type JiraDateTimePickerField = JiraIssueField & JiraIssueFieldCon
|
|
|
105924
106638
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105925
106639
|
fieldId: Scalars['String']['output'];
|
|
105926
106640
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
106641
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105927
106642
|
id: Scalars['ID']['output'];
|
|
105928
106643
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105929
106644
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -106518,6 +107233,7 @@ export declare type JiraDevSummaryField = JiraIssueField & Node & {
|
|
|
106518
107233
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
106519
107234
|
fieldId: Scalars['String']['output'];
|
|
106520
107235
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107236
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
106521
107237
|
id: Scalars['ID']['output'];
|
|
106522
107238
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
106523
107239
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -106564,6 +107280,15 @@ export declare type JiraDiscardUserTimelineViewConfigPayload = Payload & {
|
|
|
106564
107280
|
export declare type JiraDiscardUserViewConfigInput = {
|
|
106565
107281
|
viewId: Scalars['ID']['input'];
|
|
106566
107282
|
};
|
|
107283
|
+
export declare type JiraDisconnectTownsquareProjectPayload = Payload & {
|
|
107284
|
+
__typename?: 'JiraDisconnectTownsquareProjectPayload';
|
|
107285
|
+
errors?: Maybe<Array<MutationError>>;
|
|
107286
|
+
success: Scalars['Boolean']['output'];
|
|
107287
|
+
};
|
|
107288
|
+
export declare type JiraDisconnectTownsquareProjectToSpaceInput = {
|
|
107289
|
+
spaceAri: Scalars['ID']['input'];
|
|
107290
|
+
townsquareProjectAri: Scalars['String']['input'];
|
|
107291
|
+
};
|
|
106567
107292
|
export declare type JiraDismissAiAgentSessionInput = {
|
|
106568
107293
|
agentIdentityAccountId: Scalars['String']['input'];
|
|
106569
107294
|
cloudId: Scalars['ID']['input'];
|
|
@@ -106637,6 +107362,7 @@ export declare type JiraDurationField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
106637
107362
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
106638
107363
|
fieldId: Scalars['String']['output'];
|
|
106639
107364
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107365
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
106640
107366
|
id: Scalars['ID']['output'];
|
|
106641
107367
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
106642
107368
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -106648,6 +107374,15 @@ export declare type JiraDurationField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
106648
107374
|
export declare type JiraDurationFieldInput = {
|
|
106649
107375
|
originalEstimateField?: InputMaybe<Scalars['String']['input']>;
|
|
106650
107376
|
};
|
|
107377
|
+
export declare enum JiraDurationUnit {
|
|
107378
|
+
Days = "DAYS",
|
|
107379
|
+
Hours = "HOURS",
|
|
107380
|
+
Minutes = "MINUTES",
|
|
107381
|
+
Months = "MONTHS",
|
|
107382
|
+
Seconds = "SECONDS",
|
|
107383
|
+
Weeks = "WEEKS",
|
|
107384
|
+
Years = "YEARS"
|
|
107385
|
+
}
|
|
106651
107386
|
export declare type JiraEchoWhereInput = {
|
|
106652
107387
|
delayMs?: InputMaybe<Scalars['Int']['input']>;
|
|
106653
107388
|
message?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -106765,6 +107500,7 @@ export declare type JiraEpicLinkField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
106765
107500
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
106766
107501
|
fieldId: Scalars['String']['output'];
|
|
106767
107502
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107503
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
106768
107504
|
id: Scalars['ID']['output'];
|
|
106769
107505
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
106770
107506
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -106832,6 +107568,7 @@ export declare type JiraFallbackField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
106832
107568
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
106833
107569
|
fieldId: Scalars['String']['output'];
|
|
106834
107570
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107571
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
106835
107572
|
id: Scalars['ID']['output'];
|
|
106836
107573
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
106837
107574
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -106910,6 +107647,23 @@ export declare type JiraField = {
|
|
|
106910
107647
|
typeKey?: Maybe<Scalars['String']['output']>;
|
|
106911
107648
|
typeName?: Maybe<Scalars['String']['output']>;
|
|
106912
107649
|
};
|
|
107650
|
+
export declare type JiraFieldAggregationByBoardQuery = {
|
|
107651
|
+
boardId: Scalars['Long']['input'];
|
|
107652
|
+
cloudId: Scalars['ID']['input'];
|
|
107653
|
+
};
|
|
107654
|
+
export declare type JiraFieldAggregationByProjectQuery = {
|
|
107655
|
+
cloudId: Scalars['ID']['input'];
|
|
107656
|
+
projectIdOrKey: JiraFieldAggregationProjectIdOrKeyInput;
|
|
107657
|
+
};
|
|
107658
|
+
export declare type JiraFieldAggregationProjectIdOrKeyInput = {
|
|
107659
|
+
projectId?: InputMaybe<Scalars['Long']['input']>;
|
|
107660
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
107661
|
+
};
|
|
107662
|
+
export declare type JiraFieldAggregationQueryInput = {
|
|
107663
|
+
boardQuery?: InputMaybe<JiraFieldAggregationByBoardQuery>;
|
|
107664
|
+
projectQuery?: InputMaybe<JiraFieldAggregationByProjectQuery>;
|
|
107665
|
+
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
107666
|
+
};
|
|
106913
107667
|
export declare type JiraFieldAssociationWithIssueTypes = JiraProjectFieldAssociationInterface & {
|
|
106914
107668
|
__typename?: 'JiraFieldAssociationWithIssueTypes';
|
|
106915
107669
|
field?: Maybe<JiraField>;
|
|
@@ -107149,6 +107903,7 @@ export declare type JiraFieldSchemeAssociatedFieldsConnection = {
|
|
|
107149
107903
|
__typename?: 'JiraFieldSchemeAssociatedFieldsConnection';
|
|
107150
107904
|
edges?: Maybe<Array<Maybe<JiraFieldSchemeAssociatedFieldsEdge>>>;
|
|
107151
107905
|
pageInfo: PageInfo;
|
|
107906
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
107152
107907
|
};
|
|
107153
107908
|
export declare type JiraFieldSchemeAssociatedFieldsEdge = {
|
|
107154
107909
|
__typename?: 'JiraFieldSchemeAssociatedFieldsEdge';
|
|
@@ -107503,6 +108258,7 @@ export declare type JiraFlagField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
107503
108258
|
fieldId: Scalars['String']['output'];
|
|
107504
108259
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107505
108260
|
flag?: Maybe<JiraFlag>;
|
|
108261
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107506
108262
|
id: Scalars['ID']['output'];
|
|
107507
108263
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107508
108264
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107544,6 +108300,7 @@ export declare type JiraForgeDateField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
107544
108300
|
fieldId: Scalars['String']['output'];
|
|
107545
108301
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107546
108302
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
108303
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107547
108304
|
id: Scalars['ID']['output'];
|
|
107548
108305
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107549
108306
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107562,6 +108319,7 @@ export declare type JiraForgeDatetimeField = JiraIssueField & JiraIssueFieldConf
|
|
|
107562
108319
|
fieldId: Scalars['String']['output'];
|
|
107563
108320
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107564
108321
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
108322
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107565
108323
|
id: Scalars['ID']['output'];
|
|
107566
108324
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107567
108325
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107617,6 +108375,7 @@ export declare type JiraForgeGroupField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
107617
108375
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107618
108376
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
107619
108377
|
groups?: Maybe<JiraGroupConnection>;
|
|
108378
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107620
108379
|
id: Scalars['ID']['output'];
|
|
107621
108380
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107622
108381
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107644,6 +108403,7 @@ export declare type JiraForgeGroupsField = JiraIssueField & JiraIssueFieldConfig
|
|
|
107644
108403
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107645
108404
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
107646
108405
|
groups?: Maybe<JiraGroupConnection>;
|
|
108406
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107647
108407
|
id: Scalars['ID']['output'];
|
|
107648
108408
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107649
108409
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107699,6 +108459,7 @@ export declare type JiraForgeNumberField = JiraIssueField & JiraIssueFieldConfig
|
|
|
107699
108459
|
fieldId: Scalars['String']['output'];
|
|
107700
108460
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107701
108461
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
108462
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107702
108463
|
id: Scalars['ID']['output'];
|
|
107703
108464
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107704
108465
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107717,6 +108478,7 @@ export declare type JiraForgeObjectField = JiraIssueField & JiraIssueFieldConfig
|
|
|
107717
108478
|
fieldId: Scalars['String']['output'];
|
|
107718
108479
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107719
108480
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
108481
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107720
108482
|
id: Scalars['ID']['output'];
|
|
107721
108483
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107722
108484
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107768,6 +108530,7 @@ export declare type JiraForgeStringField = JiraIssueField & JiraIssueFieldConfig
|
|
|
107768
108530
|
fieldId: Scalars['String']['output'];
|
|
107769
108531
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107770
108532
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
108533
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107771
108534
|
id: Scalars['ID']['output'];
|
|
107772
108535
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107773
108536
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107786,6 +108549,7 @@ export declare type JiraForgeStringsField = JiraIssueField & JiraIssueFieldConfi
|
|
|
107786
108549
|
fieldId: Scalars['String']['output'];
|
|
107787
108550
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107788
108551
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
108552
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107789
108553
|
id: Scalars['ID']['output'];
|
|
107790
108554
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107791
108555
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107849,6 +108613,7 @@ export declare type JiraForgeUserField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
107849
108613
|
fieldId: Scalars['String']['output'];
|
|
107850
108614
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107851
108615
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
108616
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107852
108617
|
id: Scalars['ID']['output'];
|
|
107853
108618
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107854
108619
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107877,6 +108642,7 @@ export declare type JiraForgeUsersField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
107877
108642
|
fieldId: Scalars['String']['output'];
|
|
107878
108643
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107879
108644
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
108645
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107880
108646
|
id: Scalars['ID']['output'];
|
|
107881
108647
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107882
108648
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -108162,6 +108928,7 @@ export declare type JiraGenericIssueField = JiraIssueField & JiraIssueFieldConfi
|
|
|
108162
108928
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
108163
108929
|
fieldId: Scalars['String']['output'];
|
|
108164
108930
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
108931
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
108165
108932
|
id: Scalars['ID']['output'];
|
|
108166
108933
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
108167
108934
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -108299,6 +109066,7 @@ export declare type JiraGoalsField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
108299
109066
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
108300
109067
|
fieldId: Scalars['String']['output'];
|
|
108301
109068
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
109069
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
108302
109070
|
id: Scalars['ID']['output'];
|
|
108303
109071
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
108304
109072
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -109670,6 +110438,7 @@ export declare type JiraIssueField = {
|
|
|
109670
110438
|
description?: Maybe<Scalars['String']['output']>;
|
|
109671
110439
|
fieldId: Scalars['String']['output'];
|
|
109672
110440
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
110441
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
109673
110442
|
id: Scalars['ID']['output'];
|
|
109674
110443
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
109675
110444
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -110178,6 +110947,7 @@ export declare type JiraIssueLinkField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
110178
110947
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
110179
110948
|
fieldId: Scalars['String']['output'];
|
|
110180
110949
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
110950
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
110181
110951
|
id: Scalars['ID']['output'];
|
|
110182
110952
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
110183
110953
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -110230,6 +111000,7 @@ export declare type JiraIssueLinkRelationshipTypeField = JiraIssueField & JiraIs
|
|
|
110230
111000
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
110231
111001
|
fieldId: Scalars['String']['output'];
|
|
110232
111002
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
111003
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
110233
111004
|
id: Scalars['ID']['output'];
|
|
110234
111005
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
110235
111006
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -110413,6 +111184,7 @@ export declare type JiraIssueRestrictionField = JiraIssueField & JiraIssueFieldC
|
|
|
110413
111184
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
110414
111185
|
fieldId: Scalars['String']['output'];
|
|
110415
111186
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
111187
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
110416
111188
|
id: Scalars['ID']['output'];
|
|
110417
111189
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
110418
111190
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -111073,6 +111845,7 @@ export declare type JiraIssueTypeField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
111073
111845
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
111074
111846
|
fieldId: Scalars['String']['output'];
|
|
111075
111847
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
111848
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
111076
111849
|
id: Scalars['ID']['output'];
|
|
111077
111850
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
111078
111851
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -111211,6 +111984,10 @@ export declare enum JiraIssueViewTimestampDisplayMode {
|
|
|
111211
111984
|
Absolute = "ABSOLUTE",
|
|
111212
111985
|
Relative = "RELATIVE"
|
|
111213
111986
|
}
|
|
111987
|
+
export declare enum JiraIssueViewUwsTabPreference {
|
|
111988
|
+
ChildItems = "CHILD_ITEMS",
|
|
111989
|
+
LinkedWorkItems = "LINKED_WORK_ITEMS"
|
|
111990
|
+
}
|
|
111214
111991
|
export declare enum JiraIssueViewUserPreferenceLayoutType {
|
|
111215
111992
|
Custom = "CUSTOM",
|
|
111216
111993
|
Discussion = "DISCUSSION",
|
|
@@ -112307,6 +113084,7 @@ export declare type JiraLabelsField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
112307
113084
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
112308
113085
|
fieldId: Scalars['String']['output'];
|
|
112309
113086
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
113087
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
112310
113088
|
id: Scalars['ID']['output'];
|
|
112311
113089
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
112312
113090
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -112733,6 +113511,7 @@ export declare type JiraMultipleGroupPickerField = JiraIssueField & JiraIssueFie
|
|
|
112733
113511
|
fieldId: Scalars['String']['output'];
|
|
112734
113512
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
112735
113513
|
groups?: Maybe<JiraGroupConnection>;
|
|
113514
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
112736
113515
|
id: Scalars['ID']['output'];
|
|
112737
113516
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
112738
113517
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -112785,6 +113564,7 @@ export declare type JiraMultipleSelectField = JiraHasMultipleSelectedValues & Ji
|
|
|
112785
113564
|
fieldId: Scalars['String']['output'];
|
|
112786
113565
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
112787
113566
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
113567
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
112788
113568
|
id: Scalars['ID']['output'];
|
|
112789
113569
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
112790
113570
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -112849,6 +113629,7 @@ export declare type JiraMultipleSelectUserPickerField = JiraIssueField & JiraIss
|
|
|
112849
113629
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
112850
113630
|
fieldId: Scalars['String']['output'];
|
|
112851
113631
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
113632
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
112852
113633
|
id: Scalars['ID']['output'];
|
|
112853
113634
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
112854
113635
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -112897,6 +113678,7 @@ export declare type JiraMultipleVersionPickerField = JiraHasMultipleSelectedValu
|
|
|
112897
113678
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
112898
113679
|
fieldId: Scalars['String']['output'];
|
|
112899
113680
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
113681
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
112900
113682
|
id: Scalars['ID']['output'];
|
|
112901
113683
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
112902
113684
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -113027,6 +113809,7 @@ export declare type JiraMutation = {
|
|
|
113027
113809
|
disableJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
113028
113810
|
discardUnpublishedChangesJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
113029
113811
|
discardUserCalendarViewConfig?: Maybe<JiraUpdateCalendarViewConfigPayload>;
|
|
113812
|
+
disconnectTownsquareProjectToSpace?: Maybe<JiraDisconnectTownsquareProjectPayload>;
|
|
113030
113813
|
duplicateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
113031
113814
|
editCustomField?: Maybe<JiraEditCustomFieldPayload>;
|
|
113032
113815
|
forge: JiraForgeMutation;
|
|
@@ -113433,6 +114216,9 @@ export declare type JiraMutationDiscardUnpublishedChangesJiraJourneyConfiguratio
|
|
|
113433
114216
|
export declare type JiraMutationDiscardUserCalendarViewConfigArgs = {
|
|
113434
114217
|
input: JiraDiscardUserViewConfigInput;
|
|
113435
114218
|
};
|
|
114219
|
+
export declare type JiraMutationDisconnectTownsquareProjectToSpaceArgs = {
|
|
114220
|
+
input: JiraDisconnectTownsquareProjectToSpaceInput;
|
|
114221
|
+
};
|
|
113436
114222
|
export declare type JiraMutationDuplicateJiraJourneyConfigurationArgs = {
|
|
113437
114223
|
cloudId: Scalars['ID']['input'];
|
|
113438
114224
|
input: JiraDuplicateJourneyConfigurationInput;
|
|
@@ -114220,6 +115006,7 @@ export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
114220
115006
|
fieldId: Scalars['String']['output'];
|
|
114221
115007
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
114222
115008
|
formatConfig?: Maybe<JiraNumberFieldFormatConfig>;
|
|
115009
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
114223
115010
|
id: Scalars['ID']['output'];
|
|
114224
115011
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
114225
115012
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -114233,6 +115020,7 @@ export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
114233
115020
|
export declare type JiraNumberFieldFormatConfig = {
|
|
114234
115021
|
__typename?: 'JiraNumberFieldFormatConfig';
|
|
114235
115022
|
decimalSeparator?: Maybe<JiraDecimalSeparator>;
|
|
115023
|
+
durationUnits?: Maybe<Array<JiraDurationUnit>>;
|
|
114236
115024
|
formatDecimals?: Maybe<Scalars['Int']['output']>;
|
|
114237
115025
|
formatStyle?: Maybe<JiraNumberFieldFormatStyle>;
|
|
114238
115026
|
formatUnit?: Maybe<Scalars['String']['output']>;
|
|
@@ -114240,6 +115028,7 @@ export declare type JiraNumberFieldFormatConfig = {
|
|
|
114240
115028
|
};
|
|
114241
115029
|
export declare type JiraNumberFieldFormatConfigInput = {
|
|
114242
115030
|
decimalSeparator?: InputMaybe<JiraDecimalSeparator>;
|
|
115031
|
+
durationUnits?: InputMaybe<Array<JiraDurationUnit>>;
|
|
114243
115032
|
formatDecimals?: InputMaybe<Scalars['Int']['input']>;
|
|
114244
115033
|
formatStyle: JiraNumberFieldFormatStyle;
|
|
114245
115034
|
formatUnit?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -114248,6 +115037,7 @@ export declare type JiraNumberFieldFormatConfigInput = {
|
|
|
114248
115037
|
export declare enum JiraNumberFieldFormatStyle {
|
|
114249
115038
|
Currency = "CURRENCY",
|
|
114250
115039
|
Decimal = "DECIMAL",
|
|
115040
|
+
Duration = "DURATION",
|
|
114251
115041
|
Percent = "PERCENT",
|
|
114252
115042
|
Unit = "UNIT"
|
|
114253
115043
|
}
|
|
@@ -114278,6 +115068,7 @@ export declare type JiraNumberFormulaField = JiraIssueField & JiraIssueFieldConf
|
|
|
114278
115068
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
114279
115069
|
formatConfig?: Maybe<JiraNumberFieldFormatConfig>;
|
|
114280
115070
|
formulaExpressionConfig?: Maybe<JiraFormulaFieldExpressionConfig>;
|
|
115071
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
114281
115072
|
id: Scalars['ID']['output'];
|
|
114282
115073
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
114283
115074
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -114734,6 +115525,7 @@ export declare type JiraOriginalTimeEstimateField = JiraIssueField & JiraIssueFi
|
|
|
114734
115525
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
114735
115526
|
fieldId: Scalars['String']['output'];
|
|
114736
115527
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
115528
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
114737
115529
|
id: Scalars['ID']['output'];
|
|
114738
115530
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
114739
115531
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -114811,6 +115603,7 @@ export declare type JiraParentIssueField = JiraIssueField & JiraIssueFieldConfig
|
|
|
114811
115603
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
114812
115604
|
fieldId: Scalars['String']['output'];
|
|
114813
115605
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
115606
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
114814
115607
|
id: Scalars['ID']['output'];
|
|
114815
115608
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
114816
115609
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -114886,6 +115679,7 @@ export declare type JiraPeopleField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
114886
115679
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
114887
115680
|
fieldId: Scalars['String']['output'];
|
|
114888
115681
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
115682
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
114889
115683
|
id: Scalars['ID']['output'];
|
|
114890
115684
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
114891
115685
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -115216,6 +116010,7 @@ export declare type JiraPlaybookInstance = Node & {
|
|
|
115216
116010
|
id: Scalars['ID']['output'];
|
|
115217
116011
|
name?: Maybe<Scalars['String']['output']>;
|
|
115218
116012
|
steps?: Maybe<Array<JiraPlaybookInstanceStep>>;
|
|
116013
|
+
totalExecutionCount?: Maybe<Scalars['Int']['output']>;
|
|
115219
116014
|
};
|
|
115220
116015
|
export declare type JiraPlaybookInstanceConnection = HasPageInfo & QueryPayload & {
|
|
115221
116016
|
__typename?: 'JiraPlaybookInstanceConnection';
|
|
@@ -115543,6 +116338,7 @@ export declare type JiraPriorityField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
115543
116338
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
115544
116339
|
fieldId: Scalars['String']['output'];
|
|
115545
116340
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
116341
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
115546
116342
|
id: Scalars['ID']['output'];
|
|
115547
116343
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
115548
116344
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -115604,6 +116400,7 @@ export declare type JiraProformaFormsField = JiraIssueField & JiraIssueFieldConf
|
|
|
115604
116400
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
115605
116401
|
fieldId: Scalars['String']['output'];
|
|
115606
116402
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
116403
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
115607
116404
|
id: Scalars['ID']['output'];
|
|
115608
116405
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
115609
116406
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -116115,6 +116912,7 @@ export declare type JiraProjectField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
116115
116912
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
116116
116913
|
fieldId: Scalars['String']['output'];
|
|
116117
116914
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
116915
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
116118
116916
|
id: Scalars['ID']['output'];
|
|
116119
116917
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
116120
116918
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -118051,6 +118849,7 @@ export declare type JiraRadioSelectField = JiraIssueField & JiraIssueFieldConfig
|
|
|
118051
118849
|
fieldId: Scalars['String']['output'];
|
|
118052
118850
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
118053
118851
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
118852
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
118054
118853
|
id: Scalars['ID']['output'];
|
|
118055
118854
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
118056
118855
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -118354,6 +119153,7 @@ export declare type JiraRemainingTimeEstimateField = JiraIssueField & JiraIssueF
|
|
|
118354
119153
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
118355
119154
|
fieldId: Scalars['String']['output'];
|
|
118356
119155
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
119156
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
118357
119157
|
id: Scalars['ID']['output'];
|
|
118358
119158
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
118359
119159
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -118695,6 +119495,7 @@ export declare type JiraResolutionField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
118695
119495
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
118696
119496
|
fieldId: Scalars['String']['output'];
|
|
118697
119497
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
119498
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
118698
119499
|
id: Scalars['ID']['output'];
|
|
118699
119500
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
118700
119501
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -118982,6 +119783,7 @@ export declare type JiraRichTextField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
118982
119783
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
118983
119784
|
fieldId: Scalars['String']['output'];
|
|
118984
119785
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
119786
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
118985
119787
|
id: Scalars['ID']['output'];
|
|
118986
119788
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
118987
119789
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119329,6 +120131,7 @@ export declare type JiraSecurityLevelField = JiraIssueField & JiraIssueFieldConf
|
|
|
119329
120131
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119330
120132
|
fieldId: Scalars['String']['output'];
|
|
119331
120133
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120134
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119332
120135
|
id: Scalars['ID']['output'];
|
|
119333
120136
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119334
120137
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119386,6 +120189,7 @@ export declare type JiraSelectedUsersField = {
|
|
|
119386
120189
|
description?: Maybe<Scalars['String']['output']>;
|
|
119387
120190
|
fieldId: Scalars['String']['output'];
|
|
119388
120191
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120192
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119389
120193
|
id: Scalars['ID']['output'];
|
|
119390
120194
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119391
120195
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119483,6 +120287,7 @@ export declare type JiraServiceManagementApprovalField = JiraIssueField & JiraIs
|
|
|
119483
120287
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119484
120288
|
fieldId: Scalars['String']['output'];
|
|
119485
120289
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120290
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119486
120291
|
id: Scalars['ID']['output'];
|
|
119487
120292
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119488
120293
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119728,6 +120533,7 @@ export declare type JiraServiceManagementDateTimeField = JiraIssueField & JiraIs
|
|
|
119728
120533
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119729
120534
|
fieldId: Scalars['String']['output'];
|
|
119730
120535
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120536
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119731
120537
|
id: Scalars['ID']['output'];
|
|
119732
120538
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119733
120539
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119790,6 +120596,7 @@ export declare type JiraServiceManagementEntitlementField = JiraIssueField & Jir
|
|
|
119790
120596
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119791
120597
|
fieldId: Scalars['String']['output'];
|
|
119792
120598
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120599
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119793
120600
|
id: Scalars['ID']['output'];
|
|
119794
120601
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119795
120602
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119831,6 +120638,7 @@ export declare type JiraServiceManagementIncidentLinkingField = JiraIssueField &
|
|
|
119831
120638
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119832
120639
|
fieldId: Scalars['String']['output'];
|
|
119833
120640
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120641
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119834
120642
|
id: Scalars['ID']['output'];
|
|
119835
120643
|
incident?: Maybe<JiraServiceManagementIncident>;
|
|
119836
120644
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119858,6 +120666,7 @@ export declare type JiraServiceManagementMajorIncidentField = JiraIssueField & J
|
|
|
119858
120666
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119859
120667
|
fieldId: Scalars['String']['output'];
|
|
119860
120668
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120669
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119861
120670
|
id: Scalars['ID']['output'];
|
|
119862
120671
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119863
120672
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119908,6 +120717,7 @@ export declare type JiraServiceManagementMultipleSelectUserPickerField = JiraIss
|
|
|
119908
120717
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119909
120718
|
fieldId: Scalars['String']['output'];
|
|
119910
120719
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120720
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119911
120721
|
id: Scalars['ID']['output'];
|
|
119912
120722
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119913
120723
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119964,6 +120774,7 @@ export declare type JiraServiceManagementOrganizationField = JiraHasMultipleSele
|
|
|
119964
120774
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119965
120775
|
fieldId: Scalars['String']['output'];
|
|
119966
120776
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120777
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119967
120778
|
id: Scalars['ID']['output'];
|
|
119968
120779
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119969
120780
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -120024,6 +120835,7 @@ export declare type JiraServiceManagementPeopleField = JiraIssueField & JiraIssu
|
|
|
120024
120835
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
120025
120836
|
fieldId: Scalars['String']['output'];
|
|
120026
120837
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120838
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
120027
120839
|
id: Scalars['ID']['output'];
|
|
120028
120840
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
120029
120841
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -120106,6 +120918,7 @@ export declare type JiraServiceManagementRequestFeedbackField = JiraIssueField &
|
|
|
120106
120918
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
120107
120919
|
fieldId: Scalars['String']['output'];
|
|
120108
120920
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120921
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
120109
120922
|
id: Scalars['ID']['output'];
|
|
120110
120923
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
120111
120924
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -120121,6 +120934,7 @@ export declare type JiraServiceManagementRequestLanguageField = JiraIssueField &
|
|
|
120121
120934
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
120122
120935
|
fieldId: Scalars['String']['output'];
|
|
120123
120936
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120937
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
120124
120938
|
id: Scalars['ID']['output'];
|
|
120125
120939
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
120126
120940
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -120212,6 +121026,7 @@ export declare type JiraServiceManagementRequestTypeField = JiraIssueField & Jir
|
|
|
120212
121026
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
120213
121027
|
fieldId: Scalars['String']['output'];
|
|
120214
121028
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
121029
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
120215
121030
|
id: Scalars['ID']['output'];
|
|
120216
121031
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
120217
121032
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -120316,6 +121131,7 @@ export declare type JiraServiceManagementRespondersField = JiraIssueField & Jira
|
|
|
120316
121131
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
120317
121132
|
fieldId: Scalars['String']['output'];
|
|
120318
121133
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
121134
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
120319
121135
|
id: Scalars['ID']['output'];
|
|
120320
121136
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
120321
121137
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -120358,6 +121174,7 @@ export declare type JiraServiceManagementSentimentField = JiraIssueField & JiraI
|
|
|
120358
121174
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
120359
121175
|
fieldId: Scalars['String']['output'];
|
|
120360
121176
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
121177
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
120361
121178
|
id: Scalars['ID']['output'];
|
|
120362
121179
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
120363
121180
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -120940,6 +121757,16 @@ export declare type JiraSetTimelineHighlightedReleasesPayload = Payload & {
|
|
|
120940
121757
|
errors?: Maybe<Array<MutationError>>;
|
|
120941
121758
|
success: Scalars['Boolean']['output'];
|
|
120942
121759
|
};
|
|
121760
|
+
export declare type JiraSetTimelineViewFieldSetsInput = {
|
|
121761
|
+
fieldSetIds: Array<Scalars['String']['input']>;
|
|
121762
|
+
viewId: Scalars['ID']['input'];
|
|
121763
|
+
};
|
|
121764
|
+
export declare type JiraSetTimelineViewFieldSetsPayload = Payload & {
|
|
121765
|
+
__typename?: 'JiraSetTimelineViewFieldSetsPayload';
|
|
121766
|
+
errors?: Maybe<Array<MutationError>>;
|
|
121767
|
+
success: Scalars['Boolean']['output'];
|
|
121768
|
+
view?: Maybe<JiraView>;
|
|
121769
|
+
};
|
|
120943
121770
|
export declare type JiraSetTimelineViewHideDependenciesInput = {
|
|
120944
121771
|
hideDependencies: Scalars['Boolean']['input'];
|
|
120945
121772
|
viewId: Scalars['ID']['input'];
|
|
@@ -121156,6 +121983,7 @@ export declare type JiraSingleGroupPickerField = JiraIssueField & JiraIssueField
|
|
|
121156
121983
|
fieldId: Scalars['String']['output'];
|
|
121157
121984
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
121158
121985
|
groups?: Maybe<JiraGroupConnection>;
|
|
121986
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
121159
121987
|
id: Scalars['ID']['output'];
|
|
121160
121988
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
121161
121989
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -121196,6 +122024,7 @@ export declare type JiraSingleLineTextField = JiraIssueField & JiraIssueFieldCon
|
|
|
121196
122024
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
121197
122025
|
fieldId: Scalars['String']['output'];
|
|
121198
122026
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
122027
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
121199
122028
|
id: Scalars['ID']['output'];
|
|
121200
122029
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
121201
122030
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -121236,6 +122065,7 @@ export declare type JiraSingleSelectField = JiraHasSelectableValueOptions & Jira
|
|
|
121236
122065
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
121237
122066
|
fieldOption?: Maybe<JiraOption>;
|
|
121238
122067
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
122068
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
121239
122069
|
id: Scalars['ID']['output'];
|
|
121240
122070
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
121241
122071
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -121286,6 +122116,7 @@ export declare type JiraSingleSelectUserPickerField = JiraIssueField & JiraIssue
|
|
|
121286
122116
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
121287
122117
|
fieldId: Scalars['String']['output'];
|
|
121288
122118
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
122119
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
121289
122120
|
id: Scalars['ID']['output'];
|
|
121290
122121
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
121291
122122
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -121333,6 +122164,7 @@ export declare type JiraSingleVersionPickerField = JiraHasSelectableValueOptions
|
|
|
121333
122164
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
121334
122165
|
fieldId: Scalars['String']['output'];
|
|
121335
122166
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
122167
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
121336
122168
|
id: Scalars['ID']['output'];
|
|
121337
122169
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
121338
122170
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -121591,6 +122423,7 @@ export declare type JiraSprintField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
121591
122423
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
121592
122424
|
fieldId: Scalars['String']['output'];
|
|
121593
122425
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
122426
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
121594
122427
|
id: Scalars['ID']['output'];
|
|
121595
122428
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
121596
122429
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -121711,6 +122544,7 @@ export declare type JiraStatusCategoryField = JiraIssueField & JiraIssueFieldCon
|
|
|
121711
122544
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
121712
122545
|
fieldId: Scalars['String']['output'];
|
|
121713
122546
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
122547
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
121714
122548
|
id: Scalars['ID']['output'];
|
|
121715
122549
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
121716
122550
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -121744,6 +122578,7 @@ export declare type JiraStatusField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
121744
122578
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
121745
122579
|
fieldId: Scalars['String']['output'];
|
|
121746
122580
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
122581
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
121747
122582
|
id: Scalars['ID']['output'];
|
|
121748
122583
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
121749
122584
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122033,6 +122868,7 @@ export declare type JiraSubtaskSummaryField = JiraIssueField & Node & {
|
|
|
122033
122868
|
description?: Maybe<Scalars['String']['output']>;
|
|
122034
122869
|
fieldId: Scalars['String']['output'];
|
|
122035
122870
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
122871
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
122036
122872
|
id: Scalars['ID']['output'];
|
|
122037
122873
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
122038
122874
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122049,6 +122885,7 @@ export declare type JiraSubtasksField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
122049
122885
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
122050
122886
|
fieldId: Scalars['String']['output'];
|
|
122051
122887
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
122888
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
122052
122889
|
id: Scalars['ID']['output'];
|
|
122053
122890
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
122054
122891
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122181,6 +123018,7 @@ export declare type JiraTeamField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
122181
123018
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
122182
123019
|
fieldId: Scalars['String']['output'];
|
|
122183
123020
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
123021
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
122184
123022
|
id: Scalars['ID']['output'];
|
|
122185
123023
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
122186
123024
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122250,6 +123088,7 @@ export declare type JiraTeamViewField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
122250
123088
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
122251
123089
|
fieldId: Scalars['String']['output'];
|
|
122252
123090
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
123091
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
122253
123092
|
id: Scalars['ID']['output'];
|
|
122254
123093
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
122255
123094
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122306,6 +123145,7 @@ export declare type JiraTextFormulaField = JiraIssueField & JiraIssueFieldConfig
|
|
|
122306
123145
|
fieldId: Scalars['String']['output'];
|
|
122307
123146
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
122308
123147
|
formulaExpressionConfig?: Maybe<JiraFormulaFieldExpressionConfig>;
|
|
123148
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
122309
123149
|
id: Scalars['ID']['output'];
|
|
122310
123150
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
122311
123151
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122328,6 +123168,7 @@ export declare type JiraTimeTrackingField = JiraIssueField & JiraIssueFieldConfi
|
|
|
122328
123168
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
122329
123169
|
fieldId: Scalars['String']['output'];
|
|
122330
123170
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
123171
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
122331
123172
|
id: Scalars['ID']['output'];
|
|
122332
123173
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
122333
123174
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122374,6 +123215,7 @@ export declare type JiraTimelineField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
122374
123215
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
122375
123216
|
fieldId: Scalars['String']['output'];
|
|
122376
123217
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
123218
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
122377
123219
|
id: Scalars['ID']['output'];
|
|
122378
123220
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
122379
123221
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122573,6 +123415,7 @@ export declare type JiraTownsquareProjectField = JiraIssueField & JiraIssueField
|
|
|
122573
123415
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
122574
123416
|
fieldId: Scalars['String']['output'];
|
|
122575
123417
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
123418
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
122576
123419
|
id: Scalars['ID']['output'];
|
|
122577
123420
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
122578
123421
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -123395,6 +124238,7 @@ export declare type JiraUrlField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
123395
124238
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
123396
124239
|
fieldId: Scalars['String']['output'];
|
|
123397
124240
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
124241
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
123398
124242
|
id: Scalars['ID']['output'];
|
|
123399
124243
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
123400
124244
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -123556,6 +124400,7 @@ export declare type JiraUserPreferences = {
|
|
|
123556
124400
|
issueViewShouldShowWelcomeMessage?: Maybe<Scalars['Boolean']['output']>;
|
|
123557
124401
|
issueViewSidebarResizeRatio?: Maybe<Scalars['String']['output']>;
|
|
123558
124402
|
issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
124403
|
+
issueViewUWSTabPreference?: Maybe<JiraIssueViewUwsTabPreference>;
|
|
123559
124404
|
issueViewUserPreferredLayout?: Maybe<JiraIssueViewUserPreferredLayout>;
|
|
123560
124405
|
jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
123561
124406
|
projectListRightPanelState?: Maybe<JiraProjectListRightPanelState>;
|
|
@@ -123588,6 +124433,9 @@ export declare type JiraUserPreferencesIssueViewHiddenFieldsMenuStateArgs = {
|
|
|
123588
124433
|
export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
|
|
123589
124434
|
projectKey: Scalars['String']['input'];
|
|
123590
124435
|
};
|
|
124436
|
+
export declare type JiraUserPreferencesIssueViewUwsTabPreferenceArgs = {
|
|
124437
|
+
projectKey: Scalars['String']['input'];
|
|
124438
|
+
};
|
|
123591
124439
|
export declare type JiraUserPreferencesRequestTypeTableViewSettingsArgs = {
|
|
123592
124440
|
projectKey: Scalars['String']['input'];
|
|
123593
124441
|
};
|
|
@@ -124263,6 +125111,7 @@ export declare type JiraVotesField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
124263
125111
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
124264
125112
|
fieldId: Scalars['String']['output'];
|
|
124265
125113
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
125114
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
124266
125115
|
id: Scalars['ID']['output'];
|
|
124267
125116
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
124268
125117
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -124304,6 +125153,7 @@ export declare type JiraWatchesField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
124304
125153
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
124305
125154
|
fieldId: Scalars['String']['output'];
|
|
124306
125155
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
125156
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
124307
125157
|
id: Scalars['ID']['output'];
|
|
124308
125158
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
124309
125159
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -124394,6 +125244,7 @@ export declare type JiraWorkCategoryField = JiraIssueField & JiraIssueFieldConfi
|
|
|
124394
125244
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
124395
125245
|
fieldId: Scalars['String']['output'];
|
|
124396
125246
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
125247
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
124397
125248
|
id: Scalars['ID']['output'];
|
|
124398
125249
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
124399
125250
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -124421,6 +125272,7 @@ export declare type JiraWorkLogField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
124421
125272
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
124422
125273
|
fieldId: Scalars['String']['output'];
|
|
124423
125274
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
125275
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
124424
125276
|
id: Scalars['ID']['output'];
|
|
124425
125277
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
124426
125278
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -125148,6 +126000,20 @@ export declare type JpdViewsServiceAxisConfigInput = {
|
|
|
125148
126000
|
fieldOptions: Array<JpdViewsServiceOptionInput>;
|
|
125149
126001
|
reversed: Scalars['Boolean']['input'];
|
|
125150
126002
|
};
|
|
126003
|
+
export declare enum JpdViewsServiceColorStyle {
|
|
126004
|
+
Background = "BACKGROUND",
|
|
126005
|
+
Highlight = "HIGHLIGHT"
|
|
126006
|
+
}
|
|
126007
|
+
export declare enum JpdViewsServiceColumnSize {
|
|
126008
|
+
Default = "DEFAULT",
|
|
126009
|
+
Large = "LARGE",
|
|
126010
|
+
Small = "SMALL"
|
|
126011
|
+
}
|
|
126012
|
+
export declare enum JpdViewsServiceConnectionsLayout {
|
|
126013
|
+
Cards = "CARDS",
|
|
126014
|
+
List = "LIST",
|
|
126015
|
+
Summary = "SUMMARY"
|
|
126016
|
+
}
|
|
125151
126017
|
export declare type JpdViewsServiceCreateGlobalViewInput = {
|
|
125152
126018
|
name: Scalars['String']['input'];
|
|
125153
126019
|
visualizationType: JpdViewsServiceVisualizationType;
|
|
@@ -125216,36 +126082,58 @@ export declare type JpdViewsServiceGlobalView = JpdViewsServiceViewBase & Node &
|
|
|
125216
126082
|
boldColors?: Maybe<Scalars['Boolean']['output']>;
|
|
125217
126083
|
colorBy?: Maybe<JpdViewsServiceField>;
|
|
125218
126084
|
colorStyle?: Maybe<Scalars['String']['output']>;
|
|
126085
|
+
colorStyleNew?: Maybe<JpdViewsServiceColorStyle>;
|
|
125219
126086
|
columnSize?: Maybe<Scalars['String']['output']>;
|
|
126087
|
+
columnSizeNew: JpdViewsServiceColumnSize;
|
|
125220
126088
|
connectionsFilter?: Maybe<Array<Maybe<JpdViewsServiceFilter>>>;
|
|
126089
|
+
connectionsFilterNew: Array<JpdViewsServiceFilter>;
|
|
125221
126090
|
connectionsLayoutType?: Maybe<Scalars['String']['output']>;
|
|
126091
|
+
connectionsLayoutTypeNew: JpdViewsServiceConnectionsLayout;
|
|
126092
|
+
createdAt: Scalars['String']['output'];
|
|
125222
126093
|
createdDate?: Maybe<Scalars['String']['output']>;
|
|
125223
126094
|
description?: Maybe<Scalars['String']['output']>;
|
|
126095
|
+
descriptionNew?: Maybe<Scalars['JSON']['output']>;
|
|
125224
126096
|
emoji?: Maybe<Scalars['String']['output']>;
|
|
125225
126097
|
fieldRollups?: Maybe<Array<Maybe<JpdViewsServiceFieldRollup>>>;
|
|
126098
|
+
fieldRollupsNew: Array<JpdViewsServiceFieldRollup>;
|
|
125226
126099
|
fields?: Maybe<Array<Maybe<JpdViewsServiceField>>>;
|
|
126100
|
+
fieldsNew: Array<JpdViewsServiceField>;
|
|
125227
126101
|
filter?: Maybe<Array<Maybe<JpdViewsServiceFilter>>>;
|
|
126102
|
+
filterNew: Array<JpdViewsServiceFilter>;
|
|
125228
126103
|
groupBy?: Maybe<JpdViewsServiceField>;
|
|
125229
126104
|
groupValues?: Maybe<Array<Maybe<JpdViewsServiceNestedId>>>;
|
|
126105
|
+
groupValuesNew: Array<JpdViewsServiceNestedId>;
|
|
125230
126106
|
groupsFilter?: Maybe<Array<Maybe<JpdViewsServiceFilter>>>;
|
|
126107
|
+
groupsFilterNew: Array<JpdViewsServiceFilter>;
|
|
126108
|
+
hidden: Array<JpdViewsServiceField>;
|
|
125231
126109
|
hiddenFields?: Maybe<Array<Maybe<JpdViewsServiceField>>>;
|
|
125232
126110
|
hideEmptyColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
126111
|
+
hideEmptyColumnsNew: Scalars['Boolean']['output'];
|
|
125233
126112
|
hideEmptyGroups?: Maybe<Scalars['Boolean']['output']>;
|
|
125234
126113
|
id: Scalars['ID']['output'];
|
|
125235
126114
|
layoutType?: Maybe<Scalars['String']['output']>;
|
|
126115
|
+
layoutTypeNew?: Maybe<JpdViewsServiceViewLayoutType>;
|
|
125236
126116
|
matrixConfig?: Maybe<JpdViewsServiceMatrixConfig>;
|
|
125237
126117
|
name: Scalars['String']['output'];
|
|
125238
126118
|
rank?: Maybe<Scalars['Int']['output']>;
|
|
125239
126119
|
showConnectionsMatchingColumn?: Maybe<Scalars['Boolean']['output']>;
|
|
126120
|
+
showConnectionsMatchingColumnNew: Scalars['Boolean']['output'];
|
|
125240
126121
|
showConnectionsMatchingGroup?: Maybe<Scalars['Boolean']['output']>;
|
|
126122
|
+
showConnectionsMatchingGroupNew: Scalars['Boolean']['output'];
|
|
125241
126123
|
sort?: Maybe<JpdViewsServiceSort>;
|
|
125242
126124
|
sortMode?: Maybe<Scalars['String']['output']>;
|
|
126125
|
+
sortModeNew: JpdViewsServiceSortMode;
|
|
126126
|
+
sortNew: Array<JpdViewsServiceSort>;
|
|
125243
126127
|
tableColumnSizes?: Maybe<Array<Maybe<JpdViewsServiceTableColumnSize>>>;
|
|
125244
126128
|
timelineConfig?: Maybe<JpdViewsServiceTimelineConfig>;
|
|
126129
|
+
updatedAt: Scalars['String']['output'];
|
|
125245
126130
|
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
126131
|
+
uuid: Scalars['String']['output'];
|
|
125246
126132
|
verticalGroupBy?: Maybe<JpdViewsServiceField>;
|
|
125247
126133
|
verticalGroupValues?: Maybe<Array<Maybe<JpdViewsServiceNestedId>>>;
|
|
126134
|
+
verticalGroupValuesNew: Array<JpdViewsServiceNestedId>;
|
|
125248
126135
|
verticalGroupsFilter?: Maybe<Array<Maybe<JpdViewsServiceFilter>>>;
|
|
126136
|
+
verticalGroupsFilterNew: Array<JpdViewsServiceFilter>;
|
|
125249
126137
|
viewId: Scalars['String']['output'];
|
|
125250
126138
|
visualizationType: JpdViewsServiceVisualizationType;
|
|
125251
126139
|
};
|
|
@@ -125315,6 +126203,11 @@ export declare type JpdViewsServiceSortInput = {
|
|
|
125315
126203
|
field: Scalars['String']['input'];
|
|
125316
126204
|
order: Scalars['String']['input'];
|
|
125317
126205
|
};
|
|
126206
|
+
export declare enum JpdViewsServiceSortMode {
|
|
126207
|
+
FieldsSort = "FIELDS_SORT",
|
|
126208
|
+
ProjectRank = "PROJECT_RANK",
|
|
126209
|
+
ViewRank = "VIEW_RANK"
|
|
126210
|
+
}
|
|
125318
126211
|
export declare type JpdViewsServiceTableColumnSize = {
|
|
125319
126212
|
__typename?: 'JpdViewsServiceTableColumnSize';
|
|
125320
126213
|
field: JpdViewsServiceField;
|
|
@@ -125329,9 +126222,11 @@ export declare type JpdViewsServiceTimelineConfig = {
|
|
|
125329
126222
|
dueDateField: JpdViewsServiceField;
|
|
125330
126223
|
endTimestamp: Scalars['String']['output'];
|
|
125331
126224
|
mode: Scalars['String']['output'];
|
|
126225
|
+
modeNew: JpdViewsServiceTimelineMode;
|
|
125332
126226
|
startDateField: JpdViewsServiceField;
|
|
125333
126227
|
startTimestamp: Scalars['String']['output'];
|
|
125334
126228
|
summaryCardField: JpdViewsServiceField;
|
|
126229
|
+
todayMarker?: Maybe<JpdViewsServiceTodayMarker>;
|
|
125335
126230
|
};
|
|
125336
126231
|
export declare type JpdViewsServiceTimelineConfigInput = {
|
|
125337
126232
|
dueDateField: Scalars['String']['input'];
|
|
@@ -125340,7 +126235,16 @@ export declare type JpdViewsServiceTimelineConfigInput = {
|
|
|
125340
126235
|
startDateField: Scalars['String']['input'];
|
|
125341
126236
|
startTimestamp: Scalars['String']['input'];
|
|
125342
126237
|
summaryCardField: Scalars['String']['input'];
|
|
126238
|
+
todayMarker?: InputMaybe<Scalars['String']['input']>;
|
|
125343
126239
|
};
|
|
126240
|
+
export declare enum JpdViewsServiceTimelineMode {
|
|
126241
|
+
Months = "MONTHS",
|
|
126242
|
+
Quarters = "QUARTERS"
|
|
126243
|
+
}
|
|
126244
|
+
export declare enum JpdViewsServiceTodayMarker {
|
|
126245
|
+
Disabled = "DISABLED",
|
|
126246
|
+
Enabled = "ENABLED"
|
|
126247
|
+
}
|
|
125344
126248
|
export declare type JpdViewsServiceUnassociateGlobalViewContainerInput = {
|
|
125345
126249
|
containerId: Scalars['String']['input'];
|
|
125346
126250
|
containerType: JpdViewsServiceGlobalViewAssociationContainerType;
|
|
@@ -125370,6 +126274,7 @@ export declare type JpdViewsServiceUpdateGlobalViewInput = {
|
|
|
125370
126274
|
connectionsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput>>>;
|
|
125371
126275
|
connectionsLayoutType?: InputMaybe<Scalars['String']['input']>;
|
|
125372
126276
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
126277
|
+
descriptionNew?: InputMaybe<Scalars['JSON']['input']>;
|
|
125373
126278
|
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
125374
126279
|
fieldRollups?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldRollupInput>>>;
|
|
125375
126280
|
fields?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldInput>>>;
|
|
@@ -125383,7 +126288,7 @@ export declare type JpdViewsServiceUpdateGlobalViewInput = {
|
|
|
125383
126288
|
id: Scalars['ID']['input'];
|
|
125384
126289
|
layoutType?: InputMaybe<Scalars['String']['input']>;
|
|
125385
126290
|
matrixConfig?: InputMaybe<JpdViewsServiceMatrixConfigInput>;
|
|
125386
|
-
name
|
|
126291
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
125387
126292
|
showConnectionsMatchingColumn?: InputMaybe<Scalars['Boolean']['input']>;
|
|
125388
126293
|
showConnectionsMatchingGroup?: InputMaybe<Scalars['Boolean']['input']>;
|
|
125389
126294
|
sort?: InputMaybe<Array<InputMaybe<JpdViewsServiceSortInput>>>;
|
|
@@ -125393,7 +126298,7 @@ export declare type JpdViewsServiceUpdateGlobalViewInput = {
|
|
|
125393
126298
|
verticalGroupBy?: InputMaybe<JpdViewsServiceFieldInput>;
|
|
125394
126299
|
verticalGroupValues?: InputMaybe<Array<InputMaybe<JpdViewsServiceNestedIdInput>>>;
|
|
125395
126300
|
verticalGroupsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput>>>;
|
|
125396
|
-
visualizationType
|
|
126301
|
+
visualizationType?: InputMaybe<JpdViewsServiceVisualizationType>;
|
|
125397
126302
|
};
|
|
125398
126303
|
export declare type JpdViewsServiceUpdateGlobalViewPayload = Payload & {
|
|
125399
126304
|
__typename?: 'JpdViewsServiceUpdateGlobalViewPayload';
|
|
@@ -125413,6 +126318,11 @@ export declare type JpdViewsServiceViewBase = {
|
|
|
125413
126318
|
rank?: Maybe<Scalars['Int']['output']>;
|
|
125414
126319
|
visualizationType: JpdViewsServiceVisualizationType;
|
|
125415
126320
|
};
|
|
126321
|
+
export declare enum JpdViewsServiceViewLayoutType {
|
|
126322
|
+
Compact = "COMPACT",
|
|
126323
|
+
Detailed = "DETAILED",
|
|
126324
|
+
Summary = "SUMMARY"
|
|
126325
|
+
}
|
|
125416
126326
|
export declare enum JpdViewsServiceVisualizationType {
|
|
125417
126327
|
Board = "BOARD",
|
|
125418
126328
|
Matrix = "MATRIX",
|
|
@@ -127029,9 +127939,9 @@ export declare type KitsuneSnippet = Node & {
|
|
|
127029
127939
|
createdAt: Scalars['DateTime']['output'];
|
|
127030
127940
|
creator?: Maybe<User>;
|
|
127031
127941
|
creatorId?: Maybe<Scalars['ID']['output']>;
|
|
127032
|
-
feedback
|
|
127942
|
+
feedback?: Maybe<KitsuneFeedback>;
|
|
127033
127943
|
id: Scalars['ID']['output'];
|
|
127034
|
-
insight
|
|
127944
|
+
insight?: Maybe<KitsuneInsight>;
|
|
127035
127945
|
markId?: Maybe<Scalars['ID']['output']>;
|
|
127036
127946
|
};
|
|
127037
127947
|
export declare type KitsuneSnippetConnection = KitsuneConnection & {
|
|
@@ -132432,6 +133342,10 @@ export declare type MarketplaceStoreMutationApiUpdateReviewUpvoteArgs = {
|
|
|
132432
133342
|
export declare type MarketplaceStoreMutationApiUpdateUserPreferencesArgs = {
|
|
132433
133343
|
input: MarketplaceStoreUpdateUserPreferencesInput;
|
|
132434
133344
|
};
|
|
133345
|
+
export declare type MarketplaceStoreNavigation = {
|
|
133346
|
+
__typename?: 'MarketplaceStoreNavigation';
|
|
133347
|
+
sideNavigation: MarketplaceStoreSideNavigationConfig;
|
|
133348
|
+
};
|
|
132435
133349
|
export declare enum MarketplaceStoreObjectType {
|
|
132436
133350
|
App = "APP"
|
|
132437
133351
|
}
|
|
@@ -132566,6 +133480,7 @@ export declare type MarketplaceStorePersonalisedContextAndLayoutInput = {
|
|
|
132566
133480
|
export declare type MarketplaceStorePersonalisedContextAndLayoutResponse = {
|
|
132567
133481
|
__typename?: 'MarketplaceStorePersonalisedContextAndLayoutResponse';
|
|
132568
133482
|
context: MarketplaceStorePersonalisationContext;
|
|
133483
|
+
navigation?: Maybe<MarketplaceStoreNavigation>;
|
|
132569
133484
|
sections: Array<MarketplaceStoreLayoutSection>;
|
|
132570
133485
|
};
|
|
132571
133486
|
export declare type MarketplaceStorePersonalisedContextAndLayoutResponseSectionsArgs = {
|
|
@@ -132942,6 +133857,18 @@ export declare type MarketplaceStoreServiceProvider = {
|
|
|
132942
133857
|
endUserDataTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
132943
133858
|
isAppServiceProvider: MarketplaceStoreAcceptableResponse;
|
|
132944
133859
|
};
|
|
133860
|
+
export declare type MarketplaceStoreSideNavigationConfig = {
|
|
133861
|
+
__typename?: 'MarketplaceStoreSideNavigationConfig';
|
|
133862
|
+
items: Array<MarketplaceStoreSideNavigationItem>;
|
|
133863
|
+
};
|
|
133864
|
+
export declare type MarketplaceStoreSideNavigationItem = {
|
|
133865
|
+
__typename?: 'MarketplaceStoreSideNavigationItem';
|
|
133866
|
+
featureGate?: Maybe<Scalars['String']['output']>;
|
|
133867
|
+
iconKey: Scalars['String']['output'];
|
|
133868
|
+
key: Scalars['String']['output'];
|
|
133869
|
+
name: Scalars['String']['output'];
|
|
133870
|
+
path: Scalars['String']['output'];
|
|
133871
|
+
};
|
|
132945
133872
|
export declare type MarketplaceStoreSiteDetailsInput = {
|
|
132946
133873
|
cloudId: Scalars['String']['input'];
|
|
132947
133874
|
product: MarketplaceStoreSiteProduct;
|
|
@@ -133205,6 +134132,78 @@ export declare type MercuryBaseJiraWorkStatusMapping = {
|
|
|
133205
134132
|
mappedStatusKey: Scalars['String']['output'];
|
|
133206
134133
|
providerMappingContext?: Maybe<MercuryJiraProviderMappingContext>;
|
|
133207
134134
|
};
|
|
134135
|
+
export declare type MercuryBenefitItem = Node & {
|
|
134136
|
+
__typename?: 'MercuryBenefitItem';
|
|
134137
|
+
benefitType?: Maybe<MercuryBenefitType>;
|
|
134138
|
+
focusAreaId?: Maybe<MercuryFocusArea>;
|
|
134139
|
+
id: Scalars['ID']['output'];
|
|
134140
|
+
name: Scalars['String']['output'];
|
|
134141
|
+
};
|
|
134142
|
+
export declare type MercuryBenefitItemConnection = {
|
|
134143
|
+
__typename?: 'MercuryBenefitItemConnection';
|
|
134144
|
+
edges?: Maybe<Array<MercuryBenefitItemEdge>>;
|
|
134145
|
+
pageInfo: PageInfo;
|
|
134146
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
134147
|
+
};
|
|
134148
|
+
export declare type MercuryBenefitItemEdge = {
|
|
134149
|
+
__typename?: 'MercuryBenefitItemEdge';
|
|
134150
|
+
cursor: Scalars['String']['output'];
|
|
134151
|
+
node?: Maybe<MercuryBenefitItem>;
|
|
134152
|
+
};
|
|
134153
|
+
export declare type MercuryBenefitItemSort = {
|
|
134154
|
+
field: MercuryBenefitItemSortField;
|
|
134155
|
+
order: SortOrder;
|
|
134156
|
+
};
|
|
134157
|
+
export declare enum MercuryBenefitItemSortField {
|
|
134158
|
+
Name = "NAME"
|
|
134159
|
+
}
|
|
134160
|
+
export declare type MercuryBenefitPeriodValue = Node & {
|
|
134161
|
+
__typename?: 'MercuryBenefitPeriodValue';
|
|
134162
|
+
amount?: Maybe<MercuryMoney>;
|
|
134163
|
+
financialVersion?: Maybe<MercuryFinancialVersion>;
|
|
134164
|
+
id: Scalars['ID']['output'];
|
|
134165
|
+
yearMonth?: Maybe<Scalars['String']['output']>;
|
|
134166
|
+
};
|
|
134167
|
+
export declare type MercuryBenefitType = Node & {
|
|
134168
|
+
__typename?: 'MercuryBenefitType';
|
|
134169
|
+
createdBy?: Maybe<User>;
|
|
134170
|
+
createdDate?: Maybe<Scalars['String']['output']>;
|
|
134171
|
+
id: Scalars['ID']['output'];
|
|
134172
|
+
name: Scalars['String']['output'];
|
|
134173
|
+
references?: Maybe<MercuryBenefitTypeReferences>;
|
|
134174
|
+
updatedBy?: Maybe<User>;
|
|
134175
|
+
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
134176
|
+
};
|
|
134177
|
+
export declare type MercuryBenefitTypeReferences = {
|
|
134178
|
+
__typename?: 'MercuryBenefitTypeReferences';
|
|
134179
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
134180
|
+
};
|
|
134181
|
+
export declare type MercuryBooleanCustomField = MercuryCustomField & {
|
|
134182
|
+
__typename?: 'MercuryBooleanCustomField';
|
|
134183
|
+
booleanValue?: Maybe<Scalars['Boolean']['output']>;
|
|
134184
|
+
createdBy?: Maybe<User>;
|
|
134185
|
+
createdDate: Scalars['DateTime']['output'];
|
|
134186
|
+
definition?: Maybe<MercuryBooleanCustomFieldDefinition>;
|
|
134187
|
+
updatedBy?: Maybe<User>;
|
|
134188
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
134189
|
+
};
|
|
134190
|
+
export declare type MercuryBooleanCustomFieldDefinition = MercuryCustomFieldDefinition & {
|
|
134191
|
+
__typename?: 'MercuryBooleanCustomFieldDefinition';
|
|
134192
|
+
createdBy?: Maybe<User>;
|
|
134193
|
+
createdDate: Scalars['DateTime']['output'];
|
|
134194
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
134195
|
+
fieldKind: MercuryCustomFieldKind;
|
|
134196
|
+
id: Scalars['ID']['output'];
|
|
134197
|
+
name: Scalars['String']['output'];
|
|
134198
|
+
scope: MercuryCustomFieldDefinitionScope;
|
|
134199
|
+
searchKey?: Maybe<Scalars['String']['output']>;
|
|
134200
|
+
updatedBy?: Maybe<User>;
|
|
134201
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
134202
|
+
visibility: MercuryCustomFieldVisibility;
|
|
134203
|
+
};
|
|
134204
|
+
export declare type MercuryBooleanCustomFieldInput = {
|
|
134205
|
+
booleanValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
134206
|
+
};
|
|
133208
134207
|
export declare type MercuryBudgetAggregation = {
|
|
133209
134208
|
__typename?: 'MercuryBudgetAggregation';
|
|
133210
134209
|
aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
@@ -133341,6 +134340,8 @@ export declare type MercuryChangeProposalFundSummary = {
|
|
|
133341
134340
|
export declare type MercuryChangeProposalFunding = {
|
|
133342
134341
|
__typename?: 'MercuryChangeProposalFunding';
|
|
133343
134342
|
fundsRequested?: Maybe<Scalars['BigDecimal']['output']>;
|
|
134343
|
+
targetBenefit?: Maybe<Scalars['BigDecimal']['output']>;
|
|
134344
|
+
targetRoi?: Maybe<Scalars['Float']['output']>;
|
|
133344
134345
|
};
|
|
133345
134346
|
export declare type MercuryChangeProposalImpact = {
|
|
133346
134347
|
__typename?: 'MercuryChangeProposalImpact';
|
|
@@ -133609,6 +134610,11 @@ export declare type MercuryCostSubtypeSort = {
|
|
|
133609
134610
|
export declare enum MercuryCostSubtypeSortField {
|
|
133610
134611
|
Name = "NAME"
|
|
133611
134612
|
}
|
|
134613
|
+
export declare enum MercuryCostSummaryDimension {
|
|
134614
|
+
FinancialVersionCostClassification = "FINANCIAL_VERSION_COST_CLASSIFICATION",
|
|
134615
|
+
FinancialVersionExpenditureType = "FINANCIAL_VERSION_EXPENDITURE_TYPE",
|
|
134616
|
+
FinancialVersionInvestmentCategory = "FINANCIAL_VERSION_INVESTMENT_CATEGORY"
|
|
134617
|
+
}
|
|
133612
134618
|
export declare type MercuryCostType = Node & {
|
|
133613
134619
|
__typename?: 'MercuryCostType';
|
|
133614
134620
|
displayName: Scalars['String']['output'];
|
|
@@ -133620,6 +134626,41 @@ export declare type MercuryCreateBaseCustomFieldDefinitionInput = {
|
|
|
133620
134626
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
133621
134627
|
name: Scalars['String']['input'];
|
|
133622
134628
|
};
|
|
134629
|
+
export declare type MercuryCreateBenefitItemInput = {
|
|
134630
|
+
focusAreaId: Scalars['ID']['input'];
|
|
134631
|
+
name: Scalars['String']['input'];
|
|
134632
|
+
};
|
|
134633
|
+
export declare type MercuryCreateBenefitItemPayload = Payload & {
|
|
134634
|
+
__typename?: 'MercuryCreateBenefitItemPayload';
|
|
134635
|
+
createdBenefitItem?: Maybe<MercuryBenefitItem>;
|
|
134636
|
+
errors?: Maybe<Array<MutationError>>;
|
|
134637
|
+
success: Scalars['Boolean']['output'];
|
|
134638
|
+
};
|
|
134639
|
+
export declare type MercuryCreateBenefitPeriodValueInput = {
|
|
134640
|
+
amount: Scalars['String']['input'];
|
|
134641
|
+
benefitItemId: Scalars['ID']['input'];
|
|
134642
|
+
financialVersionId: Scalars['ID']['input'];
|
|
134643
|
+
yearMonth: Scalars['String']['input'];
|
|
134644
|
+
};
|
|
134645
|
+
export declare type MercuryCreateBenefitPeriodValuePayload = Payload & {
|
|
134646
|
+
__typename?: 'MercuryCreateBenefitPeriodValuePayload';
|
|
134647
|
+
createdBenefitPeriodValue?: Maybe<MercuryBenefitPeriodValue>;
|
|
134648
|
+
errors?: Maybe<Array<MutationError>>;
|
|
134649
|
+
success: Scalars['Boolean']['output'];
|
|
134650
|
+
};
|
|
134651
|
+
export declare type MercuryCreateBenefitTypeInput = {
|
|
134652
|
+
cloudId: Scalars['ID']['input'];
|
|
134653
|
+
name: Scalars['String']['input'];
|
|
134654
|
+
};
|
|
134655
|
+
export declare type MercuryCreateBenefitTypePayload = Payload & {
|
|
134656
|
+
__typename?: 'MercuryCreateBenefitTypePayload';
|
|
134657
|
+
createdBenefitType?: Maybe<MercuryBenefitType>;
|
|
134658
|
+
errors?: Maybe<Array<MutationError>>;
|
|
134659
|
+
success: Scalars['Boolean']['output'];
|
|
134660
|
+
};
|
|
134661
|
+
export declare type MercuryCreateBooleanCustomFieldDefinitionInput = {
|
|
134662
|
+
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
134663
|
+
};
|
|
133623
134664
|
export declare type MercuryCreateChangeProposalCommentInput = {
|
|
133624
134665
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
133625
134666
|
content: Scalars['String']['input'];
|
|
@@ -133675,6 +134716,7 @@ export declare type MercuryCreateCommentPayload = Payload & {
|
|
|
133675
134716
|
success: Scalars['Boolean']['output'];
|
|
133676
134717
|
};
|
|
133677
134718
|
export declare type MercuryCreateCoreCustomFieldDefinitionInput = {
|
|
134719
|
+
booleanField?: InputMaybe<MercuryCreateBooleanCustomFieldDefinitionInput>;
|
|
133678
134720
|
dateField?: InputMaybe<MercuryCreateDateCustomFieldDefinitionInput>;
|
|
133679
134721
|
multiSelectField?: InputMaybe<MercuryCreateMultiSelectCustomFieldDefinitionInput>;
|
|
133680
134722
|
numberField?: InputMaybe<MercuryCreateNumberCustomFieldDefinitionInput>;
|
|
@@ -133827,10 +134869,12 @@ export declare type MercuryCreatePortfolioPayload = Payload & {
|
|
|
133827
134869
|
export declare type MercuryCreateRiskInput = {
|
|
133828
134870
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
133829
134871
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
134872
|
+
impact?: InputMaybe<Scalars['Int']['input']>;
|
|
134873
|
+
likelihood?: InputMaybe<Scalars['Int']['input']>;
|
|
133830
134874
|
name: Scalars['String']['input'];
|
|
133831
134875
|
owner?: InputMaybe<Scalars['ID']['input']>;
|
|
133832
134876
|
submitter?: InputMaybe<Scalars['ID']['input']>;
|
|
133833
|
-
targetDate?: InputMaybe<
|
|
134877
|
+
targetDate?: InputMaybe<MercuryRiskTargetDateInput>;
|
|
133834
134878
|
};
|
|
133835
134879
|
export declare type MercuryCreateRiskPayload = Payload & {
|
|
133836
134880
|
__typename?: 'MercuryCreateRiskPayload';
|
|
@@ -133915,6 +134959,7 @@ export declare enum MercuryCustomFieldDefinitionSortField {
|
|
|
133915
134959
|
Name = "NAME"
|
|
133916
134960
|
}
|
|
133917
134961
|
export declare type MercuryCustomFieldInput = {
|
|
134962
|
+
booleanField?: InputMaybe<MercuryBooleanCustomFieldInput>;
|
|
133918
134963
|
dateField?: InputMaybe<MercuryDateCustomFieldInput>;
|
|
133919
134964
|
multiSelectField?: InputMaybe<MercuryMultiSelectCustomFieldInput>;
|
|
133920
134965
|
numberField?: InputMaybe<MercuryNumberCustomFieldInput>;
|
|
@@ -133951,6 +134996,14 @@ export declare type MercuryCustomSelectFieldOptionInput = {
|
|
|
133951
134996
|
settings?: InputMaybe<Array<MercuryCustomFieldSelectionOptionSettingInput>>;
|
|
133952
134997
|
value: Scalars['String']['input'];
|
|
133953
134998
|
};
|
|
134999
|
+
export declare type MercuryDataIntegrationsQueryApi = {
|
|
135000
|
+
__typename?: 'MercuryDataIntegrationsQueryApi';
|
|
135001
|
+
importJob?: Maybe<MercuryImportJob>;
|
|
135002
|
+
};
|
|
135003
|
+
export declare type MercuryDataIntegrationsQueryApiImportJobArgs = {
|
|
135004
|
+
cloudId: Scalars['ID']['input'];
|
|
135005
|
+
importJobId: Scalars['ID']['input'];
|
|
135006
|
+
};
|
|
133954
135007
|
export declare type MercuryDateCustomField = MercuryCustomField & {
|
|
133955
135008
|
__typename?: 'MercuryDateCustomField';
|
|
133956
135009
|
createdBy?: Maybe<User>;
|
|
@@ -133992,6 +135045,30 @@ export declare type MercuryDeleteAllPreferencesByUserPayload = Payload & {
|
|
|
133992
135045
|
errors?: Maybe<Array<MutationError>>;
|
|
133993
135046
|
success: Scalars['Boolean']['output'];
|
|
133994
135047
|
};
|
|
135048
|
+
export declare type MercuryDeleteBenefitItemInput = {
|
|
135049
|
+
id: Scalars['ID']['input'];
|
|
135050
|
+
};
|
|
135051
|
+
export declare type MercuryDeleteBenefitItemPayload = Payload & {
|
|
135052
|
+
__typename?: 'MercuryDeleteBenefitItemPayload';
|
|
135053
|
+
errors?: Maybe<Array<MutationError>>;
|
|
135054
|
+
success: Scalars['Boolean']['output'];
|
|
135055
|
+
};
|
|
135056
|
+
export declare type MercuryDeleteBenefitPeriodValueInput = {
|
|
135057
|
+
id: Scalars['ID']['input'];
|
|
135058
|
+
};
|
|
135059
|
+
export declare type MercuryDeleteBenefitPeriodValuePayload = Payload & {
|
|
135060
|
+
__typename?: 'MercuryDeleteBenefitPeriodValuePayload';
|
|
135061
|
+
errors?: Maybe<Array<MutationError>>;
|
|
135062
|
+
success: Scalars['Boolean']['output'];
|
|
135063
|
+
};
|
|
135064
|
+
export declare type MercuryDeleteBenefitTypeInput = {
|
|
135065
|
+
id: Scalars['ID']['input'];
|
|
135066
|
+
};
|
|
135067
|
+
export declare type MercuryDeleteBenefitTypePayload = Payload & {
|
|
135068
|
+
__typename?: 'MercuryDeleteBenefitTypePayload';
|
|
135069
|
+
errors?: Maybe<Array<MutationError>>;
|
|
135070
|
+
success: Scalars['Boolean']['output'];
|
|
135071
|
+
};
|
|
133995
135072
|
export declare type MercuryDeleteChangeProposalCommentInput = {
|
|
133996
135073
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
133997
135074
|
id: Scalars['ID']['input'];
|
|
@@ -134253,6 +135330,19 @@ export declare type MercuryFinancialVersion = Node & {
|
|
|
134253
135330
|
id: Scalars['ID']['output'];
|
|
134254
135331
|
type: MercuryFinancialVersionType;
|
|
134255
135332
|
};
|
|
135333
|
+
export declare type MercuryFinancialVersionConnection = {
|
|
135334
|
+
__typename?: 'MercuryFinancialVersionConnection';
|
|
135335
|
+
edges?: Maybe<Array<MercuryFinancialVersionEdge>>;
|
|
135336
|
+
pageInfo: PageInfo;
|
|
135337
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
135338
|
+
};
|
|
135339
|
+
export declare type MercuryFinancialVersionCostClassificationCostSummary = {
|
|
135340
|
+
__typename?: 'MercuryFinancialVersionCostClassificationCostSummary';
|
|
135341
|
+
costSubtype?: Maybe<MercuryCostSubtype>;
|
|
135342
|
+
costType?: Maybe<MercuryCostType>;
|
|
135343
|
+
total?: Maybe<MercuryMoney>;
|
|
135344
|
+
};
|
|
135345
|
+
export declare type MercuryFinancialVersionCostDimensionSummary = MercuryFinancialVersionCostClassificationCostSummary | MercuryFinancialVersionExpenditureTypeCostSummary | MercuryFinancialVersionInvestmentCategoryCostSummary;
|
|
134256
135346
|
export declare type MercuryFinancialVersionCostPerYearMonthSummary = {
|
|
134257
135347
|
__typename?: 'MercuryFinancialVersionCostPerYearMonthSummary';
|
|
134258
135348
|
financialVersion?: Maybe<MercuryFinancialVersion>;
|
|
@@ -134262,8 +135352,31 @@ export declare type MercuryFinancialVersionCostPerYearMonthSummary = {
|
|
|
134262
135352
|
export declare type MercuryFinancialVersionCostSummary = {
|
|
134263
135353
|
__typename?: 'MercuryFinancialVersionCostSummary';
|
|
134264
135354
|
financialVersion?: Maybe<MercuryFinancialVersion>;
|
|
135355
|
+
financialVersionCostDimensionSummaries?: Maybe<Array<Maybe<MercuryFinancialVersionCostDimensionSummary>>>;
|
|
135356
|
+
total?: Maybe<MercuryMoney>;
|
|
135357
|
+
};
|
|
135358
|
+
export declare type MercuryFinancialVersionEdge = {
|
|
135359
|
+
__typename?: 'MercuryFinancialVersionEdge';
|
|
135360
|
+
cursor: Scalars['String']['output'];
|
|
135361
|
+
node?: Maybe<MercuryFinancialVersion>;
|
|
135362
|
+
};
|
|
135363
|
+
export declare type MercuryFinancialVersionExpenditureTypeCostSummary = {
|
|
135364
|
+
__typename?: 'MercuryFinancialVersionExpenditureTypeCostSummary';
|
|
135365
|
+
expenditureType?: Maybe<MercuryExpenditureType>;
|
|
135366
|
+
total?: Maybe<MercuryMoney>;
|
|
135367
|
+
};
|
|
135368
|
+
export declare type MercuryFinancialVersionInvestmentCategoryCostSummary = {
|
|
135369
|
+
__typename?: 'MercuryFinancialVersionInvestmentCategoryCostSummary';
|
|
135370
|
+
investmentCategory?: Maybe<MercuryInvestmentCategory>;
|
|
134265
135371
|
total?: Maybe<MercuryMoney>;
|
|
134266
135372
|
};
|
|
135373
|
+
export declare type MercuryFinancialVersionSort = {
|
|
135374
|
+
field?: InputMaybe<MercuryFinancialVersionSortField>;
|
|
135375
|
+
order: SortOrder;
|
|
135376
|
+
};
|
|
135377
|
+
export declare enum MercuryFinancialVersionSortField {
|
|
135378
|
+
Type = "TYPE"
|
|
135379
|
+
}
|
|
134267
135380
|
export declare enum MercuryFinancialVersionType {
|
|
134268
135381
|
Actual = "ACTUAL",
|
|
134269
135382
|
Baseline = "BASELINE",
|
|
@@ -134340,6 +135453,7 @@ export declare type MercuryFocusAreaAsksArgs = {
|
|
|
134340
135453
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
134341
135454
|
};
|
|
134342
135455
|
export declare type MercuryFocusAreaCostSummaryArgs = {
|
|
135456
|
+
dimensions?: InputMaybe<Array<MercuryCostSummaryDimension>>;
|
|
134343
135457
|
endYearMonth: Scalars['String']['input'];
|
|
134344
135458
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
134345
135459
|
startYearMonth: Scalars['String']['input'];
|
|
@@ -134801,16 +135915,25 @@ export declare type MercuryFundsMonthlySummary = {
|
|
|
134801
135915
|
};
|
|
134802
135916
|
export declare type MercuryFundsMutationApi = {
|
|
134803
135917
|
__typename?: 'MercuryFundsMutationApi';
|
|
135918
|
+
createBenefitItem?: Maybe<MercuryCreateBenefitItemPayload>;
|
|
135919
|
+
createBenefitPeriodValue?: Maybe<MercuryCreateBenefitPeriodValuePayload>;
|
|
135920
|
+
createBenefitType?: Maybe<MercuryCreateBenefitTypePayload>;
|
|
134804
135921
|
createCostItem?: Maybe<MercuryCreateCostItemPayload>;
|
|
134805
135922
|
createCostPeriodValue?: Maybe<MercuryCreateCostPeriodValuePayload>;
|
|
134806
135923
|
createCostSubtype?: Maybe<MercuryCreateCostSubtypePayload>;
|
|
134807
135924
|
createFiscalCalendarConfiguration?: Maybe<MercuryCreateFiscalCalendarConfigurationPayload>;
|
|
134808
135925
|
createInvestmentCategory?: Maybe<MercuryCreateInvestmentCategoryPayload>;
|
|
135926
|
+
deleteBenefitItem?: Maybe<MercuryDeleteBenefitItemPayload>;
|
|
135927
|
+
deleteBenefitPeriodValue?: Maybe<MercuryDeleteBenefitPeriodValuePayload>;
|
|
135928
|
+
deleteBenefitType?: Maybe<MercuryDeleteBenefitTypePayload>;
|
|
134809
135929
|
deleteCostItem?: Maybe<MercuryDeleteCostItemPayload>;
|
|
134810
135930
|
deleteCostPeriodValue?: Maybe<MercuryDeleteCostPeriodValuePayload>;
|
|
134811
135931
|
deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
|
|
134812
135932
|
deleteInvestmentCategory?: Maybe<MercuryDeleteInvestmentCategoryPayload>;
|
|
134813
135933
|
updateActiveCurrency?: Maybe<MercuryUpdateActiveCurrencyPayload>;
|
|
135934
|
+
updateBenefitItemBenefitType?: Maybe<MercuryUpdateBenefitItemBenefitTypePayload>;
|
|
135935
|
+
updateBenefitPeriodValueAmount?: Maybe<MercuryUpdateBenefitPeriodValueAmountPayload>;
|
|
135936
|
+
updateBenefitTypeName?: Maybe<MercuryUpdateBenefitTypePayload>;
|
|
134814
135937
|
updateCostItemClassification?: Maybe<MercuryUpdateCostItemClassificationPayload>;
|
|
134815
135938
|
updateCostItemExpenditureType?: Maybe<MercuryUpdateCostItemExpenditureTypePayload>;
|
|
134816
135939
|
updateCostItemInvestmentCategory?: Maybe<MercuryUpdateCostItemInvestmentCategoryPayload>;
|
|
@@ -134819,6 +135942,15 @@ export declare type MercuryFundsMutationApi = {
|
|
|
134819
135942
|
updateCostSubtypeName?: Maybe<MercuryUpdateCostSubtypePayload>;
|
|
134820
135943
|
updateInvestmentCategoryName?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
|
|
134821
135944
|
};
|
|
135945
|
+
export declare type MercuryFundsMutationApiCreateBenefitItemArgs = {
|
|
135946
|
+
input: MercuryCreateBenefitItemInput;
|
|
135947
|
+
};
|
|
135948
|
+
export declare type MercuryFundsMutationApiCreateBenefitPeriodValueArgs = {
|
|
135949
|
+
input: MercuryCreateBenefitPeriodValueInput;
|
|
135950
|
+
};
|
|
135951
|
+
export declare type MercuryFundsMutationApiCreateBenefitTypeArgs = {
|
|
135952
|
+
input: MercuryCreateBenefitTypeInput;
|
|
135953
|
+
};
|
|
134822
135954
|
export declare type MercuryFundsMutationApiCreateCostItemArgs = {
|
|
134823
135955
|
input: MercuryCreateCostItemInput;
|
|
134824
135956
|
};
|
|
@@ -134834,6 +135966,15 @@ export declare type MercuryFundsMutationApiCreateFiscalCalendarConfigurationArgs
|
|
|
134834
135966
|
export declare type MercuryFundsMutationApiCreateInvestmentCategoryArgs = {
|
|
134835
135967
|
input: MercuryCreateInvestmentCategoryInput;
|
|
134836
135968
|
};
|
|
135969
|
+
export declare type MercuryFundsMutationApiDeleteBenefitItemArgs = {
|
|
135970
|
+
input: MercuryDeleteBenefitItemInput;
|
|
135971
|
+
};
|
|
135972
|
+
export declare type MercuryFundsMutationApiDeleteBenefitPeriodValueArgs = {
|
|
135973
|
+
input: MercuryDeleteBenefitPeriodValueInput;
|
|
135974
|
+
};
|
|
135975
|
+
export declare type MercuryFundsMutationApiDeleteBenefitTypeArgs = {
|
|
135976
|
+
input: MercuryDeleteBenefitTypeInput;
|
|
135977
|
+
};
|
|
134837
135978
|
export declare type MercuryFundsMutationApiDeleteCostItemArgs = {
|
|
134838
135979
|
input: MercuryDeleteCostItemInput;
|
|
134839
135980
|
};
|
|
@@ -134849,6 +135990,15 @@ export declare type MercuryFundsMutationApiDeleteInvestmentCategoryArgs = {
|
|
|
134849
135990
|
export declare type MercuryFundsMutationApiUpdateActiveCurrencyArgs = {
|
|
134850
135991
|
input: MercuryUpdateActiveCurrencyInput;
|
|
134851
135992
|
};
|
|
135993
|
+
export declare type MercuryFundsMutationApiUpdateBenefitItemBenefitTypeArgs = {
|
|
135994
|
+
input: MercuryUpdateBenefitItemBenefitTypeInput;
|
|
135995
|
+
};
|
|
135996
|
+
export declare type MercuryFundsMutationApiUpdateBenefitPeriodValueAmountArgs = {
|
|
135997
|
+
input: MercuryUpdateBenefitPeriodValueAmountInput;
|
|
135998
|
+
};
|
|
135999
|
+
export declare type MercuryFundsMutationApiUpdateBenefitTypeNameArgs = {
|
|
136000
|
+
input: MercuryUpdateBenefitTypeNameInput;
|
|
136001
|
+
};
|
|
134852
136002
|
export declare type MercuryFundsMutationApiUpdateCostItemClassificationArgs = {
|
|
134853
136003
|
input: MercuryUpdateCostItemClassificationInput;
|
|
134854
136004
|
};
|
|
@@ -134874,6 +136024,11 @@ export declare type MercuryFundsQueryApi = {
|
|
|
134874
136024
|
__typename?: 'MercuryFundsQueryApi';
|
|
134875
136025
|
activeCurrency: MercuryCurrency;
|
|
134876
136026
|
activeFiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
136027
|
+
benefitItems?: Maybe<Array<Maybe<MercuryBenefitItem>>>;
|
|
136028
|
+
benefitItemsSearch?: Maybe<MercuryBenefitItemConnection>;
|
|
136029
|
+
benefitPeriodValues?: Maybe<Array<Maybe<MercuryBenefitPeriodValue>>>;
|
|
136030
|
+
benefitTypes?: Maybe<Array<Maybe<MercuryBenefitType>>>;
|
|
136031
|
+
benefitTypesByIds?: Maybe<Array<Maybe<MercuryBenefitType>>>;
|
|
134877
136032
|
costItems?: Maybe<Array<Maybe<MercuryCostItem>>>;
|
|
134878
136033
|
costItemsSearch?: Maybe<MercuryCostItemConnection>;
|
|
134879
136034
|
costPeriodValues?: Maybe<Array<Maybe<MercuryCostPeriodValue>>>;
|
|
@@ -134885,6 +136040,7 @@ export declare type MercuryFundsQueryApi = {
|
|
|
134885
136040
|
expenditureTypes?: Maybe<Array<Maybe<MercuryExpenditureType>>>;
|
|
134886
136041
|
expenditureTypesByIds?: Maybe<Array<Maybe<MercuryExpenditureType>>>;
|
|
134887
136042
|
financialVersions?: Maybe<Array<Maybe<MercuryFinancialVersion>>>;
|
|
136043
|
+
financialVersionsSearch?: Maybe<MercuryFinancialVersionConnection>;
|
|
134888
136044
|
fiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
134889
136045
|
fiscalCalendarConfigurations?: Maybe<Array<Maybe<MercuryFiscalCalendarConfiguration>>>;
|
|
134890
136046
|
fiscalCalendarConfigurationsSearch?: Maybe<MercuryFiscalCalendarConfigurationConnection>;
|
|
@@ -134898,6 +136054,25 @@ export declare type MercuryFundsQueryApiActiveCurrencyArgs = {
|
|
|
134898
136054
|
export declare type MercuryFundsQueryApiActiveFiscalCalendarConfigurationArgs = {
|
|
134899
136055
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
134900
136056
|
};
|
|
136057
|
+
export declare type MercuryFundsQueryApiBenefitItemsArgs = {
|
|
136058
|
+
ids: Array<Scalars['ID']['input']>;
|
|
136059
|
+
};
|
|
136060
|
+
export declare type MercuryFundsQueryApiBenefitItemsSearchArgs = {
|
|
136061
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
136062
|
+
cloudId: Scalars['ID']['input'];
|
|
136063
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
136064
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
136065
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryBenefitItemSort>>>;
|
|
136066
|
+
};
|
|
136067
|
+
export declare type MercuryFundsQueryApiBenefitPeriodValuesArgs = {
|
|
136068
|
+
ids: Array<Scalars['ID']['input']>;
|
|
136069
|
+
};
|
|
136070
|
+
export declare type MercuryFundsQueryApiBenefitTypesArgs = {
|
|
136071
|
+
cloudId: Scalars['ID']['input'];
|
|
136072
|
+
};
|
|
136073
|
+
export declare type MercuryFundsQueryApiBenefitTypesByIdsArgs = {
|
|
136074
|
+
ids: Array<Scalars['ID']['input']>;
|
|
136075
|
+
};
|
|
134901
136076
|
export declare type MercuryFundsQueryApiCostItemsArgs = {
|
|
134902
136077
|
ids: Array<Scalars['ID']['input']>;
|
|
134903
136078
|
};
|
|
@@ -134939,6 +136114,13 @@ export declare type MercuryFundsQueryApiExpenditureTypesByIdsArgs = {
|
|
|
134939
136114
|
export declare type MercuryFundsQueryApiFinancialVersionsArgs = {
|
|
134940
136115
|
ids: Array<Scalars['ID']['input']>;
|
|
134941
136116
|
};
|
|
136117
|
+
export declare type MercuryFundsQueryApiFinancialVersionsSearchArgs = {
|
|
136118
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
136119
|
+
cloudId: Scalars['ID']['input'];
|
|
136120
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
136121
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
136122
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryFinancialVersionSort>>>;
|
|
136123
|
+
};
|
|
134942
136124
|
export declare type MercuryFundsQueryApiFiscalCalendarConfigurationArgs = {
|
|
134943
136125
|
id: Scalars['ID']['input'];
|
|
134944
136126
|
};
|
|
@@ -135009,6 +136191,35 @@ export declare type MercuryImpactedPositionSummaryByChangeProposalStatus = {
|
|
|
135009
136191
|
countByStatus?: Maybe<Array<Maybe<MercuryPositionCountByStatus>>>;
|
|
135010
136192
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
135011
136193
|
};
|
|
136194
|
+
export declare type MercuryImportExecutionError = {
|
|
136195
|
+
__typename?: 'MercuryImportExecutionError';
|
|
136196
|
+
entityType?: Maybe<MercuryImportExecutionErrorEntityType>;
|
|
136197
|
+
field: Scalars['String']['output'];
|
|
136198
|
+
id: Scalars['ID']['output'];
|
|
136199
|
+
importJobId: Scalars['ID']['output'];
|
|
136200
|
+
message: Scalars['String']['output'];
|
|
136201
|
+
};
|
|
136202
|
+
export declare enum MercuryImportExecutionErrorEntityType {
|
|
136203
|
+
Financial = "FINANCIAL",
|
|
136204
|
+
FocusArea = "FOCUS_AREA",
|
|
136205
|
+
FocusAreaFunds = "FOCUS_AREA_FUNDS",
|
|
136206
|
+
FocusAreaLink = "FOCUS_AREA_LINK",
|
|
136207
|
+
FundsCostItem = "FUNDS_COST_ITEM",
|
|
136208
|
+
PeopleBudget = "PEOPLE_BUDGET",
|
|
136209
|
+
Team = "TEAM",
|
|
136210
|
+
TeamAllocation = "TEAM_ALLOCATION"
|
|
136211
|
+
}
|
|
136212
|
+
export declare type MercuryImportJob = {
|
|
136213
|
+
__typename?: 'MercuryImportJob';
|
|
136214
|
+
executionErrors?: Maybe<Array<MercuryImportExecutionError>>;
|
|
136215
|
+
id: Scalars['ID']['output'];
|
|
136216
|
+
status: MercuryImportJobStatus;
|
|
136217
|
+
};
|
|
136218
|
+
export declare enum MercuryImportJobStatus {
|
|
136219
|
+
Failed = "FAILED",
|
|
136220
|
+
InProgress = "IN_PROGRESS",
|
|
136221
|
+
Succeeded = "SUCCEEDED"
|
|
136222
|
+
}
|
|
135012
136223
|
export declare type MercuryInsight = {
|
|
135013
136224
|
id: Scalars['ID']['output'];
|
|
135014
136225
|
summary?: Maybe<Scalars['String']['output']>;
|
|
@@ -135033,19 +136244,35 @@ export declare enum MercuryInsightTypeEnum {
|
|
|
135033
136244
|
Position = "POSITION",
|
|
135034
136245
|
Work = "WORK"
|
|
135035
136246
|
}
|
|
136247
|
+
export declare type MercuryInsightWidget = {
|
|
136248
|
+
__typename?: 'MercuryInsightWidget';
|
|
136249
|
+
id: Scalars['ID']['output'];
|
|
136250
|
+
insights?: Maybe<MercuryInsightObjectConnection>;
|
|
136251
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
136252
|
+
rules?: Maybe<Scalars['String']['output']>;
|
|
136253
|
+
};
|
|
136254
|
+
export declare type MercuryInsightWidgetInsightsArgs = {
|
|
136255
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
136256
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
136257
|
+
};
|
|
135036
136258
|
export declare type MercuryInsightsMutationApi = {
|
|
135037
136259
|
__typename?: 'MercuryInsightsMutationApi';
|
|
135038
136260
|
dismissSuggestedFocusAreaFollowers?: Maybe<MercuryDismissSuggestedFocusAreaFollowers>;
|
|
136261
|
+
updateInsightWidget?: Maybe<MercuryUpdateInsightWidgetPayload>;
|
|
135039
136262
|
};
|
|
135040
136263
|
export declare type MercuryInsightsMutationApiDismissSuggestedFocusAreaFollowersArgs = {
|
|
135041
136264
|
input: MercuryDismissSuggestedFocusAreaFollowersInput;
|
|
135042
136265
|
};
|
|
136266
|
+
export declare type MercuryInsightsMutationApiUpdateInsightWidgetArgs = {
|
|
136267
|
+
input: MercuryUpdateInsightWidgetInput;
|
|
136268
|
+
};
|
|
135043
136269
|
export declare type MercuryInsightsQueryApi = {
|
|
135044
136270
|
__typename?: 'MercuryInsightsQueryApi';
|
|
135045
136271
|
focusAreaFollowerSuggestions?: Maybe<Array<MercuryFocusAreaFollowerSuggestion>>;
|
|
135046
136272
|
focusAreaInsights?: Maybe<Array<MercuryInsightObject>>;
|
|
135047
136273
|
focusAreaWorkSuggestions?: Maybe<Array<MercuryWorkSuggestionsSearchItem>>;
|
|
135048
136274
|
forYouInsights?: Maybe<MercuryInsightObjectConnection>;
|
|
136275
|
+
previewInsightWidget?: Maybe<MercuryInsightWidget>;
|
|
135049
136276
|
};
|
|
135050
136277
|
export declare type MercuryInsightsQueryApiFocusAreaFollowerSuggestionsArgs = {
|
|
135051
136278
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -135067,6 +136294,10 @@ export declare type MercuryInsightsQueryApiForYouInsightsArgs = {
|
|
|
135067
136294
|
filter?: InputMaybe<MercuryForYouInsightsFilter>;
|
|
135068
136295
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
135069
136296
|
};
|
|
136297
|
+
export declare type MercuryInsightsQueryApiPreviewInsightWidgetArgs = {
|
|
136298
|
+
cloudId: Scalars['ID']['input'];
|
|
136299
|
+
rules: Scalars['String']['input'];
|
|
136300
|
+
};
|
|
135070
136301
|
export declare type MercuryIntegrationsContext = {
|
|
135071
136302
|
__typename?: 'MercuryIntegrationsContext';
|
|
135072
136303
|
passionfruit?: Maybe<MercuryPassionfruitContext>;
|
|
@@ -135330,6 +136561,7 @@ export declare type MercuryLinkedGoalUpdate = {
|
|
|
135330
136561
|
oldTargetDate?: Maybe<Scalars['String']['output']>;
|
|
135331
136562
|
summary?: Maybe<Scalars['String']['output']>;
|
|
135332
136563
|
};
|
|
136564
|
+
export declare type MercuryLinkedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
135333
136565
|
export declare type MercuryMediaToken = {
|
|
135334
136566
|
__typename?: 'MercuryMediaToken';
|
|
135335
136567
|
token: Scalars['String']['output'];
|
|
@@ -136524,12 +137756,16 @@ export declare type MercuryRisk = Node & {
|
|
|
136524
137756
|
description?: Maybe<Scalars['String']['output']>;
|
|
136525
137757
|
id: Scalars['ID']['output'];
|
|
136526
137758
|
impact?: Maybe<MercuryRiskImpact>;
|
|
137759
|
+
impactedWorkItems?: Maybe<Array<MercuryLinkedWork>>;
|
|
137760
|
+
justification?: Maybe<Scalars['String']['output']>;
|
|
137761
|
+
likelihood?: Maybe<MercuryRiskLikelihood>;
|
|
137762
|
+
linkedFocusAreas?: Maybe<Array<MercuryFocusArea>>;
|
|
136527
137763
|
name: Scalars['String']['output'];
|
|
136528
|
-
owner?: Maybe<
|
|
137764
|
+
owner?: Maybe<User>;
|
|
136529
137765
|
status?: Maybe<MercuryRiskStatus>;
|
|
136530
137766
|
statusTransitions?: Maybe<MercuryRiskStatusTransitions>;
|
|
136531
137767
|
submitter?: Maybe<User>;
|
|
136532
|
-
targetDate?: Maybe<
|
|
137768
|
+
targetDate?: Maybe<MercuryRiskTargetDate>;
|
|
136533
137769
|
updatedDate: Scalars['String']['output'];
|
|
136534
137770
|
};
|
|
136535
137771
|
export declare type MercuryRiskConnection = {
|
|
@@ -136548,14 +137784,22 @@ export declare type MercuryRiskImpact = {
|
|
|
136548
137784
|
key: Scalars['String']['output'];
|
|
136549
137785
|
value: Scalars['Int']['output'];
|
|
136550
137786
|
};
|
|
137787
|
+
export declare type MercuryRiskLikelihood = {
|
|
137788
|
+
__typename?: 'MercuryRiskLikelihood';
|
|
137789
|
+
key: Scalars['String']['output'];
|
|
137790
|
+
value: Scalars['Int']['output'];
|
|
137791
|
+
};
|
|
136551
137792
|
export declare type MercuryRiskSort = {
|
|
136552
137793
|
field: MercuryRiskSortField;
|
|
136553
137794
|
order: SortOrder;
|
|
136554
137795
|
};
|
|
136555
137796
|
export declare enum MercuryRiskSortField {
|
|
137797
|
+
Impact = "IMPACT",
|
|
137798
|
+
Likelihood = "LIKELIHOOD",
|
|
136556
137799
|
Name = "NAME",
|
|
136557
137800
|
Status = "STATUS",
|
|
136558
|
-
TargetDate = "TARGET_DATE"
|
|
137801
|
+
TargetDate = "TARGET_DATE",
|
|
137802
|
+
UpdatedDate = "UPDATED_DATE"
|
|
136559
137803
|
}
|
|
136560
137804
|
export declare type MercuryRiskStatus = {
|
|
136561
137805
|
__typename?: 'MercuryRiskStatus';
|
|
@@ -136580,6 +137824,20 @@ export declare type MercuryRiskStatusTransitions = {
|
|
|
136580
137824
|
__typename?: 'MercuryRiskStatusTransitions';
|
|
136581
137825
|
available: Array<MercuryRiskStatusTransition>;
|
|
136582
137826
|
};
|
|
137827
|
+
export declare type MercuryRiskTargetDate = {
|
|
137828
|
+
__typename?: 'MercuryRiskTargetDate';
|
|
137829
|
+
targetDate: Scalars['String']['output'];
|
|
137830
|
+
targetDateType: MercuryRiskTargetDateType;
|
|
137831
|
+
};
|
|
137832
|
+
export declare type MercuryRiskTargetDateInput = {
|
|
137833
|
+
targetDate: Scalars['String']['input'];
|
|
137834
|
+
targetDateType: MercuryRiskTargetDateType;
|
|
137835
|
+
};
|
|
137836
|
+
export declare enum MercuryRiskTargetDateType {
|
|
137837
|
+
Day = "DAY",
|
|
137838
|
+
Month = "MONTH",
|
|
137839
|
+
Quarter = "QUARTER"
|
|
137840
|
+
}
|
|
136583
137841
|
export declare type MercuryRisksMutationApi = {
|
|
136584
137842
|
__typename?: 'MercuryRisksMutationApi';
|
|
136585
137843
|
createRisk?: Maybe<MercuryCreateRiskPayload>;
|
|
@@ -136588,6 +137846,8 @@ export declare type MercuryRisksMutationApi = {
|
|
|
136588
137846
|
transitionRiskStatus?: Maybe<MercuryTransitionRiskPayload>;
|
|
136589
137847
|
unlinkRiskFromFocusAreas?: Maybe<MercuryUnlinkRiskFromFocusAreasPayload>;
|
|
136590
137848
|
updateRiskDescription?: Maybe<MercuryUpdateRiskPayload>;
|
|
137849
|
+
updateRiskImpact?: Maybe<MercuryUpdateRiskPayload>;
|
|
137850
|
+
updateRiskLikelihood?: Maybe<MercuryUpdateRiskPayload>;
|
|
136591
137851
|
updateRiskName?: Maybe<MercuryUpdateRiskPayload>;
|
|
136592
137852
|
updateRiskOwner?: Maybe<MercuryUpdateRiskPayload>;
|
|
136593
137853
|
updateRiskSubmitter?: Maybe<MercuryUpdateRiskPayload>;
|
|
@@ -136611,6 +137871,12 @@ export declare type MercuryRisksMutationApiUnlinkRiskFromFocusAreasArgs = {
|
|
|
136611
137871
|
export declare type MercuryRisksMutationApiUpdateRiskDescriptionArgs = {
|
|
136612
137872
|
input: MercuryUpdateRiskDescriptionInput;
|
|
136613
137873
|
};
|
|
137874
|
+
export declare type MercuryRisksMutationApiUpdateRiskImpactArgs = {
|
|
137875
|
+
input: MercuryUpdateRiskImpactInput;
|
|
137876
|
+
};
|
|
137877
|
+
export declare type MercuryRisksMutationApiUpdateRiskLikelihoodArgs = {
|
|
137878
|
+
input: MercuryUpdateRiskLikelihoodInput;
|
|
137879
|
+
};
|
|
136614
137880
|
export declare type MercuryRisksMutationApiUpdateRiskNameArgs = {
|
|
136615
137881
|
input: MercuryUpdateRiskNameInput;
|
|
136616
137882
|
};
|
|
@@ -136627,6 +137893,7 @@ export declare type MercuryRisksQueryApi = {
|
|
|
136627
137893
|
__typename?: 'MercuryRisksQueryApi';
|
|
136628
137894
|
risk?: Maybe<MercuryRisk>;
|
|
136629
137895
|
riskImpactValues: Array<MercuryRiskImpact>;
|
|
137896
|
+
riskLikelihoodValues: Array<MercuryRiskLikelihood>;
|
|
136630
137897
|
riskStatuses: Array<MercuryRiskStatus>;
|
|
136631
137898
|
risks?: Maybe<Array<Maybe<MercuryRisk>>>;
|
|
136632
137899
|
risksSearch?: Maybe<MercuryRiskConnection>;
|
|
@@ -136637,6 +137904,9 @@ export declare type MercuryRisksQueryApiRiskArgs = {
|
|
|
136637
137904
|
export declare type MercuryRisksQueryApiRiskImpactValuesArgs = {
|
|
136638
137905
|
cloudId: Scalars['ID']['input'];
|
|
136639
137906
|
};
|
|
137907
|
+
export declare type MercuryRisksQueryApiRiskLikelihoodValuesArgs = {
|
|
137908
|
+
cloudId: Scalars['ID']['input'];
|
|
137909
|
+
};
|
|
136640
137910
|
export declare type MercuryRisksQueryApiRiskStatusesArgs = {
|
|
136641
137911
|
cloudId: Scalars['ID']['input'];
|
|
136642
137912
|
};
|
|
@@ -136866,6 +138136,8 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
136866
138136
|
updateChangeProposalName?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
136867
138137
|
updateChangeProposalOwner?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
136868
138138
|
updateChangeProposalRankInView?: Maybe<MercuryUpdateChangeProposalRankInViewPayload>;
|
|
138139
|
+
updateChangeProposalTargetBenefit?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
138140
|
+
updateChangeProposalTargetRoi?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
136869
138141
|
updateChangeProposalsViewName?: Maybe<MercuryUpdateChangeProposalsViewNamePayload>;
|
|
136870
138142
|
updateChangeProposalsViewSettings?: Maybe<MercuryUpdateChangeProposalsViewSettingsPayload>;
|
|
136871
138143
|
updateMoveFundsChange: MercuryUpdateChangePayload;
|
|
@@ -136990,6 +138262,12 @@ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalOwnerAr
|
|
|
136990
138262
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalRankInViewArgs = {
|
|
136991
138263
|
input: MercuryUpdateChangeProposalRankInViewInput;
|
|
136992
138264
|
};
|
|
138265
|
+
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalTargetBenefitArgs = {
|
|
138266
|
+
input: MercuryUpdateChangeProposalTargetBenefitInput;
|
|
138267
|
+
};
|
|
138268
|
+
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalTargetRoiArgs = {
|
|
138269
|
+
input: MercuryUpdateChangeProposalTargetRoiInput;
|
|
138270
|
+
};
|
|
136993
138271
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalsViewNameArgs = {
|
|
136994
138272
|
input: MercuryUpdateChangeProposalsViewNameInput;
|
|
136995
138273
|
};
|
|
@@ -137331,6 +138609,36 @@ export declare type MercuryUpdateActiveCurrencyPayload = Payload & {
|
|
|
137331
138609
|
success: Scalars['Boolean']['output'];
|
|
137332
138610
|
updatedActiveCurrency?: Maybe<MercuryCurrency>;
|
|
137333
138611
|
};
|
|
138612
|
+
export declare type MercuryUpdateBenefitItemBenefitTypeInput = {
|
|
138613
|
+
benefitTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
138614
|
+
id: Scalars['ID']['input'];
|
|
138615
|
+
};
|
|
138616
|
+
export declare type MercuryUpdateBenefitItemBenefitTypePayload = Payload & {
|
|
138617
|
+
__typename?: 'MercuryUpdateBenefitItemBenefitTypePayload';
|
|
138618
|
+
errors?: Maybe<Array<MutationError>>;
|
|
138619
|
+
success: Scalars['Boolean']['output'];
|
|
138620
|
+
updatedBenefitItem?: Maybe<MercuryBenefitItem>;
|
|
138621
|
+
};
|
|
138622
|
+
export declare type MercuryUpdateBenefitPeriodValueAmountInput = {
|
|
138623
|
+
amount: Scalars['String']['input'];
|
|
138624
|
+
id: Scalars['ID']['input'];
|
|
138625
|
+
};
|
|
138626
|
+
export declare type MercuryUpdateBenefitPeriodValueAmountPayload = Payload & {
|
|
138627
|
+
__typename?: 'MercuryUpdateBenefitPeriodValueAmountPayload';
|
|
138628
|
+
errors?: Maybe<Array<MutationError>>;
|
|
138629
|
+
success: Scalars['Boolean']['output'];
|
|
138630
|
+
updatedBenefitPeriodValue?: Maybe<MercuryBenefitPeriodValue>;
|
|
138631
|
+
};
|
|
138632
|
+
export declare type MercuryUpdateBenefitTypeNameInput = {
|
|
138633
|
+
id: Scalars['ID']['input'];
|
|
138634
|
+
name: Scalars['String']['input'];
|
|
138635
|
+
};
|
|
138636
|
+
export declare type MercuryUpdateBenefitTypePayload = Payload & {
|
|
138637
|
+
__typename?: 'MercuryUpdateBenefitTypePayload';
|
|
138638
|
+
errors?: Maybe<Array<MutationError>>;
|
|
138639
|
+
success: Scalars['Boolean']['output'];
|
|
138640
|
+
updatedBenefitType?: Maybe<MercuryBenefitType>;
|
|
138641
|
+
};
|
|
137334
138642
|
export declare type MercuryUpdateChangeFocusAreaInput = {
|
|
137335
138643
|
focusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
137336
138644
|
};
|
|
@@ -137397,6 +138705,14 @@ export declare type MercuryUpdateChangeProposalRankInViewPayload = Payload & {
|
|
|
137397
138705
|
success: Scalars['Boolean']['output'];
|
|
137398
138706
|
updatedChangeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
137399
138707
|
};
|
|
138708
|
+
export declare type MercuryUpdateChangeProposalTargetBenefitInput = {
|
|
138709
|
+
id: Scalars['ID']['input'];
|
|
138710
|
+
targetBenefit?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
138711
|
+
};
|
|
138712
|
+
export declare type MercuryUpdateChangeProposalTargetRoiInput = {
|
|
138713
|
+
id: Scalars['ID']['input'];
|
|
138714
|
+
targetRoi?: InputMaybe<Scalars['Float']['input']>;
|
|
138715
|
+
};
|
|
137400
138716
|
export declare type MercuryUpdateChangeProposalsViewNameInput = {
|
|
137401
138717
|
id: Scalars['ID']['input'];
|
|
137402
138718
|
name: Scalars['String']['input'];
|
|
@@ -137573,6 +138889,18 @@ export declare type MercuryUpdateFocusAreaTargetDateInput = {
|
|
|
137573
138889
|
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
137574
138890
|
targetDateType?: InputMaybe<MercuryTargetDateType>;
|
|
137575
138891
|
};
|
|
138892
|
+
export declare type MercuryUpdateInsightWidgetInput = {
|
|
138893
|
+
cloudId: Scalars['ID']['input'];
|
|
138894
|
+
insightWidgetId: Scalars['ID']['input'];
|
|
138895
|
+
prompt: Scalars['String']['input'];
|
|
138896
|
+
};
|
|
138897
|
+
export declare type MercuryUpdateInsightWidgetPayload = Payload & {
|
|
138898
|
+
__typename?: 'MercuryUpdateInsightWidgetPayload';
|
|
138899
|
+
errors?: Maybe<Array<MutationError>>;
|
|
138900
|
+
insightWidget?: Maybe<MercuryInsightWidget>;
|
|
138901
|
+
success: Scalars['Boolean']['output'];
|
|
138902
|
+
suggestion?: Maybe<Scalars['String']['output']>;
|
|
138903
|
+
};
|
|
137576
138904
|
export declare type MercuryUpdateInvestmentCategoryNameInput = {
|
|
137577
138905
|
id: Scalars['ID']['input'];
|
|
137578
138906
|
name: Scalars['String']['input'];
|
|
@@ -137626,6 +138954,14 @@ export declare type MercuryUpdateRiskDescriptionInput = {
|
|
|
137626
138954
|
description: Scalars['String']['input'];
|
|
137627
138955
|
id: Scalars['ID']['input'];
|
|
137628
138956
|
};
|
|
138957
|
+
export declare type MercuryUpdateRiskImpactInput = {
|
|
138958
|
+
id: Scalars['ID']['input'];
|
|
138959
|
+
impact: Scalars['Int']['input'];
|
|
138960
|
+
};
|
|
138961
|
+
export declare type MercuryUpdateRiskLikelihoodInput = {
|
|
138962
|
+
id: Scalars['ID']['input'];
|
|
138963
|
+
likelihood: Scalars['Int']['input'];
|
|
138964
|
+
};
|
|
137629
138965
|
export declare type MercuryUpdateRiskNameInput = {
|
|
137630
138966
|
id: Scalars['ID']['input'];
|
|
137631
138967
|
name: Scalars['String']['input'];
|
|
@@ -137646,7 +138982,7 @@ export declare type MercuryUpdateRiskSubmitterInput = {
|
|
|
137646
138982
|
};
|
|
137647
138983
|
export declare type MercuryUpdateRiskTargetDateInput = {
|
|
137648
138984
|
id: Scalars['ID']['input'];
|
|
137649
|
-
targetDate?: InputMaybe<
|
|
138985
|
+
targetDate?: InputMaybe<MercuryRiskTargetDateInput>;
|
|
137650
138986
|
};
|
|
137651
138987
|
export declare type MercuryUpdateStrategicEventBudgetInput = {
|
|
137652
138988
|
budget?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
@@ -138057,6 +139393,7 @@ export declare type Mutation = {
|
|
|
138057
139393
|
agentStudio_updateAgentAsFavourite?: Maybe<AgentStudioUpdateAgentAsFavouritePayload>;
|
|
138058
139394
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
138059
139395
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
139396
|
+
agentStudio_updateAgentModelVersion?: Maybe<AgentStudioUpdateAgentModelVersionPayload>;
|
|
138060
139397
|
agentStudio_updateAgentVerification?: Maybe<AgentStudioUpdateAgentVerificationPayload>;
|
|
138061
139398
|
agentStudio_updateConversationConfiguration?: Maybe<AgentStudioUpdateConversationConfigurationPayload>;
|
|
138062
139399
|
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
@@ -138155,7 +139492,7 @@ export declare type Mutation = {
|
|
|
138155
139492
|
assetsDM_updateDataSourceType?: Maybe<AssetsDmUpdateDataSourceTypeResponse>;
|
|
138156
139493
|
assetsDM_updateDefaultCleansingRule?: Maybe<AssetsDmUpdateDefaultCleansingRuleResponse>;
|
|
138157
139494
|
assetsVertical_generateInsights?: Maybe<AssetsVerticalGenerateInsightsPayload>;
|
|
138158
|
-
assetsVertical_instantiateBundleByType:
|
|
139495
|
+
assetsVertical_instantiateBundleByType: AssetsVerticalAsyncTaskPayload;
|
|
138159
139496
|
assets_updateObjectAttributeValue?: Maybe<AssetsAttributeOnObject>;
|
|
138160
139497
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
138161
139498
|
attachDanglingComment?: Maybe<Comment>;
|
|
@@ -138348,6 +139685,8 @@ export declare type Mutation = {
|
|
|
138348
139685
|
confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
|
|
138349
139686
|
confluence_updateReviewerDecision?: Maybe<ConfluenceWorkflowReviewerDecisionPayload>;
|
|
138350
139687
|
confluence_updateShareableLink?: Maybe<ConfluenceUpdateShareableLinksPayload>;
|
|
139688
|
+
confluence_updateShareableLinkSiteConfig?: Maybe<ConfluenceUpdateShareableLinkSiteConfigPayload>;
|
|
139689
|
+
confluence_updateShareableLinkSpaceConfig?: Maybe<ConfluenceUpdateShareableLinkSpaceConfigPayload>;
|
|
138351
139690
|
confluence_updateSpaceAccessRequestSettings?: Maybe<ConfluenceUpdateAccessRequestSettingsPayload>;
|
|
138352
139691
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
138353
139692
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
@@ -138519,7 +139858,10 @@ export declare type Mutation = {
|
|
|
138519
139858
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
138520
139859
|
disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
|
|
138521
139860
|
disableSuperAdmin?: Maybe<SuperAdminPayload>;
|
|
139861
|
+
dlp_reClassify?: Maybe<DlpClassificationJobResponse>;
|
|
138522
139862
|
dlp_saveDetectorClassificationMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
139863
|
+
dlp_startPreviewRulesImpact?: Maybe<DlpStartPreviewResponse>;
|
|
139864
|
+
dlp_unClassify?: Maybe<DlpClassificationJobResponse>;
|
|
138523
139865
|
ecosystem?: Maybe<EcosystemMutation>;
|
|
138524
139866
|
editSprint?: Maybe<SprintResponse>;
|
|
138525
139867
|
editorDraftSyncAction?: Maybe<EditorDraftSyncPayload>;
|
|
@@ -138720,6 +140062,7 @@ export declare type Mutation = {
|
|
|
138720
140062
|
jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
|
|
138721
140063
|
jira_setTimelineBarColorMode?: Maybe<JiraSetTimelineBarColorModePayload>;
|
|
138722
140064
|
jira_setTimelineHighlightedReleases?: Maybe<JiraSetTimelineHighlightedReleasesPayload>;
|
|
140065
|
+
jira_setTimelineViewFieldSets?: Maybe<JiraSetTimelineViewFieldSetsPayload>;
|
|
138723
140066
|
jira_setTimelineViewHideDependencies?: Maybe<JiraSetTimelineViewHideDependenciesPayload>;
|
|
138724
140067
|
jira_setTimelineViewHideReleases?: Maybe<JiraSetTimelineViewHideReleasesPayload>;
|
|
138725
140068
|
jira_setTimelineViewHideWarnings?: Maybe<JiraSetTimelineViewHideWarningsPayload>;
|
|
@@ -138891,6 +140234,7 @@ export declare type Mutation = {
|
|
|
138891
140234
|
radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
|
|
138892
140235
|
radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
|
|
138893
140236
|
radar_updateFocusAreaProposalChanges?: Maybe<RadarUpdateFocusAreaProposalChangesMutationResponse>;
|
|
140237
|
+
radar_updateNotificationSettings?: Maybe<Array<RadarNotification>>;
|
|
138894
140238
|
radar_updatePositionLaborCostEstimateSettings?: Maybe<RadarUpdatePositionLaborCostResponse>;
|
|
138895
140239
|
radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
|
|
138896
140240
|
radar_upsertLastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
|
|
@@ -139349,6 +140693,10 @@ export declare type MutationAgentStudio_UpdateAgentKnowledgeSourcesArgs = {
|
|
|
139349
140693
|
id: Scalars['ID']['input'];
|
|
139350
140694
|
input: AgentStudioKnowledgeConfigurationInput;
|
|
139351
140695
|
};
|
|
140696
|
+
export declare type MutationAgentStudio_UpdateAgentModelVersionArgs = {
|
|
140697
|
+
action: AgentStudioModelUpgradeAction;
|
|
140698
|
+
id: Scalars['ID']['input'];
|
|
140699
|
+
};
|
|
139352
140700
|
export declare type MutationAgentStudio_UpdateAgentVerificationArgs = {
|
|
139353
140701
|
id: Scalars['ID']['input'];
|
|
139354
140702
|
verified: Scalars['Boolean']['input'];
|
|
@@ -139763,8 +141111,7 @@ export declare type MutationAssetsVertical_GenerateInsightsArgs = {
|
|
|
139763
141111
|
input: AssetsVerticalGenerateInsightsInput;
|
|
139764
141112
|
};
|
|
139765
141113
|
export declare type MutationAssetsVertical_InstantiateBundleByTypeArgs = {
|
|
139766
|
-
|
|
139767
|
-
type: AssetsVerticalBundleType;
|
|
141114
|
+
input: AssetsVerticalInstantiateBundleByTypeInput;
|
|
139768
141115
|
};
|
|
139769
141116
|
export declare type MutationAssets_UpdateObjectAttributeValueArgs = {
|
|
139770
141117
|
cloudId: Scalars['ID']['input'];
|
|
@@ -140437,7 +141784,15 @@ export declare type MutationConfluence_UpdateReviewerDecisionArgs = {
|
|
|
140437
141784
|
};
|
|
140438
141785
|
export declare type MutationConfluence_UpdateShareableLinkArgs = {
|
|
140439
141786
|
cloudId: Scalars['ID']['input'];
|
|
140440
|
-
input:
|
|
141787
|
+
input: ConfluenceUpdateShareableLinkInput;
|
|
141788
|
+
};
|
|
141789
|
+
export declare type MutationConfluence_UpdateShareableLinkSiteConfigArgs = {
|
|
141790
|
+
cloudId: Scalars['ID']['input'];
|
|
141791
|
+
input: ConfluenceUpdateShareableLinkSiteConfigInput;
|
|
141792
|
+
};
|
|
141793
|
+
export declare type MutationConfluence_UpdateShareableLinkSpaceConfigArgs = {
|
|
141794
|
+
cloudId: Scalars['ID']['input'];
|
|
141795
|
+
input: ConfluenceUpdateShareableLinkSpaceConfigInput;
|
|
140441
141796
|
};
|
|
140442
141797
|
export declare type MutationConfluence_UpdateSpaceAccessRequestSettingsArgs = {
|
|
140443
141798
|
cloudId: Scalars['ID']['input'];
|
|
@@ -141064,10 +142419,21 @@ export declare type MutationDisableExperimentArgs = {
|
|
|
141064
142419
|
export declare type MutationDisablePublicLinkForPageArgs = {
|
|
141065
142420
|
pageId: Scalars['ID']['input'];
|
|
141066
142421
|
};
|
|
142422
|
+
export declare type MutationDlp_ReClassifyArgs = {
|
|
142423
|
+
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
142424
|
+
};
|
|
141067
142425
|
export declare type MutationDlp_SaveDetectorClassificationMappingArgs = {
|
|
141068
142426
|
mappingRequests?: InputMaybe<Array<InputMaybe<DlpDetectorClassificationMappingRequestInput>>>;
|
|
141069
142427
|
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
141070
142428
|
};
|
|
142429
|
+
export declare type MutationDlp_StartPreviewRulesImpactArgs = {
|
|
142430
|
+
mappings: Array<DlpDetectorClassificationMappingRequestInput>;
|
|
142431
|
+
orgId: Scalars['String']['input'];
|
|
142432
|
+
scope?: InputMaybe<DlpScopeInput>;
|
|
142433
|
+
};
|
|
142434
|
+
export declare type MutationDlp_UnClassifyArgs = {
|
|
142435
|
+
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
142436
|
+
};
|
|
141071
142437
|
export declare type MutationEditSprintArgs = {
|
|
141072
142438
|
input?: InputMaybe<EditSprintInput>;
|
|
141073
142439
|
};
|
|
@@ -141078,7 +142444,7 @@ export declare type MutationEnableExperimentArgs = {
|
|
|
141078
142444
|
experimentKey: Scalars['String']['input'];
|
|
141079
142445
|
};
|
|
141080
142446
|
export declare type MutationEnablePublicLinkForPageArgs = {
|
|
141081
|
-
accessType?: InputMaybe<
|
|
142447
|
+
accessType?: InputMaybe<ConfluenceShareableLinkAccessType>;
|
|
141082
142448
|
pageId: Scalars['ID']['input'];
|
|
141083
142449
|
};
|
|
141084
142450
|
export declare type MutationFavouritePageArgs = {
|
|
@@ -141659,6 +143025,9 @@ export declare type MutationJira_SetTimelineHighlightedReleasesArgs = {
|
|
|
141659
143025
|
cloudId: Scalars['ID']['input'];
|
|
141660
143026
|
input: JiraSetTimelineHighlightedReleasesInput;
|
|
141661
143027
|
};
|
|
143028
|
+
export declare type MutationJira_SetTimelineViewFieldSetsArgs = {
|
|
143029
|
+
input: JiraSetTimelineViewFieldSetsInput;
|
|
143030
|
+
};
|
|
141662
143031
|
export declare type MutationJira_SetTimelineViewHideDependenciesArgs = {
|
|
141663
143032
|
input: JiraSetTimelineViewHideDependenciesInput;
|
|
141664
143033
|
};
|
|
@@ -141790,6 +143159,7 @@ export declare type MutationKitsune_CreateCustomerArgs = {
|
|
|
141790
143159
|
export declare type MutationKitsune_CreateFeedbackArgs = {
|
|
141791
143160
|
content: Scalars['KitsuneADF']['input'];
|
|
141792
143161
|
customerId?: InputMaybe<Scalars['ID']['input']>;
|
|
143162
|
+
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
141793
143163
|
reporterId?: InputMaybe<Scalars['ID']['input']>;
|
|
141794
143164
|
source?: InputMaybe<KitsuneSourceInput>;
|
|
141795
143165
|
sourceNew?: InputMaybe<KitsuneSourceInputNew>;
|
|
@@ -141822,6 +143192,7 @@ export declare type MutationKitsune_CreateSpaceArgs = {
|
|
|
141822
143192
|
workspaceAri: Scalars['ID']['input'];
|
|
141823
143193
|
};
|
|
141824
143194
|
export declare type MutationKitsune_CreateViewArgs = {
|
|
143195
|
+
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
141825
143196
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
141826
143197
|
name: Scalars['String']['input'];
|
|
141827
143198
|
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -141859,6 +143230,7 @@ export declare type MutationKitsune_UpdateFeedbackArgs = {
|
|
|
141859
143230
|
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
141860
143231
|
customerId?: InputMaybe<Scalars['ID']['input']>;
|
|
141861
143232
|
id: Scalars['ID']['input'];
|
|
143233
|
+
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
141862
143234
|
reporterId?: InputMaybe<Scalars['ID']['input']>;
|
|
141863
143235
|
source?: InputMaybe<KitsuneSourceInputNew>;
|
|
141864
143236
|
summaryContent?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
@@ -142222,6 +143594,10 @@ export declare type MutationRadar_UpdateFocusAreaProposalChangesArgs = {
|
|
|
142222
143594
|
cloudId: Scalars['ID']['input'];
|
|
142223
143595
|
input: Array<RadarPositionProposalChangeInput>;
|
|
142224
143596
|
};
|
|
143597
|
+
export declare type MutationRadar_UpdateNotificationSettingsArgs = {
|
|
143598
|
+
cloudId: Scalars['ID']['input'];
|
|
143599
|
+
input: Array<RadarNotificationInput>;
|
|
143600
|
+
};
|
|
142225
143601
|
export declare type MutationRadar_UpdatePositionLaborCostEstimateSettingsArgs = {
|
|
142226
143602
|
cloudId: Scalars['ID']['input'];
|
|
142227
143603
|
input: RadarUpdatePositionLaborCostEstimateSettingsInput;
|
|
@@ -144793,6 +146169,28 @@ export declare enum Platform {
|
|
|
144793
146169
|
Ios = "IOS",
|
|
144794
146170
|
Web = "WEB"
|
|
144795
146171
|
}
|
|
146172
|
+
export declare type PlaybookDetailsForView = {
|
|
146173
|
+
__typename?: 'PlaybookDetailsForView';
|
|
146174
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
146175
|
+
executedOnIssues?: Maybe<Array<PlaybookExecutedIssue>>;
|
|
146176
|
+
id: Scalars['ID']['output'];
|
|
146177
|
+
lastUpdatedAt?: Maybe<Scalars['String']['output']>;
|
|
146178
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
146179
|
+
owner?: Maybe<User>;
|
|
146180
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
146181
|
+
totalExecutionCount?: Maybe<Scalars['Int']['output']>;
|
|
146182
|
+
};
|
|
146183
|
+
export declare type PlaybookDetailsForViewPayload = QueryPayload & {
|
|
146184
|
+
__typename?: 'PlaybookDetailsForViewPayload';
|
|
146185
|
+
errors?: Maybe<Array<QueryError>>;
|
|
146186
|
+
playbook?: Maybe<PlaybookDetailsForView>;
|
|
146187
|
+
success: Scalars['Boolean']['output'];
|
|
146188
|
+
};
|
|
146189
|
+
export declare type PlaybookExecutedIssue = {
|
|
146190
|
+
__typename?: 'PlaybookExecutedIssue';
|
|
146191
|
+
issue?: Maybe<JiraIssue>;
|
|
146192
|
+
lastExecutedAt?: Maybe<Scalars['String']['output']>;
|
|
146193
|
+
};
|
|
144796
146194
|
export declare enum PlaybookTemplateCategory {
|
|
144797
146195
|
Hrsm = "HRSM",
|
|
144798
146196
|
Itsm = "ITSM",
|
|
@@ -145021,6 +146419,10 @@ export declare type PolarisMatrixConfig = {
|
|
|
145021
146419
|
__typename?: 'PolarisMatrixConfig';
|
|
145022
146420
|
axes?: Maybe<Array<PolarisMatrixAxis>>;
|
|
145023
146421
|
};
|
|
146422
|
+
export declare enum PolarisNumberColumnDisplay {
|
|
146423
|
+
Disabled = "DISABLED",
|
|
146424
|
+
Enabled = "ENABLED"
|
|
146425
|
+
}
|
|
145024
146426
|
export declare type PolarisPlay = {
|
|
145025
146427
|
__typename?: 'PolarisPlay';
|
|
145026
146428
|
contribution?: Maybe<PolarisPlayContribution>;
|
|
@@ -145304,6 +146706,7 @@ export declare type PolarisView = {
|
|
|
145304
146706
|
layoutType?: Maybe<PolarisViewLayoutType>;
|
|
145305
146707
|
matrixConfig?: Maybe<PolarisMatrixConfig>;
|
|
145306
146708
|
name: Scalars['String']['output'];
|
|
146709
|
+
numberColumnDisplay?: Maybe<PolarisNumberColumnDisplay>;
|
|
145307
146710
|
projectId: Scalars['Int']['output'];
|
|
145308
146711
|
rank: Scalars['Int']['output'];
|
|
145309
146712
|
showConnectionsMatchingColumn?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -145514,11 +146917,12 @@ export declare enum PostOfficeMessageCreationType {
|
|
|
145514
146917
|
export declare type PostOfficeMessageData = PostOfficeMessageLiveAndPersistedTestMessageData | PostOfficeMessageLiveNudgeDemoMessageData | PostOfficeMessageRecommendationJpdData | PostOfficeMessageRecommendationJsmData | PostOfficeMessageRecommendationTwcData;
|
|
145515
146918
|
export declare type PostOfficeMessageLiveAndPersistedTestMessageData = {
|
|
145516
146919
|
__typename?: 'PostOfficeMessageLiveAndPersistedTestMessageData';
|
|
145517
|
-
|
|
146920
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
146921
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
145518
146922
|
};
|
|
145519
146923
|
export declare type PostOfficeMessageLiveNudgeDemoMessageData = {
|
|
145520
146924
|
__typename?: 'PostOfficeMessageLiveNudgeDemoMessageData';
|
|
145521
|
-
|
|
146925
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
145522
146926
|
title?: Maybe<Scalars['String']['output']>;
|
|
145523
146927
|
};
|
|
145524
146928
|
export declare type PostOfficeMessagePayload = {
|
|
@@ -145551,6 +146955,8 @@ export declare type PostOfficeScopeEntryInput = {
|
|
|
145551
146955
|
export declare type PostOfficeSubscriptionMatchersInput = {
|
|
145552
146956
|
atlassianAccountId: Scalars['String']['input'];
|
|
145553
146957
|
placementId: Scalars['String']['input'];
|
|
146958
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
146959
|
+
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
145554
146960
|
};
|
|
145555
146961
|
export declare type PremiumExtensionsFeature = {
|
|
145556
146962
|
__typename?: 'PremiumExtensionsFeature';
|
|
@@ -145704,7 +147110,7 @@ export declare type PublicLinkOnboardingReference = {
|
|
|
145704
147110
|
};
|
|
145705
147111
|
export declare type PublicLinkPage = {
|
|
145706
147112
|
__typename?: 'PublicLinkPage';
|
|
145707
|
-
accessType?: Maybe<
|
|
147113
|
+
accessType?: Maybe<ConfluenceShareableLinkAccessType>;
|
|
145708
147114
|
lastEnabledBy?: Maybe<Scalars['String']['output']>;
|
|
145709
147115
|
lastEnabledByUser?: Maybe<Person>;
|
|
145710
147116
|
lastEnabledDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -145947,6 +147353,7 @@ export declare type Query = {
|
|
|
145947
147353
|
admin_auditLogEventIpAddresses?: Maybe<AdminAuditLogEventIpAddressConnection>;
|
|
145948
147354
|
admin_auditLogEventLocations?: Maybe<AdminAuditLogEventLocationConnection>;
|
|
145949
147355
|
admin_auditLogEvents?: Maybe<AdminAuditLogEventConnection>;
|
|
147356
|
+
admin_auditLogProductMapping?: Maybe<Array<AdminAuditLogProductMapping>>;
|
|
145950
147357
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
145951
147358
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
145952
147359
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
@@ -146034,6 +147441,7 @@ export declare type Query = {
|
|
|
146034
147441
|
agentWorkspace_catalogTypes?: Maybe<AgentWorkspaceCatalogTypeConnection>;
|
|
146035
147442
|
agentWorkspace_catalogs?: Maybe<AgentWorkspaceCatalogConnection>;
|
|
146036
147443
|
agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
|
|
147444
|
+
agentWorkspace_eligibleGroups?: Maybe<AgentWorkspaceEligibleGroupsPayload>;
|
|
146037
147445
|
agentWorkspace_findBestMatchAgents?: Maybe<AgentWorkspaceFindBestMatchAgentsPayload>;
|
|
146038
147446
|
agentWorkspace_hierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinition>;
|
|
146039
147447
|
agentWorkspace_hierarchyDefinitions?: Maybe<AgentWorkspaceHierarchyDefinitionConnection>;
|
|
@@ -146145,6 +147553,7 @@ export declare type Query = {
|
|
|
146145
147553
|
assetsVertical_bundle: AssetsVerticalBundle;
|
|
146146
147554
|
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
146147
147555
|
assetsVertical_insights?: Maybe<AssetsVerticalInsights>;
|
|
147556
|
+
assetsVertical_objects?: Maybe<AssetsVerticalObjectsResult>;
|
|
146148
147557
|
assets_objectById?: Maybe<AssetsObjectNode>;
|
|
146149
147558
|
assets_objectTypeAttributesBySchemaIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
146150
147559
|
assets_objectTypeAttributesForServices?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
@@ -146286,6 +147695,8 @@ export declare type Query = {
|
|
|
146286
147695
|
confluence_contentAccessRequestByStatus?: Maybe<ConfluenceContentAccessRequestConnection>;
|
|
146287
147696
|
confluence_contentAnalyticsCountUserByContentType?: Maybe<ConfluenceContentAnalyticsCountUserByContentType>;
|
|
146288
147697
|
confluence_contentApprovalStatuses?: Maybe<Array<Maybe<ConfluenceApprovalsWorkflowStatus>>>;
|
|
147698
|
+
confluence_contentPerformanceList?: Maybe<ConfluenceContentPerformanceConnection>;
|
|
147699
|
+
confluence_contentPerformanceSummary?: Maybe<ConfluenceContentPerformanceSummary>;
|
|
146289
147700
|
confluence_contentPermissions?: Maybe<ConfluenceContentPermissions>;
|
|
146290
147701
|
confluence_contentReactionsSummary?: Maybe<ConfluenceReactionSummary>;
|
|
146291
147702
|
confluence_contentSmartLinksForDraft?: Maybe<PaginatedSmartLinkList>;
|
|
@@ -146322,6 +147733,7 @@ export declare type Query = {
|
|
|
146322
147733
|
confluence_isPrivacyModeEnabled?: Maybe<ConfluencePrivacyMode>;
|
|
146323
147734
|
confluence_isSpaceRoleAssignedToUserTypes?: Maybe<ConfluenceSpaceRoleAssigned>;
|
|
146324
147735
|
confluence_isWatchingLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
147736
|
+
confluence_latestInProgressSpacePermissionTransitionTaskId?: Maybe<Scalars['String']['output']>;
|
|
146325
147737
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
146326
147738
|
confluence_legacyEditorReportDownloadLink?: Maybe<ConfluenceLegacyEditorReportDownloadLink>;
|
|
146327
147739
|
confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
|
|
@@ -146331,6 +147743,7 @@ export declare type Query = {
|
|
|
146331
147743
|
confluence_mutablePrincipalTypesByCombinationId?: Maybe<Array<Maybe<ConfluencePermissionTransitionMutationPrincipalType>>>;
|
|
146332
147744
|
confluence_mutablePrincipalTypesByCombinationIds?: Maybe<Array<Maybe<ConfluenceMutablePrincipalTypesByCombinationId>>>;
|
|
146333
147745
|
confluence_nbmChainsForTransformation?: Maybe<ConfluenceNbmChainsForTransformationConnection>;
|
|
147746
|
+
confluence_nbmConfigurableTransformers?: Maybe<ConfluenceNbmTransformers>;
|
|
146334
147747
|
confluence_nbmEligibleTransformersForChain?: Maybe<Array<Maybe<ConfluenceNbmTransformer>>>;
|
|
146335
147748
|
confluence_nbmMostRecentVerificationJob?: Maybe<ConfluenceNbmVerificationJob>;
|
|
146336
147749
|
confluence_nbmPerfReportList?: Maybe<ConfluenceNbmScanConnection>;
|
|
@@ -146362,6 +147775,10 @@ export declare type Query = {
|
|
|
146362
147775
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
146363
147776
|
confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
|
|
146364
147777
|
confluence_shareConfiguration?: Maybe<ConfluenceShareConfiguration>;
|
|
147778
|
+
confluence_shareableLinkSiteConfig?: Maybe<ConfluenceShareableLinkSiteConfig>;
|
|
147779
|
+
confluence_shareableLinkSpaceConfig?: Maybe<ConfluenceShareableLinkSpaceConfig>;
|
|
147780
|
+
confluence_slide?: Maybe<ConfluenceSlide>;
|
|
147781
|
+
confluence_slides?: Maybe<Array<Maybe<ConfluenceSlide>>>;
|
|
146365
147782
|
confluence_smartSpaceOverview?: Maybe<ConfluenceSmartSpaceOverview>;
|
|
146366
147783
|
confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
|
|
146367
147784
|
confluence_spacePermissionCombinationsByCriteria?: Maybe<ConfluenceSpacePermissionCombinationConnection>;
|
|
@@ -146530,6 +147947,8 @@ export declare type Query = {
|
|
|
146530
147947
|
diagnostics?: Maybe<Scalars['JSON']['output']>;
|
|
146531
147948
|
dlp_getDetectionContentSummary?: Maybe<DlpDetectionContentSummaryListResponse>;
|
|
146532
147949
|
dlp_getDetectorClassificationMapping?: Maybe<DlpDetectorClassificationMappingListResponse>;
|
|
147950
|
+
dlp_getPreviewRulesImpact?: Maybe<DlpPreviewRulesImpactResponse>;
|
|
147951
|
+
dlp_isClassificationTaskRunning?: Maybe<Scalars['Boolean']['output']>;
|
|
146533
147952
|
dvcs?: Maybe<DvcsQuery>;
|
|
146534
147953
|
echo?: Maybe<Scalars['String']['output']>;
|
|
146535
147954
|
ecosystem?: Maybe<EcosystemQuery>;
|
|
@@ -146671,6 +148090,7 @@ export declare type Query = {
|
|
|
146671
148090
|
jiraServers?: Maybe<JiraServersResult>;
|
|
146672
148091
|
jira_backlog?: Maybe<JiraBacklog>;
|
|
146673
148092
|
jira_backlogView?: Maybe<JiraBacklogView>;
|
|
148093
|
+
jira_backlogViewCardListsByIds?: Maybe<Array<JiraBacklogViewCardList>>;
|
|
146674
148094
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
146675
148095
|
jira_boardViewCellsByIds?: Maybe<Array<Maybe<JiraBoardViewCell>>>;
|
|
146676
148096
|
jira_boardsByIds?: Maybe<Array<Maybe<JiraBoard>>>;
|
|
@@ -146801,6 +148221,7 @@ export declare type Query = {
|
|
|
146801
148221
|
me: AuthenticationContext;
|
|
146802
148222
|
mediaConfiguration?: Maybe<MediaConfiguration>;
|
|
146803
148223
|
mercury?: Maybe<MercuryQueryApi>;
|
|
148224
|
+
mercury_dataIntegrations?: Maybe<MercuryDataIntegrationsQueryApi>;
|
|
146804
148225
|
mercury_funds?: Maybe<MercuryFundsQueryApi>;
|
|
146805
148226
|
mercury_insights?: Maybe<MercuryInsightsQueryApi>;
|
|
146806
148227
|
mercury_jiraAlignProvider?: Maybe<MercuryJiraAlignProviderQueryApi>;
|
|
@@ -146842,6 +148263,7 @@ export declare type Query = {
|
|
|
146842
148263
|
permitted?: Maybe<Scalars['Boolean']['output']>;
|
|
146843
148264
|
permsReportDownloadLinkForTask?: Maybe<PermsReportDownloadLink>;
|
|
146844
148265
|
playbook_generatePlaybook?: Maybe<GeneratePlaybookPayload>;
|
|
148266
|
+
playbook_getPlaybookDetailsForView?: Maybe<PlaybookDetailsForViewPayload>;
|
|
146845
148267
|
playbook_jiraPlaybook?: Maybe<JiraPlaybookQueryPayload>;
|
|
146846
148268
|
playbook_jiraPlaybookInstancesForIssue?: Maybe<JiraPlaybookInstanceConnection>;
|
|
146847
148269
|
playbook_jiraPlaybookLabelsForProject?: Maybe<JiraPlaybookLabelConnection>;
|
|
@@ -146904,6 +148326,7 @@ export declare type Query = {
|
|
|
146904
148326
|
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
146905
148327
|
radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
|
|
146906
148328
|
radar_lastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
|
|
148329
|
+
radar_notificationSettings?: Maybe<Array<RadarNotification>>;
|
|
146907
148330
|
radar_positionByAri?: Maybe<RadarPosition>;
|
|
146908
148331
|
radar_positionLaborCostEstimateSettings?: Maybe<RadarPositionLaborCostEstimateSettings>;
|
|
146909
148332
|
radar_positionsByAris?: Maybe<Array<RadarPosition>>;
|
|
@@ -146986,6 +148409,8 @@ export declare type Query = {
|
|
|
146986
148409
|
spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
|
|
146987
148410
|
spf_getMediaToken?: Maybe<SpfMediaTokenResult>;
|
|
146988
148411
|
spf_plan?: Maybe<SpfPlanResult>;
|
|
148412
|
+
spf_planAdminSettings?: Maybe<SpfPlanAdminSettings>;
|
|
148413
|
+
spf_planById?: Maybe<SpfPlan>;
|
|
146989
148414
|
spf_planPortfolioAllowedTypes?: Maybe<Array<Maybe<SpfPlanPortfolioAllowedType>>>;
|
|
146990
148415
|
spf_planScenarioInvestment?: Maybe<SpfPlanScenarioInvestmentResult>;
|
|
146991
148416
|
spf_planScenarioInvestmentsByIds?: Maybe<Array<Maybe<SpfPlanScenarioInvestment>>>;
|
|
@@ -147183,6 +148608,9 @@ export declare type QueryAdmin_AuditLogEventsArgs = {
|
|
|
147183
148608
|
input: AdminFetchAdminAuditLogEventsInput;
|
|
147184
148609
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
147185
148610
|
};
|
|
148611
|
+
export declare type QueryAdmin_AuditLogProductMappingArgs = {
|
|
148612
|
+
container: AdminAuditLogContainer;
|
|
148613
|
+
};
|
|
147186
148614
|
export declare type QueryAdmin_CheckLicensesCapacityArgs = {
|
|
147187
148615
|
input: AdminLicenseInput;
|
|
147188
148616
|
orgId: Scalars['ID']['input'];
|
|
@@ -147637,6 +149065,7 @@ export declare type QueryAgentWorkspace_AvailabilityArgs = {
|
|
|
147637
149065
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
147638
149066
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147639
149067
|
input: AgentWorkspaceAvailabilityInput;
|
|
149068
|
+
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
147640
149069
|
};
|
|
147641
149070
|
export declare type QueryAgentWorkspace_AvailableAgentsArgs = {
|
|
147642
149071
|
cloudId: Scalars['ID']['input'];
|
|
@@ -147666,6 +149095,9 @@ export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
|
|
|
147666
149095
|
cloudId: Scalars['ID']['input'];
|
|
147667
149096
|
projectKey: Scalars['String']['input'];
|
|
147668
149097
|
};
|
|
149098
|
+
export declare type QueryAgentWorkspace_EligibleGroupsArgs = {
|
|
149099
|
+
projectAri: Scalars['ID']['input'];
|
|
149100
|
+
};
|
|
147669
149101
|
export declare type QueryAgentWorkspace_FindBestMatchAgentsArgs = {
|
|
147670
149102
|
input: AgentWorkspaceFindBestMatchAgentsInput;
|
|
147671
149103
|
};
|
|
@@ -148245,6 +149677,10 @@ export declare type QueryAssetsVertical_InsightsArgs = {
|
|
|
148245
149677
|
cloudId: Scalars['ID']['input'];
|
|
148246
149678
|
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
148247
149679
|
};
|
|
149680
|
+
export declare type QueryAssetsVertical_ObjectsArgs = {
|
|
149681
|
+
cloudId: Scalars['ID']['input'];
|
|
149682
|
+
input?: InputMaybe<AssetsVerticalObjectsInput>;
|
|
149683
|
+
};
|
|
148248
149684
|
export declare type QueryAssets_ObjectByIdArgs = {
|
|
148249
149685
|
id: Scalars['ID']['input'];
|
|
148250
149686
|
};
|
|
@@ -148330,12 +149766,12 @@ export declare type QueryAvp_GetFilterExpressionArgs = {
|
|
|
148330
149766
|
dashboardAri: Scalars['ID']['input'];
|
|
148331
149767
|
};
|
|
148332
149768
|
export declare type QueryAvpanalytics_GetDataSourceArgs = {
|
|
148333
|
-
|
|
149769
|
+
cloudId: Scalars['ID']['input'];
|
|
149770
|
+
dataSourceId: Scalars['ID']['input'];
|
|
148334
149771
|
};
|
|
148335
149772
|
export declare type QueryAvpanalytics_GetDataSourcesArgs = {
|
|
148336
149773
|
cloudId: Scalars['ID']['input'];
|
|
148337
149774
|
searchInput?: InputMaybe<AvpAnalyticsSearchInput>;
|
|
148338
|
-
workspaceId: Scalars['ID']['input'];
|
|
148339
149775
|
};
|
|
148340
149776
|
export declare type QueryAvpanalytics_GetModelArgs = {
|
|
148341
149777
|
cloudId: Scalars['ID']['input'];
|
|
@@ -148772,6 +150208,22 @@ export declare type QueryConfluence_ContentApprovalStatusesArgs = {
|
|
|
148772
150208
|
cloudId: Scalars['ID']['input'];
|
|
148773
150209
|
transitionType?: InputMaybe<ConfluenceApprovalTransitionType>;
|
|
148774
150210
|
};
|
|
150211
|
+
export declare type QueryConfluence_ContentPerformanceListArgs = {
|
|
150212
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
150213
|
+
cloudId: Scalars['ID']['input'];
|
|
150214
|
+
endTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
150215
|
+
filters?: InputMaybe<ConfluenceContentPerformanceFilters>;
|
|
150216
|
+
first: Scalars['Int']['input'];
|
|
150217
|
+
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
150218
|
+
startTimestamp: Scalars['String']['input'];
|
|
150219
|
+
};
|
|
150220
|
+
export declare type QueryConfluence_ContentPerformanceSummaryArgs = {
|
|
150221
|
+
aggregateDimension: ConfluenceAggregationDimension;
|
|
150222
|
+
cloudId: Scalars['ID']['input'];
|
|
150223
|
+
endTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
150224
|
+
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
150225
|
+
startTimestamp: Scalars['String']['input'];
|
|
150226
|
+
};
|
|
148775
150227
|
export declare type QueryConfluence_ContentPermissionsArgs = {
|
|
148776
150228
|
cloudId: Scalars['ID']['input'];
|
|
148777
150229
|
contentId: Scalars['ID']['input'];
|
|
@@ -148942,6 +150394,9 @@ export declare type QueryConfluence_IsWatchingLabelArgs = {
|
|
|
148942
150394
|
cloudId: Scalars['ID']['input'];
|
|
148943
150395
|
input: ConfluenceLabelWatchInput;
|
|
148944
150396
|
};
|
|
150397
|
+
export declare type QueryConfluence_LatestInProgressSpacePermissionTransitionTaskIdArgs = {
|
|
150398
|
+
cloudId: Scalars['ID']['input'];
|
|
150399
|
+
};
|
|
148945
150400
|
export declare type QueryConfluence_LatestKnowledgeGraphObjectV2Args = {
|
|
148946
150401
|
cloudId: Scalars['String']['input'];
|
|
148947
150402
|
contentId: Scalars['ID']['input'];
|
|
@@ -148983,6 +150438,9 @@ export declare type QueryConfluence_NbmChainsForTransformationArgs = {
|
|
|
148983
150438
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
148984
150439
|
scanId: Scalars['ID']['input'];
|
|
148985
150440
|
};
|
|
150441
|
+
export declare type QueryConfluence_NbmConfigurableTransformersArgs = {
|
|
150442
|
+
cloudId: Scalars['ID']['input'];
|
|
150443
|
+
};
|
|
148986
150444
|
export declare type QueryConfluence_NbmEligibleTransformersForChainArgs = {
|
|
148987
150445
|
chain: Scalars['String']['input'];
|
|
148988
150446
|
cloudId: Scalars['ID']['input'];
|
|
@@ -149072,6 +150530,7 @@ export declare type QueryConfluence_PrincipalsByCombinationIdArgs = {
|
|
|
149072
150530
|
cloudId: Scalars['ID']['input'];
|
|
149073
150531
|
combinationId: Scalars['String']['input'];
|
|
149074
150532
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
150533
|
+
principalId?: InputMaybe<Scalars['String']['input']>;
|
|
149075
150534
|
principalTypes?: InputMaybe<Array<InputMaybe<ConfluencePermissionTransitionPrincipalType>>>;
|
|
149076
150535
|
};
|
|
149077
150536
|
export declare type QueryConfluence_PublicLinkSpaceHomePageArgs = {
|
|
@@ -149144,6 +150603,19 @@ export declare type QueryConfluence_SearchUserArgs = {
|
|
|
149144
150603
|
export declare type QueryConfluence_ShareConfigurationArgs = {
|
|
149145
150604
|
cloudId: Scalars['ID']['input'];
|
|
149146
150605
|
};
|
|
150606
|
+
export declare type QueryConfluence_ShareableLinkSiteConfigArgs = {
|
|
150607
|
+
cloudId: Scalars['ID']['input'];
|
|
150608
|
+
};
|
|
150609
|
+
export declare type QueryConfluence_ShareableLinkSpaceConfigArgs = {
|
|
150610
|
+
cloudId: Scalars['ID']['input'];
|
|
150611
|
+
spaceId: Scalars['ID']['input'];
|
|
150612
|
+
};
|
|
150613
|
+
export declare type QueryConfluence_SlideArgs = {
|
|
150614
|
+
id: Scalars['ID']['input'];
|
|
150615
|
+
};
|
|
150616
|
+
export declare type QueryConfluence_SlidesArgs = {
|
|
150617
|
+
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
150618
|
+
};
|
|
149147
150619
|
export declare type QueryConfluence_SmartSpaceOverviewArgs = {
|
|
149148
150620
|
cloudId: Scalars['ID']['input'];
|
|
149149
150621
|
spaceKey: Scalars['String']['input'];
|
|
@@ -149963,6 +151435,13 @@ export declare type QueryDlp_GetDetectorClassificationMappingArgs = {
|
|
|
149963
151435
|
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
149964
151436
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
149965
151437
|
};
|
|
151438
|
+
export declare type QueryDlp_GetPreviewRulesImpactArgs = {
|
|
151439
|
+
orgId: Scalars['String']['input'];
|
|
151440
|
+
taskId: Scalars['String']['input'];
|
|
151441
|
+
};
|
|
151442
|
+
export declare type QueryDlp_IsClassificationTaskRunningArgs = {
|
|
151443
|
+
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
151444
|
+
};
|
|
149966
151445
|
export declare type QueryEditorConversionSettingsArgs = {
|
|
149967
151446
|
spaceKey: Scalars['String']['input'];
|
|
149968
151447
|
};
|
|
@@ -150454,6 +151933,9 @@ export declare type QueryJira_BacklogArgs = {
|
|
|
150454
151933
|
export declare type QueryJira_BacklogViewArgs = {
|
|
150455
151934
|
input: JiraBacklogViewInput;
|
|
150456
151935
|
};
|
|
151936
|
+
export declare type QueryJira_BacklogViewCardListsByIdsArgs = {
|
|
151937
|
+
ids: Array<Scalars['ID']['input']>;
|
|
151938
|
+
};
|
|
150457
151939
|
export declare type QueryJira_BoardViewArgs = {
|
|
150458
151940
|
input: JiraBoardViewInput;
|
|
150459
151941
|
};
|
|
@@ -151019,6 +152501,9 @@ export declare type QueryPermsReportDownloadLinkForTaskArgs = {
|
|
|
151019
152501
|
export declare type QueryPlaybook_GeneratePlaybookArgs = {
|
|
151020
152502
|
input: GeneratePlaybookInput;
|
|
151021
152503
|
};
|
|
152504
|
+
export declare type QueryPlaybook_GetPlaybookDetailsForViewArgs = {
|
|
152505
|
+
playbookAri: Scalars['ID']['input'];
|
|
152506
|
+
};
|
|
151022
152507
|
export declare type QueryPlaybook_JiraPlaybookArgs = {
|
|
151023
152508
|
playbookAri: Scalars['ID']['input'];
|
|
151024
152509
|
};
|
|
@@ -151269,6 +152754,9 @@ export declare type QueryRadar_LastAppliedFilterArgs = {
|
|
|
151269
152754
|
cloudId: Scalars['ID']['input'];
|
|
151270
152755
|
pageName: Scalars['String']['input'];
|
|
151271
152756
|
};
|
|
152757
|
+
export declare type QueryRadar_NotificationSettingsArgs = {
|
|
152758
|
+
cloudId: Scalars['ID']['input'];
|
|
152759
|
+
};
|
|
151272
152760
|
export declare type QueryRadar_PositionByAriArgs = {
|
|
151273
152761
|
id: Scalars['ID']['input'];
|
|
151274
152762
|
};
|
|
@@ -151615,6 +153103,12 @@ export declare type QuerySpf_GetMediaTokenArgs = {
|
|
|
151615
153103
|
export declare type QuerySpf_PlanArgs = {
|
|
151616
153104
|
id: Scalars['ID']['input'];
|
|
151617
153105
|
};
|
|
153106
|
+
export declare type QuerySpf_PlanAdminSettingsArgs = {
|
|
153107
|
+
cloudId: Scalars['ID']['input'];
|
|
153108
|
+
};
|
|
153109
|
+
export declare type QuerySpf_PlanByIdArgs = {
|
|
153110
|
+
id: Scalars['ID']['input'];
|
|
153111
|
+
};
|
|
151618
153112
|
export declare type QuerySpf_PlanPortfolioAllowedTypesArgs = {
|
|
151619
153113
|
cloudId: Scalars['ID']['input'];
|
|
151620
153114
|
};
|
|
@@ -152550,6 +154044,30 @@ export declare type RadarNonNumericFieldDefinition = RadarFieldDefinition & {
|
|
|
152550
154044
|
sensitivityLevel: RadarSensitivityLevel;
|
|
152551
154045
|
type: RadarFieldType;
|
|
152552
154046
|
};
|
|
154047
|
+
export declare type RadarNotification = {
|
|
154048
|
+
__typename?: 'RadarNotification';
|
|
154049
|
+
channel: RadarNotificationChannel;
|
|
154050
|
+
enabled: Scalars['Boolean']['output'];
|
|
154051
|
+
group: RadarNotificationGroup;
|
|
154052
|
+
id: Scalars['ID']['output'];
|
|
154053
|
+
type: RadarNotificationType;
|
|
154054
|
+
};
|
|
154055
|
+
export declare enum RadarNotificationChannel {
|
|
154056
|
+
InApp = "IN_APP"
|
|
154057
|
+
}
|
|
154058
|
+
export declare enum RadarNotificationGroup {
|
|
154059
|
+
RealTime = "REAL_TIME"
|
|
154060
|
+
}
|
|
154061
|
+
export declare type RadarNotificationInput = {
|
|
154062
|
+
channel: RadarNotificationChannel;
|
|
154063
|
+
enabled: Scalars['Boolean']['input'];
|
|
154064
|
+
group: RadarNotificationGroup;
|
|
154065
|
+
type: RadarNotificationType;
|
|
154066
|
+
};
|
|
154067
|
+
export declare enum RadarNotificationType {
|
|
154068
|
+
DataIngestionFailure = "DATA_INGESTION_FAILURE",
|
|
154069
|
+
DataIngestionSuccess = "DATA_INGESTION_SUCCESS"
|
|
154070
|
+
}
|
|
152553
154071
|
export declare enum RadarNumericAppearance {
|
|
152554
154072
|
Duration = "DURATION",
|
|
152555
154073
|
Number = "NUMBER"
|
|
@@ -153353,6 +154871,7 @@ export declare enum ResourceType {
|
|
|
153353
154871
|
Database = "DATABASE",
|
|
153354
154872
|
Folder = "FOLDER",
|
|
153355
154873
|
Page = "PAGE",
|
|
154874
|
+
Slide = "SLIDE",
|
|
153356
154875
|
Space = "SPACE",
|
|
153357
154876
|
Whiteboard = "WHITEBOARD"
|
|
153358
154877
|
}
|
|
@@ -154912,6 +156431,7 @@ export declare type SearchFirstPartyMetadata = {
|
|
|
154912
156431
|
};
|
|
154913
156432
|
export declare type SearchGitFilters = {
|
|
154914
156433
|
pullRequestStatus?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
156434
|
+
repoName?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
154915
156435
|
};
|
|
154916
156436
|
export declare type SearchGraphQlConfigurationResponse = {
|
|
154917
156437
|
__typename?: 'SearchGraphQLConfigurationResponse';
|
|
@@ -155129,6 +156649,7 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
155129
156649
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
155130
156650
|
includeBoostedLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
155131
156651
|
interleaveResults?: InputMaybe<Scalars['Boolean']['input']>;
|
|
156652
|
+
isSearchTool?: InputMaybe<Scalars['Boolean']['input']>;
|
|
155132
156653
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
155133
156654
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
155134
156655
|
sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
|
|
@@ -176626,6 +178147,10 @@ export declare type SpfPlanScenariosArgs = {
|
|
|
176626
178147
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
176627
178148
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
176628
178149
|
};
|
|
178150
|
+
export declare type SpfPlanAdminSettings = {
|
|
178151
|
+
__typename?: 'SpfPlanAdminSettings';
|
|
178152
|
+
planPortfolioAllowedTypes: Array<Maybe<SpfPlanPortfolioAllowedType>>;
|
|
178153
|
+
};
|
|
176629
178154
|
export declare type SpfPlanApproverConnection = {
|
|
176630
178155
|
__typename?: 'SpfPlanApproverConnection';
|
|
176631
178156
|
edges?: Maybe<Array<Maybe<SpfPlanApproverEdge>>>;
|
|
@@ -178628,7 +180153,7 @@ export declare type Subscription = {
|
|
|
178628
180153
|
postOffice_onMessageReceivedEnriched?: Maybe<PostOfficeEnrichedMessagePayload>;
|
|
178629
180154
|
sandbox: SandboxSubscription;
|
|
178630
180155
|
signup: SignupSubscriptionApi;
|
|
178631
|
-
spf_onPlanUpdate?: Maybe<
|
|
180156
|
+
spf_onPlanUpdate?: Maybe<SpfPlan>;
|
|
178632
180157
|
stakeholderComms_opsgenieRiskAssesmentOnUpdate?: Maybe<StakeholderCommsOpsgenieRiskAssessmentResult>;
|
|
178633
180158
|
testing?: Maybe<TestingSubscription>;
|
|
178634
180159
|
trello: TrelloSubscriptionApi;
|
|
@@ -179514,6 +181039,7 @@ export declare type TeamMutation = {
|
|
|
179514
181039
|
setNotificationConfiguration?: Maybe<TeamNotificationConfiguration>;
|
|
179515
181040
|
setScopeNotificationConfiguration?: Maybe<TeamScopeNotificationConfiguration>;
|
|
179516
181041
|
unlinkCustomFieldFromOption?: Maybe<TeamCustomFieldKeyValues>;
|
|
181042
|
+
unlinkManagedTeams?: Maybe<TeamUnlinkManagedTeamsPayload>;
|
|
179517
181043
|
updateCustomField?: Maybe<TeamDetailedCustomFieldInfo>;
|
|
179518
181044
|
updateRoleAssignments?: Maybe<TeamUpdateRoleAssignmentsResponse>;
|
|
179519
181045
|
updateTeam?: Maybe<TeamUpdatePayload>;
|
|
@@ -179596,6 +181122,10 @@ export declare type TeamMutationUnlinkCustomFieldFromOptionArgs = {
|
|
|
179596
181122
|
customFieldValueId: Scalars['ID']['input'];
|
|
179597
181123
|
teamId: Scalars['ID']['input'];
|
|
179598
181124
|
};
|
|
181125
|
+
export declare type TeamMutationUnlinkManagedTeamsArgs = {
|
|
181126
|
+
scopeId: Scalars['ID']['input'];
|
|
181127
|
+
teamIds: Array<Scalars['ID']['input']>;
|
|
181128
|
+
};
|
|
179599
181129
|
export declare type TeamMutationUpdateCustomFieldArgs = {
|
|
179600
181130
|
customFieldData: TeamUpdateCustomFieldPayload;
|
|
179601
181131
|
id: Scalars['ID']['input'];
|
|
@@ -179933,6 +181463,19 @@ export declare type TeamTypeUpdatePayload = {
|
|
|
179933
181463
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
179934
181464
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
179935
181465
|
};
|
|
181466
|
+
export declare type TeamUnlinkManagedTeamError = {
|
|
181467
|
+
__typename?: 'TeamUnlinkManagedTeamError';
|
|
181468
|
+
errorCode: Scalars['String']['output'];
|
|
181469
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
181470
|
+
teamId: Scalars['ID']['output'];
|
|
181471
|
+
};
|
|
181472
|
+
export declare type TeamUnlinkManagedTeamsPayload = Payload & {
|
|
181473
|
+
__typename?: 'TeamUnlinkManagedTeamsPayload';
|
|
181474
|
+
errors?: Maybe<Array<MutationError>>;
|
|
181475
|
+
failedTeams?: Maybe<Array<TeamUnlinkManagedTeamError>>;
|
|
181476
|
+
success: Scalars['Boolean']['output'];
|
|
181477
|
+
successfulTeams?: Maybe<Array<Scalars['ID']['output']>>;
|
|
181478
|
+
};
|
|
179936
181479
|
export declare type TeamUpdateCustomFieldPayload = {
|
|
179937
181480
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
179938
181481
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -181230,7 +182773,8 @@ export declare type TownsquareGoalAccessEdge = {
|
|
|
181230
182773
|
};
|
|
181231
182774
|
export declare enum TownsquareGoalAccessLevel {
|
|
181232
182775
|
OpenEdit = "OPEN_EDIT",
|
|
181233
|
-
OpenView = "OPEN_VIEW"
|
|
182776
|
+
OpenView = "OPEN_VIEW",
|
|
182777
|
+
Restricted = "RESTRICTED"
|
|
181234
182778
|
}
|
|
181235
182779
|
export declare enum TownsquareGoalAccessRole {
|
|
181236
182780
|
Editor = "EDITOR",
|
|
@@ -184452,6 +185996,7 @@ export declare type TrelloBaseBoardUpdated = {
|
|
|
184452
185996
|
labels?: Maybe<TrelloLabelConnectionUpdated>;
|
|
184453
185997
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
184454
185998
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
185999
|
+
onLabelDeleted?: Maybe<Array<TrelloLabelDeleted>>;
|
|
184455
186000
|
onPlannerEventCardsDeleted?: Maybe<Array<TrelloPlannerEventCardDeleted>>;
|
|
184456
186001
|
plannerEventCards?: Maybe<TrelloCardUpdatedConnection>;
|
|
184457
186002
|
workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
|
|
@@ -185262,6 +186807,9 @@ export declare type TrelloCardEdgeUpdated = {
|
|
|
185262
186807
|
};
|
|
185263
186808
|
export declare enum TrelloCardExternalSource {
|
|
185264
186809
|
BrowserExtension = "BROWSER_EXTENSION",
|
|
186810
|
+
BrowserExtensionHighlight = "BROWSER_EXTENSION_HIGHLIGHT",
|
|
186811
|
+
BrowserExtensionImage = "BROWSER_EXTENSION_IMAGE",
|
|
186812
|
+
BrowserExtensionLink = "BROWSER_EXTENSION_LINK",
|
|
185265
186813
|
Confluence = "CONFLUENCE",
|
|
185266
186814
|
Email = "EMAIL",
|
|
185267
186815
|
Loom = "LOOM",
|
|
@@ -185504,6 +187052,24 @@ export declare type TrelloCommentCardActionDisplayEntities = {
|
|
|
185504
187052
|
contextOn?: Maybe<TrelloActionTranslatableEntity>;
|
|
185505
187053
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
185506
187054
|
};
|
|
187055
|
+
export declare type TrelloConvertBoardToTemplateInput = {
|
|
187056
|
+
boardId: Scalars['ID']['input'];
|
|
187057
|
+
};
|
|
187058
|
+
export declare type TrelloConvertBoardToTemplatePayload = Payload & {
|
|
187059
|
+
__typename?: 'TrelloConvertBoardToTemplatePayload';
|
|
187060
|
+
board?: Maybe<TrelloBoard>;
|
|
187061
|
+
errors?: Maybe<Array<MutationError>>;
|
|
187062
|
+
success: Scalars['Boolean']['output'];
|
|
187063
|
+
};
|
|
187064
|
+
export declare type TrelloConvertTemplateToBoardInput = {
|
|
187065
|
+
boardId: Scalars['ID']['input'];
|
|
187066
|
+
};
|
|
187067
|
+
export declare type TrelloConvertTemplateToBoardPayload = Payload & {
|
|
187068
|
+
__typename?: 'TrelloConvertTemplateToBoardPayload';
|
|
187069
|
+
board?: Maybe<TrelloBoard>;
|
|
187070
|
+
errors?: Maybe<Array<MutationError>>;
|
|
187071
|
+
success: Scalars['Boolean']['output'];
|
|
187072
|
+
};
|
|
185507
187073
|
export declare type TrelloCopiedCardSource = {
|
|
185508
187074
|
__typename?: 'TrelloCopiedCardSource';
|
|
185509
187075
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -186207,6 +187773,7 @@ export declare type TrelloInboxUpdated = TrelloBaseBoardUpdated & {
|
|
|
186207
187773
|
labels?: Maybe<TrelloLabelConnectionUpdated>;
|
|
186208
187774
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
186209
187775
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
187776
|
+
onLabelDeleted?: Maybe<Array<TrelloLabelDeleted>>;
|
|
186210
187777
|
onPlannerEventCardsDeleted?: Maybe<Array<TrelloPlannerEventCardDeleted>>;
|
|
186211
187778
|
plannerEventCards?: Maybe<TrelloCardUpdatedConnection>;
|
|
186212
187779
|
prefs?: Maybe<TrelloInboxPrefs>;
|
|
@@ -186703,6 +188270,8 @@ export declare type TrelloMutationApi = {
|
|
|
186703
188270
|
assignCardsToPlannerCalendarEvent?: Maybe<TrelloAssignCardsToPlannerCalendarEventPayload>;
|
|
186704
188271
|
bulkDeleteList?: Maybe<TrelloBulkDeleteListPayload>;
|
|
186705
188272
|
closeBoard?: Maybe<TrelloCloseBoardPayload>;
|
|
188273
|
+
convertBoardToTemplate?: Maybe<TrelloConvertBoardToTemplatePayload>;
|
|
188274
|
+
convertTemplateToBoard?: Maybe<TrelloConvertTemplateToBoardPayload>;
|
|
186706
188275
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
186707
188276
|
createBoardWithAi?: Maybe<TrelloCreateBoardWithAiPayload>;
|
|
186708
188277
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
@@ -186732,6 +188301,7 @@ export declare type TrelloMutationApi = {
|
|
|
186732
188301
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
186733
188302
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
186734
188303
|
removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
|
|
188304
|
+
reopenBoard?: Maybe<TrelloReopenBoardPayload>;
|
|
186735
188305
|
resetCardCover?: Maybe<TrelloResetCardCoverPayload>;
|
|
186736
188306
|
retryAiOnBoard?: Maybe<TrelloRetryAiOnBoardPayload>;
|
|
186737
188307
|
rotateOAuth2ClientSecret?: Maybe<TrelloRotateOAuth2ClientSecretPayload>;
|
|
@@ -186770,6 +188340,7 @@ export declare type TrelloMutationApi = {
|
|
|
186770
188340
|
updatePrimaryPlannerAccount?: Maybe<TrelloUpdatePrimaryPlannerAccountPayload>;
|
|
186771
188341
|
updateProactiveSmartScheduleStatus?: Maybe<TrelloUpdateProactiveSmartScheduleStatusPayload>;
|
|
186772
188342
|
updateProposedEvent?: Maybe<TrelloUpdateProposedEventPayload>;
|
|
188343
|
+
updateSmartScheduleBoardPreference?: Maybe<TrelloUpdateSmartScheduleBoardPreferencePayload>;
|
|
186773
188344
|
updateSmartScheduleLastActivity?: Maybe<TrelloUpdateSmartScheduleLastActivityPayload>;
|
|
186774
188345
|
updateWorkspaceTag?: Maybe<TrelloUpdateWorkspaceTagPayload>;
|
|
186775
188346
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
@@ -186804,6 +188375,12 @@ export declare type TrelloMutationApiBulkDeleteListArgs = {
|
|
|
186804
188375
|
export declare type TrelloMutationApiCloseBoardArgs = {
|
|
186805
188376
|
input: TrelloCloseBoardInput;
|
|
186806
188377
|
};
|
|
188378
|
+
export declare type TrelloMutationApiConvertBoardToTemplateArgs = {
|
|
188379
|
+
input: TrelloConvertBoardToTemplateInput;
|
|
188380
|
+
};
|
|
188381
|
+
export declare type TrelloMutationApiConvertTemplateToBoardArgs = {
|
|
188382
|
+
input: TrelloConvertTemplateToBoardInput;
|
|
188383
|
+
};
|
|
186807
188384
|
export declare type TrelloMutationApiCreateApplicationArgs = {
|
|
186808
188385
|
input: TrelloCreateApplicationInput;
|
|
186809
188386
|
};
|
|
@@ -186888,6 +188465,9 @@ export declare type TrelloMutationApiRemoveMemberFromWorkspaceArgs = {
|
|
|
186888
188465
|
export declare type TrelloMutationApiRemoveWorkspaceTagFromBoardArgs = {
|
|
186889
188466
|
input: TrelloRemoveWorkspaceTagFromBoardInput;
|
|
186890
188467
|
};
|
|
188468
|
+
export declare type TrelloMutationApiReopenBoardArgs = {
|
|
188469
|
+
input: TrelloReopenBoardInput;
|
|
188470
|
+
};
|
|
186891
188471
|
export declare type TrelloMutationApiResetCardCoverArgs = {
|
|
186892
188472
|
input: TrelloResetCardCoverInput;
|
|
186893
188473
|
};
|
|
@@ -186999,6 +188579,9 @@ export declare type TrelloMutationApiUpdateProactiveSmartScheduleStatusArgs = {
|
|
|
186999
188579
|
export declare type TrelloMutationApiUpdateProposedEventArgs = {
|
|
187000
188580
|
input: TrelloUpdateProposedEventInput;
|
|
187001
188581
|
};
|
|
188582
|
+
export declare type TrelloMutationApiUpdateSmartScheduleBoardPreferenceArgs = {
|
|
188583
|
+
input: TrelloUpdateSmartScheduleBoardPreferenceInput;
|
|
188584
|
+
};
|
|
187002
188585
|
export declare type TrelloMutationApiUpdateWorkspaceTagArgs = {
|
|
187003
188586
|
input: TrelloUpdateWorkspaceTagInput;
|
|
187004
188587
|
};
|
|
@@ -188118,6 +189701,16 @@ export declare type TrelloRemoveWorkspaceTagFromBoardPayload = Payload & {
|
|
|
188118
189701
|
errors?: Maybe<Array<MutationError>>;
|
|
188119
189702
|
success: Scalars['Boolean']['output'];
|
|
188120
189703
|
};
|
|
189704
|
+
export declare type TrelloReopenBoardInput = {
|
|
189705
|
+
boardId: Scalars['ID']['input'];
|
|
189706
|
+
keepBillableGuests: Scalars['Boolean']['input'];
|
|
189707
|
+
};
|
|
189708
|
+
export declare type TrelloReopenBoardPayload = Payload & {
|
|
189709
|
+
__typename?: 'TrelloReopenBoardPayload';
|
|
189710
|
+
board?: Maybe<TrelloBoard>;
|
|
189711
|
+
errors?: Maybe<Array<MutationError>>;
|
|
189712
|
+
success: Scalars['Boolean']['output'];
|
|
189713
|
+
};
|
|
188121
189714
|
export declare type TrelloResetCardCoverInput = {
|
|
188122
189715
|
cardId: Scalars['ID']['input'];
|
|
188123
189716
|
};
|
|
@@ -188397,7 +189990,7 @@ export declare type TrelloUpdateBoardDescriptionInput = {
|
|
|
188397
189990
|
};
|
|
188398
189991
|
export declare type TrelloUpdateBoardDescriptionPayload = Payload & {
|
|
188399
189992
|
__typename?: 'TrelloUpdateBoardDescriptionPayload';
|
|
188400
|
-
board?: Maybe<
|
|
189993
|
+
board?: Maybe<TrelloBoard>;
|
|
188401
189994
|
errors?: Maybe<Array<MutationError>>;
|
|
188402
189995
|
success: Scalars['Boolean']['output'];
|
|
188403
189996
|
};
|
|
@@ -188750,6 +190343,7 @@ export declare type TrelloUpdateProactiveSmartScheduleStatusInput = {
|
|
|
188750
190343
|
export declare type TrelloUpdateProactiveSmartScheduleStatusPayload = Payload & {
|
|
188751
190344
|
__typename?: 'TrelloUpdateProactiveSmartScheduleStatusPayload';
|
|
188752
190345
|
errors?: Maybe<Array<MutationError>>;
|
|
190346
|
+
member?: Maybe<TrelloMember>;
|
|
188753
190347
|
success: Scalars['Boolean']['output'];
|
|
188754
190348
|
};
|
|
188755
190349
|
export declare type TrelloUpdateProposedEventInput = {
|
|
@@ -188763,6 +190357,16 @@ export declare type TrelloUpdateProposedEventPayload = Payload & {
|
|
|
188763
190357
|
proposedEvent?: Maybe<TrelloProposedEvent>;
|
|
188764
190358
|
success: Scalars['Boolean']['output'];
|
|
188765
190359
|
};
|
|
190360
|
+
export declare type TrelloUpdateSmartScheduleBoardPreferenceInput = {
|
|
190361
|
+
includeInbox?: InputMaybe<Scalars['Boolean']['input']>;
|
|
190362
|
+
preferredBoards?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
190363
|
+
};
|
|
190364
|
+
export declare type TrelloUpdateSmartScheduleBoardPreferencePayload = Payload & {
|
|
190365
|
+
__typename?: 'TrelloUpdateSmartScheduleBoardPreferencePayload';
|
|
190366
|
+
errors?: Maybe<Array<MutationError>>;
|
|
190367
|
+
member?: Maybe<TrelloMember>;
|
|
190368
|
+
success: Scalars['Boolean']['output'];
|
|
190369
|
+
};
|
|
188766
190370
|
export declare type TrelloUpdateSmartScheduleLastActivityPayload = Payload & {
|
|
188767
190371
|
__typename?: 'TrelloUpdateSmartScheduleLastActivityPayload';
|
|
188768
190372
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -188814,10 +190418,13 @@ export declare type TrelloWorkOverviewDashboardJob = {
|
|
|
188814
190418
|
};
|
|
188815
190419
|
export declare enum TrelloWorkOverviewDashboardJobStatus {
|
|
188816
190420
|
Completed = "COMPLETED",
|
|
188817
|
-
|
|
190421
|
+
Created = "CREATED",
|
|
190422
|
+
Discovered = "DISCOVERED",
|
|
190423
|
+
Enqueued = "ENQUEUED",
|
|
188818
190424
|
Failed = "FAILED",
|
|
188819
|
-
|
|
188820
|
-
|
|
190425
|
+
Imported = "IMPORTED",
|
|
190426
|
+
Started = "STARTED",
|
|
190427
|
+
Synced = "SYNCED"
|
|
188821
190428
|
}
|
|
188822
190429
|
export declare type TrelloWorkOverviewDashboardJobUpdated = {
|
|
188823
190430
|
__typename?: 'TrelloWorkOverviewDashboardJobUpdated';
|
|
@@ -191065,6 +192672,7 @@ export declare type UpdatePolarisViewInput = {
|
|
|
191065
192672
|
layoutType?: InputMaybe<PolarisViewLayoutType>;
|
|
191066
192673
|
matrixConfig?: InputMaybe<UpdatePolarisMatrixConfig>;
|
|
191067
192674
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
192675
|
+
numberColumnDisplay?: InputMaybe<PolarisNumberColumnDisplay>;
|
|
191068
192676
|
showConnectionsMatchingColumn?: InputMaybe<Scalars['Boolean']['input']>;
|
|
191069
192677
|
showConnectionsMatchingGroup?: InputMaybe<Scalars['Boolean']['input']>;
|
|
191070
192678
|
sort?: InputMaybe<Array<PolarisSortFieldInput>>;
|