@forge/cli-shared 5.0.0-next.3 → 5.0.0-next.4

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.0.0-next.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [4c2dc9f]
8
+ - @forge/manifest@7.3.0-next.3
9
+
3
10
  ## 5.0.0-next.3
4
11
 
5
12
  ### Patch Changes
@@ -438,7 +438,7 @@ export declare type ActivityObject = {
438
438
  subProduct?: Maybe<Scalars['String']['output']>;
439
439
  type: Scalars['String']['output'];
440
440
  };
441
- export declare type ActivityObjectData = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloBoard | TrelloCard;
441
+ export declare type ActivityObjectData = ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloBoard | TrelloCard;
442
442
  export declare enum ActivityObjectType {
443
443
  Blogpost = "BLOGPOST",
444
444
  Comment = "COMMENT",
@@ -6300,6 +6300,21 @@ export declare type ConfluenceDeletePagePropertyPayload = Payload & {
6300
6300
  errors?: Maybe<Array<MutationError>>;
6301
6301
  success: Scalars['Boolean']['output'];
6302
6302
  };
6303
+ export declare type ConfluenceEmbed = {
6304
+ __typename?: 'ConfluenceEmbed';
6305
+ author?: Maybe<ConfluenceUserInfo>;
6306
+ embedId: Scalars['ID']['output'];
6307
+ id: Scalars['ID']['output'];
6308
+ links?: Maybe<ConfluenceEmbedLinks>;
6309
+ owner?: Maybe<ConfluenceUserInfo>;
6310
+ space?: Maybe<ConfluenceSpace>;
6311
+ title?: Maybe<Scalars['String']['output']>;
6312
+ };
6313
+ export declare type ConfluenceEmbedLinks = {
6314
+ __typename?: 'ConfluenceEmbedLinks';
6315
+ base?: Maybe<Scalars['String']['output']>;
6316
+ webUi?: Maybe<Scalars['String']['output']>;
6317
+ };
6303
6318
  export declare type ConfluenceFavoritedSummary = {
6304
6319
  __typename?: 'ConfluenceFavoritedSummary';
6305
6320
  favoritedAt?: Maybe<Scalars['String']['output']>;
@@ -6668,6 +6683,8 @@ export declare type ConfluenceQueryApi = {
6668
6683
  comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
6669
6684
  database?: Maybe<ConfluenceDatabase>;
6670
6685
  databases?: Maybe<Array<Maybe<ConfluenceDatabase>>>;
6686
+ embed?: Maybe<ConfluenceEmbed>;
6687
+ embeds?: Maybe<Array<Maybe<ConfluenceEmbed>>>;
6671
6688
  findSpaces?: Maybe<ConfluenceSpaceConnection>;
6672
6689
  inlineTask?: Maybe<ConfluenceInlineTask>;
6673
6690
  longTask?: Maybe<ConfluenceLongTask>;
@@ -6698,6 +6715,12 @@ export declare type ConfluenceQueryApiDatabaseArgs = {
6698
6715
  export declare type ConfluenceQueryApiDatabasesArgs = {
6699
6716
  ids: Array<InputMaybe<Scalars['ID']['input']>>;
6700
6717
  };
6718
+ export declare type ConfluenceQueryApiEmbedArgs = {
6719
+ id: Scalars['ID']['input'];
6720
+ };
6721
+ export declare type ConfluenceQueryApiEmbedsArgs = {
6722
+ ids: Array<Scalars['ID']['input']>;
6723
+ };
6701
6724
  export declare type ConfluenceQueryApiFindSpacesArgs = {
6702
6725
  after?: InputMaybe<Scalars['String']['input']>;
6703
6726
  cloudId: Scalars['ID']['input'];
@@ -41249,15 +41272,18 @@ export declare type KnowledgeBaseSources = {
41249
41272
  };
41250
41273
  export declare type KnowledgeDiscoveryConfluenceBlogpost = KnowledgeDiscoveryEntity & {
41251
41274
  __typename?: 'KnowledgeDiscoveryConfluenceBlogpost';
41275
+ confluenceBlogpost?: Maybe<ConfluenceBlogPost>;
41252
41276
  id: Scalars['ID']['output'];
41253
41277
  };
41254
41278
  export declare type KnowledgeDiscoveryConfluenceEntity = ConfluenceBlogPost | ConfluencePage;
41255
41279
  export declare type KnowledgeDiscoveryConfluencePage = KnowledgeDiscoveryEntity & {
41256
41280
  __typename?: 'KnowledgeDiscoveryConfluencePage';
41281
+ confluencePage?: Maybe<ConfluencePage>;
41257
41282
  id: Scalars['ID']['output'];
41258
41283
  };
41259
41284
  export declare type KnowledgeDiscoveryConfluenceSpace = KnowledgeDiscoveryEntity & {
41260
41285
  __typename?: 'KnowledgeDiscoveryConfluenceSpace';
41286
+ confluenceSpace?: Maybe<ConfluenceSpace>;
41261
41287
  id: Scalars['ID']['output'];
41262
41288
  };
41263
41289
  export declare type KnowledgeDiscoveryCreateDefinitionInput = {
@@ -41315,6 +41341,7 @@ export declare enum KnowledgeDiscoveryEntityType {
41315
41341
  export declare type KnowledgeDiscoveryJiraProject = KnowledgeDiscoveryEntity & {
41316
41342
  __typename?: 'KnowledgeDiscoveryJiraProject';
41317
41343
  id: Scalars['ID']['output'];
41344
+ jiraProject?: Maybe<JiraProject>;
41318
41345
  };
41319
41346
  export declare type KnowledgeDiscoveryKeyPhrase = {
41320
41347
  __typename?: 'KnowledgeDiscoveryKeyPhrase';
@@ -41436,6 +41463,7 @@ export declare enum KnowledgeDiscoveryTopicType {
41436
41463
  export declare type KnowledgeDiscoveryUser = KnowledgeDiscoveryEntity & {
41437
41464
  __typename?: 'KnowledgeDiscoveryUser';
41438
41465
  id: Scalars['ID']['output'];
41466
+ user?: Maybe<User>;
41439
41467
  };
41440
41468
  export declare type LabelUsage = {
41441
41469
  __typename?: 'LabelUsage';
@@ -45440,8 +45468,8 @@ export declare type Query = {
45440
45468
  signup?: Maybe<SignupQueryApi>;
45441
45469
  smarts?: Maybe<SmartsQueryApi>;
45442
45470
  softwareBoards?: Maybe<BoardScopeConnection>;
45443
- squadNameById?: Maybe<SupportInquirySquad>;
45444
45471
  suggestions?: Maybe<AutoSuggestionApi>;
45472
+ supportInquiry?: Maybe<SupportInquiryApi>;
45445
45473
  surfacePlatform: SurfacePlatformQueryApi;
45446
45474
  team?: Maybe<TeamQuery>;
45447
45475
  template?: Maybe<ContentPlatformTemplate>;
@@ -47241,7 +47269,7 @@ export declare enum SearchConfluenceDocumentStatus {
47241
47269
  Current = "CURRENT",
47242
47270
  Draft = "DRAFT"
47243
47271
  }
47244
- export declare type SearchConfluenceEntity = ConfluenceBlogPost | ConfluencePage | ConfluenceWhiteboard;
47272
+ export declare type SearchConfluenceEntity = ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluencePage | ConfluenceWhiteboard;
47245
47273
  export declare type SearchConfluenceFilter = {
47246
47274
  ancestorIdsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
47247
47275
  containerARIs?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -49358,6 +49386,13 @@ export declare type Subscription = {
49358
49386
  testing?: Maybe<TestingSubscription>;
49359
49387
  trello: TrelloSubscriptionApi;
49360
49388
  };
49389
+ export declare type SupportInquiryApi = {
49390
+ __typename?: 'SupportInquiryApi';
49391
+ squad?: Maybe<SupportInquirySquad>;
49392
+ };
49393
+ export declare type SupportInquiryApiSquadArgs = {
49394
+ id: Scalars['ID']['input'];
49395
+ };
49361
49396
  export declare type SupportInquirySquad = {
49362
49397
  __typename?: 'SupportInquirySquad';
49363
49398
  id: Scalars['ID']['output'];