@forge/cli-shared 8.17.0-next.4 → 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 +9 -0
- package/out/graphql/graphql-types.d.ts +1183 -46
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +193 -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'];
|
|
@@ -2456,6 +2471,11 @@ export declare type AdminAuditLogGroupEventActionEdge = {
|
|
|
2456
2471
|
cursor: Scalars['String']['output'];
|
|
2457
2472
|
node: AdminAuditLogGroupEventAction;
|
|
2458
2473
|
};
|
|
2474
|
+
export declare type AdminAuditLogProductMapping = {
|
|
2475
|
+
__typename?: 'AdminAuditLogProductMapping';
|
|
2476
|
+
app: Scalars['String']['output'];
|
|
2477
|
+
prefixes: Array<Scalars['String']['output']>;
|
|
2478
|
+
};
|
|
2459
2479
|
export declare type AdminAuthPolicyConfig = {
|
|
2460
2480
|
__typename?: 'AdminAuthPolicyConfig';
|
|
2461
2481
|
apiToken?: Maybe<AdminApiTokenConfig>;
|
|
@@ -3611,12 +3631,27 @@ export declare type AdminWorkspaceTypeEdge = {
|
|
|
3611
3631
|
cursor: Scalars['String']['output'];
|
|
3612
3632
|
node?: Maybe<AdminWorkspaceType>;
|
|
3613
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
|
+
}
|
|
3614
3648
|
export declare type AgentAiContextPanelResponse = {
|
|
3615
3649
|
__typename?: 'AgentAIContextPanelResponse';
|
|
3616
3650
|
agentSteps?: Maybe<Scalars['String']['output']>;
|
|
3617
3651
|
nextSteps?: Maybe<Scalars['String']['output']>;
|
|
3618
3652
|
reporterDetails?: Maybe<Scalars['String']['output']>;
|
|
3619
3653
|
suggestedActions?: Maybe<Array<Maybe<AgentAiSuggestAction>>>;
|
|
3654
|
+
suggestedNextSteps?: Maybe<AgentAiSuggestedNextSteps>;
|
|
3620
3655
|
summary?: Maybe<Scalars['String']['output']>;
|
|
3621
3656
|
};
|
|
3622
3657
|
export declare type AgentAiContextPanelResult = AgentAiContextPanelResponse | QueryError;
|
|
@@ -3627,10 +3662,16 @@ export declare type AgentAiIssueSummary = {
|
|
|
3627
3662
|
summary?: Maybe<AgentAiSummary>;
|
|
3628
3663
|
};
|
|
3629
3664
|
export declare type AgentAiIssueSummaryResult = AgentAiIssueSummary | QueryError;
|
|
3665
|
+
export declare type AgentAiNextStep = {
|
|
3666
|
+
__typename?: 'AgentAINextStep';
|
|
3667
|
+
content: Scalars['String']['output'];
|
|
3668
|
+
};
|
|
3630
3669
|
export declare type AgentAiPanel = {
|
|
3631
3670
|
__typename?: 'AgentAIPanel';
|
|
3632
3671
|
changesFromLastVisit?: Maybe<Scalars['String']['output']>;
|
|
3672
|
+
nextActions?: Maybe<AgentAiContextPanelResponse>;
|
|
3633
3673
|
shortSummary?: Maybe<Scalars['String']['output']>;
|
|
3674
|
+
tldrGenerationTime?: Maybe<Scalars['Long']['output']>;
|
|
3634
3675
|
};
|
|
3635
3676
|
export declare type AgentAiPanelChangesFromLastVisitArgs = {
|
|
3636
3677
|
lastActivityTime?: InputMaybe<Scalars['Long']['input']>;
|
|
@@ -3665,6 +3706,11 @@ export declare type AgentAiSuggestedActionContext = {
|
|
|
3665
3706
|
id?: Maybe<Scalars['String']['output']>;
|
|
3666
3707
|
suggestion?: Maybe<Scalars['JSON']['output']>;
|
|
3667
3708
|
};
|
|
3709
|
+
export declare type AgentAiSuggestedNextSteps = {
|
|
3710
|
+
__typename?: 'AgentAISuggestedNextSteps';
|
|
3711
|
+
citations: Array<Maybe<AgentAiCitation>>;
|
|
3712
|
+
nextSteps: Array<Maybe<AgentAiNextStep>>;
|
|
3713
|
+
};
|
|
3668
3714
|
export declare type AgentAiSummary = {
|
|
3669
3715
|
__typename?: 'AgentAISummary';
|
|
3670
3716
|
adf?: Maybe<Scalars['String']['output']>;
|
|
@@ -3732,6 +3778,7 @@ export declare type AgentStudioAgent = {
|
|
|
3732
3778
|
description?: Maybe<Scalars['String']['output']>;
|
|
3733
3779
|
etag?: Maybe<Scalars['String']['output']>;
|
|
3734
3780
|
id: Scalars['ID']['output'];
|
|
3781
|
+
isModelUpgradeAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
3735
3782
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
3736
3783
|
name?: Maybe<Scalars['String']['output']>;
|
|
3737
3784
|
permissions?: Maybe<AgentStudioAgentPermissions>;
|
|
@@ -3851,6 +3898,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
3851
3898
|
identityAccountId?: Maybe<Scalars['String']['output']>;
|
|
3852
3899
|
instructions?: Maybe<Scalars['String']['output']>;
|
|
3853
3900
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
3901
|
+
isModelUpgradeAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
3854
3902
|
isVerified?: Maybe<Scalars['Boolean']['output']>;
|
|
3855
3903
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
3856
3904
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -4391,6 +4439,7 @@ export declare type AgentStudioKnowledgeGapSuggestionArticle = {
|
|
|
4391
4439
|
containerAri?: Maybe<Scalars['String']['output']>;
|
|
4392
4440
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
4393
4441
|
description?: Maybe<Scalars['String']['output']>;
|
|
4442
|
+
draftShareId?: Maybe<Scalars['String']['output']>;
|
|
4394
4443
|
evidences?: Maybe<AgentStudioKnowledgeGapEvidences>;
|
|
4395
4444
|
id: Scalars['ID']['output'];
|
|
4396
4445
|
knowledgeCollectionId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -4487,6 +4536,10 @@ export declare type AgentStudioMessageSource = {
|
|
|
4487
4536
|
title?: Maybe<Scalars['String']['output']>;
|
|
4488
4537
|
url?: Maybe<Scalars['String']['output']>;
|
|
4489
4538
|
};
|
|
4539
|
+
export declare enum AgentStudioModelUpgradeAction {
|
|
4540
|
+
Revert = "REVERT",
|
|
4541
|
+
Upgrade = "UPGRADE"
|
|
4542
|
+
}
|
|
4490
4543
|
export declare type AgentStudioPortalChannel = AgentStudioChannel & {
|
|
4491
4544
|
__typename?: 'AgentStudioPortalChannel';
|
|
4492
4545
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -4618,6 +4671,7 @@ export declare type AgentStudioServiceAgent = AgentStudioAgent & Node & {
|
|
|
4618
4671
|
description?: Maybe<Scalars['String']['output']>;
|
|
4619
4672
|
etag?: Maybe<Scalars['String']['output']>;
|
|
4620
4673
|
id: Scalars['ID']['output'];
|
|
4674
|
+
isModelUpgradeAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
4621
4675
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
4622
4676
|
linkedJiraProject?: Maybe<JiraProject>;
|
|
4623
4677
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -4797,6 +4851,12 @@ export declare type AgentStudioUpdateAgentKnowledgeSourcesPayload = Payload & {
|
|
|
4797
4851
|
errors?: Maybe<Array<MutationError>>;
|
|
4798
4852
|
success: Scalars['Boolean']['output'];
|
|
4799
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
|
+
};
|
|
4800
4860
|
export declare type AgentStudioUpdateAgentPermissionInput = {
|
|
4801
4861
|
actorRoles?: InputMaybe<Array<AgentStudioActorRoleInput>>;
|
|
4802
4862
|
etag?: InputMaybe<Scalars['String']['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'];
|
|
@@ -16543,8 +16627,12 @@ export declare type CommerceExpEndsAt = {
|
|
|
16543
16627
|
};
|
|
16544
16628
|
export declare type CommerceExpEnterpriseGatekeeper = {
|
|
16545
16629
|
__typename?: 'CommerceExpEnterpriseGatekeeper';
|
|
16630
|
+
forecasting?: Maybe<CommerceExpForecastingOutput>;
|
|
16546
16631
|
organisations?: Maybe<Array<Maybe<CommerceExpOrganisation>>>;
|
|
16547
16632
|
};
|
|
16633
|
+
export declare type CommerceExpEnterpriseGatekeeperForecastingArgs = {
|
|
16634
|
+
input: CommerceExpForecastingApiInput;
|
|
16635
|
+
};
|
|
16548
16636
|
export declare type CommerceExpEnterpriseInstanceFilter = {
|
|
16549
16637
|
status?: InputMaybe<CommerceExpEntitlementStatus>;
|
|
16550
16638
|
};
|
|
@@ -16612,6 +16700,7 @@ export declare type CommerceExpEntitlementFilter = {
|
|
|
16612
16700
|
excludedProductKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
16613
16701
|
includeFutureDated?: InputMaybe<Scalars['Boolean']['input']>;
|
|
16614
16702
|
includeManuallyBilled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
16703
|
+
invoiceGroupIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
16615
16704
|
isSandbox?: InputMaybe<Scalars['Boolean']['input']>;
|
|
16616
16705
|
pricingPlanTypes?: InputMaybe<Array<CommerceExpCcpPricingType>>;
|
|
16617
16706
|
productKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -16760,6 +16849,28 @@ export declare type CommerceExpExpectedBillsLineItem = {
|
|
|
16760
16849
|
taxItems?: Maybe<Array<Maybe<CommerceExpTaxItemsResponse>>>;
|
|
16761
16850
|
total?: Maybe<Scalars['Float']['output']>;
|
|
16762
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
|
+
};
|
|
16763
16874
|
export declare type CommerceExpGenericEntitlementActionResult = CommerceExpEntitlementActionResult & {
|
|
16764
16875
|
__typename?: 'CommerceExpGenericEntitlementActionResult';
|
|
16765
16876
|
experienceType?: Maybe<CommerceExpEntitlementActionExperienceType>;
|
|
@@ -18407,6 +18518,18 @@ export declare type CommerceExpUpdatePaymentMethodInInvoiceGroupsPayload = Comme
|
|
|
18407
18518
|
errors?: Maybe<Array<MutationError>>;
|
|
18408
18519
|
success: Scalars['Boolean']['output'];
|
|
18409
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
|
+
};
|
|
18410
18533
|
export declare type CommerceExpUpdateShipToPartyPayload = CommerceExpMutationPayload & {
|
|
18411
18534
|
__typename?: 'CommerceExpUpdateShipToPartyPayload';
|
|
18412
18535
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -23899,6 +24022,9 @@ export declare type ConfluenceAdvancedDiagramsFeature = {
|
|
|
23899
24022
|
__typename?: 'ConfluenceAdvancedDiagramsFeature';
|
|
23900
24023
|
isEntitled: Scalars['Boolean']['output'];
|
|
23901
24024
|
};
|
|
24025
|
+
export declare enum ConfluenceAggregationDimension {
|
|
24026
|
+
PerformanceRating = "PERFORMANCE_RATING"
|
|
24027
|
+
}
|
|
23902
24028
|
export declare enum ConfluenceAnalyticsCommentContentType {
|
|
23903
24029
|
Database = "database",
|
|
23904
24030
|
Page = "page",
|
|
@@ -24213,6 +24339,12 @@ export declare enum ConfluenceBodyRepresentation {
|
|
|
24213
24339
|
View = "VIEW",
|
|
24214
24340
|
WhiteboardDocFormat = "WHITEBOARD_DOC_FORMAT"
|
|
24215
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
|
+
};
|
|
24216
24348
|
export declare type ConfluenceBulkNestedConvertToLiveDocsPayload = {
|
|
24217
24349
|
__typename?: 'ConfluenceBulkNestedConvertToLiveDocsPayload';
|
|
24218
24350
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -24737,6 +24869,75 @@ export declare type ConfluenceContentNativeProperties = {
|
|
|
24737
24869
|
current?: Maybe<ConfluenceCurrentContentNativeProperties>;
|
|
24738
24870
|
draft?: Maybe<ConfluenceDraftContentNativeProperties>;
|
|
24739
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
|
+
};
|
|
24740
24941
|
export declare type ConfluenceContentPermission = {
|
|
24741
24942
|
__typename?: 'ConfluenceContentPermission';
|
|
24742
24943
|
permissionType?: Maybe<ContentPermissionType>;
|
|
@@ -26264,6 +26465,11 @@ export declare type ConfluenceLikesSummary = {
|
|
|
26264
26465
|
count?: Maybe<Scalars['Int']['output']>;
|
|
26265
26466
|
likes?: Maybe<Array<Maybe<ConfluenceLike>>>;
|
|
26266
26467
|
};
|
|
26468
|
+
export declare enum ConfluenceLoadTimeRating {
|
|
26469
|
+
Fast = "FAST",
|
|
26470
|
+
Moderate = "MODERATE",
|
|
26471
|
+
Slow = "SLOW"
|
|
26472
|
+
}
|
|
26267
26473
|
export declare type ConfluenceLoginSettings = {
|
|
26268
26474
|
__typename?: 'ConfluenceLoginSettings';
|
|
26269
26475
|
enableElevatedSecurityCheck?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -26708,6 +26914,11 @@ export declare type ConfluenceNbmChainsForTransformationNode = {
|
|
|
26708
26914
|
isReadyForTransformation?: Maybe<Scalars['Boolean']['output']>;
|
|
26709
26915
|
suggestion?: Maybe<Scalars['String']['output']>;
|
|
26710
26916
|
};
|
|
26917
|
+
export declare type ConfluenceNbmConfigurableTransformer = {
|
|
26918
|
+
__typename?: 'ConfluenceNbmConfigurableTransformer';
|
|
26919
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
26920
|
+
name: Scalars['String']['output'];
|
|
26921
|
+
};
|
|
26711
26922
|
export declare type ConfluenceNbmExecuteTestTransformationInput = {
|
|
26712
26923
|
chain: Scalars['String']['input'];
|
|
26713
26924
|
scanId: Scalars['ID']['input'];
|
|
@@ -27025,6 +27236,10 @@ export declare type ConfluenceNbmTransformerConfig = {
|
|
|
27025
27236
|
__typename?: 'ConfluenceNbmTransformerConfig';
|
|
27026
27237
|
transformerNames: Array<Maybe<Scalars['String']['output']>>;
|
|
27027
27238
|
};
|
|
27239
|
+
export declare type ConfluenceNbmTransformers = {
|
|
27240
|
+
__typename?: 'ConfluenceNbmTransformers';
|
|
27241
|
+
transformers: Array<Maybe<ConfluenceNbmConfigurableTransformer>>;
|
|
27242
|
+
};
|
|
27028
27243
|
export declare type ConfluenceNbmUploadTransformerConfigInput = {
|
|
27029
27244
|
scanId: Scalars['ID']['input'];
|
|
27030
27245
|
transformerNames: Array<InputMaybe<Scalars['String']['input']>>;
|
|
@@ -27522,6 +27737,17 @@ export declare type ConfluencePendingAccessRequest = {
|
|
|
27522
27737
|
__typename?: 'ConfluencePendingAccessRequest';
|
|
27523
27738
|
isPendingAccessRequestExists?: Maybe<Scalars['Boolean']['output']>;
|
|
27524
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
|
+
};
|
|
27525
27751
|
export declare enum ConfluencePermission {
|
|
27526
27752
|
Edit = "EDIT",
|
|
27527
27753
|
Share = "SHARE",
|
|
@@ -27783,10 +28009,6 @@ export declare type ConfluencePromotePageTemplatePayload = Payload & {
|
|
|
27783
28009
|
errors?: Maybe<Array<MutationError>>;
|
|
27784
28010
|
success: Scalars['Boolean']['output'];
|
|
27785
28011
|
};
|
|
27786
|
-
export declare enum ConfluencePublicLinkAccessType {
|
|
27787
|
-
External = "EXTERNAL",
|
|
27788
|
-
InternalLicensed = "INTERNAL_LICENSED"
|
|
27789
|
-
}
|
|
27790
28012
|
export declare type ConfluencePublishBlogPostInput = {
|
|
27791
28013
|
id: Scalars['ID']['input'];
|
|
27792
28014
|
publishTitle?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -28433,6 +28655,40 @@ export declare type ConfluenceShareContentPayload = Payload & {
|
|
|
28433
28655
|
success: Scalars['Boolean']['output'];
|
|
28434
28656
|
triggerId?: Maybe<Scalars['String']['output']>;
|
|
28435
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
|
+
}
|
|
28436
28692
|
export declare type ConfluenceSiteConfiguration = {
|
|
28437
28693
|
__typename?: 'ConfluenceSiteConfiguration';
|
|
28438
28694
|
attachmentSettings?: Maybe<ConfluenceAttachmentSettings>;
|
|
@@ -28487,11 +28743,56 @@ export declare enum ConfluenceSiteEmailAddressStatus {
|
|
|
28487
28743
|
Inactive = "INACTIVE",
|
|
28488
28744
|
SiteEmailAddressNotPresent = "SITE_EMAIL_ADDRESS_NOT_PRESENT"
|
|
28489
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
|
+
};
|
|
28490
28772
|
export declare type ConfluenceSmartSpaceOverview = {
|
|
28491
28773
|
__typename?: 'ConfluenceSmartSpaceOverview';
|
|
28774
|
+
faq?: Maybe<ConfluenceSmartSpaceOverviewFaq>;
|
|
28492
28775
|
summary?: Maybe<ConfluenceSmartSpaceOverviewSummary>;
|
|
28493
28776
|
topLinks?: Maybe<ConfluenceSmartSpaceOverviewTopLinks>;
|
|
28494
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
|
+
};
|
|
28495
28796
|
export declare type ConfluenceSmartSpaceOverviewSummary = {
|
|
28496
28797
|
__typename?: 'ConfluenceSmartSpaceOverviewSummary';
|
|
28497
28798
|
body?: Maybe<Scalars['String']['output']>;
|
|
@@ -28643,6 +28944,7 @@ export declare type ConfluenceSpacePermissionCombinationConnection = {
|
|
|
28643
28944
|
spacePermissionCombinationWithoutAssignedSpaceRoleCount?: Maybe<Scalars['Long']['output']>;
|
|
28644
28945
|
totalCount?: Maybe<Scalars['Long']['output']>;
|
|
28645
28946
|
totalOccurrences?: Maybe<Scalars['String']['output']>;
|
|
28947
|
+
totalRoleMatchCount?: Maybe<Scalars['Long']['output']>;
|
|
28646
28948
|
};
|
|
28647
28949
|
export declare type ConfluenceSpacePermissionCombinationEdge = {
|
|
28648
28950
|
__typename?: 'ConfluenceSpacePermissionCombinationEdge';
|
|
@@ -29547,10 +29849,29 @@ export declare type ConfluenceUpdateReviewerDecisionInput = {
|
|
|
29547
29849
|
decisionStatus: ConfluenceReviewerDecisionState;
|
|
29548
29850
|
reviewerId: Scalars['Long']['input'];
|
|
29549
29851
|
};
|
|
29550
|
-
export declare type
|
|
29551
|
-
accessType:
|
|
29852
|
+
export declare type ConfluenceUpdateShareableLinkInput = {
|
|
29853
|
+
accessType: ConfluenceShareableLinkAccessType;
|
|
29552
29854
|
contentId: Scalars['ID']['input'];
|
|
29553
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
|
+
};
|
|
29554
29875
|
export declare type ConfluenceUpdateShareableLinksPayload = Payload & {
|
|
29555
29876
|
__typename?: 'ConfluenceUpdateShareableLinksPayload';
|
|
29556
29877
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -32609,6 +32930,20 @@ export declare type CplsAddWorkScopeAssociationsPayload = Payload & {
|
|
|
32609
32930
|
workDataIds?: Maybe<Array<CplsWorkDataIdEdge>>;
|
|
32610
32931
|
works?: Maybe<Array<CplsWorkEdge>>;
|
|
32611
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
|
+
};
|
|
32612
32947
|
export declare type CplsCapacityPlanningPeopleView = {
|
|
32613
32948
|
__typename?: 'CplsCapacityPlanningPeopleView';
|
|
32614
32949
|
contributor?: Maybe<CplsContributor>;
|
|
@@ -32819,9 +33154,17 @@ export declare type CplsDeleteContributorWorkAssociationInput = {
|
|
|
32819
33154
|
};
|
|
32820
33155
|
export declare type CplsDeleteContributorWorkAssociationPayload = Payload & {
|
|
32821
33156
|
__typename?: 'CplsDeleteContributorWorkAssociationPayload';
|
|
33157
|
+
contributorsByScope?: Maybe<Array<Maybe<CplsContributor>>>;
|
|
32822
33158
|
errors?: Maybe<Array<MutationError>>;
|
|
32823
33159
|
ids?: Maybe<Array<Scalars['ID']['output']>>;
|
|
32824
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'];
|
|
32825
33168
|
};
|
|
32826
33169
|
export declare type CplsDeleteWorkScopeAssociationsInput = {
|
|
32827
33170
|
cloudId: Scalars['ID']['input'];
|
|
@@ -32836,11 +33179,18 @@ export declare type CplsDeleteWorkScopeAssociationsPayload = Payload & {
|
|
|
32836
33179
|
};
|
|
32837
33180
|
export declare type CplsFilterConfiguration = {
|
|
32838
33181
|
__typename?: 'CplsFilterConfiguration';
|
|
33182
|
+
atlasProjects?: Maybe<CplsAtlasProjectConnection>;
|
|
32839
33183
|
contributorDataEntities?: Maybe<CplsContributorDataEntityConnection>;
|
|
32840
33184
|
customContributionTargets?: Maybe<CplsCustomContributionTargetConnection>;
|
|
32841
33185
|
jiraWorkItems?: Maybe<CplsJiraWorkItemConnection>;
|
|
32842
33186
|
workTypes?: Maybe<Array<CplsWorkType>>;
|
|
32843
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
|
+
};
|
|
32844
33194
|
export declare type CplsFilterConfigurationContributorDataEntitiesArgs = {
|
|
32845
33195
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32846
33196
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -35127,6 +35477,10 @@ export declare type CustomerServiceLiveChatAgent = {
|
|
|
35127
35477
|
liveChatActivity?: Maybe<Scalars['String']['output']>;
|
|
35128
35478
|
};
|
|
35129
35479
|
export declare type CustomerServiceLiveChatAgentQueryResult = CustomerServiceLiveChatAgent | QueryError;
|
|
35480
|
+
export declare type CustomerServiceLiveChatSpacesByActivityInput = {
|
|
35481
|
+
activity: Scalars['String']['input'];
|
|
35482
|
+
ids: Array<Scalars['ID']['input']>;
|
|
35483
|
+
};
|
|
35130
35484
|
export declare type CustomerServiceMutationApi = {
|
|
35131
35485
|
__typename?: 'CustomerServiceMutationApi';
|
|
35132
35486
|
acceptEscalation?: Maybe<CustomerServiceAcceptEscalationPayload>;
|
|
@@ -35157,6 +35511,7 @@ export declare type CustomerServiceMutationApi = {
|
|
|
35157
35511
|
updateIndividualAttributeConfig?: Maybe<CustomerServiceAttributeConfigMetadataUpdatePayload>;
|
|
35158
35512
|
updateIndividualAttributeMultiValueByName?: Maybe<CustomerServiceIndividualUpdateAttributeValuePayload>;
|
|
35159
35513
|
updateIndividualAttributeValueByName?: Maybe<CustomerServiceIndividualUpdateAttributeValuePayload>;
|
|
35514
|
+
updateLiveChatAgentActivities?: Maybe<CustomerServiceUpdateLiveChatAgentActivitiesPayload>;
|
|
35160
35515
|
updateNote?: Maybe<CustomerServiceNoteUpdatePayload>;
|
|
35161
35516
|
updateOrganization?: Maybe<CustomerServiceOrganizationUpdatePayload>;
|
|
35162
35517
|
updateOrganizationAttribute?: Maybe<CustomerServiceAttributeUpdatePayload>;
|
|
@@ -35260,6 +35615,9 @@ export declare type CustomerServiceMutationApiUpdateIndividualAttributeMultiValu
|
|
|
35260
35615
|
export declare type CustomerServiceMutationApiUpdateIndividualAttributeValueByNameArgs = {
|
|
35261
35616
|
input: CustomerServiceIndividualUpdateAttributeByNameInput;
|
|
35262
35617
|
};
|
|
35618
|
+
export declare type CustomerServiceMutationApiUpdateLiveChatAgentActivitiesArgs = {
|
|
35619
|
+
input: CustomerServiceUpdateLiveChatAgentActivitiesInput;
|
|
35620
|
+
};
|
|
35263
35621
|
export declare type CustomerServiceMutationApiUpdateNoteArgs = {
|
|
35264
35622
|
input?: InputMaybe<CustomerServiceNoteUpdateInput>;
|
|
35265
35623
|
};
|
|
@@ -35834,6 +36192,17 @@ export declare type CustomerServiceUpdateCustomDetailValuePayload = Payload & {
|
|
|
35834
36192
|
errors?: Maybe<Array<MutationError>>;
|
|
35835
36193
|
success: Scalars['Boolean']['output'];
|
|
35836
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
|
+
};
|
|
35837
36206
|
export declare type CustomerServiceUpdateRequestParticipantInput = {
|
|
35838
36207
|
addedParticipants: Array<Scalars['String']['input']>;
|
|
35839
36208
|
deletedParticipants: Array<Scalars['ID']['input']>;
|
|
@@ -39261,6 +39630,31 @@ export declare enum DistributionStatus {
|
|
|
39261
39630
|
Development = "DEVELOPMENT",
|
|
39262
39631
|
Public = "PUBLIC"
|
|
39263
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
|
+
};
|
|
39264
39658
|
export declare type DlpDetectionContentSummary = {
|
|
39265
39659
|
__typename?: 'DlpDetectionContentSummary';
|
|
39266
39660
|
containerCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -39300,6 +39694,28 @@ export declare enum DlpMappingStatus {
|
|
|
39300
39694
|
Draft = "DRAFT",
|
|
39301
39695
|
Published = "PUBLISHED"
|
|
39302
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
|
+
};
|
|
39303
39719
|
export declare type DlpScope = {
|
|
39304
39720
|
__typename?: 'DlpScope';
|
|
39305
39721
|
scopeType?: Maybe<DlpScopeType>;
|
|
@@ -39312,6 +39728,10 @@ export declare type DlpScopeInput = {
|
|
|
39312
39728
|
export declare enum DlpScopeType {
|
|
39313
39729
|
Workspace = "WORKSPACE"
|
|
39314
39730
|
}
|
|
39731
|
+
export declare type DlpStartPreviewResponse = {
|
|
39732
|
+
__typename?: 'DlpStartPreviewResponse';
|
|
39733
|
+
taskId: Scalars['String']['output'];
|
|
39734
|
+
};
|
|
39315
39735
|
export declare type DocumentBody = {
|
|
39316
39736
|
__typename?: 'DocumentBody';
|
|
39317
39737
|
representation: DocumentRepresentation;
|
|
@@ -39979,6 +40399,7 @@ export declare type EnabledContentTypes = {
|
|
|
39979
40399
|
isEmbedsEnabled: Scalars['Boolean']['output'];
|
|
39980
40400
|
isFoldersEnabled: Scalars['Boolean']['output'];
|
|
39981
40401
|
isLivePagesEnabled: Scalars['Boolean']['output'];
|
|
40402
|
+
isSlidesEnabled: Scalars['Boolean']['output'];
|
|
39982
40403
|
isWhiteboardsEnabled: Scalars['Boolean']['output'];
|
|
39983
40404
|
};
|
|
39984
40405
|
export declare type EnabledContentTypesInput = {
|
|
@@ -39987,6 +40408,7 @@ export declare type EnabledContentTypesInput = {
|
|
|
39987
40408
|
isEmbedsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39988
40409
|
isFoldersEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39989
40410
|
isLivePagesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40411
|
+
isSlidesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39990
40412
|
isWhiteboardsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39991
40413
|
};
|
|
39992
40414
|
export declare type EnabledFeatures = {
|
|
@@ -40508,6 +40930,7 @@ export declare type ExternalComment = Node & {
|
|
|
40508
40930
|
provider?: Maybe<ExternalProvider>;
|
|
40509
40931
|
reactions?: Maybe<Array<Maybe<ExternalReactions>>>;
|
|
40510
40932
|
reactionsV2?: Maybe<Array<Maybe<ExternalReaction>>>;
|
|
40933
|
+
selectedText?: Maybe<Scalars['String']['output']>;
|
|
40511
40934
|
text?: Maybe<Scalars['String']['output']>;
|
|
40512
40935
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
40513
40936
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
@@ -40937,6 +41360,7 @@ export declare type ExternalDocument = Node & {
|
|
|
40937
41360
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
40938
41361
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
40939
41362
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
41363
|
+
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
40940
41364
|
container?: Maybe<ExternalEntity>;
|
|
40941
41365
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
40942
41366
|
content?: Maybe<ExternalLargeContent>;
|
|
@@ -42939,6 +43363,7 @@ export declare type ForgeMetricsLabelGroup = {
|
|
|
42939
43363
|
export declare enum ForgeMetricsLabels {
|
|
42940
43364
|
ForgeApiRequestCount = "FORGE_API_REQUEST_COUNT",
|
|
42941
43365
|
ForgeApiRequestLatency = "FORGE_API_REQUEST_LATENCY",
|
|
43366
|
+
ForgeBackendCustomMetricsCount = "FORGE_BACKEND_CUSTOM_METRICS_COUNT",
|
|
42942
43367
|
ForgeBackendInvocationCount = "FORGE_BACKEND_INVOCATION_COUNT",
|
|
42943
43368
|
ForgeBackendInvocationErrors = "FORGE_BACKEND_INVOCATION_ERRORS",
|
|
42944
43369
|
ForgeBackendInvocationLatency = "FORGE_BACKEND_INVOCATION_LATENCY"
|
|
@@ -48316,6 +48741,7 @@ export declare type GraphStore = {
|
|
|
48316
48741
|
userCanViewConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseConnection>;
|
|
48317
48742
|
userCollaboratedOnDocument?: Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentConnection>;
|
|
48318
48743
|
userCollaboratedOnDocumentInverse?: Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentInverseConnection>;
|
|
48744
|
+
userCommentedOnThirdPartyDocumentInverse?: Maybe<GraphStoreSimplifiedUserCommentedOnThirdPartyDocumentInverseConnection>;
|
|
48319
48745
|
userContributedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostConnection>;
|
|
48320
48746
|
userContributedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseConnection>;
|
|
48321
48747
|
userContributedConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserContributedConfluenceDatabaseConnection>;
|
|
@@ -48476,6 +48902,7 @@ export declare type GraphStore = {
|
|
|
48476
48902
|
userReportsIssueInverse?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseConnection>;
|
|
48477
48903
|
userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
|
|
48478
48904
|
userReviewsPrInverse?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseConnection>;
|
|
48905
|
+
userSharedThirdPartyDocumentInverse?: Maybe<GraphStoreSimplifiedUserSharedThirdPartyDocumentInverseConnection>;
|
|
48479
48906
|
userSnapshottedConfluencePage?: Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageConnection>;
|
|
48480
48907
|
userSnapshottedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageInverseConnection>;
|
|
48481
48908
|
userTaggedInComment?: Maybe<GraphStoreSimplifiedUserTaggedInCommentConnection>;
|
|
@@ -54231,6 +54658,14 @@ export declare type GraphStoreUserCollaboratedOnDocumentInverseArgs = {
|
|
|
54231
54658
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
54232
54659
|
sort?: InputMaybe<GraphStoreUserCollaboratedOnDocumentSortInput>;
|
|
54233
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
|
+
};
|
|
54234
54669
|
export declare type GraphStoreUserContributedConfluenceBlogpostArgs = {
|
|
54235
54670
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
54236
54671
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -55515,6 +55950,14 @@ export declare type GraphStoreUserReviewsPrInverseArgs = {
|
|
|
55515
55950
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55516
55951
|
sort?: InputMaybe<GraphStoreUserReviewsPrSortInput>;
|
|
55517
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
|
+
};
|
|
55518
55961
|
export declare type GraphStoreUserSnapshottedConfluencePageArgs = {
|
|
55519
55962
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
55520
55963
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -57095,7 +57538,7 @@ export declare type GraphStoreBatchContentReferencedEntityEndNode = {
|
|
|
57095
57538
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
57096
57539
|
id: Scalars['ID']['output'];
|
|
57097
57540
|
};
|
|
57098
|
-
export declare type GraphStoreBatchContentReferencedEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
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;
|
|
57099
57542
|
export declare type GraphStoreBatchContentReferencedEntityInnerConnection = {
|
|
57100
57543
|
__typename?: 'GraphStoreBatchContentReferencedEntityInnerConnection';
|
|
57101
57544
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityInnerEdge>>;
|
|
@@ -57120,7 +57563,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
57120
57563
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
57121
57564
|
id: Scalars['ID']['output'];
|
|
57122
57565
|
};
|
|
57123
|
-
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
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;
|
|
57124
57567
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
57125
57568
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
57126
57569
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -59042,7 +59485,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
59042
59485
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
59043
59486
|
id: Scalars['ID']['output'];
|
|
59044
59487
|
};
|
|
59045
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
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;
|
|
59046
59489
|
export declare type GraphStoreCypherQueryStringListObject = {
|
|
59047
59490
|
__typename?: 'GraphStoreCypherQueryStringListObject';
|
|
59048
59491
|
values: Array<Scalars['String']['output']>;
|
|
@@ -59064,13 +59507,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
59064
59507
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
59065
59508
|
id: Scalars['ID']['output'];
|
|
59066
59509
|
};
|
|
59067
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
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;
|
|
59068
59511
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
59069
59512
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
59070
59513
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
59071
59514
|
id: Scalars['ID']['output'];
|
|
59072
59515
|
};
|
|
59073
|
-
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
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;
|
|
59074
59517
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
59075
59518
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
59076
59519
|
value: Scalars['Boolean']['output'];
|
|
@@ -59215,7 +59658,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
59215
59658
|
V2 = "V2",
|
|
59216
59659
|
V3 = "V3"
|
|
59217
59660
|
}
|
|
59218
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
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;
|
|
59219
59662
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
59220
59663
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
59221
59664
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -60052,7 +60495,7 @@ export declare type GraphStoreFullContentReferencedEntityEndNode = {
|
|
|
60052
60495
|
data?: Maybe<GraphStoreFullContentReferencedEntityEndUnion>;
|
|
60053
60496
|
id: Scalars['ID']['output'];
|
|
60054
60497
|
};
|
|
60055
|
-
export declare type GraphStoreFullContentReferencedEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
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;
|
|
60056
60499
|
export declare type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
60057
60500
|
__typename?: 'GraphStoreFullContentReferencedEntityNode';
|
|
60058
60501
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -60066,7 +60509,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
60066
60509
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
60067
60510
|
id: Scalars['ID']['output'];
|
|
60068
60511
|
};
|
|
60069
|
-
export declare type GraphStoreFullContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
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;
|
|
60070
60513
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
60071
60514
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
60072
60515
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -66686,8 +67129,8 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
66686
67129
|
lastUpdated: Scalars['DateTime']['output'];
|
|
66687
67130
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
66688
67131
|
};
|
|
66689
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
66690
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
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;
|
|
66691
67134
|
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
66692
67135
|
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
66693
67136
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConversationHasMessageEdge>>>;
|
|
@@ -72170,6 +72613,20 @@ export declare type GraphStoreSimplifiedUserCollaboratedOnDocumentInverseEdge =
|
|
|
72170
72613
|
};
|
|
72171
72614
|
export declare type GraphStoreSimplifiedUserCollaboratedOnDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
72172
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;
|
|
72173
72630
|
export declare type GraphStoreSimplifiedUserContributedConfluenceBlogpostConnection = HasPageInfo & {
|
|
72174
72631
|
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceBlogpostConnection';
|
|
72175
72632
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostEdge>>>;
|
|
@@ -74414,6 +74871,20 @@ export declare type GraphStoreSimplifiedUserReviewsPrInverseEdge = {
|
|
|
74414
74871
|
};
|
|
74415
74872
|
export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
74416
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;
|
|
74417
74888
|
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageConnection = HasPageInfo & {
|
|
74418
74889
|
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageConnection';
|
|
74419
74890
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageEdge>>>;
|
|
@@ -76383,6 +76854,9 @@ export declare type GraphStoreUserCanViewConfluenceSpaceSortInput = {
|
|
|
76383
76854
|
export declare type GraphStoreUserCollaboratedOnDocumentSortInput = {
|
|
76384
76855
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76385
76856
|
};
|
|
76857
|
+
export declare type GraphStoreUserCommentedOnThirdPartyDocumentSortInput = {
|
|
76858
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76859
|
+
};
|
|
76386
76860
|
export declare type GraphStoreUserContributedConfluenceBlogpostSortInput = {
|
|
76387
76861
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76388
76862
|
};
|
|
@@ -76686,6 +77160,9 @@ export declare type GraphStoreUserReportsIssueSortInput = {
|
|
|
76686
77160
|
export declare type GraphStoreUserReviewsPrSortInput = {
|
|
76687
77161
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76688
77162
|
};
|
|
77163
|
+
export declare type GraphStoreUserSharedThirdPartyDocumentSortInput = {
|
|
77164
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
77165
|
+
};
|
|
76689
77166
|
export declare type GraphStoreUserSnapshottedConfluencePageSortInput = {
|
|
76690
77167
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76691
77168
|
};
|
|
@@ -77199,6 +77676,7 @@ export declare type GraphStoreV2 = {
|
|
|
77199
77676
|
externalUserAttendedExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedExternalUserAttendedExternalCalendarEventInverseConnection>;
|
|
77200
77677
|
externalUserCollaboratedOnExternalDocument?: Maybe<GraphStoreV2SimplifiedExternalUserCollaboratedOnExternalDocumentConnection>;
|
|
77201
77678
|
externalUserCollaboratedOnExternalDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCollaboratedOnExternalDocumentInverseConnection>;
|
|
77679
|
+
externalUserCommentedOnThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCommentedOnThirdPartyDocumentInverseConnection>;
|
|
77202
77680
|
externalUserCreatedExternalBranch?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalBranchConnection>;
|
|
77203
77681
|
externalUserCreatedExternalBranchInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalBranchInverseConnection>;
|
|
77204
77682
|
externalUserCreatedExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventConnection>;
|
|
@@ -77285,6 +77763,7 @@ export declare type GraphStoreV2 = {
|
|
|
77285
77763
|
externalUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestStatusInverseConnection>;
|
|
77286
77764
|
externalUserReviewedExternalPullRequest?: Maybe<GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestConnection>;
|
|
77287
77765
|
externalUserReviewedExternalPullRequestInverse?: Maybe<GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestInverseConnection>;
|
|
77766
|
+
externalUserSharedThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalUserSharedThirdPartyDocumentInverseConnection>;
|
|
77288
77767
|
externalUserUpdatedExternalCustomerContact?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactConnection>;
|
|
77289
77768
|
externalUserUpdatedExternalCustomerContactInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactInverseConnection>;
|
|
77290
77769
|
externalUserUpdatedExternalCustomerOrg?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerOrgConnection>;
|
|
@@ -80255,6 +80734,13 @@ export declare type GraphStoreV2ExternalUserCollaboratedOnExternalDocumentInvers
|
|
|
80255
80734
|
id: Scalars['ID']['input'];
|
|
80256
80735
|
sort?: InputMaybe<GraphStoreV2ExternalUserCollaboratedOnExternalDocumentSortInput>;
|
|
80257
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
|
+
};
|
|
80258
80744
|
export declare type GraphStoreV2ExternalUserCreatedExternalBranchArgs = {
|
|
80259
80745
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
80260
80746
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -80859,6 +81345,13 @@ export declare type GraphStoreV2ExternalUserReviewedExternalPullRequestInverseAr
|
|
|
80859
81345
|
id: Scalars['ID']['input'];
|
|
80860
81346
|
sort?: InputMaybe<GraphStoreV2ExternalUserReviewedExternalPullRequestSortInput>;
|
|
80861
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
|
+
};
|
|
80862
81355
|
export declare type GraphStoreV2ExternalUserUpdatedExternalCustomerContactArgs = {
|
|
80863
81356
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
80864
81357
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -83672,7 +84165,7 @@ export declare type GraphStoreV2CypherQueryV2AriNode = {
|
|
|
83672
84165
|
data?: Maybe<GraphStoreV2CypherQueryV2AriNodeUnion>;
|
|
83673
84166
|
id: Scalars['ID']['output'];
|
|
83674
84167
|
};
|
|
83675
|
-
export declare type GraphStoreV2CypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
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;
|
|
83676
84169
|
export declare type GraphStoreV2CypherQueryV2BoolListObject = {
|
|
83677
84170
|
__typename?: 'GraphStoreV2CypherQueryV2BoolListObject';
|
|
83678
84171
|
values: Array<Scalars['Boolean']['output']>;
|
|
@@ -84289,6 +84782,9 @@ export declare type GraphStoreV2ExternalUserAttendedExternalCalendarEventSortInp
|
|
|
84289
84782
|
export declare type GraphStoreV2ExternalUserCollaboratedOnExternalDocumentSortInput = {
|
|
84290
84783
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84291
84784
|
};
|
|
84785
|
+
export declare type GraphStoreV2ExternalUserCommentedOnThirdPartyDocumentSortInput = {
|
|
84786
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84787
|
+
};
|
|
84292
84788
|
export declare type GraphStoreV2ExternalUserCreatedExternalBranchSortInput = {
|
|
84293
84789
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84294
84790
|
};
|
|
@@ -84435,6 +84931,9 @@ export declare type GraphStoreV2ExternalUserOwnsExternalTestStatusSortInput = {
|
|
|
84435
84931
|
export declare type GraphStoreV2ExternalUserReviewedExternalPullRequestSortInput = {
|
|
84436
84932
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84437
84933
|
};
|
|
84934
|
+
export declare type GraphStoreV2ExternalUserSharedThirdPartyDocumentSortInput = {
|
|
84935
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84936
|
+
};
|
|
84438
84937
|
export declare type GraphStoreV2ExternalUserUpdatedExternalCustomerContactSortInput = {
|
|
84439
84938
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84440
84939
|
};
|
|
@@ -90067,8 +90566,8 @@ export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseEdge =
|
|
|
90067
90566
|
lastUpdated: Scalars['DateTime']['output'];
|
|
90068
90567
|
node?: Maybe<GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion>;
|
|
90069
90568
|
};
|
|
90070
|
-
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
90071
|
-
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
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;
|
|
90072
90571
|
export declare type GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemConnection = HasPageInfo & {
|
|
90073
90572
|
__typename?: 'GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemConnection';
|
|
90074
90573
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemEdge>>>;
|
|
@@ -91521,6 +92020,20 @@ export declare type GraphStoreV2SimplifiedExternalUserCollaboratedOnExternalDocu
|
|
|
91521
92020
|
};
|
|
91522
92021
|
export declare type GraphStoreV2SimplifiedExternalUserCollaboratedOnExternalDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
91523
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;
|
|
91524
92037
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalBranchConnection = HasPageInfo & {
|
|
91525
92038
|
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalBranchConnection';
|
|
91526
92039
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalBranchEdge>>>;
|
|
@@ -92729,6 +93242,20 @@ export declare type GraphStoreV2SimplifiedExternalUserReviewedExternalPullReques
|
|
|
92729
93242
|
};
|
|
92730
93243
|
export declare type GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
92731
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;
|
|
92732
93259
|
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactConnection = HasPageInfo & {
|
|
92733
93260
|
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactConnection';
|
|
92734
93261
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactEdge>>>;
|
|
@@ -96457,7 +96984,7 @@ export declare type GravityField = {
|
|
|
96457
96984
|
__typename?: 'GravityField';
|
|
96458
96985
|
configuration?: Maybe<Scalars['JSON']['output']>;
|
|
96459
96986
|
custom: Scalars['Boolean']['output'];
|
|
96460
|
-
description?: Maybe<Scalars['
|
|
96987
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
96461
96988
|
global: Scalars['Boolean']['output'];
|
|
96462
96989
|
key: Scalars['String']['output'];
|
|
96463
96990
|
name: Scalars['String']['output'];
|
|
@@ -96467,7 +96994,7 @@ export declare type GravityField = {
|
|
|
96467
96994
|
export declare type GravityFieldDefinition = {
|
|
96468
96995
|
__typename?: 'GravityFieldDefinition';
|
|
96469
96996
|
configuration?: Maybe<Scalars['JSON']['output']>;
|
|
96470
|
-
description?: Maybe<Scalars['
|
|
96997
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
96471
96998
|
global: Scalars['Boolean']['output'];
|
|
96472
96999
|
name: Scalars['String']['output'];
|
|
96473
97000
|
options?: Maybe<Array<Scalars['JSON']['output']>>;
|
|
@@ -96535,8 +97062,8 @@ export declare type GravityRefMappingsInput = {
|
|
|
96535
97062
|
fields: Array<GravityFieldRefMappingInput>;
|
|
96536
97063
|
};
|
|
96537
97064
|
export declare enum GravityRefResolutionStrategy {
|
|
96538
|
-
|
|
96539
|
-
|
|
97065
|
+
CreateIfUnmapped = "CREATE_IF_UNMAPPED",
|
|
97066
|
+
FailIfUnmapped = "FAIL_IF_UNMAPPED"
|
|
96540
97067
|
}
|
|
96541
97068
|
export declare enum GravitySortOrder {
|
|
96542
97069
|
Asc = "ASC",
|
|
@@ -98045,6 +98572,7 @@ export declare type HelpCenterHubProductEntityResult = {
|
|
|
98045
98572
|
data?: Maybe<HelpCenterProductEntityConnection>;
|
|
98046
98573
|
entityType: Scalars['String']['output'];
|
|
98047
98574
|
filterCriteria: HelpCenterProductEntityFilterCriteria;
|
|
98575
|
+
helpCenterAri?: Maybe<Scalars['ID']['output']>;
|
|
98048
98576
|
helpCenterId?: Maybe<Scalars['ID']['output']>;
|
|
98049
98577
|
parentFilters?: Maybe<HelpCenterParentFilters>;
|
|
98050
98578
|
sortConfig?: Maybe<HelpCenterProductEntitySortConfigOutput>;
|
|
@@ -98346,7 +98874,7 @@ export declare enum HelpCenterPortalsType {
|
|
|
98346
98874
|
Hidden = "HIDDEN",
|
|
98347
98875
|
Visible = "VISIBLE"
|
|
98348
98876
|
}
|
|
98349
|
-
export declare type HelpCenterProductEntityConnection = HelpObjectStoreProductEntityConnection | JiraServiceManagementRequestTypeConnection | QueryError;
|
|
98877
|
+
export declare type HelpCenterProductEntityConnection = HelpObjectStorePortalGroupsConnection | HelpObjectStoreProductEntityConnection | JiraServiceManagementRequestTypeConnection | QueryError;
|
|
98350
98878
|
export declare type HelpCenterProductEntityFilter = {
|
|
98351
98879
|
parentId?: InputMaybe<Scalars['String']['input']>;
|
|
98352
98880
|
subEntityTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -98356,6 +98884,7 @@ export declare type HelpCenterProductEntityFilterCriteria = {
|
|
|
98356
98884
|
after?: Maybe<Scalars['String']['output']>;
|
|
98357
98885
|
cloudId: Scalars['ID']['output'];
|
|
98358
98886
|
first?: Maybe<Scalars['Int']['output']>;
|
|
98887
|
+
helpCenterAri?: Maybe<Scalars['ID']['output']>;
|
|
98359
98888
|
};
|
|
98360
98889
|
export declare type HelpCenterProductEntityFilterOutput = {
|
|
98361
98890
|
__typename?: 'HelpCenterProductEntityFilterOutput';
|
|
@@ -98393,7 +98922,8 @@ export declare type HelpCenterProductEntitySortConfigOutput = {
|
|
|
98393
98922
|
export declare enum HelpCenterProductEntityType {
|
|
98394
98923
|
CommonRequestTypes = "COMMON_REQUEST_TYPES",
|
|
98395
98924
|
JsmHelpObjects = "JSM_HELP_OBJECTS",
|
|
98396
|
-
KnowledgeCards = "KNOWLEDGE_CARDS"
|
|
98925
|
+
KnowledgeCards = "KNOWLEDGE_CARDS",
|
|
98926
|
+
PortalGroups = "PORTAL_GROUPS"
|
|
98397
98927
|
}
|
|
98398
98928
|
export declare type HelpCenterProjectMappingData = {
|
|
98399
98929
|
__typename?: 'HelpCenterProjectMappingData';
|
|
@@ -99544,6 +100074,7 @@ export declare type HelpObjectStoreEntityDataGeneric = HelpObjectStoreEntityData
|
|
|
99544
100074
|
export declare enum HelpObjectStoreEntityTypes {
|
|
99545
100075
|
ExtResources = "EXT_RESOURCES",
|
|
99546
100076
|
KbArticles = "KB_ARTICLES",
|
|
100077
|
+
PortalGroups = "PORTAL_GROUPS",
|
|
99547
100078
|
RequestTypes = "REQUEST_TYPES"
|
|
99548
100079
|
}
|
|
99549
100080
|
export declare type HelpObjectStoreFilter = {
|
|
@@ -99601,6 +100132,33 @@ export declare type HelpObjectStorePortal = HelpObjectStoreHelpObject & Node & {
|
|
|
99601
100132
|
id: Scalars['ID']['output'];
|
|
99602
100133
|
title?: Maybe<Scalars['String']['output']>;
|
|
99603
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;
|
|
99604
100162
|
export declare type HelpObjectStorePortalMetadata = {
|
|
99605
100163
|
__typename?: 'HelpObjectStorePortalMetadata';
|
|
99606
100164
|
searchStrategy: HelpObjectStorePortalSearchStrategy;
|
|
@@ -99639,6 +100197,7 @@ export declare type HelpObjectStoreProductEntityInput = {
|
|
|
99639
100197
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
99640
100198
|
cloudId: Scalars['ID']['input'];
|
|
99641
100199
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
100200
|
+
helpCenterAri?: InputMaybe<Scalars['ID']['input']>;
|
|
99642
100201
|
};
|
|
99643
100202
|
export declare type HelpObjectStoreProductEntityResult = HelpObjectStoreProductEntityConnection | QueryError;
|
|
99644
100203
|
export declare type HelpObjectStoreQueryApi = {
|
|
@@ -99646,6 +100205,7 @@ export declare type HelpObjectStoreQueryApi = {
|
|
|
99646
100205
|
articles?: Maybe<Array<Maybe<HelpObjectStoreArticleResult>>>;
|
|
99647
100206
|
channels?: Maybe<Array<Maybe<HelpObjectStoreChannelResult>>>;
|
|
99648
100207
|
helpObjects?: Maybe<HelpObjectStoreProductEntityResult>;
|
|
100208
|
+
portalGroups?: Maybe<HelpObjectStorePortalGroupsResult>;
|
|
99649
100209
|
requestForms?: Maybe<Array<Maybe<HelpObjectStoreRequestFormResult>>>;
|
|
99650
100210
|
searchHelpObjects?: Maybe<Array<Maybe<HelpObjectStoreHelpCenterSearchResult>>>;
|
|
99651
100211
|
};
|
|
@@ -99660,6 +100220,10 @@ export declare type HelpObjectStoreQueryApiHelpObjectsArgs = {
|
|
|
99660
100220
|
input: HelpObjectStoreProductEntityInput;
|
|
99661
100221
|
sortConfig?: InputMaybe<HelpObjectStoreSortConfig>;
|
|
99662
100222
|
};
|
|
100223
|
+
export declare type HelpObjectStoreQueryApiPortalGroupsArgs = {
|
|
100224
|
+
filters?: InputMaybe<HelpObjectStoreFilters>;
|
|
100225
|
+
input: HelpObjectStoreProductEntityInput;
|
|
100226
|
+
};
|
|
99663
100227
|
export declare type HelpObjectStoreQueryApiRequestFormsArgs = {
|
|
99664
100228
|
ids: Array<Scalars['ID']['input']>;
|
|
99665
100229
|
};
|
|
@@ -101118,6 +101682,7 @@ export declare type JiraAffectedServicesField = JiraHasMultipleSelectedValues &
|
|
|
101118
101682
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
101119
101683
|
fieldId: Scalars['String']['output'];
|
|
101120
101684
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
101685
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
101121
101686
|
id: Scalars['ID']['output'];
|
|
101122
101687
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
101123
101688
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -101193,6 +101758,7 @@ export declare type JiraAggregatedStatusField = JiraIssueField & Node & {
|
|
|
101193
101758
|
description?: Maybe<Scalars['String']['output']>;
|
|
101194
101759
|
fieldId: Scalars['String']['output'];
|
|
101195
101760
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
101761
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
101196
101762
|
id: Scalars['ID']['output'];
|
|
101197
101763
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
101198
101764
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -101215,6 +101781,7 @@ export declare type JiraAggregatedTimelineField = JiraIssueField & JiraTimelineV
|
|
|
101215
101781
|
description?: Maybe<Scalars['String']['output']>;
|
|
101216
101782
|
fieldId: Scalars['String']['output'];
|
|
101217
101783
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
101784
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
101218
101785
|
id: Scalars['ID']['output'];
|
|
101219
101786
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
101220
101787
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -101661,6 +102228,7 @@ export declare type JiraAssetField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
101661
102228
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
101662
102229
|
fieldId: Scalars['String']['output'];
|
|
101663
102230
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
102231
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
101664
102232
|
id: Scalars['ID']['output'];
|
|
101665
102233
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
101666
102234
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -101748,6 +102316,7 @@ export declare type JiraAtlasProjectField = JiraIssueField & JiraIssueFieldConfi
|
|
|
101748
102316
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
101749
102317
|
fieldId: Scalars['String']['output'];
|
|
101750
102318
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
102319
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
101751
102320
|
id: Scalars['ID']['output'];
|
|
101752
102321
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
101753
102322
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -101792,6 +102361,7 @@ export declare type JiraAtlassianTeamField = JiraIssueField & JiraIssueFieldConf
|
|
|
101792
102361
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
101793
102362
|
fieldId: Scalars['String']['output'];
|
|
101794
102363
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
102364
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
101795
102365
|
id: Scalars['ID']['output'];
|
|
101796
102366
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
101797
102367
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -101962,6 +102532,7 @@ export declare type JiraAttachmentsField = JiraIssueField & JiraIssueFieldConfig
|
|
|
101962
102532
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
101963
102533
|
fieldId: Scalars['String']['output'];
|
|
101964
102534
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
102535
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
101965
102536
|
id: Scalars['ID']['output'];
|
|
101966
102537
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
101967
102538
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -102749,7 +103320,7 @@ export declare type JiraBacklogViewColumn = {
|
|
|
102749
103320
|
name?: Maybe<Scalars['String']['output']>;
|
|
102750
103321
|
statusIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
102751
103322
|
};
|
|
102752
|
-
export declare type JiraBacklogViewColumnCardList = JiraBacklogViewCardList & {
|
|
103323
|
+
export declare type JiraBacklogViewColumnCardList = JiraBacklogViewCardList & Node & {
|
|
102753
103324
|
__typename?: 'JiraBacklogViewColumnCardList';
|
|
102754
103325
|
column?: Maybe<JiraBacklogViewColumn>;
|
|
102755
103326
|
id: Scalars['ID']['output'];
|
|
@@ -102776,7 +103347,7 @@ export declare type JiraBacklogViewPermissions = {
|
|
|
102776
103347
|
export declare type JiraBacklogViewQueryInput = {
|
|
102777
103348
|
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
102778
103349
|
};
|
|
102779
|
-
export declare type JiraBacklogViewSprintCardList = JiraBacklogViewCardList & {
|
|
103350
|
+
export declare type JiraBacklogViewSprintCardList = JiraBacklogViewCardList & Node & {
|
|
102780
103351
|
__typename?: 'JiraBacklogViewSprintCardList';
|
|
102781
103352
|
id: Scalars['ID']['output'];
|
|
102782
103353
|
issues?: Maybe<JiraIssueConnection>;
|
|
@@ -102895,6 +103466,7 @@ export declare type JiraBoardCardCoverMediaField = JiraIssueField & Node & {
|
|
|
102895
103466
|
description?: Maybe<Scalars['String']['output']>;
|
|
102896
103467
|
fieldId: Scalars['String']['output'];
|
|
102897
103468
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
103469
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
102898
103470
|
id: Scalars['ID']['output'];
|
|
102899
103471
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
102900
103472
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -103318,6 +103890,7 @@ export declare type JiraBooleanField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
103318
103890
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
103319
103891
|
fieldId: Scalars['String']['output'];
|
|
103320
103892
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
103893
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
103321
103894
|
id: Scalars['ID']['output'];
|
|
103322
103895
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
103323
103896
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -103767,6 +104340,7 @@ export declare type JiraCmdbField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
103767
104340
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
103768
104341
|
fieldId: Scalars['String']['output'];
|
|
103769
104342
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
104343
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
103770
104344
|
id: Scalars['ID']['output'];
|
|
103771
104345
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
103772
104346
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -104106,6 +104680,7 @@ export declare type JiraCascadingSelectField = JiraHasSelectableValueOptions & J
|
|
|
104106
104680
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
104107
104681
|
fieldId: Scalars['String']['output'];
|
|
104108
104682
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
104683
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
104109
104684
|
id: Scalars['ID']['output'];
|
|
104110
104685
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
104111
104686
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -104172,6 +104747,7 @@ export declare type JiraCheckboxesField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
104172
104747
|
fieldId: Scalars['String']['output'];
|
|
104173
104748
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
104174
104749
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
104750
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
104175
104751
|
id: Scalars['ID']['output'];
|
|
104176
104752
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
104177
104753
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -104573,6 +105149,7 @@ export declare type JiraColorField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
104573
105149
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
104574
105150
|
fieldId: Scalars['String']['output'];
|
|
104575
105151
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105152
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
104576
105153
|
id: Scalars['ID']['output'];
|
|
104577
105154
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
104578
105155
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -104665,6 +105242,7 @@ export declare type JiraCommentSummaryField = JiraIssueField & JiraIssueFieldCon
|
|
|
104665
105242
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
104666
105243
|
fieldId: Scalars['String']['output'];
|
|
104667
105244
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105245
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
104668
105246
|
id: Scalars['ID']['output'];
|
|
104669
105247
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
104670
105248
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -104711,6 +105289,7 @@ export declare type JiraComponentsField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
104711
105289
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
104712
105290
|
fieldId: Scalars['String']['output'];
|
|
104713
105291
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105292
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
104714
105293
|
id: Scalars['ID']['output'];
|
|
104715
105294
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
104716
105295
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105010,6 +105589,7 @@ export declare type JiraConfluenceRemoteIssueLinksField = JiraIssueField & JiraI
|
|
|
105010
105589
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105011
105590
|
fieldId: Scalars['String']['output'];
|
|
105012
105591
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105592
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105013
105593
|
id: Scalars['ID']['output'];
|
|
105014
105594
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105015
105595
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105033,6 +105613,7 @@ export declare type JiraConnectDateTimeField = JiraIssueField & JiraIssueFieldCo
|
|
|
105033
105613
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105034
105614
|
fieldId: Scalars['String']['output'];
|
|
105035
105615
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105616
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105036
105617
|
id: Scalars['ID']['output'];
|
|
105037
105618
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105038
105619
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105049,6 +105630,7 @@ export declare type JiraConnectMultipleSelectField = JiraHasMultipleSelectedValu
|
|
|
105049
105630
|
fieldId: Scalars['String']['output'];
|
|
105050
105631
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105051
105632
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
105633
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105052
105634
|
id: Scalars['ID']['output'];
|
|
105053
105635
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105054
105636
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105097,6 +105679,7 @@ export declare type JiraConnectNumberField = JiraIssueField & JiraIssueFieldConf
|
|
|
105097
105679
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105098
105680
|
fieldId: Scalars['String']['output'];
|
|
105099
105681
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105682
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105100
105683
|
id: Scalars['ID']['output'];
|
|
105101
105684
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105102
105685
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105113,6 +105696,7 @@ export declare type JiraConnectReadOnlyField = JiraIssueField & JiraIssueFieldCo
|
|
|
105113
105696
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105114
105697
|
fieldId: Scalars['String']['output'];
|
|
105115
105698
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105699
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105116
105700
|
id: Scalars['ID']['output'];
|
|
105117
105701
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105118
105702
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105129,6 +105713,7 @@ export declare type JiraConnectRichTextField = JiraIssueField & JiraIssueFieldCo
|
|
|
105129
105713
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105130
105714
|
fieldId: Scalars['String']['output'];
|
|
105131
105715
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105716
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105132
105717
|
id: Scalars['ID']['output'];
|
|
105133
105718
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105134
105719
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105149,6 +105734,7 @@ export declare type JiraConnectSingleSelectField = JiraHasSelectableValueOptions
|
|
|
105149
105734
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105150
105735
|
fieldOption?: Maybe<JiraOption>;
|
|
105151
105736
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
105737
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105152
105738
|
id: Scalars['ID']['output'];
|
|
105153
105739
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105154
105740
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105182,6 +105768,7 @@ export declare type JiraConnectTextField = JiraIssueField & JiraIssueFieldConfig
|
|
|
105182
105768
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105183
105769
|
fieldId: Scalars['String']['output'];
|
|
105184
105770
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105771
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105185
105772
|
id: Scalars['ID']['output'];
|
|
105186
105773
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105187
105774
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105752,6 +106339,7 @@ export declare type JiraCustomerServiceOrganizationField = JiraIssueField & Jira
|
|
|
105752
106339
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105753
106340
|
fieldId: Scalars['String']['output'];
|
|
105754
106341
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
106342
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105755
106343
|
id: Scalars['ID']['output'];
|
|
105756
106344
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105757
106345
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105810,6 +106398,7 @@ export declare type JiraDataClassificationField = JiraIssueField & JiraIssueFiel
|
|
|
105810
106398
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105811
106399
|
fieldId: Scalars['String']['output'];
|
|
105812
106400
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
106401
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105813
106402
|
id: Scalars['ID']['output'];
|
|
105814
106403
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105815
106404
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105867,6 +106456,7 @@ export declare type JiraDateFormulaField = JiraIssueField & JiraIssueFieldConfig
|
|
|
105867
106456
|
fieldId: Scalars['String']['output'];
|
|
105868
106457
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
105869
106458
|
formulaExpressionConfig?: Maybe<JiraFormulaFieldExpressionConfig>;
|
|
106459
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105870
106460
|
id: Scalars['ID']['output'];
|
|
105871
106461
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105872
106462
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105887,6 +106477,7 @@ export declare type JiraDatePickerField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
105887
106477
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105888
106478
|
fieldId: Scalars['String']['output'];
|
|
105889
106479
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
106480
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105890
106481
|
id: Scalars['ID']['output'];
|
|
105891
106482
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105892
106483
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105924,6 +106515,7 @@ export declare type JiraDateTimePickerField = JiraIssueField & JiraIssueFieldCon
|
|
|
105924
106515
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
105925
106516
|
fieldId: Scalars['String']['output'];
|
|
105926
106517
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
106518
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
105927
106519
|
id: Scalars['ID']['output'];
|
|
105928
106520
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
105929
106521
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -106518,6 +107110,7 @@ export declare type JiraDevSummaryField = JiraIssueField & Node & {
|
|
|
106518
107110
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
106519
107111
|
fieldId: Scalars['String']['output'];
|
|
106520
107112
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107113
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
106521
107114
|
id: Scalars['ID']['output'];
|
|
106522
107115
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
106523
107116
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -106637,6 +107230,7 @@ export declare type JiraDurationField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
106637
107230
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
106638
107231
|
fieldId: Scalars['String']['output'];
|
|
106639
107232
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107233
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
106640
107234
|
id: Scalars['ID']['output'];
|
|
106641
107235
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
106642
107236
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -106765,6 +107359,7 @@ export declare type JiraEpicLinkField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
106765
107359
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
106766
107360
|
fieldId: Scalars['String']['output'];
|
|
106767
107361
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107362
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
106768
107363
|
id: Scalars['ID']['output'];
|
|
106769
107364
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
106770
107365
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -106832,6 +107427,7 @@ export declare type JiraFallbackField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
106832
107427
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
106833
107428
|
fieldId: Scalars['String']['output'];
|
|
106834
107429
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107430
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
106835
107431
|
id: Scalars['ID']['output'];
|
|
106836
107432
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
106837
107433
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107149,6 +107745,7 @@ export declare type JiraFieldSchemeAssociatedFieldsConnection = {
|
|
|
107149
107745
|
__typename?: 'JiraFieldSchemeAssociatedFieldsConnection';
|
|
107150
107746
|
edges?: Maybe<Array<Maybe<JiraFieldSchemeAssociatedFieldsEdge>>>;
|
|
107151
107747
|
pageInfo: PageInfo;
|
|
107748
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
107152
107749
|
};
|
|
107153
107750
|
export declare type JiraFieldSchemeAssociatedFieldsEdge = {
|
|
107154
107751
|
__typename?: 'JiraFieldSchemeAssociatedFieldsEdge';
|
|
@@ -107503,6 +108100,7 @@ export declare type JiraFlagField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
107503
108100
|
fieldId: Scalars['String']['output'];
|
|
107504
108101
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107505
108102
|
flag?: Maybe<JiraFlag>;
|
|
108103
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107506
108104
|
id: Scalars['ID']['output'];
|
|
107507
108105
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107508
108106
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107544,6 +108142,7 @@ export declare type JiraForgeDateField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
107544
108142
|
fieldId: Scalars['String']['output'];
|
|
107545
108143
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107546
108144
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
108145
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107547
108146
|
id: Scalars['ID']['output'];
|
|
107548
108147
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107549
108148
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107562,6 +108161,7 @@ export declare type JiraForgeDatetimeField = JiraIssueField & JiraIssueFieldConf
|
|
|
107562
108161
|
fieldId: Scalars['String']['output'];
|
|
107563
108162
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107564
108163
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
108164
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107565
108165
|
id: Scalars['ID']['output'];
|
|
107566
108166
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107567
108167
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107617,6 +108217,7 @@ export declare type JiraForgeGroupField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
107617
108217
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107618
108218
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
107619
108219
|
groups?: Maybe<JiraGroupConnection>;
|
|
108220
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107620
108221
|
id: Scalars['ID']['output'];
|
|
107621
108222
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107622
108223
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107644,6 +108245,7 @@ export declare type JiraForgeGroupsField = JiraIssueField & JiraIssueFieldConfig
|
|
|
107644
108245
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107645
108246
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
107646
108247
|
groups?: Maybe<JiraGroupConnection>;
|
|
108248
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107647
108249
|
id: Scalars['ID']['output'];
|
|
107648
108250
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107649
108251
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107699,6 +108301,7 @@ export declare type JiraForgeNumberField = JiraIssueField & JiraIssueFieldConfig
|
|
|
107699
108301
|
fieldId: Scalars['String']['output'];
|
|
107700
108302
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107701
108303
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
108304
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107702
108305
|
id: Scalars['ID']['output'];
|
|
107703
108306
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107704
108307
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107717,6 +108320,7 @@ export declare type JiraForgeObjectField = JiraIssueField & JiraIssueFieldConfig
|
|
|
107717
108320
|
fieldId: Scalars['String']['output'];
|
|
107718
108321
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107719
108322
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
108323
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107720
108324
|
id: Scalars['ID']['output'];
|
|
107721
108325
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107722
108326
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107768,6 +108372,7 @@ export declare type JiraForgeStringField = JiraIssueField & JiraIssueFieldConfig
|
|
|
107768
108372
|
fieldId: Scalars['String']['output'];
|
|
107769
108373
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107770
108374
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
108375
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107771
108376
|
id: Scalars['ID']['output'];
|
|
107772
108377
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107773
108378
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107786,6 +108391,7 @@ export declare type JiraForgeStringsField = JiraIssueField & JiraIssueFieldConfi
|
|
|
107786
108391
|
fieldId: Scalars['String']['output'];
|
|
107787
108392
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107788
108393
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
108394
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107789
108395
|
id: Scalars['ID']['output'];
|
|
107790
108396
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107791
108397
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107849,6 +108455,7 @@ export declare type JiraForgeUserField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
107849
108455
|
fieldId: Scalars['String']['output'];
|
|
107850
108456
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107851
108457
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
108458
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107852
108459
|
id: Scalars['ID']['output'];
|
|
107853
108460
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107854
108461
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107877,6 +108484,7 @@ export declare type JiraForgeUsersField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
107877
108484
|
fieldId: Scalars['String']['output'];
|
|
107878
108485
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
107879
108486
|
formattedText?: Maybe<Scalars['String']['output']>;
|
|
108487
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
107880
108488
|
id: Scalars['ID']['output'];
|
|
107881
108489
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
107882
108490
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -108162,6 +108770,7 @@ export declare type JiraGenericIssueField = JiraIssueField & JiraIssueFieldConfi
|
|
|
108162
108770
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
108163
108771
|
fieldId: Scalars['String']['output'];
|
|
108164
108772
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
108773
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
108165
108774
|
id: Scalars['ID']['output'];
|
|
108166
108775
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
108167
108776
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -108299,6 +108908,7 @@ export declare type JiraGoalsField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
108299
108908
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
108300
108909
|
fieldId: Scalars['String']['output'];
|
|
108301
108910
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
108911
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
108302
108912
|
id: Scalars['ID']['output'];
|
|
108303
108913
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
108304
108914
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -109670,6 +110280,7 @@ export declare type JiraIssueField = {
|
|
|
109670
110280
|
description?: Maybe<Scalars['String']['output']>;
|
|
109671
110281
|
fieldId: Scalars['String']['output'];
|
|
109672
110282
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
110283
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
109673
110284
|
id: Scalars['ID']['output'];
|
|
109674
110285
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
109675
110286
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -110178,6 +110789,7 @@ export declare type JiraIssueLinkField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
110178
110789
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
110179
110790
|
fieldId: Scalars['String']['output'];
|
|
110180
110791
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
110792
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
110181
110793
|
id: Scalars['ID']['output'];
|
|
110182
110794
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
110183
110795
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -110230,6 +110842,7 @@ export declare type JiraIssueLinkRelationshipTypeField = JiraIssueField & JiraIs
|
|
|
110230
110842
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
110231
110843
|
fieldId: Scalars['String']['output'];
|
|
110232
110844
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
110845
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
110233
110846
|
id: Scalars['ID']['output'];
|
|
110234
110847
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
110235
110848
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -110413,6 +111026,7 @@ export declare type JiraIssueRestrictionField = JiraIssueField & JiraIssueFieldC
|
|
|
110413
111026
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
110414
111027
|
fieldId: Scalars['String']['output'];
|
|
110415
111028
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
111029
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
110416
111030
|
id: Scalars['ID']['output'];
|
|
110417
111031
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
110418
111032
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -111073,6 +111687,7 @@ export declare type JiraIssueTypeField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
111073
111687
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
111074
111688
|
fieldId: Scalars['String']['output'];
|
|
111075
111689
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
111690
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
111076
111691
|
id: Scalars['ID']['output'];
|
|
111077
111692
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
111078
111693
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -112307,6 +112922,7 @@ export declare type JiraLabelsField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
112307
112922
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
112308
112923
|
fieldId: Scalars['String']['output'];
|
|
112309
112924
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
112925
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
112310
112926
|
id: Scalars['ID']['output'];
|
|
112311
112927
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
112312
112928
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -112733,6 +113349,7 @@ export declare type JiraMultipleGroupPickerField = JiraIssueField & JiraIssueFie
|
|
|
112733
113349
|
fieldId: Scalars['String']['output'];
|
|
112734
113350
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
112735
113351
|
groups?: Maybe<JiraGroupConnection>;
|
|
113352
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
112736
113353
|
id: Scalars['ID']['output'];
|
|
112737
113354
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
112738
113355
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -112785,6 +113402,7 @@ export declare type JiraMultipleSelectField = JiraHasMultipleSelectedValues & Ji
|
|
|
112785
113402
|
fieldId: Scalars['String']['output'];
|
|
112786
113403
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
112787
113404
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
113405
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
112788
113406
|
id: Scalars['ID']['output'];
|
|
112789
113407
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
112790
113408
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -112849,6 +113467,7 @@ export declare type JiraMultipleSelectUserPickerField = JiraIssueField & JiraIss
|
|
|
112849
113467
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
112850
113468
|
fieldId: Scalars['String']['output'];
|
|
112851
113469
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
113470
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
112852
113471
|
id: Scalars['ID']['output'];
|
|
112853
113472
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
112854
113473
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -112897,6 +113516,7 @@ export declare type JiraMultipleVersionPickerField = JiraHasMultipleSelectedValu
|
|
|
112897
113516
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
112898
113517
|
fieldId: Scalars['String']['output'];
|
|
112899
113518
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
113519
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
112900
113520
|
id: Scalars['ID']['output'];
|
|
112901
113521
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
112902
113522
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -114220,6 +114840,7 @@ export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
114220
114840
|
fieldId: Scalars['String']['output'];
|
|
114221
114841
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
114222
114842
|
formatConfig?: Maybe<JiraNumberFieldFormatConfig>;
|
|
114843
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
114223
114844
|
id: Scalars['ID']['output'];
|
|
114224
114845
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
114225
114846
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -114278,6 +114899,7 @@ export declare type JiraNumberFormulaField = JiraIssueField & JiraIssueFieldConf
|
|
|
114278
114899
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
114279
114900
|
formatConfig?: Maybe<JiraNumberFieldFormatConfig>;
|
|
114280
114901
|
formulaExpressionConfig?: Maybe<JiraFormulaFieldExpressionConfig>;
|
|
114902
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
114281
114903
|
id: Scalars['ID']['output'];
|
|
114282
114904
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
114283
114905
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -114734,6 +115356,7 @@ export declare type JiraOriginalTimeEstimateField = JiraIssueField & JiraIssueFi
|
|
|
114734
115356
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
114735
115357
|
fieldId: Scalars['String']['output'];
|
|
114736
115358
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
115359
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
114737
115360
|
id: Scalars['ID']['output'];
|
|
114738
115361
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
114739
115362
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -114811,6 +115434,7 @@ export declare type JiraParentIssueField = JiraIssueField & JiraIssueFieldConfig
|
|
|
114811
115434
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
114812
115435
|
fieldId: Scalars['String']['output'];
|
|
114813
115436
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
115437
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
114814
115438
|
id: Scalars['ID']['output'];
|
|
114815
115439
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
114816
115440
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -114886,6 +115510,7 @@ export declare type JiraPeopleField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
114886
115510
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
114887
115511
|
fieldId: Scalars['String']['output'];
|
|
114888
115512
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
115513
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
114889
115514
|
id: Scalars['ID']['output'];
|
|
114890
115515
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
114891
115516
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -115216,6 +115841,7 @@ export declare type JiraPlaybookInstance = Node & {
|
|
|
115216
115841
|
id: Scalars['ID']['output'];
|
|
115217
115842
|
name?: Maybe<Scalars['String']['output']>;
|
|
115218
115843
|
steps?: Maybe<Array<JiraPlaybookInstanceStep>>;
|
|
115844
|
+
totalExecutionCount?: Maybe<Scalars['Int']['output']>;
|
|
115219
115845
|
};
|
|
115220
115846
|
export declare type JiraPlaybookInstanceConnection = HasPageInfo & QueryPayload & {
|
|
115221
115847
|
__typename?: 'JiraPlaybookInstanceConnection';
|
|
@@ -115543,6 +116169,7 @@ export declare type JiraPriorityField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
115543
116169
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
115544
116170
|
fieldId: Scalars['String']['output'];
|
|
115545
116171
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
116172
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
115546
116173
|
id: Scalars['ID']['output'];
|
|
115547
116174
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
115548
116175
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -115604,6 +116231,7 @@ export declare type JiraProformaFormsField = JiraIssueField & JiraIssueFieldConf
|
|
|
115604
116231
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
115605
116232
|
fieldId: Scalars['String']['output'];
|
|
115606
116233
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
116234
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
115607
116235
|
id: Scalars['ID']['output'];
|
|
115608
116236
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
115609
116237
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -116115,6 +116743,7 @@ export declare type JiraProjectField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
116115
116743
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
116116
116744
|
fieldId: Scalars['String']['output'];
|
|
116117
116745
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
116746
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
116118
116747
|
id: Scalars['ID']['output'];
|
|
116119
116748
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
116120
116749
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -118051,6 +118680,7 @@ export declare type JiraRadioSelectField = JiraIssueField & JiraIssueFieldConfig
|
|
|
118051
118680
|
fieldId: Scalars['String']['output'];
|
|
118052
118681
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
118053
118682
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
118683
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
118054
118684
|
id: Scalars['ID']['output'];
|
|
118055
118685
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
118056
118686
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -118354,6 +118984,7 @@ export declare type JiraRemainingTimeEstimateField = JiraIssueField & JiraIssueF
|
|
|
118354
118984
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
118355
118985
|
fieldId: Scalars['String']['output'];
|
|
118356
118986
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
118987
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
118357
118988
|
id: Scalars['ID']['output'];
|
|
118358
118989
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
118359
118990
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -118695,6 +119326,7 @@ export declare type JiraResolutionField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
118695
119326
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
118696
119327
|
fieldId: Scalars['String']['output'];
|
|
118697
119328
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
119329
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
118698
119330
|
id: Scalars['ID']['output'];
|
|
118699
119331
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
118700
119332
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -118982,6 +119614,7 @@ export declare type JiraRichTextField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
118982
119614
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
118983
119615
|
fieldId: Scalars['String']['output'];
|
|
118984
119616
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
119617
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
118985
119618
|
id: Scalars['ID']['output'];
|
|
118986
119619
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
118987
119620
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119329,6 +119962,7 @@ export declare type JiraSecurityLevelField = JiraIssueField & JiraIssueFieldConf
|
|
|
119329
119962
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119330
119963
|
fieldId: Scalars['String']['output'];
|
|
119331
119964
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
119965
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119332
119966
|
id: Scalars['ID']['output'];
|
|
119333
119967
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119334
119968
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119386,6 +120020,7 @@ export declare type JiraSelectedUsersField = {
|
|
|
119386
120020
|
description?: Maybe<Scalars['String']['output']>;
|
|
119387
120021
|
fieldId: Scalars['String']['output'];
|
|
119388
120022
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120023
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119389
120024
|
id: Scalars['ID']['output'];
|
|
119390
120025
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119391
120026
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119483,6 +120118,7 @@ export declare type JiraServiceManagementApprovalField = JiraIssueField & JiraIs
|
|
|
119483
120118
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119484
120119
|
fieldId: Scalars['String']['output'];
|
|
119485
120120
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120121
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119486
120122
|
id: Scalars['ID']['output'];
|
|
119487
120123
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119488
120124
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119728,6 +120364,7 @@ export declare type JiraServiceManagementDateTimeField = JiraIssueField & JiraIs
|
|
|
119728
120364
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119729
120365
|
fieldId: Scalars['String']['output'];
|
|
119730
120366
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120367
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119731
120368
|
id: Scalars['ID']['output'];
|
|
119732
120369
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119733
120370
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119790,6 +120427,7 @@ export declare type JiraServiceManagementEntitlementField = JiraIssueField & Jir
|
|
|
119790
120427
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119791
120428
|
fieldId: Scalars['String']['output'];
|
|
119792
120429
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120430
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119793
120431
|
id: Scalars['ID']['output'];
|
|
119794
120432
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119795
120433
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119831,6 +120469,7 @@ export declare type JiraServiceManagementIncidentLinkingField = JiraIssueField &
|
|
|
119831
120469
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119832
120470
|
fieldId: Scalars['String']['output'];
|
|
119833
120471
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120472
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119834
120473
|
id: Scalars['ID']['output'];
|
|
119835
120474
|
incident?: Maybe<JiraServiceManagementIncident>;
|
|
119836
120475
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119858,6 +120497,7 @@ export declare type JiraServiceManagementMajorIncidentField = JiraIssueField & J
|
|
|
119858
120497
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119859
120498
|
fieldId: Scalars['String']['output'];
|
|
119860
120499
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120500
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119861
120501
|
id: Scalars['ID']['output'];
|
|
119862
120502
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119863
120503
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119908,6 +120548,7 @@ export declare type JiraServiceManagementMultipleSelectUserPickerField = JiraIss
|
|
|
119908
120548
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119909
120549
|
fieldId: Scalars['String']['output'];
|
|
119910
120550
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120551
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119911
120552
|
id: Scalars['ID']['output'];
|
|
119912
120553
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119913
120554
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -119964,6 +120605,7 @@ export declare type JiraServiceManagementOrganizationField = JiraHasMultipleSele
|
|
|
119964
120605
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
119965
120606
|
fieldId: Scalars['String']['output'];
|
|
119966
120607
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120608
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
119967
120609
|
id: Scalars['ID']['output'];
|
|
119968
120610
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
119969
120611
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -120024,6 +120666,7 @@ export declare type JiraServiceManagementPeopleField = JiraIssueField & JiraIssu
|
|
|
120024
120666
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
120025
120667
|
fieldId: Scalars['String']['output'];
|
|
120026
120668
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120669
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
120027
120670
|
id: Scalars['ID']['output'];
|
|
120028
120671
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
120029
120672
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -120106,6 +120749,7 @@ export declare type JiraServiceManagementRequestFeedbackField = JiraIssueField &
|
|
|
120106
120749
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
120107
120750
|
fieldId: Scalars['String']['output'];
|
|
120108
120751
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120752
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
120109
120753
|
id: Scalars['ID']['output'];
|
|
120110
120754
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
120111
120755
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -120121,6 +120765,7 @@ export declare type JiraServiceManagementRequestLanguageField = JiraIssueField &
|
|
|
120121
120765
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
120122
120766
|
fieldId: Scalars['String']['output'];
|
|
120123
120767
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120768
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
120124
120769
|
id: Scalars['ID']['output'];
|
|
120125
120770
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
120126
120771
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -120212,6 +120857,7 @@ export declare type JiraServiceManagementRequestTypeField = JiraIssueField & Jir
|
|
|
120212
120857
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
120213
120858
|
fieldId: Scalars['String']['output'];
|
|
120214
120859
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120860
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
120215
120861
|
id: Scalars['ID']['output'];
|
|
120216
120862
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
120217
120863
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -120316,6 +120962,7 @@ export declare type JiraServiceManagementRespondersField = JiraIssueField & Jira
|
|
|
120316
120962
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
120317
120963
|
fieldId: Scalars['String']['output'];
|
|
120318
120964
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120965
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
120319
120966
|
id: Scalars['ID']['output'];
|
|
120320
120967
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
120321
120968
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -120358,6 +121005,7 @@ export declare type JiraServiceManagementSentimentField = JiraIssueField & JiraI
|
|
|
120358
121005
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
120359
121006
|
fieldId: Scalars['String']['output'];
|
|
120360
121007
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
121008
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
120361
121009
|
id: Scalars['ID']['output'];
|
|
120362
121010
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
120363
121011
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -120940,6 +121588,16 @@ export declare type JiraSetTimelineHighlightedReleasesPayload = Payload & {
|
|
|
120940
121588
|
errors?: Maybe<Array<MutationError>>;
|
|
120941
121589
|
success: Scalars['Boolean']['output'];
|
|
120942
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
|
+
};
|
|
120943
121601
|
export declare type JiraSetTimelineViewHideDependenciesInput = {
|
|
120944
121602
|
hideDependencies: Scalars['Boolean']['input'];
|
|
120945
121603
|
viewId: Scalars['ID']['input'];
|
|
@@ -121156,6 +121814,7 @@ export declare type JiraSingleGroupPickerField = JiraIssueField & JiraIssueField
|
|
|
121156
121814
|
fieldId: Scalars['String']['output'];
|
|
121157
121815
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
121158
121816
|
groups?: Maybe<JiraGroupConnection>;
|
|
121817
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
121159
121818
|
id: Scalars['ID']['output'];
|
|
121160
121819
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
121161
121820
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -121196,6 +121855,7 @@ export declare type JiraSingleLineTextField = JiraIssueField & JiraIssueFieldCon
|
|
|
121196
121855
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
121197
121856
|
fieldId: Scalars['String']['output'];
|
|
121198
121857
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
121858
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
121199
121859
|
id: Scalars['ID']['output'];
|
|
121200
121860
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
121201
121861
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -121236,6 +121896,7 @@ export declare type JiraSingleSelectField = JiraHasSelectableValueOptions & Jira
|
|
|
121236
121896
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
121237
121897
|
fieldOption?: Maybe<JiraOption>;
|
|
121238
121898
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
121899
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
121239
121900
|
id: Scalars['ID']['output'];
|
|
121240
121901
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
121241
121902
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -121286,6 +121947,7 @@ export declare type JiraSingleSelectUserPickerField = JiraIssueField & JiraIssue
|
|
|
121286
121947
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
121287
121948
|
fieldId: Scalars['String']['output'];
|
|
121288
121949
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
121950
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
121289
121951
|
id: Scalars['ID']['output'];
|
|
121290
121952
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
121291
121953
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -121333,6 +121995,7 @@ export declare type JiraSingleVersionPickerField = JiraHasSelectableValueOptions
|
|
|
121333
121995
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
121334
121996
|
fieldId: Scalars['String']['output'];
|
|
121335
121997
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
121998
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
121336
121999
|
id: Scalars['ID']['output'];
|
|
121337
122000
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
121338
122001
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -121591,6 +122254,7 @@ export declare type JiraSprintField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
121591
122254
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
121592
122255
|
fieldId: Scalars['String']['output'];
|
|
121593
122256
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
122257
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
121594
122258
|
id: Scalars['ID']['output'];
|
|
121595
122259
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
121596
122260
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -121711,6 +122375,7 @@ export declare type JiraStatusCategoryField = JiraIssueField & JiraIssueFieldCon
|
|
|
121711
122375
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
121712
122376
|
fieldId: Scalars['String']['output'];
|
|
121713
122377
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
122378
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
121714
122379
|
id: Scalars['ID']['output'];
|
|
121715
122380
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
121716
122381
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -121744,6 +122409,7 @@ export declare type JiraStatusField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
121744
122409
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
121745
122410
|
fieldId: Scalars['String']['output'];
|
|
121746
122411
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
122412
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
121747
122413
|
id: Scalars['ID']['output'];
|
|
121748
122414
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
121749
122415
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122033,6 +122699,7 @@ export declare type JiraSubtaskSummaryField = JiraIssueField & Node & {
|
|
|
122033
122699
|
description?: Maybe<Scalars['String']['output']>;
|
|
122034
122700
|
fieldId: Scalars['String']['output'];
|
|
122035
122701
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
122702
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
122036
122703
|
id: Scalars['ID']['output'];
|
|
122037
122704
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
122038
122705
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122049,6 +122716,7 @@ export declare type JiraSubtasksField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
122049
122716
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
122050
122717
|
fieldId: Scalars['String']['output'];
|
|
122051
122718
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
122719
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
122052
122720
|
id: Scalars['ID']['output'];
|
|
122053
122721
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
122054
122722
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122181,6 +122849,7 @@ export declare type JiraTeamField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
122181
122849
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
122182
122850
|
fieldId: Scalars['String']['output'];
|
|
122183
122851
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
122852
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
122184
122853
|
id: Scalars['ID']['output'];
|
|
122185
122854
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
122186
122855
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122250,6 +122919,7 @@ export declare type JiraTeamViewField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
122250
122919
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
122251
122920
|
fieldId: Scalars['String']['output'];
|
|
122252
122921
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
122922
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
122253
122923
|
id: Scalars['ID']['output'];
|
|
122254
122924
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
122255
122925
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122306,6 +122976,7 @@ export declare type JiraTextFormulaField = JiraIssueField & JiraIssueFieldConfig
|
|
|
122306
122976
|
fieldId: Scalars['String']['output'];
|
|
122307
122977
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
122308
122978
|
formulaExpressionConfig?: Maybe<JiraFormulaFieldExpressionConfig>;
|
|
122979
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
122309
122980
|
id: Scalars['ID']['output'];
|
|
122310
122981
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
122311
122982
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122328,6 +122999,7 @@ export declare type JiraTimeTrackingField = JiraIssueField & JiraIssueFieldConfi
|
|
|
122328
122999
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
122329
123000
|
fieldId: Scalars['String']['output'];
|
|
122330
123001
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
123002
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
122331
123003
|
id: Scalars['ID']['output'];
|
|
122332
123004
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
122333
123005
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122374,6 +123046,7 @@ export declare type JiraTimelineField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
122374
123046
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
122375
123047
|
fieldId: Scalars['String']['output'];
|
|
122376
123048
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
123049
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
122377
123050
|
id: Scalars['ID']['output'];
|
|
122378
123051
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
122379
123052
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122573,6 +123246,7 @@ export declare type JiraTownsquareProjectField = JiraIssueField & JiraIssueField
|
|
|
122573
123246
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
122574
123247
|
fieldId: Scalars['String']['output'];
|
|
122575
123248
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
123249
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
122576
123250
|
id: Scalars['ID']['output'];
|
|
122577
123251
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
122578
123252
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -123395,6 +124069,7 @@ export declare type JiraUrlField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
123395
124069
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
123396
124070
|
fieldId: Scalars['String']['output'];
|
|
123397
124071
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
124072
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
123398
124073
|
id: Scalars['ID']['output'];
|
|
123399
124074
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
123400
124075
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -124263,6 +124938,7 @@ export declare type JiraVotesField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
124263
124938
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
124264
124939
|
fieldId: Scalars['String']['output'];
|
|
124265
124940
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
124941
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
124266
124942
|
id: Scalars['ID']['output'];
|
|
124267
124943
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
124268
124944
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -124304,6 +124980,7 @@ export declare type JiraWatchesField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
124304
124980
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
124305
124981
|
fieldId: Scalars['String']['output'];
|
|
124306
124982
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
124983
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
124307
124984
|
id: Scalars['ID']['output'];
|
|
124308
124985
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
124309
124986
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -124394,6 +125071,7 @@ export declare type JiraWorkCategoryField = JiraIssueField & JiraIssueFieldConfi
|
|
|
124394
125071
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
124395
125072
|
fieldId: Scalars['String']['output'];
|
|
124396
125073
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
125074
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
124397
125075
|
id: Scalars['ID']['output'];
|
|
124398
125076
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
124399
125077
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -124421,6 +125099,7 @@ export declare type JiraWorkLogField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
124421
125099
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
124422
125100
|
fieldId: Scalars['String']['output'];
|
|
124423
125101
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
125102
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
124424
125103
|
id: Scalars['ID']['output'];
|
|
124425
125104
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
124426
125105
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -125148,6 +125827,20 @@ export declare type JpdViewsServiceAxisConfigInput = {
|
|
|
125148
125827
|
fieldOptions: Array<JpdViewsServiceOptionInput>;
|
|
125149
125828
|
reversed: Scalars['Boolean']['input'];
|
|
125150
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
|
+
}
|
|
125151
125844
|
export declare type JpdViewsServiceCreateGlobalViewInput = {
|
|
125152
125845
|
name: Scalars['String']['input'];
|
|
125153
125846
|
visualizationType: JpdViewsServiceVisualizationType;
|
|
@@ -125216,36 +125909,58 @@ export declare type JpdViewsServiceGlobalView = JpdViewsServiceViewBase & Node &
|
|
|
125216
125909
|
boldColors?: Maybe<Scalars['Boolean']['output']>;
|
|
125217
125910
|
colorBy?: Maybe<JpdViewsServiceField>;
|
|
125218
125911
|
colorStyle?: Maybe<Scalars['String']['output']>;
|
|
125912
|
+
colorStyleNew?: Maybe<JpdViewsServiceColorStyle>;
|
|
125219
125913
|
columnSize?: Maybe<Scalars['String']['output']>;
|
|
125914
|
+
columnSizeNew: JpdViewsServiceColumnSize;
|
|
125220
125915
|
connectionsFilter?: Maybe<Array<Maybe<JpdViewsServiceFilter>>>;
|
|
125916
|
+
connectionsFilterNew: Array<JpdViewsServiceFilter>;
|
|
125221
125917
|
connectionsLayoutType?: Maybe<Scalars['String']['output']>;
|
|
125918
|
+
connectionsLayoutTypeNew: JpdViewsServiceConnectionsLayout;
|
|
125919
|
+
createdAt: Scalars['String']['output'];
|
|
125222
125920
|
createdDate?: Maybe<Scalars['String']['output']>;
|
|
125223
125921
|
description?: Maybe<Scalars['String']['output']>;
|
|
125922
|
+
descriptionNew?: Maybe<Scalars['JSON']['output']>;
|
|
125224
125923
|
emoji?: Maybe<Scalars['String']['output']>;
|
|
125225
125924
|
fieldRollups?: Maybe<Array<Maybe<JpdViewsServiceFieldRollup>>>;
|
|
125925
|
+
fieldRollupsNew: Array<JpdViewsServiceFieldRollup>;
|
|
125226
125926
|
fields?: Maybe<Array<Maybe<JpdViewsServiceField>>>;
|
|
125927
|
+
fieldsNew: Array<JpdViewsServiceField>;
|
|
125227
125928
|
filter?: Maybe<Array<Maybe<JpdViewsServiceFilter>>>;
|
|
125929
|
+
filterNew: Array<JpdViewsServiceFilter>;
|
|
125228
125930
|
groupBy?: Maybe<JpdViewsServiceField>;
|
|
125229
125931
|
groupValues?: Maybe<Array<Maybe<JpdViewsServiceNestedId>>>;
|
|
125932
|
+
groupValuesNew: Array<JpdViewsServiceNestedId>;
|
|
125230
125933
|
groupsFilter?: Maybe<Array<Maybe<JpdViewsServiceFilter>>>;
|
|
125934
|
+
groupsFilterNew: Array<JpdViewsServiceFilter>;
|
|
125935
|
+
hidden: Array<JpdViewsServiceField>;
|
|
125231
125936
|
hiddenFields?: Maybe<Array<Maybe<JpdViewsServiceField>>>;
|
|
125232
125937
|
hideEmptyColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
125938
|
+
hideEmptyColumnsNew: Scalars['Boolean']['output'];
|
|
125233
125939
|
hideEmptyGroups?: Maybe<Scalars['Boolean']['output']>;
|
|
125234
125940
|
id: Scalars['ID']['output'];
|
|
125235
125941
|
layoutType?: Maybe<Scalars['String']['output']>;
|
|
125942
|
+
layoutTypeNew?: Maybe<JpdViewsServiceViewLayoutType>;
|
|
125236
125943
|
matrixConfig?: Maybe<JpdViewsServiceMatrixConfig>;
|
|
125237
125944
|
name: Scalars['String']['output'];
|
|
125238
125945
|
rank?: Maybe<Scalars['Int']['output']>;
|
|
125239
125946
|
showConnectionsMatchingColumn?: Maybe<Scalars['Boolean']['output']>;
|
|
125947
|
+
showConnectionsMatchingColumnNew: Scalars['Boolean']['output'];
|
|
125240
125948
|
showConnectionsMatchingGroup?: Maybe<Scalars['Boolean']['output']>;
|
|
125949
|
+
showConnectionsMatchingGroupNew: Scalars['Boolean']['output'];
|
|
125241
125950
|
sort?: Maybe<JpdViewsServiceSort>;
|
|
125242
125951
|
sortMode?: Maybe<Scalars['String']['output']>;
|
|
125952
|
+
sortModeNew: JpdViewsServiceSortMode;
|
|
125953
|
+
sortNew: Array<JpdViewsServiceSort>;
|
|
125243
125954
|
tableColumnSizes?: Maybe<Array<Maybe<JpdViewsServiceTableColumnSize>>>;
|
|
125244
125955
|
timelineConfig?: Maybe<JpdViewsServiceTimelineConfig>;
|
|
125956
|
+
updatedAt: Scalars['String']['output'];
|
|
125245
125957
|
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
125958
|
+
uuid: Scalars['String']['output'];
|
|
125246
125959
|
verticalGroupBy?: Maybe<JpdViewsServiceField>;
|
|
125247
125960
|
verticalGroupValues?: Maybe<Array<Maybe<JpdViewsServiceNestedId>>>;
|
|
125961
|
+
verticalGroupValuesNew: Array<JpdViewsServiceNestedId>;
|
|
125248
125962
|
verticalGroupsFilter?: Maybe<Array<Maybe<JpdViewsServiceFilter>>>;
|
|
125963
|
+
verticalGroupsFilterNew: Array<JpdViewsServiceFilter>;
|
|
125249
125964
|
viewId: Scalars['String']['output'];
|
|
125250
125965
|
visualizationType: JpdViewsServiceVisualizationType;
|
|
125251
125966
|
};
|
|
@@ -125315,6 +126030,11 @@ export declare type JpdViewsServiceSortInput = {
|
|
|
125315
126030
|
field: Scalars['String']['input'];
|
|
125316
126031
|
order: Scalars['String']['input'];
|
|
125317
126032
|
};
|
|
126033
|
+
export declare enum JpdViewsServiceSortMode {
|
|
126034
|
+
FieldsSort = "FIELDS_SORT",
|
|
126035
|
+
ProjectRank = "PROJECT_RANK",
|
|
126036
|
+
ViewRank = "VIEW_RANK"
|
|
126037
|
+
}
|
|
125318
126038
|
export declare type JpdViewsServiceTableColumnSize = {
|
|
125319
126039
|
__typename?: 'JpdViewsServiceTableColumnSize';
|
|
125320
126040
|
field: JpdViewsServiceField;
|
|
@@ -125329,9 +126049,11 @@ export declare type JpdViewsServiceTimelineConfig = {
|
|
|
125329
126049
|
dueDateField: JpdViewsServiceField;
|
|
125330
126050
|
endTimestamp: Scalars['String']['output'];
|
|
125331
126051
|
mode: Scalars['String']['output'];
|
|
126052
|
+
modeNew: JpdViewsServiceTimelineMode;
|
|
125332
126053
|
startDateField: JpdViewsServiceField;
|
|
125333
126054
|
startTimestamp: Scalars['String']['output'];
|
|
125334
126055
|
summaryCardField: JpdViewsServiceField;
|
|
126056
|
+
todayMarker?: Maybe<JpdViewsServiceTodayMarker>;
|
|
125335
126057
|
};
|
|
125336
126058
|
export declare type JpdViewsServiceTimelineConfigInput = {
|
|
125337
126059
|
dueDateField: Scalars['String']['input'];
|
|
@@ -125340,7 +126062,16 @@ export declare type JpdViewsServiceTimelineConfigInput = {
|
|
|
125340
126062
|
startDateField: Scalars['String']['input'];
|
|
125341
126063
|
startTimestamp: Scalars['String']['input'];
|
|
125342
126064
|
summaryCardField: Scalars['String']['input'];
|
|
126065
|
+
todayMarker?: InputMaybe<Scalars['String']['input']>;
|
|
125343
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
|
+
}
|
|
125344
126075
|
export declare type JpdViewsServiceUnassociateGlobalViewContainerInput = {
|
|
125345
126076
|
containerId: Scalars['String']['input'];
|
|
125346
126077
|
containerType: JpdViewsServiceGlobalViewAssociationContainerType;
|
|
@@ -125370,6 +126101,7 @@ export declare type JpdViewsServiceUpdateGlobalViewInput = {
|
|
|
125370
126101
|
connectionsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput>>>;
|
|
125371
126102
|
connectionsLayoutType?: InputMaybe<Scalars['String']['input']>;
|
|
125372
126103
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
126104
|
+
descriptionNew?: InputMaybe<Scalars['JSON']['input']>;
|
|
125373
126105
|
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
125374
126106
|
fieldRollups?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldRollupInput>>>;
|
|
125375
126107
|
fields?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldInput>>>;
|
|
@@ -125383,7 +126115,7 @@ export declare type JpdViewsServiceUpdateGlobalViewInput = {
|
|
|
125383
126115
|
id: Scalars['ID']['input'];
|
|
125384
126116
|
layoutType?: InputMaybe<Scalars['String']['input']>;
|
|
125385
126117
|
matrixConfig?: InputMaybe<JpdViewsServiceMatrixConfigInput>;
|
|
125386
|
-
name
|
|
126118
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
125387
126119
|
showConnectionsMatchingColumn?: InputMaybe<Scalars['Boolean']['input']>;
|
|
125388
126120
|
showConnectionsMatchingGroup?: InputMaybe<Scalars['Boolean']['input']>;
|
|
125389
126121
|
sort?: InputMaybe<Array<InputMaybe<JpdViewsServiceSortInput>>>;
|
|
@@ -125393,7 +126125,7 @@ export declare type JpdViewsServiceUpdateGlobalViewInput = {
|
|
|
125393
126125
|
verticalGroupBy?: InputMaybe<JpdViewsServiceFieldInput>;
|
|
125394
126126
|
verticalGroupValues?: InputMaybe<Array<InputMaybe<JpdViewsServiceNestedIdInput>>>;
|
|
125395
126127
|
verticalGroupsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput>>>;
|
|
125396
|
-
visualizationType
|
|
126128
|
+
visualizationType?: InputMaybe<JpdViewsServiceVisualizationType>;
|
|
125397
126129
|
};
|
|
125398
126130
|
export declare type JpdViewsServiceUpdateGlobalViewPayload = Payload & {
|
|
125399
126131
|
__typename?: 'JpdViewsServiceUpdateGlobalViewPayload';
|
|
@@ -125413,6 +126145,11 @@ export declare type JpdViewsServiceViewBase = {
|
|
|
125413
126145
|
rank?: Maybe<Scalars['Int']['output']>;
|
|
125414
126146
|
visualizationType: JpdViewsServiceVisualizationType;
|
|
125415
126147
|
};
|
|
126148
|
+
export declare enum JpdViewsServiceViewLayoutType {
|
|
126149
|
+
Compact = "COMPACT",
|
|
126150
|
+
Detailed = "DETAILED",
|
|
126151
|
+
Summary = "SUMMARY"
|
|
126152
|
+
}
|
|
125416
126153
|
export declare enum JpdViewsServiceVisualizationType {
|
|
125417
126154
|
Board = "BOARD",
|
|
125418
126155
|
Matrix = "MATRIX",
|
|
@@ -133205,6 +133942,32 @@ export declare type MercuryBaseJiraWorkStatusMapping = {
|
|
|
133205
133942
|
mappedStatusKey: Scalars['String']['output'];
|
|
133206
133943
|
providerMappingContext?: Maybe<MercuryJiraProviderMappingContext>;
|
|
133207
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
|
+
};
|
|
133208
133971
|
export declare type MercuryBudgetAggregation = {
|
|
133209
133972
|
__typename?: 'MercuryBudgetAggregation';
|
|
133210
133973
|
aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
@@ -133609,6 +134372,11 @@ export declare type MercuryCostSubtypeSort = {
|
|
|
133609
134372
|
export declare enum MercuryCostSubtypeSortField {
|
|
133610
134373
|
Name = "NAME"
|
|
133611
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
|
+
}
|
|
133612
134380
|
export declare type MercuryCostType = Node & {
|
|
133613
134381
|
__typename?: 'MercuryCostType';
|
|
133614
134382
|
displayName: Scalars['String']['output'];
|
|
@@ -133620,6 +134388,9 @@ export declare type MercuryCreateBaseCustomFieldDefinitionInput = {
|
|
|
133620
134388
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
133621
134389
|
name: Scalars['String']['input'];
|
|
133622
134390
|
};
|
|
134391
|
+
export declare type MercuryCreateBooleanCustomFieldDefinitionInput = {
|
|
134392
|
+
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
134393
|
+
};
|
|
133623
134394
|
export declare type MercuryCreateChangeProposalCommentInput = {
|
|
133624
134395
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
133625
134396
|
content: Scalars['String']['input'];
|
|
@@ -133675,6 +134446,7 @@ export declare type MercuryCreateCommentPayload = Payload & {
|
|
|
133675
134446
|
success: Scalars['Boolean']['output'];
|
|
133676
134447
|
};
|
|
133677
134448
|
export declare type MercuryCreateCoreCustomFieldDefinitionInput = {
|
|
134449
|
+
booleanField?: InputMaybe<MercuryCreateBooleanCustomFieldDefinitionInput>;
|
|
133678
134450
|
dateField?: InputMaybe<MercuryCreateDateCustomFieldDefinitionInput>;
|
|
133679
134451
|
multiSelectField?: InputMaybe<MercuryCreateMultiSelectCustomFieldDefinitionInput>;
|
|
133680
134452
|
numberField?: InputMaybe<MercuryCreateNumberCustomFieldDefinitionInput>;
|
|
@@ -133827,10 +134599,12 @@ export declare type MercuryCreatePortfolioPayload = Payload & {
|
|
|
133827
134599
|
export declare type MercuryCreateRiskInput = {
|
|
133828
134600
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
133829
134601
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
134602
|
+
impact?: InputMaybe<Scalars['Int']['input']>;
|
|
134603
|
+
likelihood?: InputMaybe<Scalars['Int']['input']>;
|
|
133830
134604
|
name: Scalars['String']['input'];
|
|
133831
134605
|
owner?: InputMaybe<Scalars['ID']['input']>;
|
|
133832
134606
|
submitter?: InputMaybe<Scalars['ID']['input']>;
|
|
133833
|
-
targetDate?: InputMaybe<
|
|
134607
|
+
targetDate?: InputMaybe<MercuryRiskTargetDateInput>;
|
|
133834
134608
|
};
|
|
133835
134609
|
export declare type MercuryCreateRiskPayload = Payload & {
|
|
133836
134610
|
__typename?: 'MercuryCreateRiskPayload';
|
|
@@ -133915,6 +134689,7 @@ export declare enum MercuryCustomFieldDefinitionSortField {
|
|
|
133915
134689
|
Name = "NAME"
|
|
133916
134690
|
}
|
|
133917
134691
|
export declare type MercuryCustomFieldInput = {
|
|
134692
|
+
booleanField?: InputMaybe<MercuryBooleanCustomFieldInput>;
|
|
133918
134693
|
dateField?: InputMaybe<MercuryDateCustomFieldInput>;
|
|
133919
134694
|
multiSelectField?: InputMaybe<MercuryMultiSelectCustomFieldInput>;
|
|
133920
134695
|
numberField?: InputMaybe<MercuryNumberCustomFieldInput>;
|
|
@@ -133951,6 +134726,14 @@ export declare type MercuryCustomSelectFieldOptionInput = {
|
|
|
133951
134726
|
settings?: InputMaybe<Array<MercuryCustomFieldSelectionOptionSettingInput>>;
|
|
133952
134727
|
value: Scalars['String']['input'];
|
|
133953
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
|
+
};
|
|
133954
134737
|
export declare type MercuryDateCustomField = MercuryCustomField & {
|
|
133955
134738
|
__typename?: 'MercuryDateCustomField';
|
|
133956
134739
|
createdBy?: Maybe<User>;
|
|
@@ -134253,6 +135036,19 @@ export declare type MercuryFinancialVersion = Node & {
|
|
|
134253
135036
|
id: Scalars['ID']['output'];
|
|
134254
135037
|
type: MercuryFinancialVersionType;
|
|
134255
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;
|
|
134256
135052
|
export declare type MercuryFinancialVersionCostPerYearMonthSummary = {
|
|
134257
135053
|
__typename?: 'MercuryFinancialVersionCostPerYearMonthSummary';
|
|
134258
135054
|
financialVersion?: Maybe<MercuryFinancialVersion>;
|
|
@@ -134262,8 +135058,31 @@ export declare type MercuryFinancialVersionCostPerYearMonthSummary = {
|
|
|
134262
135058
|
export declare type MercuryFinancialVersionCostSummary = {
|
|
134263
135059
|
__typename?: 'MercuryFinancialVersionCostSummary';
|
|
134264
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>;
|
|
134265
135072
|
total?: Maybe<MercuryMoney>;
|
|
134266
135073
|
};
|
|
135074
|
+
export declare type MercuryFinancialVersionInvestmentCategoryCostSummary = {
|
|
135075
|
+
__typename?: 'MercuryFinancialVersionInvestmentCategoryCostSummary';
|
|
135076
|
+
investmentCategory?: Maybe<MercuryInvestmentCategory>;
|
|
135077
|
+
total?: Maybe<MercuryMoney>;
|
|
135078
|
+
};
|
|
135079
|
+
export declare type MercuryFinancialVersionSort = {
|
|
135080
|
+
field?: InputMaybe<MercuryFinancialVersionSortField>;
|
|
135081
|
+
order: SortOrder;
|
|
135082
|
+
};
|
|
135083
|
+
export declare enum MercuryFinancialVersionSortField {
|
|
135084
|
+
Type = "TYPE"
|
|
135085
|
+
}
|
|
134267
135086
|
export declare enum MercuryFinancialVersionType {
|
|
134268
135087
|
Actual = "ACTUAL",
|
|
134269
135088
|
Baseline = "BASELINE",
|
|
@@ -134340,6 +135159,7 @@ export declare type MercuryFocusAreaAsksArgs = {
|
|
|
134340
135159
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
134341
135160
|
};
|
|
134342
135161
|
export declare type MercuryFocusAreaCostSummaryArgs = {
|
|
135162
|
+
dimensions?: InputMaybe<Array<MercuryCostSummaryDimension>>;
|
|
134343
135163
|
endYearMonth: Scalars['String']['input'];
|
|
134344
135164
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
134345
135165
|
startYearMonth: Scalars['String']['input'];
|
|
@@ -134885,6 +135705,7 @@ export declare type MercuryFundsQueryApi = {
|
|
|
134885
135705
|
expenditureTypes?: Maybe<Array<Maybe<MercuryExpenditureType>>>;
|
|
134886
135706
|
expenditureTypesByIds?: Maybe<Array<Maybe<MercuryExpenditureType>>>;
|
|
134887
135707
|
financialVersions?: Maybe<Array<Maybe<MercuryFinancialVersion>>>;
|
|
135708
|
+
financialVersionsSearch?: Maybe<MercuryFinancialVersionConnection>;
|
|
134888
135709
|
fiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
134889
135710
|
fiscalCalendarConfigurations?: Maybe<Array<Maybe<MercuryFiscalCalendarConfiguration>>>;
|
|
134890
135711
|
fiscalCalendarConfigurationsSearch?: Maybe<MercuryFiscalCalendarConfigurationConnection>;
|
|
@@ -134939,6 +135760,13 @@ export declare type MercuryFundsQueryApiExpenditureTypesByIdsArgs = {
|
|
|
134939
135760
|
export declare type MercuryFundsQueryApiFinancialVersionsArgs = {
|
|
134940
135761
|
ids: Array<Scalars['ID']['input']>;
|
|
134941
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
|
+
};
|
|
134942
135770
|
export declare type MercuryFundsQueryApiFiscalCalendarConfigurationArgs = {
|
|
134943
135771
|
id: Scalars['ID']['input'];
|
|
134944
135772
|
};
|
|
@@ -135009,6 +135837,34 @@ export declare type MercuryImpactedPositionSummaryByChangeProposalStatus = {
|
|
|
135009
135837
|
countByStatus?: Maybe<Array<Maybe<MercuryPositionCountByStatus>>>;
|
|
135010
135838
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
135011
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
|
+
}
|
|
135012
135868
|
export declare type MercuryInsight = {
|
|
135013
135869
|
id: Scalars['ID']['output'];
|
|
135014
135870
|
summary?: Maybe<Scalars['String']['output']>;
|
|
@@ -135033,19 +135889,35 @@ export declare enum MercuryInsightTypeEnum {
|
|
|
135033
135889
|
Position = "POSITION",
|
|
135034
135890
|
Work = "WORK"
|
|
135035
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
|
+
};
|
|
135036
135903
|
export declare type MercuryInsightsMutationApi = {
|
|
135037
135904
|
__typename?: 'MercuryInsightsMutationApi';
|
|
135038
135905
|
dismissSuggestedFocusAreaFollowers?: Maybe<MercuryDismissSuggestedFocusAreaFollowers>;
|
|
135906
|
+
updateInsightWidget?: Maybe<MercuryUpdateInsightWidgetPayload>;
|
|
135039
135907
|
};
|
|
135040
135908
|
export declare type MercuryInsightsMutationApiDismissSuggestedFocusAreaFollowersArgs = {
|
|
135041
135909
|
input: MercuryDismissSuggestedFocusAreaFollowersInput;
|
|
135042
135910
|
};
|
|
135911
|
+
export declare type MercuryInsightsMutationApiUpdateInsightWidgetArgs = {
|
|
135912
|
+
input: MercuryUpdateInsightWidgetInput;
|
|
135913
|
+
};
|
|
135043
135914
|
export declare type MercuryInsightsQueryApi = {
|
|
135044
135915
|
__typename?: 'MercuryInsightsQueryApi';
|
|
135045
135916
|
focusAreaFollowerSuggestions?: Maybe<Array<MercuryFocusAreaFollowerSuggestion>>;
|
|
135046
135917
|
focusAreaInsights?: Maybe<Array<MercuryInsightObject>>;
|
|
135047
135918
|
focusAreaWorkSuggestions?: Maybe<Array<MercuryWorkSuggestionsSearchItem>>;
|
|
135048
135919
|
forYouInsights?: Maybe<MercuryInsightObjectConnection>;
|
|
135920
|
+
previewInsightWidget?: Maybe<MercuryInsightWidget>;
|
|
135049
135921
|
};
|
|
135050
135922
|
export declare type MercuryInsightsQueryApiFocusAreaFollowerSuggestionsArgs = {
|
|
135051
135923
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -135067,6 +135939,10 @@ export declare type MercuryInsightsQueryApiForYouInsightsArgs = {
|
|
|
135067
135939
|
filter?: InputMaybe<MercuryForYouInsightsFilter>;
|
|
135068
135940
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
135069
135941
|
};
|
|
135942
|
+
export declare type MercuryInsightsQueryApiPreviewInsightWidgetArgs = {
|
|
135943
|
+
cloudId: Scalars['ID']['input'];
|
|
135944
|
+
rules: Scalars['String']['input'];
|
|
135945
|
+
};
|
|
135070
135946
|
export declare type MercuryIntegrationsContext = {
|
|
135071
135947
|
__typename?: 'MercuryIntegrationsContext';
|
|
135072
135948
|
passionfruit?: Maybe<MercuryPassionfruitContext>;
|
|
@@ -136524,12 +137400,15 @@ export declare type MercuryRisk = Node & {
|
|
|
136524
137400
|
description?: Maybe<Scalars['String']['output']>;
|
|
136525
137401
|
id: Scalars['ID']['output'];
|
|
136526
137402
|
impact?: Maybe<MercuryRiskImpact>;
|
|
137403
|
+
justification?: Maybe<Scalars['String']['output']>;
|
|
137404
|
+
likelihood?: Maybe<MercuryRiskLikelihood>;
|
|
137405
|
+
linkedFocusAreas?: Maybe<Array<MercuryFocusArea>>;
|
|
136527
137406
|
name: Scalars['String']['output'];
|
|
136528
137407
|
owner?: Maybe<Scalars['ID']['output']>;
|
|
136529
137408
|
status?: Maybe<MercuryRiskStatus>;
|
|
136530
137409
|
statusTransitions?: Maybe<MercuryRiskStatusTransitions>;
|
|
136531
137410
|
submitter?: Maybe<User>;
|
|
136532
|
-
targetDate?: Maybe<
|
|
137411
|
+
targetDate?: Maybe<MercuryRiskTargetDate>;
|
|
136533
137412
|
updatedDate: Scalars['String']['output'];
|
|
136534
137413
|
};
|
|
136535
137414
|
export declare type MercuryRiskConnection = {
|
|
@@ -136548,14 +137427,22 @@ export declare type MercuryRiskImpact = {
|
|
|
136548
137427
|
key: Scalars['String']['output'];
|
|
136549
137428
|
value: Scalars['Int']['output'];
|
|
136550
137429
|
};
|
|
137430
|
+
export declare type MercuryRiskLikelihood = {
|
|
137431
|
+
__typename?: 'MercuryRiskLikelihood';
|
|
137432
|
+
key: Scalars['String']['output'];
|
|
137433
|
+
value: Scalars['Int']['output'];
|
|
137434
|
+
};
|
|
136551
137435
|
export declare type MercuryRiskSort = {
|
|
136552
137436
|
field: MercuryRiskSortField;
|
|
136553
137437
|
order: SortOrder;
|
|
136554
137438
|
};
|
|
136555
137439
|
export declare enum MercuryRiskSortField {
|
|
137440
|
+
Impact = "IMPACT",
|
|
137441
|
+
Likelihood = "LIKELIHOOD",
|
|
136556
137442
|
Name = "NAME",
|
|
136557
137443
|
Status = "STATUS",
|
|
136558
|
-
TargetDate = "TARGET_DATE"
|
|
137444
|
+
TargetDate = "TARGET_DATE",
|
|
137445
|
+
UpdatedDate = "UPDATED_DATE"
|
|
136559
137446
|
}
|
|
136560
137447
|
export declare type MercuryRiskStatus = {
|
|
136561
137448
|
__typename?: 'MercuryRiskStatus';
|
|
@@ -136580,6 +137467,20 @@ export declare type MercuryRiskStatusTransitions = {
|
|
|
136580
137467
|
__typename?: 'MercuryRiskStatusTransitions';
|
|
136581
137468
|
available: Array<MercuryRiskStatusTransition>;
|
|
136582
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
|
+
}
|
|
136583
137484
|
export declare type MercuryRisksMutationApi = {
|
|
136584
137485
|
__typename?: 'MercuryRisksMutationApi';
|
|
136585
137486
|
createRisk?: Maybe<MercuryCreateRiskPayload>;
|
|
@@ -136588,6 +137489,8 @@ export declare type MercuryRisksMutationApi = {
|
|
|
136588
137489
|
transitionRiskStatus?: Maybe<MercuryTransitionRiskPayload>;
|
|
136589
137490
|
unlinkRiskFromFocusAreas?: Maybe<MercuryUnlinkRiskFromFocusAreasPayload>;
|
|
136590
137491
|
updateRiskDescription?: Maybe<MercuryUpdateRiskPayload>;
|
|
137492
|
+
updateRiskImpact?: Maybe<MercuryUpdateRiskPayload>;
|
|
137493
|
+
updateRiskLikelihood?: Maybe<MercuryUpdateRiskPayload>;
|
|
136591
137494
|
updateRiskName?: Maybe<MercuryUpdateRiskPayload>;
|
|
136592
137495
|
updateRiskOwner?: Maybe<MercuryUpdateRiskPayload>;
|
|
136593
137496
|
updateRiskSubmitter?: Maybe<MercuryUpdateRiskPayload>;
|
|
@@ -136611,6 +137514,12 @@ export declare type MercuryRisksMutationApiUnlinkRiskFromFocusAreasArgs = {
|
|
|
136611
137514
|
export declare type MercuryRisksMutationApiUpdateRiskDescriptionArgs = {
|
|
136612
137515
|
input: MercuryUpdateRiskDescriptionInput;
|
|
136613
137516
|
};
|
|
137517
|
+
export declare type MercuryRisksMutationApiUpdateRiskImpactArgs = {
|
|
137518
|
+
input: MercuryUpdateRiskImpactInput;
|
|
137519
|
+
};
|
|
137520
|
+
export declare type MercuryRisksMutationApiUpdateRiskLikelihoodArgs = {
|
|
137521
|
+
input: MercuryUpdateRiskLikelihoodInput;
|
|
137522
|
+
};
|
|
136614
137523
|
export declare type MercuryRisksMutationApiUpdateRiskNameArgs = {
|
|
136615
137524
|
input: MercuryUpdateRiskNameInput;
|
|
136616
137525
|
};
|
|
@@ -136627,6 +137536,7 @@ export declare type MercuryRisksQueryApi = {
|
|
|
136627
137536
|
__typename?: 'MercuryRisksQueryApi';
|
|
136628
137537
|
risk?: Maybe<MercuryRisk>;
|
|
136629
137538
|
riskImpactValues: Array<MercuryRiskImpact>;
|
|
137539
|
+
riskLikelihoodValues: Array<MercuryRiskLikelihood>;
|
|
136630
137540
|
riskStatuses: Array<MercuryRiskStatus>;
|
|
136631
137541
|
risks?: Maybe<Array<Maybe<MercuryRisk>>>;
|
|
136632
137542
|
risksSearch?: Maybe<MercuryRiskConnection>;
|
|
@@ -136637,6 +137547,9 @@ export declare type MercuryRisksQueryApiRiskArgs = {
|
|
|
136637
137547
|
export declare type MercuryRisksQueryApiRiskImpactValuesArgs = {
|
|
136638
137548
|
cloudId: Scalars['ID']['input'];
|
|
136639
137549
|
};
|
|
137550
|
+
export declare type MercuryRisksQueryApiRiskLikelihoodValuesArgs = {
|
|
137551
|
+
cloudId: Scalars['ID']['input'];
|
|
137552
|
+
};
|
|
136640
137553
|
export declare type MercuryRisksQueryApiRiskStatusesArgs = {
|
|
136641
137554
|
cloudId: Scalars['ID']['input'];
|
|
136642
137555
|
};
|
|
@@ -137573,6 +138486,18 @@ export declare type MercuryUpdateFocusAreaTargetDateInput = {
|
|
|
137573
138486
|
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
137574
138487
|
targetDateType?: InputMaybe<MercuryTargetDateType>;
|
|
137575
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
|
+
};
|
|
137576
138501
|
export declare type MercuryUpdateInvestmentCategoryNameInput = {
|
|
137577
138502
|
id: Scalars['ID']['input'];
|
|
137578
138503
|
name: Scalars['String']['input'];
|
|
@@ -137626,6 +138551,14 @@ export declare type MercuryUpdateRiskDescriptionInput = {
|
|
|
137626
138551
|
description: Scalars['String']['input'];
|
|
137627
138552
|
id: Scalars['ID']['input'];
|
|
137628
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
|
+
};
|
|
137629
138562
|
export declare type MercuryUpdateRiskNameInput = {
|
|
137630
138563
|
id: Scalars['ID']['input'];
|
|
137631
138564
|
name: Scalars['String']['input'];
|
|
@@ -137646,7 +138579,7 @@ export declare type MercuryUpdateRiskSubmitterInput = {
|
|
|
137646
138579
|
};
|
|
137647
138580
|
export declare type MercuryUpdateRiskTargetDateInput = {
|
|
137648
138581
|
id: Scalars['ID']['input'];
|
|
137649
|
-
targetDate?: InputMaybe<
|
|
138582
|
+
targetDate?: InputMaybe<MercuryRiskTargetDateInput>;
|
|
137650
138583
|
};
|
|
137651
138584
|
export declare type MercuryUpdateStrategicEventBudgetInput = {
|
|
137652
138585
|
budget?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
@@ -138057,6 +138990,7 @@ export declare type Mutation = {
|
|
|
138057
138990
|
agentStudio_updateAgentAsFavourite?: Maybe<AgentStudioUpdateAgentAsFavouritePayload>;
|
|
138058
138991
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
138059
138992
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
138993
|
+
agentStudio_updateAgentModelVersion?: Maybe<AgentStudioUpdateAgentModelVersionPayload>;
|
|
138060
138994
|
agentStudio_updateAgentVerification?: Maybe<AgentStudioUpdateAgentVerificationPayload>;
|
|
138061
138995
|
agentStudio_updateConversationConfiguration?: Maybe<AgentStudioUpdateConversationConfigurationPayload>;
|
|
138062
138996
|
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
@@ -138155,7 +139089,7 @@ export declare type Mutation = {
|
|
|
138155
139089
|
assetsDM_updateDataSourceType?: Maybe<AssetsDmUpdateDataSourceTypeResponse>;
|
|
138156
139090
|
assetsDM_updateDefaultCleansingRule?: Maybe<AssetsDmUpdateDefaultCleansingRuleResponse>;
|
|
138157
139091
|
assetsVertical_generateInsights?: Maybe<AssetsVerticalGenerateInsightsPayload>;
|
|
138158
|
-
assetsVertical_instantiateBundleByType:
|
|
139092
|
+
assetsVertical_instantiateBundleByType: AssetsVerticalAsyncTaskPayload;
|
|
138159
139093
|
assets_updateObjectAttributeValue?: Maybe<AssetsAttributeOnObject>;
|
|
138160
139094
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
138161
139095
|
attachDanglingComment?: Maybe<Comment>;
|
|
@@ -138348,6 +139282,8 @@ export declare type Mutation = {
|
|
|
138348
139282
|
confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
|
|
138349
139283
|
confluence_updateReviewerDecision?: Maybe<ConfluenceWorkflowReviewerDecisionPayload>;
|
|
138350
139284
|
confluence_updateShareableLink?: Maybe<ConfluenceUpdateShareableLinksPayload>;
|
|
139285
|
+
confluence_updateShareableLinkSiteConfig?: Maybe<ConfluenceUpdateShareableLinkSiteConfigPayload>;
|
|
139286
|
+
confluence_updateShareableLinkSpaceConfig?: Maybe<ConfluenceUpdateShareableLinkSpaceConfigPayload>;
|
|
138351
139287
|
confluence_updateSpaceAccessRequestSettings?: Maybe<ConfluenceUpdateAccessRequestSettingsPayload>;
|
|
138352
139288
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
138353
139289
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
@@ -138519,7 +139455,10 @@ export declare type Mutation = {
|
|
|
138519
139455
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
138520
139456
|
disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
|
|
138521
139457
|
disableSuperAdmin?: Maybe<SuperAdminPayload>;
|
|
139458
|
+
dlp_reClassify?: Maybe<DlpClassificationJobResponse>;
|
|
138522
139459
|
dlp_saveDetectorClassificationMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
139460
|
+
dlp_startPreviewRulesImpact?: Maybe<DlpStartPreviewResponse>;
|
|
139461
|
+
dlp_unClassify?: Maybe<DlpClassificationJobResponse>;
|
|
138523
139462
|
ecosystem?: Maybe<EcosystemMutation>;
|
|
138524
139463
|
editSprint?: Maybe<SprintResponse>;
|
|
138525
139464
|
editorDraftSyncAction?: Maybe<EditorDraftSyncPayload>;
|
|
@@ -138720,6 +139659,7 @@ export declare type Mutation = {
|
|
|
138720
139659
|
jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
|
|
138721
139660
|
jira_setTimelineBarColorMode?: Maybe<JiraSetTimelineBarColorModePayload>;
|
|
138722
139661
|
jira_setTimelineHighlightedReleases?: Maybe<JiraSetTimelineHighlightedReleasesPayload>;
|
|
139662
|
+
jira_setTimelineViewFieldSets?: Maybe<JiraSetTimelineViewFieldSetsPayload>;
|
|
138723
139663
|
jira_setTimelineViewHideDependencies?: Maybe<JiraSetTimelineViewHideDependenciesPayload>;
|
|
138724
139664
|
jira_setTimelineViewHideReleases?: Maybe<JiraSetTimelineViewHideReleasesPayload>;
|
|
138725
139665
|
jira_setTimelineViewHideWarnings?: Maybe<JiraSetTimelineViewHideWarningsPayload>;
|
|
@@ -139349,6 +140289,10 @@ export declare type MutationAgentStudio_UpdateAgentKnowledgeSourcesArgs = {
|
|
|
139349
140289
|
id: Scalars['ID']['input'];
|
|
139350
140290
|
input: AgentStudioKnowledgeConfigurationInput;
|
|
139351
140291
|
};
|
|
140292
|
+
export declare type MutationAgentStudio_UpdateAgentModelVersionArgs = {
|
|
140293
|
+
action: AgentStudioModelUpgradeAction;
|
|
140294
|
+
id: Scalars['ID']['input'];
|
|
140295
|
+
};
|
|
139352
140296
|
export declare type MutationAgentStudio_UpdateAgentVerificationArgs = {
|
|
139353
140297
|
id: Scalars['ID']['input'];
|
|
139354
140298
|
verified: Scalars['Boolean']['input'];
|
|
@@ -139763,8 +140707,7 @@ export declare type MutationAssetsVertical_GenerateInsightsArgs = {
|
|
|
139763
140707
|
input: AssetsVerticalGenerateInsightsInput;
|
|
139764
140708
|
};
|
|
139765
140709
|
export declare type MutationAssetsVertical_InstantiateBundleByTypeArgs = {
|
|
139766
|
-
|
|
139767
|
-
type: AssetsVerticalBundleType;
|
|
140710
|
+
input: AssetsVerticalInstantiateBundleByTypeInput;
|
|
139768
140711
|
};
|
|
139769
140712
|
export declare type MutationAssets_UpdateObjectAttributeValueArgs = {
|
|
139770
140713
|
cloudId: Scalars['ID']['input'];
|
|
@@ -140437,7 +141380,15 @@ export declare type MutationConfluence_UpdateReviewerDecisionArgs = {
|
|
|
140437
141380
|
};
|
|
140438
141381
|
export declare type MutationConfluence_UpdateShareableLinkArgs = {
|
|
140439
141382
|
cloudId: Scalars['ID']['input'];
|
|
140440
|
-
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;
|
|
140441
141392
|
};
|
|
140442
141393
|
export declare type MutationConfluence_UpdateSpaceAccessRequestSettingsArgs = {
|
|
140443
141394
|
cloudId: Scalars['ID']['input'];
|
|
@@ -141064,10 +142015,21 @@ export declare type MutationDisableExperimentArgs = {
|
|
|
141064
142015
|
export declare type MutationDisablePublicLinkForPageArgs = {
|
|
141065
142016
|
pageId: Scalars['ID']['input'];
|
|
141066
142017
|
};
|
|
142018
|
+
export declare type MutationDlp_ReClassifyArgs = {
|
|
142019
|
+
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
142020
|
+
};
|
|
141067
142021
|
export declare type MutationDlp_SaveDetectorClassificationMappingArgs = {
|
|
141068
142022
|
mappingRequests?: InputMaybe<Array<InputMaybe<DlpDetectorClassificationMappingRequestInput>>>;
|
|
141069
142023
|
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
141070
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
|
+
};
|
|
141071
142033
|
export declare type MutationEditSprintArgs = {
|
|
141072
142034
|
input?: InputMaybe<EditSprintInput>;
|
|
141073
142035
|
};
|
|
@@ -141078,7 +142040,7 @@ export declare type MutationEnableExperimentArgs = {
|
|
|
141078
142040
|
experimentKey: Scalars['String']['input'];
|
|
141079
142041
|
};
|
|
141080
142042
|
export declare type MutationEnablePublicLinkForPageArgs = {
|
|
141081
|
-
accessType?: InputMaybe<
|
|
142043
|
+
accessType?: InputMaybe<ConfluenceShareableLinkAccessType>;
|
|
141082
142044
|
pageId: Scalars['ID']['input'];
|
|
141083
142045
|
};
|
|
141084
142046
|
export declare type MutationFavouritePageArgs = {
|
|
@@ -141659,6 +142621,9 @@ export declare type MutationJira_SetTimelineHighlightedReleasesArgs = {
|
|
|
141659
142621
|
cloudId: Scalars['ID']['input'];
|
|
141660
142622
|
input: JiraSetTimelineHighlightedReleasesInput;
|
|
141661
142623
|
};
|
|
142624
|
+
export declare type MutationJira_SetTimelineViewFieldSetsArgs = {
|
|
142625
|
+
input: JiraSetTimelineViewFieldSetsInput;
|
|
142626
|
+
};
|
|
141662
142627
|
export declare type MutationJira_SetTimelineViewHideDependenciesArgs = {
|
|
141663
142628
|
input: JiraSetTimelineViewHideDependenciesInput;
|
|
141664
142629
|
};
|
|
@@ -141822,6 +142787,7 @@ export declare type MutationKitsune_CreateSpaceArgs = {
|
|
|
141822
142787
|
workspaceAri: Scalars['ID']['input'];
|
|
141823
142788
|
};
|
|
141824
142789
|
export declare type MutationKitsune_CreateViewArgs = {
|
|
142790
|
+
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
141825
142791
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
141826
142792
|
name: Scalars['String']['input'];
|
|
141827
142793
|
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -144793,6 +145759,28 @@ export declare enum Platform {
|
|
|
144793
145759
|
Ios = "IOS",
|
|
144794
145760
|
Web = "WEB"
|
|
144795
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
|
+
};
|
|
144796
145784
|
export declare enum PlaybookTemplateCategory {
|
|
144797
145785
|
Hrsm = "HRSM",
|
|
144798
145786
|
Itsm = "ITSM",
|
|
@@ -145021,6 +146009,10 @@ export declare type PolarisMatrixConfig = {
|
|
|
145021
146009
|
__typename?: 'PolarisMatrixConfig';
|
|
145022
146010
|
axes?: Maybe<Array<PolarisMatrixAxis>>;
|
|
145023
146011
|
};
|
|
146012
|
+
export declare enum PolarisNumberColumnDisplay {
|
|
146013
|
+
Disabled = "DISABLED",
|
|
146014
|
+
Enabled = "ENABLED"
|
|
146015
|
+
}
|
|
145024
146016
|
export declare type PolarisPlay = {
|
|
145025
146017
|
__typename?: 'PolarisPlay';
|
|
145026
146018
|
contribution?: Maybe<PolarisPlayContribution>;
|
|
@@ -145304,6 +146296,7 @@ export declare type PolarisView = {
|
|
|
145304
146296
|
layoutType?: Maybe<PolarisViewLayoutType>;
|
|
145305
146297
|
matrixConfig?: Maybe<PolarisMatrixConfig>;
|
|
145306
146298
|
name: Scalars['String']['output'];
|
|
146299
|
+
numberColumnDisplay?: Maybe<PolarisNumberColumnDisplay>;
|
|
145307
146300
|
projectId: Scalars['Int']['output'];
|
|
145308
146301
|
rank: Scalars['Int']['output'];
|
|
145309
146302
|
showConnectionsMatchingColumn?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -145551,6 +146544,8 @@ export declare type PostOfficeScopeEntryInput = {
|
|
|
145551
146544
|
export declare type PostOfficeSubscriptionMatchersInput = {
|
|
145552
146545
|
atlassianAccountId: Scalars['String']['input'];
|
|
145553
146546
|
placementId: Scalars['String']['input'];
|
|
146547
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
146548
|
+
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
145554
146549
|
};
|
|
145555
146550
|
export declare type PremiumExtensionsFeature = {
|
|
145556
146551
|
__typename?: 'PremiumExtensionsFeature';
|
|
@@ -145704,7 +146699,7 @@ export declare type PublicLinkOnboardingReference = {
|
|
|
145704
146699
|
};
|
|
145705
146700
|
export declare type PublicLinkPage = {
|
|
145706
146701
|
__typename?: 'PublicLinkPage';
|
|
145707
|
-
accessType?: Maybe<
|
|
146702
|
+
accessType?: Maybe<ConfluenceShareableLinkAccessType>;
|
|
145708
146703
|
lastEnabledBy?: Maybe<Scalars['String']['output']>;
|
|
145709
146704
|
lastEnabledByUser?: Maybe<Person>;
|
|
145710
146705
|
lastEnabledDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -145947,6 +146942,7 @@ export declare type Query = {
|
|
|
145947
146942
|
admin_auditLogEventIpAddresses?: Maybe<AdminAuditLogEventIpAddressConnection>;
|
|
145948
146943
|
admin_auditLogEventLocations?: Maybe<AdminAuditLogEventLocationConnection>;
|
|
145949
146944
|
admin_auditLogEvents?: Maybe<AdminAuditLogEventConnection>;
|
|
146945
|
+
admin_auditLogProductMapping?: Maybe<Array<AdminAuditLogProductMapping>>;
|
|
145950
146946
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
145951
146947
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
145952
146948
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
@@ -146286,6 +147282,8 @@ export declare type Query = {
|
|
|
146286
147282
|
confluence_contentAccessRequestByStatus?: Maybe<ConfluenceContentAccessRequestConnection>;
|
|
146287
147283
|
confluence_contentAnalyticsCountUserByContentType?: Maybe<ConfluenceContentAnalyticsCountUserByContentType>;
|
|
146288
147284
|
confluence_contentApprovalStatuses?: Maybe<Array<Maybe<ConfluenceApprovalsWorkflowStatus>>>;
|
|
147285
|
+
confluence_contentPerformanceList?: Maybe<ConfluenceContentPerformanceConnection>;
|
|
147286
|
+
confluence_contentPerformanceSummary?: Maybe<ConfluenceContentPerformanceSummary>;
|
|
146289
147287
|
confluence_contentPermissions?: Maybe<ConfluenceContentPermissions>;
|
|
146290
147288
|
confluence_contentReactionsSummary?: Maybe<ConfluenceReactionSummary>;
|
|
146291
147289
|
confluence_contentSmartLinksForDraft?: Maybe<PaginatedSmartLinkList>;
|
|
@@ -146331,6 +147329,7 @@ export declare type Query = {
|
|
|
146331
147329
|
confluence_mutablePrincipalTypesByCombinationId?: Maybe<Array<Maybe<ConfluencePermissionTransitionMutationPrincipalType>>>;
|
|
146332
147330
|
confluence_mutablePrincipalTypesByCombinationIds?: Maybe<Array<Maybe<ConfluenceMutablePrincipalTypesByCombinationId>>>;
|
|
146333
147331
|
confluence_nbmChainsForTransformation?: Maybe<ConfluenceNbmChainsForTransformationConnection>;
|
|
147332
|
+
confluence_nbmConfigurableTransformers?: Maybe<ConfluenceNbmTransformers>;
|
|
146334
147333
|
confluence_nbmEligibleTransformersForChain?: Maybe<Array<Maybe<ConfluenceNbmTransformer>>>;
|
|
146335
147334
|
confluence_nbmMostRecentVerificationJob?: Maybe<ConfluenceNbmVerificationJob>;
|
|
146336
147335
|
confluence_nbmPerfReportList?: Maybe<ConfluenceNbmScanConnection>;
|
|
@@ -146362,6 +147361,10 @@ export declare type Query = {
|
|
|
146362
147361
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
146363
147362
|
confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
|
|
146364
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>>>;
|
|
146365
147368
|
confluence_smartSpaceOverview?: Maybe<ConfluenceSmartSpaceOverview>;
|
|
146366
147369
|
confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
|
|
146367
147370
|
confluence_spacePermissionCombinationsByCriteria?: Maybe<ConfluenceSpacePermissionCombinationConnection>;
|
|
@@ -146530,6 +147533,8 @@ export declare type Query = {
|
|
|
146530
147533
|
diagnostics?: Maybe<Scalars['JSON']['output']>;
|
|
146531
147534
|
dlp_getDetectionContentSummary?: Maybe<DlpDetectionContentSummaryListResponse>;
|
|
146532
147535
|
dlp_getDetectorClassificationMapping?: Maybe<DlpDetectorClassificationMappingListResponse>;
|
|
147536
|
+
dlp_getPreviewRulesImpact?: Maybe<DlpPreviewRulesImpactResponse>;
|
|
147537
|
+
dlp_isClassificationTaskRunning?: Maybe<Scalars['Boolean']['output']>;
|
|
146533
147538
|
dvcs?: Maybe<DvcsQuery>;
|
|
146534
147539
|
echo?: Maybe<Scalars['String']['output']>;
|
|
146535
147540
|
ecosystem?: Maybe<EcosystemQuery>;
|
|
@@ -146671,6 +147676,7 @@ export declare type Query = {
|
|
|
146671
147676
|
jiraServers?: Maybe<JiraServersResult>;
|
|
146672
147677
|
jira_backlog?: Maybe<JiraBacklog>;
|
|
146673
147678
|
jira_backlogView?: Maybe<JiraBacklogView>;
|
|
147679
|
+
jira_backlogViewCardListsByIds?: Maybe<Array<JiraBacklogViewCardList>>;
|
|
146674
147680
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
146675
147681
|
jira_boardViewCellsByIds?: Maybe<Array<Maybe<JiraBoardViewCell>>>;
|
|
146676
147682
|
jira_boardsByIds?: Maybe<Array<Maybe<JiraBoard>>>;
|
|
@@ -146801,6 +147807,7 @@ export declare type Query = {
|
|
|
146801
147807
|
me: AuthenticationContext;
|
|
146802
147808
|
mediaConfiguration?: Maybe<MediaConfiguration>;
|
|
146803
147809
|
mercury?: Maybe<MercuryQueryApi>;
|
|
147810
|
+
mercury_dataIntegrations?: Maybe<MercuryDataIntegrationsQueryApi>;
|
|
146804
147811
|
mercury_funds?: Maybe<MercuryFundsQueryApi>;
|
|
146805
147812
|
mercury_insights?: Maybe<MercuryInsightsQueryApi>;
|
|
146806
147813
|
mercury_jiraAlignProvider?: Maybe<MercuryJiraAlignProviderQueryApi>;
|
|
@@ -146842,6 +147849,7 @@ export declare type Query = {
|
|
|
146842
147849
|
permitted?: Maybe<Scalars['Boolean']['output']>;
|
|
146843
147850
|
permsReportDownloadLinkForTask?: Maybe<PermsReportDownloadLink>;
|
|
146844
147851
|
playbook_generatePlaybook?: Maybe<GeneratePlaybookPayload>;
|
|
147852
|
+
playbook_getPlaybookDetailsForView?: Maybe<PlaybookDetailsForViewPayload>;
|
|
146845
147853
|
playbook_jiraPlaybook?: Maybe<JiraPlaybookQueryPayload>;
|
|
146846
147854
|
playbook_jiraPlaybookInstancesForIssue?: Maybe<JiraPlaybookInstanceConnection>;
|
|
146847
147855
|
playbook_jiraPlaybookLabelsForProject?: Maybe<JiraPlaybookLabelConnection>;
|
|
@@ -146986,6 +147994,8 @@ export declare type Query = {
|
|
|
146986
147994
|
spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
|
|
146987
147995
|
spf_getMediaToken?: Maybe<SpfMediaTokenResult>;
|
|
146988
147996
|
spf_plan?: Maybe<SpfPlanResult>;
|
|
147997
|
+
spf_planAdminSettings?: Maybe<SpfPlanAdminSettings>;
|
|
147998
|
+
spf_planById?: Maybe<SpfPlan>;
|
|
146989
147999
|
spf_planPortfolioAllowedTypes?: Maybe<Array<Maybe<SpfPlanPortfolioAllowedType>>>;
|
|
146990
148000
|
spf_planScenarioInvestment?: Maybe<SpfPlanScenarioInvestmentResult>;
|
|
146991
148001
|
spf_planScenarioInvestmentsByIds?: Maybe<Array<Maybe<SpfPlanScenarioInvestment>>>;
|
|
@@ -147183,6 +148193,9 @@ export declare type QueryAdmin_AuditLogEventsArgs = {
|
|
|
147183
148193
|
input: AdminFetchAdminAuditLogEventsInput;
|
|
147184
148194
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
147185
148195
|
};
|
|
148196
|
+
export declare type QueryAdmin_AuditLogProductMappingArgs = {
|
|
148197
|
+
container: AdminAuditLogContainer;
|
|
148198
|
+
};
|
|
147186
148199
|
export declare type QueryAdmin_CheckLicensesCapacityArgs = {
|
|
147187
148200
|
input: AdminLicenseInput;
|
|
147188
148201
|
orgId: Scalars['ID']['input'];
|
|
@@ -148772,6 +149785,22 @@ export declare type QueryConfluence_ContentApprovalStatusesArgs = {
|
|
|
148772
149785
|
cloudId: Scalars['ID']['input'];
|
|
148773
149786
|
transitionType?: InputMaybe<ConfluenceApprovalTransitionType>;
|
|
148774
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
|
+
};
|
|
148775
149804
|
export declare type QueryConfluence_ContentPermissionsArgs = {
|
|
148776
149805
|
cloudId: Scalars['ID']['input'];
|
|
148777
149806
|
contentId: Scalars['ID']['input'];
|
|
@@ -148983,6 +150012,9 @@ export declare type QueryConfluence_NbmChainsForTransformationArgs = {
|
|
|
148983
150012
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
148984
150013
|
scanId: Scalars['ID']['input'];
|
|
148985
150014
|
};
|
|
150015
|
+
export declare type QueryConfluence_NbmConfigurableTransformersArgs = {
|
|
150016
|
+
cloudId: Scalars['ID']['input'];
|
|
150017
|
+
};
|
|
148986
150018
|
export declare type QueryConfluence_NbmEligibleTransformersForChainArgs = {
|
|
148987
150019
|
chain: Scalars['String']['input'];
|
|
148988
150020
|
cloudId: Scalars['ID']['input'];
|
|
@@ -149072,6 +150104,7 @@ export declare type QueryConfluence_PrincipalsByCombinationIdArgs = {
|
|
|
149072
150104
|
cloudId: Scalars['ID']['input'];
|
|
149073
150105
|
combinationId: Scalars['String']['input'];
|
|
149074
150106
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
150107
|
+
principalId?: InputMaybe<Scalars['String']['input']>;
|
|
149075
150108
|
principalTypes?: InputMaybe<Array<InputMaybe<ConfluencePermissionTransitionPrincipalType>>>;
|
|
149076
150109
|
};
|
|
149077
150110
|
export declare type QueryConfluence_PublicLinkSpaceHomePageArgs = {
|
|
@@ -149144,6 +150177,19 @@ export declare type QueryConfluence_SearchUserArgs = {
|
|
|
149144
150177
|
export declare type QueryConfluence_ShareConfigurationArgs = {
|
|
149145
150178
|
cloudId: Scalars['ID']['input'];
|
|
149146
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
|
+
};
|
|
149147
150193
|
export declare type QueryConfluence_SmartSpaceOverviewArgs = {
|
|
149148
150194
|
cloudId: Scalars['ID']['input'];
|
|
149149
150195
|
spaceKey: Scalars['String']['input'];
|
|
@@ -149963,6 +151009,13 @@ export declare type QueryDlp_GetDetectorClassificationMappingArgs = {
|
|
|
149963
151009
|
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
149964
151010
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
149965
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
|
+
};
|
|
149966
151019
|
export declare type QueryEditorConversionSettingsArgs = {
|
|
149967
151020
|
spaceKey: Scalars['String']['input'];
|
|
149968
151021
|
};
|
|
@@ -150454,6 +151507,9 @@ export declare type QueryJira_BacklogArgs = {
|
|
|
150454
151507
|
export declare type QueryJira_BacklogViewArgs = {
|
|
150455
151508
|
input: JiraBacklogViewInput;
|
|
150456
151509
|
};
|
|
151510
|
+
export declare type QueryJira_BacklogViewCardListsByIdsArgs = {
|
|
151511
|
+
ids: Array<Scalars['ID']['input']>;
|
|
151512
|
+
};
|
|
150457
151513
|
export declare type QueryJira_BoardViewArgs = {
|
|
150458
151514
|
input: JiraBoardViewInput;
|
|
150459
151515
|
};
|
|
@@ -151019,6 +152075,9 @@ export declare type QueryPermsReportDownloadLinkForTaskArgs = {
|
|
|
151019
152075
|
export declare type QueryPlaybook_GeneratePlaybookArgs = {
|
|
151020
152076
|
input: GeneratePlaybookInput;
|
|
151021
152077
|
};
|
|
152078
|
+
export declare type QueryPlaybook_GetPlaybookDetailsForViewArgs = {
|
|
152079
|
+
playbookAri: Scalars['ID']['input'];
|
|
152080
|
+
};
|
|
151022
152081
|
export declare type QueryPlaybook_JiraPlaybookArgs = {
|
|
151023
152082
|
playbookAri: Scalars['ID']['input'];
|
|
151024
152083
|
};
|
|
@@ -151615,6 +152674,12 @@ export declare type QuerySpf_GetMediaTokenArgs = {
|
|
|
151615
152674
|
export declare type QuerySpf_PlanArgs = {
|
|
151616
152675
|
id: Scalars['ID']['input'];
|
|
151617
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
|
+
};
|
|
151618
152683
|
export declare type QuerySpf_PlanPortfolioAllowedTypesArgs = {
|
|
151619
152684
|
cloudId: Scalars['ID']['input'];
|
|
151620
152685
|
};
|
|
@@ -153353,6 +154418,7 @@ export declare enum ResourceType {
|
|
|
153353
154418
|
Database = "DATABASE",
|
|
153354
154419
|
Folder = "FOLDER",
|
|
153355
154420
|
Page = "PAGE",
|
|
154421
|
+
Slide = "SLIDE",
|
|
153356
154422
|
Space = "SPACE",
|
|
153357
154423
|
Whiteboard = "WHITEBOARD"
|
|
153358
154424
|
}
|
|
@@ -154912,6 +155978,7 @@ export declare type SearchFirstPartyMetadata = {
|
|
|
154912
155978
|
};
|
|
154913
155979
|
export declare type SearchGitFilters = {
|
|
154914
155980
|
pullRequestStatus?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
155981
|
+
repoName?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
154915
155982
|
};
|
|
154916
155983
|
export declare type SearchGraphQlConfigurationResponse = {
|
|
154917
155984
|
__typename?: 'SearchGraphQLConfigurationResponse';
|
|
@@ -155129,6 +156196,7 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
155129
156196
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
155130
156197
|
includeBoostedLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
155131
156198
|
interleaveResults?: InputMaybe<Scalars['Boolean']['input']>;
|
|
156199
|
+
isSearchTool?: InputMaybe<Scalars['Boolean']['input']>;
|
|
155132
156200
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
155133
156201
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
155134
156202
|
sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
|
|
@@ -176626,6 +177694,10 @@ export declare type SpfPlanScenariosArgs = {
|
|
|
176626
177694
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
176627
177695
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
176628
177696
|
};
|
|
177697
|
+
export declare type SpfPlanAdminSettings = {
|
|
177698
|
+
__typename?: 'SpfPlanAdminSettings';
|
|
177699
|
+
planPortfolioAllowedTypes: Array<Maybe<SpfPlanPortfolioAllowedType>>;
|
|
177700
|
+
};
|
|
176629
177701
|
export declare type SpfPlanApproverConnection = {
|
|
176630
177702
|
__typename?: 'SpfPlanApproverConnection';
|
|
176631
177703
|
edges?: Maybe<Array<Maybe<SpfPlanApproverEdge>>>;
|
|
@@ -178628,7 +179700,7 @@ export declare type Subscription = {
|
|
|
178628
179700
|
postOffice_onMessageReceivedEnriched?: Maybe<PostOfficeEnrichedMessagePayload>;
|
|
178629
179701
|
sandbox: SandboxSubscription;
|
|
178630
179702
|
signup: SignupSubscriptionApi;
|
|
178631
|
-
spf_onPlanUpdate?: Maybe<
|
|
179703
|
+
spf_onPlanUpdate?: Maybe<SpfPlan>;
|
|
178632
179704
|
stakeholderComms_opsgenieRiskAssesmentOnUpdate?: Maybe<StakeholderCommsOpsgenieRiskAssessmentResult>;
|
|
178633
179705
|
testing?: Maybe<TestingSubscription>;
|
|
178634
179706
|
trello: TrelloSubscriptionApi;
|
|
@@ -181230,7 +182302,8 @@ export declare type TownsquareGoalAccessEdge = {
|
|
|
181230
182302
|
};
|
|
181231
182303
|
export declare enum TownsquareGoalAccessLevel {
|
|
181232
182304
|
OpenEdit = "OPEN_EDIT",
|
|
181233
|
-
OpenView = "OPEN_VIEW"
|
|
182305
|
+
OpenView = "OPEN_VIEW",
|
|
182306
|
+
Restricted = "RESTRICTED"
|
|
181234
182307
|
}
|
|
181235
182308
|
export declare enum TownsquareGoalAccessRole {
|
|
181236
182309
|
Editor = "EDITOR",
|
|
@@ -184452,6 +185525,7 @@ export declare type TrelloBaseBoardUpdated = {
|
|
|
184452
185525
|
labels?: Maybe<TrelloLabelConnectionUpdated>;
|
|
184453
185526
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
184454
185527
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
185528
|
+
onLabelDeleted?: Maybe<Array<TrelloLabelDeleted>>;
|
|
184455
185529
|
onPlannerEventCardsDeleted?: Maybe<Array<TrelloPlannerEventCardDeleted>>;
|
|
184456
185530
|
plannerEventCards?: Maybe<TrelloCardUpdatedConnection>;
|
|
184457
185531
|
workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
|
|
@@ -185262,6 +186336,9 @@ export declare type TrelloCardEdgeUpdated = {
|
|
|
185262
186336
|
};
|
|
185263
186337
|
export declare enum TrelloCardExternalSource {
|
|
185264
186338
|
BrowserExtension = "BROWSER_EXTENSION",
|
|
186339
|
+
BrowserExtensionHighlight = "BROWSER_EXTENSION_HIGHLIGHT",
|
|
186340
|
+
BrowserExtensionImage = "BROWSER_EXTENSION_IMAGE",
|
|
186341
|
+
BrowserExtensionLink = "BROWSER_EXTENSION_LINK",
|
|
185265
186342
|
Confluence = "CONFLUENCE",
|
|
185266
186343
|
Email = "EMAIL",
|
|
185267
186344
|
Loom = "LOOM",
|
|
@@ -185504,6 +186581,24 @@ export declare type TrelloCommentCardActionDisplayEntities = {
|
|
|
185504
186581
|
contextOn?: Maybe<TrelloActionTranslatableEntity>;
|
|
185505
186582
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
185506
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
|
+
};
|
|
185507
186602
|
export declare type TrelloCopiedCardSource = {
|
|
185508
186603
|
__typename?: 'TrelloCopiedCardSource';
|
|
185509
186604
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -186207,6 +187302,7 @@ export declare type TrelloInboxUpdated = TrelloBaseBoardUpdated & {
|
|
|
186207
187302
|
labels?: Maybe<TrelloLabelConnectionUpdated>;
|
|
186208
187303
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
186209
187304
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
187305
|
+
onLabelDeleted?: Maybe<Array<TrelloLabelDeleted>>;
|
|
186210
187306
|
onPlannerEventCardsDeleted?: Maybe<Array<TrelloPlannerEventCardDeleted>>;
|
|
186211
187307
|
plannerEventCards?: Maybe<TrelloCardUpdatedConnection>;
|
|
186212
187308
|
prefs?: Maybe<TrelloInboxPrefs>;
|
|
@@ -186703,6 +187799,8 @@ export declare type TrelloMutationApi = {
|
|
|
186703
187799
|
assignCardsToPlannerCalendarEvent?: Maybe<TrelloAssignCardsToPlannerCalendarEventPayload>;
|
|
186704
187800
|
bulkDeleteList?: Maybe<TrelloBulkDeleteListPayload>;
|
|
186705
187801
|
closeBoard?: Maybe<TrelloCloseBoardPayload>;
|
|
187802
|
+
convertBoardToTemplate?: Maybe<TrelloConvertBoardToTemplatePayload>;
|
|
187803
|
+
convertTemplateToBoard?: Maybe<TrelloConvertTemplateToBoardPayload>;
|
|
186706
187804
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
186707
187805
|
createBoardWithAi?: Maybe<TrelloCreateBoardWithAiPayload>;
|
|
186708
187806
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
@@ -186732,6 +187830,7 @@ export declare type TrelloMutationApi = {
|
|
|
186732
187830
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
186733
187831
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
186734
187832
|
removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
|
|
187833
|
+
reopenBoard?: Maybe<TrelloReopenBoardPayload>;
|
|
186735
187834
|
resetCardCover?: Maybe<TrelloResetCardCoverPayload>;
|
|
186736
187835
|
retryAiOnBoard?: Maybe<TrelloRetryAiOnBoardPayload>;
|
|
186737
187836
|
rotateOAuth2ClientSecret?: Maybe<TrelloRotateOAuth2ClientSecretPayload>;
|
|
@@ -186770,6 +187869,7 @@ export declare type TrelloMutationApi = {
|
|
|
186770
187869
|
updatePrimaryPlannerAccount?: Maybe<TrelloUpdatePrimaryPlannerAccountPayload>;
|
|
186771
187870
|
updateProactiveSmartScheduleStatus?: Maybe<TrelloUpdateProactiveSmartScheduleStatusPayload>;
|
|
186772
187871
|
updateProposedEvent?: Maybe<TrelloUpdateProposedEventPayload>;
|
|
187872
|
+
updateSmartScheduleBoardPreference?: Maybe<TrelloUpdateSmartScheduleBoardPreferencePayload>;
|
|
186773
187873
|
updateSmartScheduleLastActivity?: Maybe<TrelloUpdateSmartScheduleLastActivityPayload>;
|
|
186774
187874
|
updateWorkspaceTag?: Maybe<TrelloUpdateWorkspaceTagPayload>;
|
|
186775
187875
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
@@ -186804,6 +187904,12 @@ export declare type TrelloMutationApiBulkDeleteListArgs = {
|
|
|
186804
187904
|
export declare type TrelloMutationApiCloseBoardArgs = {
|
|
186805
187905
|
input: TrelloCloseBoardInput;
|
|
186806
187906
|
};
|
|
187907
|
+
export declare type TrelloMutationApiConvertBoardToTemplateArgs = {
|
|
187908
|
+
input: TrelloConvertBoardToTemplateInput;
|
|
187909
|
+
};
|
|
187910
|
+
export declare type TrelloMutationApiConvertTemplateToBoardArgs = {
|
|
187911
|
+
input: TrelloConvertTemplateToBoardInput;
|
|
187912
|
+
};
|
|
186807
187913
|
export declare type TrelloMutationApiCreateApplicationArgs = {
|
|
186808
187914
|
input: TrelloCreateApplicationInput;
|
|
186809
187915
|
};
|
|
@@ -186888,6 +187994,9 @@ export declare type TrelloMutationApiRemoveMemberFromWorkspaceArgs = {
|
|
|
186888
187994
|
export declare type TrelloMutationApiRemoveWorkspaceTagFromBoardArgs = {
|
|
186889
187995
|
input: TrelloRemoveWorkspaceTagFromBoardInput;
|
|
186890
187996
|
};
|
|
187997
|
+
export declare type TrelloMutationApiReopenBoardArgs = {
|
|
187998
|
+
input: TrelloReopenBoardInput;
|
|
187999
|
+
};
|
|
186891
188000
|
export declare type TrelloMutationApiResetCardCoverArgs = {
|
|
186892
188001
|
input: TrelloResetCardCoverInput;
|
|
186893
188002
|
};
|
|
@@ -186999,6 +188108,9 @@ export declare type TrelloMutationApiUpdateProactiveSmartScheduleStatusArgs = {
|
|
|
186999
188108
|
export declare type TrelloMutationApiUpdateProposedEventArgs = {
|
|
187000
188109
|
input: TrelloUpdateProposedEventInput;
|
|
187001
188110
|
};
|
|
188111
|
+
export declare type TrelloMutationApiUpdateSmartScheduleBoardPreferenceArgs = {
|
|
188112
|
+
input: TrelloUpdateSmartScheduleBoardPreferenceInput;
|
|
188113
|
+
};
|
|
187002
188114
|
export declare type TrelloMutationApiUpdateWorkspaceTagArgs = {
|
|
187003
188115
|
input: TrelloUpdateWorkspaceTagInput;
|
|
187004
188116
|
};
|
|
@@ -188118,6 +189230,16 @@ export declare type TrelloRemoveWorkspaceTagFromBoardPayload = Payload & {
|
|
|
188118
189230
|
errors?: Maybe<Array<MutationError>>;
|
|
188119
189231
|
success: Scalars['Boolean']['output'];
|
|
188120
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
|
+
};
|
|
188121
189243
|
export declare type TrelloResetCardCoverInput = {
|
|
188122
189244
|
cardId: Scalars['ID']['input'];
|
|
188123
189245
|
};
|
|
@@ -188397,7 +189519,7 @@ export declare type TrelloUpdateBoardDescriptionInput = {
|
|
|
188397
189519
|
};
|
|
188398
189520
|
export declare type TrelloUpdateBoardDescriptionPayload = Payload & {
|
|
188399
189521
|
__typename?: 'TrelloUpdateBoardDescriptionPayload';
|
|
188400
|
-
board?: Maybe<
|
|
189522
|
+
board?: Maybe<TrelloBoard>;
|
|
188401
189523
|
errors?: Maybe<Array<MutationError>>;
|
|
188402
189524
|
success: Scalars['Boolean']['output'];
|
|
188403
189525
|
};
|
|
@@ -188750,6 +189872,7 @@ export declare type TrelloUpdateProactiveSmartScheduleStatusInput = {
|
|
|
188750
189872
|
export declare type TrelloUpdateProactiveSmartScheduleStatusPayload = Payload & {
|
|
188751
189873
|
__typename?: 'TrelloUpdateProactiveSmartScheduleStatusPayload';
|
|
188752
189874
|
errors?: Maybe<Array<MutationError>>;
|
|
189875
|
+
member?: Maybe<TrelloMember>;
|
|
188753
189876
|
success: Scalars['Boolean']['output'];
|
|
188754
189877
|
};
|
|
188755
189878
|
export declare type TrelloUpdateProposedEventInput = {
|
|
@@ -188763,6 +189886,16 @@ export declare type TrelloUpdateProposedEventPayload = Payload & {
|
|
|
188763
189886
|
proposedEvent?: Maybe<TrelloProposedEvent>;
|
|
188764
189887
|
success: Scalars['Boolean']['output'];
|
|
188765
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
|
+
};
|
|
188766
189899
|
export declare type TrelloUpdateSmartScheduleLastActivityPayload = Payload & {
|
|
188767
189900
|
__typename?: 'TrelloUpdateSmartScheduleLastActivityPayload';
|
|
188768
189901
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -188814,10 +189947,13 @@ export declare type TrelloWorkOverviewDashboardJob = {
|
|
|
188814
189947
|
};
|
|
188815
189948
|
export declare enum TrelloWorkOverviewDashboardJobStatus {
|
|
188816
189949
|
Completed = "COMPLETED",
|
|
188817
|
-
|
|
189950
|
+
Created = "CREATED",
|
|
189951
|
+
Discovered = "DISCOVERED",
|
|
189952
|
+
Enqueued = "ENQUEUED",
|
|
188818
189953
|
Failed = "FAILED",
|
|
188819
|
-
|
|
188820
|
-
|
|
189954
|
+
Imported = "IMPORTED",
|
|
189955
|
+
Started = "STARTED",
|
|
189956
|
+
Synced = "SYNCED"
|
|
188821
189957
|
}
|
|
188822
189958
|
export declare type TrelloWorkOverviewDashboardJobUpdated = {
|
|
188823
189959
|
__typename?: 'TrelloWorkOverviewDashboardJobUpdated';
|
|
@@ -191065,6 +192201,7 @@ export declare type UpdatePolarisViewInput = {
|
|
|
191065
192201
|
layoutType?: InputMaybe<PolarisViewLayoutType>;
|
|
191066
192202
|
matrixConfig?: InputMaybe<UpdatePolarisMatrixConfig>;
|
|
191067
192203
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
192204
|
+
numberColumnDisplay?: InputMaybe<PolarisNumberColumnDisplay>;
|
|
191068
192205
|
showConnectionsMatchingColumn?: InputMaybe<Scalars['Boolean']['input']>;
|
|
191069
192206
|
showConnectionsMatchingGroup?: InputMaybe<Scalars['Boolean']['input']>;
|
|
191070
192207
|
sort?: InputMaybe<Array<PolarisSortFieldInput>>;
|