@forge/cli-shared 6.0.1 → 6.0.2-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
+ ## 6.0.2-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [577777c]
8
+ - @forge/manifest@7.10.0-next.0
9
+
3
10
  ## 6.0.1
4
11
 
5
12
  ### Patch Changes
@@ -826,6 +826,7 @@ export declare type AppEnvironmentVariableInput = {
826
826
  export declare type AppEnvironmentVersion = {
827
827
  __typename?: 'AppEnvironmentVersion';
828
828
  createdAt: Scalars['String']['output'];
829
+ extensionByKey?: Maybe<AppVersionExtension>;
829
830
  id: Scalars['ID']['output'];
830
831
  isLatest: Scalars['Boolean']['output'];
831
832
  migrationKeys?: Maybe<MigrationKeys>;
@@ -836,6 +837,9 @@ export declare type AppEnvironmentVersion = {
836
837
  updatedAt: Scalars['String']['output'];
837
838
  version: Scalars['String']['output'];
838
839
  };
840
+ export declare type AppEnvironmentVersionExtensionByKeyArgs = {
841
+ key: Scalars['String']['input'];
842
+ };
839
843
  export declare type AppEnvironmentVersionTrustSignalArgs = {
840
844
  key: Scalars['ID']['input'];
841
845
  };
@@ -1410,6 +1414,14 @@ export declare type AppVersion = {
1410
1414
  __typename?: 'AppVersion';
1411
1415
  isLatest: Scalars['Boolean']['output'];
1412
1416
  };
1417
+ export declare type AppVersionExtension = {
1418
+ __typename?: 'AppVersionExtension';
1419
+ extensionData: Scalars['JSON']['output'];
1420
+ extensionGroupId: Scalars['ID']['output'];
1421
+ extensionTypeKey: Scalars['String']['output'];
1422
+ id: Scalars['ID']['output'];
1423
+ key: Scalars['String']['output'];
1424
+ };
1413
1425
  export declare type ApplyCompassScorecardToComponentPayload = Payload & {
1414
1426
  __typename?: 'ApplyCompassScorecardToComponentPayload';
1415
1427
  componentDetails?: Maybe<CompassComponent>;