@forge/cli-shared 8.2.0-next.14 → 8.2.0-next.16

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,19 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.2.0-next.16
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [5bfa872]
8
+ - @forge/manifest@10.2.0-next.5
9
+
10
+ ## 8.2.0-next.15
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [5144b15]
15
+ - @forge/manifest@10.2.0-next.4
16
+
3
17
  ## 8.2.0-next.14
4
18
 
5
19
  ### Patch Changes
@@ -14413,6 +14413,7 @@ export declare type Content = {
14413
14413
  archivedContentMetadata?: Maybe<ArchivedContentMetadata>;
14414
14414
  ari?: Maybe<Scalars['ID']['output']>;
14415
14415
  attachments?: Maybe<PaginatedContentList>;
14416
+ base64EncodedAri?: Maybe<Scalars['ID']['output']>;
14416
14417
  blank: Scalars['Boolean']['output'];
14417
14418
  body?: Maybe<ContentBodyPerRepresentation>;
14418
14419
  childTypes?: Maybe<ChildContentTypesAvailable>;
@@ -19958,7 +19959,7 @@ export declare type DevAiRovoDevRepositoryInput = {
19958
19959
  targetBranch?: InputMaybe<Scalars['String']['input']>;
19959
19960
  url?: InputMaybe<Scalars['String']['input']>;
19960
19961
  };
19961
- export declare type DevAiRovoDevSession = {
19962
+ export declare type DevAiRovoDevSession = Node & {
19962
19963
  __typename?: 'DevAiRovoDevSession';
19963
19964
  accountId?: Maybe<Scalars['ID']['output']>;
19964
19965
  createdAt?: Maybe<Scalars['DateTime']['output']>;
@@ -52615,7 +52616,7 @@ export declare type HelpObjectStoreSupportSiteArticleSearchInput = {
52615
52616
  query?: InputMaybe<Scalars['String']['input']>;
52616
52617
  topLevelArticlesOnly?: InputMaybe<Scalars['Boolean']['input']>;
52617
52618
  };
52618
- export declare type HelpObjectStoreSupportSiteArticleSearchResponse = HelpObjectStoreSearchError | HelpObjectStoreSupportSiteArticleSearchResultConnection;
52619
+ export declare type HelpObjectStoreSupportSiteArticleSearchResponse = HelpObjectStoreSupportSiteArticleSearchResult | QueryError;
52619
52620
  export declare type HelpObjectStoreSupportSiteArticleSearchResult = {
52620
52621
  __typename?: 'HelpObjectStoreSupportSiteArticleSearchResult';
52621
52622
  ancestors?: Maybe<Array<HelpObjectStoreArticleRelative>>;
@@ -52630,14 +52631,14 @@ export declare type HelpObjectStoreSupportSiteArticleSearchResult = {
52630
52631
  };
52631
52632
  export declare type HelpObjectStoreSupportSiteArticleSearchResultConnection = {
52632
52633
  __typename?: 'HelpObjectStoreSupportSiteArticleSearchResultConnection';
52633
- edges?: Maybe<Array<HelpObjectStoreSupportSiteArticleSearchResultEdge>>;
52634
- nodes?: Maybe<Array<HelpObjectStoreSupportSiteArticleSearchResult>>;
52634
+ edges?: Maybe<Array<Maybe<HelpObjectStoreSupportSiteArticleSearchResultEdge>>>;
52635
+ nodes?: Maybe<Array<Maybe<HelpObjectStoreSupportSiteArticleSearchResponse>>>;
52635
52636
  pageInfo: PageInfo;
52636
52637
  };
52637
52638
  export declare type HelpObjectStoreSupportSiteArticleSearchResultEdge = {
52638
52639
  __typename?: 'HelpObjectStoreSupportSiteArticleSearchResultEdge';
52639
52640
  cursor: Scalars['String']['output'];
52640
- node: HelpObjectStoreSupportSiteArticleSearchResult;
52641
+ node?: Maybe<HelpObjectStoreSupportSiteArticleSearchResponse>;
52641
52642
  };
52642
52643
  export declare type History = {
52643
52644
  __typename?: 'History';
@@ -63538,6 +63539,7 @@ export declare enum JiraNavigationItemTypeKey {
63538
63539
  Requests = "REQUESTS",
63539
63540
  Security = "SECURITY",
63540
63541
  Shortcuts = "SHORTCUTS",
63542
+ Staffing = "STAFFING",
63541
63543
  Summary = "SUMMARY",
63542
63544
  Teams = "TEAMS",
63543
63545
  Timeline = "TIMELINE"
@@ -73558,6 +73560,7 @@ export declare type KnowledgeBaseCrossSiteSearchConnection = {
73558
73560
  edges?: Maybe<Array<KnowledgeBaseCrossSiteArticleEdge>>;
73559
73561
  nodes?: Maybe<Array<Maybe<KnowledgeBaseCrossSiteArticle>>>;
73560
73562
  pageInfo: PageInfo;
73563
+ totalCount?: Maybe<Scalars['Int']['output']>;
73561
73564
  };
73562
73565
  export declare type KnowledgeBaseLinkResponse = {
73563
73566
  __typename?: 'KnowledgeBaseLinkResponse';
@@ -73674,6 +73677,7 @@ export declare type KnowledgeBaseThirdPartyConnection = {
73674
73677
  __typename?: 'KnowledgeBaseThirdPartyConnection';
73675
73678
  edges?: Maybe<Array<KnowledgeBaseThirdPartyArticleEdge>>;
73676
73679
  nodes?: Maybe<Array<Maybe<KnowledgeBaseThirdPartyArticle>>>;
73680
+ totalCount?: Maybe<Scalars['Int']['output']>;
73677
73681
  };
73678
73682
  export declare type KnowledgeBaseUnlinkResponse = {
73679
73683
  __typename?: 'KnowledgeBaseUnlinkResponse';
@@ -85430,6 +85434,7 @@ export declare type Query = {
85430
85434
  devai_rovoDevAgentsWorkspace?: Maybe<DevAiWorkspace>;
85431
85435
  devai_rovodevSessionById?: Maybe<DevAiRovoDevSession>;
85432
85436
  devai_rovodevSessions?: Maybe<DevAiRovoDevSessionConnection>;
85437
+ devai_rovodevSessionsByAri?: Maybe<Array<DevAiRovoDevSession>>;
85433
85438
  devai_technicalPlannerJobById?: Maybe<DevAiTechnicalPlannerJob>;
85434
85439
  devai_technicalPlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
85435
85440
  developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
@@ -85501,7 +85506,7 @@ export declare type Query = {
85501
85506
  helpLayout?: Maybe<HelpLayoutQueryApi>;
85502
85507
  helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
85503
85508
  helpObjectStore_searchArticles?: Maybe<HelpObjectStoreArticleSearchResponse>;
85504
- helpObjectStore_searchArticlesForSupportSite?: Maybe<HelpObjectStoreSupportSiteArticleSearchResponse>;
85509
+ helpObjectStore_searchArticlesForSupportSite?: Maybe<HelpObjectStoreSupportSiteArticleSearchResultConnection>;
85505
85510
  helpObjectStore_searchPortals?: Maybe<HelpObjectStorePortalSearchResponse>;
85506
85511
  helpObjectStore_searchRequestTypes?: Maybe<HelpObjectStoreRequestTypeSearchResponse>;
85507
85512
  homeUserSettings?: Maybe<HomeUserSettings>;
@@ -86885,6 +86890,9 @@ export declare type QueryDevai_RovodevSessionsArgs = {
86885
86890
  sessionStatus?: InputMaybe<DevAiRovoDevSessionStatus>;
86886
86891
  workspaceAri: Scalars['ID']['input'];
86887
86892
  };
86893
+ export declare type QueryDevai_RovodevSessionsByAriArgs = {
86894
+ sessionAris: Array<Scalars['ID']['input']>;
86895
+ };
86888
86896
  export declare type QueryDevai_TechnicalPlannerJobByIdArgs = {
86889
86897
  cloudId: Scalars['ID']['input'];
86890
86898
  jobId: Scalars['ID']['input'];
@@ -92060,6 +92068,7 @@ export declare type ShepherdClassification = {
92060
92068
  orgId: Scalars['ID']['output'];
92061
92069
  sensitivity: Scalars['Int']['output'];
92062
92070
  status: ShepherdClassificationStatus;
92071
+ tagColor?: Maybe<Scalars['String']['output']>;
92063
92072
  };
92064
92073
  export declare type ShepherdClassificationEdge = {
92065
92074
  __typename?: 'ShepherdClassificationEdge';
@@ -99416,8 +99425,10 @@ export declare type TrelloMutationApiWatchCardArgs = {
99416
99425
  };
99417
99426
  export declare type TrelloOAuth2Client = {
99418
99427
  __typename?: 'TrelloOAuth2Client';
99428
+ callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
99419
99429
  clientId: Scalars['String']['output'];
99420
99430
  clientSecret: Scalars['String']['output'];
99431
+ profile: Scalars['String']['output'];
99421
99432
  scopes?: Maybe<Array<TrelloOAuth2Scope>>;
99422
99433
  };
99423
99434
  export declare type TrelloOAuth2Scope = {