@forge/cli-shared 6.8.0-next.13 → 6.8.0-next.14
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 +144 -9
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/ui/multiple-table-prompt.d.ts.map +1 -1
- package/out/ui/multiple-table-prompt.js +9 -0
- package/out/ui/text.d.ts +1 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7421,7 +7421,7 @@ export declare enum CompassLifecycleFilterOperator {
|
|
|
7421
7421
|
Nor = "NOR",
|
|
7422
7422
|
Or = "OR"
|
|
7423
7423
|
}
|
|
7424
|
-
export declare type CompassLink = {
|
|
7424
|
+
export declare type CompassLink = Node & {
|
|
7425
7425
|
__typename?: 'CompassLink';
|
|
7426
7426
|
eventSources?: Maybe<Array<EventSource>>;
|
|
7427
7427
|
id: Scalars['ID']['output'];
|
|
@@ -21866,6 +21866,7 @@ export declare type DevAiFlowPipeline = {
|
|
|
21866
21866
|
__typename?: 'DevAiFlowPipeline';
|
|
21867
21867
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
21868
21868
|
id: Scalars['ID']['output'];
|
|
21869
|
+
serverSecret?: Maybe<Scalars['String']['output']>;
|
|
21869
21870
|
sessionARI: Scalars['ID']['output'];
|
|
21870
21871
|
status?: Maybe<DevAiFlowPipelinesStatus>;
|
|
21871
21872
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -21879,10 +21880,13 @@ export declare enum DevAiFlowPipelinesStatus {
|
|
|
21879
21880
|
}
|
|
21880
21881
|
export declare type DevAiFlowSession = {
|
|
21881
21882
|
__typename?: 'DevAiFlowSession';
|
|
21883
|
+
cloudId?: Maybe<Scalars['String']['output']>;
|
|
21882
21884
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
21885
|
+
createdBy?: Maybe<Scalars['String']['output']>;
|
|
21883
21886
|
id: Scalars['ID']['output'];
|
|
21884
21887
|
issueARI?: Maybe<Scalars['ID']['output']>;
|
|
21885
21888
|
pipelines?: Maybe<Array<Maybe<DevAiFlowPipeline>>>;
|
|
21889
|
+
repoUrl?: Maybe<Scalars['String']['output']>;
|
|
21886
21890
|
sessionARI: Scalars['ID']['output'];
|
|
21887
21891
|
status?: Maybe<DevAiFlowSessionsStatus>;
|
|
21888
21892
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -22003,6 +22007,7 @@ export declare type DevAiRovoAgent = {
|
|
|
22003
22007
|
externalConfigReference?: Maybe<Scalars['String']['output']>;
|
|
22004
22008
|
icon?: Maybe<Scalars['String']['output']>;
|
|
22005
22009
|
id: Scalars['ID']['output'];
|
|
22010
|
+
identityAccountId?: Maybe<Scalars['String']['output']>;
|
|
22006
22011
|
name?: Maybe<Scalars['String']['output']>;
|
|
22007
22012
|
rankCategory?: Maybe<DevAiRovoAgentRankCategory>;
|
|
22008
22013
|
similarityScore?: Maybe<Scalars['Float']['output']>;
|
|
@@ -30848,7 +30853,12 @@ export declare type GraphStore = {
|
|
|
30848
30853
|
deploymentContainsCommitInverse?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitInverseConnection>;
|
|
30849
30854
|
entityIsRelatedToEntity?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityConnection>;
|
|
30850
30855
|
entityIsRelatedToEntityInverse?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityInverseConnection>;
|
|
30856
|
+
externalPositionIsFilledByExternalWorker?: Maybe<GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerConnection>;
|
|
30857
|
+
externalPositionIsFilledByExternalWorkerInverse?: Maybe<GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerInverseConnection>;
|
|
30858
|
+
externalPositionManagesExternalPosition?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionConnection>;
|
|
30859
|
+
externalPositionManagesExternalPositionInverse?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionInverseConnection>;
|
|
30851
30860
|
externalWorkerConflatesToIdentity3pUser?: Maybe<GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserConnection>;
|
|
30861
|
+
externalWorkerConflatesToIdentity3pUserInverse?: Maybe<GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserInverseConnection>;
|
|
30852
30862
|
fetchAllRelationships: GraphStoreAllRelationshipsConnection;
|
|
30853
30863
|
focusAreaAssociatedToProject?: Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection>;
|
|
30854
30864
|
focusAreaAssociatedToProjectBatch?: Maybe<GraphStoreBatchFocusAreaAssociatedToProjectConnection>;
|
|
@@ -32064,6 +32074,34 @@ export declare type GraphStoreEntityIsRelatedToEntityInverseArgs = {
|
|
|
32064
32074
|
id: Scalars['ID']['input'];
|
|
32065
32075
|
sort?: InputMaybe<GraphStoreEntityIsRelatedToEntitySortInput>;
|
|
32066
32076
|
};
|
|
32077
|
+
export declare type GraphStoreExternalPositionIsFilledByExternalWorkerArgs = {
|
|
32078
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32079
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32080
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32081
|
+
id: Scalars['ID']['input'];
|
|
32082
|
+
sort?: InputMaybe<GraphStoreExternalPositionIsFilledByExternalWorkerSortInput>;
|
|
32083
|
+
};
|
|
32084
|
+
export declare type GraphStoreExternalPositionIsFilledByExternalWorkerInverseArgs = {
|
|
32085
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32086
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32087
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32088
|
+
id: Scalars['ID']['input'];
|
|
32089
|
+
sort?: InputMaybe<GraphStoreExternalPositionIsFilledByExternalWorkerSortInput>;
|
|
32090
|
+
};
|
|
32091
|
+
export declare type GraphStoreExternalPositionManagesExternalPositionArgs = {
|
|
32092
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32093
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32094
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32095
|
+
id: Scalars['ID']['input'];
|
|
32096
|
+
sort?: InputMaybe<GraphStoreExternalPositionManagesExternalPositionSortInput>;
|
|
32097
|
+
};
|
|
32098
|
+
export declare type GraphStoreExternalPositionManagesExternalPositionInverseArgs = {
|
|
32099
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32100
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32101
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32102
|
+
id: Scalars['ID']['input'];
|
|
32103
|
+
sort?: InputMaybe<GraphStoreExternalPositionManagesExternalPositionSortInput>;
|
|
32104
|
+
};
|
|
32067
32105
|
export declare type GraphStoreExternalWorkerConflatesToIdentity3pUserArgs = {
|
|
32068
32106
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32069
32107
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32071,6 +32109,13 @@ export declare type GraphStoreExternalWorkerConflatesToIdentity3pUserArgs = {
|
|
|
32071
32109
|
id: Scalars['ID']['input'];
|
|
32072
32110
|
sort?: InputMaybe<GraphStoreExternalWorkerConflatesToIdentity3pUserSortInput>;
|
|
32073
32111
|
};
|
|
32112
|
+
export declare type GraphStoreExternalWorkerConflatesToIdentity3pUserInverseArgs = {
|
|
32113
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32114
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32115
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32116
|
+
id: Scalars['ID']['input'];
|
|
32117
|
+
sort?: InputMaybe<GraphStoreExternalWorkerConflatesToIdentity3pUserSortInput>;
|
|
32118
|
+
};
|
|
32074
32119
|
export declare type GraphStoreFetchAllRelationshipsArgs = {
|
|
32075
32120
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32076
32121
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -37269,7 +37314,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
37269
37314
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
37270
37315
|
id: Scalars['ID']['output'];
|
|
37271
37316
|
};
|
|
37272
|
-
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 | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37317
|
+
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 | 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 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37273
37318
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
37274
37319
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
37275
37320
|
value: Scalars['Int']['output'];
|
|
@@ -37304,7 +37349,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
37304
37349
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
37305
37350
|
id: Scalars['ID']['output'];
|
|
37306
37351
|
};
|
|
37307
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = 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 | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37352
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = 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 | 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 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37308
37353
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
37309
37354
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
37310
37355
|
value: Scalars['String']['output'];
|
|
@@ -37314,8 +37359,8 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
37314
37359
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
37315
37360
|
id: Scalars['ID']['output'];
|
|
37316
37361
|
};
|
|
37317
|
-
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 | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37318
|
-
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 | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37362
|
+
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 | 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 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37363
|
+
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 | 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 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37319
37364
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
37320
37365
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
37321
37366
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -37659,6 +37704,12 @@ export declare type GraphStoreDeploymentContainsCommitSortInput = {
|
|
|
37659
37704
|
export declare type GraphStoreEntityIsRelatedToEntitySortInput = {
|
|
37660
37705
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37661
37706
|
};
|
|
37707
|
+
export declare type GraphStoreExternalPositionIsFilledByExternalWorkerSortInput = {
|
|
37708
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37709
|
+
};
|
|
37710
|
+
export declare type GraphStoreExternalPositionManagesExternalPositionSortInput = {
|
|
37711
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37712
|
+
};
|
|
37662
37713
|
export declare type GraphStoreExternalWorkerConflatesToIdentity3pUserSortInput = {
|
|
37663
37714
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37664
37715
|
};
|
|
@@ -43422,6 +43473,62 @@ export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseEdge = {
|
|
|
43422
43473
|
};
|
|
43423
43474
|
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
43424
43475
|
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityUnion = ConfluenceBlogPost | ConfluencePage;
|
|
43476
|
+
export declare type GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerConnection = HasPageInfo & {
|
|
43477
|
+
__typename?: 'GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerConnection';
|
|
43478
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerEdge>>>;
|
|
43479
|
+
pageInfo: PageInfo;
|
|
43480
|
+
};
|
|
43481
|
+
export declare type GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerEdge = {
|
|
43482
|
+
__typename?: 'GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerEdge';
|
|
43483
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43484
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43485
|
+
id: Scalars['ID']['output'];
|
|
43486
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43487
|
+
node?: Maybe<GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerUnion>;
|
|
43488
|
+
};
|
|
43489
|
+
export declare type GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerInverseConnection = HasPageInfo & {
|
|
43490
|
+
__typename?: 'GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerInverseConnection';
|
|
43491
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerInverseEdge>>>;
|
|
43492
|
+
pageInfo: PageInfo;
|
|
43493
|
+
};
|
|
43494
|
+
export declare type GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerInverseEdge = {
|
|
43495
|
+
__typename?: 'GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerInverseEdge';
|
|
43496
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43497
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43498
|
+
id: Scalars['ID']['output'];
|
|
43499
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43500
|
+
node?: Maybe<GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerInverseUnion>;
|
|
43501
|
+
};
|
|
43502
|
+
export declare type GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerInverseUnion = ExternalPosition;
|
|
43503
|
+
export declare type GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerUnion = ExternalWorker;
|
|
43504
|
+
export declare type GraphStoreSimplifiedExternalPositionManagesExternalPositionConnection = HasPageInfo & {
|
|
43505
|
+
__typename?: 'GraphStoreSimplifiedExternalPositionManagesExternalPositionConnection';
|
|
43506
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionEdge>>>;
|
|
43507
|
+
pageInfo: PageInfo;
|
|
43508
|
+
};
|
|
43509
|
+
export declare type GraphStoreSimplifiedExternalPositionManagesExternalPositionEdge = {
|
|
43510
|
+
__typename?: 'GraphStoreSimplifiedExternalPositionManagesExternalPositionEdge';
|
|
43511
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43512
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43513
|
+
id: Scalars['ID']['output'];
|
|
43514
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43515
|
+
node?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionUnion>;
|
|
43516
|
+
};
|
|
43517
|
+
export declare type GraphStoreSimplifiedExternalPositionManagesExternalPositionInverseConnection = HasPageInfo & {
|
|
43518
|
+
__typename?: 'GraphStoreSimplifiedExternalPositionManagesExternalPositionInverseConnection';
|
|
43519
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionInverseEdge>>>;
|
|
43520
|
+
pageInfo: PageInfo;
|
|
43521
|
+
};
|
|
43522
|
+
export declare type GraphStoreSimplifiedExternalPositionManagesExternalPositionInverseEdge = {
|
|
43523
|
+
__typename?: 'GraphStoreSimplifiedExternalPositionManagesExternalPositionInverseEdge';
|
|
43524
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43525
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43526
|
+
id: Scalars['ID']['output'];
|
|
43527
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43528
|
+
node?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionInverseUnion>;
|
|
43529
|
+
};
|
|
43530
|
+
export declare type GraphStoreSimplifiedExternalPositionManagesExternalPositionInverseUnion = ExternalPosition;
|
|
43531
|
+
export declare type GraphStoreSimplifiedExternalPositionManagesExternalPositionUnion = ExternalPosition;
|
|
43425
43532
|
export declare type GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserConnection = HasPageInfo & {
|
|
43426
43533
|
__typename?: 'GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserConnection';
|
|
43427
43534
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserEdge>>>;
|
|
@@ -43435,6 +43542,20 @@ export declare type GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserE
|
|
|
43435
43542
|
lastUpdated: Scalars['DateTime']['output'];
|
|
43436
43543
|
node?: Maybe<GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserUnion>;
|
|
43437
43544
|
};
|
|
43545
|
+
export declare type GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserInverseConnection = HasPageInfo & {
|
|
43546
|
+
__typename?: 'GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserInverseConnection';
|
|
43547
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserInverseEdge>>>;
|
|
43548
|
+
pageInfo: PageInfo;
|
|
43549
|
+
};
|
|
43550
|
+
export declare type GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserInverseEdge = {
|
|
43551
|
+
__typename?: 'GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserInverseEdge';
|
|
43552
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43553
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43554
|
+
id: Scalars['ID']['output'];
|
|
43555
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43556
|
+
node?: Maybe<GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserInverseUnion>;
|
|
43557
|
+
};
|
|
43558
|
+
export declare type GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserInverseUnion = ExternalWorker;
|
|
43438
43559
|
export declare type GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserUnion = ThirdPartyUser;
|
|
43439
43560
|
export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
43440
43561
|
__typename?: 'GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection';
|
|
@@ -54896,6 +55017,7 @@ export declare type JiraChildIssuesWithinLimit = {
|
|
|
54896
55017
|
issues?: Maybe<JiraIssueConnection>;
|
|
54897
55018
|
};
|
|
54898
55019
|
export declare type JiraChildIssuesWithinLimitIssuesArgs = {
|
|
55020
|
+
activeIssuesOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54899
55021
|
activeProjectsOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54900
55022
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
54901
55023
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -77965,7 +78087,10 @@ export declare type MutationDevai_CreateTechnicalPlannerJobArgs = {
|
|
|
77965
78087
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
77966
78088
|
};
|
|
77967
78089
|
export declare type MutationDevai_FlowSessionCreateArgs = {
|
|
78090
|
+
cloudId: Scalars['String']['input'];
|
|
78091
|
+
createdBy: Scalars['String']['input'];
|
|
77968
78092
|
issueARI?: InputMaybe<Scalars['ID']['input']>;
|
|
78093
|
+
repoUrl: Scalars['URL']['input'];
|
|
77969
78094
|
};
|
|
77970
78095
|
export declare type MutationDevai_InvokeAutodevRovoAgentArgs = {
|
|
77971
78096
|
agentId: Scalars['ID']['input'];
|
|
@@ -81624,8 +81749,10 @@ export declare type Query = {
|
|
|
81624
81749
|
devai_autodevJobsByAri?: Maybe<Array<Maybe<JiraAutodevJob>>>;
|
|
81625
81750
|
devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
|
|
81626
81751
|
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
81627
|
-
|
|
81628
|
-
|
|
81752
|
+
devai_flowSessionGetByARI?: Maybe<DevAiFlowSession>;
|
|
81753
|
+
devai_flowSessionGetByIDAndCloudID?: Maybe<DevAiFlowSession>;
|
|
81754
|
+
devai_flowSessionResume?: Maybe<DevAiFlowPipeline>;
|
|
81755
|
+
devai_flowSessionsByCreatorAndCloudId?: Maybe<Array<Maybe<DevAiFlowSession>>>;
|
|
81629
81756
|
devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
|
|
81630
81757
|
devai_technicalPlannerJobById?: Maybe<DevAiTechnicalPlannerJob>;
|
|
81631
81758
|
devai_technicalPlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
|
|
@@ -83612,12 +83739,20 @@ export declare type QueryDevai_AutodevRovoAgentsArgs = {
|
|
|
83612
83739
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
83613
83740
|
templatesFilter?: InputMaybe<DevAiRovoAgentTemplateFilter>;
|
|
83614
83741
|
};
|
|
83615
|
-
export declare type
|
|
83742
|
+
export declare type QueryDevai_FlowSessionGetByAriArgs = {
|
|
83616
83743
|
id: Scalars['ID']['input'];
|
|
83617
83744
|
};
|
|
83618
|
-
export declare type
|
|
83745
|
+
export declare type QueryDevai_FlowSessionGetByIdAndCloudIdArgs = {
|
|
83746
|
+
cloudId: Scalars['ID']['input'];
|
|
83747
|
+
sessionId: Scalars['ID']['input'];
|
|
83748
|
+
};
|
|
83749
|
+
export declare type QueryDevai_FlowSessionResumeArgs = {
|
|
83619
83750
|
id: Scalars['ID']['input'];
|
|
83620
83751
|
};
|
|
83752
|
+
export declare type QueryDevai_FlowSessionsByCreatorAndCloudIdArgs = {
|
|
83753
|
+
cloudId: Scalars['ID']['input'];
|
|
83754
|
+
creator: Scalars['String']['input'];
|
|
83755
|
+
};
|
|
83621
83756
|
export declare type QueryDevai_RovoDevAgentsUserArgs = {
|
|
83622
83757
|
atlassianAccountId: Scalars['ID']['input'];
|
|
83623
83758
|
cloudId: Scalars['ID']['input'];
|