@forge/cli-shared 3.20.3-next.13 → 3.20.3-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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.20.3-next.14
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [b33441d]
8
+ - @forge/manifest@5.0.0-next.5
9
+
3
10
  ## 3.20.3-next.13
4
11
 
5
12
  ### Patch Changes
@@ -5113,6 +5113,7 @@ export type ConfluenceBlogPost = {
5113
5113
  latestVersion?: Maybe<ConfluenceBlogPostVersion>;
5114
5114
  links?: Maybe<ConfluenceBlogPostLinks>;
5115
5115
  metadata?: Maybe<ConfluenceContentMetadata>;
5116
+ owner?: Maybe<ConfluenceUserInfo>;
5116
5117
  properties?: Maybe<Array<Maybe<ConfluenceBlogPostProperty>>>;
5117
5118
  space?: Maybe<ConfluenceSpace>;
5118
5119
  status?: Maybe<ConfluenceBlogPostStatus>;
@@ -5703,6 +5704,7 @@ export type ConfluencePage = {
5703
5704
  likesSummary?: Maybe<ConfluenceLikesSummary>;
5704
5705
  links?: Maybe<ConfluencePageLinks>;
5705
5706
  metadata?: Maybe<ConfluenceContentMetadata>;
5707
+ owner?: Maybe<ConfluenceUserInfo>;
5706
5708
  pageId: Scalars['ID']['output'];
5707
5709
  properties?: Maybe<Array<Maybe<ConfluencePageProperty>>>;
5708
5710
  space?: Maybe<ConfluenceSpace>;
@@ -6125,7 +6127,9 @@ export type ConfluenceValidateSpaceKeyResponse = {
6125
6127
  };
6126
6128
  export type ConfluenceWhiteboard = {
6127
6129
  __typename?: 'ConfluenceWhiteboard';
6130
+ author?: Maybe<ConfluenceUserInfo>;
6128
6131
  id: Scalars['ID']['output'];
6132
+ owner?: Maybe<ConfluenceUserInfo>;
6129
6133
  title?: Maybe<Scalars['String']['output']>;
6130
6134
  whiteboardId: Scalars['ID']['output'];
6131
6135
  };
@@ -27894,7 +27898,7 @@ export declare enum SearchConfluenceDocumentStatus {
27894
27898
  Current = "CURRENT",
27895
27899
  Draft = "DRAFT"
27896
27900
  }
27897
- export type SearchConfluenceEntity = ConfluenceBlogPost | ConfluencePage;
27901
+ export type SearchConfluenceEntity = ConfluenceBlogPost | ConfluencePage | ConfluenceWhiteboard;
27898
27902
  export type SearchConfluenceFilter = {
27899
27903
  ancestorIdsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
27900
27904
  containerStatus?: InputMaybe<Array<InputMaybe<SearchContainerStatus>>>;