@forge/cli-shared 6.9.0-next.4 → 6.9.0-next.6
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 +358 -43
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +35 -42
- package/package.json +2 -2
|
@@ -611,7 +611,7 @@ export declare type ActivityObject = {
|
|
|
611
611
|
subProduct?: Maybe<Scalars['String']['output']>;
|
|
612
612
|
type: Scalars['String']['output'];
|
|
613
613
|
};
|
|
614
|
-
export declare type ActivityObjectData = BitbucketPullRequest | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | LoomVideo | MercuryFocusArea | MercuryPortfolio | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloAttachment | TrelloBoard | TrelloCard | TrelloLabel | TrelloList | TrelloMember;
|
|
614
|
+
export declare type ActivityObjectData = BitbucketPullRequest | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | ExternalRemoteLink | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | LoomVideo | MercuryFocusArea | MercuryPortfolio | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloAttachment | TrelloBoard | TrelloCard | TrelloLabel | TrelloList | TrelloMember;
|
|
615
615
|
export declare enum ActivityObjectType {
|
|
616
616
|
Blogpost = "BLOGPOST",
|
|
617
617
|
Comment = "COMMENT",
|
|
@@ -9554,6 +9554,12 @@ export declare type ConfluenceCommentCountSummary = {
|
|
|
9554
9554
|
__typename?: 'ConfluenceCommentCountSummary';
|
|
9555
9555
|
total?: Maybe<Scalars['Int']['output']>;
|
|
9556
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
|
+
};
|
|
9557
9563
|
export declare type ConfluenceCommentFilter = {
|
|
9558
9564
|
commentState?: InputMaybe<Array<InputMaybe<ConfluenceCommentState>>>;
|
|
9559
9565
|
commentType?: InputMaybe<Array<InputMaybe<CommentType>>>;
|
|
@@ -9567,20 +9573,6 @@ export declare type ConfluenceCommentLinks = {
|
|
|
9567
9573
|
base?: Maybe<Scalars['String']['output']>;
|
|
9568
9574
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
9569
9575
|
};
|
|
9570
|
-
export declare type ConfluenceCommentModified = {
|
|
9571
|
-
__typename?: 'ConfluenceCommentModified';
|
|
9572
|
-
adfBodyContent?: Maybe<Scalars['String']['output']>;
|
|
9573
|
-
commentId?: Maybe<Scalars['ID']['output']>;
|
|
9574
|
-
eventType?: Maybe<ConfluenceCommentModifiedType>;
|
|
9575
|
-
pageCommentType?: Maybe<ConfluenceCommentLevel>;
|
|
9576
|
-
};
|
|
9577
|
-
export declare enum ConfluenceCommentModifiedType {
|
|
9578
|
-
CommentCreated = "COMMENT_CREATED",
|
|
9579
|
-
CommentDeleted = "COMMENT_DELETED",
|
|
9580
|
-
CommentReopened = "COMMENT_REOPENED",
|
|
9581
|
-
CommentResolved = "COMMENT_RESOLVED",
|
|
9582
|
-
CommentUpdated = "COMMENT_UPDATED"
|
|
9583
|
-
}
|
|
9584
9576
|
export declare type ConfluenceCommentResolutionState = {
|
|
9585
9577
|
__typename?: 'ConfluenceCommentResolutionState';
|
|
9586
9578
|
commentId: Scalars['ID']['output'];
|
|
@@ -9599,6 +9591,10 @@ export declare enum ConfluenceCommentType {
|
|
|
9599
9591
|
Footer = "FOOTER",
|
|
9600
9592
|
Inline = "INLINE"
|
|
9601
9593
|
}
|
|
9594
|
+
export declare type ConfluenceCommentUpdated = {
|
|
9595
|
+
__typename?: 'ConfluenceCommentUpdated';
|
|
9596
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
9597
|
+
};
|
|
9602
9598
|
export declare type ConfluenceContent = {
|
|
9603
9599
|
__typename?: 'ConfluenceContent';
|
|
9604
9600
|
contentTitleUpdate?: Maybe<ConfluenceContentTitleUpdate>;
|
|
@@ -9631,7 +9627,11 @@ export declare type ConfluenceContentMetadata = {
|
|
|
9631
9627
|
export declare type ConfluenceContentModified = {
|
|
9632
9628
|
__typename?: 'ConfluenceContentModified';
|
|
9633
9629
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
9634
|
-
|
|
9630
|
+
commentCreated?: Maybe<ConfluenceCommentCreated>;
|
|
9631
|
+
commentDeleted?: Maybe<ConfluenceCommentUpdated>;
|
|
9632
|
+
commentReopened?: Maybe<ConfluenceCommentUpdated>;
|
|
9633
|
+
commentResolved?: Maybe<ConfluenceCommentCreated>;
|
|
9634
|
+
commentUpdated?: Maybe<ConfluenceCommentUpdated>;
|
|
9635
9635
|
contentRestrictionUpdated?: Maybe<ConfluenceContentRestrictionUpdated>;
|
|
9636
9636
|
contentStateDeleted?: Maybe<ConfluenceContentPropertyDeleted>;
|
|
9637
9637
|
contentStateUpdated?: Maybe<ConfluenceContentPropertyUpdated>;
|
|
@@ -9640,16 +9640,23 @@ export declare type ConfluenceContentModified = {
|
|
|
9640
9640
|
coverPictureDeleted?: Maybe<ConfluenceContentPropertyDeleted>;
|
|
9641
9641
|
coverPictureUpdated?: Maybe<ConfluenceContentPropertyUpdated>;
|
|
9642
9642
|
coverPictureWidthUpdated?: Maybe<ConfluenceCoverPictureWidthUpdated>;
|
|
9643
|
+
editorInlineCommentCreated?: Maybe<ConfluenceInlineCommentCreated>;
|
|
9643
9644
|
embedUpdated?: Maybe<ConfluenceEmbedUpdated>;
|
|
9644
9645
|
emojiTitleDeleted?: Maybe<ConfluenceContentPropertyDeleted>;
|
|
9645
9646
|
emojiTitleUpdated?: Maybe<ConfluenceContentPropertyUpdated>;
|
|
9646
9647
|
id: Scalars['ID']['output'];
|
|
9647
|
-
|
|
9648
|
+
inlineCommentCreated?: Maybe<ConfluenceInlineCommentCreated>;
|
|
9649
|
+
inlineCommentDeleted?: Maybe<ConfluenceInlineCommentDeleted>;
|
|
9650
|
+
inlineCommentReattached?: Maybe<ConfluenceInlineCommentReattached>;
|
|
9651
|
+
inlineCommentResolved?: Maybe<ConfluenceInlineCommentResolved>;
|
|
9652
|
+
inlineCommentUnresolved?: Maybe<ConfluenceInlineCommentUpdated>;
|
|
9653
|
+
inlineCommentUpdated?: Maybe<ConfluenceInlineCommentUpdated>;
|
|
9648
9654
|
pageBlogified?: Maybe<ConfluencePageBlogified>;
|
|
9649
9655
|
pageMigrated?: Maybe<ConfluencePageMigrated>;
|
|
9650
9656
|
pageMoved?: Maybe<ConfluencePageMoved>;
|
|
9651
9657
|
pageTitlePropertyUpdated?: Maybe<ConfluenceContentPropertyUpdated>;
|
|
9652
9658
|
pageUpdated?: Maybe<ConfluencePageUpdated>;
|
|
9659
|
+
rendererInlineCommentCreated?: Maybe<ConfluenceRendererInlineCommentCreated>;
|
|
9653
9660
|
schedulePublished?: Maybe<ConfluenceSchedulePublished>;
|
|
9654
9661
|
type: ConfluenceSubscriptionContentType;
|
|
9655
9662
|
};
|
|
@@ -10117,28 +10124,26 @@ export declare type ConfluenceInlineComment = ConfluenceComment & {
|
|
|
10117
10124
|
resolutionStatus?: Maybe<ConfluenceInlineCommentResolutionStatus>;
|
|
10118
10125
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
10119
10126
|
};
|
|
10120
|
-
export declare type
|
|
10121
|
-
__typename?: '
|
|
10127
|
+
export declare type ConfluenceInlineCommentCreated = {
|
|
10128
|
+
__typename?: 'ConfluenceInlineCommentCreated';
|
|
10122
10129
|
adfBodyContent?: Maybe<Scalars['String']['output']>;
|
|
10123
10130
|
commentId?: Maybe<Scalars['ID']['output']>;
|
|
10124
|
-
eventType?: Maybe<ConfluenceInlineCommentModifiedType>;
|
|
10125
10131
|
inlineCommentType?: Maybe<ConfluenceCommentLevel>;
|
|
10126
|
-
|
|
10127
|
-
|
|
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']>;
|
|
10128
10143
|
markerRef?: Maybe<Scalars['String']['output']>;
|
|
10129
10144
|
publishVersionNumber?: Maybe<Scalars['Int']['output']>;
|
|
10130
10145
|
step?: Maybe<ConfluenceInlineCommentStep>;
|
|
10131
10146
|
};
|
|
10132
|
-
export declare enum ConfluenceInlineCommentModifiedType {
|
|
10133
|
-
EditorInlineCommentCreated = "EDITOR_INLINE_COMMENT_CREATED",
|
|
10134
|
-
InlineCommentCreated = "INLINE_COMMENT_CREATED",
|
|
10135
|
-
InlineCommentDeleted = "INLINE_COMMENT_DELETED",
|
|
10136
|
-
InlineCommentReattached = "INLINE_COMMENT_REATTACHED",
|
|
10137
|
-
InlineCommentResolved = "INLINE_COMMENT_RESOLVED",
|
|
10138
|
-
InlineCommentUnresolved = "INLINE_COMMENT_UNRESOLVED",
|
|
10139
|
-
InlineCommentUpdated = "INLINE_COMMENT_UPDATED",
|
|
10140
|
-
RendererInlineCommentCreated = "RENDERER_INLINE_COMMENT_CREATED"
|
|
10141
|
-
}
|
|
10142
10147
|
export declare enum ConfluenceInlineCommentResolutionStatus {
|
|
10143
10148
|
Resolved = "RESOLVED",
|
|
10144
10149
|
Unresolved = "UNRESOLVED"
|
|
@@ -10152,6 +10157,13 @@ export declare type ConfluenceInlineCommentResolveProperties = {
|
|
|
10152
10157
|
resolvedTime?: Maybe<Scalars['String']['output']>;
|
|
10153
10158
|
resolvedUser?: Maybe<Scalars['String']['output']>;
|
|
10154
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
|
+
};
|
|
10155
10167
|
export declare type ConfluenceInlineCommentStep = {
|
|
10156
10168
|
__typename?: 'ConfluenceInlineCommentStep';
|
|
10157
10169
|
from?: Maybe<Scalars['Int']['output']>;
|
|
@@ -10167,6 +10179,11 @@ export declare type ConfluenceInlineCommentStepMarkAttrs = {
|
|
|
10167
10179
|
__typename?: 'ConfluenceInlineCommentStepMarkAttrs';
|
|
10168
10180
|
annotationType?: Maybe<Scalars['String']['output']>;
|
|
10169
10181
|
};
|
|
10182
|
+
export declare type ConfluenceInlineCommentUpdated = {
|
|
10183
|
+
__typename?: 'ConfluenceInlineCommentUpdated';
|
|
10184
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
10185
|
+
markerRef?: Maybe<Scalars['String']['output']>;
|
|
10186
|
+
};
|
|
10170
10187
|
export declare type ConfluenceInlineTask = {
|
|
10171
10188
|
__typename?: 'ConfluenceInlineTask';
|
|
10172
10189
|
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
@@ -16341,6 +16358,15 @@ export declare type ConfluenceRedactionMetadataEdge = {
|
|
|
16341
16358
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16342
16359
|
node?: Maybe<ConfluenceRedactionMetadata>;
|
|
16343
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
|
+
};
|
|
16344
16370
|
export declare type ConfluenceReopenCommentPayload = Payload & {
|
|
16345
16371
|
__typename?: 'ConfluenceReopenCommentPayload';
|
|
16346
16372
|
commentResolutionStates?: Maybe<ConfluenceCommentResolutionState>;
|
|
@@ -19687,8 +19713,6 @@ export declare type CreateAppTunnelsInput = {
|
|
|
19687
19713
|
tunnelDefinitions: TunnelDefinitionsInput;
|
|
19688
19714
|
};
|
|
19689
19715
|
export declare type CreateAppVersionRolloutInput = {
|
|
19690
|
-
appEnvironmentId: Scalars['ID']['input'];
|
|
19691
|
-
appId: Scalars['ID']['input'];
|
|
19692
19716
|
sourceVersionId: Scalars['ID']['input'];
|
|
19693
19717
|
targetVersionId: Scalars['ID']['input'];
|
|
19694
19718
|
};
|
|
@@ -31450,6 +31474,7 @@ export declare type GraphStore = {
|
|
|
31450
31474
|
conversationHasMessage?: Maybe<GraphStoreSimplifiedConversationHasMessageConnection>;
|
|
31451
31475
|
conversationHasMessageInverse?: Maybe<GraphStoreSimplifiedConversationHasMessageInverseConnection>;
|
|
31452
31476
|
cypherQuery: GraphStoreCypherQueryConnection;
|
|
31477
|
+
cypherQueryV2: GraphStoreCypherQueryV2Connection;
|
|
31453
31478
|
deploymentAssociatedRepo?: Maybe<GraphStoreSimplifiedDeploymentAssociatedRepoConnection>;
|
|
31454
31479
|
deploymentAssociatedRepoInverse?: Maybe<GraphStoreSimplifiedDeploymentAssociatedRepoInverseConnection>;
|
|
31455
31480
|
deploymentContainsCommit?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitConnection>;
|
|
@@ -31751,6 +31776,8 @@ export declare type GraphStore = {
|
|
|
31751
31776
|
projectLinkedToCompassComponentInverse?: Maybe<GraphStoreSimplifiedProjectLinkedToCompassComponentInverseConnection>;
|
|
31752
31777
|
pullRequestLinksToService?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceConnection>;
|
|
31753
31778
|
pullRequestLinksToServiceInverse?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection>;
|
|
31779
|
+
scorecardHasAtlasGoal?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalConnection>;
|
|
31780
|
+
scorecardHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalInverseConnection>;
|
|
31754
31781
|
securityContainerAssociatedToVulnerability?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
31755
31782
|
securityContainerAssociatedToVulnerabilityBatch?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
31756
31783
|
securityContainerAssociatedToVulnerabilityInverse?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityInverseConnection>;
|
|
@@ -32663,6 +32690,12 @@ export declare type GraphStoreCypherQueryArgs = {
|
|
|
32663
32690
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32664
32691
|
query: Scalars['String']['input'];
|
|
32665
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
|
+
};
|
|
32666
32699
|
export declare type GraphStoreDeploymentAssociatedRepoArgs = {
|
|
32667
32700
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32668
32701
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34607,6 +34640,20 @@ export declare type GraphStorePullRequestLinksToServiceInverseArgs = {
|
|
|
34607
34640
|
id: Scalars['ID']['input'];
|
|
34608
34641
|
sort?: InputMaybe<GraphStorePullRequestLinksToServiceSortInput>;
|
|
34609
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
|
+
};
|
|
34610
34657
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityArgs = {
|
|
34611
34658
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34612
34659
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38050,7 +38097,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
38050
38097
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
38051
38098
|
id: Scalars['ID']['output'];
|
|
38052
38099
|
};
|
|
38053
|
-
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;
|
|
38054
38101
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
38055
38102
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
38056
38103
|
value: Scalars['Int']['output'];
|
|
@@ -38085,7 +38132,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
38085
38132
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
38086
38133
|
id: Scalars['ID']['output'];
|
|
38087
38134
|
};
|
|
38088
|
-
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;
|
|
38089
38136
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
38090
38137
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
38091
38138
|
value: Scalars['String']['output'];
|
|
@@ -38095,8 +38142,53 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
38095
38142
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
38096
38143
|
id: Scalars['ID']['output'];
|
|
38097
38144
|
};
|
|
38098
|
-
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;
|
|
38099
|
-
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;
|
|
38100
38192
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
38101
38193
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
38102
38194
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -43049,6 +43141,9 @@ export declare type GraphStoreProjectLinkedToCompassComponentSortInput = {
|
|
|
43049
43141
|
export declare type GraphStorePullRequestLinksToServiceSortInput = {
|
|
43050
43142
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43051
43143
|
};
|
|
43144
|
+
export declare type GraphStoreScorecardHasAtlasGoalSortInput = {
|
|
43145
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43146
|
+
};
|
|
43052
43147
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput = {
|
|
43053
43148
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43054
43149
|
};
|
|
@@ -46816,6 +46911,34 @@ export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseEdge = {
|
|
|
46816
46911
|
};
|
|
46817
46912
|
export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
46818
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;
|
|
46819
46942
|
export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection = HasPageInfo & {
|
|
46820
46943
|
__typename?: 'GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection';
|
|
46821
46944
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityEdge>>>;
|
|
@@ -57623,6 +57746,7 @@ export declare type JiraDetailedViewFieldSetsArgs = {
|
|
|
57623
57746
|
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
57624
57747
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57625
57748
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
57749
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
57626
57750
|
};
|
|
57627
57751
|
export declare type JiraDetailedViewIssuesArgs = {
|
|
57628
57752
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -58179,8 +58303,10 @@ export declare type JiraExportIssueDetailsTaskResponse = {
|
|
|
58179
58303
|
};
|
|
58180
58304
|
export declare type JiraExtensionRenderingContextInput = {
|
|
58181
58305
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
58306
|
+
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
58182
58307
|
portalId?: InputMaybe<Scalars['ID']['input']>;
|
|
58183
58308
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
58309
|
+
requestTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
58184
58310
|
};
|
|
58185
58311
|
export declare type JiraFallbackField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
58186
58312
|
__typename?: 'JiraFallbackField';
|
|
@@ -58426,6 +58552,7 @@ export declare type JiraFieldSetViewFieldSetsArgs = {
|
|
|
58426
58552
|
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
58427
58553
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58428
58554
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
58555
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
58429
58556
|
};
|
|
58430
58557
|
export declare type JiraFieldSetViewResult = JiraFieldSetView | QueryError;
|
|
58431
58558
|
export declare type JiraFieldSetsMutationInput = {
|
|
@@ -58443,6 +58570,7 @@ export declare type JiraFieldSetsViewMetadataFieldSetsArgs = {
|
|
|
58443
58570
|
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
58444
58571
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58445
58572
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
58573
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
58446
58574
|
};
|
|
58447
58575
|
export declare type JiraFieldSetsViewPayload = Payload & {
|
|
58448
58576
|
__typename?: 'JiraFieldSetsViewPayload';
|
|
@@ -59241,6 +59369,7 @@ export declare type JiraGroupedListViewFieldSetsArgs = {
|
|
|
59241
59369
|
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
59242
59370
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59243
59371
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
59372
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
59244
59373
|
};
|
|
59245
59374
|
export declare type JiraGroupedListViewGroupsArgs = {
|
|
59246
59375
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -60618,6 +60747,16 @@ export declare type JiraIssueSearchErrorExtension = QueryErrorExtension & {
|
|
|
60618
60747
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
60619
60748
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
60620
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
|
+
};
|
|
60621
60760
|
export declare type JiraIssueSearchFieldSet = {
|
|
60622
60761
|
__typename?: 'JiraIssueSearchFieldSet';
|
|
60623
60762
|
aliases?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -60626,6 +60765,7 @@ export declare type JiraIssueSearchFieldSet = {
|
|
|
60626
60765
|
fieldSetId?: Maybe<Scalars['String']['output']>;
|
|
60627
60766
|
fieldSetPreferences?: Maybe<JiraFieldSetPreferences>;
|
|
60628
60767
|
fieldType?: Maybe<JiraFieldType>;
|
|
60768
|
+
fieldsMetadata?: Maybe<JiraIssueSearchFieldMetadataConnection>;
|
|
60629
60769
|
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
60630
60770
|
isSortable?: Maybe<Scalars['Boolean']['output']>;
|
|
60631
60771
|
jqlTerm?: Maybe<Scalars['String']['output']>;
|
|
@@ -60679,6 +60819,11 @@ export declare type JiraIssueSearchInput = {
|
|
|
60679
60819
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
60680
60820
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
60681
60821
|
};
|
|
60822
|
+
export declare type JiraIssueSearchMetadataField = {
|
|
60823
|
+
__typename?: 'JiraIssueSearchMetadataField';
|
|
60824
|
+
canBeConfigured?: Maybe<Scalars['Boolean']['output']>;
|
|
60825
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
60826
|
+
};
|
|
60682
60827
|
export declare enum JiraIssueSearchOperationScope {
|
|
60683
60828
|
NinGlobal = "NIN_GLOBAL",
|
|
60684
60829
|
NinGlobalSchemaRefactor = "NIN_GLOBAL_SCHEMA_REFACTOR",
|
|
@@ -60712,6 +60857,7 @@ export declare type JiraIssueSearchResultContentIssuesArgs = {
|
|
|
60712
60857
|
};
|
|
60713
60858
|
export declare type JiraIssueSearchScope = {
|
|
60714
60859
|
operationScope?: InputMaybe<JiraIssueSearchOperationScope>;
|
|
60860
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
60715
60861
|
};
|
|
60716
60862
|
export declare type JiraIssueSearchStaticViewInput = {
|
|
60717
60863
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -61980,6 +62126,7 @@ export declare type JiraListViewFieldSetsArgs = {
|
|
|
61980
62126
|
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
61981
62127
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61982
62128
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
62129
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61983
62130
|
};
|
|
61984
62131
|
export declare type JiraListViewIssuesArgs = {
|
|
61985
62132
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -69155,6 +69302,7 @@ export declare type JiraSpreadsheetViewFieldSetsArgs = {
|
|
|
69155
69302
|
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
69156
69303
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69157
69304
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
69305
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
69158
69306
|
};
|
|
69159
69307
|
export declare type JiraSpreadsheetViewViewSettingsArgs = {
|
|
69160
69308
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -70453,6 +70601,7 @@ export declare type JiraUser = {
|
|
|
70453
70601
|
};
|
|
70454
70602
|
export declare type JiraUserAppAccess = {
|
|
70455
70603
|
__typename?: 'JiraUserAppAccess';
|
|
70604
|
+
enabled: Scalars['Boolean']['output'];
|
|
70456
70605
|
hasAccess: Scalars['Boolean']['output'];
|
|
70457
70606
|
};
|
|
70458
70607
|
export declare type JiraUserBroadcastMessage = Node & {
|
|
@@ -74203,6 +74352,7 @@ export declare type MarketplaceAppVersionConnection = {
|
|
|
74203
74352
|
edges?: Maybe<Array<Maybe<MarketplaceAppVersionEdge>>>;
|
|
74204
74353
|
pageInfo: PageInfo;
|
|
74205
74354
|
totalCount: Scalars['Int']['output'];
|
|
74355
|
+
totalCountPerSoftwareHosting?: Maybe<TotalCountPerSoftwareHosting>;
|
|
74206
74356
|
};
|
|
74207
74357
|
export declare type MarketplaceAppVersionEdge = {
|
|
74208
74358
|
__typename?: 'MarketplaceAppVersionEdge';
|
|
@@ -75859,10 +76009,21 @@ export declare type MarketplaceStoreInstalledAppDetailsResponse = {
|
|
|
75859
76009
|
__typename?: 'MarketplaceStoreInstalledAppDetailsResponse';
|
|
75860
76010
|
edition?: Maybe<Scalars['String']['output']>;
|
|
75861
76011
|
installed: Scalars['Boolean']['output'];
|
|
76012
|
+
installedAppManageLink?: Maybe<MarketplaceStoreInstalledAppManageLink>;
|
|
75862
76013
|
licenseActive: Scalars['Boolean']['output'];
|
|
75863
76014
|
licenseExpiryDate?: Maybe<Scalars['String']['output']>;
|
|
75864
76015
|
paidLicenseActiveOnParent: Scalars['Boolean']['output'];
|
|
75865
76016
|
};
|
|
76017
|
+
export declare type MarketplaceStoreInstalledAppManageLink = {
|
|
76018
|
+
__typename?: 'MarketplaceStoreInstalledAppManageLink';
|
|
76019
|
+
type?: Maybe<MarketplaceStoreInstalledAppManageLinkType>;
|
|
76020
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
76021
|
+
};
|
|
76022
|
+
export declare enum MarketplaceStoreInstalledAppManageLinkType {
|
|
76023
|
+
Configure = "CONFIGURE",
|
|
76024
|
+
GetStarted = "GET_STARTED",
|
|
76025
|
+
Manage = "MANAGE"
|
|
76026
|
+
}
|
|
75866
76027
|
export declare type MarketplaceStoreLoggedInUser = {
|
|
75867
76028
|
__typename?: 'MarketplaceStoreLoggedInUser';
|
|
75868
76029
|
email: Scalars['String']['output'];
|
|
@@ -76349,6 +76510,7 @@ export declare type MercuryArchiveFocusAreaChangeInput = {
|
|
|
76349
76510
|
};
|
|
76350
76511
|
export declare type MercuryArchiveFocusAreaInput = {
|
|
76351
76512
|
cloudId: Scalars['ID']['input'];
|
|
76513
|
+
comment?: InputMaybe<Scalars['String']['input']>;
|
|
76352
76514
|
id: Scalars['ID']['input'];
|
|
76353
76515
|
};
|
|
76354
76516
|
export declare type MercuryArchiveFocusAreaPayload = Payload & {
|
|
@@ -76356,6 +76518,10 @@ export declare type MercuryArchiveFocusAreaPayload = Payload & {
|
|
|
76356
76518
|
errors?: Maybe<Array<MutationError>>;
|
|
76357
76519
|
success: Scalars['Boolean']['output'];
|
|
76358
76520
|
};
|
|
76521
|
+
export declare type MercuryArchiveFocusAreaValidationInput = {
|
|
76522
|
+
cloudId: Scalars['ID']['input'];
|
|
76523
|
+
id: Scalars['ID']['input'];
|
|
76524
|
+
};
|
|
76359
76525
|
export declare type MercuryArchiveFocusAreaValidationPayload = Payload & {
|
|
76360
76526
|
__typename?: 'MercuryArchiveFocusAreaValidationPayload';
|
|
76361
76527
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -76366,7 +76532,7 @@ export declare type MercuryBudgetAggregation = {
|
|
|
76366
76532
|
aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
76367
76533
|
totalAssignedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
76368
76534
|
};
|
|
76369
|
-
export declare type MercuryChange = MercuryArchiveFocusAreaChange | MercuryCreateFocusAreaChange | MercuryMoveFundsChange | MercuryMovePositionsChange | MercuryPositionAllocationChange | MercuryRequestFundsChange | MercuryRequestPositionsChange;
|
|
76535
|
+
export declare type MercuryChange = MercuryArchiveFocusAreaChange | MercuryChangeParentFocusAreaChange | MercuryCreateFocusAreaChange | MercuryMoveFundsChange | MercuryMovePositionsChange | MercuryPositionAllocationChange | MercuryRenameFocusAreaChange | MercuryRequestFundsChange | MercuryRequestPositionsChange;
|
|
76370
76536
|
export declare type MercuryChangeConnection = {
|
|
76371
76537
|
__typename?: 'MercuryChangeConnection';
|
|
76372
76538
|
edges?: Maybe<Array<Maybe<MercuryChangeEdge>>>;
|
|
@@ -76387,13 +76553,30 @@ export declare type MercuryChangeInterface = {
|
|
|
76387
76553
|
updatedBy?: Maybe<User>;
|
|
76388
76554
|
updatedDate: Scalars['DateTime']['output'];
|
|
76389
76555
|
};
|
|
76556
|
+
export declare type MercuryChangeParentFocusAreaChange = MercuryChangeInterface & Node & {
|
|
76557
|
+
__typename?: 'MercuryChangeParentFocusAreaChange';
|
|
76558
|
+
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
76559
|
+
changeType: MercuryChangeType;
|
|
76560
|
+
createdBy?: Maybe<User>;
|
|
76561
|
+
createdDate: Scalars['DateTime']['output'];
|
|
76562
|
+
focusAreaId?: Maybe<MercuryFocusArea>;
|
|
76563
|
+
id: Scalars['ID']['output'];
|
|
76564
|
+
sourceFocusArea?: Maybe<MercuryFocusArea>;
|
|
76565
|
+
targetFocusArea?: Maybe<MercuryFocusArea>;
|
|
76566
|
+
updatedBy?: Maybe<User>;
|
|
76567
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
76568
|
+
};
|
|
76569
|
+
export declare type MercuryChangeParentFocusAreaChangeInput = {
|
|
76570
|
+
focusAreaId: Scalars['ID']['input'];
|
|
76571
|
+
targetFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
76572
|
+
};
|
|
76390
76573
|
export declare type MercuryChangeProposal = Node & {
|
|
76391
76574
|
__typename?: 'MercuryChangeProposal';
|
|
76392
76575
|
comments?: Maybe<MercuryChangeProposalCommentConnection>;
|
|
76393
76576
|
description?: Maybe<Scalars['String']['output']>;
|
|
76394
76577
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
76395
76578
|
id: Scalars['ID']['output'];
|
|
76396
|
-
impact?: Maybe<
|
|
76579
|
+
impact?: Maybe<MercuryChangeProposalImpact>;
|
|
76397
76580
|
name: Scalars['String']['output'];
|
|
76398
76581
|
owner?: Maybe<User>;
|
|
76399
76582
|
status?: Maybe<MercuryChangeProposalStatus>;
|
|
@@ -76435,6 +76618,10 @@ export declare type MercuryChangeProposalEdge = {
|
|
|
76435
76618
|
cursor: Scalars['String']['output'];
|
|
76436
76619
|
node?: Maybe<MercuryChangeProposal>;
|
|
76437
76620
|
};
|
|
76621
|
+
export declare type MercuryChangeProposalImpact = {
|
|
76622
|
+
__typename?: 'MercuryChangeProposalImpact';
|
|
76623
|
+
value: Scalars['Int']['output'];
|
|
76624
|
+
};
|
|
76438
76625
|
export declare type MercuryChangeProposalSort = {
|
|
76439
76626
|
field: MercuryChangeProposalSortField;
|
|
76440
76627
|
order: SortOrder;
|
|
@@ -76468,10 +76655,12 @@ export declare enum MercuryChangeSortField {
|
|
|
76468
76655
|
}
|
|
76469
76656
|
export declare enum MercuryChangeType {
|
|
76470
76657
|
ArchiveFocusArea = "ARCHIVE_FOCUS_AREA",
|
|
76658
|
+
ChangeParentFocusArea = "CHANGE_PARENT_FOCUS_AREA",
|
|
76471
76659
|
CreateFocusArea = "CREATE_FOCUS_AREA",
|
|
76472
76660
|
MoveFunds = "MOVE_FUNDS",
|
|
76473
76661
|
MovePositions = "MOVE_POSITIONS",
|
|
76474
76662
|
PositionAllocation = "POSITION_ALLOCATION",
|
|
76663
|
+
RenameFocusArea = "RENAME_FOCUS_AREA",
|
|
76475
76664
|
RequestFunds = "REQUEST_FUNDS",
|
|
76476
76665
|
RequestPositions = "REQUEST_POSITIONS"
|
|
76477
76666
|
}
|
|
@@ -76483,6 +76672,7 @@ export declare type MercuryComment = Node & {
|
|
|
76483
76672
|
createdDate: Scalars['String']['output'];
|
|
76484
76673
|
id: Scalars['ID']['output'];
|
|
76485
76674
|
updatedDate: Scalars['String']['output'];
|
|
76675
|
+
uuid: Scalars['ID']['output'];
|
|
76486
76676
|
};
|
|
76487
76677
|
export declare type MercuryCommentConnection = {
|
|
76488
76678
|
__typename?: 'MercuryCommentConnection';
|
|
@@ -77376,7 +77566,7 @@ export declare type MercuryMutationApiUpdatePortfolioNameArgs = {
|
|
|
77376
77566
|
input: MercuryUpdatePortfolioNameInput;
|
|
77377
77567
|
};
|
|
77378
77568
|
export declare type MercuryMutationApiValidateFocusAreaArchivalArgs = {
|
|
77379
|
-
input:
|
|
77569
|
+
input: MercuryArchiveFocusAreaValidationInput;
|
|
77380
77570
|
};
|
|
77381
77571
|
export declare type MercuryOriginalProjectStatus = {
|
|
77382
77572
|
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
@@ -77394,6 +77584,7 @@ export declare type MercuryPortfolio = Node & {
|
|
|
77394
77584
|
name: Scalars['String']['output'];
|
|
77395
77585
|
owner?: Maybe<User>;
|
|
77396
77586
|
url?: Maybe<Scalars['String']['output']>;
|
|
77587
|
+
uuid: Scalars['ID']['output'];
|
|
77397
77588
|
};
|
|
77398
77589
|
export declare type MercuryPortfolioAllocations = {
|
|
77399
77590
|
__typename?: 'MercuryPortfolioAllocations';
|
|
@@ -77475,11 +77666,13 @@ export declare enum MercuryProjectTargetDateType {
|
|
|
77475
77666
|
}
|
|
77476
77667
|
export declare type MercuryProposeChangesInput = {
|
|
77477
77668
|
archiveFocusAreas?: InputMaybe<Array<MercuryArchiveFocusAreaChangeInput>>;
|
|
77669
|
+
changeParentFocusAreas?: InputMaybe<Array<MercuryChangeParentFocusAreaChangeInput>>;
|
|
77478
77670
|
changeProposalId: Scalars['ID']['input'];
|
|
77479
77671
|
createFocusAreas?: InputMaybe<Array<MercuryCreateFocusAreaChangeInput>>;
|
|
77480
77672
|
moveFunds?: InputMaybe<Array<MercuryMoveFundsChangeInput>>;
|
|
77481
77673
|
movePositions?: InputMaybe<Array<MercuryMovePositionsChangeInput>>;
|
|
77482
77674
|
positionAllocations?: InputMaybe<Array<MercuryPositionAllocationChangeInput>>;
|
|
77675
|
+
renameFocusAreas?: InputMaybe<Array<MercuryRenameFocusAreaChangeInput>>;
|
|
77483
77676
|
requestFunds?: InputMaybe<Array<MercuryRequestFundsChangeInput>>;
|
|
77484
77677
|
requestPositions?: InputMaybe<Array<MercuryRequestPositionsChangeInput>>;
|
|
77485
77678
|
};
|
|
@@ -77831,6 +78024,23 @@ export declare type MercuryRemoveWatcherFromFocusAreaPayload = Payload & {
|
|
|
77831
78024
|
errors?: Maybe<Array<MutationError>>;
|
|
77832
78025
|
success: Scalars['Boolean']['output'];
|
|
77833
78026
|
};
|
|
78027
|
+
export declare type MercuryRenameFocusAreaChange = MercuryChangeInterface & Node & {
|
|
78028
|
+
__typename?: 'MercuryRenameFocusAreaChange';
|
|
78029
|
+
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
78030
|
+
changeType: MercuryChangeType;
|
|
78031
|
+
createdBy?: Maybe<User>;
|
|
78032
|
+
createdDate: Scalars['DateTime']['output'];
|
|
78033
|
+
id: Scalars['ID']['output'];
|
|
78034
|
+
newFocusAreaName: Scalars['String']['output'];
|
|
78035
|
+
oldFocusAreaName: Scalars['String']['output'];
|
|
78036
|
+
targetFocusArea?: Maybe<MercuryFocusArea>;
|
|
78037
|
+
updatedBy?: Maybe<User>;
|
|
78038
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
78039
|
+
};
|
|
78040
|
+
export declare type MercuryRenameFocusAreaChangeInput = {
|
|
78041
|
+
newFocusAreaName: Scalars['String']['input'];
|
|
78042
|
+
targetFocusAreaId: Scalars['ID']['input'];
|
|
78043
|
+
};
|
|
77834
78044
|
export declare type MercuryRequestFundsChange = MercuryChangeInterface & Node & {
|
|
77835
78045
|
__typename?: 'MercuryRequestFundsChange';
|
|
77836
78046
|
amount: Scalars['BigDecimal']['output'];
|
|
@@ -77974,6 +78184,7 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
77974
78184
|
transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
|
|
77975
78185
|
updateChangeProposalComment?: Maybe<MercuryUpdateChangeProposalCommentPayload>;
|
|
77976
78186
|
updateChangeProposalDescription?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
78187
|
+
updateChangeProposalFocusArea?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
77977
78188
|
updateChangeProposalImpact?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
77978
78189
|
updateChangeProposalName?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
77979
78190
|
updateChangeProposalOwner?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
@@ -78029,6 +78240,9 @@ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalComment
|
|
|
78029
78240
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalDescriptionArgs = {
|
|
78030
78241
|
input: MercuryUpdateChangeProposalDescriptionInput;
|
|
78031
78242
|
};
|
|
78243
|
+
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalFocusAreaArgs = {
|
|
78244
|
+
input: MercuryUpdateChangeProposalFocusAreaInput;
|
|
78245
|
+
};
|
|
78032
78246
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalImpactArgs = {
|
|
78033
78247
|
input: MercuryUpdateChangeProposalImpactInput;
|
|
78034
78248
|
};
|
|
@@ -78220,6 +78434,7 @@ export declare type MercuryTransitionStrategicEventStatusInput = {
|
|
|
78220
78434
|
};
|
|
78221
78435
|
export declare type MercuryUnarchiveFocusAreaInput = {
|
|
78222
78436
|
cloudId: Scalars['ID']['input'];
|
|
78437
|
+
comment?: InputMaybe<Scalars['String']['input']>;
|
|
78223
78438
|
id: Scalars['ID']['input'];
|
|
78224
78439
|
};
|
|
78225
78440
|
export declare type MercuryUnarchiveFocusAreaPayload = Payload & {
|
|
@@ -78256,7 +78471,7 @@ export declare type MercuryUpdateChangeProposalDescriptionInput = {
|
|
|
78256
78471
|
id: Scalars['ID']['input'];
|
|
78257
78472
|
};
|
|
78258
78473
|
export declare type MercuryUpdateChangeProposalFocusAreaInput = {
|
|
78259
|
-
focusAreaId
|
|
78474
|
+
focusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
78260
78475
|
id: Scalars['ID']['input'];
|
|
78261
78476
|
};
|
|
78262
78477
|
export declare type MercuryUpdateChangeProposalImpactInput = {
|
|
@@ -94404,6 +94619,12 @@ export declare type TopTemplateItem = {
|
|
|
94404
94619
|
rank: Scalars['Int']['output'];
|
|
94405
94620
|
templateId: Scalars['String']['output'];
|
|
94406
94621
|
};
|
|
94622
|
+
export declare type TotalCountPerSoftwareHosting = {
|
|
94623
|
+
__typename?: 'TotalCountPerSoftwareHosting';
|
|
94624
|
+
cloud?: Maybe<Scalars['Int']['output']>;
|
|
94625
|
+
dataCenter?: Maybe<Scalars['Int']['output']>;
|
|
94626
|
+
server?: Maybe<Scalars['Int']['output']>;
|
|
94627
|
+
};
|
|
94407
94628
|
export declare type TotalSearchCtr = {
|
|
94408
94629
|
__typename?: 'TotalSearchCTR';
|
|
94409
94630
|
nodes: Array<TotalSearchCtrItems>;
|
|
@@ -95899,14 +96120,18 @@ export declare enum TrelloCardActionType {
|
|
|
95899
96120
|
AddChecklist = "ADD_CHECKLIST",
|
|
95900
96121
|
AddMember = "ADD_MEMBER",
|
|
95901
96122
|
Comment = "COMMENT",
|
|
96123
|
+
CommentFromCopiedCard = "COMMENT_FROM_COPIED_CARD",
|
|
96124
|
+
CreateCardFromEmail = "CREATE_CARD_FROM_EMAIL",
|
|
95902
96125
|
MoveCard = "MOVE_CARD",
|
|
95903
96126
|
MoveCardToBoard = "MOVE_CARD_TO_BOARD",
|
|
95904
96127
|
MoveInboxCardToBoard = "MOVE_INBOX_CARD_TO_BOARD",
|
|
95905
96128
|
RemoveChecklist = "REMOVE_CHECKLIST",
|
|
95906
96129
|
RemoveMember = "REMOVE_MEMBER",
|
|
96130
|
+
UpdateCardClosed = "UPDATE_CARD_CLOSED",
|
|
96131
|
+
UpdateCardComplete = "UPDATE_CARD_COMPLETE",
|
|
95907
96132
|
UpdateCardDue = "UPDATE_CARD_DUE"
|
|
95908
96133
|
}
|
|
95909
|
-
export declare type TrelloCardActions = TrelloAddAttachmentToCardAction | TrelloAddChecklistToCardAction | TrelloAddMemberToCardAction | TrelloCommentCardAction | TrelloMoveCardAction | TrelloMoveCardToBoardAction | TrelloMoveInboxCardToBoardAction | TrelloRemoveChecklistFromCardAction | TrelloRemoveMemberFromCardAction | TrelloUpdateCardDueAction;
|
|
96134
|
+
export declare type TrelloCardActions = TrelloAddAttachmentToCardAction | TrelloAddChecklistToCardAction | TrelloAddMemberToCardAction | TrelloCommentCardAction | TrelloCopyCommentCardAction | TrelloCreateCardFromEmailAction | TrelloMoveCardAction | TrelloMoveCardToBoardAction | TrelloMoveInboxCardToBoardAction | TrelloRemoveChecklistFromCardAction | TrelloRemoveMemberFromCardAction | TrelloUpdateCardClosedAction | TrelloUpdateCardCompleteAction | TrelloUpdateCardDueAction;
|
|
95910
96135
|
export declare type TrelloCardAttachmentsByType = {
|
|
95911
96136
|
__typename?: 'TrelloCardAttachmentsByType';
|
|
95912
96137
|
trello?: Maybe<TrelloCardAttachmentsCount>;
|
|
@@ -96183,6 +96408,54 @@ export declare type TrelloCommentCardActionDisplayEntities = {
|
|
|
96183
96408
|
contextOn?: Maybe<TrelloActionTranslatableEntity>;
|
|
96184
96409
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
96185
96410
|
};
|
|
96411
|
+
export declare type TrelloCopiedCardSource = {
|
|
96412
|
+
__typename?: 'TrelloCopiedCardSource';
|
|
96413
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
96414
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
96415
|
+
shortId?: Maybe<Scalars['Int']['output']>;
|
|
96416
|
+
};
|
|
96417
|
+
export declare type TrelloCopyCommentCardAction = TrelloAction & TrelloCardActionData & {
|
|
96418
|
+
__typename?: 'TrelloCopyCommentCardAction';
|
|
96419
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
96420
|
+
board?: Maybe<TrelloBoard>;
|
|
96421
|
+
card?: Maybe<TrelloCard>;
|
|
96422
|
+
creator?: Maybe<TrelloMember>;
|
|
96423
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
96424
|
+
displayEntities?: Maybe<TrelloCopyCommentCardActionDisplayEntities>;
|
|
96425
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
96426
|
+
id: Scalars['ID']['output'];
|
|
96427
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
96428
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
96429
|
+
sourceCard?: Maybe<TrelloCopiedCardSource>;
|
|
96430
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
96431
|
+
};
|
|
96432
|
+
export declare type TrelloCopyCommentCardActionDisplayEntities = {
|
|
96433
|
+
__typename?: 'TrelloCopyCommentCardActionDisplayEntities';
|
|
96434
|
+
card?: Maybe<TrelloActionCardEntity>;
|
|
96435
|
+
comment?: Maybe<TrelloActionCommentEntity>;
|
|
96436
|
+
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
96437
|
+
originalCommenter?: Maybe<TrelloActionMemberEntity>;
|
|
96438
|
+
};
|
|
96439
|
+
export declare type TrelloCreateCardFromEmailAction = TrelloAction & TrelloCardActionData & {
|
|
96440
|
+
__typename?: 'TrelloCreateCardFromEmailAction';
|
|
96441
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
96442
|
+
board?: Maybe<TrelloBoard>;
|
|
96443
|
+
card?: Maybe<TrelloCard>;
|
|
96444
|
+
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
96445
|
+
creator?: Maybe<TrelloMember>;
|
|
96446
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
96447
|
+
displayEntities?: Maybe<TrelloCreateCardFromEmailActionDisplayEntities>;
|
|
96448
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
96449
|
+
id: Scalars['ID']['output'];
|
|
96450
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
96451
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
96452
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
96453
|
+
};
|
|
96454
|
+
export declare type TrelloCreateCardFromEmailActionDisplayEntities = {
|
|
96455
|
+
__typename?: 'TrelloCreateCardFromEmailActionDisplayEntities';
|
|
96456
|
+
card?: Maybe<TrelloActionCardEntity>;
|
|
96457
|
+
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
96458
|
+
};
|
|
96186
96459
|
export declare type TrelloCreateCardInput = {
|
|
96187
96460
|
listId: Scalars['ID']['input'];
|
|
96188
96461
|
name: Scalars['String']['input'];
|
|
@@ -97170,6 +97443,7 @@ export declare type TrelloQueryApi = {
|
|
|
97170
97443
|
echos?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
97171
97444
|
enabledPlannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
|
|
97172
97445
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
97446
|
+
enterprisesById?: Maybe<Array<Maybe<TrelloEnterprise>>>;
|
|
97173
97447
|
labelsById?: Maybe<Array<Maybe<TrelloLabel>>>;
|
|
97174
97448
|
list?: Maybe<TrelloList>;
|
|
97175
97449
|
listsById?: Maybe<Array<Maybe<TrelloList>>>;
|
|
@@ -97217,6 +97491,9 @@ export declare type TrelloQueryApiEnabledPlannerCalendarsByAccountIdArgs = {
|
|
|
97217
97491
|
export declare type TrelloQueryApiEnterpriseArgs = {
|
|
97218
97492
|
id: Scalars['ID']['input'];
|
|
97219
97493
|
};
|
|
97494
|
+
export declare type TrelloQueryApiEnterprisesByIdArgs = {
|
|
97495
|
+
ids: Array<Scalars['ID']['input']>;
|
|
97496
|
+
};
|
|
97220
97497
|
export declare type TrelloQueryApiLabelsByIdArgs = {
|
|
97221
97498
|
ids: Array<Scalars['ID']['input']>;
|
|
97222
97499
|
};
|
|
@@ -97548,6 +97825,44 @@ export declare type TrelloUpdateBoardViewerShowCompactMirrorCardPayload = Payloa
|
|
|
97548
97825
|
success: Scalars['Boolean']['output'];
|
|
97549
97826
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
97550
97827
|
};
|
|
97828
|
+
export declare type TrelloUpdateCardClosedAction = TrelloAction & TrelloCardActionData & {
|
|
97829
|
+
__typename?: 'TrelloUpdateCardClosedAction';
|
|
97830
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
97831
|
+
board?: Maybe<TrelloBoard>;
|
|
97832
|
+
card?: Maybe<TrelloCard>;
|
|
97833
|
+
creator?: Maybe<TrelloMember>;
|
|
97834
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
97835
|
+
displayEntities?: Maybe<TrelloUpdateCardClosedActionDisplayEntities>;
|
|
97836
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
97837
|
+
id: Scalars['ID']['output'];
|
|
97838
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
97839
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
97840
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
97841
|
+
};
|
|
97842
|
+
export declare type TrelloUpdateCardClosedActionDisplayEntities = {
|
|
97843
|
+
__typename?: 'TrelloUpdateCardClosedActionDisplayEntities';
|
|
97844
|
+
card?: Maybe<TrelloActionCardEntity>;
|
|
97845
|
+
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
97846
|
+
};
|
|
97847
|
+
export declare type TrelloUpdateCardCompleteAction = TrelloAction & TrelloCardActionData & {
|
|
97848
|
+
__typename?: 'TrelloUpdateCardCompleteAction';
|
|
97849
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
97850
|
+
board?: Maybe<TrelloBoard>;
|
|
97851
|
+
card?: Maybe<TrelloCard>;
|
|
97852
|
+
creator?: Maybe<TrelloMember>;
|
|
97853
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
97854
|
+
displayEntities?: Maybe<TrelloUpdateCardCompleteActionDisplayEntities>;
|
|
97855
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
97856
|
+
id: Scalars['ID']['output'];
|
|
97857
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
97858
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
97859
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
97860
|
+
};
|
|
97861
|
+
export declare type TrelloUpdateCardCompleteActionDisplayEntities = {
|
|
97862
|
+
__typename?: 'TrelloUpdateCardCompleteActionDisplayEntities';
|
|
97863
|
+
card?: Maybe<TrelloActionCardEntity>;
|
|
97864
|
+
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
97865
|
+
};
|
|
97551
97866
|
export declare type TrelloUpdateCardDueAction = TrelloAction & TrelloCardActionData & {
|
|
97552
97867
|
__typename?: 'TrelloUpdateCardDueAction';
|
|
97553
97868
|
appCreator?: Maybe<TrelloAppCreator>;
|