@forge/cli-shared 6.9.0-next.3 → 6.9.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 +15 -0
- package/out/graphql/graphql-types.d.ts +321 -55
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +55 -44
- package/package.json +2 -2
|
@@ -252,6 +252,7 @@ export declare type ActionsActionableApp = {
|
|
|
252
252
|
integrationKey?: Maybe<Scalars['String']['output']>;
|
|
253
253
|
name: Scalars['String']['output'];
|
|
254
254
|
oauthClientId?: Maybe<Scalars['String']['output']>;
|
|
255
|
+
scopes?: Maybe<Array<Scalars['String']['output']>>;
|
|
255
256
|
};
|
|
256
257
|
export declare type ActionsActionableAppConnection = {
|
|
257
258
|
__typename?: 'ActionsActionableAppConnection';
|
|
@@ -269,6 +270,7 @@ export declare type ActionsActionableAppsFilter = {
|
|
|
269
270
|
byActionType?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
270
271
|
byActionVerb?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
271
272
|
byActionVersion?: InputMaybe<Scalars['String']['input']>;
|
|
273
|
+
byCaasScopes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
272
274
|
byCapability?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
273
275
|
byContextEntityType?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
274
276
|
byEntityProperty?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -283,6 +285,7 @@ export declare enum ActionsAuthType {
|
|
|
283
285
|
TwoLegged = "TWO_LEGGED"
|
|
284
286
|
}
|
|
285
287
|
export declare enum ActionsCapabilityType {
|
|
288
|
+
Ai = "AI",
|
|
286
289
|
Automation = "AUTOMATION"
|
|
287
290
|
}
|
|
288
291
|
export declare enum ActionsConfigurationLayout {
|
|
@@ -310,6 +313,7 @@ export declare type ActionsDescription = {
|
|
|
310
313
|
};
|
|
311
314
|
export declare type ActionsExecuteActionFilter = {
|
|
312
315
|
actionId?: InputMaybe<Scalars['String']['input']>;
|
|
316
|
+
authType?: InputMaybe<Array<InputMaybe<ActionsAuthType>>>;
|
|
313
317
|
extensionAri?: InputMaybe<Scalars['String']['input']>;
|
|
314
318
|
integrationKey?: InputMaybe<Scalars['String']['input']>;
|
|
315
319
|
oauthClientId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3585,6 +3589,7 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
3585
3589
|
featureOverrides?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
3586
3590
|
featureVariables?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
3587
3591
|
id: Scalars['ID']['output'];
|
|
3592
|
+
invoiceRequests?: Maybe<Array<Maybe<CcpInvoiceRequest>>>;
|
|
3588
3593
|
latestUsageForChargeElement?: Maybe<Scalars['Int']['output']>;
|
|
3589
3594
|
metadata?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
3590
3595
|
offering?: Maybe<CcpOffering>;
|
|
@@ -3695,6 +3700,29 @@ export declare type CcpInvoiceGroupExperienceCapabilities = CommerceInvoiceGroup
|
|
|
3695
3700
|
configurePayment?: Maybe<CcpExperienceCapability>;
|
|
3696
3701
|
configurePaymentV2?: Maybe<CcpConfigurePaymentMethodExperienceCapability>;
|
|
3697
3702
|
};
|
|
3703
|
+
export declare type CcpInvoiceRequest = {
|
|
3704
|
+
__typename?: 'CcpInvoiceRequest';
|
|
3705
|
+
id: Scalars['ID']['output'];
|
|
3706
|
+
items?: Maybe<Array<Maybe<CcpInvoiceRequestItem>>>;
|
|
3707
|
+
};
|
|
3708
|
+
export declare type CcpInvoiceRequestItem = {
|
|
3709
|
+
__typename?: 'CcpInvoiceRequestItem';
|
|
3710
|
+
accruedCharges?: Maybe<Scalars['Boolean']['output']>;
|
|
3711
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
3712
|
+
offeringKey?: Maybe<Scalars['ID']['output']>;
|
|
3713
|
+
period?: Maybe<CcpInvoiceRequestItemPeriod>;
|
|
3714
|
+
planObj?: Maybe<CcpInvoiceRequestItemPlanObj>;
|
|
3715
|
+
quantity?: Maybe<Scalars['Int']['output']>;
|
|
3716
|
+
};
|
|
3717
|
+
export declare type CcpInvoiceRequestItemPeriod = {
|
|
3718
|
+
__typename?: 'CcpInvoiceRequestItemPeriod';
|
|
3719
|
+
endAt: Scalars['Float']['output'];
|
|
3720
|
+
startAt: Scalars['Float']['output'];
|
|
3721
|
+
};
|
|
3722
|
+
export declare type CcpInvoiceRequestItemPlanObj = {
|
|
3723
|
+
__typename?: 'CcpInvoiceRequestItemPlanObj';
|
|
3724
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
3725
|
+
};
|
|
3698
3726
|
export declare type CcpListPriceEstimate = {
|
|
3699
3727
|
__typename?: 'CcpListPriceEstimate';
|
|
3700
3728
|
averageAmountPerUnit?: Maybe<Scalars['Float']['output']>;
|
|
@@ -4066,6 +4094,7 @@ export declare type CcpTransactionAccountExperienceCapabilities = CommerceTransa
|
|
|
4066
4094
|
};
|
|
4067
4095
|
export declare type CcpTrial = CommerceTrial & {
|
|
4068
4096
|
__typename?: 'CcpTrial';
|
|
4097
|
+
endBehaviour?: Maybe<CcpTrialEndBehaviour>;
|
|
4069
4098
|
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
4070
4099
|
listPriceEstimates?: Maybe<Array<Maybe<CcpListPriceEstimate>>>;
|
|
4071
4100
|
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -4073,6 +4102,10 @@ export declare type CcpTrial = CommerceTrial & {
|
|
|
4073
4102
|
startTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
4074
4103
|
timeLeft?: Maybe<Scalars['Float']['output']>;
|
|
4075
4104
|
};
|
|
4105
|
+
export declare enum CcpTrialEndBehaviour {
|
|
4106
|
+
BillingPlan = "BILLING_PLAN",
|
|
4107
|
+
TrialPlan = "TRIAL_PLAN"
|
|
4108
|
+
}
|
|
4076
4109
|
export declare type CcpUsageUpdateCadence = {
|
|
4077
4110
|
__typename?: 'CcpUsageUpdateCadence';
|
|
4078
4111
|
cadenceIntervalMinutes?: Maybe<Scalars['Int']['output']>;
|
|
@@ -9521,6 +9554,12 @@ export declare type ConfluenceCommentCountSummary = {
|
|
|
9521
9554
|
__typename?: 'ConfluenceCommentCountSummary';
|
|
9522
9555
|
total?: Maybe<Scalars['Int']['output']>;
|
|
9523
9556
|
};
|
|
9557
|
+
export declare type ConfluenceCommentCreated = {
|
|
9558
|
+
__typename?: 'ConfluenceCommentCreated';
|
|
9559
|
+
adfBodyContent?: Maybe<Scalars['String']['output']>;
|
|
9560
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
9561
|
+
pageCommentType?: Maybe<ConfluenceCommentLevel>;
|
|
9562
|
+
};
|
|
9524
9563
|
export declare type ConfluenceCommentFilter = {
|
|
9525
9564
|
commentState?: InputMaybe<Array<InputMaybe<ConfluenceCommentState>>>;
|
|
9526
9565
|
commentType?: InputMaybe<Array<InputMaybe<CommentType>>>;
|
|
@@ -9534,20 +9573,6 @@ export declare type ConfluenceCommentLinks = {
|
|
|
9534
9573
|
base?: Maybe<Scalars['String']['output']>;
|
|
9535
9574
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
9536
9575
|
};
|
|
9537
|
-
export declare type ConfluenceCommentModified = {
|
|
9538
|
-
__typename?: 'ConfluenceCommentModified';
|
|
9539
|
-
adfBodyContent?: Maybe<Scalars['String']['output']>;
|
|
9540
|
-
commentId?: Maybe<Scalars['ID']['output']>;
|
|
9541
|
-
eventType?: Maybe<ConfluenceCommentModifiedType>;
|
|
9542
|
-
pageCommentType?: Maybe<ConfluenceCommentLevel>;
|
|
9543
|
-
};
|
|
9544
|
-
export declare enum ConfluenceCommentModifiedType {
|
|
9545
|
-
CommentCreated = "COMMENT_CREATED",
|
|
9546
|
-
CommentDeleted = "COMMENT_DELETED",
|
|
9547
|
-
CommentReopened = "COMMENT_REOPENED",
|
|
9548
|
-
CommentResolved = "COMMENT_RESOLVED",
|
|
9549
|
-
CommentUpdated = "COMMENT_UPDATED"
|
|
9550
|
-
}
|
|
9551
9576
|
export declare type ConfluenceCommentResolutionState = {
|
|
9552
9577
|
__typename?: 'ConfluenceCommentResolutionState';
|
|
9553
9578
|
commentId: Scalars['ID']['output'];
|
|
@@ -9566,6 +9591,10 @@ export declare enum ConfluenceCommentType {
|
|
|
9566
9591
|
Footer = "FOOTER",
|
|
9567
9592
|
Inline = "INLINE"
|
|
9568
9593
|
}
|
|
9594
|
+
export declare type ConfluenceCommentUpdated = {
|
|
9595
|
+
__typename?: 'ConfluenceCommentUpdated';
|
|
9596
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
9597
|
+
};
|
|
9569
9598
|
export declare type ConfluenceContent = {
|
|
9570
9599
|
__typename?: 'ConfluenceContent';
|
|
9571
9600
|
contentTitleUpdate?: Maybe<ConfluenceContentTitleUpdate>;
|
|
@@ -9598,7 +9627,11 @@ export declare type ConfluenceContentMetadata = {
|
|
|
9598
9627
|
export declare type ConfluenceContentModified = {
|
|
9599
9628
|
__typename?: 'ConfluenceContentModified';
|
|
9600
9629
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
9601
|
-
|
|
9630
|
+
commentCreated?: Maybe<ConfluenceCommentCreated>;
|
|
9631
|
+
commentDeleted?: Maybe<ConfluenceCommentUpdated>;
|
|
9632
|
+
commentReopened?: Maybe<ConfluenceCommentUpdated>;
|
|
9633
|
+
commentResolved?: Maybe<ConfluenceCommentCreated>;
|
|
9634
|
+
commentUpdated?: Maybe<ConfluenceCommentUpdated>;
|
|
9602
9635
|
contentRestrictionUpdated?: Maybe<ConfluenceContentRestrictionUpdated>;
|
|
9603
9636
|
contentStateDeleted?: Maybe<ConfluenceContentPropertyDeleted>;
|
|
9604
9637
|
contentStateUpdated?: Maybe<ConfluenceContentPropertyUpdated>;
|
|
@@ -9607,16 +9640,23 @@ export declare type ConfluenceContentModified = {
|
|
|
9607
9640
|
coverPictureDeleted?: Maybe<ConfluenceContentPropertyDeleted>;
|
|
9608
9641
|
coverPictureUpdated?: Maybe<ConfluenceContentPropertyUpdated>;
|
|
9609
9642
|
coverPictureWidthUpdated?: Maybe<ConfluenceCoverPictureWidthUpdated>;
|
|
9643
|
+
editorInlineCommentCreated?: Maybe<ConfluenceInlineCommentCreated>;
|
|
9610
9644
|
embedUpdated?: Maybe<ConfluenceEmbedUpdated>;
|
|
9611
9645
|
emojiTitleDeleted?: Maybe<ConfluenceContentPropertyDeleted>;
|
|
9612
9646
|
emojiTitleUpdated?: Maybe<ConfluenceContentPropertyUpdated>;
|
|
9613
9647
|
id: Scalars['ID']['output'];
|
|
9614
|
-
|
|
9648
|
+
inlineCommentCreated?: Maybe<ConfluenceInlineCommentCreated>;
|
|
9649
|
+
inlineCommentDeleted?: Maybe<ConfluenceInlineCommentDeleted>;
|
|
9650
|
+
inlineCommentReattached?: Maybe<ConfluenceInlineCommentReattached>;
|
|
9651
|
+
inlineCommentResolved?: Maybe<ConfluenceInlineCommentResolved>;
|
|
9652
|
+
inlineCommentUnresolved?: Maybe<ConfluenceInlineCommentUpdated>;
|
|
9653
|
+
inlineCommentUpdated?: Maybe<ConfluenceInlineCommentUpdated>;
|
|
9615
9654
|
pageBlogified?: Maybe<ConfluencePageBlogified>;
|
|
9616
9655
|
pageMigrated?: Maybe<ConfluencePageMigrated>;
|
|
9617
9656
|
pageMoved?: Maybe<ConfluencePageMoved>;
|
|
9618
9657
|
pageTitlePropertyUpdated?: Maybe<ConfluenceContentPropertyUpdated>;
|
|
9619
9658
|
pageUpdated?: Maybe<ConfluencePageUpdated>;
|
|
9659
|
+
rendererInlineCommentCreated?: Maybe<ConfluenceRendererInlineCommentCreated>;
|
|
9620
9660
|
schedulePublished?: Maybe<ConfluenceSchedulePublished>;
|
|
9621
9661
|
type: ConfluenceSubscriptionContentType;
|
|
9622
9662
|
};
|
|
@@ -10084,28 +10124,26 @@ export declare type ConfluenceInlineComment = ConfluenceComment & {
|
|
|
10084
10124
|
resolutionStatus?: Maybe<ConfluenceInlineCommentResolutionStatus>;
|
|
10085
10125
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
10086
10126
|
};
|
|
10087
|
-
export declare type
|
|
10088
|
-
__typename?: '
|
|
10127
|
+
export declare type ConfluenceInlineCommentCreated = {
|
|
10128
|
+
__typename?: 'ConfluenceInlineCommentCreated';
|
|
10089
10129
|
adfBodyContent?: Maybe<Scalars['String']['output']>;
|
|
10090
10130
|
commentId?: Maybe<Scalars['ID']['output']>;
|
|
10091
|
-
eventType?: Maybe<ConfluenceInlineCommentModifiedType>;
|
|
10092
10131
|
inlineCommentType?: Maybe<ConfluenceCommentLevel>;
|
|
10093
|
-
|
|
10094
|
-
|
|
10132
|
+
markerRef?: Maybe<Scalars['String']['output']>;
|
|
10133
|
+
};
|
|
10134
|
+
export declare type ConfluenceInlineCommentDeleted = {
|
|
10135
|
+
__typename?: 'ConfluenceInlineCommentDeleted';
|
|
10136
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
10137
|
+
inlineCommentType?: Maybe<ConfluenceCommentLevel>;
|
|
10138
|
+
markerRef?: Maybe<Scalars['String']['output']>;
|
|
10139
|
+
};
|
|
10140
|
+
export declare type ConfluenceInlineCommentReattached = {
|
|
10141
|
+
__typename?: 'ConfluenceInlineCommentReattached';
|
|
10142
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
10095
10143
|
markerRef?: Maybe<Scalars['String']['output']>;
|
|
10096
10144
|
publishVersionNumber?: Maybe<Scalars['Int']['output']>;
|
|
10097
10145
|
step?: Maybe<ConfluenceInlineCommentStep>;
|
|
10098
10146
|
};
|
|
10099
|
-
export declare enum ConfluenceInlineCommentModifiedType {
|
|
10100
|
-
EditorInlineCommentCreated = "EDITOR_INLINE_COMMENT_CREATED",
|
|
10101
|
-
InlineCommentCreated = "INLINE_COMMENT_CREATED",
|
|
10102
|
-
InlineCommentDeleted = "INLINE_COMMENT_DELETED",
|
|
10103
|
-
InlineCommentReattached = "INLINE_COMMENT_REATTACHED",
|
|
10104
|
-
InlineCommentResolved = "INLINE_COMMENT_RESOLVED",
|
|
10105
|
-
InlineCommentUnresolved = "INLINE_COMMENT_UNRESOLVED",
|
|
10106
|
-
InlineCommentUpdated = "INLINE_COMMENT_UPDATED",
|
|
10107
|
-
RendererInlineCommentCreated = "RENDERER_INLINE_COMMENT_CREATED"
|
|
10108
|
-
}
|
|
10109
10147
|
export declare enum ConfluenceInlineCommentResolutionStatus {
|
|
10110
10148
|
Resolved = "RESOLVED",
|
|
10111
10149
|
Unresolved = "UNRESOLVED"
|
|
@@ -10119,6 +10157,13 @@ export declare type ConfluenceInlineCommentResolveProperties = {
|
|
|
10119
10157
|
resolvedTime?: Maybe<Scalars['String']['output']>;
|
|
10120
10158
|
resolvedUser?: Maybe<Scalars['String']['output']>;
|
|
10121
10159
|
};
|
|
10160
|
+
export declare type ConfluenceInlineCommentResolved = {
|
|
10161
|
+
__typename?: 'ConfluenceInlineCommentResolved';
|
|
10162
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
10163
|
+
inlineResolveProperties?: Maybe<ConfluenceInlineCommentResolveProperties>;
|
|
10164
|
+
inlineText?: Maybe<Scalars['String']['output']>;
|
|
10165
|
+
markerRef?: Maybe<Scalars['String']['output']>;
|
|
10166
|
+
};
|
|
10122
10167
|
export declare type ConfluenceInlineCommentStep = {
|
|
10123
10168
|
__typename?: 'ConfluenceInlineCommentStep';
|
|
10124
10169
|
from?: Maybe<Scalars['Int']['output']>;
|
|
@@ -10134,6 +10179,11 @@ export declare type ConfluenceInlineCommentStepMarkAttrs = {
|
|
|
10134
10179
|
__typename?: 'ConfluenceInlineCommentStepMarkAttrs';
|
|
10135
10180
|
annotationType?: Maybe<Scalars['String']['output']>;
|
|
10136
10181
|
};
|
|
10182
|
+
export declare type ConfluenceInlineCommentUpdated = {
|
|
10183
|
+
__typename?: 'ConfluenceInlineCommentUpdated';
|
|
10184
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
10185
|
+
markerRef?: Maybe<Scalars['String']['output']>;
|
|
10186
|
+
};
|
|
10137
10187
|
export declare type ConfluenceInlineTask = {
|
|
10138
10188
|
__typename?: 'ConfluenceInlineTask';
|
|
10139
10189
|
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
@@ -16308,6 +16358,15 @@ export declare type ConfluenceRedactionMetadataEdge = {
|
|
|
16308
16358
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16309
16359
|
node?: Maybe<ConfluenceRedactionMetadata>;
|
|
16310
16360
|
};
|
|
16361
|
+
export declare type ConfluenceRendererInlineCommentCreated = {
|
|
16362
|
+
__typename?: 'ConfluenceRendererInlineCommentCreated';
|
|
16363
|
+
adfBodyContent?: Maybe<Scalars['String']['output']>;
|
|
16364
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
16365
|
+
inlineCommentType?: Maybe<ConfluenceCommentLevel>;
|
|
16366
|
+
markerRef?: Maybe<Scalars['String']['output']>;
|
|
16367
|
+
publishVersionNumber?: Maybe<Scalars['Int']['output']>;
|
|
16368
|
+
step?: Maybe<ConfluenceInlineCommentStep>;
|
|
16369
|
+
};
|
|
16311
16370
|
export declare type ConfluenceReopenCommentPayload = Payload & {
|
|
16312
16371
|
__typename?: 'ConfluenceReopenCommentPayload';
|
|
16313
16372
|
commentResolutionStates?: Maybe<ConfluenceCommentResolutionState>;
|
|
@@ -19654,8 +19713,6 @@ export declare type CreateAppTunnelsInput = {
|
|
|
19654
19713
|
tunnelDefinitions: TunnelDefinitionsInput;
|
|
19655
19714
|
};
|
|
19656
19715
|
export declare type CreateAppVersionRolloutInput = {
|
|
19657
|
-
appEnvironmentId: Scalars['ID']['input'];
|
|
19658
|
-
appId: Scalars['ID']['input'];
|
|
19659
19716
|
sourceVersionId: Scalars['ID']['input'];
|
|
19660
19717
|
targetVersionId: Scalars['ID']['input'];
|
|
19661
19718
|
};
|
|
@@ -31417,6 +31474,7 @@ export declare type GraphStore = {
|
|
|
31417
31474
|
conversationHasMessage?: Maybe<GraphStoreSimplifiedConversationHasMessageConnection>;
|
|
31418
31475
|
conversationHasMessageInverse?: Maybe<GraphStoreSimplifiedConversationHasMessageInverseConnection>;
|
|
31419
31476
|
cypherQuery: GraphStoreCypherQueryConnection;
|
|
31477
|
+
cypherQueryV2: GraphStoreCypherQueryV2Connection;
|
|
31420
31478
|
deploymentAssociatedRepo?: Maybe<GraphStoreSimplifiedDeploymentAssociatedRepoConnection>;
|
|
31421
31479
|
deploymentAssociatedRepoInverse?: Maybe<GraphStoreSimplifiedDeploymentAssociatedRepoInverseConnection>;
|
|
31422
31480
|
deploymentContainsCommit?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitConnection>;
|
|
@@ -31718,6 +31776,8 @@ export declare type GraphStore = {
|
|
|
31718
31776
|
projectLinkedToCompassComponentInverse?: Maybe<GraphStoreSimplifiedProjectLinkedToCompassComponentInverseConnection>;
|
|
31719
31777
|
pullRequestLinksToService?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceConnection>;
|
|
31720
31778
|
pullRequestLinksToServiceInverse?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection>;
|
|
31779
|
+
scorecardHasAtlasGoal?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalConnection>;
|
|
31780
|
+
scorecardHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalInverseConnection>;
|
|
31721
31781
|
securityContainerAssociatedToVulnerability?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
31722
31782
|
securityContainerAssociatedToVulnerabilityBatch?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
31723
31783
|
securityContainerAssociatedToVulnerabilityInverse?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityInverseConnection>;
|
|
@@ -32630,6 +32690,12 @@ export declare type GraphStoreCypherQueryArgs = {
|
|
|
32630
32690
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32631
32691
|
query: Scalars['String']['input'];
|
|
32632
32692
|
};
|
|
32693
|
+
export declare type GraphStoreCypherQueryV2Args = {
|
|
32694
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32695
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32696
|
+
params?: InputMaybe<Scalars['JSON']['input']>;
|
|
32697
|
+
query: Scalars['String']['input'];
|
|
32698
|
+
};
|
|
32633
32699
|
export declare type GraphStoreDeploymentAssociatedRepoArgs = {
|
|
32634
32700
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32635
32701
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34574,6 +34640,20 @@ export declare type GraphStorePullRequestLinksToServiceInverseArgs = {
|
|
|
34574
34640
|
id: Scalars['ID']['input'];
|
|
34575
34641
|
sort?: InputMaybe<GraphStorePullRequestLinksToServiceSortInput>;
|
|
34576
34642
|
};
|
|
34643
|
+
export declare type GraphStoreScorecardHasAtlasGoalArgs = {
|
|
34644
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34645
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34646
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34647
|
+
id: Scalars['ID']['input'];
|
|
34648
|
+
sort?: InputMaybe<GraphStoreScorecardHasAtlasGoalSortInput>;
|
|
34649
|
+
};
|
|
34650
|
+
export declare type GraphStoreScorecardHasAtlasGoalInverseArgs = {
|
|
34651
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34652
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34653
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34654
|
+
id: Scalars['ID']['input'];
|
|
34655
|
+
sort?: InputMaybe<GraphStoreScorecardHasAtlasGoalSortInput>;
|
|
34656
|
+
};
|
|
34577
34657
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityArgs = {
|
|
34578
34658
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34579
34659
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38017,7 +38097,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
38017
38097
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
38018
38098
|
id: Scalars['ID']['output'];
|
|
38019
38099
|
};
|
|
38020
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38100
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38021
38101
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
38022
38102
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
38023
38103
|
value: Scalars['Int']['output'];
|
|
@@ -38052,7 +38132,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
38052
38132
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
38053
38133
|
id: Scalars['ID']['output'];
|
|
38054
38134
|
};
|
|
38055
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38135
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38056
38136
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
38057
38137
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
38058
38138
|
value: Scalars['String']['output'];
|
|
@@ -38062,8 +38142,53 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
38062
38142
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
38063
38143
|
id: Scalars['ID']['output'];
|
|
38064
38144
|
};
|
|
38065
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38066
|
-
export declare type
|
|
38145
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38146
|
+
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
38147
|
+
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
38148
|
+
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
38149
|
+
id: Scalars['ID']['output'];
|
|
38150
|
+
};
|
|
38151
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38152
|
+
export declare type GraphStoreCypherQueryV2BooleanObject = {
|
|
38153
|
+
__typename?: 'GraphStoreCypherQueryV2BooleanObject';
|
|
38154
|
+
value: Scalars['Boolean']['output'];
|
|
38155
|
+
};
|
|
38156
|
+
export declare type GraphStoreCypherQueryV2Column = {
|
|
38157
|
+
__typename?: 'GraphStoreCypherQueryV2Column';
|
|
38158
|
+
key: Scalars['String']['output'];
|
|
38159
|
+
value: GraphStoreCypherQueryV2ResultRowItemValueUnion;
|
|
38160
|
+
};
|
|
38161
|
+
export declare type GraphStoreCypherQueryV2Connection = {
|
|
38162
|
+
__typename?: 'GraphStoreCypherQueryV2Connection';
|
|
38163
|
+
edges: Array<GraphStoreCypherQueryV2Edge>;
|
|
38164
|
+
pageInfo: PageInfo;
|
|
38165
|
+
};
|
|
38166
|
+
export declare type GraphStoreCypherQueryV2Edge = {
|
|
38167
|
+
__typename?: 'GraphStoreCypherQueryV2Edge';
|
|
38168
|
+
node: GraphStoreCypherQueryV2Node;
|
|
38169
|
+
};
|
|
38170
|
+
export declare type GraphStoreCypherQueryV2FloatObject = {
|
|
38171
|
+
__typename?: 'GraphStoreCypherQueryV2FloatObject';
|
|
38172
|
+
value: Scalars['Float']['output'];
|
|
38173
|
+
};
|
|
38174
|
+
export declare type GraphStoreCypherQueryV2IntObject = {
|
|
38175
|
+
__typename?: 'GraphStoreCypherQueryV2IntObject';
|
|
38176
|
+
value: Scalars['Int']['output'];
|
|
38177
|
+
};
|
|
38178
|
+
export declare type GraphStoreCypherQueryV2Node = {
|
|
38179
|
+
__typename?: 'GraphStoreCypherQueryV2Node';
|
|
38180
|
+
columns: Array<GraphStoreCypherQueryV2Column>;
|
|
38181
|
+
};
|
|
38182
|
+
export declare type GraphStoreCypherQueryV2NodeList = {
|
|
38183
|
+
__typename?: 'GraphStoreCypherQueryV2NodeList';
|
|
38184
|
+
nodes: Array<GraphStoreCypherQueryV2AriNode>;
|
|
38185
|
+
};
|
|
38186
|
+
export declare type GraphStoreCypherQueryV2ResultRowItemValueUnion = GraphStoreCypherQueryV2AriNode | GraphStoreCypherQueryV2BooleanObject | GraphStoreCypherQueryV2FloatObject | GraphStoreCypherQueryV2IntObject | GraphStoreCypherQueryV2NodeList | GraphStoreCypherQueryV2StringObject;
|
|
38187
|
+
export declare type GraphStoreCypherQueryV2StringObject = {
|
|
38188
|
+
__typename?: 'GraphStoreCypherQueryV2StringObject';
|
|
38189
|
+
value: Scalars['String']['output'];
|
|
38190
|
+
};
|
|
38191
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38067
38192
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
38068
38193
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
38069
38194
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -43016,6 +43141,9 @@ export declare type GraphStoreProjectLinkedToCompassComponentSortInput = {
|
|
|
43016
43141
|
export declare type GraphStorePullRequestLinksToServiceSortInput = {
|
|
43017
43142
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43018
43143
|
};
|
|
43144
|
+
export declare type GraphStoreScorecardHasAtlasGoalSortInput = {
|
|
43145
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43146
|
+
};
|
|
43019
43147
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput = {
|
|
43020
43148
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43021
43149
|
};
|
|
@@ -46783,6 +46911,34 @@ export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseEdge = {
|
|
|
46783
46911
|
};
|
|
46784
46912
|
export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
46785
46913
|
export declare type GraphStoreSimplifiedPullRequestLinksToServiceUnion = DevOpsService;
|
|
46914
|
+
export declare type GraphStoreSimplifiedScorecardHasAtlasGoalConnection = HasPageInfo & {
|
|
46915
|
+
__typename?: 'GraphStoreSimplifiedScorecardHasAtlasGoalConnection';
|
|
46916
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalEdge>>>;
|
|
46917
|
+
pageInfo: PageInfo;
|
|
46918
|
+
};
|
|
46919
|
+
export declare type GraphStoreSimplifiedScorecardHasAtlasGoalEdge = {
|
|
46920
|
+
__typename?: 'GraphStoreSimplifiedScorecardHasAtlasGoalEdge';
|
|
46921
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46922
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46923
|
+
id: Scalars['ID']['output'];
|
|
46924
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46925
|
+
node?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalUnion>;
|
|
46926
|
+
};
|
|
46927
|
+
export declare type GraphStoreSimplifiedScorecardHasAtlasGoalInverseConnection = HasPageInfo & {
|
|
46928
|
+
__typename?: 'GraphStoreSimplifiedScorecardHasAtlasGoalInverseConnection';
|
|
46929
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalInverseEdge>>>;
|
|
46930
|
+
pageInfo: PageInfo;
|
|
46931
|
+
};
|
|
46932
|
+
export declare type GraphStoreSimplifiedScorecardHasAtlasGoalInverseEdge = {
|
|
46933
|
+
__typename?: 'GraphStoreSimplifiedScorecardHasAtlasGoalInverseEdge';
|
|
46934
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46935
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46936
|
+
id: Scalars['ID']['output'];
|
|
46937
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46938
|
+
node?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalInverseUnion>;
|
|
46939
|
+
};
|
|
46940
|
+
export declare type GraphStoreSimplifiedScorecardHasAtlasGoalInverseUnion = CompassScorecard;
|
|
46941
|
+
export declare type GraphStoreSimplifiedScorecardHasAtlasGoalUnion = TownsquareGoal;
|
|
46786
46942
|
export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection = HasPageInfo & {
|
|
46787
46943
|
__typename?: 'GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection';
|
|
46788
46944
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityEdge>>>;
|
|
@@ -57590,6 +57746,7 @@ export declare type JiraDetailedViewFieldSetsArgs = {
|
|
|
57590
57746
|
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
57591
57747
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57592
57748
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
57749
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
57593
57750
|
};
|
|
57594
57751
|
export declare type JiraDetailedViewIssuesArgs = {
|
|
57595
57752
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -58146,8 +58303,10 @@ export declare type JiraExportIssueDetailsTaskResponse = {
|
|
|
58146
58303
|
};
|
|
58147
58304
|
export declare type JiraExtensionRenderingContextInput = {
|
|
58148
58305
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
58306
|
+
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
58149
58307
|
portalId?: InputMaybe<Scalars['ID']['input']>;
|
|
58150
58308
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
58309
|
+
requestTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
58151
58310
|
};
|
|
58152
58311
|
export declare type JiraFallbackField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
58153
58312
|
__typename?: 'JiraFallbackField';
|
|
@@ -58279,12 +58438,28 @@ export declare type JiraFieldConfigFilterInput = {
|
|
|
58279
58438
|
aliasFieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
58280
58439
|
cloudId: Scalars['ID']['input'];
|
|
58281
58440
|
fieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
58441
|
+
fieldStatus?: InputMaybe<JiraFieldStatusType>;
|
|
58282
58442
|
includedFieldCategories?: InputMaybe<Array<JiraFieldCategoryType>>;
|
|
58283
58443
|
includedFieldStatus?: InputMaybe<Array<JiraFieldStatusType>>;
|
|
58284
58444
|
includedFieldTypes?: InputMaybe<Array<JiraConfigFieldType>>;
|
|
58445
|
+
orderBy?: InputMaybe<JiraFieldConfigOrderBy>;
|
|
58446
|
+
orderDirection?: InputMaybe<JiraFieldConfigOrderDirection>;
|
|
58285
58447
|
projectIdOrKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
58286
58448
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
58287
58449
|
};
|
|
58450
|
+
export declare enum JiraFieldConfigOrderBy {
|
|
58451
|
+
ContextCount = "CONTEXT_COUNT",
|
|
58452
|
+
LastUsed = "LAST_USED",
|
|
58453
|
+
Name = "NAME",
|
|
58454
|
+
PlannedDeleteDate = "PLANNED_DELETE_DATE",
|
|
58455
|
+
ProjectCount = "PROJECT_COUNT",
|
|
58456
|
+
ScreenCount = "SCREEN_COUNT",
|
|
58457
|
+
TrashedDate = "TRASHED_DATE"
|
|
58458
|
+
}
|
|
58459
|
+
export declare enum JiraFieldConfigOrderDirection {
|
|
58460
|
+
Asc = "ASC",
|
|
58461
|
+
Desc = "DESC"
|
|
58462
|
+
}
|
|
58288
58463
|
export declare type JiraFieldConfigScheme = {
|
|
58289
58464
|
__typename?: 'JiraFieldConfigScheme';
|
|
58290
58465
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -58377,6 +58552,7 @@ export declare type JiraFieldSetViewFieldSetsArgs = {
|
|
|
58377
58552
|
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
58378
58553
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58379
58554
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
58555
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
58380
58556
|
};
|
|
58381
58557
|
export declare type JiraFieldSetViewResult = JiraFieldSetView | QueryError;
|
|
58382
58558
|
export declare type JiraFieldSetsMutationInput = {
|
|
@@ -58394,6 +58570,7 @@ export declare type JiraFieldSetsViewMetadataFieldSetsArgs = {
|
|
|
58394
58570
|
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
58395
58571
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58396
58572
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
58573
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
58397
58574
|
};
|
|
58398
58575
|
export declare type JiraFieldSetsViewPayload = Payload & {
|
|
58399
58576
|
__typename?: 'JiraFieldSetsViewPayload';
|
|
@@ -59192,6 +59369,7 @@ export declare type JiraGroupedListViewFieldSetsArgs = {
|
|
|
59192
59369
|
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
59193
59370
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59194
59371
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
59372
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
59195
59373
|
};
|
|
59196
59374
|
export declare type JiraGroupedListViewGroupsArgs = {
|
|
59197
59375
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -59955,6 +60133,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
59955
60133
|
associatedScreensCount?: Maybe<Scalars['Int']['output']>;
|
|
59956
60134
|
customId?: Maybe<Scalars['Int']['output']>;
|
|
59957
60135
|
dateCreated?: Maybe<Scalars['DateTime']['output']>;
|
|
60136
|
+
dateCreatedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
59958
60137
|
defaultJqlClauseName?: Maybe<Scalars['String']['output']>;
|
|
59959
60138
|
description?: Maybe<Scalars['String']['output']>;
|
|
59960
60139
|
fieldId: Scalars['String']['output'];
|
|
@@ -59962,9 +60141,15 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
59962
60141
|
isCustom: Scalars['Boolean']['output'];
|
|
59963
60142
|
isGlobal?: Maybe<Scalars['Boolean']['output']>;
|
|
59964
60143
|
isLocked?: Maybe<Scalars['Boolean']['output']>;
|
|
60144
|
+
isTrashed?: Maybe<Scalars['Boolean']['output']>;
|
|
60145
|
+
isUnscreenable?: Maybe<Scalars['Boolean']['output']>;
|
|
59965
60146
|
jqlClauseNames?: Maybe<Array<Scalars['String']['output']>>;
|
|
59966
60147
|
lastUsed?: Maybe<Scalars['DateTime']['output']>;
|
|
60148
|
+
lastUsedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
59967
60149
|
name: Scalars['String']['output'];
|
|
60150
|
+
plannedDeletionTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
60151
|
+
trashedByUser?: Maybe<User>;
|
|
60152
|
+
trashedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
59968
60153
|
type: JiraConfigFieldType;
|
|
59969
60154
|
};
|
|
59970
60155
|
export declare type JiraIssueFieldConfigAssociatedContextsArgs = {
|
|
@@ -60562,6 +60747,16 @@ export declare type JiraIssueSearchErrorExtension = QueryErrorExtension & {
|
|
|
60562
60747
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
60563
60748
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
60564
60749
|
};
|
|
60750
|
+
export declare type JiraIssueSearchFieldMetadataConnection = {
|
|
60751
|
+
__typename?: 'JiraIssueSearchFieldMetadataConnection';
|
|
60752
|
+
edges?: Maybe<Array<Maybe<JiraIssueSearchFieldMetadataEdge>>>;
|
|
60753
|
+
pageInfo: PageInfo;
|
|
60754
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
60755
|
+
};
|
|
60756
|
+
export declare type JiraIssueSearchFieldMetadataEdge = {
|
|
60757
|
+
__typename?: 'JiraIssueSearchFieldMetadataEdge';
|
|
60758
|
+
node?: Maybe<JiraIssueSearchMetadataField>;
|
|
60759
|
+
};
|
|
60565
60760
|
export declare type JiraIssueSearchFieldSet = {
|
|
60566
60761
|
__typename?: 'JiraIssueSearchFieldSet';
|
|
60567
60762
|
aliases?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -60570,6 +60765,7 @@ export declare type JiraIssueSearchFieldSet = {
|
|
|
60570
60765
|
fieldSetId?: Maybe<Scalars['String']['output']>;
|
|
60571
60766
|
fieldSetPreferences?: Maybe<JiraFieldSetPreferences>;
|
|
60572
60767
|
fieldType?: Maybe<JiraFieldType>;
|
|
60768
|
+
fieldsMetadata?: Maybe<JiraIssueSearchFieldMetadataConnection>;
|
|
60573
60769
|
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
60574
60770
|
isSortable?: Maybe<Scalars['Boolean']['output']>;
|
|
60575
60771
|
jqlTerm?: Maybe<Scalars['String']['output']>;
|
|
@@ -60623,6 +60819,11 @@ export declare type JiraIssueSearchInput = {
|
|
|
60623
60819
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
60624
60820
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
60625
60821
|
};
|
|
60822
|
+
export declare type JiraIssueSearchMetadataField = {
|
|
60823
|
+
__typename?: 'JiraIssueSearchMetadataField';
|
|
60824
|
+
canBeConfigured?: Maybe<Scalars['Boolean']['output']>;
|
|
60825
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
60826
|
+
};
|
|
60626
60827
|
export declare enum JiraIssueSearchOperationScope {
|
|
60627
60828
|
NinGlobal = "NIN_GLOBAL",
|
|
60628
60829
|
NinGlobalSchemaRefactor = "NIN_GLOBAL_SCHEMA_REFACTOR",
|
|
@@ -60656,6 +60857,7 @@ export declare type JiraIssueSearchResultContentIssuesArgs = {
|
|
|
60656
60857
|
};
|
|
60657
60858
|
export declare type JiraIssueSearchScope = {
|
|
60658
60859
|
operationScope?: InputMaybe<JiraIssueSearchOperationScope>;
|
|
60860
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
60659
60861
|
};
|
|
60660
60862
|
export declare type JiraIssueSearchStaticViewInput = {
|
|
60661
60863
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -61924,6 +62126,7 @@ export declare type JiraListViewFieldSetsArgs = {
|
|
|
61924
62126
|
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
61925
62127
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61926
62128
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
62129
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61927
62130
|
};
|
|
61928
62131
|
export declare type JiraListViewIssuesArgs = {
|
|
61929
62132
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -69099,6 +69302,7 @@ export declare type JiraSpreadsheetViewFieldSetsArgs = {
|
|
|
69099
69302
|
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
69100
69303
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69101
69304
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
69305
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
69102
69306
|
};
|
|
69103
69307
|
export declare type JiraSpreadsheetViewViewSettingsArgs = {
|
|
69104
69308
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -69379,6 +69583,7 @@ export declare type JiraSubscription = {
|
|
|
69379
69583
|
onCalendarIssueDeleted?: Maybe<JiraStreamHubResourceIdentifier>;
|
|
69380
69584
|
onCalendarIssueUpdated?: Maybe<JiraIssueWithScenario>;
|
|
69381
69585
|
onIssueCreatedByProject?: Maybe<JiraIssue>;
|
|
69586
|
+
onIssueCreatedByProjectNoEnrichment?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
69382
69587
|
onIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
69383
69588
|
onIssueExported?: Maybe<JiraIssueExportEvent>;
|
|
69384
69589
|
onIssueUpdatedByProject?: Maybe<JiraIssue>;
|
|
@@ -69435,6 +69640,10 @@ export declare type JiraSubscriptionOnIssueCreatedByProjectArgs = {
|
|
|
69435
69640
|
cloudId: Scalars['ID']['input'];
|
|
69436
69641
|
projectId: Scalars['String']['input'];
|
|
69437
69642
|
};
|
|
69643
|
+
export declare type JiraSubscriptionOnIssueCreatedByProjectNoEnrichmentArgs = {
|
|
69644
|
+
cloudId: Scalars['ID']['input'];
|
|
69645
|
+
projectId: Scalars['String']['input'];
|
|
69646
|
+
};
|
|
69438
69647
|
export declare type JiraSubscriptionOnIssueDeletedByProjectArgs = {
|
|
69439
69648
|
cloudId: Scalars['ID']['input'];
|
|
69440
69649
|
projectId: Scalars['String']['input'];
|
|
@@ -70392,6 +70601,7 @@ export declare type JiraUser = {
|
|
|
70392
70601
|
};
|
|
70393
70602
|
export declare type JiraUserAppAccess = {
|
|
70394
70603
|
__typename?: 'JiraUserAppAccess';
|
|
70604
|
+
enabled: Scalars['Boolean']['output'];
|
|
70395
70605
|
hasAccess: Scalars['Boolean']['output'];
|
|
70396
70606
|
};
|
|
70397
70607
|
export declare type JiraUserBroadcastMessage = Node & {
|
|
@@ -75798,10 +76008,21 @@ export declare type MarketplaceStoreInstalledAppDetailsResponse = {
|
|
|
75798
76008
|
__typename?: 'MarketplaceStoreInstalledAppDetailsResponse';
|
|
75799
76009
|
edition?: Maybe<Scalars['String']['output']>;
|
|
75800
76010
|
installed: Scalars['Boolean']['output'];
|
|
76011
|
+
installedAppManageLink?: Maybe<MarketplaceStoreInstalledAppManageLink>;
|
|
75801
76012
|
licenseActive: Scalars['Boolean']['output'];
|
|
75802
76013
|
licenseExpiryDate?: Maybe<Scalars['String']['output']>;
|
|
75803
76014
|
paidLicenseActiveOnParent: Scalars['Boolean']['output'];
|
|
75804
76015
|
};
|
|
76016
|
+
export declare type MarketplaceStoreInstalledAppManageLink = {
|
|
76017
|
+
__typename?: 'MarketplaceStoreInstalledAppManageLink';
|
|
76018
|
+
type?: Maybe<MarketplaceStoreInstalledAppManageLinkType>;
|
|
76019
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
76020
|
+
};
|
|
76021
|
+
export declare enum MarketplaceStoreInstalledAppManageLinkType {
|
|
76022
|
+
Configure = "CONFIGURE",
|
|
76023
|
+
GetStarted = "GET_STARTED",
|
|
76024
|
+
Manage = "MANAGE"
|
|
76025
|
+
}
|
|
75805
76026
|
export declare type MarketplaceStoreLoggedInUser = {
|
|
75806
76027
|
__typename?: 'MarketplaceStoreLoggedInUser';
|
|
75807
76028
|
email: Scalars['String']['output'];
|
|
@@ -76305,7 +76526,7 @@ export declare type MercuryBudgetAggregation = {
|
|
|
76305
76526
|
aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
76306
76527
|
totalAssignedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
76307
76528
|
};
|
|
76308
|
-
export declare type MercuryChange = MercuryArchiveFocusAreaChange | MercuryCreateFocusAreaChange | MercuryMoveFundsChange | MercuryMovePositionsChange | MercuryPositionAllocationChange | MercuryRequestFundsChange | MercuryRequestPositionsChange;
|
|
76529
|
+
export declare type MercuryChange = MercuryArchiveFocusAreaChange | MercuryChangeParentFocusAreaChange | MercuryCreateFocusAreaChange | MercuryMoveFundsChange | MercuryMovePositionsChange | MercuryPositionAllocationChange | MercuryRenameFocusAreaChange | MercuryRequestFundsChange | MercuryRequestPositionsChange;
|
|
76309
76530
|
export declare type MercuryChangeConnection = {
|
|
76310
76531
|
__typename?: 'MercuryChangeConnection';
|
|
76311
76532
|
edges?: Maybe<Array<Maybe<MercuryChangeEdge>>>;
|
|
@@ -76326,13 +76547,30 @@ export declare type MercuryChangeInterface = {
|
|
|
76326
76547
|
updatedBy?: Maybe<User>;
|
|
76327
76548
|
updatedDate: Scalars['DateTime']['output'];
|
|
76328
76549
|
};
|
|
76550
|
+
export declare type MercuryChangeParentFocusAreaChange = MercuryChangeInterface & Node & {
|
|
76551
|
+
__typename?: 'MercuryChangeParentFocusAreaChange';
|
|
76552
|
+
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
76553
|
+
changeType: MercuryChangeType;
|
|
76554
|
+
createdBy?: Maybe<User>;
|
|
76555
|
+
createdDate: Scalars['DateTime']['output'];
|
|
76556
|
+
focusAreaId?: Maybe<MercuryFocusArea>;
|
|
76557
|
+
id: Scalars['ID']['output'];
|
|
76558
|
+
sourceFocusArea?: Maybe<MercuryFocusArea>;
|
|
76559
|
+
targetFocusArea?: Maybe<MercuryFocusArea>;
|
|
76560
|
+
updatedBy?: Maybe<User>;
|
|
76561
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
76562
|
+
};
|
|
76563
|
+
export declare type MercuryChangeParentFocusAreaChangeInput = {
|
|
76564
|
+
focusAreaId: Scalars['ID']['input'];
|
|
76565
|
+
targetFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
76566
|
+
};
|
|
76329
76567
|
export declare type MercuryChangeProposal = Node & {
|
|
76330
76568
|
__typename?: 'MercuryChangeProposal';
|
|
76331
76569
|
comments?: Maybe<MercuryChangeProposalCommentConnection>;
|
|
76332
76570
|
description?: Maybe<Scalars['String']['output']>;
|
|
76333
76571
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
76334
76572
|
id: Scalars['ID']['output'];
|
|
76335
|
-
impact?: Maybe<
|
|
76573
|
+
impact?: Maybe<MercuryChangeProposalImpact>;
|
|
76336
76574
|
name: Scalars['String']['output'];
|
|
76337
76575
|
owner?: Maybe<User>;
|
|
76338
76576
|
status?: Maybe<MercuryChangeProposalStatus>;
|
|
@@ -76374,6 +76612,10 @@ export declare type MercuryChangeProposalEdge = {
|
|
|
76374
76612
|
cursor: Scalars['String']['output'];
|
|
76375
76613
|
node?: Maybe<MercuryChangeProposal>;
|
|
76376
76614
|
};
|
|
76615
|
+
export declare type MercuryChangeProposalImpact = {
|
|
76616
|
+
__typename?: 'MercuryChangeProposalImpact';
|
|
76617
|
+
value: Scalars['Int']['output'];
|
|
76618
|
+
};
|
|
76377
76619
|
export declare type MercuryChangeProposalSort = {
|
|
76378
76620
|
field: MercuryChangeProposalSortField;
|
|
76379
76621
|
order: SortOrder;
|
|
@@ -76407,10 +76649,12 @@ export declare enum MercuryChangeSortField {
|
|
|
76407
76649
|
}
|
|
76408
76650
|
export declare enum MercuryChangeType {
|
|
76409
76651
|
ArchiveFocusArea = "ARCHIVE_FOCUS_AREA",
|
|
76652
|
+
ChangeParentFocusArea = "CHANGE_PARENT_FOCUS_AREA",
|
|
76410
76653
|
CreateFocusArea = "CREATE_FOCUS_AREA",
|
|
76411
76654
|
MoveFunds = "MOVE_FUNDS",
|
|
76412
76655
|
MovePositions = "MOVE_POSITIONS",
|
|
76413
76656
|
PositionAllocation = "POSITION_ALLOCATION",
|
|
76657
|
+
RenameFocusArea = "RENAME_FOCUS_AREA",
|
|
76414
76658
|
RequestFunds = "REQUEST_FUNDS",
|
|
76415
76659
|
RequestPositions = "REQUEST_POSITIONS"
|
|
76416
76660
|
}
|
|
@@ -76422,6 +76666,7 @@ export declare type MercuryComment = Node & {
|
|
|
76422
76666
|
createdDate: Scalars['String']['output'];
|
|
76423
76667
|
id: Scalars['ID']['output'];
|
|
76424
76668
|
updatedDate: Scalars['String']['output'];
|
|
76669
|
+
uuid: Scalars['ID']['output'];
|
|
76425
76670
|
};
|
|
76426
76671
|
export declare type MercuryCommentConnection = {
|
|
76427
76672
|
__typename?: 'MercuryCommentConnection';
|
|
@@ -77139,7 +77384,7 @@ export declare type MercuryMediaToken = {
|
|
|
77139
77384
|
token: Scalars['String']['output'];
|
|
77140
77385
|
};
|
|
77141
77386
|
export declare type MercuryMoveChangesInput = {
|
|
77142
|
-
|
|
77387
|
+
changeIds: Array<Scalars['ID']['input']>;
|
|
77143
77388
|
sourceChangeProposalId: Scalars['ID']['input'];
|
|
77144
77389
|
targetChangeProposalId: Scalars['ID']['input'];
|
|
77145
77390
|
};
|
|
@@ -77333,6 +77578,7 @@ export declare type MercuryPortfolio = Node & {
|
|
|
77333
77578
|
name: Scalars['String']['output'];
|
|
77334
77579
|
owner?: Maybe<User>;
|
|
77335
77580
|
url?: Maybe<Scalars['String']['output']>;
|
|
77581
|
+
uuid: Scalars['ID']['output'];
|
|
77336
77582
|
};
|
|
77337
77583
|
export declare type MercuryPortfolioAllocations = {
|
|
77338
77584
|
__typename?: 'MercuryPortfolioAllocations';
|
|
@@ -77414,11 +77660,13 @@ export declare enum MercuryProjectTargetDateType {
|
|
|
77414
77660
|
}
|
|
77415
77661
|
export declare type MercuryProposeChangesInput = {
|
|
77416
77662
|
archiveFocusAreas?: InputMaybe<Array<MercuryArchiveFocusAreaChangeInput>>;
|
|
77663
|
+
changeParentFocusAreas?: InputMaybe<Array<MercuryChangeParentFocusAreaChangeInput>>;
|
|
77417
77664
|
changeProposalId: Scalars['ID']['input'];
|
|
77418
77665
|
createFocusAreas?: InputMaybe<Array<MercuryCreateFocusAreaChangeInput>>;
|
|
77419
77666
|
moveFunds?: InputMaybe<Array<MercuryMoveFundsChangeInput>>;
|
|
77420
77667
|
movePositions?: InputMaybe<Array<MercuryMovePositionsChangeInput>>;
|
|
77421
77668
|
positionAllocations?: InputMaybe<Array<MercuryPositionAllocationChangeInput>>;
|
|
77669
|
+
renameFocusAreas?: InputMaybe<Array<MercuryRenameFocusAreaChangeInput>>;
|
|
77422
77670
|
requestFunds?: InputMaybe<Array<MercuryRequestFundsChangeInput>>;
|
|
77423
77671
|
requestPositions?: InputMaybe<Array<MercuryRequestPositionsChangeInput>>;
|
|
77424
77672
|
};
|
|
@@ -77770,6 +78018,23 @@ export declare type MercuryRemoveWatcherFromFocusAreaPayload = Payload & {
|
|
|
77770
78018
|
errors?: Maybe<Array<MutationError>>;
|
|
77771
78019
|
success: Scalars['Boolean']['output'];
|
|
77772
78020
|
};
|
|
78021
|
+
export declare type MercuryRenameFocusAreaChange = MercuryChangeInterface & Node & {
|
|
78022
|
+
__typename?: 'MercuryRenameFocusAreaChange';
|
|
78023
|
+
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
78024
|
+
changeType: MercuryChangeType;
|
|
78025
|
+
createdBy?: Maybe<User>;
|
|
78026
|
+
createdDate: Scalars['DateTime']['output'];
|
|
78027
|
+
id: Scalars['ID']['output'];
|
|
78028
|
+
newFocusAreaName: Scalars['String']['output'];
|
|
78029
|
+
oldFocusAreaName: Scalars['String']['output'];
|
|
78030
|
+
targetFocusArea?: Maybe<MercuryFocusArea>;
|
|
78031
|
+
updatedBy?: Maybe<User>;
|
|
78032
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
78033
|
+
};
|
|
78034
|
+
export declare type MercuryRenameFocusAreaChangeInput = {
|
|
78035
|
+
newFocusAreaName: Scalars['String']['input'];
|
|
78036
|
+
targetFocusAreaId: Scalars['ID']['input'];
|
|
78037
|
+
};
|
|
77773
78038
|
export declare type MercuryRequestFundsChange = MercuryChangeInterface & Node & {
|
|
77774
78039
|
__typename?: 'MercuryRequestFundsChange';
|
|
77775
78040
|
amount: Scalars['BigDecimal']['output'];
|
|
@@ -78166,10 +78431,10 @@ export declare type MercuryUnarchiveFocusAreaPayload = Payload & {
|
|
|
78166
78431
|
errors?: Maybe<Array<MutationError>>;
|
|
78167
78432
|
success: Scalars['Boolean']['output'];
|
|
78168
78433
|
};
|
|
78169
|
-
export declare type
|
|
78434
|
+
export declare type MercuryUpdateChangeFocusAreaInput = {
|
|
78170
78435
|
focusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
78171
78436
|
};
|
|
78172
|
-
export declare type
|
|
78437
|
+
export declare type MercuryUpdateChangeMonetaryAmountInput = {
|
|
78173
78438
|
monetaryAmount?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
78174
78439
|
};
|
|
78175
78440
|
export declare type MercuryUpdateChangePayload = Payload & {
|
|
@@ -78218,7 +78483,7 @@ export declare type MercuryUpdateChangeProposalPayload = Payload & {
|
|
|
78218
78483
|
success: Scalars['Boolean']['output'];
|
|
78219
78484
|
updatedChangeProposal?: Maybe<MercuryChangeProposal>;
|
|
78220
78485
|
};
|
|
78221
|
-
export declare type
|
|
78486
|
+
export declare type MercuryUpdateChangeQuantityInput = {
|
|
78222
78487
|
quantity?: InputMaybe<Scalars['Int']['input']>;
|
|
78223
78488
|
};
|
|
78224
78489
|
export declare type MercuryUpdateCommentInput = {
|
|
@@ -78273,17 +78538,17 @@ export declare type MercuryUpdateFocusAreaTargetDateInput = {
|
|
|
78273
78538
|
targetDateType?: InputMaybe<MercuryTargetDateType>;
|
|
78274
78539
|
};
|
|
78275
78540
|
export declare type MercuryUpdateMoveFundsChangeInput = {
|
|
78276
|
-
amount?: InputMaybe<
|
|
78541
|
+
amount?: InputMaybe<MercuryUpdateChangeMonetaryAmountInput>;
|
|
78277
78542
|
changeId: Scalars['ID']['input'];
|
|
78278
|
-
sourceFocusAreaId?: InputMaybe<
|
|
78279
|
-
targetFocusAreaId?: InputMaybe<
|
|
78543
|
+
sourceFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
|
|
78544
|
+
targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
|
|
78280
78545
|
};
|
|
78281
78546
|
export declare type MercuryUpdateMovePositionsChangeInput = {
|
|
78282
78547
|
changeId: Scalars['ID']['input'];
|
|
78283
|
-
cost?: InputMaybe<
|
|
78284
|
-
positionsAmount?: InputMaybe<
|
|
78285
|
-
sourceFocusAreaId?: InputMaybe<
|
|
78286
|
-
targetFocusAreaId?: InputMaybe<
|
|
78548
|
+
cost?: InputMaybe<MercuryUpdateChangeMonetaryAmountInput>;
|
|
78549
|
+
positionsAmount?: InputMaybe<MercuryUpdateChangeQuantityInput>;
|
|
78550
|
+
sourceFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
|
|
78551
|
+
targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
|
|
78287
78552
|
};
|
|
78288
78553
|
export declare type MercuryUpdatePortfolioNameInput = {
|
|
78289
78554
|
cloudId: Scalars['ID']['input'];
|
|
@@ -78297,15 +78562,15 @@ export declare type MercuryUpdatePortfolioPayload = Payload & {
|
|
|
78297
78562
|
updatedPortfolio?: Maybe<MercuryPortfolio>;
|
|
78298
78563
|
};
|
|
78299
78564
|
export declare type MercuryUpdateRequestFundsChangeInput = {
|
|
78300
|
-
amount?: InputMaybe<
|
|
78565
|
+
amount?: InputMaybe<MercuryUpdateChangeMonetaryAmountInput>;
|
|
78301
78566
|
changeId: Scalars['ID']['input'];
|
|
78302
|
-
targetFocusAreaId?: InputMaybe<
|
|
78567
|
+
targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
|
|
78303
78568
|
};
|
|
78304
78569
|
export declare type MercuryUpdateRequestPositionsChangeInput = {
|
|
78305
78570
|
changeId: Scalars['ID']['input'];
|
|
78306
|
-
cost?: InputMaybe<
|
|
78307
|
-
positionsAmount?: InputMaybe<
|
|
78308
|
-
targetFocusAreaId?: InputMaybe<
|
|
78571
|
+
cost?: InputMaybe<MercuryUpdateChangeMonetaryAmountInput>;
|
|
78572
|
+
positionsAmount?: InputMaybe<MercuryUpdateChangeQuantityInput>;
|
|
78573
|
+
targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
|
|
78309
78574
|
};
|
|
78310
78575
|
export declare type MercuryUpdateStrategicEventCommentInput = {
|
|
78311
78576
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -87547,6 +87812,7 @@ export declare enum RateLimitingCurrency {
|
|
|
87547
87812
|
ForgeAlertsCurrency = "FORGE_ALERTS_CURRENCY",
|
|
87548
87813
|
ForgeAppContributorCurrency = "FORGE_APP_CONTRIBUTOR_CURRENCY",
|
|
87549
87814
|
ForgeAuditLogsCurrency = "FORGE_AUDIT_LOGS_CURRENCY",
|
|
87815
|
+
ForgeCustomMetricsCurrency = "FORGE_CUSTOM_METRICS_CURRENCY",
|
|
87550
87816
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
87551
87817
|
HelpCenterCurrency = "HELP_CENTER_CURRENCY",
|
|
87552
87818
|
HelpLayoutCurrency = "HELP_LAYOUT_CURRENCY",
|