@forge/cli-shared 6.6.1-next.5 → 6.6.1-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 +6 -0
- package/out/graphql/graphql-types.d.ts +161 -9
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/service/supported-products-service.d.ts.map +1 -1
- package/out/service/supported-products-service.js +4 -1
- package/out/ui/command-line-ui.d.ts +3 -0
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/command-line-ui.js +20 -0
- package/out/ui/text.d.ts +4 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +4 -0
- package/out/ui/ui.d.ts +6 -3
- package/out/ui/ui.d.ts.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -161,6 +161,7 @@ export declare type ActionsAction = {
|
|
|
161
161
|
__typename?: 'ActionsAction';
|
|
162
162
|
actionType: Scalars['String']['output'];
|
|
163
163
|
actionVerb?: Maybe<Scalars['String']['output']>;
|
|
164
|
+
actionVersion?: Maybe<Scalars['String']['output']>;
|
|
164
165
|
auth: Array<ActionsAuthType>;
|
|
165
166
|
description?: Maybe<ActionsDescription>;
|
|
166
167
|
enabledCapabilities?: Maybe<Array<Maybe<ActionsCapabilityType>>>;
|
|
@@ -263,6 +264,7 @@ export declare type ActionsActionableAppsFilter = {
|
|
|
263
264
|
byActionId?: InputMaybe<Scalars['String']['input']>;
|
|
264
265
|
byActionType?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
265
266
|
byActionVerb?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
267
|
+
byActionVersion?: InputMaybe<Scalars['String']['input']>;
|
|
266
268
|
byCapability?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
267
269
|
byContextEntityType?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
268
270
|
byEntityProperty?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -24192,6 +24194,97 @@ export declare type ExternalEntities = {
|
|
|
24192
24194
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
24193
24195
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
24194
24196
|
};
|
|
24197
|
+
export declare type ExternalEntitiesV2ForHydration = {
|
|
24198
|
+
__typename?: 'ExternalEntitiesV2ForHydration';
|
|
24199
|
+
branch?: Maybe<Array<Maybe<ExternalBranch>>>;
|
|
24200
|
+
buildInfo?: Maybe<Array<Maybe<ExternalBuildInfo>>>;
|
|
24201
|
+
calendarEvent?: Maybe<Array<Maybe<ExternalCalendarEvent>>>;
|
|
24202
|
+
comment?: Maybe<Array<Maybe<ExternalComment>>>;
|
|
24203
|
+
commit?: Maybe<Array<Maybe<ExternalCommit>>>;
|
|
24204
|
+
conversation?: Maybe<Array<Maybe<ExternalConversation>>>;
|
|
24205
|
+
deployment?: Maybe<Array<Maybe<ExternalDeployment>>>;
|
|
24206
|
+
design?: Maybe<Array<Maybe<ExternalDesign>>>;
|
|
24207
|
+
document?: Maybe<Array<Maybe<ExternalDocument>>>;
|
|
24208
|
+
featureFlag?: Maybe<Array<Maybe<ExternalFeatureFlag>>>;
|
|
24209
|
+
message?: Maybe<Array<Maybe<ExternalMessage>>>;
|
|
24210
|
+
organisation?: Maybe<Array<Maybe<ExternalOrganisation>>>;
|
|
24211
|
+
position?: Maybe<Array<Maybe<ExternalPosition>>>;
|
|
24212
|
+
pullRequest?: Maybe<Array<Maybe<ExternalPullRequest>>>;
|
|
24213
|
+
remoteLink?: Maybe<Array<Maybe<ExternalRemoteLink>>>;
|
|
24214
|
+
repository?: Maybe<Array<Maybe<ExternalRepository>>>;
|
|
24215
|
+
space?: Maybe<Array<Maybe<ExternalSpace>>>;
|
|
24216
|
+
video?: Maybe<Array<Maybe<ExternalVideo>>>;
|
|
24217
|
+
vulnerability?: Maybe<Array<Maybe<ExternalVulnerability>>>;
|
|
24218
|
+
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
24219
|
+
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
24220
|
+
};
|
|
24221
|
+
export declare type ExternalEntitiesV2ForHydrationBranchArgs = {
|
|
24222
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24223
|
+
};
|
|
24224
|
+
export declare type ExternalEntitiesV2ForHydrationBuildInfoArgs = {
|
|
24225
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24226
|
+
};
|
|
24227
|
+
export declare type ExternalEntitiesV2ForHydrationCalendarEventArgs = {
|
|
24228
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24229
|
+
};
|
|
24230
|
+
export declare type ExternalEntitiesV2ForHydrationCommentArgs = {
|
|
24231
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24232
|
+
};
|
|
24233
|
+
export declare type ExternalEntitiesV2ForHydrationCommitArgs = {
|
|
24234
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24235
|
+
};
|
|
24236
|
+
export declare type ExternalEntitiesV2ForHydrationConversationArgs = {
|
|
24237
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24238
|
+
};
|
|
24239
|
+
export declare type ExternalEntitiesV2ForHydrationDeploymentArgs = {
|
|
24240
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24241
|
+
};
|
|
24242
|
+
export declare type ExternalEntitiesV2ForHydrationDesignArgs = {
|
|
24243
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24244
|
+
};
|
|
24245
|
+
export declare type ExternalEntitiesV2ForHydrationDocumentArgs = {
|
|
24246
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24247
|
+
};
|
|
24248
|
+
export declare type ExternalEntitiesV2ForHydrationFeatureFlagArgs = {
|
|
24249
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24250
|
+
};
|
|
24251
|
+
export declare type ExternalEntitiesV2ForHydrationMessageArgs = {
|
|
24252
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24253
|
+
};
|
|
24254
|
+
export declare type ExternalEntitiesV2ForHydrationOrganisationArgs = {
|
|
24255
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24256
|
+
};
|
|
24257
|
+
export declare type ExternalEntitiesV2ForHydrationPositionArgs = {
|
|
24258
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24259
|
+
};
|
|
24260
|
+
export declare type ExternalEntitiesV2ForHydrationPullRequestArgs = {
|
|
24261
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24262
|
+
};
|
|
24263
|
+
export declare type ExternalEntitiesV2ForHydrationRemoteLinkArgs = {
|
|
24264
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24265
|
+
};
|
|
24266
|
+
export declare type ExternalEntitiesV2ForHydrationRepositoryArgs = {
|
|
24267
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24268
|
+
};
|
|
24269
|
+
export declare type ExternalEntitiesV2ForHydrationSpaceArgs = {
|
|
24270
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24271
|
+
};
|
|
24272
|
+
export declare type ExternalEntitiesV2ForHydrationVideoArgs = {
|
|
24273
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24274
|
+
};
|
|
24275
|
+
export declare type ExternalEntitiesV2ForHydrationVulnerabilityArgs = {
|
|
24276
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24277
|
+
};
|
|
24278
|
+
export declare type ExternalEntitiesV2ForHydrationWorkItemArgs = {
|
|
24279
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24280
|
+
};
|
|
24281
|
+
export declare type ExternalEntitiesV2ForHydrationWorkerArgs = {
|
|
24282
|
+
externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
|
|
24283
|
+
};
|
|
24284
|
+
export declare type ExternalEntitiesV2ForHydrationInput = {
|
|
24285
|
+
ari?: InputMaybe<Scalars['ID']['input']>;
|
|
24286
|
+
graphWorkspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
24287
|
+
};
|
|
24195
24288
|
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
24196
24289
|
export declare type ExternalEnvironment = {
|
|
24197
24290
|
__typename?: 'ExternalEnvironment';
|
|
@@ -30156,6 +30249,7 @@ export declare type GraphStore = {
|
|
|
30156
30249
|
userTaggedInCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInCommentInverseConnection>;
|
|
30157
30250
|
userTaggedInConfluencePage?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageConnection>;
|
|
30158
30251
|
userTaggedInConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageInverseConnection>;
|
|
30252
|
+
userTaggedInIssueComment?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentConnection>;
|
|
30159
30253
|
userTaggedInIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection>;
|
|
30160
30254
|
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
30161
30255
|
userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
|
|
@@ -33646,6 +33740,13 @@ export declare type GraphStoreUserTaggedInConfluencePageInverseArgs = {
|
|
|
33646
33740
|
id: Scalars['ID']['input'];
|
|
33647
33741
|
sort?: InputMaybe<GraphStoreUserTaggedInConfluencePageSortInput>;
|
|
33648
33742
|
};
|
|
33743
|
+
export declare type GraphStoreUserTaggedInIssueCommentArgs = {
|
|
33744
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33745
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33746
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33747
|
+
id: Scalars['ID']['input'];
|
|
33748
|
+
sort?: InputMaybe<GraphStoreUserTaggedInIssueCommentSortInput>;
|
|
33749
|
+
};
|
|
33649
33750
|
export declare type GraphStoreUserTaggedInIssueCommentInverseArgs = {
|
|
33650
33751
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33651
33752
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35357,7 +35458,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
35357
35458
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
35358
35459
|
id: Scalars['ID']['output'];
|
|
35359
35460
|
};
|
|
35360
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | 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 | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
|
|
35461
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | 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 | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
|
|
35361
35462
|
export declare type GraphStoreCypherQueryNode = {
|
|
35362
35463
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
35363
35464
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -35382,8 +35483,8 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
35382
35483
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
35383
35484
|
id: Scalars['ID']['output'];
|
|
35384
35485
|
};
|
|
35385
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | 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 | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
|
|
35386
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | 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 | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
|
|
35486
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | 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 | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
|
|
35487
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | 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 | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
|
|
35387
35488
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
35388
35489
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
35389
35490
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -45140,6 +45241,19 @@ export declare type GraphStoreSimplifiedUserTaggedInConfluencePageInverseEdge =
|
|
|
45140
45241
|
};
|
|
45141
45242
|
export declare type GraphStoreSimplifiedUserTaggedInConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45142
45243
|
export declare type GraphStoreSimplifiedUserTaggedInConfluencePageUnion = ConfluencePage;
|
|
45244
|
+
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentConnection = HasPageInfo & {
|
|
45245
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInIssueCommentConnection';
|
|
45246
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentEdge>>>;
|
|
45247
|
+
pageInfo: PageInfo;
|
|
45248
|
+
};
|
|
45249
|
+
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentEdge = {
|
|
45250
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInIssueCommentEdge';
|
|
45251
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45252
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45253
|
+
id: Scalars['ID']['output'];
|
|
45254
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45255
|
+
node?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentUnion>;
|
|
45256
|
+
};
|
|
45143
45257
|
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection = HasPageInfo & {
|
|
45144
45258
|
__typename?: 'GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection';
|
|
45145
45259
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseEdge>>>;
|
|
@@ -45154,6 +45268,7 @@ export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseEdge = {
|
|
|
45154
45268
|
node?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseUnion>;
|
|
45155
45269
|
};
|
|
45156
45270
|
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45271
|
+
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
45157
45272
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentConnection = HasPageInfo & {
|
|
45158
45273
|
__typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentConnection';
|
|
45159
45274
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTriggeredDeploymentEdge>>>;
|
|
@@ -56267,6 +56382,10 @@ export declare type JiraJqlHistoryEdge = {
|
|
|
56267
56382
|
__typename?: 'JiraJQLHistoryEdge';
|
|
56268
56383
|
node?: Maybe<JiraJqlHistory>;
|
|
56269
56384
|
};
|
|
56385
|
+
export declare type JiraJourneyBuilderAssociatedAutomationRule = {
|
|
56386
|
+
__typename?: 'JiraJourneyBuilderAssociatedAutomationRule';
|
|
56387
|
+
id: Scalars['ID']['output'];
|
|
56388
|
+
};
|
|
56270
56389
|
export declare type JiraJourneyConfiguration = Node & {
|
|
56271
56390
|
__typename?: 'JiraJourneyConfiguration';
|
|
56272
56391
|
activityConfigurations?: Maybe<Array<Maybe<JiraActivityConfiguration>>>;
|
|
@@ -56357,6 +56476,7 @@ export declare enum JiraJourneyTriggerType {
|
|
|
56357
56476
|
}
|
|
56358
56477
|
export declare type JiraJourneyWorkItem = JiraJourneyItemCommon & {
|
|
56359
56478
|
__typename?: 'JiraJourneyWorkItem';
|
|
56479
|
+
associatedAutomationRules?: Maybe<Array<JiraJourneyBuilderAssociatedAutomationRule>>;
|
|
56360
56480
|
fieldValues?: Maybe<Array<JiraJourneyWorkItemFieldValueKeyValuePair>>;
|
|
56361
56481
|
id: Scalars['ID']['output'];
|
|
56362
56482
|
issueType?: Maybe<JiraIssueType>;
|
|
@@ -57468,6 +57588,7 @@ export declare type JiraMutation = {
|
|
|
57468
57588
|
__typename?: 'JiraMutation';
|
|
57469
57589
|
addFieldsToProject?: Maybe<JiraAddFieldsToProjectPayload>;
|
|
57470
57590
|
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
57591
|
+
addJiraJourneyWorkItemAssociatedAutomationRule?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
57471
57592
|
addJiraVersionApprover?: Maybe<JiraVersionAddApproverPayload>;
|
|
57472
57593
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
57473
57594
|
addPostIncidentReviewLink?: Maybe<JiraAddPostIncidentReviewLinkMutationPayload>;
|
|
@@ -57546,6 +57667,7 @@ export declare type JiraMutation = {
|
|
|
57546
57667
|
removeCustomField?: Maybe<JiraRemoveCustomFieldPayload>;
|
|
57547
57668
|
removeIssuesFromAllFixVersions?: Maybe<JiraRemoveIssuesFromAllFixVersionsPayload>;
|
|
57548
57669
|
removeIssuesFromFixVersion?: Maybe<JiraRemoveIssuesFromFixVersionPayload>;
|
|
57670
|
+
removeJiraJourneyWorkItemAssociatedAutomationRule?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
57549
57671
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
57550
57672
|
removePostIncidentReviewLink?: Maybe<JiraRemovePostIncidentReviewLinkMutationPayload>;
|
|
57551
57673
|
removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
|
|
@@ -57665,6 +57787,10 @@ export declare type JiraMutationAddFieldsToProjectArgs = {
|
|
|
57665
57787
|
export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
57666
57788
|
input: JiraAddIssuesToFixVersionInput;
|
|
57667
57789
|
};
|
|
57790
|
+
export declare type JiraMutationAddJiraJourneyWorkItemAssociatedAutomationRuleArgs = {
|
|
57791
|
+
cloudId: Scalars['ID']['input'];
|
|
57792
|
+
input: JiraUpdateJourneyWorkItemAssociatedAutomationRuleInput;
|
|
57793
|
+
};
|
|
57668
57794
|
export declare type JiraMutationAddJiraVersionApproverArgs = {
|
|
57669
57795
|
input: JiraVersionAddApproverInput;
|
|
57670
57796
|
};
|
|
@@ -57921,6 +58047,10 @@ export declare type JiraMutationRemoveIssuesFromAllFixVersionsArgs = {
|
|
|
57921
58047
|
export declare type JiraMutationRemoveIssuesFromFixVersionArgs = {
|
|
57922
58048
|
input: JiraRemoveIssuesFromFixVersionInput;
|
|
57923
58049
|
};
|
|
58050
|
+
export declare type JiraMutationRemoveJiraJourneyWorkItemAssociatedAutomationRuleArgs = {
|
|
58051
|
+
cloudId: Scalars['ID']['input'];
|
|
58052
|
+
input: JiraUpdateJourneyWorkItemAssociatedAutomationRuleInput;
|
|
58053
|
+
};
|
|
57924
58054
|
export declare type JiraMutationRemovePermissionSchemeGrantsArgs = {
|
|
57925
58055
|
input: JiraPermissionSchemeRemoveGrantInput;
|
|
57926
58056
|
};
|
|
@@ -64803,6 +64933,12 @@ export declare type JiraUpdateJourneyTriggerConfigurationInput = {
|
|
|
64803
64933
|
triggerConfiguration?: InputMaybe<JiraJourneyTriggerConfigurationInput>;
|
|
64804
64934
|
version: Scalars['Long']['input'];
|
|
64805
64935
|
};
|
|
64936
|
+
export declare type JiraUpdateJourneyWorkItemAssociatedAutomationRuleInput = {
|
|
64937
|
+
associatedRuleId: Scalars['ID']['input'];
|
|
64938
|
+
journeyId: Scalars['ID']['input'];
|
|
64939
|
+
journeyItemId: Scalars['ID']['input'];
|
|
64940
|
+
journeyVersion: Scalars['Long']['input'];
|
|
64941
|
+
};
|
|
64806
64942
|
export declare type JiraUpdateLabelsFieldInput = {
|
|
64807
64943
|
id: Scalars['ID']['input'];
|
|
64808
64944
|
operations: Array<JiraLabelsFieldOperationInput>;
|
|
@@ -71453,6 +71589,14 @@ export declare type MercuryProviderOrchestrationMutationApiLinkAtlassianWorkToFo
|
|
|
71453
71589
|
export declare type MercuryProviderOrchestrationMutationApiLinkWorkToFocusAreaArgs = {
|
|
71454
71590
|
input: MercuryLinkWorkToFocusAreaInput;
|
|
71455
71591
|
};
|
|
71592
|
+
export declare type MercuryProviderOrchestrationQueryApi = {
|
|
71593
|
+
__typename?: 'MercuryProviderOrchestrationQueryApi';
|
|
71594
|
+
isWorkspaceConnected: Array<MercuryWorkspaceConnectionStatus>;
|
|
71595
|
+
};
|
|
71596
|
+
export declare type MercuryProviderOrchestrationQueryApiIsWorkspaceConnectedArgs = {
|
|
71597
|
+
cloudId: Scalars['ID']['input'];
|
|
71598
|
+
workspaceAris: Array<Scalars['String']['input']>;
|
|
71599
|
+
};
|
|
71456
71600
|
export declare type MercuryProviderUser = {
|
|
71457
71601
|
id: Scalars['ID']['output'];
|
|
71458
71602
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -71847,6 +71991,11 @@ export declare type MercuryUserEdge = {
|
|
|
71847
71991
|
node?: Maybe<User>;
|
|
71848
71992
|
};
|
|
71849
71993
|
export declare type MercuryWorkResult = MercuryProviderWork | MercuryProviderWorkError;
|
|
71994
|
+
export declare type MercuryWorkspaceConnectionStatus = {
|
|
71995
|
+
__typename?: 'MercuryWorkspaceConnectionStatus';
|
|
71996
|
+
isConnected: Scalars['Boolean']['output'];
|
|
71997
|
+
workspaceAri: Scalars['String']['output'];
|
|
71998
|
+
};
|
|
71850
71999
|
export declare type MercuryWorkspaceContext = {
|
|
71851
72000
|
__typename?: 'MercuryWorkspaceContext';
|
|
71852
72001
|
activationId: Scalars['String']['output'];
|
|
@@ -77213,6 +77362,7 @@ export declare type Query = {
|
|
|
77213
77362
|
externalContentMediaSession?: Maybe<ContentMediaSession>;
|
|
77214
77363
|
external_entities?: Maybe<ExternalEntities>;
|
|
77215
77364
|
external_entitiesV2?: Maybe<ExternalEntities>;
|
|
77365
|
+
external_entitiesV2ForHydration?: Maybe<ExternalEntitiesV2ForHydration>;
|
|
77216
77366
|
favoriteContent?: Maybe<PaginatedContentList>;
|
|
77217
77367
|
featureDiscovery?: Maybe<Array<Maybe<DiscoveredFeature>>>;
|
|
77218
77368
|
feed?: Maybe<PaginatedFeed>;
|
|
@@ -77318,6 +77468,7 @@ export declare type Query = {
|
|
|
77318
77468
|
marketplaceStore: MarketplaceStoreQueryApi;
|
|
77319
77469
|
me: AuthenticationContext;
|
|
77320
77470
|
mercury?: Maybe<MercuryQueryApi>;
|
|
77471
|
+
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
|
|
77321
77472
|
migration: MigrationQuery;
|
|
77322
77473
|
migrationCatalogue: MigrationCatalogueQuery;
|
|
77323
77474
|
migrationMediaSession?: Maybe<ContentMediaSession>;
|
|
@@ -89459,11 +89610,12 @@ export declare type TrelloPlannerCalendarDeleted = {
|
|
|
89459
89610
|
export declare type TrelloPlannerCalendarEdge = {
|
|
89460
89611
|
__typename?: 'TrelloPlannerCalendarEdge';
|
|
89461
89612
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
89613
|
+
deletedCalendar?: Maybe<TrelloPlannerCalendarDeleted>;
|
|
89462
89614
|
node?: Maybe<TrelloPlannerCalendar>;
|
|
89463
89615
|
};
|
|
89464
89616
|
export declare type TrelloPlannerCalendarEdgeUpdated = {
|
|
89465
89617
|
__typename?: 'TrelloPlannerCalendarEdgeUpdated';
|
|
89466
|
-
node:
|
|
89618
|
+
node: TrelloPlannerCalendarUpdated;
|
|
89467
89619
|
};
|
|
89468
89620
|
export declare type TrelloPlannerCalendarEnabledCalendarsFilter = {
|
|
89469
89621
|
updateCursor?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -89584,6 +89736,11 @@ export declare type TrelloPlannerCalendarEventsFilter = {
|
|
|
89584
89736
|
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
89585
89737
|
};
|
|
89586
89738
|
export declare type TrelloPlannerCalendarMutated = TrelloPlannerCalendarAccount | TrelloPlannerCalendarDeleted;
|
|
89739
|
+
export declare type TrelloPlannerCalendarUpdated = {
|
|
89740
|
+
__typename?: 'TrelloPlannerCalendarUpdated';
|
|
89741
|
+
events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
|
|
89742
|
+
id: Scalars['ID']['output'];
|
|
89743
|
+
};
|
|
89587
89744
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
89588
89745
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
89589
89746
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
@@ -89612,11 +89769,6 @@ export declare type TrelloPlannerUpdated = {
|
|
|
89612
89769
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnectionUpdated>;
|
|
89613
89770
|
id: Scalars['ID']['output'];
|
|
89614
89771
|
};
|
|
89615
|
-
export declare type TrelloPlannerUpdatedCalendar = {
|
|
89616
|
-
__typename?: 'TrelloPlannerUpdatedCalendar';
|
|
89617
|
-
events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
|
|
89618
|
-
id: Scalars['ID']['output'];
|
|
89619
|
-
};
|
|
89620
89772
|
export declare type TrelloPowerUp = {
|
|
89621
89773
|
__typename?: 'TrelloPowerUp';
|
|
89622
89774
|
author?: Maybe<Scalars['String']['output']>;
|