@forge/cli-shared 6.5.2-next.1 → 6.5.2-next.1-experimental-19bd64d

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,18 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.5.2-next.1-experimental-19bd64d
4
+
5
+ ### Minor Changes
6
+
7
+ - c5efb5f: Added command for app versions details
8
+
9
+ ### Patch Changes
10
+
11
+ - a808a56: Fix filtering of modules to display UI Kit 1 deprecation warning
12
+ - Updated dependencies [19c93e7]
13
+ - Updated dependencies [1815689]
14
+ - @forge/manifest@8.4.1-next.1-experimental-19bd64d
15
+
3
16
  ## 6.5.2-next.1
4
17
 
5
18
  ### 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>;
@@ -53964,10 +53962,15 @@ export declare type JiraOAuthAppsFeatureFlagsModuleInput = {
53964
53962
  actions?: InputMaybe<JiraOAuthAppsFeatureFlagsModuleActionsInput>;
53965
53963
  isEnabled: Scalars['Boolean']['input'];
53966
53964
  };
53965
+ export declare type JiraOAuthAppsInstallAppInput = {
53966
+ appId: Scalars['ID']['input'];
53967
+ clientMutationId?: InputMaybe<Scalars['ID']['input']>;
53968
+ };
53967
53969
  export declare type JiraOAuthAppsMutation = {
53968
53970
  __typename?: 'JiraOAuthAppsMutation';
53969
53971
  createJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
53970
53972
  deleteJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
53973
+ installJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
53971
53974
  updateJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
53972
53975
  };
53973
53976
  export declare type JiraOAuthAppsMutationCreateJiraOAuthAppArgs = {
@@ -53978,6 +53981,10 @@ export declare type JiraOAuthAppsMutationDeleteJiraOAuthAppArgs = {
53978
53981
  cloudId: Scalars['String']['input'];
53979
53982
  input: JiraOAuthAppsDeleteAppInput;
53980
53983
  };
53984
+ export declare type JiraOAuthAppsMutationInstallJiraOAuthAppArgs = {
53985
+ cloudId: Scalars['String']['input'];
53986
+ input: JiraOAuthAppsInstallAppInput;
53987
+ };
53981
53988
  export declare type JiraOAuthAppsMutationUpdateJiraOAuthAppArgs = {
53982
53989
  cloudId: Scalars['String']['input'];
53983
53990
  input: JiraOAuthAppsUpdateAppInput;
@@ -62594,6 +62601,7 @@ export declare type KnowledgeDiscoveryKeyPhrase = {
62594
62601
  };
62595
62602
  export declare enum KnowledgeDiscoveryKeyPhraseCategory {
62596
62603
  Acronym = "ACRONYM",
62604
+ Auto = "AUTO",
62597
62605
  Other = "OTHER",
62598
62606
  Project = "PROJECT",
62599
62607
  Team = "TEAM"