@forge/cli-shared 3.11.2-next.4 → 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,25 @@
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
+
16
+ ## 3.11.2-next.5
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies [96f9f6d8]
21
+ - @forge/manifest@4.12.0-next.4
22
+
3
23
  ## 3.11.2-next.4
4
24
 
5
25
  ### 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
  };
@@ -23467,6 +23471,7 @@ export declare type TrelloBoard = {
23467
23471
  galleryInfo?: Maybe<TrelloTemplateGalleryItemInfo>;
23468
23472
  id: Scalars['ID'];
23469
23473
  lastActivityAt?: Maybe<Scalars['DateTime']>;
23474
+ lists?: Maybe<TrelloListConnection>;
23470
23475
  name: Scalars['String'];
23471
23476
  objectId: Scalars['ID'];
23472
23477
  prefs: TrelloBoardPrefs;
@@ -23474,6 +23479,11 @@ export declare type TrelloBoard = {
23474
23479
  viewer?: Maybe<TrelloBoardViewer>;
23475
23480
  workspace?: Maybe<TrelloWorkspace>;
23476
23481
  };
23482
+ export declare type TrelloBoardListsArgs = {
23483
+ after?: Maybe<Scalars['String']>;
23484
+ filter?: Maybe<Scalars['String']>;
23485
+ first?: Maybe<Scalars['Int']>;
23486
+ };
23477
23487
  export declare type TrelloBoardBackground = {
23478
23488
  __typename?: 'TrelloBoardBackground';
23479
23489
  color?: Maybe<Scalars['String']>;
@@ -23531,6 +23541,7 @@ export declare type TrelloCard = {
23531
23541
  id: Scalars['ID'];
23532
23542
  isTemplate?: Maybe<Scalars['Boolean']>;
23533
23543
  lastActivityAt?: Maybe<Scalars['DateTime']>;
23544
+ limits?: Maybe<TrelloCardLimits>;
23534
23545
  location?: Maybe<TrelloCardLocation>;
23535
23546
  name?: Maybe<Scalars['String']>;
23536
23547
  objectId: Scalars['String'];
@@ -23540,14 +23551,29 @@ export declare type TrelloCard = {
23540
23551
  shortLink?: Maybe<Scalars['TrelloShortLink']>;
23541
23552
  shortUrl?: Maybe<Scalars['URL']>;
23542
23553
  startedAt?: Maybe<Scalars['DateTime']>;
23554
+ stickers?: Maybe<TrelloStickerConnection>;
23543
23555
  url?: Maybe<Scalars['URL']>;
23544
23556
  };
23557
+ export declare type TrelloCardStickersArgs = {
23558
+ after?: Maybe<Scalars['String']>;
23559
+ first?: Maybe<Scalars['Int']>;
23560
+ };
23545
23561
  export declare type TrelloCardDueInfo = {
23546
23562
  __typename?: 'TrelloCardDueInfo';
23547
23563
  at?: Maybe<Scalars['DateTime']>;
23548
23564
  complete?: Maybe<Scalars['Boolean']>;
23549
23565
  reminder?: Maybe<Scalars['Int']>;
23550
23566
  };
23567
+ export declare type TrelloCardLimit = {
23568
+ __typename?: 'TrelloCardLimit';
23569
+ perCard?: Maybe<TrelloLimitProps>;
23570
+ };
23571
+ export declare type TrelloCardLimits = {
23572
+ __typename?: 'TrelloCardLimits';
23573
+ attachments?: Maybe<TrelloCardLimit>;
23574
+ checklists?: Maybe<TrelloCardLimit>;
23575
+ stickers?: Maybe<TrelloCardLimit>;
23576
+ };
23551
23577
  export declare type TrelloCardLocation = {
23552
23578
  __typename?: 'TrelloCardLocation';
23553
23579
  address?: Maybe<Scalars['String']>;
@@ -23561,12 +23587,14 @@ export declare enum TrelloCardRole {
23561
23587
  }
23562
23588
  export declare type TrelloLimitProps = {
23563
23589
  __typename?: 'TrelloLimitProps';
23590
+ count?: Maybe<Scalars['Int']>;
23564
23591
  disableAt: Scalars['Int'];
23565
23592
  status: Scalars['String'];
23566
23593
  warnAt: Scalars['Int'];
23567
23594
  };
23568
23595
  export declare type TrelloList = {
23569
23596
  __typename?: 'TrelloList';
23597
+ board?: Maybe<TrelloBoard>;
23570
23598
  closed: Scalars['Boolean'];
23571
23599
  creationMethod: Scalars['String'];
23572
23600
  id: Scalars['ID'];
@@ -23582,6 +23610,17 @@ export declare type TrelloListCardLimits = {
23582
23610
  openPerList?: Maybe<TrelloLimitProps>;
23583
23611
  totalPerList?: Maybe<TrelloLimitProps>;
23584
23612
  };
23613
+ export declare type TrelloListConnection = {
23614
+ __typename?: 'TrelloListConnection';
23615
+ edges?: Maybe<Array<TrelloListEdge>>;
23616
+ nodes?: Maybe<Array<TrelloList>>;
23617
+ pageInfo: PageInfo;
23618
+ };
23619
+ export declare type TrelloListEdge = {
23620
+ __typename?: 'TrelloListEdge';
23621
+ cursor?: Maybe<Scalars['String']>;
23622
+ node?: Maybe<TrelloList>;
23623
+ };
23585
23624
  export declare type TrelloListLimits = {
23586
23625
  __typename?: 'TrelloListLimits';
23587
23626
  cards?: Maybe<TrelloListCardLimits>;
@@ -23645,6 +23684,26 @@ export declare type TrelloScaleProps = {
23645
23684
  url: Scalars['String'];
23646
23685
  width: Scalars['Int'];
23647
23686
  };
23687
+ export declare type TrelloSticker = {
23688
+ __typename?: 'TrelloSticker';
23689
+ left?: Maybe<Scalars['Float']>;
23690
+ objectId: Scalars['ID'];
23691
+ rotate?: Maybe<Scalars['Float']>;
23692
+ top?: Maybe<Scalars['Float']>;
23693
+ url?: Maybe<Scalars['URL']>;
23694
+ zIndex?: Maybe<Scalars['Int']>;
23695
+ };
23696
+ export declare type TrelloStickerConnection = {
23697
+ __typename?: 'TrelloStickerConnection';
23698
+ edges?: Maybe<Array<TrelloStickerEdge>>;
23699
+ nodes?: Maybe<Array<TrelloSticker>>;
23700
+ pageInfo: PageInfo;
23701
+ };
23702
+ export declare type TrelloStickerEdge = {
23703
+ __typename?: 'TrelloStickerEdge';
23704
+ cursor: Scalars['String'];
23705
+ node: TrelloSticker;
23706
+ };
23648
23707
  export declare type TrelloSubscriptionApi = {
23649
23708
  __typename?: 'TrelloSubscriptionApi';
23650
23709
  onBoardUpdated?: Maybe<TrelloBoardUpdated>;
@@ -23760,6 +23819,15 @@ export declare type UpdateAppHostServiceScopesResponsePayload = Payload & {
23760
23819
  app?: Maybe<App>;
23761
23820
  appEnvironmentVersion?: Maybe<AppEnvironmentVersion>;
23762
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
+ };
23763
23831
  export declare type UpdateAtlassianOAuthClientInput = {
23764
23832
  clientID: Scalars['ID'];
23765
23833
  callbacks?: Maybe<Array<Scalars['String']>>;