@forge/cli-shared 6.8.0-next.24-experimental-99739ec → 6.8.0-next.25-experimental-1aaebb0

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # @forge/cli-shared
2
2
 
3
- ## 6.8.0-next.24-experimental-99739ec
3
+ ## 6.8.0-next.25-experimental-1aaebb0
4
4
 
5
5
  ### Minor Changes
6
6
 
@@ -28,6 +28,7 @@
28
28
  - a7db2e6: improve error message
29
29
  - Updated dependencies [7243788]
30
30
  - Updated dependencies [acf1edf]
31
+ - Updated dependencies [2d5a0e6]
31
32
  - Updated dependencies [9d231e9]
32
33
  - Updated dependencies [b51be39]
33
34
  - Updated dependencies [4b083be]
@@ -41,8 +42,16 @@
41
42
  - Updated dependencies [99739ec]
42
43
  - Updated dependencies [3a703de]
43
44
  - Updated dependencies [003b1ed]
44
- - @forge/manifest@8.9.0-next.12-experimental-99739ec
45
- - @forge/i18n@0.0.5-next.1-experimental-99739ec
45
+ - @forge/manifest@9.0.0-next.13-experimental-1aaebb0
46
+ - @forge/i18n@0.0.5-next.1-experimental-1aaebb0
47
+
48
+ ## 6.8.0-next.25
49
+
50
+ ### Patch Changes
51
+
52
+ - Updated dependencies [2d5a0e6]
53
+ - Updated dependencies [99739ec]
54
+ - @forge/manifest@9.0.0-next.13
46
55
 
47
56
  ## 6.8.0-next.24
48
57
 
@@ -60572,6 +60572,7 @@ export declare type JiraJourneyParentIssueValueType = JiraServiceManagementReque
60572
60572
  export declare type JiraJourneySettings = {
60573
60573
  __typename?: 'JiraJourneySettings';
60574
60574
  maxJourneyItems?: Maybe<Scalars['Long']['output']>;
60575
+ maxJourneysPerProject?: Maybe<Scalars['Long']['output']>;
60575
60576
  };
