@forge/cli-shared 6.6.0-next.8 → 6.6.0-next.9

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,13 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.6.0-next.9
4
+
5
+ ### Patch Changes
6
+
7
+ - 385907a: list secondary products in installations
8
+ - Updated dependencies [87ae208]
9
+ - @forge/manifest@8.6.1-next.2
10
+
3
11
  ## 6.6.0-next.8
4
12
 
5
13
  ### Minor Changes
@@ -22792,6 +22792,36 @@ export declare enum EcosystemLicenseMode {
22792
22792
  Agent = "AGENT",
22793
22793
  UserAccess = "USER_ACCESS"
22794
22794
  }
22795
+ export declare type EcosystemMarketplaceAppVersion = {
22796
+ __typename?: 'EcosystemMarketplaceAppVersion';
22797
+ buildNumber: Scalars['Float']['output'];
22798
+ editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
22799
+ isSupported?: Maybe<Scalars['Boolean']['output']>;
22800
+ version: Scalars['String']['output'];
22801
+ };
22802
+ export declare type EcosystemMarketplaceData = {
22803
+ __typename?: 'EcosystemMarketplaceData';
22804
+ appId?: Maybe<Scalars['ID']['output']>;
22805
+ appKey?: Maybe<Scalars['String']['output']>;
22806
+ cloudAppId: Scalars['ID']['output'];
22807
+ forumsUrl?: Maybe<Scalars['String']['output']>;
22808
+ issueTrackerUrl?: Maybe<Scalars['String']['output']>;
22809
+ name?: Maybe<Scalars['String']['output']>;
22810
+ slug?: Maybe<Scalars['String']['output']>;
22811
+ supportTicketSystemUrl?: Maybe<Scalars['String']['output']>;
22812
+ versions?: Maybe<EcosystemMarketplaceVersionConnection>;
22813
+ wikiUrl?: Maybe<Scalars['String']['output']>;
22814
+ };
22815
+ export declare type EcosystemMarketplaceVersionConnection = {
22816
+ __typename?: 'EcosystemMarketplaceVersionConnection';
22817
+ edges?: Maybe<Array<EcosystemMarketplaceVersionEdge>>;
22818
+ totalCount?: Maybe<Scalars['Int']['output']>;
22819
+ };
22820
+ export declare type EcosystemMarketplaceVersionEdge = {
22821
+ __typename?: 'EcosystemMarketplaceVersionEdge';
22822
+ cursor?: Maybe<Scalars['String']['output']>;
22823
+ node: EcosystemMarketplaceAppVersion;
22824
+ };
22795
22825
  export declare type EcosystemMutation = {
22796
22826
  __typename?: 'EcosystemMutation';
22797
22827
  addAppContributor?: Maybe<AddAppContributorResponsePayload>;
@@ -22903,6 +22933,7 @@ export declare type EcosystemQuery = {
22903
22933
  forgeMetrics?: Maybe<ForgeMetricsQuery>;
22904
22934
  fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
22905
22935
  globalInstallationConfig?: Maybe<Array<Maybe<EcosystemGlobalInstallationOverride>>>;
22936
+ marketplaceData: EcosystemMarketplaceData;
22906
22937
  userAccess?: Maybe<UserAccess>;
22907
22938
  userGrants?: Maybe<UserGrantConnection>;
22908
22939
  userInstallationRules?: Maybe<UserInstallationRules>;
@@ -22969,6 +23000,9 @@ export declare type EcosystemQueryGlobalInstallationConfigArgs = {
22969
23000
  cloudId: Scalars['ID']['input'];
22970
23001
  filter?: InputMaybe<GlobalInstallationConfigFilter>;
22971
23002
  };
23003
+ export declare type EcosystemQueryMarketplaceDataArgs = {
23004
+ cloudAppId: Scalars['ID']['input'];
23005
+ };
22972
23006
  export declare type EcosystemQueryUserAccessArgs = {
22973
23007
  contextId: Scalars['ID']['input'];
22974
23008
  definitionId: Scalars['ID']['input'];
@@ -50420,12 +50454,15 @@ export declare type JiraBulkOperationInput = {
50420
50454
  bulkDeleteInput?: InputMaybe<JiraBulkDeleteInput>;
50421
50455
  bulkEditInput?: InputMaybe<JiraBulkEditInput>;
50422
50456
  bulkTransitionsInput?: InputMaybe<Array<JiraBulkTransitionsInput>>;
50457
+ bulkWatchOrUnwatchInput?: InputMaybe<JiraBulkWatchOrUnwatchInput>;
50423
50458
  sendBulkNotification?: InputMaybe<Scalars['Boolean']['input']>;
50424
50459
  };
50425
50460
  export declare enum JiraBulkOperationType {
50426
50461
  BulkDelete = "BULK_DELETE",
50427
50462
  BulkEdit = "BULK_EDIT",
50428
- BulkTransition = "BULK_TRANSITION"
50463
+ BulkTransition = "BULK_TRANSITION",
50464
+ BulkUnwatch = "BULK_UNWATCH",
50465
+ BulkWatch = "BULK_WATCH"
50429
50466
  }
50430
50467
  export declare type JiraBulkTransition = Node & {
50431
50468
  __typename?: 'JiraBulkTransition';
@@ -50478,6 +50515,9 @@ export declare type JiraBulkTransitionsInput = {
50478
50515
  transitionId: Scalars['String']['input'];
50479
50516
  transitionScreenInput?: InputMaybe<JiraTransitionScreenInput>;
50480
50517
  };
50518
+ export declare type JiraBulkWatchOrUnwatchInput = {
50519
+ selectedIssueIds: Array<Scalars['ID']['input']>;
50520
+ };
50481
50521
  export declare type JiraCmdbField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
50482
50522
  __typename?: 'JiraCMDBField';
50483
50523
  aliasFieldId?: Maybe<Scalars['ID']['output']>;
@@ -66697,6 +66737,7 @@ export declare type KnowledgeDiscoveryAdminhubBookmarkFailureMetadata = {
66697
66737
  };
66698
66738
  export declare type KnowledgeDiscoveryAdminhubBookmarkProperties = {
66699
66739
  __typename?: 'KnowledgeDiscoveryAdminhubBookmarkProperties';
66740
+ bookmarkState?: Maybe<KnowledgeDiscoveryBookmarkState>;
66700
66741
  cloudId: Scalars['String']['output'];
66701
66742
  createdTimestamp: Scalars['String']['output'];
66702
66743
  creator?: Maybe<User>;
@@ -66738,6 +66779,7 @@ export declare type KnowledgeDiscoveryBookmarkMutationErrorExtension = MutationE
66738
66779
  };
66739
66780
  export declare type KnowledgeDiscoveryBookmarkProperties = {
66740
66781
  __typename?: 'KnowledgeDiscoveryBookmarkProperties';
66782
+ bookmarkState?: Maybe<KnowledgeDiscoveryBookmarkState>;
66741
66783
  description?: Maybe<Scalars['String']['output']>;
66742
66784
  keyPhrase: Scalars['String']['output'];
66743
66785
  lastModifiedTimestamp: Scalars['String']['output'];
@@ -66746,6 +66788,10 @@ export declare type KnowledgeDiscoveryBookmarkProperties = {
66746
66788
  url: Scalars['String']['output'];
66747
66789
  };
66748
66790
  export declare type KnowledgeDiscoveryBookmarkResult = KnowledgeDiscoveryBookmark | QueryError;
66791
+ export declare enum KnowledgeDiscoveryBookmarkState {
66792
+ Active = "ACTIVE",
66793
+ Suggested = "SUGGESTED"
66794
+ }
66749
66795
  export declare type KnowledgeDiscoveryBookmarkValidationFailureMetadata = KnowledgeDiscoveryAdminhubBookmarkFailureMetadata & {
66750
66796
  __typename?: 'KnowledgeDiscoveryBookmarkValidationFailureMetadata';
66751
66797
  errorType?: Maybe<Scalars['String']['output']>;
@@ -67065,6 +67111,7 @@ export declare type KnowledgeDiscoveryRelatedEntityRequests = {
67065
67111
  export declare enum KnowledgeDiscoverySearchQueryClassification {
67066
67112
  KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
67067
67113
  NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
67114
+ Navigational = "NAVIGATIONAL",
67068
67115
  None = "NONE",
67069
67116
  Person = "PERSON",
67070
67117
  Team = "TEAM"