@forge/cli-shared 6.8.0-next.25 → 6.8.0-next.26
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 +29 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +1 -0
- package/out/ui/command-line-ui.js +1 -1
- package/out/ui/text.d.ts +70 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +70 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -61232,6 +61232,7 @@ export declare type JiraJqlVersionsUnreleasedArgs = {
|
|
|
61232
61232
|
};
|
|
61233
61233
|
export declare enum JiraJqlViewContext {
|
|
61234
61234
|
JpdRoadmaps = "JPD_ROADMAPS",
|
|
61235
|
+
JsmSummaryPage = "JSM_SUMMARY_PAGE",
|
|
61235
61236
|
JswPlans = "JSW_PLANS",
|
|
61236
61237
|
JswSummaryPage = "JSW_SUMMARY_PAGE",
|
|
61237
61238
|
Jwm = "JWM",
|
|
@@ -63862,6 +63863,7 @@ export declare type JiraProject = Node & {
|
|
|
63862
63863
|
status?: Maybe<JiraProjectStatus>;
|
|
63863
63864
|
suggestedApproversForJiraVersion?: Maybe<JiraVersionSuggestedApproverConnection>;
|
|
63864
63865
|
suggestedDriversForJiraVersion?: Maybe<JiraVersionDriverConnection>;
|
|
63866
|
+
teamsConnected?: Maybe<GraphStoreSimplifiedTeamConnectedToContainerInverseConnection>;
|
|
63865
63867
|
tmpBoardId?: Maybe<Scalars['Long']['output']>;
|
|
63866
63868
|
totalLinkedSecurityContainerCount?: Maybe<Scalars['Int']['output']>;
|
|
63867
63869
|
totalLinkedSecurityVulnerabilityCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -63995,6 +63997,12 @@ export declare type JiraProjectSuggestedApproversForJiraVersionArgs = {
|
|
|
63995
63997
|
export declare type JiraProjectSuggestedDriversForJiraVersionArgs = {
|
|
63996
63998
|
searchText?: InputMaybe<Scalars['String']['input']>;
|
|
63997
63999
|
};
|
|
64000
|
+
export declare type JiraProjectTeamsConnectedArgs = {
|
|
64001
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
64002
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64003
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64004
|
+
sort?: InputMaybe<GraphStoreTeamConnectedToContainerSortInput>;
|
|
64005
|
+
};
|
|
63998
64006
|
export declare type JiraProjectTotalLinkedSecurityVulnerabilityCountArgs = {
|
|
63999
64007
|
filter?: InputMaybe<GraphQueryMetadataProjectAssociatedVulnerabilityInput>;
|
|
64000
64008
|
};
|
|
@@ -75598,6 +75606,11 @@ export declare type MercuryArchiveFocusAreaPayload = Payload & {
|
|
|
75598
75606
|
errors?: Maybe<Array<MutationError>>;
|
|
75599
75607
|
success: Scalars['Boolean']['output'];
|
|
75600
75608
|
};
|
|
75609
|
+
export declare type MercuryArchiveFocusAreaValidationPayload = Payload & {
|
|
75610
|
+
__typename?: 'MercuryArchiveFocusAreaValidationPayload';
|
|
75611
|
+
errors?: Maybe<Array<MutationError>>;
|
|
75612
|
+
success: Scalars['Boolean']['output'];
|
|
75613
|
+
};
|
|
75601
75614
|
export declare type MercuryBudgetAggregation = {
|
|
75602
75615
|
__typename?: 'MercuryBudgetAggregation';
|
|
75603
75616
|
aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
@@ -75856,6 +75869,14 @@ export declare type MercuryDeleteChangeProposalCommentPayload = Payload & {
|
|
|
75856
75869
|
errors?: Maybe<Array<MutationError>>;
|
|
75857
75870
|
success: Scalars['Boolean']['output'];
|
|
75858
75871
|
};
|
|
75872
|
+
export declare type MercuryDeleteChangeProposalInput = {
|
|
75873
|
+
id: Scalars['ID']['input'];
|
|
75874
|
+
};
|
|
75875
|
+
export declare type MercuryDeleteChangeProposalPayload = Payload & {
|
|
75876
|
+
__typename?: 'MercuryDeleteChangeProposalPayload';
|
|
75877
|
+
errors?: Maybe<Array<MutationError>>;
|
|
75878
|
+
success: Scalars['Boolean']['output'];
|
|
75879
|
+
};
|
|
75859
75880
|
export declare type MercuryDeleteChangesInput = {
|
|
75860
75881
|
changeIds: Array<Scalars['ID']['input']>;
|
|
75861
75882
|
};
|
|
@@ -76461,6 +76482,7 @@ export declare type MercuryMutationApi = {
|
|
|
76461
76482
|
updateFocusAreaStatusUpdate?: Maybe<MercuryUpdateFocusAreaStatusUpdatePayload>;
|
|
76462
76483
|
updateFocusAreaTargetDate?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
76463
76484
|
updatePortfolioName?: Maybe<MercuryUpdatePortfolioPayload>;
|
|
76485
|
+
validateFocusAreaArchival?: Maybe<MercuryArchiveFocusAreaValidationPayload>;
|
|
76464
76486
|
};
|
|
76465
76487
|
export declare type MercuryMutationApiAddWatcherToFocusAreaArgs = {
|
|
76466
76488
|
input: MercuryAddWatcherToFocusAreaInput;
|
|
@@ -76555,6 +76577,9 @@ export declare type MercuryMutationApiUpdateFocusAreaTargetDateArgs = {
|
|
|
76555
76577
|
export declare type MercuryMutationApiUpdatePortfolioNameArgs = {
|
|
76556
76578
|
input: MercuryUpdatePortfolioNameInput;
|
|
76557
76579
|
};
|
|
76580
|
+
export declare type MercuryMutationApiValidateFocusAreaArchivalArgs = {
|
|
76581
|
+
input: MercuryArchiveFocusAreaInput;
|
|
76582
|
+
};
|
|
76558
76583
|
export declare type MercuryOriginalProjectStatus = {
|
|
76559
76584
|
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
76560
76585
|
};
|
|
@@ -77116,6 +77141,7 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
77116
77141
|
createChangeProposalComment?: Maybe<MercuryCreateChangeProposalCommentPayload>;
|
|
77117
77142
|
createStrategicEvent?: Maybe<MercuryCreateStrategicEventPayload>;
|
|
77118
77143
|
createStrategicEventComment?: Maybe<MercuryCreateStrategicEventCommentPayload>;
|
|
77144
|
+
deleteChangeProposal?: Maybe<MercuryDeleteChangeProposalPayload>;
|
|
77119
77145
|
deleteChangeProposalComment?: Maybe<MercuryDeleteChangeProposalCommentPayload>;
|
|
77120
77146
|
deleteChanges?: Maybe<MercuryDeleteChangesPayload>;
|
|
77121
77147
|
deleteStrategicEventComment?: Maybe<MercuryDeleteStrategicEventCommentPayload>;
|
|
@@ -77144,6 +77170,9 @@ export declare type MercuryStrategicEventsMutationApiCreateStrategicEventArgs =
|
|
|
77144
77170
|
export declare type MercuryStrategicEventsMutationApiCreateStrategicEventCommentArgs = {
|
|
77145
77171
|
input: MercuryCreateStrategicEventCommentInput;
|
|
77146
77172
|
};
|
|
77173
|
+
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalArgs = {
|
|
77174
|
+
input: MercuryDeleteChangeProposalInput;
|
|
77175
|
+
};
|
|
77147
77176
|
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalCommentArgs = {
|
|
77148
77177
|
input: MercuryDeleteChangeProposalCommentInput;
|
|
77149
77178
|
};
|