@forge/cli-shared 3.20.2 → 3.20.3-next.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,5 +1,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.20.3-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [22dd431]
8
+ - @forge/manifest@4.20.4-next.0
9
+
3
10
  ## 3.20.2
4
11
 
5
12
  ### Patch Changes
@@ -1497,6 +1497,7 @@ export type AppsFilter = {
1497
1497
  export type AquaIssueContext = {
1498
1498
  __typename?: 'AquaIssueContext';
1499
1499
  commentId?: Maybe<Scalars['Long']['output']>;
1500
+ issue?: Maybe<JiraIssue>;
1500
1501
  issueId?: Maybe<Scalars['Long']['output']>;
1501
1502
  };
1502
1503
  export type AquaNotificationDetails = {
@@ -12744,6 +12745,17 @@ export type HelpObjectStoreMutationApiDeleteProviderConnectionArgs = {
12744
12745
  export type HelpObjectStoreMutationApiUpdateProviderConnectionArgs = {
12745
12746
  input: HelpObjectStoreProviderConnectionInput;
12746
12747
  };
12748
+ export type HelpObjectStoreProviderAuthStatus = {
12749
+ __typename?: 'HelpObjectStoreProviderAuthStatus';
12750
+ authUrl?: Maybe<Scalars['String']['output']>;
12751
+ isAuthRequired: Scalars['Boolean']['output'];
12752
+ provider: Scalars['String']['output'];
12753
+ };
12754
+ export type HelpObjectStoreProviderAuthStatusResult = HelpObjectStoreProviderAuthStatuses | HelpObjectStoreProvidersAuthError;
12755
+ export type HelpObjectStoreProviderAuthStatuses = {
12756
+ __typename?: 'HelpObjectStoreProviderAuthStatuses';
12757
+ providerAuthStatuses: Array<Maybe<HelpObjectStoreProviderAuthStatus>>;
12758
+ };
12747
12759
  export type HelpObjectStoreProviderConnection = Node & {
12748
12760
  __typename?: 'HelpObjectStoreProviderConnection';
12749
12761
  containerId?: Maybe<Scalars['String']['output']>;
@@ -12802,10 +12814,16 @@ export type HelpObjectStoreProviderConnections = {
12802
12814
  export type HelpObjectStoreProviderConnectionsInput = {
12803
12815
  providerConnections: Array<HelpObjectStoreProviderConnectionInput>;
12804
12816
  };
12817
+ export type HelpObjectStoreProvidersAuthError = {
12818
+ __typename?: 'HelpObjectStoreProvidersAuthError';
12819
+ extensions?: Maybe<Array<QueryErrorExtension>>;
12820
+ message?: Maybe<Scalars['String']['output']>;
12821
+ };
12805
12822
  export type HelpObjectStoreQueryApi = {
12806
12823
  __typename?: 'HelpObjectStoreQueryApi';
12807
12824
  articles?: Maybe<Array<Maybe<HelpObjectStoreArticleResult>>>;
12808
12825
  channels?: Maybe<Array<Maybe<HelpObjectStoreChannelResult>>>;
12826
+ providerAuthStatuses?: Maybe<HelpObjectStoreProviderAuthStatusResult>;
12809
12827
  providerConnections?: Maybe<HelpObjectStoreProviderConnectionResult>;
12810
12828
  requestForms?: Maybe<Array<Maybe<HelpObjectStoreRequestFormResult>>>;
12811
12829
  searchHelpObjects?: Maybe<Array<Maybe<HelpObjectStoreHelpCenterSearchResult>>>;
@@ -12816,6 +12834,9 @@ export type HelpObjectStoreQueryApiArticlesArgs = {
12816
12834
  export type HelpObjectStoreQueryApiChannelsArgs = {
12817
12835
  ids: Array<Scalars['ID']['input']>;
12818
12836
  };
12837
+ export type HelpObjectStoreQueryApiProviderAuthStatusesArgs = {
12838
+ cloudId: Scalars['ID']['input'];
12839
+ };
12819
12840
  export type HelpObjectStoreQueryApiProviderConnectionsArgs = {
12820
12841
  after?: InputMaybe<Scalars['String']['input']>;
12821
12842
  cloudId: Scalars['ID']['input'];
@@ -22607,7 +22628,6 @@ export type MarketplaceApp = {
22607
22628
  listingStatus: MarketplaceListingStatus;
22608
22629
  logo?: Maybe<MarketplaceListingImage>;
22609
22630
  marketingLabels: Array<Scalars['String']['output']>;
22610
- marketplaceAppTrustInformation?: Maybe<MarketplaceAppTrustInformationResult>;
22611
22631
  name: Scalars['String']['output'];
22612
22632
  partner?: Maybe<MarketplacePartner>;
22613
22633
  partnerId: Scalars['ID']['output'];
@@ -22625,10 +22645,6 @@ export type MarketplaceApp = {
22625
22645
  watchersInfo?: Maybe<MarketplaceAppWatchersInfo>;
22626
22646
  wikiUrl?: Maybe<Scalars['URL']['output']>;
22627
22647
  };
22628
- export type MarketplaceAppMarketplaceAppTrustInformationArgs = {
22629
- appKey: Scalars['String']['input'];
22630
- state: AppTrustInformationState;
22631
- };
22632
22648
  export type MarketplaceAppProductHostingOptionsArgs = {
22633
22649
  excludeHiddenIn?: InputMaybe<MarketplaceLocation>;
22634
22650
  };
@@ -26694,6 +26710,7 @@ export type RoadmapItem = {
26694
26710
  dependencies?: Maybe<Array<Scalars['ID']['output']>>;
26695
26711
  dueDate?: Maybe<Scalars['DateTime']['output']>;
26696
26712
  dueDateRFC3339?: Maybe<Scalars['Date']['output']>;
26713
+ flagged?: Maybe<Scalars['Boolean']['output']>;
26697
26714
  id: Scalars['ID']['output'];
26698
26715
  inferredDueDate?: Maybe<Scalars['Date']['output']>;
26699
26716
  inferredStartDate?: Maybe<Scalars['Date']['output']>;
@@ -27742,6 +27759,15 @@ export type SearchResultJiraBoardUserContainer = {
27742
27759
  userId: Scalars['ID']['output'];
27743
27760
  userName: Scalars['String']['output'];
27744
27761
  };
27762
+ export type SearchResultJiraDashboard = SearchResult & {
27763
+ __typename?: 'SearchResultJiraDashboard';
27764
+ description: Scalars['String']['output'];
27765
+ iconUrl?: Maybe<Scalars['URL']['output']>;
27766
+ id: Scalars['ID']['output'];
27767
+ title: Scalars['String']['output'];
27768
+ type: SearchResultType;
27769
+ url: Scalars['URL']['output'];
27770
+ };
27745
27771
  export type SearchResultJiraFilter = SearchResult & {
27746
27772
  __typename?: 'SearchResultJiraFilter';
27747
27773
  description: Scalars['String']['output'];
@@ -27783,6 +27809,8 @@ export declare enum SearchResultType {
27783
27809
  Blogpost = "blogpost",
27784
27810
  Board = "board",
27785
27811
  Comment = "comment",
27812
+ Dashboard = "dashboard",
27813
+ Database = "database",
27786
27814
  Filter = "filter",
27787
27815
  Issue = "issue",
27788
27816
  Page = "page",
@@ -27943,10 +27971,12 @@ export declare enum ShepherdActionType {
27943
27971
  Create = "CREATE",
27944
27972
  Delete = "DELETE",
27945
27973
  Export = "EXPORT",
27974
+ Grant = "GRANT",
27946
27975
  Install = "INSTALL",
27947
27976
  Login = "LOGIN",
27948
27977
  LoginAs = "LOGIN_AS",
27949
27978
  Read = "READ",
27979
+ Revoke = "REVOKE",
27950
27980
  Search = "SEARCH",
27951
27981
  Uninstall = "UNINSTALL",
27952
27982
  Update = "UPDATE"