@forge/cli-shared 3.11.2-next.3 → 3.11.2-next.5

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,20 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.11.2-next.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [96f9f6d8]
8
+ - @forge/manifest@4.12.0-next.4
9
+
10
+ ## 3.11.2-next.4
11
+
12
+ ### Patch Changes
13
+
14
+ - 4aaab2f2: Added logs for when tunnel fails due to the docker daemon not being started
15
+ - Updated dependencies [f53e1b42]
16
+ - @forge/manifest@4.12.0-next.3
17
+
3
18
  ## 3.11.2-next.3
4
19
 
5
20
  ### Patch Changes
@@ -2110,6 +2110,7 @@ export declare type CompassCatalogMutationApi = {
2110
2110
  createComponentFromTemplate?: Maybe<CreateCompassComponentFromTemplatePayload>;
2111
2111
  createStarredComponent?: Maybe<CreateCompassStarredComponentPayload>;
2112
2112
  deleteStarredComponent?: Maybe<DeleteCompassStarredComponentPayload>;
2113
+ createWebhook?: Maybe<CompassCreateWebhookPayload>;
2113
2114
  };
2114
2115
  export declare type CompassCatalogMutationApiCreateComponentArgs = {
2115
2116
  cloudId: Scalars['ID'];
@@ -2284,6 +2285,9 @@ export declare type CompassCatalogMutationApiCreateStarredComponentArgs = {
2284
2285
  export declare type CompassCatalogMutationApiDeleteStarredComponentArgs = {
2285
2286
  input: DeleteCompassStarredComponentInput;
2286
2287
  };
2288
+ export declare type CompassCatalogMutationApiCreateWebhookArgs = {
2289
+ input: CompassCreateWebhookInput;
2290
+ };
2287
2291
  export declare type CompassCatalogQueryApi = {
2288
2292
  __typename?: 'CompassCatalogQueryApi';
2289
2293
  component?: Maybe<CompassComponentResult>;
@@ -2714,6 +2718,16 @@ export declare type CompassCreateTeamCheckinPayload = Payload & {
2714
2718
  export declare type CompassCreateTeamCheckinResponseRichText = {
2715
2719
  adf?: Maybe<Scalars['String']>;
2716
2720
  };
2721
+ export declare type CompassCreateWebhookInput = {
2722
+ url: Scalars['String'];
2723
+ componentId: Scalars['ID'];
2724
+ };
2725
+ export declare type CompassCreateWebhookPayload = Payload & {
2726
+ __typename?: 'CompassCreateWebhookPayload';
2727
+ success: Scalars['Boolean'];
2728
+ errors?: Maybe<Array<MutationError>>;
2729
+ webhookDetails?: Maybe<CompassWebhook>;
2730
+ };
2717
2731
  export declare enum CompassCriteriaBooleanComparatorOptions {
2718
2732
  Equals = "EQUALS"
2719
2733
  }
@@ -3888,6 +3902,11 @@ export declare type CompassViewerSubscription = {
3888
3902
  __typename?: 'CompassViewerSubscription';
3889
3903
  subscribed: Scalars['Boolean'];
3890
3904
  };
3905
+ export declare type CompassWebhook = {
3906
+ __typename?: 'CompassWebhook';
3907
+ id: Scalars['ID'];
3908
+ url: Scalars['String'];
3909
+ };
3891
3910
  export declare type CompatibleAtlassianCloudProduct = CompatibleAtlassianProduct & {
3892
3911
  __typename?: 'CompatibleAtlassianCloudProduct';
3893
3912
  id: Scalars['ID'];
@@ -14825,6 +14844,7 @@ export declare type JiraServiceManagementCreateRequestTypeFromTemplateInput = {
14825
14844
  requestTypeGroup?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplateRequestTypeGroupInput>;
14826
14845
  requestForm: JiraServiceManagementCreateRequestTypeFromTemplateRequestFormInput;
14827
14846
  workflow: JiraServiceManagementCreateRequestTypeFromTemplateWorkflowInput;
14847
+ practice?: Maybe<JiraServiceManagementPractice>;
14828
14848
  clientMutationId: Scalars['String'];
14829
14849
  };
14830
14850
  export declare type JiraServiceManagementCreateRequestTypeFromTemplatePayload = Payload & {
@@ -16345,6 +16365,10 @@ export declare type JiraVersionStatistics = {
16345
16365
  percentageEstimated?: Maybe<Scalars['Float']>;
16346
16366
  notEstimated?: Maybe<Scalars['Int']>;
16347
16367
  percentageUnestimated?: Maybe<Scalars['Float']>;
16368
+ totalIssueCount?: Maybe<Scalars['Int']>;
16369
+ toDo?: Maybe<Scalars['Int']>;
16370
+ inProgress?: Maybe<Scalars['Int']>;
16371
+ done?: Maybe<Scalars['Int']>;
16348
16372
  };
16349
16373
  export declare enum JiraVersionStatus {
16350
16374
  Released = "RELEASED",
@@ -23094,7 +23118,7 @@ export declare type TestingActivityItem = Node & {
23094
23118
  };
23095
23119
  export declare type TestingSubscription = {
23096
23120
  __typename?: 'TestingSubscription';
23097
- onTestingActivityItemUpdate?: Maybe<Node>;
23121
+ onTestingActivityItemUpdate?: Maybe<TestingActivityItem>;
23098
23122
  };
23099
23123
  export declare type TestingSubscriptionOnTestingActivityItemUpdateArgs = {
23100
23124
  issueId: Scalars['ID'];
@@ -23443,6 +23467,7 @@ export declare type TrelloBoard = {
23443
23467
  galleryInfo?: Maybe<TrelloTemplateGalleryItemInfo>;
23444
23468
  id: Scalars['ID'];
23445
23469
  lastActivityAt?: Maybe<Scalars['DateTime']>;
23470
+ lists?: Maybe<TrelloListConnection>;
23446
23471
  name: Scalars['String'];
23447
23472
  objectId: Scalars['ID'];
23448
23473
  prefs: TrelloBoardPrefs;
@@ -23450,6 +23475,11 @@ export declare type TrelloBoard = {
23450
23475
  viewer?: Maybe<TrelloBoardViewer>;
23451
23476
  workspace?: Maybe<TrelloWorkspace>;
23452
23477
  };
23478
+ export declare type TrelloBoardListsArgs = {
23479
+ after?: Maybe<Scalars['String']>;
23480
+ filter?: Maybe<Scalars['String']>;
23481
+ first?: Maybe<Scalars['Int']>;
23482
+ };
23453
23483
  export declare type TrelloBoardBackground = {
23454
23484
  __typename?: 'TrelloBoardBackground';
23455
23485
  color?: Maybe<Scalars['String']>;
@@ -23501,16 +23531,66 @@ export declare type TrelloBoardViewer = {
23501
23531
  };
23502
23532
  export declare type TrelloCard = {
23503
23533
  __typename?: 'TrelloCard';
23534
+ closed?: Maybe<Scalars['Boolean']>;
23535
+ description?: Maybe<Scalars['String']>;
23536
+ due?: Maybe<TrelloCardDueInfo>;
23537
+ id: Scalars['ID'];
23538
+ isTemplate?: Maybe<Scalars['Boolean']>;
23539
+ lastActivityAt?: Maybe<Scalars['DateTime']>;
23540
+ limits?: Maybe<TrelloCardLimits>;
23541
+ location?: Maybe<TrelloCardLocation>;
23542
+ name?: Maybe<Scalars['String']>;
23504
23543
  objectId: Scalars['String'];
23544
+ position?: Maybe<Scalars['Float']>;
23545
+ role?: Maybe<TrelloCardRole>;
23546
+ shortId?: Maybe<Scalars['Int']>;
23547
+ shortLink?: Maybe<Scalars['TrelloShortLink']>;
23548
+ shortUrl?: Maybe<Scalars['URL']>;
23549
+ startedAt?: Maybe<Scalars['DateTime']>;
23550
+ stickers?: Maybe<TrelloStickerConnection>;
23551
+ url?: Maybe<Scalars['URL']>;
23505
23552
  };
23553
+ export declare type TrelloCardStickersArgs = {
23554
+ after?: Maybe<Scalars['String']>;
23555
+ first?: Maybe<Scalars['Int']>;
23556
+ };
23557
+ export declare type TrelloCardDueInfo = {
23558
+ __typename?: 'TrelloCardDueInfo';
23559
+ at?: Maybe<Scalars['DateTime']>;
23560
+ complete?: Maybe<Scalars['Boolean']>;
23561
+ reminder?: Maybe<Scalars['Int']>;
23562
+ };
23563
+ export declare type TrelloCardLimit = {
23564
+ __typename?: 'TrelloCardLimit';
23565
+ perCard?: Maybe<TrelloLimitProps>;
23566
+ };
23567
+ export declare type TrelloCardLimits = {
23568
+ __typename?: 'TrelloCardLimits';
23569
+ attachments?: Maybe<TrelloCardLimit>;
23570
+ checklists?: Maybe<TrelloCardLimit>;
23571
+ stickers?: Maybe<TrelloCardLimit>;
23572
+ };
23573
+ export declare type TrelloCardLocation = {
23574
+ __typename?: 'TrelloCardLocation';
23575
+ address?: Maybe<Scalars['String']>;
23576
+ name?: Maybe<Scalars['String']>;
23577
+ };
23578
+ export declare enum TrelloCardRole {
23579
+ Board = "BOARD",
23580
+ Link = "LINK",
23581
+ Mirror = "MIRROR",
23582
+ Separator = "SEPARATOR"
23583
+ }
23506
23584
  export declare type TrelloLimitProps = {
23507
23585
  __typename?: 'TrelloLimitProps';
23586
+ count?: Maybe<Scalars['Int']>;
23508
23587
  disableAt: Scalars['Int'];
23509
23588
  status: Scalars['String'];
23510
23589
  warnAt: Scalars['Int'];
23511
23590
  };
23512
23591
  export declare type TrelloList = {
23513
23592
  __typename?: 'TrelloList';
23593
+ board?: Maybe<TrelloBoard>;
23514
23594
  closed: Scalars['Boolean'];
23515
23595
  creationMethod: Scalars['String'];
23516
23596
  id: Scalars['ID'];
@@ -23519,12 +23599,24 @@ export declare type TrelloList = {
23519
23599
  objectId: Scalars['String'];
23520
23600
  position: Scalars['Int'];
23521
23601
  softLimit?: Maybe<Scalars['Int']>;
23602
+ viewer?: Maybe<TrelloListViewer>;
23522
23603
  };
23523
23604
  export declare type TrelloListCardLimits = {
23524
23605
  __typename?: 'TrelloListCardLimits';
23525
23606
  openPerList?: Maybe<TrelloLimitProps>;
23526
23607
  totalPerList?: Maybe<TrelloLimitProps>;
23527
23608
  };
23609
+ export declare type TrelloListConnection = {
23610
+ __typename?: 'TrelloListConnection';
23611
+ edges?: Maybe<Array<TrelloListEdge>>;
23612
+ nodes?: Maybe<Array<TrelloList>>;
23613
+ pageInfo: PageInfo;
23614
+ };
23615
+ export declare type TrelloListEdge = {
23616
+ __typename?: 'TrelloListEdge';
23617
+ cursor?: Maybe<Scalars['String']>;
23618
+ node?: Maybe<TrelloList>;
23619
+ };
23528
23620
  export declare type TrelloListLimits = {
23529
23621
  __typename?: 'TrelloListLimits';
23530
23622
  cards?: Maybe<TrelloListCardLimits>;
@@ -23550,6 +23642,10 @@ export declare type TrelloListUpdatedDeltas = {
23550
23642
  name?: Maybe<Scalars['Boolean']>;
23551
23643
  position?: Maybe<Scalars['Boolean']>;
23552
23644
  };
23645
+ export declare type TrelloListViewer = {
23646
+ __typename?: 'TrelloListViewer';
23647
+ subscribed?: Maybe<Scalars['Boolean']>;
23648
+ };
23553
23649
  export declare type TrelloQueryApi = {
23554
23650
  __typename?: 'TrelloQueryApi';
23555
23651
  board?: Maybe<TrelloBoard>;
@@ -23584,6 +23680,26 @@ export declare type TrelloScaleProps = {
23584
23680
  url: Scalars['String'];
23585
23681
  width: Scalars['Int'];
23586
23682
  };
23683
+ export declare type TrelloSticker = {
23684
+ __typename?: 'TrelloSticker';
23685
+ left?: Maybe<Scalars['Float']>;
23686
+ objectId: Scalars['ID'];
23687
+ rotate?: Maybe<Scalars['Float']>;
23688
+ top?: Maybe<Scalars['Float']>;
23689
+ url?: Maybe<Scalars['URL']>;
23690
+ zIndex?: Maybe<Scalars['Int']>;
23691
+ };
23692
+ export declare type TrelloStickerConnection = {
23693
+ __typename?: 'TrelloStickerConnection';
23694
+ edges?: Maybe<Array<TrelloStickerEdge>>;
23695
+ nodes?: Maybe<Array<TrelloSticker>>;
23696
+ pageInfo: PageInfo;
23697
+ };
23698
+ export declare type TrelloStickerEdge = {
23699
+ __typename?: 'TrelloStickerEdge';
23700
+ cursor: Scalars['String'];
23701
+ node: TrelloSticker;
23702
+ };
23587
23703
  export declare type TrelloSubscriptionApi = {
23588
23704
  __typename?: 'TrelloSubscriptionApi';
23589
23705
  onBoardUpdated?: Maybe<TrelloBoardUpdated>;
@@ -23634,6 +23750,7 @@ export declare type TrelloWorkspace = {
23634
23750
  __typename?: 'TrelloWorkspace';
23635
23751
  displayName: Scalars['String'];
23636
23752
  id: Scalars['ID'];
23753
+ objectId: Scalars['ID'];
23637
23754
  };
23638
23755
  export declare type TunnelDefinitionsInput = {
23639
23756
  faasTunnelUrl?: Maybe<Scalars['URL']>;