@forge/cli-shared 6.5.2-next.1 → 6.5.2

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,14 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.5.2
4
+
5
+ ### Patch Changes
6
+
7
+ - a808a56: Fix filtering of modules to display UI Kit 1 deprecation warning
8
+ - Updated dependencies [19c93e7]
9
+ - Updated dependencies [1815689]
10
+ - @forge/manifest@8.4.1
11
+
3
12
  ## 6.5.2-next.1
4
13
 
5
14
  ### Patch Changes
@@ -1223,7 +1223,6 @@ export declare type AppInstallationEdge = {
1223
1223
  };
1224
1224
  export declare type AppInstallationInput = {
1225
1225
  appId: Scalars['ID']['input'];
1226
- async?: InputMaybe<Scalars['Boolean']['input']>;
1227
1226
  environmentKey: Scalars['String']['input'];
1228
1227
  installationContext: Scalars['ID']['input'];
1229
1228
  licenseOverride?: InputMaybe<LicenseOverrideState>;
@@ -1287,7 +1286,6 @@ export declare type AppInstallationUnsubscribeTask = AppInstallationTask & {
1287
1286
  };
1288
1287
  export declare type AppInstallationUpgradeInput = {
1289
1288
  appId: Scalars['ID']['input'];
1290
- async?: InputMaybe<Scalars['Boolean']['input']>;
1291
1289
  environmentKey: Scalars['String']['input'];
1292
1290
  installationContext: Scalars['ID']['input'];
1293
1291
  sourceBillingType?: InputMaybe<SourceBillingType>;
@@ -2276,14 +2274,10 @@ export declare type BitbucketPullRequest = Node & {
2276
2274
  };
2277
2275
  export declare type BitbucketQuery = {
2278
2276
  __typename?: 'BitbucketQuery';
2279
- bitbucketPullRequests?: Maybe<Array<Maybe<BitbucketPullRequest>>>;
2280
2277
  bitbucketRepositories?: Maybe<Array<Maybe<BitbucketRepository>>>;
2281
2278
  bitbucketRepository?: Maybe<BitbucketRepository>;
2282
2279
  bitbucketWorkspace?: Maybe<BitbucketWorkspace>;
2283
2280
  };
2284
- export declare type BitbucketQueryBitbucketPullRequestsArgs = {
2285
- ids: Array<Scalars['ID']['input']>;
2286
- };
2287
2281
  export declare type BitbucketQueryBitbucketRepositoriesArgs = {
2288
2282
  ids: Array<Scalars['ID']['input']>;
2289
2283
  };
@@ -53964,10 +53958,15 @@ export declare type JiraOAuthAppsFeatureFlagsModuleInput = {
53964
53958
  actions?: InputMaybe<JiraOAuthAppsFeatureFlagsModuleActionsInput>;
53965
53959
  isEnabled: Scalars['Boolean']['input'];
53966
53960
  };
53961
+ export declare type JiraOAuthAppsInstallAppInput = {
53962
+ appId: Scalars['ID']['input'];
53963
+ clientMutationId?: InputMaybe<Scalars['ID']['input']>;
53964
+ };
53967
53965
  export declare type JiraOAuthAppsMutation = {
53968
53966
  __typename?: 'JiraOAuthAppsMutation';
53969
53967
  createJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
53970
53968
  deleteJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
53969
+ installJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
53971
53970
  updateJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
53972
53971
  };
53973
53972
  export declare type JiraOAuthAppsMutationCreateJiraOAuthAppArgs = {
@@ -53978,6 +53977,10 @@ export declare type JiraOAuthAppsMutationDeleteJiraOAuthAppArgs = {
53978
53977
  cloudId: Scalars['String']['input'];
53979
53978
  input: JiraOAuthAppsDeleteAppInput;
53980
53979
  };
53980
+ export declare type JiraOAuthAppsMutationInstallJiraOAuthAppArgs = {
53981
+ cloudId: Scalars['String']['input'];
53982
+ input: JiraOAuthAppsInstallAppInput;
53983
+ };
53981
53984
  export declare type JiraOAuthAppsMutationUpdateJiraOAuthAppArgs = {
53982
53985
  cloudId: Scalars['String']['input'];
53983
53986
  input: JiraOAuthAppsUpdateAppInput;
@@ -62594,6 +62597,7 @@ export declare type KnowledgeDiscoveryKeyPhrase = {
62594
62597
  };
62595
62598
  export declare enum KnowledgeDiscoveryKeyPhraseCategory {
62596
62599
  Acronym = "ACRONYM",
62600
+ Auto = "AUTO",
62597
62601
  Other = "OTHER",
62598
62602
  Project = "PROJECT",
62599
62603
  Team = "TEAM"
@@ -63585,6 +63589,7 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
63585
63589
  __typename?: 'MarketplaceConsoleAppSoftwareShort';
63586
63590
  appKey: Scalars['ID']['output'];
63587
63591
  appSoftwareId: Scalars['ID']['output'];
63592
+ editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
63588
63593
  hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
63589
63594
  hasPublicVersion?: Maybe<Scalars['Boolean']['output']>;
63590
63595
  hosting: MarketplaceConsoleHosting;