@forge/cli-shared 8.17.0-next.3 → 8.17.0-next.5
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 +16 -0
- package/out/graphql/graphql-types.d.ts +1260 -57
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +211 -49
- 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'];
|
|
@@ -320,6 +326,11 @@ export declare type AvpAnalyticsJoinColumnPairsInput = {
|
|
|
320
326
|
leftColumnId: Scalars['ID']['input'];
|
|
321
327
|
rightColumnId: Scalars['ID']['input'];
|
|
322
328
|
};
|
|
329
|
+
export declare type AvpAnalyticsJoinConfigurationError = {
|
|
330
|
+
__typename?: 'AVPAnalyticsJoinConfigurationError';
|
|
331
|
+
leftConfigErrors?: Maybe<Array<AvpAnalyticsError>>;
|
|
332
|
+
rightConfigErrors?: Maybe<Array<AvpAnalyticsError>>;
|
|
333
|
+
};
|
|
323
334
|
export declare enum AvpAnalyticsJoinOnOperator {
|
|
324
335
|
Equals = "EQUALS",
|
|
325
336
|
GreaterOrEqualThan = "GREATER_OR_EQUAL_THAN",
|
|
@@ -331,6 +342,7 @@ export declare enum AvpAnalyticsJoinOnOperator {
|
|
|
331
342
|
export declare type AvpAnalyticsJoinPaths = {
|
|
332
343
|
__typename?: 'AVPAnalyticsJoinPaths';
|
|
333
344
|
columnPairs: Array<AvpAnalyticsJoinColumnPairs>;
|
|
345
|
+
error?: Maybe<AvpAnalyticsJoinConfigurationError>;
|
|
334
346
|
joinType: AvpAnalyticsJoinType;
|
|
335
347
|
leftModelId: Scalars['ID']['output'];
|
|
336
348
|
rightModelId: Scalars['ID']['output'];
|
|
@@ -356,6 +368,7 @@ export declare type AvpAnalyticsModel = {
|
|
|
356
368
|
__typename?: 'AVPAnalyticsModel';
|
|
357
369
|
definition?: Maybe<AvpAnalyticsModelDefinition>;
|
|
358
370
|
description?: Maybe<Scalars['String']['output']>;
|
|
371
|
+
errors?: Maybe<Array<AvpAnalyticsError>>;
|
|
359
372
|
id: Scalars['ID']['output'];
|
|
360
373
|
metadata?: Maybe<AvpAnalyticsModelMetadata>;
|
|
361
374
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -406,6 +419,7 @@ export declare type AvpAnalyticsModelEdge = {
|
|
|
406
419
|
export declare type AvpAnalyticsModelFilter = {
|
|
407
420
|
__typename?: 'AVPAnalyticsModelFilter';
|
|
408
421
|
columnName: Scalars['String']['output'];
|
|
422
|
+
errors?: Maybe<Array<AvpAnalyticsError>>;
|
|
409
423
|
operator: AvpAnalyticsFilterOperator;
|
|
410
424
|
value?: Maybe<AvpAnalyticsFilterValue>;
|
|
411
425
|
};
|
|
@@ -480,6 +494,7 @@ export declare type AvpAnalyticsSearchInput = {
|
|
|
480
494
|
};
|
|
481
495
|
export declare type AvpAnalyticsSimpleColumn = AvpAnalyticsColumn & {
|
|
482
496
|
__typename?: 'AVPAnalyticsSimpleColumn';
|
|
497
|
+
errors?: Maybe<Array<AvpAnalyticsError>>;
|
|
483
498
|
id: Scalars['ID']['output'];
|
|
484
499
|
isHidden: Scalars['Boolean']['output'];
|
|
485
500
|
name: Scalars['String']['output'];
|
|
@@ -2389,14 +2404,8 @@ export declare type AdminAuditLogEventEdge = {
|
|
|
2389
2404
|
node: AdminAuditLogEvent;
|
|
2390
2405
|
};
|
|
2391
2406
|
export declare type AdminAuditLogEventExportInput = {
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
2395
|
-
ip?: InputMaybe<Scalars['String']['input']>;
|
|
2396
|
-
location?: InputMaybe<Scalars['String']['input']>;
|
|
2397
|
-
product?: InputMaybe<Scalars['String']['input']>;
|
|
2398
|
-
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
2399
|
-
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
2407
|
+
format?: InputMaybe<AdminAuditLogEventMessageFormat>;
|
|
2408
|
+
query: Scalars['String']['input'];
|
|
2400
2409
|
};
|
|
2401
2410
|
export declare type AdminAuditLogEventExportResponsePayload = Payload & {
|
|
2402
2411
|
__typename?: 'AdminAuditLogEventExportResponsePayload';
|
|
@@ -2462,6 +2471,11 @@ export declare type AdminAuditLogGroupEventActionEdge = {
|
|
|
2462
2471
|
cursor: Scalars['String']['output'];
|
|
2463
2472
|
node: AdminAuditLogGroupEventAction;
|
|
2464
2473
|
};
|
|
2474
|
+
export declare type AdminAuditLogProductMapping = {
|
|
2475
|
+
__typename?: 'AdminAuditLogProductMapping';
|
|
2476
|
+
app: Scalars['String']['output'];
|
|
2477
|
+
prefixes: Array<Scalars['String']['output']>;
|
|
2478
|
+
};
|
|
2465
2479
|
export declare type AdminAuthPolicyConfig = {
|
|
2466
2480
|
__typename?: 'AdminAuthPolicyConfig';
|
|
2467
2481
|
apiToken?: Maybe<AdminApiTokenConfig>;
|
|
@@ -3617,12 +3631,27 @@ export declare type AdminWorkspaceTypeEdge = {
|
|
|
3617
3631
|
cursor: Scalars['String']['output'];
|
|
3618
3632
|
node?: Maybe<AdminWorkspaceType>;
|
|
3619
3633
|
};
|
|
3634
|
+
export declare type AgentAiCitation = {
|
|
3635
|
+
__typename?: 'AgentAICitation';
|
|
3636
|
+
confidence?: Maybe<Scalars['Float']['output']>;
|
|
3637
|
+
id: Scalars['String']['output'];
|
|
3638
|
+
isInternal?: Maybe<Scalars['Boolean']['output']>;
|
|
3639
|
+
sourceId?: Maybe<Scalars['String']['output']>;
|
|
3640
|
+
sourceType: AgentAiCitationSourceType;
|
|
3641
|
+
sourceUrl?: Maybe<Scalars['String']['output']>;
|
|
3642
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
3643
|
+
};
|
|
3644
|
+
export declare enum AgentAiCitationSourceType {
|
|
3645
|
+
KbArticle = "KB_ARTICLE",
|
|
3646
|
+
SimilarIssue = "SIMILAR_ISSUE"
|
|
3647
|
+
}
|
|
3620
3648
|
export declare type AgentAiContextPanelResponse = {
|
|
3621
3649
|
__typename?: 'AgentAIContextPanelResponse';
|
|
3622
3650
|
agentSteps?: Maybe<Scalars['String']['output']>;
|
|
3623
3651
|
nextSteps?: Maybe<Scalars['String']['output']>;
|
|
3624
3652
|
reporterDetails?: Maybe<Scalars['String']['output']>;
|
|
3625
3653
|
suggestedActions?: Maybe<Array<Maybe<AgentAiSuggestAction>>>;
|
|
3654
|
+
suggestedNextSteps?: Maybe<AgentAiSuggestedNextSteps>;
|
|
3626
3655
|
summary?: Maybe<Scalars['String']['output']>;
|
|
3627
3656
|
};
|
|
3628
3657
|
export declare type AgentAiContextPanelResult = AgentAiContextPanelResponse | QueryError;
|
|
@@ -3633,10 +3662,16 @@ export declare type AgentAiIssueSummary = {
|
|
|
3633
3662
|
summary?: Maybe<AgentAiSummary>;
|
|
3634
3663
|
};
|
|
3635
3664
|
export declare type AgentAiIssueSummaryResult = AgentAiIssueSummary | QueryError;
|
|
3665
|
+
export declare type AgentAiNextStep = {
|
|
3666
|
+
__typename?: 'AgentAINextStep';
|
|
3667
|
+
content: Scalars['String']['output'];
|
|
3668
|
+
};
|
|
3636
3669
|
export declare type AgentAiPanel = {
|
|
3637
3670
|
__typename?: 'AgentAIPanel';
|
|
3638
3671
|
changesFromLastVisit?: Maybe<Scalars['String']['output']>;
|
|
3672
|
+
nextActions?: Maybe<AgentAiContextPanelResponse>;
|
|
3639
3673
|
shortSummary?: Maybe<Scalars['String']['output']>;
|
|
3674
|
+
tldrGenerationTime?: Maybe<Scalars['Long']['output']>;
|
|
3640
3675
|
};
|
|
3641
3676
|
export declare type AgentAiPanelChangesFromLastVisitArgs = {
|
|
3642
3677
|
lastActivityTime?: InputMaybe<Scalars['Long']['input']>;
|
|
@@ -3671,6 +3706,11 @@ export declare type AgentAiSuggestedActionContext = {
|
|
|
3671
3706
|
id?: Maybe<Scalars['String']['output']>;
|
|
3672
3707
|
suggestion?: Maybe<Scalars['JSON']['output']>;
|
|
3673
3708
|
};
|
|
3709
|
+
export declare type AgentAiSuggestedNextSteps = {
|
|
3710
|
+
__typename?: 'AgentAISuggestedNextSteps';
|
|
3711
|
+
citations: Array<Maybe<AgentAiCitation>>;
|
|
3712
|
+
nextSteps: Array<Maybe<AgentAiNextStep>>;
|
|
3713
|
+
};
|
|
3674
3714
|
export declare type AgentAiSummary = {
|
|
3675
3715
|
__typename?: 'AgentAISummary';
|
|
3676
3716
|
adf?: Maybe<Scalars['String']['output']>;
|
|
@@ -3738,6 +3778,7 @@ export declare type AgentStudioAgent = {
|
|
|
3738
3778
|
description?: Maybe<Scalars['String']['output']>;
|
|
3739
3779
|
etag?: Maybe<Scalars['String']['output']>;
|
|
3740
3780
|
id: Scalars['ID']['output'];
|
|
3781
|
+
isModelUpgradeAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
3741
3782
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
3742
3783
|
name?: Maybe<Scalars['String']['output']>;
|
|
3743
3784
|
permissions?: Maybe<AgentStudioAgentPermissions>;
|
|
@@ -3857,6 +3898,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
3857
3898
|
identityAccountId?: Maybe<Scalars['String']['output']>;
|
|
3858
3899
|
instructions?: Maybe<Scalars['String']['output']>;
|
|
3859
3900
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
3901
|
+
isModelUpgradeAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
3860
3902
|
isVerified?: Maybe<Scalars['Boolean']['output']>;
|
|
3861
3903
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
3862
3904
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -4397,6 +4439,7 @@ export declare type AgentStudioKnowledgeGapSuggestionArticle = {
|
|
|
4397
4439
|
containerAri?: Maybe<Scalars['String']['output']>;
|
|
4398
4440
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
4399
4441
|
description?: Maybe<Scalars['String']['output']>;
|
|
4442
|
+
draftShareId?: Maybe<Scalars['String']['output']>;
|
|
4400
4443
|
evidences?: Maybe<AgentStudioKnowledgeGapEvidences>;
|
|
4401
4444
|
id: Scalars['ID']['output'];
|
|
4402
4445
|
knowledgeCollectionId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -4493,6 +4536,10 @@ export declare type AgentStudioMessageSource = {
|
|
|
4493
4536
|
title?: Maybe<Scalars['String']['output']>;
|
|
4494
4537
|
url?: Maybe<Scalars['String']['output']>;
|
|
4495
4538
|
};
|
|
4539
|
+
export declare enum AgentStudioModelUpgradeAction {
|
|
4540
|
+
Revert = "REVERT",
|
|
4541
|
+
Upgrade = "UPGRADE"
|
|
4542
|
+
}
|
|
4496
4543
|
export declare type AgentStudioPortalChannel = AgentStudioChannel & {
|
|
4497
4544
|
__typename?: 'AgentStudioPortalChannel';
|
|
4498
4545
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -4624,6 +4671,7 @@ export declare type AgentStudioServiceAgent = AgentStudioAgent & Node & {
|
|
|
4624
4671
|
description?: Maybe<Scalars['String']['output']>;
|
|
4625
4672
|
etag?: Maybe<Scalars['String']['output']>;
|
|
4626
4673
|
id: Scalars['ID']['output'];
|
|
4674
|
+
isModelUpgradeAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
4627
4675
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
4628
4676
|
linkedJiraProject?: Maybe<JiraProject>;
|
|
4629
4677
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -4803,6 +4851,12 @@ export declare type AgentStudioUpdateAgentKnowledgeSourcesPayload = Payload & {
|
|
|
4803
4851
|
errors?: Maybe<Array<MutationError>>;
|
|
4804
4852
|
success: Scalars['Boolean']['output'];
|
|
4805
4853
|
};
|
|
4854
|
+
export declare type AgentStudioUpdateAgentModelVersionPayload = Payload & {
|
|
4855
|
+
__typename?: 'AgentStudioUpdateAgentModelVersionPayload';
|
|
4856
|
+
agent?: Maybe<AgentStudioAgent>;
|
|
4857
|
+
errors?: Maybe<Array<MutationError>>;
|
|
4858
|
+
success: Scalars['Boolean']['output'];
|
|
4859
|
+
};
|
|
4806
4860
|
export declare type AgentStudioUpdateAgentPermissionInput = {
|
|
4807
4861
|
actorRoles?: InputMaybe<Array<AgentStudioActorRoleInput>>;
|
|
4808
4862
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -5003,6 +5057,10 @@ export declare type AgentWorkspaceAgentsPageInfo = {
|
|
|
5003
5057
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
5004
5058
|
totalAgents: Scalars['Int']['output'];
|
|
5005
5059
|
};
|
|
5060
|
+
export declare type AgentWorkspaceAppliedFilters = {
|
|
5061
|
+
__typename?: 'AgentWorkspaceAppliedFilters';
|
|
5062
|
+
agentIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
5063
|
+
};
|
|
5006
5064
|
export declare type AgentWorkspaceArchiveSkillInput = {
|
|
5007
5065
|
cloudId: Scalars['ID']['input'];
|
|
5008
5066
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -5032,6 +5090,7 @@ export declare type AgentWorkspaceAssignSkillPayload = {
|
|
|
5032
5090
|
export declare type AgentWorkspaceAvailabilityConnection = {
|
|
5033
5091
|
__typename?: 'AgentWorkspaceAvailabilityConnection';
|
|
5034
5092
|
edges: Array<AgentWorkspaceAvailabilityEdge>;
|
|
5093
|
+
initialFilters?: Maybe<AgentWorkspaceAppliedFilters>;
|
|
5035
5094
|
nodes: Array<AgentWorkspaceAgentAvailability>;
|
|
5036
5095
|
pageInfo: AgentWorkspaceAvailabilityPageInfo;
|
|
5037
5096
|
summary: AgentWorkspaceAvailabilitySummary;
|
|
@@ -5050,6 +5109,7 @@ export declare type AgentWorkspaceAvailabilityError = {
|
|
|
5050
5109
|
export declare type AgentWorkspaceAvailabilityInput = {
|
|
5051
5110
|
agentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5052
5111
|
cloudId: Scalars['ID']['input'];
|
|
5112
|
+
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5053
5113
|
page?: InputMaybe<Scalars['Int']['input']>;
|
|
5054
5114
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
5055
5115
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -5688,9 +5748,14 @@ export declare type AgentWorkspaceShift = {
|
|
|
5688
5748
|
startTime: Scalars['DateTime']['output'];
|
|
5689
5749
|
user?: Maybe<User>;
|
|
5690
5750
|
};
|
|
5751
|
+
export declare type AgentWorkspaceShiftsAppliedFilters = {
|
|
5752
|
+
__typename?: 'AgentWorkspaceShiftsAppliedFilters';
|
|
5753
|
+
agentIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
5754
|
+
};
|
|
5691
5755
|
export declare type AgentWorkspaceShiftsConnection = {
|
|
5692
5756
|
__typename?: 'AgentWorkspaceShiftsConnection';
|
|
5693
5757
|
edges: Array<AgentWorkspaceAgentShiftsEdge>;
|
|
5758
|
+
initialFilters?: Maybe<AgentWorkspaceShiftsAppliedFilters>;
|
|
5694
5759
|
metadata: AgentWorkspaceShiftsMetadata;
|
|
5695
5760
|
pageInfo: AgentWorkspaceAgentsPageInfo;
|
|
5696
5761
|
summary: AgentWorkspaceShiftsSummary;
|
|
@@ -5708,6 +5773,7 @@ export declare type AgentWorkspaceShiftsQueryInput = {
|
|
|
5708
5773
|
agentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5709
5774
|
cloudId: Scalars['ID']['input'];
|
|
5710
5775
|
endTime: Scalars['DateTime']['input'];
|
|
5776
|
+
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5711
5777
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
5712
5778
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
5713
5779
|
scheduleIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -10388,8 +10454,10 @@ export declare type AssetsVerticalAsyncBundleActionErrorResponse = {
|
|
|
10388
10454
|
errors?: Maybe<Array<AssetsVerticalAsyncBundleActionError>>;
|
|
10389
10455
|
};
|
|
10390
10456
|
export declare type AssetsVerticalAsyncBundleActionResult = AssetsVerticalAsyncBundleActionErrorResponse | AssetsVerticalAsyncTaskPayload;
|
|
10391
|
-
export declare type AssetsVerticalAsyncTaskPayload = {
|
|
10457
|
+
export declare type AssetsVerticalAsyncTaskPayload = Payload & {
|
|
10392
10458
|
__typename?: 'AssetsVerticalAsyncTaskPayload';
|
|
10459
|
+
errors?: Maybe<Array<MutationError>>;
|
|
10460
|
+
success: Scalars['Boolean']['output'];
|
|
10393
10461
|
taskId: Scalars['String']['output'];
|
|
10394
10462
|
};
|
|
10395
10463
|
export declare enum AssetsVerticalAttributeCategory {
|
|
@@ -10436,6 +10504,11 @@ export declare type AssetsVerticalBundle = {
|
|
|
10436
10504
|
export declare enum AssetsVerticalBundleActionErrorCode {
|
|
10437
10505
|
Conflict = "CONFLICT"
|
|
10438
10506
|
}
|
|
10507
|
+
export declare type AssetsVerticalBundleActionErrorExtension = MutationErrorExtension & {
|
|
10508
|
+
__typename?: 'AssetsVerticalBundleActionErrorExtension';
|
|
10509
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
10510
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
10511
|
+
};
|
|
10439
10512
|
export declare enum AssetsVerticalBundleType {
|
|
10440
10513
|
Cdm = "CDM",
|
|
10441
10514
|
Osc = "OSC"
|
|
@@ -10493,6 +10566,10 @@ export declare enum AssetsVerticalInsightsStatus {
|
|
|
10493
10566
|
NotStarted = "NOT_STARTED",
|
|
10494
10567
|
Pending = "PENDING"
|
|
10495
10568
|
}
|
|
10569
|
+
export declare type AssetsVerticalInstantiateBundleByTypeInput = {
|
|
10570
|
+
cloudId: Scalars['ID']['input'];
|
|
10571
|
+
type: AssetsVerticalBundleType;
|
|
10572
|
+
};
|
|
10496
10573
|
export declare type AssetsVerticalInventoryError = {
|
|
10497
10574
|
__typename?: 'AssetsVerticalInventoryError';
|
|
10498
10575
|
code?: Maybe<AssetsVerticalInventoryErrorCode>;
|
|
@@ -14215,6 +14292,7 @@ export declare type ChildContentTypesAvailable = {
|
|
|
14215
14292
|
blogpost?: Maybe<Scalars['Boolean']['output']>;
|
|
14216
14293
|
comment?: Maybe<Scalars['Boolean']['output']>;
|
|
14217
14294
|
page?: Maybe<Scalars['Boolean']['output']>;
|
|
14295
|
+
slide?: Maybe<Scalars['Boolean']['output']>;
|
|
14218
14296
|
};
|
|
14219
14297
|
export declare enum Classification {
|
|
14220
14298
|
Other = "other",
|
|
@@ -14598,6 +14676,7 @@ export declare enum CommentCreationLocation {
|
|
|
14598
14676
|
Editor = "EDITOR",
|
|
14599
14677
|
Live = "LIVE",
|
|
14600
14678
|
Renderer = "RENDERER",
|
|
14679
|
+
Slide = "SLIDE",
|
|
14601
14680
|
Whiteboard = "WHITEBOARD"
|
|
14602
14681
|
}
|
|
14603
14682
|
export declare enum CommentDeletionLocation {
|
|
@@ -15411,6 +15490,7 @@ export declare type CommerceExpCcpMutation = {
|
|
|
15411
15490
|
setupIntent?: Maybe<CommerceExpSetupIntentPayload>;
|
|
15412
15491
|
updateInvoiceGroup?: Maybe<CommerceExpUpdateInvoiceGroupPayload>;
|
|
15413
15492
|
updatePaymentMethodInInvoiceGroups?: Maybe<CommerceExpUpdatePaymentMethodInInvoiceGroupsPayload>;
|
|
15493
|
+
updatePrimaryContact?: Maybe<CommerceExpUpdatePrimaryContactPayload>;
|
|
15414
15494
|
updateTransactionAccount?: Maybe<CommerceExpUpdateTransactionAccountPayload>;
|
|
15415
15495
|
};
|
|
15416
15496
|
export declare type CommerceExpCcpMutationActivateEntitlementsArgs = {
|
|
@@ -15484,6 +15564,10 @@ export declare type CommerceExpCcpMutationUpdatePaymentMethodInInvoiceGroupsArgs
|
|
|
15484
15564
|
defaultPaymentMethod: Scalars['String']['input'];
|
|
15485
15565
|
ids: Array<Scalars['ID']['input']>;
|
|
15486
15566
|
};
|
|
15567
|
+
export declare type CommerceExpCcpMutationUpdatePrimaryContactArgs = {
|
|
15568
|
+
input: CommerceExpUpdatePrimaryContactInput;
|
|
15569
|
+
txaId: Scalars['ID']['input'];
|
|
15570
|
+
};
|
|
15487
15571
|
export declare type CommerceExpCcpMutationUpdateTransactionAccountArgs = {
|
|
15488
15572
|
input: CommerceExpTransactionAccountInput;
|
|
15489
15573
|
transactionAccountId: Scalars['ID']['input'];
|
|
@@ -15664,6 +15748,7 @@ export declare type CommerceExpCcpQuery = {
|
|
|
15664
15748
|
product?: Maybe<CommerceExpCcpProduct>;
|
|
15665
15749
|
products?: Maybe<Array<Maybe<CommerceExpCcpProduct>>>;
|
|
15666
15750
|
quote?: Maybe<CommerceExpCcpQuote>;
|
|
15751
|
+
quoteOperations?: Maybe<CommerceExpCcpQuoteOperations>;
|
|
15667
15752
|
testField?: Maybe<CommerceExpCommerceExpTestField>;
|
|
15668
15753
|
transactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
15669
15754
|
transactionAccounts?: Maybe<Array<Maybe<CommerceExpCcpTransactionAccount>>>;
|
|
@@ -15743,6 +15828,9 @@ export declare type CommerceExpCcpQueryProductsArgs = {
|
|
|
15743
15828
|
export declare type CommerceExpCcpQueryQuoteArgs = {
|
|
15744
15829
|
id: Scalars['ID']['input'];
|
|
15745
15830
|
};
|
|
15831
|
+
export declare type CommerceExpCcpQueryQuoteOperationsArgs = {
|
|
15832
|
+
quoteOperationsInput: CommerceExpQuoteOperationsInput;
|
|
15833
|
+
};
|
|
15746
15834
|
export declare type CommerceExpCcpQueryTransactionAccountArgs = {
|
|
15747
15835
|
id: Scalars['ID']['input'];
|
|
15748
15836
|
};
|
|
@@ -15810,6 +15898,14 @@ export declare type CommerceExpCcpQuoteLineItems3Args = {
|
|
|
15810
15898
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15811
15899
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
15812
15900
|
};
|
|
15901
|
+
export declare type CommerceExpCcpQuoteOperations = {
|
|
15902
|
+
__typename?: 'CommerceExpCcpQuoteOperations';
|
|
15903
|
+
error?: Maybe<CommerceExpQuoteOperationError>;
|
|
15904
|
+
id: Scalars['ID']['output'];
|
|
15905
|
+
quoteId: Scalars['ID']['output'];
|
|
15906
|
+
requestedQuoteAction?: Maybe<CommerceExpRequestedQuoteAction>;
|
|
15907
|
+
status?: Maybe<CommerceExpQuoteOperationStatus>;
|
|
15908
|
+
};
|
|
15813
15909
|
export declare type CommerceExpCcpRelationshipFilter = {
|
|
15814
15910
|
relationshipType?: InputMaybe<Scalars['String']['input']>;
|
|
15815
15911
|
};
|
|
@@ -16531,8 +16627,12 @@ export declare type CommerceExpEndsAt = {
|
|
|
16531
16627
|
};
|
|
16532
16628
|
export declare type CommerceExpEnterpriseGatekeeper = {
|
|
16533
16629
|
__typename?: 'CommerceExpEnterpriseGatekeeper';
|
|
16630
|
+
forecasting?: Maybe<CommerceExpForecastingOutput>;
|
|
16534
16631
|
organisations?: Maybe<Array<Maybe<CommerceExpOrganisation>>>;
|
|
16535
16632
|
};
|
|
16633
|
+
export declare type CommerceExpEnterpriseGatekeeperForecastingArgs = {
|
|
16634
|
+
input: CommerceExpForecastingApiInput;
|
|
16635
|
+
};
|
|
16536
16636
|
export declare type CommerceExpEnterpriseInstanceFilter = {
|
|
16537
16637
|
status?: InputMaybe<CommerceExpEntitlementStatus>;
|
|
16538
16638
|
};
|
|
@@ -16600,6 +16700,7 @@ export declare type CommerceExpEntitlementFilter = {
|
|
|
16600
16700
|
excludedProductKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
16601
16701
|
includeFutureDated?: InputMaybe<Scalars['Boolean']['input']>;
|
|
16602
16702
|
includeManuallyBilled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
16703
|
+
invoiceGroupIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
16603
16704
|
isSandbox?: InputMaybe<Scalars['Boolean']['input']>;
|
|
16604
16705
|
pricingPlanTypes?: InputMaybe<Array<CommerceExpCcpPricingType>>;
|
|
16605
16706
|
productKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -16748,6 +16849,28 @@ export declare type CommerceExpExpectedBillsLineItem = {
|
|
|
16748
16849
|
taxItems?: Maybe<Array<Maybe<CommerceExpTaxItemsResponse>>>;
|
|
16749
16850
|
total?: Maybe<Scalars['Float']['output']>;
|
|
16750
16851
|
};
|
|
16852
|
+
export declare type CommerceExpForecastResult = {
|
|
16853
|
+
__typename?: 'CommerceExpForecastResult';
|
|
16854
|
+
extraUsageHigh?: Maybe<Scalars['Float']['output']>;
|
|
16855
|
+
extraUsageLow?: Maybe<Scalars['Float']['output']>;
|
|
16856
|
+
totalUsageHigh?: Maybe<Scalars['Float']['output']>;
|
|
16857
|
+
totalUsageLow?: Maybe<Scalars['Float']['output']>;
|
|
16858
|
+
};
|
|
16859
|
+
export declare type CommerceExpForecastingApiInput = {
|
|
16860
|
+
entityId: Scalars['ID']['input'];
|
|
16861
|
+
entityType: CommerceExpForecastingEntityType;
|
|
16862
|
+
meterId: Scalars['ID']['input'];
|
|
16863
|
+
orgId: Scalars['ID']['input'];
|
|
16864
|
+
};
|
|
16865
|
+
export declare enum CommerceExpForecastingEntityType {
|
|
16866
|
+
AllocationGroup = "ALLOCATION_GROUP",
|
|
16867
|
+
Entitlement = "ENTITLEMENT"
|
|
16868
|
+
}
|
|
16869
|
+
export declare type CommerceExpForecastingOutput = {
|
|
16870
|
+
__typename?: 'CommerceExpForecastingOutput';
|
|
16871
|
+
forecasts?: Maybe<CommerceExpForecastResult>;
|
|
16872
|
+
unit?: Maybe<Scalars['String']['output']>;
|
|
16873
|
+
};
|
|
16751
16874
|
export declare type CommerceExpGenericEntitlementActionResult = CommerceExpEntitlementActionResult & {
|
|
16752
16875
|
__typename?: 'CommerceExpGenericEntitlementActionResult';
|
|
16753
16876
|
experienceType?: Maybe<CommerceExpEntitlementActionExperienceType>;
|
|
@@ -17963,6 +18086,20 @@ export declare enum CommerceExpQuoteLineItemSaleTransitionType {
|
|
|
17963
18086
|
Renew = "RENEW",
|
|
17964
18087
|
Upgrade = "UPGRADE"
|
|
17965
18088
|
}
|
|
18089
|
+
export declare type CommerceExpQuoteOperationError = {
|
|
18090
|
+
__typename?: 'CommerceExpQuoteOperationError';
|
|
18091
|
+
errorCode?: Maybe<Scalars['String']['output']>;
|
|
18092
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
18093
|
+
};
|
|
18094
|
+
export declare enum CommerceExpQuoteOperationStatus {
|
|
18095
|
+
Failed = "FAILED",
|
|
18096
|
+
InProgress = "IN_PROGRESS",
|
|
18097
|
+
Success = "SUCCESS"
|
|
18098
|
+
}
|
|
18099
|
+
export declare type CommerceExpQuoteOperationsInput = {
|
|
18100
|
+
id: Scalars['ID']['input'];
|
|
18101
|
+
transactionAccountId: Scalars['ID']['input'];
|
|
18102
|
+
};
|
|
17966
18103
|
export declare enum CommerceExpQuoteStatus {
|
|
17967
18104
|
AcceptanceInProgress = "ACCEPTANCE_IN_PROGRESS",
|
|
17968
18105
|
Accepted = "ACCEPTED",
|
|
@@ -18058,6 +18195,17 @@ export declare type CommerceExpRemoveAdminPayload = CommerceExpMutationPayload &
|
|
|
18058
18195
|
errors?: Maybe<Array<MutationError>>;
|
|
18059
18196
|
success: Scalars['Boolean']['output'];
|
|
18060
18197
|
};
|
|
18198
|
+
export declare enum CommerceExpRequestedQuoteAction {
|
|
18199
|
+
CancelQuote = "CANCEL_QUOTE",
|
|
18200
|
+
CloneQuote = "CLONE_QUOTE",
|
|
18201
|
+
CreateOpenQuote = "CREATE_OPEN_QUOTE",
|
|
18202
|
+
CreateQuote = "CREATE_QUOTE",
|
|
18203
|
+
FinalizeQuote = "FINALIZE_QUOTE",
|
|
18204
|
+
MarkDraft = "MARK_DRAFT",
|
|
18205
|
+
PatchOpenQuote = "PATCH_OPEN_QUOTE",
|
|
18206
|
+
ReviseQuote = "REVISE_QUOTE",
|
|
18207
|
+
UpdateQuote = "UPDATE_QUOTE"
|
|
18208
|
+
}
|
|
18061
18209
|
export declare type CommerceExpReservedSiteAndOrg = {
|
|
18062
18210
|
__typename?: 'CommerceExpReservedSiteAndOrg';
|
|
18063
18211
|
orgName?: Maybe<Scalars['String']['output']>;
|
|
@@ -18370,6 +18518,18 @@ export declare type CommerceExpUpdatePaymentMethodInInvoiceGroupsPayload = Comme
|
|
|
18370
18518
|
errors?: Maybe<Array<MutationError>>;
|
|
18371
18519
|
success: Scalars['Boolean']['output'];
|
|
18372
18520
|
};
|
|
18521
|
+
export declare type CommerceExpUpdatePrimaryContactInput = {
|
|
18522
|
+
contactType: CommerceExpContactType;
|
|
18523
|
+
customerType: CommerceExpCustomerType;
|
|
18524
|
+
existingPrimaryPrincipalAri?: InputMaybe<Scalars['String']['input']>;
|
|
18525
|
+
newPrimaryPrincipalAri: Scalars['String']['input'];
|
|
18526
|
+
resourceAri: Scalars['String']['input'];
|
|
18527
|
+
};
|
|
18528
|
+
export declare type CommerceExpUpdatePrimaryContactPayload = CommerceExpMutationPayload & {
|
|
18529
|
+
__typename?: 'CommerceExpUpdatePrimaryContactPayload';
|
|
18530
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18531
|
+
success: Scalars['Boolean']['output'];
|
|
18532
|
+
};
|
|
18373
18533
|
export declare type CommerceExpUpdateShipToPartyPayload = CommerceExpMutationPayload & {
|
|
18374
18534
|
__typename?: 'CommerceExpUpdateShipToPartyPayload';
|
|
18375
18535
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -23862,6 +24022,9 @@ export declare type ConfluenceAdvancedDiagramsFeature = {
|
|
|
23862
24022
|
__typename?: 'ConfluenceAdvancedDiagramsFeature';
|
|
23863
24023
|
isEntitled: Scalars['Boolean']['output'];
|
|
23864
24024
|
};
|
|
24025
|
+
export declare enum ConfluenceAggregationDimension {
|
|
24026
|
+
PerformanceRating = "PERFORMANCE_RATING"
|
|
24027
|
+
}
|
|
23865
24028
|
export declare enum ConfluenceAnalyticsCommentContentType {
|
|
23866
24029
|
Database = "database",
|
|
23867
24030
|
Page = "page",
|
|
@@ -24176,6 +24339,12 @@ export declare enum ConfluenceBodyRepresentation {
|
|
|
24176
24339
|
View = "VIEW",
|
|
24177
24340
|
WhiteboardDocFormat = "WHITEBOARD_DOC_FORMAT"
|
|
24178
24341
|
}
|
|
24342
|
+
export declare type ConfluenceBucketDefinition = {
|
|
24343
|
+
__typename?: 'ConfluenceBucketDefinition';
|
|
24344
|
+
max?: Maybe<Scalars['Float']['output']>;
|
|
24345
|
+
min?: Maybe<Scalars['Float']['output']>;
|
|
24346
|
+
unit: Scalars['String']['output'];
|
|
24347
|
+
};
|
|
24179
24348
|
export declare type ConfluenceBulkNestedConvertToLiveDocsPayload = {
|
|
24180
24349
|
__typename?: 'ConfluenceBulkNestedConvertToLiveDocsPayload';
|
|
24181
24350
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -24700,6 +24869,75 @@ export declare type ConfluenceContentNativeProperties = {
|
|
|
24700
24869
|
current?: Maybe<ConfluenceCurrentContentNativeProperties>;
|
|
24701
24870
|
draft?: Maybe<ConfluenceDraftContentNativeProperties>;
|
|
24702
24871
|
};
|
|
24872
|
+
export declare type ConfluenceContentPerformance = {
|
|
24873
|
+
__typename?: 'ConfluenceContentPerformance';
|
|
24874
|
+
content: ConfluenceContentPerformanceContent;
|
|
24875
|
+
contentOwner: ConfluenceContentPerformanceUser;
|
|
24876
|
+
contentType: ConfluenceContentPerformanceContentType;
|
|
24877
|
+
id: Scalars['ID']['output'];
|
|
24878
|
+
loadTimeRating: ConfluenceLoadTimeRating;
|
|
24879
|
+
medianLoadTime: Scalars['Float']['output'];
|
|
24880
|
+
operations: Array<Maybe<ConfluenceContentPerformanceOperationCheckResult>>;
|
|
24881
|
+
space: ConfluenceContentPerformanceSpace;
|
|
24882
|
+
views: Scalars['Int']['output'];
|
|
24883
|
+
};
|
|
24884
|
+
export declare type ConfluenceContentPerformanceConnection = {
|
|
24885
|
+
__typename?: 'ConfluenceContentPerformanceConnection';
|
|
24886
|
+
edges: Array<Maybe<ConfluenceContentPerformanceEdge>>;
|
|
24887
|
+
nodes: Array<Maybe<ConfluenceContentPerformance>>;
|
|
24888
|
+
pageInfo: ConfluenceContentPerformancePageInfo;
|
|
24889
|
+
totalCount: Scalars['Int']['output'];
|
|
24890
|
+
};
|
|
24891
|
+
export declare type ConfluenceContentPerformanceContent = {
|
|
24892
|
+
__typename?: 'ConfluenceContentPerformanceContent';
|
|
24893
|
+
contentId: Scalars['ID']['output'];
|
|
24894
|
+
contentTitle: Scalars['String']['output'];
|
|
24895
|
+
link: Scalars['String']['output'];
|
|
24896
|
+
};
|
|
24897
|
+
export declare enum ConfluenceContentPerformanceContentType {
|
|
24898
|
+
BlogPost = "BLOG_POST",
|
|
24899
|
+
LivePage = "LIVE_PAGE",
|
|
24900
|
+
Page = "PAGE"
|
|
24901
|
+
}
|
|
24902
|
+
export declare type ConfluenceContentPerformanceEdge = {
|
|
24903
|
+
__typename?: 'ConfluenceContentPerformanceEdge';
|
|
24904
|
+
cursor: Scalars['String']['output'];
|
|
24905
|
+
node: ConfluenceContentPerformance;
|
|
24906
|
+
};
|
|
24907
|
+
export declare type ConfluenceContentPerformanceFilters = {
|
|
24908
|
+
contentType?: InputMaybe<Array<InputMaybe<ConfluenceContentPerformanceContentType>>>;
|
|
24909
|
+
ownerId?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
24910
|
+
rating?: InputMaybe<Array<InputMaybe<ConfluenceLoadTimeRating>>>;
|
|
24911
|
+
spaceId?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
24912
|
+
};
|
|
24913
|
+
export declare type ConfluenceContentPerformanceOperationCheckResult = {
|
|
24914
|
+
__typename?: 'ConfluenceContentPerformanceOperationCheckResult';
|
|
24915
|
+
operation: Scalars['String']['output'];
|
|
24916
|
+
targetType: Scalars['String']['output'];
|
|
24917
|
+
};
|
|
24918
|
+
export declare type ConfluenceContentPerformancePageInfo = {
|
|
24919
|
+
__typename?: 'ConfluenceContentPerformancePageInfo';
|
|
24920
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
24921
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
24922
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
24923
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
24924
|
+
};
|
|
24925
|
+
export declare type ConfluenceContentPerformanceSpace = {
|
|
24926
|
+
__typename?: 'ConfluenceContentPerformanceSpace';
|
|
24927
|
+
id: Scalars['ID']['output'];
|
|
24928
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
24929
|
+
};
|
|
24930
|
+
export declare type ConfluenceContentPerformanceSummary = {
|
|
24931
|
+
__typename?: 'ConfluenceContentPerformanceSummary';
|
|
24932
|
+
distribution: ConfluencePerformanceDistribution;
|
|
24933
|
+
totalContent: Scalars['Int']['output'];
|
|
24934
|
+
};
|
|
24935
|
+
export declare type ConfluenceContentPerformanceUser = {
|
|
24936
|
+
__typename?: 'ConfluenceContentPerformanceUser';
|
|
24937
|
+
displayName: Scalars['String']['output'];
|
|
24938
|
+
id: Scalars['ID']['output'];
|
|
24939
|
+
profilePictureUrl?: Maybe<Scalars['String']['output']>;
|
|
24940
|
+
};
|
|
24703
24941
|
export declare type ConfluenceContentPermission = {
|
|
24704
24942
|
__typename?: 'ConfluenceContentPermission';
|
|
24705
24943
|
permissionType?: Maybe<ContentPermissionType>;
|
|
@@ -26227,6 +26465,11 @@ export declare type ConfluenceLikesSummary = {
|
|
|
26227
26465
|
count?: Maybe<Scalars['Int']['output']>;
|
|
26228
26466
|
likes?: Maybe<Array<Maybe<ConfluenceLike>>>;
|
|
26229
26467
|
};
|
|
26468
|
+
export declare enum ConfluenceLoadTimeRating {
|
|
26469
|
+
Fast = "FAST",
|
|
26470
|
+
Moderate = "MODERATE",
|
|
26471
|
+
Slow = "SLOW"
|
|
26472
|
+
}
|
|
26230
26473
|
export declare type ConfluenceLoginSettings = {
|
|
26231
26474
|
__typename?: 'ConfluenceLoginSettings';
|
|
26232
26475
|
enableElevatedSecurityCheck?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -26671,6 +26914,11 @@ export declare type ConfluenceNbmChainsForTransformationNode = {
|
|
|
26671
26914
|
isReadyForTransformation?: Maybe<Scalars['Boolean']['output']>;
|
|
26672
26915
|
suggestion?: Maybe<Scalars['String']['output']>;
|
|
26673
26916
|
};
|
|
26917
|
+
export declare type ConfluenceNbmConfigurableTransformer = {
|
|
26918
|
+
__typename?: 'ConfluenceNbmConfigurableTransformer';
|
|
26919
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
26920
|
+
name: Scalars['String']['output'];
|
|
26921
|
+
};
|
|
26674
26922
|
export declare type ConfluenceNbmExecuteTestTransformationInput = {
|
|
26675
26923
|
chain: Scalars['String']['input'];
|
|
26676
26924
|
scanId: Scalars['ID']['input'];
|
|
@@ -26988,6 +27236,10 @@ export declare type ConfluenceNbmTransformerConfig = {
|
|
|
26988
27236
|
__typename?: 'ConfluenceNbmTransformerConfig';
|
|
26989
27237
|
transformerNames: Array<Maybe<Scalars['String']['output']>>;
|
|
26990
27238
|
};
|
|
27239
|
+
export declare type ConfluenceNbmTransformers = {
|
|
27240
|
+
__typename?: 'ConfluenceNbmTransformers';
|
|
27241
|
+
transformers: Array<Maybe<ConfluenceNbmConfigurableTransformer>>;
|
|
27242
|
+
};
|
|
26991
27243
|
export declare type ConfluenceNbmUploadTransformerConfigInput = {
|
|
26992
27244
|
scanId: Scalars['ID']['input'];
|
|
26993
27245
|
transformerNames: Array<InputMaybe<Scalars['String']['input']>>;
|
|
@@ -27485,6 +27737,17 @@ export declare type ConfluencePendingAccessRequest = {
|
|
|
27485
27737
|
__typename?: 'ConfluencePendingAccessRequest';
|
|
27486
27738
|
isPendingAccessRequestExists?: Maybe<Scalars['Boolean']['output']>;
|
|
27487
27739
|
};
|
|
27740
|
+
export declare type ConfluencePerformanceBucket = {
|
|
27741
|
+
__typename?: 'ConfluencePerformanceBucket';
|
|
27742
|
+
count: Scalars['Int']['output'];
|
|
27743
|
+
definition: ConfluenceBucketDefinition;
|
|
27744
|
+
key: Scalars['String']['output'];
|
|
27745
|
+
percentage?: Maybe<Scalars['Float']['output']>;
|
|
27746
|
+
};
|
|
27747
|
+
export declare type ConfluencePerformanceDistribution = {
|
|
27748
|
+
__typename?: 'ConfluencePerformanceDistribution';
|
|
27749
|
+
buckets: Array<Maybe<ConfluencePerformanceBucket>>;
|
|
27750
|
+
};
|
|
27488
27751
|
export declare enum ConfluencePermission {
|
|
27489
27752
|
Edit = "EDIT",
|
|
27490
27753
|
Share = "SHARE",
|
|
@@ -27746,10 +28009,6 @@ export declare type ConfluencePromotePageTemplatePayload = Payload & {
|
|
|
27746
28009
|
errors?: Maybe<Array<MutationError>>;
|
|
27747
28010
|
success: Scalars['Boolean']['output'];
|
|
27748
28011
|
};
|
|
27749
|
-
export declare enum ConfluencePublicLinkAccessType {
|
|
27750
|
-
External = "EXTERNAL",
|
|
27751
|
-
InternalLicensed = "INTERNAL_LICENSED"
|
|
27752
|
-
}
|
|
27753
28012
|
export declare type ConfluencePublishBlogPostInput = {
|
|
27754
28013
|
id: Scalars['ID']['input'];
|
|
27755
28014
|
publishTitle?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -28396,6 +28655,40 @@ export declare type ConfluenceShareContentPayload = Payload & {
|
|
|
28396
28655
|
success: Scalars['Boolean']['output'];
|
|
28397
28656
|
triggerId?: Maybe<Scalars['String']['output']>;
|
|
28398
28657
|
};
|
|
28658
|
+
export declare enum ConfluenceShareableLinkAccessType {
|
|
28659
|
+
External = "EXTERNAL",
|
|
28660
|
+
InternalLicensed = "INTERNAL_LICENSED"
|
|
28661
|
+
}
|
|
28662
|
+
export declare type ConfluenceShareableLinkSiteConfig = {
|
|
28663
|
+
__typename?: 'ConfluenceShareableLinkSiteConfig';
|
|
28664
|
+
siteConfigs: Array<Maybe<ConfluenceShareableLinkSiteSetting>>;
|
|
28665
|
+
};
|
|
28666
|
+
export declare type ConfluenceShareableLinkSiteSetting = {
|
|
28667
|
+
__typename?: 'ConfluenceShareableLinkSiteSetting';
|
|
28668
|
+
accessType: ConfluenceShareableLinkAccessType;
|
|
28669
|
+
status: ConfluenceShareableLinkSiteStatus;
|
|
28670
|
+
};
|
|
28671
|
+
export declare enum ConfluenceShareableLinkSiteStatus {
|
|
28672
|
+
BlockedByOrg = "BLOCKED_BY_ORG",
|
|
28673
|
+
Off = "OFF",
|
|
28674
|
+
On = "ON"
|
|
28675
|
+
}
|
|
28676
|
+
export declare type ConfluenceShareableLinkSpaceConfig = {
|
|
28677
|
+
__typename?: 'ConfluenceShareableLinkSpaceConfig';
|
|
28678
|
+
spaceConfigs?: Maybe<Array<Maybe<ConfluenceShareableLinkSpaceSetting>>>;
|
|
28679
|
+
};
|
|
28680
|
+
export declare type ConfluenceShareableLinkSpaceSetting = {
|
|
28681
|
+
__typename?: 'ConfluenceShareableLinkSpaceSetting';
|
|
28682
|
+
accessType: ConfluenceShareableLinkAccessType;
|
|
28683
|
+
status: ConfluenceShareableLinkSpaceStatus;
|
|
28684
|
+
};
|
|
28685
|
+
export declare enum ConfluenceShareableLinkSpaceStatus {
|
|
28686
|
+
BlockedByContainerPolicy = "BLOCKED_BY_CONTAINER_POLICY",
|
|
28687
|
+
BlockedByOrg = "BLOCKED_BY_ORG",
|
|
28688
|
+
BlockedByProduct = "BLOCKED_BY_PRODUCT",
|
|
28689
|
+
Off = "OFF",
|
|
28690
|
+
On = "ON"
|
|
28691
|
+
}
|
|
28399
28692
|
export declare type ConfluenceSiteConfiguration = {
|
|
28400
28693
|
__typename?: 'ConfluenceSiteConfiguration';
|
|
28401
28694
|
attachmentSettings?: Maybe<ConfluenceAttachmentSettings>;
|
|
@@ -28450,11 +28743,56 @@ export declare enum ConfluenceSiteEmailAddressStatus {
|
|
|
28450
28743
|
Inactive = "INACTIVE",
|
|
28451
28744
|
SiteEmailAddressNotPresent = "SITE_EMAIL_ADDRESS_NOT_PRESENT"
|
|
28452
28745
|
}
|
|
28746
|
+
export declare type ConfluenceSlide = Node & {
|
|
28747
|
+
__typename?: 'ConfluenceSlide';
|
|
28748
|
+
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
28749
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
28750
|
+
commentCountSummary?: Maybe<ConfluenceCommentCountSummary>;
|
|
28751
|
+
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
28752
|
+
hasRestrictions: Scalars['Boolean']['output'];
|
|
28753
|
+
id: Scalars['ID']['output'];
|
|
28754
|
+
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
28755
|
+
links?: Maybe<ConfluenceSlideLinks>;
|
|
28756
|
+
owner?: Maybe<ConfluenceUserInfo>;
|
|
28757
|
+
slideId: Scalars['ID']['output'];
|
|
28758
|
+
space?: Maybe<ConfluenceSpace>;
|
|
28759
|
+
status?: Maybe<ConfluenceContentStatus>;
|
|
28760
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
28761
|
+
type?: Maybe<ConfluenceContentType>;
|
|
28762
|
+
viewer?: Maybe<ConfluenceContentViewerSummary>;
|
|
28763
|
+
};
|
|
28764
|
+
export declare type ConfluenceSlideCommentsArgs = {
|
|
28765
|
+
commentType?: InputMaybe<ConfluenceCommentType>;
|
|
28766
|
+
};
|
|
28767
|
+
export declare type ConfluenceSlideLinks = {
|
|
28768
|
+
__typename?: 'ConfluenceSlideLinks';
|
|
28769
|
+
base?: Maybe<Scalars['String']['output']>;
|
|
28770
|
+
webUi?: Maybe<Scalars['String']['output']>;
|
|
28771
|
+
};
|
|
28453
28772
|
export declare type ConfluenceSmartSpaceOverview = {
|
|
28454
28773
|
__typename?: 'ConfluenceSmartSpaceOverview';
|
|
28774
|
+
faq?: Maybe<ConfluenceSmartSpaceOverviewFaq>;
|
|
28455
28775
|
summary?: Maybe<ConfluenceSmartSpaceOverviewSummary>;
|
|
28456
28776
|
topLinks?: Maybe<ConfluenceSmartSpaceOverviewTopLinks>;
|
|
28457
28777
|
};
|
|
28778
|
+
export declare type ConfluenceSmartSpaceOverviewFaq = {
|
|
28779
|
+
__typename?: 'ConfluenceSmartSpaceOverviewFAQ';
|
|
28780
|
+
contentId?: Maybe<Scalars['ID']['output']>;
|
|
28781
|
+
entries: Array<ConfluenceSmartSpaceOverviewFaqEntry>;
|
|
28782
|
+
lastRefreshed?: Maybe<Scalars['DateTime']['output']>;
|
|
28783
|
+
};
|
|
28784
|
+
export declare type ConfluenceSmartSpaceOverviewFaqEntry = {
|
|
28785
|
+
__typename?: 'ConfluenceSmartSpaceOverviewFAQEntry';
|
|
28786
|
+
answer: Scalars['String']['output'];
|
|
28787
|
+
followUpQuestions: Array<Maybe<Scalars['String']['output']>>;
|
|
28788
|
+
isPinned: Scalars['Boolean']['output'];
|
|
28789
|
+
question: Scalars['String']['output'];
|
|
28790
|
+
sources: Array<ConfluenceSmartSpaceOverviewFaqSource>;
|
|
28791
|
+
};
|
|
28792
|
+
export declare type ConfluenceSmartSpaceOverviewFaqSource = {
|
|
28793
|
+
__typename?: 'ConfluenceSmartSpaceOverviewFAQSource';
|
|
28794
|
+
content?: Maybe<Content>;
|
|
28795
|
+
};
|
|
28458
28796
|
export declare type ConfluenceSmartSpaceOverviewSummary = {
|
|
28459
28797
|
__typename?: 'ConfluenceSmartSpaceOverviewSummary';
|
|
28460
28798
|
body?: Maybe<Scalars['String']['output']>;
|
|
@@ -28606,6 +28944,7 @@ export declare type ConfluenceSpacePermissionCombinationConnection = {
|
|
|
28606
28944
|
spacePermissionCombinationWithoutAssignedSpaceRoleCount?: Maybe<Scalars['Long']['output']>;
|
|
28607
28945
|
totalCount?: Maybe<Scalars['Long']['output']>;
|
|
28608
28946
|
totalOccurrences?: Maybe<Scalars['String']['output']>;
|
|
28947
|
+
totalRoleMatchCount?: Maybe<Scalars['Long']['output']>;
|
|
28609
28948
|
};
|
|
28610
28949
|
export declare type ConfluenceSpacePermissionCombinationEdge = {
|
|
28611
28950
|
__typename?: 'ConfluenceSpacePermissionCombinationEdge';
|
|
@@ -29510,10 +29849,29 @@ export declare type ConfluenceUpdateReviewerDecisionInput = {
|
|
|
29510
29849
|
decisionStatus: ConfluenceReviewerDecisionState;
|
|
29511
29850
|
reviewerId: Scalars['Long']['input'];
|
|
29512
29851
|
};
|
|
29513
|
-
export declare type
|
|
29514
|
-
accessType:
|
|
29852
|
+
export declare type ConfluenceUpdateShareableLinkInput = {
|
|
29853
|
+
accessType: ConfluenceShareableLinkAccessType;
|
|
29515
29854
|
contentId: Scalars['ID']['input'];
|
|
29516
29855
|
};
|
|
29856
|
+
export declare type ConfluenceUpdateShareableLinkSiteConfigInput = {
|
|
29857
|
+
accessType: ConfluenceShareableLinkAccessType;
|
|
29858
|
+
status: ConfluenceShareableLinkSiteStatus;
|
|
29859
|
+
};
|
|
29860
|
+
export declare type ConfluenceUpdateShareableLinkSiteConfigPayload = {
|
|
29861
|
+
__typename?: 'ConfluenceUpdateShareableLinkSiteConfigPayload';
|
|
29862
|
+
errors: Array<MutationError>;
|
|
29863
|
+
success: Scalars['Boolean']['output'];
|
|
29864
|
+
};
|
|
29865
|
+
export declare type ConfluenceUpdateShareableLinkSpaceConfigInput = {
|
|
29866
|
+
accessType: ConfluenceShareableLinkAccessType;
|
|
29867
|
+
spaceId: Scalars['ID']['input'];
|
|
29868
|
+
status: ConfluenceShareableLinkSpaceStatus;
|
|
29869
|
+
};
|
|
29870
|
+
export declare type ConfluenceUpdateShareableLinkSpaceConfigPayload = {
|
|
29871
|
+
__typename?: 'ConfluenceUpdateShareableLinkSpaceConfigPayload';
|
|
29872
|
+
errors?: Maybe<Array<MutationError>>;
|
|
29873
|
+
success: Scalars['Boolean']['output'];
|
|
29874
|
+
};
|
|
29517
29875
|
export declare type ConfluenceUpdateShareableLinksPayload = Payload & {
|
|
29518
29876
|
__typename?: 'ConfluenceUpdateShareableLinksPayload';
|
|
29519
29877
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -32572,6 +32930,20 @@ export declare type CplsAddWorkScopeAssociationsPayload = Payload & {
|
|
|
32572
32930
|
workDataIds?: Maybe<Array<CplsWorkDataIdEdge>>;
|
|
32573
32931
|
works?: Maybe<Array<CplsWorkEdge>>;
|
|
32574
32932
|
};
|
|
32933
|
+
export declare type CplsAtlasProject = {
|
|
32934
|
+
__typename?: 'CplsAtlasProject';
|
|
32935
|
+
atlasProjectId: Scalars['ID']['output'];
|
|
32936
|
+
};
|
|
32937
|
+
export declare type CplsAtlasProjectConnection = HasPageInfo & {
|
|
32938
|
+
__typename?: 'CplsAtlasProjectConnection';
|
|
32939
|
+
edges?: Maybe<Array<CplsAtlasProjectEdge>>;
|
|
32940
|
+
pageInfo: PageInfo;
|
|
32941
|
+
};
|
|
32942
|
+
export declare type CplsAtlasProjectEdge = {
|
|
32943
|
+
__typename?: 'CplsAtlasProjectEdge';
|
|
32944
|
+
cursor: Scalars['String']['output'];
|
|
32945
|
+
node?: Maybe<CplsAtlasProject>;
|
|
32946
|
+
};
|
|
32575
32947
|
export declare type CplsCapacityPlanningPeopleView = {
|
|
32576
32948
|
__typename?: 'CplsCapacityPlanningPeopleView';
|
|
32577
32949
|
contributor?: Maybe<CplsContributor>;
|
|
@@ -32782,9 +33154,17 @@ export declare type CplsDeleteContributorWorkAssociationInput = {
|
|
|
32782
33154
|
};
|
|
32783
33155
|
export declare type CplsDeleteContributorWorkAssociationPayload = Payload & {
|
|
32784
33156
|
__typename?: 'CplsDeleteContributorWorkAssociationPayload';
|
|
33157
|
+
contributorsByScope?: Maybe<Array<Maybe<CplsContributor>>>;
|
|
32785
33158
|
errors?: Maybe<Array<MutationError>>;
|
|
32786
33159
|
ids?: Maybe<Array<Scalars['ID']['output']>>;
|
|
32787
33160
|
success: Scalars['Boolean']['output'];
|
|
33161
|
+
worksByScope?: Maybe<Array<Maybe<CplsWork>>>;
|
|
33162
|
+
};
|
|
33163
|
+
export declare type CplsDeleteContributorWorkAssociationPayloadContributorsByScopeArgs = {
|
|
33164
|
+
scopeId: Scalars['ID']['input'];
|
|
33165
|
+
};
|
|
33166
|
+
export declare type CplsDeleteContributorWorkAssociationPayloadWorksByScopeArgs = {
|
|
33167
|
+
scopeId: Scalars['ID']['input'];
|
|
32788
33168
|
};
|
|
32789
33169
|
export declare type CplsDeleteWorkScopeAssociationsInput = {
|
|
32790
33170
|
cloudId: Scalars['ID']['input'];
|
|
@@ -32799,11 +33179,18 @@ export declare type CplsDeleteWorkScopeAssociationsPayload = Payload & {
|
|
|
32799
33179
|
};
|
|
32800
33180
|
export declare type CplsFilterConfiguration = {
|
|
32801
33181
|
__typename?: 'CplsFilterConfiguration';
|
|
33182
|
+
atlasProjects?: Maybe<CplsAtlasProjectConnection>;
|
|
32802
33183
|
contributorDataEntities?: Maybe<CplsContributorDataEntityConnection>;
|
|
32803
33184
|
customContributionTargets?: Maybe<CplsCustomContributionTargetConnection>;
|
|
32804
33185
|
jiraWorkItems?: Maybe<CplsJiraWorkItemConnection>;
|
|
32805
33186
|
workTypes?: Maybe<Array<CplsWorkType>>;
|
|
32806
33187
|
};
|
|
33188
|
+
export declare type CplsFilterConfigurationAtlasProjectsArgs = {
|
|
33189
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33190
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
33191
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33192
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
33193
|
+
};
|
|
32807
33194
|
export declare type CplsFilterConfigurationContributorDataEntitiesArgs = {
|
|
32808
33195
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32809
33196
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -35090,6 +35477,10 @@ export declare type CustomerServiceLiveChatAgent = {
|
|
|
35090
35477
|
liveChatActivity?: Maybe<Scalars['String']['output']>;
|
|
35091
35478
|
};
|
|
35092
35479
|
export declare type CustomerServiceLiveChatAgentQueryResult = CustomerServiceLiveChatAgent | QueryError;
|
|
35480
|
+
export declare type CustomerServiceLiveChatSpacesByActivityInput = {
|
|
35481
|
+
activity: Scalars['String']['input'];
|
|
35482
|
+
ids: Array<Scalars['ID']['input']>;
|
|
35483
|
+
};
|
|
35093
35484
|
export declare type CustomerServiceMutationApi = {
|
|
35094
35485
|
__typename?: 'CustomerServiceMutationApi';
|
|
35095
35486
|
acceptEscalation?: Maybe<CustomerServiceAcceptEscalationPayload>;
|
|
@@ -35120,6 +35511,7 @@ export declare type CustomerServiceMutationApi = {
|
|
|
35120
35511
|
updateIndividualAttributeConfig?: Maybe<CustomerServiceAttributeConfigMetadataUpdatePayload>;
|
|
35121
35512
|
updateIndividualAttributeMultiValueByName?: Maybe<CustomerServiceIndividualUpdateAttributeValuePayload>;
|
|
35122
35513
|
updateIndividualAttributeValueByName?: Maybe<CustomerServiceIndividualUpdateAttributeValuePayload>;
|
|
35514
|
+
updateLiveChatAgentActivities?: Maybe<CustomerServiceUpdateLiveChatAgentActivitiesPayload>;
|
|
35123
35515
|
updateNote?: Maybe<CustomerServiceNoteUpdatePayload>;
|
|
35124
35516
|
updateOrganization?: Maybe<CustomerServiceOrganizationUpdatePayload>;
|
|
35125
35517
|
updateOrganizationAttribute?: Maybe<CustomerServiceAttributeUpdatePayload>;
|
|
@@ -35223,6 +35615,9 @@ export declare type CustomerServiceMutationApiUpdateIndividualAttributeMultiValu
|
|
|
35223
35615
|
export declare type CustomerServiceMutationApiUpdateIndividualAttributeValueByNameArgs = {
|
|
35224
35616
|
input: CustomerServiceIndividualUpdateAttributeByNameInput;
|
|
35225
35617
|
};
|
|
35618
|
+
export declare type CustomerServiceMutationApiUpdateLiveChatAgentActivitiesArgs = {
|
|
35619
|
+
input: CustomerServiceUpdateLiveChatAgentActivitiesInput;
|
|
35620
|
+
};
|
|
35226
35621
|
export declare type CustomerServiceMutationApiUpdateNoteArgs = {
|
|
35227
35622
|
input?: InputMaybe<CustomerServiceNoteUpdateInput>;
|
|
35228
35623
|
};
|
|
@@ -35582,6 +35977,7 @@ export declare type CustomerServiceRequestFilterInput = {
|
|
|
35582
35977
|
reportedBy?: InputMaybe<CustomerServiceReportedByFilter>;
|
|
35583
35978
|
searchText?: InputMaybe<Scalars['String']['input']>;
|
|
35584
35979
|
status?: InputMaybe<CustomerServiceStatusKey>;
|
|
35980
|
+
statusFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
35585
35981
|
};
|
|
35586
35982
|
export declare type CustomerServiceRequestFormDataConnection = {
|
|
35587
35983
|
__typename?: 'CustomerServiceRequestFormDataConnection';
|
|
@@ -35796,6 +36192,17 @@ export declare type CustomerServiceUpdateCustomDetailValuePayload = Payload & {
|
|
|
35796
36192
|
errors?: Maybe<Array<MutationError>>;
|
|
35797
36193
|
success: Scalars['Boolean']['output'];
|
|
35798
36194
|
};
|
|
36195
|
+
export declare type CustomerServiceUpdateLiveChatAgentActivitiesInput = {
|
|
36196
|
+
id: Scalars['ID']['input'];
|
|
36197
|
+
liveChatActivity: Scalars['String']['input'];
|
|
36198
|
+
liveChatSpacesByActivity: Array<CustomerServiceLiveChatSpacesByActivityInput>;
|
|
36199
|
+
};
|
|
36200
|
+
export declare type CustomerServiceUpdateLiveChatAgentActivitiesPayload = Payload & {
|
|
36201
|
+
__typename?: 'CustomerServiceUpdateLiveChatAgentActivitiesPayload';
|
|
36202
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36203
|
+
success: Scalars['Boolean']['output'];
|
|
36204
|
+
successfullyUpdatedLiveChatAgent?: Maybe<CustomerServiceLiveChatAgent>;
|
|
36205
|
+
};
|
|
35799
36206
|
export declare type CustomerServiceUpdateRequestParticipantInput = {
|
|
35800
36207
|
addedParticipants: Array<Scalars['String']['input']>;
|
|
35801
36208
|
deletedParticipants: Array<Scalars['ID']['input']>;
|
|
@@ -39223,6 +39630,31 @@ export declare enum DistributionStatus {
|
|
|
39223
39630
|
Development = "DEVELOPMENT",
|
|
39224
39631
|
Public = "PUBLIC"
|
|
39225
39632
|
}
|
|
39633
|
+
export declare type DlpClassificationJobResponse = {
|
|
39634
|
+
__typename?: 'DlpClassificationJobResponse';
|
|
39635
|
+
taskId?: Maybe<Scalars['String']['output']>;
|
|
39636
|
+
};
|
|
39637
|
+
export declare type DlpClassificationLevelAutoUpdated = {
|
|
39638
|
+
__typename?: 'DlpClassificationLevelAutoUpdated';
|
|
39639
|
+
classificationAri: Scalars['String']['output'];
|
|
39640
|
+
updatedByRules: Scalars['Int']['output'];
|
|
39641
|
+
};
|
|
39642
|
+
export declare type DlpClassificationLevelChange = {
|
|
39643
|
+
__typename?: 'DlpClassificationLevelChange';
|
|
39644
|
+
classificationAri: Scalars['String']['output'];
|
|
39645
|
+
numObjectsChange: Scalars['Int']['output'];
|
|
39646
|
+
};
|
|
39647
|
+
export declare type DlpClassificationLevelUpdateSummary = {
|
|
39648
|
+
__typename?: 'DlpClassificationLevelUpdateSummary';
|
|
39649
|
+
existingClassificationAri: Scalars['String']['output'];
|
|
39650
|
+
numObjects: Scalars['Int']['output'];
|
|
39651
|
+
updatedClassificationAri: Scalars['String']['output'];
|
|
39652
|
+
};
|
|
39653
|
+
export declare type DlpClassificationLevelsAutoUpdatedResponse = {
|
|
39654
|
+
__typename?: 'DlpClassificationLevelsAutoUpdatedResponse';
|
|
39655
|
+
levels?: Maybe<Array<Maybe<DlpClassificationLevelAutoUpdated>>>;
|
|
39656
|
+
orgDefault?: Maybe<DlpOrgDefaultAutoUpdated>;
|
|
39657
|
+
};
|
|
39226
39658
|
export declare type DlpDetectionContentSummary = {
|
|
39227
39659
|
__typename?: 'DlpDetectionContentSummary';
|
|
39228
39660
|
containerCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -39262,6 +39694,28 @@ export declare enum DlpMappingStatus {
|
|
|
39262
39694
|
Draft = "DRAFT",
|
|
39263
39695
|
Published = "PUBLISHED"
|
|
39264
39696
|
}
|
|
39697
|
+
export declare type DlpOrgDefaultAutoUpdated = {
|
|
39698
|
+
__typename?: 'DlpOrgDefaultAutoUpdated';
|
|
39699
|
+
classificationAri: Scalars['String']['output'];
|
|
39700
|
+
updatedToOrgDefault: Scalars['Int']['output'];
|
|
39701
|
+
};
|
|
39702
|
+
export declare enum DlpPreviewResultsStatus {
|
|
39703
|
+
Cancelled = "CANCELLED",
|
|
39704
|
+
Completed = "COMPLETED",
|
|
39705
|
+
Failed = "FAILED",
|
|
39706
|
+
Pending = "PENDING",
|
|
39707
|
+
Running = "RUNNING"
|
|
39708
|
+
}
|
|
39709
|
+
export declare type DlpPreviewRulesImpactResponse = {
|
|
39710
|
+
__typename?: 'DlpPreviewRulesImpactResponse';
|
|
39711
|
+
changeInClassificationLevel?: Maybe<Array<Maybe<DlpClassificationLevelChange>>>;
|
|
39712
|
+
classificationLevelUpdates?: Maybe<Array<Maybe<DlpClassificationLevelUpdateSummary>>>;
|
|
39713
|
+
classificationLevelsAutoUpdated?: Maybe<DlpClassificationLevelsAutoUpdatedResponse>;
|
|
39714
|
+
status: DlpPreviewResultsStatus;
|
|
39715
|
+
taskId: Scalars['String']['output'];
|
|
39716
|
+
totalObjectsUpdatedByRules?: Maybe<Scalars['Int']['output']>;
|
|
39717
|
+
totalObjectsWithDetections?: Maybe<Scalars['Int']['output']>;
|
|
39718
|
+
};
|
|
39265
39719
|
export declare type DlpScope = {
|
|
39266
39720
|
__typename?: 'DlpScope';
|
|
39267
39721
|
scopeType?: Maybe<DlpScopeType>;
|
|
@@ -39274,6 +39728,10 @@ export declare type DlpScopeInput = {
|
|
|
39274
39728
|
export declare enum DlpScopeType {
|
|
39275
39729
|
Workspace = "WORKSPACE"
|
|
39276
39730
|
}
|
|
39731
|
+
export declare type DlpStartPreviewResponse = {
|
|
39732
|
+
__typename?: 'DlpStartPreviewResponse';
|
|
39733
|
+
taskId: Scalars['String']['output'];
|
|
39734
|
+
};
|
|
39277
39735
|
export declare type DocumentBody = {
|
|
39278
39736
|
__typename?: 'DocumentBody';
|
|
39279
39737
|
representation: DocumentRepresentation;
|
|
@@ -39941,6 +40399,7 @@ export declare type EnabledContentTypes = {
|
|
|
39941
40399
|
isEmbedsEnabled: Scalars['Boolean']['output'];
|
|
39942
40400
|
isFoldersEnabled: Scalars['Boolean']['output'];
|
|
39943
40401
|
isLivePagesEnabled: Scalars['Boolean']['output'];
|
|
40402
|
+
isSlidesEnabled: Scalars['Boolean']['output'];
|
|
39944
40403
|
isWhiteboardsEnabled: Scalars['Boolean']['output'];
|
|
39945
40404
|
};
|
|
39946
40405
|
export declare type EnabledContentTypesInput = {
|
|
@@ -39949,6 +40408,7 @@ export declare type EnabledContentTypesInput = {
|
|
|
39949
40408
|
isEmbedsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39950
40409
|
isFoldersEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39951
40410
|
isLivePagesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40411
|
+
isSlidesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39952
40412
|
isWhiteboardsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39953
40413
|
};
|
|
39954
40414
|
export declare type EnabledFeatures = {
|
|
@@ -40470,6 +40930,7 @@ export declare type ExternalComment = Node & {
|
|
|
40470
40930
|
provider?: Maybe<ExternalProvider>;
|
|
40471
40931
|
reactions?: Maybe<Array<Maybe<ExternalReactions>>>;
|
|
40472
40932
|
reactionsV2?: Maybe<Array<Maybe<ExternalReaction>>>;
|
|
40933
|
+
selectedText?: Maybe<Scalars['String']['output']>;
|
|
40473
40934
|
text?: Maybe<Scalars['String']['output']>;
|
|
40474
40935
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
40475
40936
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
@@ -40899,6 +41360,7 @@ export declare type ExternalDocument = Node & {
|
|
|
40899
41360
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
40900
41361
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
40901
41362
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
41363
|
+
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
40902
41364
|
container?: Maybe<ExternalEntity>;
|
|
40903
41365
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
40904
41366
|
content?: Maybe<ExternalLargeContent>;
|
|
@@ -42901,6 +43363,7 @@ export declare type ForgeMetricsLabelGroup = {
|
|
|
42901
43363
|
export declare enum ForgeMetricsLabels {
|
|
42902
43364
|
ForgeApiRequestCount = "FORGE_API_REQUEST_COUNT",
|
|
42903
43365
|
ForgeApiRequestLatency = "FORGE_API_REQUEST_LATENCY",
|
|
43366
|
+
ForgeBackendCustomMetricsCount = "FORGE_BACKEND_CUSTOM_METRICS_COUNT",
|
|
42904
43367
|
ForgeBackendInvocationCount = "FORGE_BACKEND_INVOCATION_COUNT",
|
|
42905
43368
|
ForgeBackendInvocationErrors = "FORGE_BACKEND_INVOCATION_ERRORS",
|
|
42906
43369
|
ForgeBackendInvocationLatency = "FORGE_BACKEND_INVOCATION_LATENCY"
|
|
@@ -43261,6 +43724,29 @@ export declare type GdprDetails = {
|
|
|
43261
43724
|
dataProcessor?: Maybe<DataProcessor>;
|
|
43262
43725
|
dataTransfer?: Maybe<DataTransfer>;
|
|
43263
43726
|
};
|
|
43727
|
+
export declare type GeneratePlaybookInput = {
|
|
43728
|
+
cloudId: Scalars['ID']['input'];
|
|
43729
|
+
documentUrl?: InputMaybe<Scalars['String']['input']>;
|
|
43730
|
+
singleInstrumentationID: Scalars['String']['input'];
|
|
43731
|
+
userPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
43732
|
+
};
|
|
43733
|
+
export declare type GeneratePlaybookPayload = QueryPayload & {
|
|
43734
|
+
__typename?: 'GeneratePlaybookPayload';
|
|
43735
|
+
errors?: Maybe<Array<QueryError>>;
|
|
43736
|
+
playbook?: Maybe<GeneratedPlaybook>;
|
|
43737
|
+
success: Scalars['Boolean']['output'];
|
|
43738
|
+
};
|
|
43739
|
+
export declare type GeneratedPlaybook = {
|
|
43740
|
+
__typename?: 'GeneratedPlaybook';
|
|
43741
|
+
name: Scalars['String']['output'];
|
|
43742
|
+
steps: Array<GeneratedStep>;
|
|
43743
|
+
};
|
|
43744
|
+
export declare type GeneratedStep = {
|
|
43745
|
+
__typename?: 'GeneratedStep';
|
|
43746
|
+
description?: Maybe<Scalars['JSON']['output']>;
|
|
43747
|
+
name: Scalars['String']['output'];
|
|
43748
|
+
type: JiraPlaybookStepType;
|
|
43749
|
+
};
|
|
43264
43750
|
export declare type GenericMutationErrorExtension = MutationErrorExtension & {
|
|
43265
43751
|
__typename?: 'GenericMutationErrorExtension';
|
|
43266
43752
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -48255,6 +48741,7 @@ export declare type GraphStore = {
|
|
|
48255
48741
|
userCanViewConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseConnection>;
|
|
48256
48742
|
userCollaboratedOnDocument?: Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentConnection>;
|
|
48257
48743
|
userCollaboratedOnDocumentInverse?: Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentInverseConnection>;
|
|
48744
|
+
userCommentedOnThirdPartyDocumentInverse?: Maybe<GraphStoreSimplifiedUserCommentedOnThirdPartyDocumentInverseConnection>;
|
|
48258
48745
|
userContributedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostConnection>;
|
|
48259
48746
|
userContributedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseConnection>;
|
|
48260
48747
|
userContributedConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserContributedConfluenceDatabaseConnection>;
|
|
@@ -48415,6 +48902,7 @@ export declare type GraphStore = {
|
|
|
48415
48902
|
userReportsIssueInverse?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseConnection>;
|
|
48416
48903
|
userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
|
|
48417
48904
|
userReviewsPrInverse?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseConnection>;
|
|
48905
|
+
userSharedThirdPartyDocumentInverse?: Maybe<GraphStoreSimplifiedUserSharedThirdPartyDocumentInverseConnection>;
|
|
48418
48906
|
userSnapshottedConfluencePage?: Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageConnection>;
|
|
48419
48907
|
userSnapshottedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageInverseConnection>;
|
|
48420
48908
|
userTaggedInComment?: Maybe<GraphStoreSimplifiedUserTaggedInCommentConnection>;
|
|
@@ -54170,6 +54658,14 @@ export declare type GraphStoreUserCollaboratedOnDocumentInverseArgs = {
|
|
|
54170
54658
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
54171
54659
|
sort?: InputMaybe<GraphStoreUserCollaboratedOnDocumentSortInput>;
|
|
54172
54660
|
};
|
|
54661
|
+
export declare type GraphStoreUserCommentedOnThirdPartyDocumentInverseArgs = {
|
|
54662
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54663
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54664
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54665
|
+
id: Scalars['ID']['input'];
|
|
54666
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
54667
|
+
sort?: InputMaybe<GraphStoreUserCommentedOnThirdPartyDocumentSortInput>;
|
|
54668
|
+
};
|
|
54173
54669
|
export declare type GraphStoreUserContributedConfluenceBlogpostArgs = {
|
|
54174
54670
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
54175
54671
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -55454,6 +55950,14 @@ export declare type GraphStoreUserReviewsPrInverseArgs = {
|
|
|
55454
55950
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55455
55951
|
sort?: InputMaybe<GraphStoreUserReviewsPrSortInput>;
|
|
55456
55952
|
};
|
|
55953
|
+
export declare type GraphStoreUserSharedThirdPartyDocumentInverseArgs = {
|
|
55954
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55955
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55956
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55957
|
+
id: Scalars['ID']['input'];
|
|
55958
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55959
|
+
sort?: InputMaybe<GraphStoreUserSharedThirdPartyDocumentSortInput>;
|
|
55960
|
+
};
|
|
55457
55961
|
export declare type GraphStoreUserSnapshottedConfluencePageArgs = {
|
|
55458
55962
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
55459
55963
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -57034,7 +57538,7 @@ export declare type GraphStoreBatchContentReferencedEntityEndNode = {
|
|
|
57034
57538
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
57035
57539
|
id: Scalars['ID']['output'];
|
|
57036
57540
|
};
|
|
57037
|
-
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;
|
|
57541
|
+
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;
|
|
57038
57542
|
export declare type GraphStoreBatchContentReferencedEntityInnerConnection = {
|
|
57039
57543
|
__typename?: 'GraphStoreBatchContentReferencedEntityInnerConnection';
|
|
57040
57544
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityInnerEdge>>;
|
|
@@ -57059,7 +57563,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
57059
57563
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
57060
57564
|
id: Scalars['ID']['output'];
|
|
57061
57565
|
};
|
|
57062
|
-
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;
|
|
57566
|
+
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;
|
|
57063
57567
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
57064
57568
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
57065
57569
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -58981,7 +59485,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
58981
59485
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
58982
59486
|
id: Scalars['ID']['output'];
|
|
58983
59487
|
};
|
|
58984
|
-
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;
|
|
59488
|
+
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;
|
|
58985
59489
|
export declare type GraphStoreCypherQueryStringListObject = {
|
|
58986
59490
|
__typename?: 'GraphStoreCypherQueryStringListObject';
|
|
58987
59491
|
values: Array<Scalars['String']['output']>;
|
|
@@ -59003,13 +59507,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
59003
59507
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
59004
59508
|
id: Scalars['ID']['output'];
|
|
59005
59509
|
};
|
|
59006
|
-
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;
|
|
59510
|
+
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;
|
|
59007
59511
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
59008
59512
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
59009
59513
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
59010
59514
|
id: Scalars['ID']['output'];
|
|
59011
59515
|
};
|
|
59012
|
-
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;
|
|
59516
|
+
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;
|
|
59013
59517
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
59014
59518
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
59015
59519
|
value: Scalars['Boolean']['output'];
|
|
@@ -59154,7 +59658,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
59154
59658
|
V2 = "V2",
|
|
59155
59659
|
V3 = "V3"
|
|
59156
59660
|
}
|
|
59157
|
-
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;
|
|
59661
|
+
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;
|
|
59158
59662
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
59159
59663
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
59160
59664
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -59991,7 +60495,7 @@ export declare type GraphStoreFullContentReferencedEntityEndNode = {
|
|
|
59991
60495
|
data?: Maybe<GraphStoreFullContentReferencedEntityEndUnion>;
|
|
59992
60496
|
id: Scalars['ID']['output'];
|
|
59993
60497
|
};
|
|
59994
|
-
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;
|
|
60498
|
+
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;
|
|
59995
60499
|
export declare type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
59996
60500
|
__typename?: 'GraphStoreFullContentReferencedEntityNode';
|
|
59997
60501
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -60005,7 +60509,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
60005
60509
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
60006
60510
|
id: Scalars['ID']['output'];
|
|
60007
60511
|
};
|
|
60008
|
-
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;
|
|
60512
|
+
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;
|
|
60009
60513
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
60010
60514
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
60011
60515
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -66625,8 +67129,8 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
66625
67129
|
lastUpdated: Scalars['DateTime']['output'];
|
|
66626
67130
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
66627
67131
|
};
|
|
66628
|
-
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;
|
|
66629
|
-
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;
|
|
67132
|
+
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;
|
|
67133
|
+
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;
|
|
66630
67134
|
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
66631
67135
|
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
66632
67136
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConversationHasMessageEdge>>>;
|
|
@@ -72109,6 +72613,20 @@ export declare type GraphStoreSimplifiedUserCollaboratedOnDocumentInverseEdge =
|
|
|
72109
72613
|
};
|
|
72110
72614
|
export declare type GraphStoreSimplifiedUserCollaboratedOnDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
72111
72615
|
export declare type GraphStoreSimplifiedUserCollaboratedOnDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
72616
|
+
export declare type GraphStoreSimplifiedUserCommentedOnThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
72617
|
+
__typename?: 'GraphStoreSimplifiedUserCommentedOnThirdPartyDocumentInverseConnection';
|
|
72618
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCommentedOnThirdPartyDocumentInverseEdge>>>;
|
|
72619
|
+
pageInfo: PageInfo;
|
|
72620
|
+
};
|
|
72621
|
+
export declare type GraphStoreSimplifiedUserCommentedOnThirdPartyDocumentInverseEdge = {
|
|
72622
|
+
__typename?: 'GraphStoreSimplifiedUserCommentedOnThirdPartyDocumentInverseEdge';
|
|
72623
|
+
createdAt: Scalars['DateTime']['output'];
|
|
72624
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
72625
|
+
id: Scalars['ID']['output'];
|
|
72626
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
72627
|
+
node?: Maybe<GraphStoreSimplifiedUserCommentedOnThirdPartyDocumentInverseUnion>;
|
|
72628
|
+
};
|
|
72629
|
+
export declare type GraphStoreSimplifiedUserCommentedOnThirdPartyDocumentInverseUnion = ThirdPartyUser;
|
|
72112
72630
|
export declare type GraphStoreSimplifiedUserContributedConfluenceBlogpostConnection = HasPageInfo & {
|
|
72113
72631
|
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceBlogpostConnection';
|
|
72114
72632
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostEdge>>>;
|
|
@@ -74353,6 +74871,20 @@ export declare type GraphStoreSimplifiedUserReviewsPrInverseEdge = {
|
|
|
74353
74871
|
};
|
|
74354
74872
|
export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
74355
74873
|
export declare type GraphStoreSimplifiedUserReviewsPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
74874
|
+
export declare type GraphStoreSimplifiedUserSharedThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
74875
|
+
__typename?: 'GraphStoreSimplifiedUserSharedThirdPartyDocumentInverseConnection';
|
|
74876
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserSharedThirdPartyDocumentInverseEdge>>>;
|
|
74877
|
+
pageInfo: PageInfo;
|
|
74878
|
+
};
|
|
74879
|
+
export declare type GraphStoreSimplifiedUserSharedThirdPartyDocumentInverseEdge = {
|
|
74880
|
+
__typename?: 'GraphStoreSimplifiedUserSharedThirdPartyDocumentInverseEdge';
|
|
74881
|
+
createdAt: Scalars['DateTime']['output'];
|
|
74882
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
74883
|
+
id: Scalars['ID']['output'];
|
|
74884
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
74885
|
+
node?: Maybe<GraphStoreSimplifiedUserSharedThirdPartyDocumentInverseUnion>;
|
|
74886
|
+
};
|
|
74887
|
+
export declare type GraphStoreSimplifiedUserSharedThirdPartyDocumentInverseUnion = ThirdPartyUser;
|
|
74356
74888
|
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageConnection = HasPageInfo & {
|
|
74357
74889
|
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageConnection';
|
|
74358
74890
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageEdge>>>;
|
|
@@ -76322,6 +76854,9 @@ export declare type GraphStoreUserCanViewConfluenceSpaceSortInput = {
|
|
|
76322
76854
|
export declare type GraphStoreUserCollaboratedOnDocumentSortInput = {
|
|
76323
76855
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76324
76856
|
};
|
|
76857
|
+
export declare type GraphStoreUserCommentedOnThirdPartyDocumentSortInput = {
|
|
76858
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76859
|
+
};
|
|
76325
76860
|
export declare type GraphStoreUserContributedConfluenceBlogpostSortInput = {
|
|
76326
76861
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76327
76862
|
};
|
|
@@ -76625,6 +77160,9 @@ export declare type GraphStoreUserReportsIssueSortInput = {
|
|
|
76625
77160
|
export declare type GraphStoreUserReviewsPrSortInput = {
|
|
76626
77161
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76627
77162
|
};
|
|
77163
|
+
export declare type GraphStoreUserSharedThirdPartyDocumentSortInput = {
|
|
77164
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
77165
|
+
};
|
|
76628
77166
|
export declare type GraphStoreUserSnapshottedConfluencePageSortInput = {
|
|
76629
77167
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76630
77168
|
};
|
|
@@ -77138,6 +77676,7 @@ export declare type GraphStoreV2 = {
|
|
|
77138
77676
|
externalUserAttendedExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedExternalUserAttendedExternalCalendarEventInverseConnection>;
|
|
77139
77677
|
externalUserCollaboratedOnExternalDocument?: Maybe<GraphStoreV2SimplifiedExternalUserCollaboratedOnExternalDocumentConnection>;
|
|
77140
77678
|
externalUserCollaboratedOnExternalDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCollaboratedOnExternalDocumentInverseConnection>;
|
|
77679
|
+
externalUserCommentedOnThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCommentedOnThirdPartyDocumentInverseConnection>;
|
|
77141
77680
|
externalUserCreatedExternalBranch?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalBranchConnection>;
|
|
77142
77681
|
externalUserCreatedExternalBranchInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalBranchInverseConnection>;
|
|
77143
77682
|
externalUserCreatedExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventConnection>;
|
|
@@ -77224,6 +77763,7 @@ export declare type GraphStoreV2 = {
|
|
|
77224
77763
|
externalUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestStatusInverseConnection>;
|
|
77225
77764
|
externalUserReviewedExternalPullRequest?: Maybe<GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestConnection>;
|
|
77226
77765
|
externalUserReviewedExternalPullRequestInverse?: Maybe<GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestInverseConnection>;
|
|
77766
|
+
externalUserSharedThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalUserSharedThirdPartyDocumentInverseConnection>;
|
|
77227
77767
|
externalUserUpdatedExternalCustomerContact?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactConnection>;
|
|
77228
77768
|
externalUserUpdatedExternalCustomerContactInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactInverseConnection>;
|
|
77229
77769
|
externalUserUpdatedExternalCustomerOrg?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerOrgConnection>;
|
|
@@ -80194,6 +80734,13 @@ export declare type GraphStoreV2ExternalUserCollaboratedOnExternalDocumentInvers
|
|
|
80194
80734
|
id: Scalars['ID']['input'];
|
|
80195
80735
|
sort?: InputMaybe<GraphStoreV2ExternalUserCollaboratedOnExternalDocumentSortInput>;
|
|
80196
80736
|
};
|
|
80737
|
+
export declare type GraphStoreV2ExternalUserCommentedOnThirdPartyDocumentInverseArgs = {
|
|
80738
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
80739
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
80740
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80741
|
+
id: Scalars['ID']['input'];
|
|
80742
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCommentedOnThirdPartyDocumentSortInput>;
|
|
80743
|
+
};
|
|
80197
80744
|
export declare type GraphStoreV2ExternalUserCreatedExternalBranchArgs = {
|
|
80198
80745
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
80199
80746
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -80798,6 +81345,13 @@ export declare type GraphStoreV2ExternalUserReviewedExternalPullRequestInverseAr
|
|
|
80798
81345
|
id: Scalars['ID']['input'];
|
|
80799
81346
|
sort?: InputMaybe<GraphStoreV2ExternalUserReviewedExternalPullRequestSortInput>;
|
|
80800
81347
|
};
|
|
81348
|
+
export declare type GraphStoreV2ExternalUserSharedThirdPartyDocumentInverseArgs = {
|
|
81349
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81350
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81351
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81352
|
+
id: Scalars['ID']['input'];
|
|
81353
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserSharedThirdPartyDocumentSortInput>;
|
|
81354
|
+
};
|
|
80801
81355
|
export declare type GraphStoreV2ExternalUserUpdatedExternalCustomerContactArgs = {
|
|
80802
81356
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
80803
81357
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -83611,7 +84165,7 @@ export declare type GraphStoreV2CypherQueryV2AriNode = {
|
|
|
83611
84165
|
data?: Maybe<GraphStoreV2CypherQueryV2AriNodeUnion>;
|
|
83612
84166
|
id: Scalars['ID']['output'];
|
|
83613
84167
|
};
|
|
83614
|
-
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;
|
|
84168
|
+
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;
|
|
83615
84169
|
export declare type GraphStoreV2CypherQueryV2BoolListObject = {
|
|
83616
84170
|
__typename?: 'GraphStoreV2CypherQueryV2BoolListObject';
|
|
83617
84171
|
values: Array<Scalars['Boolean']['output']>;
|
|
@@ -84228,6 +84782,9 @@ export declare type GraphStoreV2ExternalUserAttendedExternalCalendarEventSortInp
|
|
|
84228
84782
|
export declare type GraphStoreV2ExternalUserCollaboratedOnExternalDocumentSortInput = {
|
|
84229
84783
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84230
84784
|
};
|
|
84785
|
+
export declare type GraphStoreV2ExternalUserCommentedOnThirdPartyDocumentSortInput = {
|
|
84786
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84787
|
+
};
|
|
84231
84788
|
export declare type GraphStoreV2ExternalUserCreatedExternalBranchSortInput = {
|
|
84232
84789
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84233
84790
|
};
|
|
@@ -84374,6 +84931,9 @@ export declare type GraphStoreV2ExternalUserOwnsExternalTestStatusSortInput = {
|
|
|
84374
84931
|
export declare type GraphStoreV2ExternalUserReviewedExternalPullRequestSortInput = {
|
|
84375
84932
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84376
84933
|
};
|
|
84934
|
+
export declare type GraphStoreV2ExternalUserSharedThirdPartyDocumentSortInput = {
|
|
84935
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84936
|
+
};
|
|
84377
84937
|
export declare type GraphStoreV2ExternalUserUpdatedExternalCustomerContactSortInput = {
|
|
84378
84938
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84379
84939
|
};
|
|
@@ -90006,8 +90566,8 @@ export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseEdge =
|
|
|
90006
90566
|
lastUpdated: Scalars['DateTime']['output'];
|
|
90007
90567
|
node?: Maybe<GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion>;
|
|
90008
90568
|
};
|
|
90009
|
-
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;
|
|
90010
|
-
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;
|
|
90569
|
+
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;
|
|
90570
|
+
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;
|
|
90011
90571
|
export declare type GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemConnection = HasPageInfo & {
|
|
90012
90572
|
__typename?: 'GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemConnection';
|
|
90013
90573
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemEdge>>>;
|
|
@@ -91460,6 +92020,20 @@ export declare type GraphStoreV2SimplifiedExternalUserCollaboratedOnExternalDocu
|
|
|
91460
92020
|
};
|
|
91461
92021
|
export declare type GraphStoreV2SimplifiedExternalUserCollaboratedOnExternalDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
91462
92022
|
export declare type GraphStoreV2SimplifiedExternalUserCollaboratedOnExternalDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
92023
|
+
export declare type GraphStoreV2SimplifiedExternalUserCommentedOnThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
92024
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCommentedOnThirdPartyDocumentInverseConnection';
|
|
92025
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCommentedOnThirdPartyDocumentInverseEdge>>>;
|
|
92026
|
+
pageInfo: PageInfo;
|
|
92027
|
+
};
|
|
92028
|
+
export declare type GraphStoreV2SimplifiedExternalUserCommentedOnThirdPartyDocumentInverseEdge = {
|
|
92029
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCommentedOnThirdPartyDocumentInverseEdge';
|
|
92030
|
+
createdAt: Scalars['DateTime']['output'];
|
|
92031
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
92032
|
+
id: Scalars['ID']['output'];
|
|
92033
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
92034
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserCommentedOnThirdPartyDocumentInverseUnion>;
|
|
92035
|
+
};
|
|
92036
|
+
export declare type GraphStoreV2SimplifiedExternalUserCommentedOnThirdPartyDocumentInverseUnion = ThirdPartyUser;
|
|
91463
92037
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalBranchConnection = HasPageInfo & {
|
|
91464
92038
|
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalBranchConnection';
|
|
91465
92039
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalBranchEdge>>>;
|
|
@@ -92668,6 +93242,20 @@ export declare type GraphStoreV2SimplifiedExternalUserReviewedExternalPullReques
|
|
|
92668
93242
|
};
|
|
92669
93243
|
export declare type GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
92670
93244
|
export declare type GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
93245
|
+
export declare type GraphStoreV2SimplifiedExternalUserSharedThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
93246
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserSharedThirdPartyDocumentInverseConnection';
|
|
93247
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserSharedThirdPartyDocumentInverseEdge>>>;
|
|
93248
|
+
pageInfo: PageInfo;
|
|
93249
|
+
};
|
|
93250
|
+
export declare type GraphStoreV2SimplifiedExternalUserSharedThirdPartyDocumentInverseEdge = {
|
|
93251
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserSharedThirdPartyDocumentInverseEdge';
|
|
93252
|
+
createdAt: Scalars['DateTime']['output'];
|
|
93253
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
93254
|
+
id: Scalars['ID']['output'];
|
|
93255
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
93256
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserSharedThirdPartyDocumentInverseUnion>;
|
|
93257
|
+
};
|
|
93258
|
+
export declare type GraphStoreV2SimplifiedExternalUserSharedThirdPartyDocumentInverseUnion = ThirdPartyUser;
|
|
92671
93259
|
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactConnection = HasPageInfo & {
|
|
92672
93260
|
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactConnection';
|
|
92673
93261
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactEdge>>>;
|
|
@@ -96396,7 +96984,7 @@ export declare type GravityField = {
|
|
|
96396
96984
|
__typename?: 'GravityField';
|
|
96397
96985
|
configuration?: Maybe<Scalars['JSON']['output']>;
|
|
96398
96986
|
custom: Scalars['Boolean']['output'];
|
|
96399
|
-
description?: Maybe<Scalars['
|
|
96987
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
96400
96988
|
global: Scalars['Boolean']['output'];
|
|
96401
96989
|
key: Scalars['String']['output'];
|
|
96402
96990
|
name: Scalars['String']['output'];
|
|
@@ -96406,7 +96994,7 @@ export declare type GravityField = {
|
|
|
96406
96994
|
export declare type GravityFieldDefinition = {
|
|
96407
96995
|
__typename?: 'GravityFieldDefinition';
|
|
96408
96996
|
configuration?: Maybe<Scalars['JSON']['output']>;
|
|
96409
|
-
description?: Maybe<Scalars['
|
|
96997
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
96410
96998
|
global: Scalars['Boolean']['output'];
|
|
96411
96999
|
name: Scalars['String']['output'];
|
|
96412
97000
|
options?: Maybe<Array<Scalars['JSON']['output']>>;
|
|
@@ -96474,8 +97062,8 @@ export declare type GravityRefMappingsInput = {
|
|
|
96474
97062
|
fields: Array<GravityFieldRefMappingInput>;
|
|
96475
97063
|
};
|
|
96476
97064
|
export declare enum GravityRefResolutionStrategy {
|
|
96477
|
-
|
|
96478
|
-
|
|
97065
|
+
CreateIfUnmapped = "CREATE_IF_UNMAPPED",
|
|
97066
|
+
FailIfUnmapped = "FAIL_IF_UNMAPPED"
|
|
96479
97067
|
}
|
|
96480
97068
|
export declare enum GravitySortOrder {
|
|
96481
97069
|
Asc = "ASC",
|
|
@@ -97984,6 +98572,7 @@ export declare type HelpCenterHubProductEntityResult = {
|
|
|
97984
98572
|
data?: Maybe<HelpCenterProductEntityConnection>;
|
|
97985
98573
|
entityType: Scalars['String']['output'];
|
|
97986
98574
|
filterCriteria: HelpCenterProductEntityFilterCriteria;
|
|
98575
|
+
helpCenterAri?: Maybe<Scalars['ID']['output']>;
|
|
97987
98576
|
helpCenterId?: Maybe<Scalars['ID']['output']>;
|
|
97988
98577
|
parentFilters?: Maybe<HelpCenterParentFilters>;
|
|
97989
98578
|
sortConfig?: Maybe<HelpCenterProductEntitySortConfigOutput>;
|
|
@@ -98285,7 +98874,7 @@ export declare enum HelpCenterPortalsType {
|
|
|
98285
98874
|
Hidden = "HIDDEN",
|
|
98286
98875
|
Visible = "VISIBLE"
|
|
98287
98876
|
}
|
|
98288
|
-
export declare type HelpCenterProductEntityConnection = HelpObjectStoreProductEntityConnection | JiraServiceManagementRequestTypeConnection | QueryError;
|
|
98877
|
+
export declare type HelpCenterProductEntityConnection = HelpObjectStorePortalGroupsConnection | HelpObjectStoreProductEntityConnection | JiraServiceManagementRequestTypeConnection | QueryError;
|
|
98289
98878
|
export declare type HelpCenterProductEntityFilter = {
|
|
98290
98879
|
parentId?: InputMaybe<Scalars['String']['input']>;
|
|
98291
98880
|
subEntityTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -98295,6 +98884,7 @@ export declare type HelpCenterProductEntityFilterCriteria = {
|
|
|
98295
98884
|
after?: Maybe<Scalars['String']['output']>;
|
|
98296
98885
|
cloudId: Scalars['ID']['output'];
|
|
98297
98886
|
first?: Maybe<Scalars['Int']['output']>;
|
|
98887
|
+
helpCenterAri?: Maybe<Scalars['ID']['output']>;
|
|
98298
98888
|
};
|
|
98299
98889
|
export declare type HelpCenterProductEntityFilterOutput = {
|
|
98300
98890
|
__typename?: 'HelpCenterProductEntityFilterOutput';
|
|
@@ -98332,7 +98922,8 @@ export declare type HelpCenterProductEntitySortConfigOutput = {
|
|
|
98332
98922
|
export declare enum HelpCenterProductEntityType {
|
|
98333
98923
|
CommonRequestTypes = "COMMON_REQUEST_TYPES",
|
|
98334
98924
|
JsmHelpObjects = "JSM_HELP_OBJECTS",
|
|
98335
|
-
KnowledgeCards = "KNOWLEDGE_CARDS"
|
|
98925
|
+
KnowledgeCards = "KNOWLEDGE_CARDS",
|
|
98926
|
+
PortalGroups = "PORTAL_GROUPS"
|
|
98336
98927
|
}
|
|
98337
98928
|
export declare type HelpCenterProjectMappingData = {
|
|
98338
98929
|
__typename?: 'HelpCenterProjectMappingData';
|
|
@@ -99483,6 +100074,7 @@ export declare type HelpObjectStoreEntityDataGeneric = HelpObjectStoreEntityData
|
|
|
99483
100074
|
export declare enum HelpObjectStoreEntityTypes {
|
|
99484
100075
|
ExtResources = "EXT_RESOURCES",
|
|
99485
100076
|
KbArticles = "KB_ARTICLES",
|
|
100077
|
+
PortalGroups = "PORTAL_GROUPS",
|
|
99486
100078
|
RequestTypes = "REQUEST_TYPES"
|
|
99487
100079
|
}
|
|
99488
100080
|
export declare type HelpObjectStoreFilter = {
|
|
@@ -99540,6 +100132,33 @@ export declare type HelpObjectStorePortal = HelpObjectStoreHelpObject & Node & {
|
|
|
99540
100132
|
id: Scalars['ID']['output'];
|
|
99541
100133
|
title?: Maybe<Scalars['String']['output']>;
|
|
99542
100134
|
};
|
|
100135
|
+
export declare type HelpObjectStorePortalGroup = {
|
|
100136
|
+
__typename?: 'HelpObjectStorePortalGroup';
|
|
100137
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
100138
|
+
id: Scalars['ID']['output'];
|
|
100139
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
100140
|
+
requestForms?: Maybe<Array<HelpObjectStorePortalGroupRequestForm>>;
|
|
100141
|
+
};
|
|
100142
|
+
export declare type HelpObjectStorePortalGroupEdge = {
|
|
100143
|
+
__typename?: 'HelpObjectStorePortalGroupEdge';
|
|
100144
|
+
cursor: Scalars['String']['output'];
|
|
100145
|
+
node?: Maybe<HelpObjectStorePortalGroup>;
|
|
100146
|
+
};
|
|
100147
|
+
export declare type HelpObjectStorePortalGroupRequestForm = {
|
|
100148
|
+
__typename?: 'HelpObjectStorePortalGroupRequestForm';
|
|
100149
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
100150
|
+
displayLink?: Maybe<Scalars['String']['output']>;
|
|
100151
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
100152
|
+
id: Scalars['ID']['output'];
|
|
100153
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
100154
|
+
};
|
|
100155
|
+
export declare type HelpObjectStorePortalGroupsConnection = {
|
|
100156
|
+
__typename?: 'HelpObjectStorePortalGroupsConnection';
|
|
100157
|
+
edges?: Maybe<Array<HelpObjectStorePortalGroupEdge>>;
|
|
100158
|
+
pageInfo: PageInfo;
|
|
100159
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
100160
|
+
};
|
|
100161
|
+
export declare type HelpObjectStorePortalGroupsResult = HelpObjectStorePortalGroupsConnection | QueryError;
|
|
99543
100162
|
export declare type HelpObjectStorePortalMetadata = {
|
|
99544
100163
|
__typename?: 'HelpObjectStorePortalMetadata';
|
|
99545
100164
|
searchStrategy: HelpObjectStorePortalSearchStrategy;
|
|
@@ -99578,6 +100197,7 @@ export declare type HelpObjectStoreProductEntityInput = {
|
|
|
99578
100197
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
99579
100198
|
cloudId: Scalars['ID']['input'];
|
|
99580
100199
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
100200
|
+
helpCenterAri?: InputMaybe<Scalars['ID']['input']>;
|
|
99581
100201
|
};
|
|
99582
100202
|
export declare type HelpObjectStoreProductEntityResult = HelpObjectStoreProductEntityConnection | QueryError;
|
|
99583
100203
|
export declare type HelpObjectStoreQueryApi = {
|
|
@@ -99585,6 +100205,7 @@ export declare type HelpObjectStoreQueryApi = {
|
|
|
99585
100205
|
articles?: Maybe<Array<Maybe<HelpObjectStoreArticleResult>>>;
|
|
99586
100206
|
channels?: Maybe<Array<Maybe<HelpObjectStoreChannelResult>>>;
|
|
99587
100207
|
helpObjects?: Maybe<HelpObjectStoreProductEntityResult>;
|
|
100208
|
+
portalGroups?: Maybe<HelpObjectStorePortalGroupsResult>;
|
|
99588
100209
|
requestForms?: Maybe<Array<Maybe<HelpObjectStoreRequestFormResult>>>;
|
|
99589
100210
|
searchHelpObjects?: Maybe<Array<Maybe<HelpObjectStoreHelpCenterSearchResult>>>;
|
|
99590
100211
|
};
|
|
@@ -99599,6 +100220,10 @@ export declare type HelpObjectStoreQueryApiHelpObjectsArgs = {
|
|
|
99599
100220
|
input: HelpObjectStoreProductEntityInput;
|
|
99600
100221
|
sortConfig?: InputMaybe<HelpObjectStoreSortConfig>;
|
|
99601
100222
|
};
|
|
100223
|
+
export declare type HelpObjectStoreQueryApiPortalGroupsArgs = {
|
|
100224
|
+
filters?: InputMaybe<HelpObjectStoreFilters>;
|
|
100225
|
+
input: HelpObjectStoreProductEntityInput;
|
|
100226
|
+
};
|
|
99602
100227
|
export declare type HelpObjectStoreQueryApiRequestFormsArgs = {
|
|
99603
100228
|
ids: Array<Scalars['ID']['input']>;
|
|
99604
100229
|
};
|
|
@@ -101057,6 +101682,7 @@ export declare type JiraAffectedServicesField = JiraHasMultipleSelectedValues &
|
|
|
101057
101682
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
101058
101683
|
fieldId: Scalars['String']['output'];
|
|
101059
101684
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
101685
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
101060
101686
|
id: Scalars['ID']['output'];
|
|
101061
101687
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
101062
101688
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -101132,6 +101758,7 @@ export declare type JiraAggregatedStatusField = JiraIssueField & Node & {
|
|
|
101132
101758
|
description?: Maybe<Scalars['String']['output']>;
|
|
101133
101759
|
fieldId: Scalars['String']['output'];
|
|
101134
101760
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
101761
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
101135
101762
|
id: Scalars['ID']['output'];
|
|
101136
101763
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
101137
101764
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -101154,6 +101781,7 @@ export declare type JiraAggregatedTimelineField = JiraIssueField & JiraTimelineV
|
|
|
101154
101781
|
description?: Maybe<Scalars['String']['output']>;
|
|
101155
101782
|
fieldId: Scalars['String']['output'];
|
|
101156
101783
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
101784
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
101157
101785
|
id: Scalars['ID']['output'];
|
|
101158
101786
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
101159
101787
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -101600,6 +102228,7 @@ export declare type JiraAssetField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
101600
102228
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
101601
102229
|
fieldId: Scalars['String']['output'];
|
|
101602
102230
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
102231
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
101603
102232
|
id: Scalars['ID']['output'];
|
|
101604
102233
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
101605
102234
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -101687,6 +102316,7 @@ export declare type JiraAtlasProjectField = JiraIssueField & JiraIssueFieldConfi
|
|
|
101687
102316
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
101688
102317
|
fieldId: Scalars['String']['output'];
|
|
101689
102318
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
102319
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
101690
102320
|
id: Scalars['ID']['output'];
|
|
101691
102321
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
101692
102322
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -101731,6 +102361,7 @@ export declare type JiraAtlassianTeamField = JiraIssueField & JiraIssueFieldConf
|
|
|
101731
102361
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
101732
102362
|
fieldId: Scalars['String']['output'];
|
|
101733
102363
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
102364
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
101734
102365
|
id: Scalars['ID']['output'];
|
|
101735
102366
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
101736
102367
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -101901,6 +102532,7 @@ export declare type JiraAttachmentsField = JiraIssueField & JiraIssueFieldConfig
|
|
|
101901
102532
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
101902
102533
|
fieldId: Scalars['String']['output'];
|
|
101903
102534
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
102535
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
101904
102536
|
id: Scalars['ID']['output'];
|
|
101905
102537
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
101906
102538
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -102688,7 +103320,7 @@ export declare type JiraBacklogViewColumn = {
|
|
|
102688
103320
|
name?: Maybe<Scalars['String']['output']>;
|
|
102689
103321
|
statusIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
102690
103322
|
};
|
|
102691
|
-
export declare type JiraBacklogViewColumnCardList = JiraBacklogViewCardList & {
|
|
103323
|
+
export declare type JiraBacklogViewColumnCardList = JiraBacklogViewCardList & Node & {
|
|
102692
103324
|
__typename?: 'JiraBacklogViewColumnCardList';
|
|
102693
103325
|
column?: Maybe<JiraBacklogViewColumn>;
|
|
102694
103326
|
id: Scalars['ID']['output'];
|
|
@@ -102715,7 +103347,7 @@ export declare type JiraBacklogViewPermissions = {
|
|
|
102715
103347
|
export declare type JiraBacklogViewQueryInput = {
|
|
102716
103348
|
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
102717
103349
|
};
|
|
102718
|
-
export declare type JiraBacklogViewSprintCardList = JiraBacklogViewCardList & {
|
|
103350
|
+
export declare type JiraBacklogViewSprintCardList = JiraBacklogViewCardList & Node & {
|
|
102719
103351
|
__typename?: 'JiraBacklogViewSprintCardList';
|
|
102720
103352
|
id: Scalars['ID']['output'];
|
|
102721
103353
|
issues?: Maybe<JiraIssueConnection>;
|
|
@@ -102834,6 +103466,7 @@ export declare type JiraBoardCardCoverMediaField = JiraIssueField & Node & {
|
|
|
102834
103466
|
description?: Maybe<Scalars['String']['output']>;
|
|
102835
103467
|
fieldId: Scalars['String']['output'];
|
|
102836
103468
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
103469
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
102837
103470
|
id: Scalars['ID']['output'];
|
|
102838
103471
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
102839
103472
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -103257,6 +103890,7 @@ export declare type JiraBooleanField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
103257
103890
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
103258
103891
|
fieldId: Scalars['String']['output'];
|
|
103259
103892
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
103893
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
103260
103894
|
id: Scalars['ID']['output'];
|
|
103261
103895
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
103262
103896
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -103706,6 +104340,7 @@ export declare type JiraCmdbField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
103706
104340
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
103707
104341
|
fieldId: Scalars['String']['output'];
|
|
103708
104342
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
104343
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
103709
104344
|
id: Scalars['ID']['output'];
|
|
103710
104345
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
103711
104346
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -104045,6 +104680,7 @@ export declare type JiraCascadingSelectField = JiraHasSelectableValueOptions & J
|
|
|
104045
104680
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
104046
104681
|
fieldId: Scalars['String']['output'];
|
|
104047
104682
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
104683
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
104048
104684
|
id: Scalars['ID']['output'];
|
|
104049
104685
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
104050
104686
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -104111,6 +104747,7 @@ export declare type JiraCheckboxesField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
104111
104747
|
fieldId: Scalars['String']['output'];
|
|
104112
104748
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
104113
104749
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
104750
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
104114
104751
|
id: Scalars['ID']['output'];
|
|
104115
104752
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
104116
104753
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -104512,6 +105149,7 @@ export declare type JiraColorField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
104512
105149
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
104513
105150
|
fieldId: Scalars['String']['output'];
|
|
104514
105151
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105152
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
104515
105153
|
id: Scalars['ID']['output'];
|
|
104516
105154
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
104517
105155
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -104604,6 +105242,7 @@ export declare type JiraCommentSummaryField = JiraIssueField & JiraIssueFieldCon
|
|
|
104604
105242
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
104605
105243
|
fieldId: Scalars['String']['output'];
|
|
104606
105244
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105245
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
104607
105246
|
id: Scalars['ID']['output'];
|
|
104608
105247
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
104609
105248
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -104650,6 +105289,7 @@ export declare type JiraComponentsField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
104650
105289
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
104651
105290
|
fieldId: Scalars['String']['output'];
|
|
104652
105291
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105292
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
104653
105293
|
id: Scalars['ID']['output'];
|
|
104654
105294
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
104655
105295
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -104949,6 +105589,7 @@ export declare type JiraConfluenceRemoteIssueLinksField = JiraIssueField & JiraI
|
|
|
104949
105589
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
104950
105590
|
fieldId: Scalars['String']['output'];
|
|
104951
105591
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105592
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
104952
105593
|
id: Scalars['ID']['output'];
|
|
104953
105594
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
104954
105595
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -104972,6 +105613,7 @@ export declare type JiraConnectDateTimeField = JiraIssueField & JiraIssueFieldCo
|
|
|
104972
105613
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
104973
105614
|
fieldId: Scalars['String']['output'];
|
|
104974
105615
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105616
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
104975
105617
|
id: Scalars['ID']['output'];
|
|
104976
105618
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
104977
105619
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -104988,6 +105630,7 @@ export declare type JiraConnectMultipleSelectField = JiraHasMultipleSelectedValu
|
|
|
104988
105630
|
fieldId: Scalars['String']['output'];
|
|
104989
105631
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
104990
105632
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
105633
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
104991
105634
|
id: Scalars['ID']['output'];
|
|
104992
105635
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
104993
105636
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105036,6 +105679,7 @@ export declare type JiraConnectNumberField = JiraIssueField & JiraIssueFieldConf
|
|
|
105036
105679
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105037
105680
|
fieldId: Scalars['String']['output'];
|
|
105038
105681
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105682
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105039
105683
|
id: Scalars['ID']['output'];
|
|
105040
105684
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105041
105685
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105052,6 +105696,7 @@ export declare type JiraConnectReadOnlyField = JiraIssueField & JiraIssueFieldCo
|
|
|
105052
105696
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105053
105697
|
fieldId: Scalars['String']['output'];
|
|
105054
105698
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105699
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105055
105700
|
id: Scalars['ID']['output'];
|
|
105056
105701
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105057
105702
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105068,6 +105713,7 @@ export declare type JiraConnectRichTextField = JiraIssueField & JiraIssueFieldCo
|
|
|
105068
105713
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105069
105714
|
fieldId: Scalars['String']['output'];
|
|
105070
105715
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105716
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105071
105717
|
id: Scalars['ID']['output'];
|
|
105072
105718
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105073
105719
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105088,6 +105734,7 @@ export declare type JiraConnectSingleSelectField = JiraHasSelectableValueOptions
|
|
|
105088
105734
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105089
105735
|
fieldOption?: Maybe<JiraOption>;
|
|
105090
105736
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
105737
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105091
105738
|
id: Scalars['ID']['output'];
|
|
105092
105739
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105093
105740
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105121,6 +105768,7 @@ export declare type JiraConnectTextField = JiraIssueField & JiraIssueFieldConfig
|
|
|
105121
105768
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105122
105769
|
fieldId: Scalars['String']['output'];
|
|
105123
105770
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105771
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105124
105772
|
id: Scalars['ID']['output'];
|
|
105125
105773
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105126
105774
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105691,6 +106339,7 @@ export declare type JiraCustomerServiceOrganizationField = JiraIssueField & Jira
|
|
|
105691
106339
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105692
106340
|
fieldId: Scalars['String']['output'];
|
|
105693
106341
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
106342
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105694
106343
|
id: Scalars['ID']['output'];
|
|
105695
106344
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105696
106345
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105749,6 +106398,7 @@ export declare type JiraDataClassificationField = JiraIssueField & JiraIssueFiel
|
|
|
105749
106398
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105750
106399
|
fieldId: Scalars['String']['output'];
|
|
105751
106400
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
106401
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105752
106402
|
id: Scalars['ID']['output'];
|
|
105753
106403
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105754
106404
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105806,6 +106456,7 @@ export declare type JiraDateFormulaField = JiraIssueField & JiraIssueFieldConfig
|
|
|
105806
106456
|
fieldId: Scalars['String']['output'];
|
|
105807
106457
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105808
106458
|
formulaExpressionConfig?: Maybe<JiraFormulaFieldExpressionConfig>;
|
|
106459
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105809
106460
|
id: Scalars['ID']['output'];
|
|
105810
106461
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105811
106462
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105826,6 +106477,7 @@ export declare type JiraDatePickerField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
105826
106477
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105827
106478
|
fieldId: Scalars['String']['output'];
|
|
105828
106479
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
106480
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105829
106481
|
id: Scalars['ID']['output'];
|
|
105830
106482
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105831
106483
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105863,6 +106515,7 @@ export declare type JiraDateTimePickerField = JiraIssueField & JiraIssueFieldCon
|
|
|
105863
106515
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105864
106516
|
fieldId: Scalars['String']['output'];
|
|
105865
106517
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
106518
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105866
106519
|
id: Scalars['ID']['output'];
|
|
105867
106520
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105868
106521
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -106457,6 +107110,7 @@ export declare type JiraDevSummaryField = JiraIssueField & Node & {
|
|
|
106457
107110
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
106458
107111
|
fieldId: Scalars['String']['output'];
|
|
106459
107112
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107113
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
106460
107114
|
id: Scalars['ID']['output'];
|
|
106461
107115
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
106462
107116
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -106576,6 +107230,7 @@ export declare type JiraDurationField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
106576
107230
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
106577
107231
|
fieldId: Scalars['String']['output'];
|
|
106578
107232
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107233
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
106579
107234
|
id: Scalars['ID']['output'];
|
|
106580
107235
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
106581
107236
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -106704,6 +107359,7 @@ export declare type JiraEpicLinkField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
106704
107359
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
106705
107360
|
fieldId: Scalars['String']['output'];
|
|
106706
107361
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107362
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
106707
107363
|
id: Scalars['ID']['output'];
|
|
106708
107364
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
106709
107365
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -106771,6 +107427,7 @@ export declare type JiraFallbackField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
106771
107427
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
106772
107428
|
fieldId: Scalars['String']['output'];
|
|
106773
107429
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107430
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
106774
107431
|
id: Scalars['ID']['output'];
|
|
106775
107432
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
106776
107433
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107088,6 +107745,7 @@ export declare type JiraFieldSchemeAssociatedFieldsConnection = {
|
|
|
107088
107745
|
__typename?: 'JiraFieldSchemeAssociatedFieldsConnection';
|
|
107089
107746
|
edges?: Maybe<Array<Maybe<JiraFieldSchemeAssociatedFieldsEdge>>>;
|
|
107090
107747
|
pageInfo: PageInfo;
|
|
107748
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
107091
107749
|
};
|
|
107092
107750
|
export declare type JiraFieldSchemeAssociatedFieldsEdge = {
|
|
107093
107751
|
__typename?: 'JiraFieldSchemeAssociatedFieldsEdge';
|
|
@@ -107442,6 +108100,7 @@ export declare type JiraFlagField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
107442
108100
|
fieldId: Scalars['String']['output'];
|
|
107443
108101
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107444
108102
|
flag?: Maybe<JiraFlag>;
|
|
108103
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107445
108104
|
id: Scalars['ID']['output'];
|
|
107446
108105
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107447
108106
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107483,6 +108142,7 @@ export declare type JiraForgeDateField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
107483
108142
|
fieldId: Scalars['String']['output'];
|
|
107484
108143
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107485
108144
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
108145
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107486
108146
|
id: Scalars['ID']['output'];
|
|
107487
108147
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107488
108148
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107501,6 +108161,7 @@ export declare type JiraForgeDatetimeField = JiraIssueField & JiraIssueFieldConf
|
|
|
107501
108161
|
fieldId: Scalars['String']['output'];
|
|
107502
108162
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107503
108163
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
108164
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107504
108165
|
id: Scalars['ID']['output'];
|
|
107505
108166
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107506
108167
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107556,6 +108217,7 @@ export declare type JiraForgeGroupField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
107556
108217
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107557
108218
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
107558
108219
|
groups?: Maybe<JiraGroupConnection>;
|
|
108220
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107559
108221
|
id: Scalars['ID']['output'];
|
|
107560
108222
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107561
108223
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107583,6 +108245,7 @@ export declare type JiraForgeGroupsField = JiraIssueField & JiraIssueFieldConfig
|
|
|
107583
108245
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107584
108246
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
107585
108247
|
groups?: Maybe<JiraGroupConnection>;
|
|
108248
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107586
108249
|
id: Scalars['ID']['output'];
|
|
107587
108250
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107588
108251
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107638,6 +108301,7 @@ export declare type JiraForgeNumberField = JiraIssueField & JiraIssueFieldConfig
|
|
|
107638
108301
|
fieldId: Scalars['String']['output'];
|
|
107639
108302
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107640
108303
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
108304
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107641
108305
|
id: Scalars['ID']['output'];
|
|
107642
108306
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107643
108307
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107656,6 +108320,7 @@ export declare type JiraForgeObjectField = JiraIssueField & JiraIssueFieldConfig
|
|
|
107656
108320
|
fieldId: Scalars['String']['output'];
|
|
107657
108321
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107658
108322
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
108323
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107659
108324
|
id: Scalars['ID']['output'];
|
|
107660
108325
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107661
108326
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107707,6 +108372,7 @@ export declare type JiraForgeStringField = JiraIssueField & JiraIssueFieldConfig
|
|
|
107707
108372
|
fieldId: Scalars['String']['output'];
|
|
107708
108373
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107709
108374
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
108375
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107710
108376
|
id: Scalars['ID']['output'];
|
|
107711
108377
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107712
108378
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107725,6 +108391,7 @@ export declare type JiraForgeStringsField = JiraIssueField & JiraIssueFieldConfi
|
|
|
107725
108391
|
fieldId: Scalars['String']['output'];
|
|
107726
108392
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107727
108393
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
108394
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107728
108395
|
id: Scalars['ID']['output'];
|
|
107729
108396
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107730
108397
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107788,6 +108455,7 @@ export declare type JiraForgeUserField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
107788
108455
|
fieldId: Scalars['String']['output'];
|
|
107789
108456
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107790
108457
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
108458
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107791
108459
|
id: Scalars['ID']['output'];
|
|
107792
108460
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107793
108461
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107816,6 +108484,7 @@ export declare type JiraForgeUsersField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
107816
108484
|
fieldId: Scalars['String']['output'];
|
|
107817
108485
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107818
108486
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
108487
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107819
108488
|
id: Scalars['ID']['output'];
|
|
107820
108489
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107821
108490
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -108101,6 +108770,7 @@ export declare type JiraGenericIssueField = JiraIssueField & JiraIssueFieldConfi
|
|
|
108101
108770
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
108102
108771
|
fieldId: Scalars['String']['output'];
|
|
108103
108772
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
108773
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
108104
108774
|
id: Scalars['ID']['output'];
|
|
108105
108775
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
108106
108776
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -108238,6 +108908,7 @@ export declare type JiraGoalsField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
108238
108908
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
108239
108909
|
fieldId: Scalars['String']['output'];
|
|
108240
108910
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
108911
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
108241
108912
|
id: Scalars['ID']['output'];
|
|
108242
108913
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
108243
108914
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -109609,6 +110280,7 @@ export declare type JiraIssueField = {
|
|
|
109609
110280
|
description?: Maybe<Scalars['String']['output']>;
|
|
109610
110281
|
fieldId: Scalars['String']['output'];
|
|
109611
110282
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
110283
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
109612
110284
|
id: Scalars['ID']['output'];
|
|
109613
110285
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
109614
110286
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -110117,6 +110789,7 @@ export declare type JiraIssueLinkField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
110117
110789
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
110118
110790
|
fieldId: Scalars['String']['output'];
|
|
110119
110791
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
110792
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
110120
110793
|
id: Scalars['ID']['output'];
|
|
110121
110794
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
110122
110795
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -110169,6 +110842,7 @@ export declare type JiraIssueLinkRelationshipTypeField = JiraIssueField & JiraIs
|
|
|
110169
110842
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
110170
110843
|
fieldId: Scalars['String']['output'];
|
|
110171
110844
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
110845
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
110172
110846
|
id: Scalars['ID']['output'];
|
|
110173
110847
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
110174
110848
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -110352,6 +111026,7 @@ export declare type JiraIssueRestrictionField = JiraIssueField & JiraIssueFieldC
|
|
|
110352
111026
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
110353
111027
|
fieldId: Scalars['String']['output'];
|
|
110354
111028
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
111029
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
110355
111030
|
id: Scalars['ID']['output'];
|
|
110356
111031
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
110357
111032
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -111012,6 +111687,7 @@ export declare type JiraIssueTypeField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
111012
111687
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
111013
111688
|
fieldId: Scalars['String']['output'];
|
|
111014
111689
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
111690
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
111015
111691
|
id: Scalars['ID']['output'];
|
|
111016
111692
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
111017
111693
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -112246,6 +112922,7 @@ export declare type JiraLabelsField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
112246
112922
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
112247
112923
|
fieldId: Scalars['String']['output'];
|
|
112248
112924
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
112925
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
112249
112926
|
id: Scalars['ID']['output'];
|
|
112250
112927
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
112251
112928
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -112672,6 +113349,7 @@ export declare type JiraMultipleGroupPickerField = JiraIssueField & JiraIssueFie
|
|
|
112672
113349
|
fieldId: Scalars['String']['output'];
|
|
112673
113350
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
112674
113351
|
groups?: Maybe<JiraGroupConnection>;
|
|
113352
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
112675
113353
|
id: Scalars['ID']['output'];
|
|
112676
113354
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
112677
113355
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -112724,6 +113402,7 @@ export declare type JiraMultipleSelectField = JiraHasMultipleSelectedValues & Ji
|
|
|
112724
113402
|
fieldId: Scalars['String']['output'];
|
|
112725
113403
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
112726
113404
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
113405
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
112727
113406
|
id: Scalars['ID']['output'];
|
|
112728
113407
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
112729
113408
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -112788,6 +113467,7 @@ export declare type JiraMultipleSelectUserPickerField = JiraIssueField & JiraIss
|
|
|
112788
113467
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
112789
113468
|
fieldId: Scalars['String']['output'];
|
|
112790
113469
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
113470
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
112791
113471
|
id: Scalars['ID']['output'];
|
|
112792
113472
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
112793
113473
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -112836,6 +113516,7 @@ export declare type JiraMultipleVersionPickerField = JiraHasMultipleSelectedValu
|
|
|
112836
113516
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
112837
113517
|
fieldId: Scalars['String']['output'];
|
|
112838
113518
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
113519
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
112839
113520
|
id: Scalars['ID']['output'];
|
|
112840
113521
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
112841
113522
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -114159,6 +114840,7 @@ export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
114159
114840
|
fieldId: Scalars['String']['output'];
|
|
114160
114841
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
114161
114842
|
formatConfig?: Maybe<JiraNumberFieldFormatConfig>;
|
|
114843
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
114162
114844
|
id: Scalars['ID']['output'];
|
|
114163
114845
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
114164
114846
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -114217,6 +114899,7 @@ export declare type JiraNumberFormulaField = JiraIssueField & JiraIssueFieldConf
|
|
|
114217
114899
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
114218
114900
|
formatConfig?: Maybe<JiraNumberFieldFormatConfig>;
|
|
114219
114901
|
formulaExpressionConfig?: Maybe<JiraFormulaFieldExpressionConfig>;
|
|
114902
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
114220
114903
|
id: Scalars['ID']['output'];
|
|
114221
114904
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
114222
114905
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -114673,6 +115356,7 @@ export declare type JiraOriginalTimeEstimateField = JiraIssueField & JiraIssueFi
|
|
|
114673
115356
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
114674
115357
|
fieldId: Scalars['String']['output'];
|
|
114675
115358
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
115359
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
114676
115360
|
id: Scalars['ID']['output'];
|
|
114677
115361
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
114678
115362
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -114750,6 +115434,7 @@ export declare type JiraParentIssueField = JiraIssueField & JiraIssueFieldConfig
|
|
|
114750
115434
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
114751
115435
|
fieldId: Scalars['String']['output'];
|
|
114752
115436
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
115437
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
114753
115438
|
id: Scalars['ID']['output'];
|
|
114754
115439
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
114755
115440
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -114825,6 +115510,7 @@ export declare type JiraPeopleField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
114825
115510
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
114826
115511
|
fieldId: Scalars['String']['output'];
|
|
114827
115512
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
115513
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
114828
115514
|
id: Scalars['ID']['output'];
|
|
114829
115515
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
114830
115516
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -115155,6 +115841,7 @@ export declare type JiraPlaybookInstance = Node & {
|
|
|
115155
115841
|
id: Scalars['ID']['output'];
|
|
115156
115842
|
name?: Maybe<Scalars['String']['output']>;
|
|
115157
115843
|
steps?: Maybe<Array<JiraPlaybookInstanceStep>>;
|
|
115844
|
+
totalExecutionCount?: Maybe<Scalars['Int']['output']>;
|
|
115158
115845
|
};
|
|
115159
115846
|
export declare type JiraPlaybookInstanceConnection = HasPageInfo & QueryPayload & {
|
|
115160
115847
|
__typename?: 'JiraPlaybookInstanceConnection';
|
|
@@ -115482,6 +116169,7 @@ export declare type JiraPriorityField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
115482
116169
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
115483
116170
|
fieldId: Scalars['String']['output'];
|
|
115484
116171
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
116172
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
115485
116173
|
id: Scalars['ID']['output'];
|
|
115486
116174
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
115487
116175
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -115543,6 +116231,7 @@ export declare type JiraProformaFormsField = JiraIssueField & JiraIssueFieldConf
|
|
|
115543
116231
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
115544
116232
|
fieldId: Scalars['String']['output'];
|
|
115545
116233
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
116234
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
115546
116235
|
id: Scalars['ID']['output'];
|
|
115547
116236
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
115548
116237
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -116054,6 +116743,7 @@ export declare type JiraProjectField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
116054
116743
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
116055
116744
|
fieldId: Scalars['String']['output'];
|
|
116056
116745
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
116746
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
116057
116747
|
id: Scalars['ID']['output'];
|
|
116058
116748
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
116059
116749
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -117990,6 +118680,7 @@ export declare type JiraRadioSelectField = JiraIssueField & JiraIssueFieldConfig
|
|
|
117990
118680
|
fieldId: Scalars['String']['output'];
|
|
117991
118681
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
117992
118682
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
118683
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
117993
118684
|
id: Scalars['ID']['output'];
|
|
117994
118685
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
117995
118686
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -118293,6 +118984,7 @@ export declare type JiraRemainingTimeEstimateField = JiraIssueField & JiraIssueF
|
|
|
118293
118984
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
118294
118985
|
fieldId: Scalars['String']['output'];
|
|
118295
118986
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
118987
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
118296
118988
|
id: Scalars['ID']['output'];
|
|
118297
118989
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
118298
118990
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -118634,6 +119326,7 @@ export declare type JiraResolutionField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
118634
119326
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
118635
119327
|
fieldId: Scalars['String']['output'];
|
|
118636
119328
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
119329
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
118637
119330
|
id: Scalars['ID']['output'];
|
|
118638
119331
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
118639
119332
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -118921,6 +119614,7 @@ export declare type JiraRichTextField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
118921
119614
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
118922
119615
|
fieldId: Scalars['String']['output'];
|
|
118923
119616
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
119617
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
118924
119618
|
id: Scalars['ID']['output'];
|
|
118925
119619
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
118926
119620
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119268,6 +119962,7 @@ export declare type JiraSecurityLevelField = JiraIssueField & JiraIssueFieldConf
|
|
|
119268
119962
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119269
119963
|
fieldId: Scalars['String']['output'];
|
|
119270
119964
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
119965
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119271
119966
|
id: Scalars['ID']['output'];
|
|
119272
119967
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119273
119968
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119325,6 +120020,7 @@ export declare type JiraSelectedUsersField = {
|
|
|
119325
120020
|
description?: Maybe<Scalars['String']['output']>;
|
|
119326
120021
|
fieldId: Scalars['String']['output'];
|
|
119327
120022
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120023
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119328
120024
|
id: Scalars['ID']['output'];
|
|
119329
120025
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119330
120026
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119422,6 +120118,7 @@ export declare type JiraServiceManagementApprovalField = JiraIssueField & JiraIs
|
|
|
119422
120118
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119423
120119
|
fieldId: Scalars['String']['output'];
|
|
119424
120120
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120121
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119425
120122
|
id: Scalars['ID']['output'];
|
|
119426
120123
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119427
120124
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119667,6 +120364,7 @@ export declare type JiraServiceManagementDateTimeField = JiraIssueField & JiraIs
|
|
|
119667
120364
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119668
120365
|
fieldId: Scalars['String']['output'];
|
|
119669
120366
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120367
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119670
120368
|
id: Scalars['ID']['output'];
|
|
119671
120369
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119672
120370
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119729,6 +120427,7 @@ export declare type JiraServiceManagementEntitlementField = JiraIssueField & Jir
|
|
|
119729
120427
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119730
120428
|
fieldId: Scalars['String']['output'];
|
|
119731
120429
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120430
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119732
120431
|
id: Scalars['ID']['output'];
|
|
119733
120432
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119734
120433
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119770,6 +120469,7 @@ export declare type JiraServiceManagementIncidentLinkingField = JiraIssueField &
|
|
|
119770
120469
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119771
120470
|
fieldId: Scalars['String']['output'];
|
|
119772
120471
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120472
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119773
120473
|
id: Scalars['ID']['output'];
|
|
119774
120474
|
incident?: Maybe<JiraServiceManagementIncident>;
|
|
119775
120475
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119797,6 +120497,7 @@ export declare type JiraServiceManagementMajorIncidentField = JiraIssueField & J
|
|
|
119797
120497
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119798
120498
|
fieldId: Scalars['String']['output'];
|
|
119799
120499
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120500
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119800
120501
|
id: Scalars['ID']['output'];
|
|
119801
120502
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119802
120503
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119847,6 +120548,7 @@ export declare type JiraServiceManagementMultipleSelectUserPickerField = JiraIss
|
|
|
119847
120548
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119848
120549
|
fieldId: Scalars['String']['output'];
|
|
119849
120550
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120551
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119850
120552
|
id: Scalars['ID']['output'];
|
|
119851
120553
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119852
120554
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119903,6 +120605,7 @@ export declare type JiraServiceManagementOrganizationField = JiraHasMultipleSele
|
|
|
119903
120605
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119904
120606
|
fieldId: Scalars['String']['output'];
|
|
119905
120607
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120608
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119906
120609
|
id: Scalars['ID']['output'];
|
|
119907
120610
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119908
120611
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119963,6 +120666,7 @@ export declare type JiraServiceManagementPeopleField = JiraIssueField & JiraIssu
|
|
|
119963
120666
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119964
120667
|
fieldId: Scalars['String']['output'];
|
|
119965
120668
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120669
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119966
120670
|
id: Scalars['ID']['output'];
|
|
119967
120671
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119968
120672
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -120045,6 +120749,7 @@ export declare type JiraServiceManagementRequestFeedbackField = JiraIssueField &
|
|
|
120045
120749
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
120046
120750
|
fieldId: Scalars['String']['output'];
|
|
120047
120751
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120752
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
120048
120753
|
id: Scalars['ID']['output'];
|
|
120049
120754
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
120050
120755
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -120060,6 +120765,7 @@ export declare type JiraServiceManagementRequestLanguageField = JiraIssueField &
|
|
|
120060
120765
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
120061
120766
|
fieldId: Scalars['String']['output'];
|
|
120062
120767
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120768
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
120063
120769
|
id: Scalars['ID']['output'];
|
|
120064
120770
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
120065
120771
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -120151,6 +120857,7 @@ export declare type JiraServiceManagementRequestTypeField = JiraIssueField & Jir
|
|
|
120151
120857
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
120152
120858
|
fieldId: Scalars['String']['output'];
|
|
120153
120859
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120860
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
120154
120861
|
id: Scalars['ID']['output'];
|
|
120155
120862
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
120156
120863
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -120255,6 +120962,7 @@ export declare type JiraServiceManagementRespondersField = JiraIssueField & Jira
|
|
|
120255
120962
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
120256
120963
|
fieldId: Scalars['String']['output'];
|
|
120257
120964
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120965
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
120258
120966
|
id: Scalars['ID']['output'];
|
|
120259
120967
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
120260
120968
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -120297,6 +121005,7 @@ export declare type JiraServiceManagementSentimentField = JiraIssueField & JiraI
|
|
|
120297
121005
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
120298
121006
|
fieldId: Scalars['String']['output'];
|
|
120299
121007
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
121008
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
120300
121009
|
id: Scalars['ID']['output'];
|
|
120301
121010
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
120302
121011
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -120879,6 +121588,16 @@ export declare type JiraSetTimelineHighlightedReleasesPayload = Payload & {
|
|
|
120879
121588
|
errors?: Maybe<Array<MutationError>>;
|
|
120880
121589
|
success: Scalars['Boolean']['output'];
|
|
120881
121590
|
};
|
|
121591
|
+
export declare type JiraSetTimelineViewFieldSetsInput = {
|
|
121592
|
+
fieldSetIds: Array<Scalars['String']['input']>;
|
|
121593
|
+
viewId: Scalars['ID']['input'];
|
|
121594
|
+
};
|
|
121595
|
+
export declare type JiraSetTimelineViewFieldSetsPayload = Payload & {
|
|
121596
|
+
__typename?: 'JiraSetTimelineViewFieldSetsPayload';
|
|
121597
|
+
errors?: Maybe<Array<MutationError>>;
|
|
121598
|
+
success: Scalars['Boolean']['output'];
|
|
121599
|
+
view?: Maybe<JiraView>;
|
|
121600
|
+
};
|
|
120882
121601
|
export declare type JiraSetTimelineViewHideDependenciesInput = {
|
|
120883
121602
|
hideDependencies: Scalars['Boolean']['input'];
|
|
120884
121603
|
viewId: Scalars['ID']['input'];
|
|
@@ -121095,6 +121814,7 @@ export declare type JiraSingleGroupPickerField = JiraIssueField & JiraIssueField
|
|
|
121095
121814
|
fieldId: Scalars['String']['output'];
|
|
121096
121815
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
121097
121816
|
groups?: Maybe<JiraGroupConnection>;
|
|
121817
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
121098
121818
|
id: Scalars['ID']['output'];
|
|
121099
121819
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
121100
121820
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -121135,6 +121855,7 @@ export declare type JiraSingleLineTextField = JiraIssueField & JiraIssueFieldCon
|
|
|
121135
121855
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
121136
121856
|
fieldId: Scalars['String']['output'];
|
|
121137
121857
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
121858
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
121138
121859
|
id: Scalars['ID']['output'];
|
|
121139
121860
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
121140
121861
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -121175,6 +121896,7 @@ export declare type JiraSingleSelectField = JiraHasSelectableValueOptions & Jira
|
|
|
121175
121896
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
121176
121897
|
fieldOption?: Maybe<JiraOption>;
|
|
121177
121898
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
121899
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
121178
121900
|
id: Scalars['ID']['output'];
|
|
121179
121901
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
121180
121902
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -121225,6 +121947,7 @@ export declare type JiraSingleSelectUserPickerField = JiraIssueField & JiraIssue
|
|
|
121225
121947
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
121226
121948
|
fieldId: Scalars['String']['output'];
|
|
121227
121949
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
121950
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
121228
121951
|
id: Scalars['ID']['output'];
|
|
121229
121952
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
121230
121953
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -121272,6 +121995,7 @@ export declare type JiraSingleVersionPickerField = JiraHasSelectableValueOptions
|
|
|
121272
121995
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
121273
121996
|
fieldId: Scalars['String']['output'];
|
|
121274
121997
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
121998
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
121275
121999
|
id: Scalars['ID']['output'];
|
|
121276
122000
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
121277
122001
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -121530,6 +122254,7 @@ export declare type JiraSprintField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
121530
122254
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
121531
122255
|
fieldId: Scalars['String']['output'];
|
|
121532
122256
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
122257
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
121533
122258
|
id: Scalars['ID']['output'];
|
|
121534
122259
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
121535
122260
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -121650,6 +122375,7 @@ export declare type JiraStatusCategoryField = JiraIssueField & JiraIssueFieldCon
|
|
|
121650
122375
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
121651
122376
|
fieldId: Scalars['String']['output'];
|
|
121652
122377
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
122378
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
121653
122379
|
id: Scalars['ID']['output'];
|
|
121654
122380
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
121655
122381
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -121683,6 +122409,7 @@ export declare type JiraStatusField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
121683
122409
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
121684
122410
|
fieldId: Scalars['String']['output'];
|
|
121685
122411
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
122412
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
121686
122413
|
id: Scalars['ID']['output'];
|
|
121687
122414
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
121688
122415
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -121972,6 +122699,7 @@ export declare type JiraSubtaskSummaryField = JiraIssueField & Node & {
|
|
|
121972
122699
|
description?: Maybe<Scalars['String']['output']>;
|
|
121973
122700
|
fieldId: Scalars['String']['output'];
|
|
121974
122701
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
122702
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
121975
122703
|
id: Scalars['ID']['output'];
|
|
121976
122704
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
121977
122705
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -121988,6 +122716,7 @@ export declare type JiraSubtasksField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
121988
122716
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
121989
122717
|
fieldId: Scalars['String']['output'];
|
|
121990
122718
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
122719
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
121991
122720
|
id: Scalars['ID']['output'];
|
|
121992
122721
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
121993
122722
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122120,6 +122849,7 @@ export declare type JiraTeamField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
122120
122849
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
122121
122850
|
fieldId: Scalars['String']['output'];
|
|
122122
122851
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
122852
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
122123
122853
|
id: Scalars['ID']['output'];
|
|
122124
122854
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
122125
122855
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122189,6 +122919,7 @@ export declare type JiraTeamViewField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
122189
122919
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
122190
122920
|
fieldId: Scalars['String']['output'];
|
|
122191
122921
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
122922
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
122192
122923
|
id: Scalars['ID']['output'];
|
|
122193
122924
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
122194
122925
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122245,6 +122976,7 @@ export declare type JiraTextFormulaField = JiraIssueField & JiraIssueFieldConfig
|
|
|
122245
122976
|
fieldId: Scalars['String']['output'];
|
|
122246
122977
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
122247
122978
|
formulaExpressionConfig?: Maybe<JiraFormulaFieldExpressionConfig>;
|
|
122979
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
122248
122980
|
id: Scalars['ID']['output'];
|
|
122249
122981
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
122250
122982
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122267,6 +122999,7 @@ export declare type JiraTimeTrackingField = JiraIssueField & JiraIssueFieldConfi
|
|
|
122267
122999
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
122268
123000
|
fieldId: Scalars['String']['output'];
|
|
122269
123001
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
123002
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
122270
123003
|
id: Scalars['ID']['output'];
|
|
122271
123004
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
122272
123005
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122313,6 +123046,7 @@ export declare type JiraTimelineField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
122313
123046
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
122314
123047
|
fieldId: Scalars['String']['output'];
|
|
122315
123048
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
123049
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
122316
123050
|
id: Scalars['ID']['output'];
|
|
122317
123051
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
122318
123052
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122409,6 +123143,7 @@ export declare type JiraTimelineViewIssuesArgs = {
|
|
|
122409
123143
|
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
|
|
122410
123144
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122411
123145
|
issueSearchInput: JiraIssueSearchInput;
|
|
123146
|
+
jiraViewQueryInput?: InputMaybe<JiraViewQueryInput>;
|
|
122412
123147
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
122413
123148
|
options?: InputMaybe<JiraIssueSearchOptions>;
|
|
122414
123149
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -122511,6 +123246,7 @@ export declare type JiraTownsquareProjectField = JiraIssueField & JiraIssueField
|
|
|
122511
123246
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
122512
123247
|
fieldId: Scalars['String']['output'];
|
|
122513
123248
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
123249
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
122514
123250
|
id: Scalars['ID']['output'];
|
|
122515
123251
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
122516
123252
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -123333,6 +124069,7 @@ export declare type JiraUrlField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
123333
124069
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
123334
124070
|
fieldId: Scalars['String']['output'];
|
|
123335
124071
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
124072
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
123336
124073
|
id: Scalars['ID']['output'];
|
|
123337
124074
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
123338
124075
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -124201,6 +124938,7 @@ export declare type JiraVotesField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
124201
124938
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
124202
124939
|
fieldId: Scalars['String']['output'];
|
|
124203
124940
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
124941
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
124204
124942
|
id: Scalars['ID']['output'];
|
|
124205
124943
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
124206
124944
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -124242,6 +124980,7 @@ export declare type JiraWatchesField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
124242
124980
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
124243
124981
|
fieldId: Scalars['String']['output'];
|
|
124244
124982
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
124983
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
124245
124984
|
id: Scalars['ID']['output'];
|
|
124246
124985
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
124247
124986
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -124332,6 +125071,7 @@ export declare type JiraWorkCategoryField = JiraIssueField & JiraIssueFieldConfi
|
|
|
124332
125071
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
124333
125072
|
fieldId: Scalars['String']['output'];
|
|
124334
125073
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
125074
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
124335
125075
|
id: Scalars['ID']['output'];
|
|
124336
125076
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
124337
125077
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -124359,6 +125099,7 @@ export declare type JiraWorkLogField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
124359
125099
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
124360
125100
|
fieldId: Scalars['String']['output'];
|
|
124361
125101
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
125102
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
124362
125103
|
id: Scalars['ID']['output'];
|
|
124363
125104
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
124364
125105
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -125086,6 +125827,20 @@ export declare type JpdViewsServiceAxisConfigInput = {
|
|
|
125086
125827
|
fieldOptions: Array<JpdViewsServiceOptionInput>;
|
|
125087
125828
|
reversed: Scalars['Boolean']['input'];
|
|
125088
125829
|
};
|
|
125830
|
+
export declare enum JpdViewsServiceColorStyle {
|
|
125831
|
+
Background = "BACKGROUND",
|
|
125832
|
+
Highlight = "HIGHLIGHT"
|
|
125833
|
+
}
|
|
125834
|
+
export declare enum JpdViewsServiceColumnSize {
|
|
125835
|
+
Default = "DEFAULT",
|
|
125836
|
+
Large = "LARGE",
|
|
125837
|
+
Small = "SMALL"
|
|
125838
|
+
}
|
|
125839
|
+
export declare enum JpdViewsServiceConnectionsLayout {
|
|
125840
|
+
Cards = "CARDS",
|
|
125841
|
+
List = "LIST",
|
|
125842
|
+
Summary = "SUMMARY"
|
|
125843
|
+
}
|
|
125089
125844
|
export declare type JpdViewsServiceCreateGlobalViewInput = {
|
|
125090
125845
|
name: Scalars['String']['input'];
|
|
125091
125846
|
visualizationType: JpdViewsServiceVisualizationType;
|
|
@@ -125154,36 +125909,58 @@ export declare type JpdViewsServiceGlobalView = JpdViewsServiceViewBase & Node &
|
|
|
125154
125909
|
boldColors?: Maybe<Scalars['Boolean']['output']>;
|
|
125155
125910
|
colorBy?: Maybe<JpdViewsServiceField>;
|
|
125156
125911
|
colorStyle?: Maybe<Scalars['String']['output']>;
|
|
125912
|
+
colorStyleNew?: Maybe<JpdViewsServiceColorStyle>;
|
|
125157
125913
|
columnSize?: Maybe<Scalars['String']['output']>;
|
|
125914
|
+
columnSizeNew: JpdViewsServiceColumnSize;
|
|
125158
125915
|
connectionsFilter?: Maybe<Array<Maybe<JpdViewsServiceFilter>>>;
|
|
125916
|
+
connectionsFilterNew: Array<JpdViewsServiceFilter>;
|
|
125159
125917
|
connectionsLayoutType?: Maybe<Scalars['String']['output']>;
|
|
125918
|
+
connectionsLayoutTypeNew: JpdViewsServiceConnectionsLayout;
|
|
125919
|
+
createdAt: Scalars['String']['output'];
|
|
125160
125920
|
createdDate?: Maybe<Scalars['String']['output']>;
|
|
125161
125921
|
description?: Maybe<Scalars['String']['output']>;
|
|
125922
|
+
descriptionNew?: Maybe<Scalars['JSON']['output']>;
|
|
125162
125923
|
emoji?: Maybe<Scalars['String']['output']>;
|
|
125163
125924
|
fieldRollups?: Maybe<Array<Maybe<JpdViewsServiceFieldRollup>>>;
|
|
125925
|
+
fieldRollupsNew: Array<JpdViewsServiceFieldRollup>;
|
|
125164
125926
|
fields?: Maybe<Array<Maybe<JpdViewsServiceField>>>;
|
|
125927
|
+
fieldsNew: Array<JpdViewsServiceField>;
|
|
125165
125928
|
filter?: Maybe<Array<Maybe<JpdViewsServiceFilter>>>;
|
|
125929
|
+
filterNew: Array<JpdViewsServiceFilter>;
|
|
125166
125930
|
groupBy?: Maybe<JpdViewsServiceField>;
|
|
125167
125931
|
groupValues?: Maybe<Array<Maybe<JpdViewsServiceNestedId>>>;
|
|
125932
|
+
groupValuesNew: Array<JpdViewsServiceNestedId>;
|
|
125168
125933
|
groupsFilter?: Maybe<Array<Maybe<JpdViewsServiceFilter>>>;
|
|
125934
|
+
groupsFilterNew: Array<JpdViewsServiceFilter>;
|
|
125935
|
+
hidden: Array<JpdViewsServiceField>;
|
|
125169
125936
|
hiddenFields?: Maybe<Array<Maybe<JpdViewsServiceField>>>;
|
|
125170
125937
|
hideEmptyColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
125938
|
+
hideEmptyColumnsNew: Scalars['Boolean']['output'];
|
|
125171
125939
|
hideEmptyGroups?: Maybe<Scalars['Boolean']['output']>;
|
|
125172
125940
|
id: Scalars['ID']['output'];
|
|
125173
125941
|
layoutType?: Maybe<Scalars['String']['output']>;
|
|
125942
|
+
layoutTypeNew?: Maybe<JpdViewsServiceViewLayoutType>;
|
|
125174
125943
|
matrixConfig?: Maybe<JpdViewsServiceMatrixConfig>;
|
|
125175
125944
|
name: Scalars['String']['output'];
|
|
125176
125945
|
rank?: Maybe<Scalars['Int']['output']>;
|
|
125177
125946
|
showConnectionsMatchingColumn?: Maybe<Scalars['Boolean']['output']>;
|
|
125947
|
+
showConnectionsMatchingColumnNew: Scalars['Boolean']['output'];
|
|
125178
125948
|
showConnectionsMatchingGroup?: Maybe<Scalars['Boolean']['output']>;
|
|
125949
|
+
showConnectionsMatchingGroupNew: Scalars['Boolean']['output'];
|
|
125179
125950
|
sort?: Maybe<JpdViewsServiceSort>;
|
|
125180
125951
|
sortMode?: Maybe<Scalars['String']['output']>;
|
|
125952
|
+
sortModeNew: JpdViewsServiceSortMode;
|
|
125953
|
+
sortNew: Array<JpdViewsServiceSort>;
|
|
125181
125954
|
tableColumnSizes?: Maybe<Array<Maybe<JpdViewsServiceTableColumnSize>>>;
|
|
125182
125955
|
timelineConfig?: Maybe<JpdViewsServiceTimelineConfig>;
|
|
125956
|
+
updatedAt: Scalars['String']['output'];
|
|
125183
125957
|
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
125958
|
+
uuid: Scalars['String']['output'];
|
|
125184
125959
|
verticalGroupBy?: Maybe<JpdViewsServiceField>;
|
|
125185
125960
|
verticalGroupValues?: Maybe<Array<Maybe<JpdViewsServiceNestedId>>>;
|
|
125961
|
+
verticalGroupValuesNew: Array<JpdViewsServiceNestedId>;
|
|
125186
125962
|
verticalGroupsFilter?: Maybe<Array<Maybe<JpdViewsServiceFilter>>>;
|
|
125963
|
+
verticalGroupsFilterNew: Array<JpdViewsServiceFilter>;
|
|
125187
125964
|
viewId: Scalars['String']['output'];
|
|
125188
125965
|
visualizationType: JpdViewsServiceVisualizationType;
|
|
125189
125966
|
};
|
|
@@ -125253,6 +126030,11 @@ export declare type JpdViewsServiceSortInput = {
|
|
|
125253
126030
|
field: Scalars['String']['input'];
|
|
125254
126031
|
order: Scalars['String']['input'];
|
|
125255
126032
|
};
|
|
126033
|
+
export declare enum JpdViewsServiceSortMode {
|
|
126034
|
+
FieldsSort = "FIELDS_SORT",
|
|
126035
|
+
ProjectRank = "PROJECT_RANK",
|
|
126036
|
+
ViewRank = "VIEW_RANK"
|
|
126037
|
+
}
|
|
125256
126038
|
export declare type JpdViewsServiceTableColumnSize = {
|
|
125257
126039
|
__typename?: 'JpdViewsServiceTableColumnSize';
|
|
125258
126040
|
field: JpdViewsServiceField;
|
|
@@ -125267,9 +126049,11 @@ export declare type JpdViewsServiceTimelineConfig = {
|
|
|
125267
126049
|
dueDateField: JpdViewsServiceField;
|
|
125268
126050
|
endTimestamp: Scalars['String']['output'];
|
|
125269
126051
|
mode: Scalars['String']['output'];
|
|
126052
|
+
modeNew: JpdViewsServiceTimelineMode;
|
|
125270
126053
|
startDateField: JpdViewsServiceField;
|
|
125271
126054
|
startTimestamp: Scalars['String']['output'];
|
|
125272
126055
|
summaryCardField: JpdViewsServiceField;
|
|
126056
|
+
todayMarker?: Maybe<JpdViewsServiceTodayMarker>;
|
|
125273
126057
|
};
|
|
125274
126058
|
export declare type JpdViewsServiceTimelineConfigInput = {
|
|
125275
126059
|
dueDateField: Scalars['String']['input'];
|
|
@@ -125278,7 +126062,16 @@ export declare type JpdViewsServiceTimelineConfigInput = {
|
|
|
125278
126062
|
startDateField: Scalars['String']['input'];
|
|
125279
126063
|
startTimestamp: Scalars['String']['input'];
|
|
125280
126064
|
summaryCardField: Scalars['String']['input'];
|
|
126065
|
+
todayMarker?: InputMaybe<Scalars['String']['input']>;
|
|
125281
126066
|
};
|
|
126067
|
+
export declare enum JpdViewsServiceTimelineMode {
|
|
126068
|
+
Months = "MONTHS",
|
|
126069
|
+
Quarters = "QUARTERS"
|
|
126070
|
+
}
|
|
126071
|
+
export declare enum JpdViewsServiceTodayMarker {
|
|
126072
|
+
Disabled = "DISABLED",
|
|
126073
|
+
Enabled = "ENABLED"
|
|
126074
|
+
}
|
|
125282
126075
|
export declare type JpdViewsServiceUnassociateGlobalViewContainerInput = {
|
|
125283
126076
|
containerId: Scalars['String']['input'];
|
|
125284
126077
|
containerType: JpdViewsServiceGlobalViewAssociationContainerType;
|
|
@@ -125308,6 +126101,7 @@ export declare type JpdViewsServiceUpdateGlobalViewInput = {
|
|
|
125308
126101
|
connectionsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput>>>;
|
|
125309
126102
|
connectionsLayoutType?: InputMaybe<Scalars['String']['input']>;
|
|
125310
126103
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
126104
|
+
descriptionNew?: InputMaybe<Scalars['JSON']['input']>;
|
|
125311
126105
|
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
125312
126106
|
fieldRollups?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldRollupInput>>>;
|
|
125313
126107
|
fields?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldInput>>>;
|
|
@@ -125321,7 +126115,7 @@ export declare type JpdViewsServiceUpdateGlobalViewInput = {
|
|
|
125321
126115
|
id: Scalars['ID']['input'];
|
|
125322
126116
|
layoutType?: InputMaybe<Scalars['String']['input']>;
|
|
125323
126117
|
matrixConfig?: InputMaybe<JpdViewsServiceMatrixConfigInput>;
|
|
125324
|
-
name
|
|
126118
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
125325
126119
|
showConnectionsMatchingColumn?: InputMaybe<Scalars['Boolean']['input']>;
|
|
125326
126120
|
showConnectionsMatchingGroup?: InputMaybe<Scalars['Boolean']['input']>;
|
|
125327
126121
|
sort?: InputMaybe<Array<InputMaybe<JpdViewsServiceSortInput>>>;
|
|
@@ -125331,7 +126125,7 @@ export declare type JpdViewsServiceUpdateGlobalViewInput = {
|
|
|
125331
126125
|
verticalGroupBy?: InputMaybe<JpdViewsServiceFieldInput>;
|
|
125332
126126
|
verticalGroupValues?: InputMaybe<Array<InputMaybe<JpdViewsServiceNestedIdInput>>>;
|
|
125333
126127
|
verticalGroupsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput>>>;
|
|
125334
|
-
visualizationType
|
|
126128
|
+
visualizationType?: InputMaybe<JpdViewsServiceVisualizationType>;
|
|
125335
126129
|
};
|
|
125336
126130
|
export declare type JpdViewsServiceUpdateGlobalViewPayload = Payload & {
|
|
125337
126131
|
__typename?: 'JpdViewsServiceUpdateGlobalViewPayload';
|
|
@@ -125351,6 +126145,11 @@ export declare type JpdViewsServiceViewBase = {
|
|
|
125351
126145
|
rank?: Maybe<Scalars['Int']['output']>;
|
|
125352
126146
|
visualizationType: JpdViewsServiceVisualizationType;
|
|
125353
126147
|
};
|
|
126148
|
+
export declare enum JpdViewsServiceViewLayoutType {
|
|
126149
|
+
Compact = "COMPACT",
|
|
126150
|
+
Detailed = "DETAILED",
|
|
126151
|
+
Summary = "SUMMARY"
|
|
126152
|
+
}
|
|
125354
126153
|
export declare enum JpdViewsServiceVisualizationType {
|
|
125355
126154
|
Board = "BOARD",
|
|
125356
126155
|
Matrix = "MATRIX",
|
|
@@ -133143,6 +133942,32 @@ export declare type MercuryBaseJiraWorkStatusMapping = {
|
|
|
133143
133942
|
mappedStatusKey: Scalars['String']['output'];
|
|
133144
133943
|
providerMappingContext?: Maybe<MercuryJiraProviderMappingContext>;
|
|
133145
133944
|
};
|
|
133945
|
+
export declare type MercuryBooleanCustomField = MercuryCustomField & {
|
|
133946
|
+
__typename?: 'MercuryBooleanCustomField';
|
|
133947
|
+
booleanValue?: Maybe<Scalars['Boolean']['output']>;
|
|
133948
|
+
createdBy?: Maybe<User>;
|
|
133949
|
+
createdDate: Scalars['DateTime']['output'];
|
|
133950
|
+
definition?: Maybe<MercuryBooleanCustomFieldDefinition>;
|
|
133951
|
+
updatedBy?: Maybe<User>;
|
|
133952
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
133953
|
+
};
|
|
133954
|
+
export declare type MercuryBooleanCustomFieldDefinition = MercuryCustomFieldDefinition & {
|
|
133955
|
+
__typename?: 'MercuryBooleanCustomFieldDefinition';
|
|
133956
|
+
createdBy?: Maybe<User>;
|
|
133957
|
+
createdDate: Scalars['DateTime']['output'];
|
|
133958
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
133959
|
+
fieldKind: MercuryCustomFieldKind;
|
|
133960
|
+
id: Scalars['ID']['output'];
|
|
133961
|
+
name: Scalars['String']['output'];
|
|
133962
|
+
scope: MercuryCustomFieldDefinitionScope;
|
|
133963
|
+
searchKey?: Maybe<Scalars['String']['output']>;
|
|
133964
|
+
updatedBy?: Maybe<User>;
|
|
133965
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
133966
|
+
visibility: MercuryCustomFieldVisibility;
|
|
133967
|
+
};
|
|
133968
|
+
export declare type MercuryBooleanCustomFieldInput = {
|
|
133969
|
+
booleanValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
133970
|
+
};
|
|
133146
133971
|
export declare type MercuryBudgetAggregation = {
|
|
133147
133972
|
__typename?: 'MercuryBudgetAggregation';
|
|
133148
133973
|
aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
@@ -133547,6 +134372,11 @@ export declare type MercuryCostSubtypeSort = {
|
|
|
133547
134372
|
export declare enum MercuryCostSubtypeSortField {
|
|
133548
134373
|
Name = "NAME"
|
|
133549
134374
|
}
|
|
134375
|
+
export declare enum MercuryCostSummaryDimension {
|
|
134376
|
+
FinancialVersionCostClassification = "FINANCIAL_VERSION_COST_CLASSIFICATION",
|
|
134377
|
+
FinancialVersionExpenditureType = "FINANCIAL_VERSION_EXPENDITURE_TYPE",
|
|
134378
|
+
FinancialVersionInvestmentCategory = "FINANCIAL_VERSION_INVESTMENT_CATEGORY"
|
|
134379
|
+
}
|
|
133550
134380
|
export declare type MercuryCostType = Node & {
|
|
133551
134381
|
__typename?: 'MercuryCostType';
|
|
133552
134382
|
displayName: Scalars['String']['output'];
|
|
@@ -133558,6 +134388,9 @@ export declare type MercuryCreateBaseCustomFieldDefinitionInput = {
|
|
|
133558
134388
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
133559
134389
|
name: Scalars['String']['input'];
|
|
133560
134390
|
};
|
|
134391
|
+
export declare type MercuryCreateBooleanCustomFieldDefinitionInput = {
|
|
134392
|
+
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
134393
|
+
};
|
|
133561
134394
|
export declare type MercuryCreateChangeProposalCommentInput = {
|
|
133562
134395
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
133563
134396
|
content: Scalars['String']['input'];
|
|
@@ -133613,6 +134446,7 @@ export declare type MercuryCreateCommentPayload = Payload & {
|
|
|
133613
134446
|
success: Scalars['Boolean']['output'];
|
|
133614
134447
|
};
|
|
133615
134448
|
export declare type MercuryCreateCoreCustomFieldDefinitionInput = {
|
|
134449
|
+
booleanField?: InputMaybe<MercuryCreateBooleanCustomFieldDefinitionInput>;
|
|
133616
134450
|
dateField?: InputMaybe<MercuryCreateDateCustomFieldDefinitionInput>;
|
|
133617
134451
|
multiSelectField?: InputMaybe<MercuryCreateMultiSelectCustomFieldDefinitionInput>;
|
|
133618
134452
|
numberField?: InputMaybe<MercuryCreateNumberCustomFieldDefinitionInput>;
|
|
@@ -133765,10 +134599,12 @@ export declare type MercuryCreatePortfolioPayload = Payload & {
|
|
|
133765
134599
|
export declare type MercuryCreateRiskInput = {
|
|
133766
134600
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
133767
134601
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
134602
|
+
impact?: InputMaybe<Scalars['Int']['input']>;
|
|
134603
|
+
likelihood?: InputMaybe<Scalars['Int']['input']>;
|
|
133768
134604
|
name: Scalars['String']['input'];
|
|
133769
134605
|
owner?: InputMaybe<Scalars['ID']['input']>;
|
|
133770
134606
|
submitter?: InputMaybe<Scalars['ID']['input']>;
|
|
133771
|
-
targetDate?: InputMaybe<
|
|
134607
|
+
targetDate?: InputMaybe<MercuryRiskTargetDateInput>;
|
|
133772
134608
|
};
|
|
133773
134609
|
export declare type MercuryCreateRiskPayload = Payload & {
|
|
133774
134610
|
__typename?: 'MercuryCreateRiskPayload';
|
|
@@ -133853,6 +134689,7 @@ export declare enum MercuryCustomFieldDefinitionSortField {
|
|
|
133853
134689
|
Name = "NAME"
|
|
133854
134690
|
}
|
|
133855
134691
|
export declare type MercuryCustomFieldInput = {
|
|
134692
|
+
booleanField?: InputMaybe<MercuryBooleanCustomFieldInput>;
|
|
133856
134693
|
dateField?: InputMaybe<MercuryDateCustomFieldInput>;
|
|
133857
134694
|
multiSelectField?: InputMaybe<MercuryMultiSelectCustomFieldInput>;
|
|
133858
134695
|
numberField?: InputMaybe<MercuryNumberCustomFieldInput>;
|
|
@@ -133889,6 +134726,14 @@ export declare type MercuryCustomSelectFieldOptionInput = {
|
|
|
133889
134726
|
settings?: InputMaybe<Array<MercuryCustomFieldSelectionOptionSettingInput>>;
|
|
133890
134727
|
value: Scalars['String']['input'];
|
|
133891
134728
|
};
|
|
134729
|
+
export declare type MercuryDataIntegrationsQueryApi = {
|
|
134730
|
+
__typename?: 'MercuryDataIntegrationsQueryApi';
|
|
134731
|
+
importJob?: Maybe<MercuryImportJob>;
|
|
134732
|
+
};
|
|
134733
|
+
export declare type MercuryDataIntegrationsQueryApiImportJobArgs = {
|
|
134734
|
+
cloudId: Scalars['ID']['input'];
|
|
134735
|
+
importJobId: Scalars['ID']['input'];
|
|
134736
|
+
};
|
|
133892
134737
|
export declare type MercuryDateCustomField = MercuryCustomField & {
|
|
133893
134738
|
__typename?: 'MercuryDateCustomField';
|
|
133894
134739
|
createdBy?: Maybe<User>;
|
|
@@ -134191,6 +135036,19 @@ export declare type MercuryFinancialVersion = Node & {
|
|
|
134191
135036
|
id: Scalars['ID']['output'];
|
|
134192
135037
|
type: MercuryFinancialVersionType;
|
|
134193
135038
|
};
|
|
135039
|
+
export declare type MercuryFinancialVersionConnection = {
|
|
135040
|
+
__typename?: 'MercuryFinancialVersionConnection';
|
|
135041
|
+
edges?: Maybe<Array<MercuryFinancialVersionEdge>>;
|
|
135042
|
+
pageInfo: PageInfo;
|
|
135043
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
135044
|
+
};
|
|
135045
|
+
export declare type MercuryFinancialVersionCostClassificationCostSummary = {
|
|
135046
|
+
__typename?: 'MercuryFinancialVersionCostClassificationCostSummary';
|
|
135047
|
+
costSubtype?: Maybe<MercuryCostSubtype>;
|
|
135048
|
+
costType?: Maybe<MercuryCostType>;
|
|
135049
|
+
total?: Maybe<MercuryMoney>;
|
|
135050
|
+
};
|
|
135051
|
+
export declare type MercuryFinancialVersionCostDimensionSummary = MercuryFinancialVersionCostClassificationCostSummary | MercuryFinancialVersionExpenditureTypeCostSummary | MercuryFinancialVersionInvestmentCategoryCostSummary;
|
|
134194
135052
|
export declare type MercuryFinancialVersionCostPerYearMonthSummary = {
|
|
134195
135053
|
__typename?: 'MercuryFinancialVersionCostPerYearMonthSummary';
|
|
134196
135054
|
financialVersion?: Maybe<MercuryFinancialVersion>;
|
|
@@ -134200,8 +135058,31 @@ export declare type MercuryFinancialVersionCostPerYearMonthSummary = {
|
|
|
134200
135058
|
export declare type MercuryFinancialVersionCostSummary = {
|
|
134201
135059
|
__typename?: 'MercuryFinancialVersionCostSummary';
|
|
134202
135060
|
financialVersion?: Maybe<MercuryFinancialVersion>;
|
|
135061
|
+
financialVersionCostDimensionSummaries?: Maybe<Array<Maybe<MercuryFinancialVersionCostDimensionSummary>>>;
|
|
135062
|
+
total?: Maybe<MercuryMoney>;
|
|
135063
|
+
};
|
|
135064
|
+
export declare type MercuryFinancialVersionEdge = {
|
|
135065
|
+
__typename?: 'MercuryFinancialVersionEdge';
|
|
135066
|
+
cursor: Scalars['String']['output'];
|
|
135067
|
+
node?: Maybe<MercuryFinancialVersion>;
|
|
135068
|
+
};
|
|
135069
|
+
export declare type MercuryFinancialVersionExpenditureTypeCostSummary = {
|
|
135070
|
+
__typename?: 'MercuryFinancialVersionExpenditureTypeCostSummary';
|
|
135071
|
+
expenditureType?: Maybe<MercuryExpenditureType>;
|
|
135072
|
+
total?: Maybe<MercuryMoney>;
|
|
135073
|
+
};
|
|
135074
|
+
export declare type MercuryFinancialVersionInvestmentCategoryCostSummary = {
|
|
135075
|
+
__typename?: 'MercuryFinancialVersionInvestmentCategoryCostSummary';
|
|
135076
|
+
investmentCategory?: Maybe<MercuryInvestmentCategory>;
|
|
134203
135077
|
total?: Maybe<MercuryMoney>;
|
|
134204
135078
|
};
|
|
135079
|
+
export declare type MercuryFinancialVersionSort = {
|
|
135080
|
+
field?: InputMaybe<MercuryFinancialVersionSortField>;
|
|
135081
|
+
order: SortOrder;
|
|
135082
|
+
};
|
|
135083
|
+
export declare enum MercuryFinancialVersionSortField {
|
|
135084
|
+
Type = "TYPE"
|
|
135085
|
+
}
|
|
134205
135086
|
export declare enum MercuryFinancialVersionType {
|
|
134206
135087
|
Actual = "ACTUAL",
|
|
134207
135088
|
Baseline = "BASELINE",
|
|
@@ -134278,6 +135159,7 @@ export declare type MercuryFocusAreaAsksArgs = {
|
|
|
134278
135159
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
134279
135160
|
};
|
|
134280
135161
|
export declare type MercuryFocusAreaCostSummaryArgs = {
|
|
135162
|
+
dimensions?: InputMaybe<Array<MercuryCostSummaryDimension>>;
|
|
134281
135163
|
endYearMonth: Scalars['String']['input'];
|
|
134282
135164
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
134283
135165
|
startYearMonth: Scalars['String']['input'];
|
|
@@ -134823,6 +135705,7 @@ export declare type MercuryFundsQueryApi = {
|
|
|
134823
135705
|
expenditureTypes?: Maybe<Array<Maybe<MercuryExpenditureType>>>;
|
|
134824
135706
|
expenditureTypesByIds?: Maybe<Array<Maybe<MercuryExpenditureType>>>;
|
|
134825
135707
|
financialVersions?: Maybe<Array<Maybe<MercuryFinancialVersion>>>;
|
|
135708
|
+
financialVersionsSearch?: Maybe<MercuryFinancialVersionConnection>;
|
|
134826
135709
|
fiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
134827
135710
|
fiscalCalendarConfigurations?: Maybe<Array<Maybe<MercuryFiscalCalendarConfiguration>>>;
|
|
134828
135711
|
fiscalCalendarConfigurationsSearch?: Maybe<MercuryFiscalCalendarConfigurationConnection>;
|
|
@@ -134877,6 +135760,13 @@ export declare type MercuryFundsQueryApiExpenditureTypesByIdsArgs = {
|
|
|
134877
135760
|
export declare type MercuryFundsQueryApiFinancialVersionsArgs = {
|
|
134878
135761
|
ids: Array<Scalars['ID']['input']>;
|
|
134879
135762
|
};
|
|
135763
|
+
export declare type MercuryFundsQueryApiFinancialVersionsSearchArgs = {
|
|
135764
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
135765
|
+
cloudId: Scalars['ID']['input'];
|
|
135766
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
135767
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
135768
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryFinancialVersionSort>>>;
|
|
135769
|
+
};
|
|
134880
135770
|
export declare type MercuryFundsQueryApiFiscalCalendarConfigurationArgs = {
|
|
134881
135771
|
id: Scalars['ID']['input'];
|
|
134882
135772
|
};
|
|
@@ -134947,6 +135837,34 @@ export declare type MercuryImpactedPositionSummaryByChangeProposalStatus = {
|
|
|
134947
135837
|
countByStatus?: Maybe<Array<Maybe<MercuryPositionCountByStatus>>>;
|
|
134948
135838
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
134949
135839
|
};
|
|
135840
|
+
export declare type MercuryImportExecutionError = {
|
|
135841
|
+
__typename?: 'MercuryImportExecutionError';
|
|
135842
|
+
entityType?: Maybe<MercuryImportExecutionErrorEntityType>;
|
|
135843
|
+
field: Scalars['String']['output'];
|
|
135844
|
+
id: Scalars['ID']['output'];
|
|
135845
|
+
importJobId: Scalars['ID']['output'];
|
|
135846
|
+
message: Scalars['String']['output'];
|
|
135847
|
+
};
|
|
135848
|
+
export declare enum MercuryImportExecutionErrorEntityType {
|
|
135849
|
+
Financial = "FINANCIAL",
|
|
135850
|
+
FocusArea = "FOCUS_AREA",
|
|
135851
|
+
FocusAreaFunds = "FOCUS_AREA_FUNDS",
|
|
135852
|
+
FocusAreaLink = "FOCUS_AREA_LINK",
|
|
135853
|
+
PeopleBudget = "PEOPLE_BUDGET",
|
|
135854
|
+
Team = "TEAM",
|
|
135855
|
+
TeamAllocation = "TEAM_ALLOCATION"
|
|
135856
|
+
}
|
|
135857
|
+
export declare type MercuryImportJob = {
|
|
135858
|
+
__typename?: 'MercuryImportJob';
|
|
135859
|
+
executionErrors?: Maybe<Array<MercuryImportExecutionError>>;
|
|
135860
|
+
id: Scalars['ID']['output'];
|
|
135861
|
+
status: MercuryImportJobStatus;
|
|
135862
|
+
};
|
|
135863
|
+
export declare enum MercuryImportJobStatus {
|
|
135864
|
+
Failed = "FAILED",
|
|
135865
|
+
InProgress = "IN_PROGRESS",
|
|
135866
|
+
Succeeded = "SUCCEEDED"
|
|
135867
|
+
}
|
|
134950
135868
|
export declare type MercuryInsight = {
|
|
134951
135869
|
id: Scalars['ID']['output'];
|
|
134952
135870
|
summary?: Maybe<Scalars['String']['output']>;
|
|
@@ -134971,19 +135889,35 @@ export declare enum MercuryInsightTypeEnum {
|
|
|
134971
135889
|
Position = "POSITION",
|
|
134972
135890
|
Work = "WORK"
|
|
134973
135891
|
}
|
|
135892
|
+
export declare type MercuryInsightWidget = {
|
|
135893
|
+
__typename?: 'MercuryInsightWidget';
|
|
135894
|
+
id: Scalars['ID']['output'];
|
|
135895
|
+
insights?: Maybe<MercuryInsightObjectConnection>;
|
|
135896
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
135897
|
+
rules?: Maybe<Scalars['String']['output']>;
|
|
135898
|
+
};
|
|
135899
|
+
export declare type MercuryInsightWidgetInsightsArgs = {
|
|
135900
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
135901
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
135902
|
+
};
|
|
134974
135903
|
export declare type MercuryInsightsMutationApi = {
|
|
134975
135904
|
__typename?: 'MercuryInsightsMutationApi';
|
|
134976
135905
|
dismissSuggestedFocusAreaFollowers?: Maybe<MercuryDismissSuggestedFocusAreaFollowers>;
|
|
135906
|
+
updateInsightWidget?: Maybe<MercuryUpdateInsightWidgetPayload>;
|
|
134977
135907
|
};
|
|
134978
135908
|
export declare type MercuryInsightsMutationApiDismissSuggestedFocusAreaFollowersArgs = {
|
|
134979
135909
|
input: MercuryDismissSuggestedFocusAreaFollowersInput;
|
|
134980
135910
|
};
|
|
135911
|
+
export declare type MercuryInsightsMutationApiUpdateInsightWidgetArgs = {
|
|
135912
|
+
input: MercuryUpdateInsightWidgetInput;
|
|
135913
|
+
};
|
|
134981
135914
|
export declare type MercuryInsightsQueryApi = {
|
|
134982
135915
|
__typename?: 'MercuryInsightsQueryApi';
|
|
134983
135916
|
focusAreaFollowerSuggestions?: Maybe<Array<MercuryFocusAreaFollowerSuggestion>>;
|
|
134984
135917
|
focusAreaInsights?: Maybe<Array<MercuryInsightObject>>;
|
|
134985
135918
|
focusAreaWorkSuggestions?: Maybe<Array<MercuryWorkSuggestionsSearchItem>>;
|
|
134986
135919
|
forYouInsights?: Maybe<MercuryInsightObjectConnection>;
|
|
135920
|
+
previewInsightWidget?: Maybe<MercuryInsightWidget>;
|
|
134987
135921
|
};
|
|
134988
135922
|
export declare type MercuryInsightsQueryApiFocusAreaFollowerSuggestionsArgs = {
|
|
134989
135923
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -135005,6 +135939,10 @@ export declare type MercuryInsightsQueryApiForYouInsightsArgs = {
|
|
|
135005
135939
|
filter?: InputMaybe<MercuryForYouInsightsFilter>;
|
|
135006
135940
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
135007
135941
|
};
|
|
135942
|
+
export declare type MercuryInsightsQueryApiPreviewInsightWidgetArgs = {
|
|
135943
|
+
cloudId: Scalars['ID']['input'];
|
|
135944
|
+
rules: Scalars['String']['input'];
|
|
135945
|
+
};
|
|
135008
135946
|
export declare type MercuryIntegrationsContext = {
|
|
135009
135947
|
__typename?: 'MercuryIntegrationsContext';
|
|
135010
135948
|
passionfruit?: Maybe<MercuryPassionfruitContext>;
|
|
@@ -136462,12 +137400,15 @@ export declare type MercuryRisk = Node & {
|
|
|
136462
137400
|
description?: Maybe<Scalars['String']['output']>;
|
|
136463
137401
|
id: Scalars['ID']['output'];
|
|
136464
137402
|
impact?: Maybe<MercuryRiskImpact>;
|
|
137403
|
+
justification?: Maybe<Scalars['String']['output']>;
|
|
137404
|
+
likelihood?: Maybe<MercuryRiskLikelihood>;
|
|
137405
|
+
linkedFocusAreas?: Maybe<Array<MercuryFocusArea>>;
|
|
136465
137406
|
name: Scalars['String']['output'];
|
|
136466
137407
|
owner?: Maybe<Scalars['ID']['output']>;
|
|
136467
137408
|
status?: Maybe<MercuryRiskStatus>;
|
|
136468
137409
|
statusTransitions?: Maybe<MercuryRiskStatusTransitions>;
|
|
136469
137410
|
submitter?: Maybe<User>;
|
|
136470
|
-
targetDate?: Maybe<
|
|
137411
|
+
targetDate?: Maybe<MercuryRiskTargetDate>;
|
|
136471
137412
|
updatedDate: Scalars['String']['output'];
|
|
136472
137413
|
};
|
|
136473
137414
|
export declare type MercuryRiskConnection = {
|
|
@@ -136486,14 +137427,22 @@ export declare type MercuryRiskImpact = {
|
|
|
136486
137427
|
key: Scalars['String']['output'];
|
|
136487
137428
|
value: Scalars['Int']['output'];
|
|
136488
137429
|
};
|
|
137430
|
+
export declare type MercuryRiskLikelihood = {
|
|
137431
|
+
__typename?: 'MercuryRiskLikelihood';
|
|
137432
|
+
key: Scalars['String']['output'];
|
|
137433
|
+
value: Scalars['Int']['output'];
|
|
137434
|
+
};
|
|
136489
137435
|
export declare type MercuryRiskSort = {
|
|
136490
137436
|
field: MercuryRiskSortField;
|
|
136491
137437
|
order: SortOrder;
|
|
136492
137438
|
};
|
|
136493
137439
|
export declare enum MercuryRiskSortField {
|
|
137440
|
+
Impact = "IMPACT",
|
|
137441
|
+
Likelihood = "LIKELIHOOD",
|
|
136494
137442
|
Name = "NAME",
|
|
136495
137443
|
Status = "STATUS",
|
|
136496
|
-
TargetDate = "TARGET_DATE"
|
|
137444
|
+
TargetDate = "TARGET_DATE",
|
|
137445
|
+
UpdatedDate = "UPDATED_DATE"
|
|
136497
137446
|
}
|
|
136498
137447
|
export declare type MercuryRiskStatus = {
|
|
136499
137448
|
__typename?: 'MercuryRiskStatus';
|
|
@@ -136518,6 +137467,20 @@ export declare type MercuryRiskStatusTransitions = {
|
|
|
136518
137467
|
__typename?: 'MercuryRiskStatusTransitions';
|
|
136519
137468
|
available: Array<MercuryRiskStatusTransition>;
|
|
136520
137469
|
};
|
|
137470
|
+
export declare type MercuryRiskTargetDate = {
|
|
137471
|
+
__typename?: 'MercuryRiskTargetDate';
|
|
137472
|
+
targetDate: Scalars['String']['output'];
|
|
137473
|
+
targetDateType: MercuryRiskTargetDateType;
|
|
137474
|
+
};
|
|
137475
|
+
export declare type MercuryRiskTargetDateInput = {
|
|
137476
|
+
targetDate: Scalars['String']['input'];
|
|
137477
|
+
targetDateType: MercuryRiskTargetDateType;
|
|
137478
|
+
};
|
|
137479
|
+
export declare enum MercuryRiskTargetDateType {
|
|
137480
|
+
Day = "DAY",
|
|
137481
|
+
Month = "MONTH",
|
|
137482
|
+
Quarter = "QUARTER"
|
|
137483
|
+
}
|
|
136521
137484
|
export declare type MercuryRisksMutationApi = {
|
|
136522
137485
|
__typename?: 'MercuryRisksMutationApi';
|
|
136523
137486
|
createRisk?: Maybe<MercuryCreateRiskPayload>;
|
|
@@ -136526,6 +137489,8 @@ export declare type MercuryRisksMutationApi = {
|
|
|
136526
137489
|
transitionRiskStatus?: Maybe<MercuryTransitionRiskPayload>;
|
|
136527
137490
|
unlinkRiskFromFocusAreas?: Maybe<MercuryUnlinkRiskFromFocusAreasPayload>;
|
|
136528
137491
|
updateRiskDescription?: Maybe<MercuryUpdateRiskPayload>;
|
|
137492
|
+
updateRiskImpact?: Maybe<MercuryUpdateRiskPayload>;
|
|
137493
|
+
updateRiskLikelihood?: Maybe<MercuryUpdateRiskPayload>;
|
|
136529
137494
|
updateRiskName?: Maybe<MercuryUpdateRiskPayload>;
|
|
136530
137495
|
updateRiskOwner?: Maybe<MercuryUpdateRiskPayload>;
|
|
136531
137496
|
updateRiskSubmitter?: Maybe<MercuryUpdateRiskPayload>;
|
|
@@ -136549,6 +137514,12 @@ export declare type MercuryRisksMutationApiUnlinkRiskFromFocusAreasArgs = {
|
|
|
136549
137514
|
export declare type MercuryRisksMutationApiUpdateRiskDescriptionArgs = {
|
|
136550
137515
|
input: MercuryUpdateRiskDescriptionInput;
|
|
136551
137516
|
};
|
|
137517
|
+
export declare type MercuryRisksMutationApiUpdateRiskImpactArgs = {
|
|
137518
|
+
input: MercuryUpdateRiskImpactInput;
|
|
137519
|
+
};
|
|
137520
|
+
export declare type MercuryRisksMutationApiUpdateRiskLikelihoodArgs = {
|
|
137521
|
+
input: MercuryUpdateRiskLikelihoodInput;
|
|
137522
|
+
};
|
|
136552
137523
|
export declare type MercuryRisksMutationApiUpdateRiskNameArgs = {
|
|
136553
137524
|
input: MercuryUpdateRiskNameInput;
|
|
136554
137525
|
};
|
|
@@ -136565,6 +137536,7 @@ export declare type MercuryRisksQueryApi = {
|
|
|
136565
137536
|
__typename?: 'MercuryRisksQueryApi';
|
|
136566
137537
|
risk?: Maybe<MercuryRisk>;
|
|
136567
137538
|
riskImpactValues: Array<MercuryRiskImpact>;
|
|
137539
|
+
riskLikelihoodValues: Array<MercuryRiskLikelihood>;
|
|
136568
137540
|
riskStatuses: Array<MercuryRiskStatus>;
|
|
136569
137541
|
risks?: Maybe<Array<Maybe<MercuryRisk>>>;
|
|
136570
137542
|
risksSearch?: Maybe<MercuryRiskConnection>;
|
|
@@ -136575,6 +137547,9 @@ export declare type MercuryRisksQueryApiRiskArgs = {
|
|
|
136575
137547
|
export declare type MercuryRisksQueryApiRiskImpactValuesArgs = {
|
|
136576
137548
|
cloudId: Scalars['ID']['input'];
|
|
136577
137549
|
};
|
|
137550
|
+
export declare type MercuryRisksQueryApiRiskLikelihoodValuesArgs = {
|
|
137551
|
+
cloudId: Scalars['ID']['input'];
|
|
137552
|
+
};
|
|
136578
137553
|
export declare type MercuryRisksQueryApiRiskStatusesArgs = {
|
|
136579
137554
|
cloudId: Scalars['ID']['input'];
|
|
136580
137555
|
};
|
|
@@ -137511,6 +138486,18 @@ export declare type MercuryUpdateFocusAreaTargetDateInput = {
|
|
|
137511
138486
|
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
137512
138487
|
targetDateType?: InputMaybe<MercuryTargetDateType>;
|
|
137513
138488
|
};
|
|
138489
|
+
export declare type MercuryUpdateInsightWidgetInput = {
|
|
138490
|
+
cloudId: Scalars['ID']['input'];
|
|
138491
|
+
insightWidgetId: Scalars['ID']['input'];
|
|
138492
|
+
prompt: Scalars['String']['input'];
|
|
138493
|
+
};
|
|
138494
|
+
export declare type MercuryUpdateInsightWidgetPayload = Payload & {
|
|
138495
|
+
__typename?: 'MercuryUpdateInsightWidgetPayload';
|
|
138496
|
+
errors?: Maybe<Array<MutationError>>;
|
|
138497
|
+
insightWidget?: Maybe<MercuryInsightWidget>;
|
|
138498
|
+
success: Scalars['Boolean']['output'];
|
|
138499
|
+
suggestion?: Maybe<Scalars['String']['output']>;
|
|
138500
|
+
};
|
|
137514
138501
|
export declare type MercuryUpdateInvestmentCategoryNameInput = {
|
|
137515
138502
|
id: Scalars['ID']['input'];
|
|
137516
138503
|
name: Scalars['String']['input'];
|
|
@@ -137564,6 +138551,14 @@ export declare type MercuryUpdateRiskDescriptionInput = {
|
|
|
137564
138551
|
description: Scalars['String']['input'];
|
|
137565
138552
|
id: Scalars['ID']['input'];
|
|
137566
138553
|
};
|
|
138554
|
+
export declare type MercuryUpdateRiskImpactInput = {
|
|
138555
|
+
id: Scalars['ID']['input'];
|
|
138556
|
+
impact: Scalars['Int']['input'];
|
|
138557
|
+
};
|
|
138558
|
+
export declare type MercuryUpdateRiskLikelihoodInput = {
|
|
138559
|
+
id: Scalars['ID']['input'];
|
|
138560
|
+
likelihood: Scalars['Int']['input'];
|
|
138561
|
+
};
|
|
137567
138562
|
export declare type MercuryUpdateRiskNameInput = {
|
|
137568
138563
|
id: Scalars['ID']['input'];
|
|
137569
138564
|
name: Scalars['String']['input'];
|
|
@@ -137584,7 +138579,7 @@ export declare type MercuryUpdateRiskSubmitterInput = {
|
|
|
137584
138579
|
};
|
|
137585
138580
|
export declare type MercuryUpdateRiskTargetDateInput = {
|
|
137586
138581
|
id: Scalars['ID']['input'];
|
|
137587
|
-
targetDate?: InputMaybe<
|
|
138582
|
+
targetDate?: InputMaybe<MercuryRiskTargetDateInput>;
|
|
137588
138583
|
};
|
|
137589
138584
|
export declare type MercuryUpdateStrategicEventBudgetInput = {
|
|
137590
138585
|
budget?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
@@ -137995,6 +138990,7 @@ export declare type Mutation = {
|
|
|
137995
138990
|
agentStudio_updateAgentAsFavourite?: Maybe<AgentStudioUpdateAgentAsFavouritePayload>;
|
|
137996
138991
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
137997
138992
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
138993
|
+
agentStudio_updateAgentModelVersion?: Maybe<AgentStudioUpdateAgentModelVersionPayload>;
|
|
137998
138994
|
agentStudio_updateAgentVerification?: Maybe<AgentStudioUpdateAgentVerificationPayload>;
|
|
137999
138995
|
agentStudio_updateConversationConfiguration?: Maybe<AgentStudioUpdateConversationConfigurationPayload>;
|
|
138000
138996
|
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
@@ -138093,7 +139089,7 @@ export declare type Mutation = {
|
|
|
138093
139089
|
assetsDM_updateDataSourceType?: Maybe<AssetsDmUpdateDataSourceTypeResponse>;
|
|
138094
139090
|
assetsDM_updateDefaultCleansingRule?: Maybe<AssetsDmUpdateDefaultCleansingRuleResponse>;
|
|
138095
139091
|
assetsVertical_generateInsights?: Maybe<AssetsVerticalGenerateInsightsPayload>;
|
|
138096
|
-
assetsVertical_instantiateBundleByType:
|
|
139092
|
+
assetsVertical_instantiateBundleByType: AssetsVerticalAsyncTaskPayload;
|
|
138097
139093
|
assets_updateObjectAttributeValue?: Maybe<AssetsAttributeOnObject>;
|
|
138098
139094
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
138099
139095
|
attachDanglingComment?: Maybe<Comment>;
|
|
@@ -138286,6 +139282,8 @@ export declare type Mutation = {
|
|
|
138286
139282
|
confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
|
|
138287
139283
|
confluence_updateReviewerDecision?: Maybe<ConfluenceWorkflowReviewerDecisionPayload>;
|
|
138288
139284
|
confluence_updateShareableLink?: Maybe<ConfluenceUpdateShareableLinksPayload>;
|
|
139285
|
+
confluence_updateShareableLinkSiteConfig?: Maybe<ConfluenceUpdateShareableLinkSiteConfigPayload>;
|
|
139286
|
+
confluence_updateShareableLinkSpaceConfig?: Maybe<ConfluenceUpdateShareableLinkSpaceConfigPayload>;
|
|
138289
139287
|
confluence_updateSpaceAccessRequestSettings?: Maybe<ConfluenceUpdateAccessRequestSettingsPayload>;
|
|
138290
139288
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
138291
139289
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
@@ -138457,7 +139455,10 @@ export declare type Mutation = {
|
|
|
138457
139455
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
138458
139456
|
disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
|
|
138459
139457
|
disableSuperAdmin?: Maybe<SuperAdminPayload>;
|
|
139458
|
+
dlp_reClassify?: Maybe<DlpClassificationJobResponse>;
|
|
138460
139459
|
dlp_saveDetectorClassificationMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
139460
|
+
dlp_startPreviewRulesImpact?: Maybe<DlpStartPreviewResponse>;
|
|
139461
|
+
dlp_unClassify?: Maybe<DlpClassificationJobResponse>;
|
|
138461
139462
|
ecosystem?: Maybe<EcosystemMutation>;
|
|
138462
139463
|
editSprint?: Maybe<SprintResponse>;
|
|
138463
139464
|
editorDraftSyncAction?: Maybe<EditorDraftSyncPayload>;
|
|
@@ -138658,6 +139659,7 @@ export declare type Mutation = {
|
|
|
138658
139659
|
jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
|
|
138659
139660
|
jira_setTimelineBarColorMode?: Maybe<JiraSetTimelineBarColorModePayload>;
|
|
138660
139661
|
jira_setTimelineHighlightedReleases?: Maybe<JiraSetTimelineHighlightedReleasesPayload>;
|
|
139662
|
+
jira_setTimelineViewFieldSets?: Maybe<JiraSetTimelineViewFieldSetsPayload>;
|
|
138661
139663
|
jira_setTimelineViewHideDependencies?: Maybe<JiraSetTimelineViewHideDependenciesPayload>;
|
|
138662
139664
|
jira_setTimelineViewHideReleases?: Maybe<JiraSetTimelineViewHideReleasesPayload>;
|
|
138663
139665
|
jira_setTimelineViewHideWarnings?: Maybe<JiraSetTimelineViewHideWarningsPayload>;
|
|
@@ -139113,8 +140115,8 @@ export declare type MutationAdmin_AssignRoleArgs = {
|
|
|
139113
140115
|
orgId: Scalars['ID']['input'];
|
|
139114
140116
|
};
|
|
139115
140117
|
export declare type MutationAdmin_AuditLogEventExportArgs = {
|
|
139116
|
-
|
|
139117
|
-
|
|
140118
|
+
container: AdminAuditLogContainer;
|
|
140119
|
+
input: AdminAuditLogEventExportInput;
|
|
139118
140120
|
};
|
|
139119
140121
|
export declare type MutationAdmin_CreateAccessUrlArgs = {
|
|
139120
140122
|
resourceAri: Scalars['ID']['input'];
|
|
@@ -139287,6 +140289,10 @@ export declare type MutationAgentStudio_UpdateAgentKnowledgeSourcesArgs = {
|
|
|
139287
140289
|
id: Scalars['ID']['input'];
|
|
139288
140290
|
input: AgentStudioKnowledgeConfigurationInput;
|
|
139289
140291
|
};
|
|
140292
|
+
export declare type MutationAgentStudio_UpdateAgentModelVersionArgs = {
|
|
140293
|
+
action: AgentStudioModelUpgradeAction;
|
|
140294
|
+
id: Scalars['ID']['input'];
|
|
140295
|
+
};
|
|
139290
140296
|
export declare type MutationAgentStudio_UpdateAgentVerificationArgs = {
|
|
139291
140297
|
id: Scalars['ID']['input'];
|
|
139292
140298
|
verified: Scalars['Boolean']['input'];
|
|
@@ -139701,8 +140707,7 @@ export declare type MutationAssetsVertical_GenerateInsightsArgs = {
|
|
|
139701
140707
|
input: AssetsVerticalGenerateInsightsInput;
|
|
139702
140708
|
};
|
|
139703
140709
|
export declare type MutationAssetsVertical_InstantiateBundleByTypeArgs = {
|
|
139704
|
-
|
|
139705
|
-
type: AssetsVerticalBundleType;
|
|
140710
|
+
input: AssetsVerticalInstantiateBundleByTypeInput;
|
|
139706
140711
|
};
|
|
139707
140712
|
export declare type MutationAssets_UpdateObjectAttributeValueArgs = {
|
|
139708
140713
|
cloudId: Scalars['ID']['input'];
|
|
@@ -140375,7 +141380,15 @@ export declare type MutationConfluence_UpdateReviewerDecisionArgs = {
|
|
|
140375
141380
|
};
|
|
140376
141381
|
export declare type MutationConfluence_UpdateShareableLinkArgs = {
|
|
140377
141382
|
cloudId: Scalars['ID']['input'];
|
|
140378
|
-
input:
|
|
141383
|
+
input: ConfluenceUpdateShareableLinkInput;
|
|
141384
|
+
};
|
|
141385
|
+
export declare type MutationConfluence_UpdateShareableLinkSiteConfigArgs = {
|
|
141386
|
+
cloudId: Scalars['ID']['input'];
|
|
141387
|
+
input: ConfluenceUpdateShareableLinkSiteConfigInput;
|
|
141388
|
+
};
|
|
141389
|
+
export declare type MutationConfluence_UpdateShareableLinkSpaceConfigArgs = {
|
|
141390
|
+
cloudId: Scalars['ID']['input'];
|
|
141391
|
+
input: ConfluenceUpdateShareableLinkSpaceConfigInput;
|
|
140379
141392
|
};
|
|
140380
141393
|
export declare type MutationConfluence_UpdateSpaceAccessRequestSettingsArgs = {
|
|
140381
141394
|
cloudId: Scalars['ID']['input'];
|
|
@@ -141002,10 +142015,21 @@ export declare type MutationDisableExperimentArgs = {
|
|
|
141002
142015
|
export declare type MutationDisablePublicLinkForPageArgs = {
|
|
141003
142016
|
pageId: Scalars['ID']['input'];
|
|
141004
142017
|
};
|
|
142018
|
+
export declare type MutationDlp_ReClassifyArgs = {
|
|
142019
|
+
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
142020
|
+
};
|
|
141005
142021
|
export declare type MutationDlp_SaveDetectorClassificationMappingArgs = {
|
|
141006
142022
|
mappingRequests?: InputMaybe<Array<InputMaybe<DlpDetectorClassificationMappingRequestInput>>>;
|
|
141007
142023
|
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
141008
142024
|
};
|
|
142025
|
+
export declare type MutationDlp_StartPreviewRulesImpactArgs = {
|
|
142026
|
+
mappings: Array<DlpDetectorClassificationMappingRequestInput>;
|
|
142027
|
+
orgId: Scalars['String']['input'];
|
|
142028
|
+
scope?: InputMaybe<DlpScopeInput>;
|
|
142029
|
+
};
|
|
142030
|
+
export declare type MutationDlp_UnClassifyArgs = {
|
|
142031
|
+
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
142032
|
+
};
|
|
141009
142033
|
export declare type MutationEditSprintArgs = {
|
|
141010
142034
|
input?: InputMaybe<EditSprintInput>;
|
|
141011
142035
|
};
|
|
@@ -141016,7 +142040,7 @@ export declare type MutationEnableExperimentArgs = {
|
|
|
141016
142040
|
experimentKey: Scalars['String']['input'];
|
|
141017
142041
|
};
|
|
141018
142042
|
export declare type MutationEnablePublicLinkForPageArgs = {
|
|
141019
|
-
accessType?: InputMaybe<
|
|
142043
|
+
accessType?: InputMaybe<ConfluenceShareableLinkAccessType>;
|
|
141020
142044
|
pageId: Scalars['ID']['input'];
|
|
141021
142045
|
};
|
|
141022
142046
|
export declare type MutationFavouritePageArgs = {
|
|
@@ -141597,6 +142621,9 @@ export declare type MutationJira_SetTimelineHighlightedReleasesArgs = {
|
|
|
141597
142621
|
cloudId: Scalars['ID']['input'];
|
|
141598
142622
|
input: JiraSetTimelineHighlightedReleasesInput;
|
|
141599
142623
|
};
|
|
142624
|
+
export declare type MutationJira_SetTimelineViewFieldSetsArgs = {
|
|
142625
|
+
input: JiraSetTimelineViewFieldSetsInput;
|
|
142626
|
+
};
|
|
141600
142627
|
export declare type MutationJira_SetTimelineViewHideDependenciesArgs = {
|
|
141601
142628
|
input: JiraSetTimelineViewHideDependenciesInput;
|
|
141602
142629
|
};
|
|
@@ -141760,6 +142787,7 @@ export declare type MutationKitsune_CreateSpaceArgs = {
|
|
|
141760
142787
|
workspaceAri: Scalars['ID']['input'];
|
|
141761
142788
|
};
|
|
141762
142789
|
export declare type MutationKitsune_CreateViewArgs = {
|
|
142790
|
+
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
141763
142791
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
141764
142792
|
name: Scalars['String']['input'];
|
|
141765
142793
|
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -144731,6 +145759,28 @@ export declare enum Platform {
|
|
|
144731
145759
|
Ios = "IOS",
|
|
144732
145760
|
Web = "WEB"
|
|
144733
145761
|
}
|
|
145762
|
+
export declare type PlaybookDetailsForView = {
|
|
145763
|
+
__typename?: 'PlaybookDetailsForView';
|
|
145764
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
145765
|
+
executedOnIssues?: Maybe<Array<PlaybookExecutedIssue>>;
|
|
145766
|
+
id: Scalars['ID']['output'];
|
|
145767
|
+
lastUpdatedAt?: Maybe<Scalars['String']['output']>;
|
|
145768
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
145769
|
+
owner?: Maybe<User>;
|
|
145770
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
145771
|
+
totalExecutionCount?: Maybe<Scalars['Int']['output']>;
|
|
145772
|
+
};
|
|
145773
|
+
export declare type PlaybookDetailsForViewPayload = QueryPayload & {
|
|
145774
|
+
__typename?: 'PlaybookDetailsForViewPayload';
|
|
145775
|
+
errors?: Maybe<Array<QueryError>>;
|
|
145776
|
+
playbook?: Maybe<PlaybookDetailsForView>;
|
|
145777
|
+
success: Scalars['Boolean']['output'];
|
|
145778
|
+
};
|
|
145779
|
+
export declare type PlaybookExecutedIssue = {
|
|
145780
|
+
__typename?: 'PlaybookExecutedIssue';
|
|
145781
|
+
issue?: Maybe<JiraIssue>;
|
|
145782
|
+
lastExecutedAt?: Maybe<Scalars['String']['output']>;
|
|
145783
|
+
};
|
|
144734
145784
|
export declare enum PlaybookTemplateCategory {
|
|
144735
145785
|
Hrsm = "HRSM",
|
|
144736
145786
|
Itsm = "ITSM",
|
|
@@ -144959,6 +146009,10 @@ export declare type PolarisMatrixConfig = {
|
|
|
144959
146009
|
__typename?: 'PolarisMatrixConfig';
|
|
144960
146010
|
axes?: Maybe<Array<PolarisMatrixAxis>>;
|
|
144961
146011
|
};
|
|
146012
|
+
export declare enum PolarisNumberColumnDisplay {
|
|
146013
|
+
Disabled = "DISABLED",
|
|
146014
|
+
Enabled = "ENABLED"
|
|
146015
|
+
}
|
|
144962
146016
|
export declare type PolarisPlay = {
|
|
144963
146017
|
__typename?: 'PolarisPlay';
|
|
144964
146018
|
contribution?: Maybe<PolarisPlayContribution>;
|
|
@@ -145242,6 +146296,7 @@ export declare type PolarisView = {
|
|
|
145242
146296
|
layoutType?: Maybe<PolarisViewLayoutType>;
|
|
145243
146297
|
matrixConfig?: Maybe<PolarisMatrixConfig>;
|
|
145244
146298
|
name: Scalars['String']['output'];
|
|
146299
|
+
numberColumnDisplay?: Maybe<PolarisNumberColumnDisplay>;
|
|
145245
146300
|
projectId: Scalars['Int']['output'];
|
|
145246
146301
|
rank: Scalars['Int']['output'];
|
|
145247
146302
|
showConnectionsMatchingColumn?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -145489,6 +146544,8 @@ export declare type PostOfficeScopeEntryInput = {
|
|
|
145489
146544
|
export declare type PostOfficeSubscriptionMatchersInput = {
|
|
145490
146545
|
atlassianAccountId: Scalars['String']['input'];
|
|
145491
146546
|
placementId: Scalars['String']['input'];
|
|
146547
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
146548
|
+
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
145492
146549
|
};
|
|
145493
146550
|
export declare type PremiumExtensionsFeature = {
|
|
145494
146551
|
__typename?: 'PremiumExtensionsFeature';
|
|
@@ -145642,7 +146699,7 @@ export declare type PublicLinkOnboardingReference = {
|
|
|
145642
146699
|
};
|
|
145643
146700
|
export declare type PublicLinkPage = {
|
|
145644
146701
|
__typename?: 'PublicLinkPage';
|
|
145645
|
-
accessType?: Maybe<
|
|
146702
|
+
accessType?: Maybe<ConfluenceShareableLinkAccessType>;
|
|
145646
146703
|
lastEnabledBy?: Maybe<Scalars['String']['output']>;
|
|
145647
146704
|
lastEnabledByUser?: Maybe<Person>;
|
|
145648
146705
|
lastEnabledDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -145885,6 +146942,7 @@ export declare type Query = {
|
|
|
145885
146942
|
admin_auditLogEventIpAddresses?: Maybe<AdminAuditLogEventIpAddressConnection>;
|
|
145886
146943
|
admin_auditLogEventLocations?: Maybe<AdminAuditLogEventLocationConnection>;
|
|
145887
146944
|
admin_auditLogEvents?: Maybe<AdminAuditLogEventConnection>;
|
|
146945
|
+
admin_auditLogProductMapping?: Maybe<Array<AdminAuditLogProductMapping>>;
|
|
145888
146946
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
145889
146947
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
145890
146948
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
@@ -146224,6 +147282,8 @@ export declare type Query = {
|
|
|
146224
147282
|
confluence_contentAccessRequestByStatus?: Maybe<ConfluenceContentAccessRequestConnection>;
|
|
146225
147283
|
confluence_contentAnalyticsCountUserByContentType?: Maybe<ConfluenceContentAnalyticsCountUserByContentType>;
|
|
146226
147284
|
confluence_contentApprovalStatuses?: Maybe<Array<Maybe<ConfluenceApprovalsWorkflowStatus>>>;
|
|
147285
|
+
confluence_contentPerformanceList?: Maybe<ConfluenceContentPerformanceConnection>;
|
|
147286
|
+
confluence_contentPerformanceSummary?: Maybe<ConfluenceContentPerformanceSummary>;
|
|
146227
147287
|
confluence_contentPermissions?: Maybe<ConfluenceContentPermissions>;
|
|
146228
147288
|
confluence_contentReactionsSummary?: Maybe<ConfluenceReactionSummary>;
|
|
146229
147289
|
confluence_contentSmartLinksForDraft?: Maybe<PaginatedSmartLinkList>;
|
|
@@ -146269,6 +147329,7 @@ export declare type Query = {
|
|
|
146269
147329
|
confluence_mutablePrincipalTypesByCombinationId?: Maybe<Array<Maybe<ConfluencePermissionTransitionMutationPrincipalType>>>;
|
|
146270
147330
|
confluence_mutablePrincipalTypesByCombinationIds?: Maybe<Array<Maybe<ConfluenceMutablePrincipalTypesByCombinationId>>>;
|
|
146271
147331
|
confluence_nbmChainsForTransformation?: Maybe<ConfluenceNbmChainsForTransformationConnection>;
|
|
147332
|
+
confluence_nbmConfigurableTransformers?: Maybe<ConfluenceNbmTransformers>;
|
|
146272
147333
|
confluence_nbmEligibleTransformersForChain?: Maybe<Array<Maybe<ConfluenceNbmTransformer>>>;
|
|
146273
147334
|
confluence_nbmMostRecentVerificationJob?: Maybe<ConfluenceNbmVerificationJob>;
|
|
146274
147335
|
confluence_nbmPerfReportList?: Maybe<ConfluenceNbmScanConnection>;
|
|
@@ -146300,6 +147361,10 @@ export declare type Query = {
|
|
|
146300
147361
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
146301
147362
|
confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
|
|
146302
147363
|
confluence_shareConfiguration?: Maybe<ConfluenceShareConfiguration>;
|
|
147364
|
+
confluence_shareableLinkSiteConfig?: Maybe<ConfluenceShareableLinkSiteConfig>;
|
|
147365
|
+
confluence_shareableLinkSpaceConfig?: Maybe<ConfluenceShareableLinkSpaceConfig>;
|
|
147366
|
+
confluence_slide?: Maybe<ConfluenceSlide>;
|
|
147367
|
+
confluence_slides?: Maybe<Array<Maybe<ConfluenceSlide>>>;
|
|
146303
147368
|
confluence_smartSpaceOverview?: Maybe<ConfluenceSmartSpaceOverview>;
|
|
146304
147369
|
confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
|
|
146305
147370
|
confluence_spacePermissionCombinationsByCriteria?: Maybe<ConfluenceSpacePermissionCombinationConnection>;
|
|
@@ -146468,6 +147533,8 @@ export declare type Query = {
|
|
|
146468
147533
|
diagnostics?: Maybe<Scalars['JSON']['output']>;
|
|
146469
147534
|
dlp_getDetectionContentSummary?: Maybe<DlpDetectionContentSummaryListResponse>;
|
|
146470
147535
|
dlp_getDetectorClassificationMapping?: Maybe<DlpDetectorClassificationMappingListResponse>;
|
|
147536
|
+
dlp_getPreviewRulesImpact?: Maybe<DlpPreviewRulesImpactResponse>;
|
|
147537
|
+
dlp_isClassificationTaskRunning?: Maybe<Scalars['Boolean']['output']>;
|
|
146471
147538
|
dvcs?: Maybe<DvcsQuery>;
|
|
146472
147539
|
echo?: Maybe<Scalars['String']['output']>;
|
|
146473
147540
|
ecosystem?: Maybe<EcosystemQuery>;
|
|
@@ -146609,6 +147676,7 @@ export declare type Query = {
|
|
|
146609
147676
|
jiraServers?: Maybe<JiraServersResult>;
|
|
146610
147677
|
jira_backlog?: Maybe<JiraBacklog>;
|
|
146611
147678
|
jira_backlogView?: Maybe<JiraBacklogView>;
|
|
147679
|
+
jira_backlogViewCardListsByIds?: Maybe<Array<JiraBacklogViewCardList>>;
|
|
146612
147680
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
146613
147681
|
jira_boardViewCellsByIds?: Maybe<Array<Maybe<JiraBoardViewCell>>>;
|
|
146614
147682
|
jira_boardsByIds?: Maybe<Array<Maybe<JiraBoard>>>;
|
|
@@ -146739,6 +147807,7 @@ export declare type Query = {
|
|
|
146739
147807
|
me: AuthenticationContext;
|
|
146740
147808
|
mediaConfiguration?: Maybe<MediaConfiguration>;
|
|
146741
147809
|
mercury?: Maybe<MercuryQueryApi>;
|
|
147810
|
+
mercury_dataIntegrations?: Maybe<MercuryDataIntegrationsQueryApi>;
|
|
146742
147811
|
mercury_funds?: Maybe<MercuryFundsQueryApi>;
|
|
146743
147812
|
mercury_insights?: Maybe<MercuryInsightsQueryApi>;
|
|
146744
147813
|
mercury_jiraAlignProvider?: Maybe<MercuryJiraAlignProviderQueryApi>;
|
|
@@ -146779,6 +147848,8 @@ export declare type Query = {
|
|
|
146779
147848
|
paywallStatus?: Maybe<PaywallStatus>;
|
|
146780
147849
|
permitted?: Maybe<Scalars['Boolean']['output']>;
|
|
146781
147850
|
permsReportDownloadLinkForTask?: Maybe<PermsReportDownloadLink>;
|
|
147851
|
+
playbook_generatePlaybook?: Maybe<GeneratePlaybookPayload>;
|
|
147852
|
+
playbook_getPlaybookDetailsForView?: Maybe<PlaybookDetailsForViewPayload>;
|
|
146782
147853
|
playbook_jiraPlaybook?: Maybe<JiraPlaybookQueryPayload>;
|
|
146783
147854
|
playbook_jiraPlaybookInstancesForIssue?: Maybe<JiraPlaybookInstanceConnection>;
|
|
146784
147855
|
playbook_jiraPlaybookLabelsForProject?: Maybe<JiraPlaybookLabelConnection>;
|
|
@@ -146923,6 +147994,8 @@ export declare type Query = {
|
|
|
146923
147994
|
spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
|
|
146924
147995
|
spf_getMediaToken?: Maybe<SpfMediaTokenResult>;
|
|
146925
147996
|
spf_plan?: Maybe<SpfPlanResult>;
|
|
147997
|
+
spf_planAdminSettings?: Maybe<SpfPlanAdminSettings>;
|
|
147998
|
+
spf_planById?: Maybe<SpfPlan>;
|
|
146926
147999
|
spf_planPortfolioAllowedTypes?: Maybe<Array<Maybe<SpfPlanPortfolioAllowedType>>>;
|
|
146927
148000
|
spf_planScenarioInvestment?: Maybe<SpfPlanScenarioInvestmentResult>;
|
|
146928
148001
|
spf_planScenarioInvestmentsByIds?: Maybe<Array<Maybe<SpfPlanScenarioInvestment>>>;
|
|
@@ -147120,6 +148193,9 @@ export declare type QueryAdmin_AuditLogEventsArgs = {
|
|
|
147120
148193
|
input: AdminFetchAdminAuditLogEventsInput;
|
|
147121
148194
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
147122
148195
|
};
|
|
148196
|
+
export declare type QueryAdmin_AuditLogProductMappingArgs = {
|
|
148197
|
+
container: AdminAuditLogContainer;
|
|
148198
|
+
};
|
|
147123
148199
|
export declare type QueryAdmin_CheckLicensesCapacityArgs = {
|
|
147124
148200
|
input: AdminLicenseInput;
|
|
147125
148201
|
orgId: Scalars['ID']['input'];
|
|
@@ -148709,6 +149785,22 @@ export declare type QueryConfluence_ContentApprovalStatusesArgs = {
|
|
|
148709
149785
|
cloudId: Scalars['ID']['input'];
|
|
148710
149786
|
transitionType?: InputMaybe<ConfluenceApprovalTransitionType>;
|
|
148711
149787
|
};
|
|
149788
|
+
export declare type QueryConfluence_ContentPerformanceListArgs = {
|
|
149789
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
149790
|
+
cloudId: Scalars['ID']['input'];
|
|
149791
|
+
endTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
149792
|
+
filters?: InputMaybe<ConfluenceContentPerformanceFilters>;
|
|
149793
|
+
first: Scalars['Int']['input'];
|
|
149794
|
+
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
149795
|
+
startTimestamp: Scalars['String']['input'];
|
|
149796
|
+
};
|
|
149797
|
+
export declare type QueryConfluence_ContentPerformanceSummaryArgs = {
|
|
149798
|
+
aggregateDimension: ConfluenceAggregationDimension;
|
|
149799
|
+
cloudId: Scalars['ID']['input'];
|
|
149800
|
+
endTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
149801
|
+
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
149802
|
+
startTimestamp: Scalars['String']['input'];
|
|
149803
|
+
};
|
|
148712
149804
|
export declare type QueryConfluence_ContentPermissionsArgs = {
|
|
148713
149805
|
cloudId: Scalars['ID']['input'];
|
|
148714
149806
|
contentId: Scalars['ID']['input'];
|
|
@@ -148920,6 +150012,9 @@ export declare type QueryConfluence_NbmChainsForTransformationArgs = {
|
|
|
148920
150012
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
148921
150013
|
scanId: Scalars['ID']['input'];
|
|
148922
150014
|
};
|
|
150015
|
+
export declare type QueryConfluence_NbmConfigurableTransformersArgs = {
|
|
150016
|
+
cloudId: Scalars['ID']['input'];
|
|
150017
|
+
};
|
|
148923
150018
|
export declare type QueryConfluence_NbmEligibleTransformersForChainArgs = {
|
|
148924
150019
|
chain: Scalars['String']['input'];
|
|
148925
150020
|
cloudId: Scalars['ID']['input'];
|
|
@@ -149009,6 +150104,7 @@ export declare type QueryConfluence_PrincipalsByCombinationIdArgs = {
|
|
|
149009
150104
|
cloudId: Scalars['ID']['input'];
|
|
149010
150105
|
combinationId: Scalars['String']['input'];
|
|
149011
150106
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
150107
|
+
principalId?: InputMaybe<Scalars['String']['input']>;
|
|
149012
150108
|
principalTypes?: InputMaybe<Array<InputMaybe<ConfluencePermissionTransitionPrincipalType>>>;
|
|
149013
150109
|
};
|
|
149014
150110
|
export declare type QueryConfluence_PublicLinkSpaceHomePageArgs = {
|
|
@@ -149081,6 +150177,19 @@ export declare type QueryConfluence_SearchUserArgs = {
|
|
|
149081
150177
|
export declare type QueryConfluence_ShareConfigurationArgs = {
|
|
149082
150178
|
cloudId: Scalars['ID']['input'];
|
|
149083
150179
|
};
|
|
150180
|
+
export declare type QueryConfluence_ShareableLinkSiteConfigArgs = {
|
|
150181
|
+
cloudId: Scalars['ID']['input'];
|
|
150182
|
+
};
|
|
150183
|
+
export declare type QueryConfluence_ShareableLinkSpaceConfigArgs = {
|
|
150184
|
+
cloudId: Scalars['ID']['input'];
|
|
150185
|
+
spaceId: Scalars['ID']['input'];
|
|
150186
|
+
};
|
|
150187
|
+
export declare type QueryConfluence_SlideArgs = {
|
|
150188
|
+
id: Scalars['ID']['input'];
|
|
150189
|
+
};
|
|
150190
|
+
export declare type QueryConfluence_SlidesArgs = {
|
|
150191
|
+
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
150192
|
+
};
|
|
149084
150193
|
export declare type QueryConfluence_SmartSpaceOverviewArgs = {
|
|
149085
150194
|
cloudId: Scalars['ID']['input'];
|
|
149086
150195
|
spaceKey: Scalars['String']['input'];
|
|
@@ -149900,6 +151009,13 @@ export declare type QueryDlp_GetDetectorClassificationMappingArgs = {
|
|
|
149900
151009
|
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
149901
151010
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
149902
151011
|
};
|
|
151012
|
+
export declare type QueryDlp_GetPreviewRulesImpactArgs = {
|
|
151013
|
+
orgId: Scalars['String']['input'];
|
|
151014
|
+
taskId: Scalars['String']['input'];
|
|
151015
|
+
};
|
|
151016
|
+
export declare type QueryDlp_IsClassificationTaskRunningArgs = {
|
|
151017
|
+
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
151018
|
+
};
|
|
149903
151019
|
export declare type QueryEditorConversionSettingsArgs = {
|
|
149904
151020
|
spaceKey: Scalars['String']['input'];
|
|
149905
151021
|
};
|
|
@@ -150391,6 +151507,9 @@ export declare type QueryJira_BacklogArgs = {
|
|
|
150391
151507
|
export declare type QueryJira_BacklogViewArgs = {
|
|
150392
151508
|
input: JiraBacklogViewInput;
|
|
150393
151509
|
};
|
|
151510
|
+
export declare type QueryJira_BacklogViewCardListsByIdsArgs = {
|
|
151511
|
+
ids: Array<Scalars['ID']['input']>;
|
|
151512
|
+
};
|
|
150394
151513
|
export declare type QueryJira_BoardViewArgs = {
|
|
150395
151514
|
input: JiraBoardViewInput;
|
|
150396
151515
|
};
|
|
@@ -150953,6 +152072,12 @@ export declare type QueryPermittedArgs = {
|
|
|
150953
152072
|
export declare type QueryPermsReportDownloadLinkForTaskArgs = {
|
|
150954
152073
|
id: Scalars['ID']['input'];
|
|
150955
152074
|
};
|
|
152075
|
+
export declare type QueryPlaybook_GeneratePlaybookArgs = {
|
|
152076
|
+
input: GeneratePlaybookInput;
|
|
152077
|
+
};
|
|
152078
|
+
export declare type QueryPlaybook_GetPlaybookDetailsForViewArgs = {
|
|
152079
|
+
playbookAri: Scalars['ID']['input'];
|
|
152080
|
+
};
|
|
150956
152081
|
export declare type QueryPlaybook_JiraPlaybookArgs = {
|
|
150957
152082
|
playbookAri: Scalars['ID']['input'];
|
|
150958
152083
|
};
|
|
@@ -151549,6 +152674,12 @@ export declare type QuerySpf_GetMediaTokenArgs = {
|
|
|
151549
152674
|
export declare type QuerySpf_PlanArgs = {
|
|
151550
152675
|
id: Scalars['ID']['input'];
|
|
151551
152676
|
};
|
|
152677
|
+
export declare type QuerySpf_PlanAdminSettingsArgs = {
|
|
152678
|
+
cloudId: Scalars['ID']['input'];
|
|
152679
|
+
};
|
|
152680
|
+
export declare type QuerySpf_PlanByIdArgs = {
|
|
152681
|
+
id: Scalars['ID']['input'];
|
|
152682
|
+
};
|
|
151552
152683
|
export declare type QuerySpf_PlanPortfolioAllowedTypesArgs = {
|
|
151553
152684
|
cloudId: Scalars['ID']['input'];
|
|
151554
152685
|
};
|
|
@@ -153287,6 +154418,7 @@ export declare enum ResourceType {
|
|
|
153287
154418
|
Database = "DATABASE",
|
|
153288
154419
|
Folder = "FOLDER",
|
|
153289
154420
|
Page = "PAGE",
|
|
154421
|
+
Slide = "SLIDE",
|
|
153290
154422
|
Space = "SPACE",
|
|
153291
154423
|
Whiteboard = "WHITEBOARD"
|
|
153292
154424
|
}
|
|
@@ -154846,6 +155978,7 @@ export declare type SearchFirstPartyMetadata = {
|
|
|
154846
155978
|
};
|
|
154847
155979
|
export declare type SearchGitFilters = {
|
|
154848
155980
|
pullRequestStatus?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
155981
|
+
repoName?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
154849
155982
|
};
|
|
154850
155983
|
export declare type SearchGraphQlConfigurationResponse = {
|
|
154851
155984
|
__typename?: 'SearchGraphQLConfigurationResponse';
|
|
@@ -155063,6 +156196,7 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
155063
156196
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
155064
156197
|
includeBoostedLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
155065
156198
|
interleaveResults?: InputMaybe<Scalars['Boolean']['input']>;
|
|
156199
|
+
isSearchTool?: InputMaybe<Scalars['Boolean']['input']>;
|
|
155066
156200
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
155067
156201
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
155068
156202
|
sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
|
|
@@ -176560,6 +177694,10 @@ export declare type SpfPlanScenariosArgs = {
|
|
|
176560
177694
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
176561
177695
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
176562
177696
|
};
|
|
177697
|
+
export declare type SpfPlanAdminSettings = {
|
|
177698
|
+
__typename?: 'SpfPlanAdminSettings';
|
|
177699
|
+
planPortfolioAllowedTypes: Array<Maybe<SpfPlanPortfolioAllowedType>>;
|
|
177700
|
+
};
|
|
176563
177701
|
export declare type SpfPlanApproverConnection = {
|
|
176564
177702
|
__typename?: 'SpfPlanApproverConnection';
|
|
176565
177703
|
edges?: Maybe<Array<Maybe<SpfPlanApproverEdge>>>;
|
|
@@ -178562,7 +179700,7 @@ export declare type Subscription = {
|
|
|
178562
179700
|
postOffice_onMessageReceivedEnriched?: Maybe<PostOfficeEnrichedMessagePayload>;
|
|
178563
179701
|
sandbox: SandboxSubscription;
|
|
178564
179702
|
signup: SignupSubscriptionApi;
|
|
178565
|
-
spf_onPlanUpdate?: Maybe<
|
|
179703
|
+
spf_onPlanUpdate?: Maybe<SpfPlan>;
|
|
178566
179704
|
stakeholderComms_opsgenieRiskAssesmentOnUpdate?: Maybe<StakeholderCommsOpsgenieRiskAssessmentResult>;
|
|
178567
179705
|
testing?: Maybe<TestingSubscription>;
|
|
178568
179706
|
trello: TrelloSubscriptionApi;
|
|
@@ -181164,7 +182302,8 @@ export declare type TownsquareGoalAccessEdge = {
|
|
|
181164
182302
|
};
|
|
181165
182303
|
export declare enum TownsquareGoalAccessLevel {
|
|
181166
182304
|
OpenEdit = "OPEN_EDIT",
|
|
181167
|
-
OpenView = "OPEN_VIEW"
|
|
182305
|
+
OpenView = "OPEN_VIEW",
|
|
182306
|
+
Restricted = "RESTRICTED"
|
|
181168
182307
|
}
|
|
181169
182308
|
export declare enum TownsquareGoalAccessRole {
|
|
181170
182309
|
Editor = "EDITOR",
|
|
@@ -184386,6 +185525,7 @@ export declare type TrelloBaseBoardUpdated = {
|
|
|
184386
185525
|
labels?: Maybe<TrelloLabelConnectionUpdated>;
|
|
184387
185526
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
184388
185527
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
185528
|
+
onLabelDeleted?: Maybe<Array<TrelloLabelDeleted>>;
|
|
184389
185529
|
onPlannerEventCardsDeleted?: Maybe<Array<TrelloPlannerEventCardDeleted>>;
|
|
184390
185530
|
plannerEventCards?: Maybe<TrelloCardUpdatedConnection>;
|
|
184391
185531
|
workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
|
|
@@ -185196,6 +186336,9 @@ export declare type TrelloCardEdgeUpdated = {
|
|
|
185196
186336
|
};
|
|
185197
186337
|
export declare enum TrelloCardExternalSource {
|
|
185198
186338
|
BrowserExtension = "BROWSER_EXTENSION",
|
|
186339
|
+
BrowserExtensionHighlight = "BROWSER_EXTENSION_HIGHLIGHT",
|
|
186340
|
+
BrowserExtensionImage = "BROWSER_EXTENSION_IMAGE",
|
|
186341
|
+
BrowserExtensionLink = "BROWSER_EXTENSION_LINK",
|
|
185199
186342
|
Confluence = "CONFLUENCE",
|
|
185200
186343
|
Email = "EMAIL",
|
|
185201
186344
|
Loom = "LOOM",
|
|
@@ -185438,6 +186581,24 @@ export declare type TrelloCommentCardActionDisplayEntities = {
|
|
|
185438
186581
|
contextOn?: Maybe<TrelloActionTranslatableEntity>;
|
|
185439
186582
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
185440
186583
|
};
|
|
186584
|
+
export declare type TrelloConvertBoardToTemplateInput = {
|
|
186585
|
+
boardId: Scalars['ID']['input'];
|
|
186586
|
+
};
|
|
186587
|
+
export declare type TrelloConvertBoardToTemplatePayload = Payload & {
|
|
186588
|
+
__typename?: 'TrelloConvertBoardToTemplatePayload';
|
|
186589
|
+
board?: Maybe<TrelloBoard>;
|
|
186590
|
+
errors?: Maybe<Array<MutationError>>;
|
|
186591
|
+
success: Scalars['Boolean']['output'];
|
|
186592
|
+
};
|
|
186593
|
+
export declare type TrelloConvertTemplateToBoardInput = {
|
|
186594
|
+
boardId: Scalars['ID']['input'];
|
|
186595
|
+
};
|
|
186596
|
+
export declare type TrelloConvertTemplateToBoardPayload = Payload & {
|
|
186597
|
+
__typename?: 'TrelloConvertTemplateToBoardPayload';
|
|
186598
|
+
board?: Maybe<TrelloBoard>;
|
|
186599
|
+
errors?: Maybe<Array<MutationError>>;
|
|
186600
|
+
success: Scalars['Boolean']['output'];
|
|
186601
|
+
};
|
|
185441
186602
|
export declare type TrelloCopiedCardSource = {
|
|
185442
186603
|
__typename?: 'TrelloCopiedCardSource';
|
|
185443
186604
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -186141,6 +187302,7 @@ export declare type TrelloInboxUpdated = TrelloBaseBoardUpdated & {
|
|
|
186141
187302
|
labels?: Maybe<TrelloLabelConnectionUpdated>;
|
|
186142
187303
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
186143
187304
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
187305
|
+
onLabelDeleted?: Maybe<Array<TrelloLabelDeleted>>;
|
|
186144
187306
|
onPlannerEventCardsDeleted?: Maybe<Array<TrelloPlannerEventCardDeleted>>;
|
|
186145
187307
|
plannerEventCards?: Maybe<TrelloCardUpdatedConnection>;
|
|
186146
187308
|
prefs?: Maybe<TrelloInboxPrefs>;
|
|
@@ -186637,6 +187799,8 @@ export declare type TrelloMutationApi = {
|
|
|
186637
187799
|
assignCardsToPlannerCalendarEvent?: Maybe<TrelloAssignCardsToPlannerCalendarEventPayload>;
|
|
186638
187800
|
bulkDeleteList?: Maybe<TrelloBulkDeleteListPayload>;
|
|
186639
187801
|
closeBoard?: Maybe<TrelloCloseBoardPayload>;
|
|
187802
|
+
convertBoardToTemplate?: Maybe<TrelloConvertBoardToTemplatePayload>;
|
|
187803
|
+
convertTemplateToBoard?: Maybe<TrelloConvertTemplateToBoardPayload>;
|
|
186640
187804
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
186641
187805
|
createBoardWithAi?: Maybe<TrelloCreateBoardWithAiPayload>;
|
|
186642
187806
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
@@ -186666,6 +187830,7 @@ export declare type TrelloMutationApi = {
|
|
|
186666
187830
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
186667
187831
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
186668
187832
|
removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
|
|
187833
|
+
reopenBoard?: Maybe<TrelloReopenBoardPayload>;
|
|
186669
187834
|
resetCardCover?: Maybe<TrelloResetCardCoverPayload>;
|
|
186670
187835
|
retryAiOnBoard?: Maybe<TrelloRetryAiOnBoardPayload>;
|
|
186671
187836
|
rotateOAuth2ClientSecret?: Maybe<TrelloRotateOAuth2ClientSecretPayload>;
|
|
@@ -186704,6 +187869,7 @@ export declare type TrelloMutationApi = {
|
|
|
186704
187869
|
updatePrimaryPlannerAccount?: Maybe<TrelloUpdatePrimaryPlannerAccountPayload>;
|
|
186705
187870
|
updateProactiveSmartScheduleStatus?: Maybe<TrelloUpdateProactiveSmartScheduleStatusPayload>;
|
|
186706
187871
|
updateProposedEvent?: Maybe<TrelloUpdateProposedEventPayload>;
|
|
187872
|
+
updateSmartScheduleBoardPreference?: Maybe<TrelloUpdateSmartScheduleBoardPreferencePayload>;
|
|
186707
187873
|
updateSmartScheduleLastActivity?: Maybe<TrelloUpdateSmartScheduleLastActivityPayload>;
|
|
186708
187874
|
updateWorkspaceTag?: Maybe<TrelloUpdateWorkspaceTagPayload>;
|
|
186709
187875
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
@@ -186738,6 +187904,12 @@ export declare type TrelloMutationApiBulkDeleteListArgs = {
|
|
|
186738
187904
|
export declare type TrelloMutationApiCloseBoardArgs = {
|
|
186739
187905
|
input: TrelloCloseBoardInput;
|
|
186740
187906
|
};
|
|
187907
|
+
export declare type TrelloMutationApiConvertBoardToTemplateArgs = {
|
|
187908
|
+
input: TrelloConvertBoardToTemplateInput;
|
|
187909
|
+
};
|
|
187910
|
+
export declare type TrelloMutationApiConvertTemplateToBoardArgs = {
|
|
187911
|
+
input: TrelloConvertTemplateToBoardInput;
|
|
187912
|
+
};
|
|
186741
187913
|
export declare type TrelloMutationApiCreateApplicationArgs = {
|
|
186742
187914
|
input: TrelloCreateApplicationInput;
|
|
186743
187915
|
};
|
|
@@ -186822,6 +187994,9 @@ export declare type TrelloMutationApiRemoveMemberFromWorkspaceArgs = {
|
|
|
186822
187994
|
export declare type TrelloMutationApiRemoveWorkspaceTagFromBoardArgs = {
|
|
186823
187995
|
input: TrelloRemoveWorkspaceTagFromBoardInput;
|
|
186824
187996
|
};
|
|
187997
|
+
export declare type TrelloMutationApiReopenBoardArgs = {
|
|
187998
|
+
input: TrelloReopenBoardInput;
|
|
187999
|
+
};
|
|
186825
188000
|
export declare type TrelloMutationApiResetCardCoverArgs = {
|
|
186826
188001
|
input: TrelloResetCardCoverInput;
|
|
186827
188002
|
};
|
|
@@ -186933,6 +188108,9 @@ export declare type TrelloMutationApiUpdateProactiveSmartScheduleStatusArgs = {
|
|
|
186933
188108
|
export declare type TrelloMutationApiUpdateProposedEventArgs = {
|
|
186934
188109
|
input: TrelloUpdateProposedEventInput;
|
|
186935
188110
|
};
|
|
188111
|
+
export declare type TrelloMutationApiUpdateSmartScheduleBoardPreferenceArgs = {
|
|
188112
|
+
input: TrelloUpdateSmartScheduleBoardPreferenceInput;
|
|
188113
|
+
};
|
|
186936
188114
|
export declare type TrelloMutationApiUpdateWorkspaceTagArgs = {
|
|
186937
188115
|
input: TrelloUpdateWorkspaceTagInput;
|
|
186938
188116
|
};
|
|
@@ -188052,6 +189230,16 @@ export declare type TrelloRemoveWorkspaceTagFromBoardPayload = Payload & {
|
|
|
188052
189230
|
errors?: Maybe<Array<MutationError>>;
|
|
188053
189231
|
success: Scalars['Boolean']['output'];
|
|
188054
189232
|
};
|
|
189233
|
+
export declare type TrelloReopenBoardInput = {
|
|
189234
|
+
boardId: Scalars['ID']['input'];
|
|
189235
|
+
keepBillableGuests: Scalars['Boolean']['input'];
|
|
189236
|
+
};
|
|
189237
|
+
export declare type TrelloReopenBoardPayload = Payload & {
|
|
189238
|
+
__typename?: 'TrelloReopenBoardPayload';
|
|
189239
|
+
board?: Maybe<TrelloBoard>;
|
|
189240
|
+
errors?: Maybe<Array<MutationError>>;
|
|
189241
|
+
success: Scalars['Boolean']['output'];
|
|
189242
|
+
};
|
|
188055
189243
|
export declare type TrelloResetCardCoverInput = {
|
|
188056
189244
|
cardId: Scalars['ID']['input'];
|
|
188057
189245
|
};
|
|
@@ -188331,7 +189519,7 @@ export declare type TrelloUpdateBoardDescriptionInput = {
|
|
|
188331
189519
|
};
|
|
188332
189520
|
export declare type TrelloUpdateBoardDescriptionPayload = Payload & {
|
|
188333
189521
|
__typename?: 'TrelloUpdateBoardDescriptionPayload';
|
|
188334
|
-
board?: Maybe<
|
|
189522
|
+
board?: Maybe<TrelloBoard>;
|
|
188335
189523
|
errors?: Maybe<Array<MutationError>>;
|
|
188336
189524
|
success: Scalars['Boolean']['output'];
|
|
188337
189525
|
};
|
|
@@ -188347,7 +189535,7 @@ export declare type TrelloUpdateBoardIsTemplatePayload = Payload & {
|
|
|
188347
189535
|
};
|
|
188348
189536
|
export declare type TrelloUpdateBoardNameInput = {
|
|
188349
189537
|
boardId: Scalars['ID']['input'];
|
|
188350
|
-
name
|
|
189538
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
188351
189539
|
};
|
|
188352
189540
|
export declare type TrelloUpdateBoardNamePayload = Payload & {
|
|
188353
189541
|
__typename?: 'TrelloUpdateBoardNamePayload';
|
|
@@ -188684,6 +189872,7 @@ export declare type TrelloUpdateProactiveSmartScheduleStatusInput = {
|
|
|
188684
189872
|
export declare type TrelloUpdateProactiveSmartScheduleStatusPayload = Payload & {
|
|
188685
189873
|
__typename?: 'TrelloUpdateProactiveSmartScheduleStatusPayload';
|
|
188686
189874
|
errors?: Maybe<Array<MutationError>>;
|
|
189875
|
+
member?: Maybe<TrelloMember>;
|
|
188687
189876
|
success: Scalars['Boolean']['output'];
|
|
188688
189877
|
};
|
|
188689
189878
|
export declare type TrelloUpdateProposedEventInput = {
|
|
@@ -188697,6 +189886,16 @@ export declare type TrelloUpdateProposedEventPayload = Payload & {
|
|
|
188697
189886
|
proposedEvent?: Maybe<TrelloProposedEvent>;
|
|
188698
189887
|
success: Scalars['Boolean']['output'];
|
|
188699
189888
|
};
|
|
189889
|
+
export declare type TrelloUpdateSmartScheduleBoardPreferenceInput = {
|
|
189890
|
+
includeInbox?: InputMaybe<Scalars['Boolean']['input']>;
|
|
189891
|
+
preferredBoards?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
189892
|
+
};
|
|
189893
|
+
export declare type TrelloUpdateSmartScheduleBoardPreferencePayload = Payload & {
|
|
189894
|
+
__typename?: 'TrelloUpdateSmartScheduleBoardPreferencePayload';
|
|
189895
|
+
errors?: Maybe<Array<MutationError>>;
|
|
189896
|
+
member?: Maybe<TrelloMember>;
|
|
189897
|
+
success: Scalars['Boolean']['output'];
|
|
189898
|
+
};
|
|
188700
189899
|
export declare type TrelloUpdateSmartScheduleLastActivityPayload = Payload & {
|
|
188701
189900
|
__typename?: 'TrelloUpdateSmartScheduleLastActivityPayload';
|
|
188702
189901
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -188748,10 +189947,13 @@ export declare type TrelloWorkOverviewDashboardJob = {
|
|
|
188748
189947
|
};
|
|
188749
189948
|
export declare enum TrelloWorkOverviewDashboardJobStatus {
|
|
188750
189949
|
Completed = "COMPLETED",
|
|
188751
|
-
|
|
189950
|
+
Created = "CREATED",
|
|
189951
|
+
Discovered = "DISCOVERED",
|
|
189952
|
+
Enqueued = "ENQUEUED",
|
|
188752
189953
|
Failed = "FAILED",
|
|
188753
|
-
|
|
188754
|
-
|
|
189954
|
+
Imported = "IMPORTED",
|
|
189955
|
+
Started = "STARTED",
|
|
189956
|
+
Synced = "SYNCED"
|
|
188755
189957
|
}
|
|
188756
189958
|
export declare type TrelloWorkOverviewDashboardJobUpdated = {
|
|
188757
189959
|
__typename?: 'TrelloWorkOverviewDashboardJobUpdated';
|
|
@@ -190999,6 +192201,7 @@ export declare type UpdatePolarisViewInput = {
|
|
|
190999
192201
|
layoutType?: InputMaybe<PolarisViewLayoutType>;
|
|
191000
192202
|
matrixConfig?: InputMaybe<UpdatePolarisMatrixConfig>;
|
|
191001
192203
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
192204
|
+
numberColumnDisplay?: InputMaybe<PolarisNumberColumnDisplay>;
|
|
191002
192205
|
showConnectionsMatchingColumn?: InputMaybe<Scalars['Boolean']['input']>;
|
|
191003
192206
|
showConnectionsMatchingGroup?: InputMaybe<Scalars['Boolean']['input']>;
|
|
191004
192207
|
sort?: InputMaybe<Array<PolarisSortFieldInput>>;
|