@forge/cli-shared 5.5.3-next.0 → 5.5.3-next.1

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,5 +1,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 5.5.3-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [32601f4]
8
+ - @forge/manifest@7.8.1-next.0
9
+
3
10
  ## 5.5.3-next.0
4
11
 
5
12
  ### Patch Changes
@@ -43389,6 +43389,7 @@ export declare type JiraIssueFieldSetsByIdArgs = {
43389
43389
  export declare type JiraIssueFieldSetsForIssueSearchViewArgs = {
43390
43390
  after?: InputMaybe<Scalars['String']['input']>;
43391
43391
  before?: InputMaybe<Scalars['String']['input']>;
43392
+ context?: InputMaybe<JiraIssueSearchViewFieldSetsContext>;
43392
43393
  filterId?: InputMaybe<Scalars['String']['input']>;
43393
43394
  first?: InputMaybe<Scalars['Int']['input']>;
43394
43395
  last?: InputMaybe<Scalars['Int']['input']>;
@@ -54668,7 +54669,7 @@ export declare type KnowledgeBaseSourceEdge = {
54668
54669
  cursor?: Maybe<Scalars['String']['output']>;
54669
54670
  node: KnowledgeBaseSource;
54670
54671
  };
54671
- export declare type KnowledgeBaseSourcePermissions = KnowledgeBaseSpacePermissionResponse | QueryError;
54672
+ export declare type KnowledgeBaseSourcePermissions = KnowledgeBaseSpacePermissionQueryError | KnowledgeBaseSpacePermissionResponse;
54672
54673
  export declare type KnowledgeBaseSources = {
54673
54674
  __typename?: 'KnowledgeBaseSources';
54674
54675
  edge: Array<Maybe<KnowledgeBaseSourceEdge>>;
@@ -54691,7 +54692,13 @@ export declare type KnowledgeBaseSpacePermissionMutationResponse = {
54691
54692
  permission?: Maybe<KnowledgeBaseSpacePermission>;
54692
54693
  success: Scalars['Boolean']['output'];
54693
54694
  };
54694
- export declare type KnowledgeBaseSpacePermissionQueryResponse = KnowledgeBaseSpacePermissionResponse | QueryError;
54695
+ export declare type KnowledgeBaseSpacePermissionQueryError = {
54696
+ __typename?: 'KnowledgeBaseSpacePermissionQueryError';
54697
+ extensions?: Maybe<Array<QueryErrorExtension>>;
54698
+ message: Scalars['String']['output'];
54699
+ spaceAri: Scalars['ID']['output'];
54700
+ };
54701
+ export declare type KnowledgeBaseSpacePermissionQueryResponse = KnowledgeBaseSpacePermissionQueryError | KnowledgeBaseSpacePermissionResponse;
54695
54702
  export declare type KnowledgeBaseSpacePermissionResponse = {
54696
54703
  __typename?: 'KnowledgeBaseSpacePermissionResponse';
54697
54704
  permission: KnowledgeBaseSpacePermission;