@forge/cli-shared 8.8.0-next.9-experimental-75d036a → 8.8.0

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
- ## 8.8.0-next.9-experimental-75d036a
3
+ ## 8.8.0
4
4
 
5
5
  ### Minor Changes
6
6
 
@@ -20,7 +20,7 @@
20
20
  - Updated dependencies [4afc4fb]
21
21
  - Updated dependencies [873a240]
22
22
  - Updated dependencies [f5d3945]
23
- - @forge/manifest@10.7.0-next.5-experimental-75d036a
23
+ - @forge/manifest@10.7.0
24
24
 
25
25
  ## 8.8.0-next.9
26
26
 
@@ -63869,15 +63869,27 @@ export declare type JiraBoardViewCategoryColumn = JiraBoardViewColumn & Node & {
63869
63869
  };
63870
63870
  export declare type JiraBoardViewCell = Node & {
63871
63871
  __typename?: 'JiraBoardViewCell';
63872
+ canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
63872
63873
  column?: Maybe<JiraBoardViewColumn>;
63873
63874
  id: Scalars['ID']['output'];
63875
+ issuePositions?: Maybe<Array<JiraBoardViewCellIssuePosition>>;
63874
63876
  issues?: Maybe<JiraIssueConnection>;
63877
+ workflows?: Maybe<JiraBoardViewWorkflowConnection>;
63878
+ };
63879
+ export declare type JiraBoardViewCellIssuePositionsArgs = {
63880
+ issueIds: Array<Scalars['ID']['input']>;
63881
+ settings?: InputMaybe<JiraBoardViewSettings>;
63875
63882
  };
63876
63883
  export declare type JiraBoardViewCellIssuesArgs = {
63877
63884
  after?: InputMaybe<Scalars['String']['input']>;
63878
63885
  before?: InputMaybe<Scalars['String']['input']>;
63879
63886
  first?: InputMaybe<Scalars['Int']['input']>;
63880
63887
  last?: InputMaybe<Scalars['Int']['input']>;
63888
+ settings?: InputMaybe<JiraBoardViewSettings>;
63889
+ };
63890
+ export declare type JiraBoardViewCellWorkflowsArgs = {
63891
+ after?: InputMaybe<Scalars['String']['input']>;
63892
+ first?: InputMaybe<Scalars['Int']['input']>;
63881
63893
  };
63882
63894
  export declare type JiraBoardViewCellConnection = {
63883
63895
  __typename?: 'JiraBoardViewCellConnection';
@@ -63890,6 +63902,11 @@ export declare type JiraBoardViewCellEdge = {
63890
63902
  cursor?: Maybe<Scalars['String']['output']>;
63891
63903
  node?: Maybe<JiraBoardViewCell>;
63892
63904
  };
63905
+ export declare type JiraBoardViewCellIssuePosition = {
63906
+ __typename?: 'JiraBoardViewCellIssuePosition';
63907
+ issue?: Maybe<JiraIssue>;
63908
+ previousIssue?: Maybe<JiraIssue>;
63909
+ };
63893
63910
  export declare type JiraBoardViewColumn = {
63894
63911
  canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
63895
63912
  collapsed?: Maybe<Scalars['Boolean']['output']>;
@@ -63994,6 +64011,30 @@ export declare type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOpt
63994
64011
  name?: Maybe<Scalars['String']['output']>;
63995
64012
  type?: Maybe<JiraSyntheticFieldCardOptionType>;
63996
64013
  };
64014
+ export declare type JiraBoardViewWorkflow = {
64015
+ __typename?: 'JiraBoardViewWorkflow';
64016
+ eligibleTransitions?: Maybe<JiraTransitionConnection>;
64017
+ issueTypes?: Maybe<JiraIssueTypeConnection>;
64018
+ };
64019
+ export declare type JiraBoardViewWorkflowEligibleTransitionsArgs = {
64020
+ after?: InputMaybe<Scalars['String']['input']>;
64021
+ first?: InputMaybe<Scalars['Int']['input']>;
64022
+ };
64023
+ export declare type JiraBoardViewWorkflowIssueTypesArgs = {
64024
+ after?: InputMaybe<Scalars['String']['input']>;
64025
+ first?: InputMaybe<Scalars['Int']['input']>;
64026
+ };
64027
+ export declare type JiraBoardViewWorkflowConnection = {
64028
+ __typename?: 'JiraBoardViewWorkflowConnection';
64029
+ edges?: Maybe<Array<Maybe<JiraBoardViewWorkflowEdge>>>;
64030
+ errors?: Maybe<Array<QueryError>>;
64031
+ pageInfo?: Maybe<PageInfo>;
64032
+ };
64033
+ export declare type JiraBoardViewWorkflowEdge = {
64034
+ __typename?: 'JiraBoardViewWorkflowEdge';
64035
+ cursor?: Maybe<Scalars['String']['output']>;
64036
+ node?: Maybe<JiraBoardViewWorkflow>;
64037
+ };
63997
64038
  export declare type JiraBooleanField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
63998
64039
  __typename?: 'JiraBooleanField';
63999
64040
  aliasFieldId?: Maybe<Scalars['ID']['output']>;
@@ -79629,6 +79670,15 @@ export declare type JiraSetIsFavouritePayload = Payload & {
79629
79670
  favouriteValue?: Maybe<JiraFavouriteValue>;
79630
79671
  success: Scalars['Boolean']['output'];
79631
79672
  };
79673
+ export declare type JiraSetIssueSearchAggregationConfigInput = {
79674
+ aggregationFields?: InputMaybe<Array<JiraIssueSearchFieldAggregationInput>>;
79675
+ viewId: Scalars['ID']['input'];
79676
+ };
79677
+ export declare type JiraSetIssueSearchAggregationConfigPayload = Payload & {
79678
+ __typename?: 'JiraSetIssueSearchAggregationConfigPayload';
79679
+ errors?: Maybe<Array<MutationError>>;
79680
+ success: Scalars['Boolean']['output'];
79681
+ };
79632
79682
  export declare type JiraSetIssueSearchFieldSetsInput = {
79633
79683
  fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSets>;
79634
79684
  viewId: Scalars['ID']['input'];
@@ -92296,6 +92346,7 @@ export declare type Mutation = {
92296
92346
  jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
92297
92347
  jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
92298
92348
  jira_setFieldSetsPreferences?: Maybe<JiraSetFieldSetsPreferencesPayload>;
92349
+ jira_setIssueSearchAggregationConfig?: Maybe<JiraSetIssueSearchAggregationConfigPayload>;
92299
92350
  jira_setIssueSearchFieldSets?: Maybe<JiraSetIssueSearchFieldSetsPayload>;
92300
92351
  jira_setIssueSearchGroupBy?: Maybe<JiraSetIssueSearchGroupByPayload>;
92301
92352
  jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
@@ -94209,6 +94260,9 @@ export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
94209
94260
  export declare type MutationJira_SetFieldSetsPreferencesArgs = {
94210
94261
  input: JiraSetFieldSetsPreferencesInput;
94211
94262
  };
94263
+ export declare type MutationJira_SetIssueSearchAggregationConfigArgs = {
94264
+ input: JiraSetIssueSearchAggregationConfigInput;
94265
+ };
94212
94266
  export declare type MutationJira_SetIssueSearchFieldSetsArgs = {
94213
94267
  input: JiraSetIssueSearchFieldSetsInput;
94214
94268
  };