60576
60577
  export declare enum JiraJourneyStatus {
60577
60578
  Archived = "ARCHIVED",
@@ -61231,6 +61232,7 @@ export declare type JiraJqlVersionsUnreleasedArgs = {
61231
61232
  };
61232
61233
  export declare enum JiraJqlViewContext {
61233
61234
  JpdRoadmaps = "JPD_ROADMAPS",
61235
+ JsmSummaryPage = "JSM_SUMMARY_PAGE",
61234
61236
  JswPlans = "JSW_PLANS",
61235
61237
  JswSummaryPage = "JSW_SUMMARY_PAGE",
61236
61238
  Jwm = "JWM",
@@ -63861,6 +63863,7 @@ export declare type JiraProject = Node & {
63861
63863
  status?: Maybe<JiraProjectStatus>;
63862
63864
  suggestedApproversForJiraVersion?: Maybe<JiraVersionSuggestedApproverConnection>;
63863
63865
  suggestedDriversForJiraVersion?: Maybe<JiraVersionDriverConnection>;
63866
+ teamsConnected?: Maybe<GraphStoreSimplifiedTeamConnectedToContainerInverseConnection>;
63864
63867
  tmpBoardId?: Maybe<Scalars['Long']['output']>;
63865
63868
  totalLinkedSecurityContainerCount?: Maybe<Scalars['Int']['output']>;
63866
63869
  totalLinkedSecurityVulnerabilityCount?: Maybe<Scalars['Int']['output']>;
@@ -63994,6 +63997,12 @@ export declare type JiraProjectSuggestedApproversForJiraVersionArgs = {
63994
63997
  export declare type JiraProjectSuggestedDriversForJiraVersionArgs = {
63995
63998
  searchText?: InputMaybe<Scalars['String']['input']>;
63996
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
+ };
63997
64006
  export declare type JiraProjectTotalLinkedSecurityVulnerabilityCountArgs = {
63998
64007
  filter?: InputMaybe<GraphQueryMetadataProjectAssociatedVulnerabilityInput>;
63999
64008
  };
@@ -75597,6 +75606,11 @@ export declare type MercuryArchiveFocusAreaPayload = Payload & {
75597
75606
  errors?: Maybe<Array<MutationError>>;
75598
75607
  success: Scalars['Boolean']['output'];
75599
75608
  };
75609
+ export declare type MercuryArchiveFocusAreaValidationPayload = Payload & {
75610
+ __typename?: 'MercuryArchiveFocusAreaValidationPayload';
75611
+ errors?: Maybe<Array<MutationError>>;
75612
+ success: Scalars['Boolean']['output'];
75613
+ };
75600
75614
  export declare type MercuryBudgetAggregation = {
75601
75615
  __typename?: 'MercuryBudgetAggregation';
75602
75616
  aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
@@ -75855,6 +75869,14 @@ export declare type MercuryDeleteChangeProposalCommentPayload = Payload & {
75855
75869
  errors?: Maybe<Array<MutationError>>;
75856
75870
  success: Scalars['Boolean']['output'];
75857
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
+ };
75858
75880
  export declare type MercuryDeleteChangesInput = {
75859
75881
  changeIds: Array<Scalars['ID']['input']>;
75860
75882
  };
@@ -76460,6 +76482,7 @@ export declare type MercuryMutationApi = {
76460
76482
  updateFocusAreaStatusUpdate?: Maybe<MercuryUpdateFocusAreaStatusUpdatePayload>;
76461
76483
  updateFocusAreaTargetDate?: Maybe<MercuryUpdateFocusAreaPayload>;
76462
76484
  updatePortfolioName?: Maybe<MercuryUpdatePortfolioPayload>;
76485
+ validateFocusAreaArchival?: Maybe<MercuryArchiveFocusAreaValidationPayload>;
76463
76486
  };
76464
76487
  export declare type MercuryMutationApiAddWatcherToFocusAreaArgs = {
76465
76488
  input: MercuryAddWatcherToFocusAreaInput;
@@ -76554,6 +76577,9 @@ export declare type MercuryMutationApiUpdateFocusAreaTargetDateArgs = {
76554
76577
  export declare type MercuryMutationApiUpdatePortfolioNameArgs = {
76555
76578
  input: MercuryUpdatePortfolioNameInput;
76556
76579
  };
76580
+ export declare type MercuryMutationApiValidateFocusAreaArchivalArgs = {
76581
+ input: MercuryArchiveFocusAreaInput;
76582
+ };
76557
76583
  export declare type MercuryOriginalProjectStatus = {
76558
76584
  mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
76559
76585
  };
@@ -77115,6 +77141,7 @@ export declare type MercuryStrategicEventsMutationApi = {
77115
77141
  createChangeProposalComment?: Maybe<MercuryCreateChangeProposalCommentPayload>;
77116
77142
  createStrategicEvent?: Maybe<MercuryCreateStrategicEventPayload>;
77117
77143
  createStrategicEventComment?: Maybe<MercuryCreateStrategicEventCommentPayload>;
77144
+ deleteChangeProposal?: Maybe<MercuryDeleteChangeProposalPayload>;
77118
77145
  deleteChangeProposalComment?: Maybe<MercuryDeleteChangeProposalCommentPayload>;
77119
77146
  deleteChanges?: Maybe<MercuryDeleteChangesPayload>;
77120
77147
  deleteStrategicEventComment?: Maybe<MercuryDeleteStrategicEventCommentPayload>;
@@ -77143,6 +77170,9 @@ export declare type MercuryStrategicEventsMutationApiCreateStrategicEventArgs =
77143
77170
  export declare type MercuryStrategicEventsMutationApiCreateStrategicEventCommentArgs = {
77144
77171
  input: MercuryCreateStrategicEventCommentInput;
77145
77172
  };
77173
+ export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalArgs = {
77174
+ input: MercuryDeleteChangeProposalInput;
77175
+ };
77146
77176
  export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalCommentArgs = {
77147
77177
  input: MercuryDeleteChangeProposalCommentInput;
77148
77178
  };