@forge/cli-shared 6.8.0-next.12 → 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 +12 -0
- package/out/graphql/graphql-types.d.ts +161 -9
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/shared/test.d.ts +2 -1
- package/out/shared/test.d.ts.map +1 -1
- package/out/shared/test.js +6 -5
- 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
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.8.0-next.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 7a83fd9: Uninstall: Automatically select optional contexts when the required one is selected
|
|
8
|
+
|
|
9
|
+
## 6.8.0-next.13
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- c57e34a: Fix bundling when handlers are defined in subdirectories
|
|
14
|
+
|
|
3
15
|
## 6.8.0-next.12
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -4781,6 +4781,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
4781
4781
|
updateComponent?: Maybe<UpdateCompassComponentPayload>;
|
|
4782
4782
|
updateComponentApi?: Maybe<UpdateComponentApiPayload>;
|
|
4783
4783
|
updateComponentApiUpload?: Maybe<UpdateComponentApiUploadPayload>;
|
|
4784
|
+
updateComponentByReference?: Maybe<UpdateCompassComponentPayload>;
|
|
4784
4785
|
updateComponentDataManagerMetadata?: Maybe<UpdateCompassComponentDataManagerMetadataPayload>;
|
|
4785
4786
|
updateComponentLink?: Maybe<UpdateCompassComponentLinkPayload>;
|
|
4786
4787
|
updateComponentScorecardJiraIssue?: Maybe<CompassUpdateComponentScorecardJiraIssuePayload>;
|
|
@@ -5026,6 +5027,9 @@ export declare type CompassCatalogMutationApiUpdateComponentApiArgs = {
|
|
|
5026
5027
|
export declare type CompassCatalogMutationApiUpdateComponentApiUploadArgs = {
|
|
5027
5028
|
input: UpdateComponentApiUploadInput;
|
|
5028
5029
|
};
|
|
5030
|
+
export declare type CompassCatalogMutationApiUpdateComponentByReferenceArgs = {
|
|
5031
|
+
input: UpdateCompassComponentByReferenceInput;
|
|
5032
|
+
};
|
|
5029
5033
|
export declare type CompassCatalogMutationApiUpdateComponentDataManagerMetadataArgs = {
|
|
5030
5034
|
input: UpdateCompassComponentDataManagerMetadataInput;
|
|
5031
5035
|
};
|
|
@@ -7417,7 +7421,7 @@ export declare enum CompassLifecycleFilterOperator {
|
|
|
7417
7421
|
Nor = "NOR",
|
|
7418
7422
|
Or = "OR"
|
|
7419
7423
|
}
|
|
7420
|
-
export declare type CompassLink = {
|
|
7424
|
+
export declare type CompassLink = Node & {
|
|
7421
7425
|
__typename?: 'CompassLink';
|
|
7422
7426
|
eventSources?: Maybe<Array<EventSource>>;
|
|
7423
7427
|
id: Scalars['ID']['output'];
|
|
@@ -7919,6 +7923,7 @@ export declare type CompassScorecardAppliedToComponentsQuery = {
|
|
|
7919
7923
|
};
|
|
7920
7924
|
export declare type CompassScorecardAppliedToComponentsQueryFilter = {
|
|
7921
7925
|
fields?: InputMaybe<Array<CompassScorecardAppliedToComponentsFieldFilter>>;
|
|
7926
|
+
labels?: InputMaybe<CompassScorecardAppliedToComponentsLabelsFilter>;
|
|
7922
7927
|
owners?: InputMaybe<CompassScorecardAppliedToComponentsOwnerFilter>;
|
|
7923
7928
|
score?: InputMaybe<CompassScorecardAppliedToComponentsThresholdFilter>;
|
|
7924
7929
|
scoreRanges?: InputMaybe<CompassScorecardAppliedToComponentsScoreRangeFilter>;
|
|
@@ -21861,6 +21866,7 @@ export declare type DevAiFlowPipeline = {
|
|
|
21861
21866
|
__typename?: 'DevAiFlowPipeline';
|
|
21862
21867
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
21863
21868
|
id: Scalars['ID']['output'];
|
|
21869
|
+
serverSecret?: Maybe<Scalars['String']['output']>;
|
|
21864
21870
|
sessionARI: Scalars['ID']['output'];
|
|
21865
21871
|
status?: Maybe<DevAiFlowPipelinesStatus>;
|
|
21866
21872
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -21874,10 +21880,13 @@ export declare enum DevAiFlowPipelinesStatus {
|
|
|
21874
21880
|
}
|
|
21875
21881
|
export declare type DevAiFlowSession = {
|
|
21876
21882
|
__typename?: 'DevAiFlowSession';
|
|
21883
|
+
cloudId?: Maybe<Scalars['String']['output']>;
|
|
21877
21884
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
21885
|
+
createdBy?: Maybe<Scalars['String']['output']>;
|
|
21878
21886
|
id: Scalars['ID']['output'];
|
|
21879
21887
|
issueARI?: Maybe<Scalars['ID']['output']>;
|
|
21880
21888
|
pipelines?: Maybe<Array<Maybe<DevAiFlowPipeline>>>;
|
|
21889
|
+
repoUrl?: Maybe<Scalars['String']['output']>;
|
|
21881
21890
|
sessionARI: Scalars['ID']['output'];
|
|
21882
21891
|
status?: Maybe<DevAiFlowSessionsStatus>;
|
|
21883
21892
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -21998,6 +22007,7 @@ export declare type DevAiRovoAgent = {
|
|
|
21998
22007
|
externalConfigReference?: Maybe<Scalars['String']['output']>;
|
|
21999
22008
|
icon?: Maybe<Scalars['String']['output']>;
|
|
22000
22009
|
id: Scalars['ID']['output'];
|
|
22010
|
+
identityAccountId?: Maybe<Scalars['String']['output']>;
|
|
22001
22011
|
name?: Maybe<Scalars['String']['output']>;
|
|
22002
22012
|
rankCategory?: Maybe<DevAiRovoAgentRankCategory>;
|
|
22003
22013
|
similarityScore?: Maybe<Scalars['Float']['output']>;
|
|
@@ -30843,7 +30853,12 @@ export declare type GraphStore = {
|
|
|
30843
30853
|
deploymentContainsCommitInverse?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitInverseConnection>;
|
|
30844
30854
|
entityIsRelatedToEntity?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityConnection>;
|
|
30845
30855
|
entityIsRelatedToEntityInverse?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityInverseConnection>;
|
|
30856
|
+
externalPositionIsFilledByExternalWorker?: Maybe<GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerConnection>;
|
|
30857
|
+
externalPositionIsFilledByExternalWorkerInverse?: Maybe<GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerInverseConnection>;
|
|
30858
|
+
externalPositionManagesExternalPosition?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionConnection>;
|
|
30859
|
+
externalPositionManagesExternalPositionInverse?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionInverseConnection>;
|
|
30846
30860
|
externalWorkerConflatesToIdentity3pUser?: Maybe<GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserConnection>;
|
|
30861
|
+
externalWorkerConflatesToIdentity3pUserInverse?: Maybe<GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserInverseConnection>;
|
|
30847
30862
|
fetchAllRelationships: GraphStoreAllRelationshipsConnection;
|
|
30848
30863
|
focusAreaAssociatedToProject?: Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection>;
|
|
30849
30864
|
focusAreaAssociatedToProjectBatch?: Maybe<GraphStoreBatchFocusAreaAssociatedToProjectConnection>;
|
|
@@ -32059,6 +32074,34 @@ export declare type GraphStoreEntityIsRelatedToEntityInverseArgs = {
|
|
|
32059
32074
|
id: Scalars['ID']['input'];
|
|
32060
32075
|
sort?: InputMaybe<GraphStoreEntityIsRelatedToEntitySortInput>;
|
|
32061
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
|
+
};
|
|
32062
32105
|
export declare type GraphStoreExternalWorkerConflatesToIdentity3pUserArgs = {
|
|
32063
32106
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32064
32107
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32066,6 +32109,13 @@ export declare type GraphStoreExternalWorkerConflatesToIdentity3pUserArgs = {
|
|
|
32066
32109
|
id: Scalars['ID']['input'];
|
|
32067
32110
|
sort?: InputMaybe<GraphStoreExternalWorkerConflatesToIdentity3pUserSortInput>;
|
|
32068
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
|
+
};
|
|
32069
32119
|
export declare type GraphStoreFetchAllRelationshipsArgs = {
|
|
32070
32120
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32071
32121
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -37264,7 +37314,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
37264
37314
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
37265
37315
|
id: Scalars['ID']['output'];
|
|
37266
37316
|
};
|
|
37267
|
-
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;
|
|
37268
37318
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
37269
37319
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
37270
37320
|
value: Scalars['Int']['output'];
|
|
@@ -37299,7 +37349,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
37299
37349
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
37300
37350
|
id: Scalars['ID']['output'];
|
|
37301
37351
|
};
|
|
37302
|
-
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;
|
|
37303
37353
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
37304
37354
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
37305
37355
|
value: Scalars['String']['output'];
|
|
@@ -37309,8 +37359,8 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
37309
37359
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
37310
37360
|
id: Scalars['ID']['output'];
|
|
37311
37361
|
};
|
|
37312
|
-
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;
|
|
37313
|
-
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;
|
|
37314
37364
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
37315
37365
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
37316
37366
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -37654,6 +37704,12 @@ export declare type GraphStoreDeploymentContainsCommitSortInput = {
|
|
|
37654
37704
|
export declare type GraphStoreEntityIsRelatedToEntitySortInput = {
|
|
37655
37705
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37656
37706
|
};
|
|
37707
|
+
export declare type GraphStoreExternalPositionIsFilledByExternalWorkerSortInput = {
|
|
37708
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37709
|
+
};
|
|
37710
|
+
export declare type GraphStoreExternalPositionManagesExternalPositionSortInput = {
|
|
37711
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37712
|
+
};
|
|
37657
37713
|
export declare type GraphStoreExternalWorkerConflatesToIdentity3pUserSortInput = {
|
|
37658
37714
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37659
37715
|
};
|
|
@@ -43417,6 +43473,62 @@ export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseEdge = {
|
|
|
43417
43473
|
};
|
|
43418
43474
|
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
43419
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;
|
|
43420
43532
|
export declare type GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserConnection = HasPageInfo & {
|
|
43421
43533
|
__typename?: 'GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserConnection';
|
|
43422
43534
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserEdge>>>;
|
|
@@ -43430,6 +43542,20 @@ export declare type GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserE
|
|
|
43430
43542
|
lastUpdated: Scalars['DateTime']['output'];
|
|
43431
43543
|
node?: Maybe<GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserUnion>;
|
|
43432
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;
|
|
43433
43559
|
export declare type GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserUnion = ThirdPartyUser;
|
|
43434
43560
|
export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
43435
43561
|
__typename?: 'GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection';
|
|
@@ -50197,6 +50323,7 @@ export declare type GrowthUnifiedProfileUserFootprints = {
|
|
|
50197
50323
|
export declare type GrowthUnifiedProfileUserProfile = {
|
|
50198
50324
|
__typename?: 'GrowthUnifiedProfileUserProfile';
|
|
50199
50325
|
domainType?: Maybe<GrowthUnifiedProfileDomainType>;
|
|
50326
|
+
teamType?: Maybe<Scalars['String']['output']>;
|
|
50200
50327
|
userType?: Maybe<GrowthUnifiedProfileEntryType>;
|
|
50201
50328
|
};
|
|
50202
50329
|
export declare type GrowthUnifiedProfileUtm = {
|
|
@@ -54890,6 +55017,7 @@ export declare type JiraChildIssuesWithinLimit = {
|
|
|
54890
55017
|
issues?: Maybe<JiraIssueConnection>;
|
|
54891
55018
|
};
|
|
54892
55019
|
export declare type JiraChildIssuesWithinLimitIssuesArgs = {
|
|
55020
|
+
activeIssuesOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54893
55021
|
activeProjectsOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54894
55022
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
54895
55023
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -77959,7 +78087,10 @@ export declare type MutationDevai_CreateTechnicalPlannerJobArgs = {
|
|
|
77959
78087
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
77960
78088
|
};
|
|
77961
78089
|
export declare type MutationDevai_FlowSessionCreateArgs = {
|
|
78090
|
+
cloudId: Scalars['String']['input'];
|
|
78091
|
+
createdBy: Scalars['String']['input'];
|
|
77962
78092
|
issueARI?: InputMaybe<Scalars['ID']['input']>;
|
|
78093
|
+
repoUrl: Scalars['URL']['input'];
|
|
77963
78094
|
};
|
|
77964
78095
|
export declare type MutationDevai_InvokeAutodevRovoAgentArgs = {
|
|
77965
78096
|
agentId: Scalars['ID']['input'];
|
|
@@ -81618,8 +81749,10 @@ export declare type Query = {
|
|
|
81618
81749
|
devai_autodevJobsByAri?: Maybe<Array<Maybe<JiraAutodevJob>>>;
|
|
81619
81750
|
devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
|
|
81620
81751
|
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
81621
|
-
|
|
81622
|
-
|
|
81752
|
+
devai_flowSessionGetByARI?: Maybe<DevAiFlowSession>;
|
|
81753
|
+
devai_flowSessionGetByIDAndCloudID?: Maybe<DevAiFlowSession>;
|
|
81754
|
+
devai_flowSessionResume?: Maybe<DevAiFlowPipeline>;
|
|
81755
|
+
devai_flowSessionsByCreatorAndCloudId?: Maybe<Array<Maybe<DevAiFlowSession>>>;
|
|
81623
81756
|
devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
|
|
81624
81757
|
devai_technicalPlannerJobById?: Maybe<DevAiTechnicalPlannerJob>;
|
|
81625
81758
|
devai_technicalPlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
|
|
@@ -83606,12 +83739,20 @@ export declare type QueryDevai_AutodevRovoAgentsArgs = {
|
|
|
83606
83739
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
83607
83740
|
templatesFilter?: InputMaybe<DevAiRovoAgentTemplateFilter>;
|
|
83608
83741
|
};
|
|
83609
|
-
export declare type
|
|
83742
|
+
export declare type QueryDevai_FlowSessionGetByAriArgs = {
|
|
83610
83743
|
id: Scalars['ID']['input'];
|
|
83611
83744
|
};
|
|
83612
|
-
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 = {
|
|
83613
83750
|
id: Scalars['ID']['input'];
|
|
83614
83751
|
};
|
|
83752
|
+
export declare type QueryDevai_FlowSessionsByCreatorAndCloudIdArgs = {
|
|
83753
|
+
cloudId: Scalars['ID']['input'];
|
|
83754
|
+
creator: Scalars['String']['input'];
|
|
83755
|
+
};
|
|
83615
83756
|
export declare type QueryDevai_RovoDevAgentsUserArgs = {
|
|
83616
83757
|
atlassianAccountId: Scalars['ID']['input'];
|
|
83617
83758
|
cloudId: Scalars['ID']['input'];
|
|
@@ -96001,6 +96142,17 @@ export declare type UpdateCommentInput = {
|
|
|
96001
96142
|
commentId: Scalars['ID']['input'];
|
|
96002
96143
|
version?: InputMaybe<Scalars['Int']['input']>;
|
|
96003
96144
|
};
|
|
96145
|
+
export declare type UpdateCompassComponentByReferenceInput = {
|
|
96146
|
+
componentDescriptionDetails?: InputMaybe<CompassComponentDescriptionDetailsInput>;
|
|
96147
|
+
customFields?: InputMaybe<Array<CompassCustomFieldInput>>;
|
|
96148
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
96149
|
+
fields?: InputMaybe<Array<UpdateCompassFieldInput>>;
|
|
96150
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
96151
|
+
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
96152
|
+
reference: ComponentReferenceInput;
|
|
96153
|
+
slug?: InputMaybe<Scalars['String']['input']>;
|
|
96154
|
+
state?: InputMaybe<Scalars['String']['input']>;
|
|
96155
|
+
};
|
|
96004
96156
|
export declare type UpdateCompassComponentDataManagerMetadataInput = {
|
|
96005
96157
|
componentId: Scalars['ID']['input'];
|
|
96006
96158
|
externalSourceURL?: InputMaybe<Scalars['URL']['input']>;
|