@forge/cli-shared 3.11.2-next.5 → 3.11.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,18 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.11.2
4
+
5
+ ### Patch Changes
6
+
7
+ - d611f097: Removed CLI FF for enabling Sentry.
8
+ - 4aaab2f2: Added logs for when tunnel fails due to the docker daemon not being started
9
+ - Updated dependencies [e5137235]
10
+ - Updated dependencies [96f9f6d8]
11
+ - Updated dependencies [f53e1b42]
12
+ - Updated dependencies [4ecea902]
13
+ - Updated dependencies [88e09e32]
14
+ - @forge/manifest@4.12.0
15
+
3
16
  ## 3.11.2-next.5
4
17
 
5
18
  ### Patch Changes
@@ -7608,6 +7608,7 @@ export declare type EcosystemMutation = {
7608
7608
  updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
7609
7609
  addAppContributor?: Maybe<AddAppContributorResponsePayload>;
7610
7610
  removeAppContributors?: Maybe<RemoveAppContributorsResponsePayload>;
7611
+ updateAppOwnership?: Maybe<UpdateAppOwnershipResponsePayload>;
7611
7612
  deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
7612
7613
  updateUserInstallationRules?: Maybe<UserInstallationRulesPayload>;
7613
7614
  createAppEnvironment?: Maybe<CreateAppEnvironmentResponse>;
@@ -7623,6 +7624,9 @@ export declare type EcosystemMutationAddAppContributorArgs = {
7623
7624
  export declare type EcosystemMutationRemoveAppContributorsArgs = {
7624
7625
  input: RemoveAppContributorsInput;
7625
7626
  };
7627
+ export declare type EcosystemMutationUpdateAppOwnershipArgs = {
7628
+ input: UpdateAppOwnershipInput;
7629
+ };
7626
7630
  export declare type EcosystemMutationDeleteUserGrantArgs = {
7627
7631
  input: DeleteUserGrantInput;
7628
7632
  };
@@ -23815,6 +23819,15 @@ export declare type UpdateAppHostServiceScopesResponsePayload = Payload & {
23815
23819
  app?: Maybe<App>;
23816
23820
  appEnvironmentVersion?: Maybe<AppEnvironmentVersion>;
23817
23821
  };
23822
+ export declare type UpdateAppOwnershipInput = {
23823
+ appAri: Scalars['String'];
23824
+ newOwner: Scalars['String'];
23825
+ };
23826
+ export declare type UpdateAppOwnershipResponsePayload = Payload & {
23827
+ __typename?: 'UpdateAppOwnershipResponsePayload';
23828
+ success: Scalars['Boolean'];
23829
+ errors?: Maybe<Array<MutationError>>;
23830
+ };
23818
23831
  export declare type UpdateAtlassianOAuthClientInput = {
23819
23832
  clientID: Scalars['ID'];
23820
23833
  callbacks?: Maybe<Array<Scalars['String']>>;