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

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,13 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.11.2-next.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 4aaab2f2: Added logs for when tunnel fails due to the docker daemon not being started
8
+ - Updated dependencies [f53e1b42]
9
+ - @forge/manifest@4.12.0-next.3
10
+
3
11
  ## 3.11.2-next.3
4
12
 
5
13
  ### 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'];
@@ -23501,8 +23525,40 @@ export declare type TrelloBoardViewer = {
23501
23525
  };
23502
23526
  export declare type TrelloCard = {
23503
23527
  __typename?: 'TrelloCard';
23528
+ closed?: Maybe<Scalars['Boolean']>;
23529
+ description?: Maybe<Scalars['String']>;
23530
+ due?: Maybe<TrelloCardDueInfo>;
23531
+ id: Scalars['ID'];
23532
+ isTemplate?: Maybe<Scalars['Boolean']>;
23533
+ lastActivityAt?: Maybe<Scalars['DateTime']>;
23534
+ location?: Maybe<TrelloCardLocation>;
23535
+ name?: Maybe<Scalars['String']>;
23504
23536
  objectId: Scalars['String'];
23537
+ position?: Maybe<Scalars['Float']>;
23538
+ role?: Maybe<TrelloCardRole>;
23539
+ shortId?: Maybe<Scalars['Int']>;
23540
+ shortLink?: Maybe<Scalars['TrelloShortLink']>;
23541
+ shortUrl?: Maybe<Scalars['URL']>;
23542
+ startedAt?: Maybe<Scalars['DateTime']>;
23543
+ url?: Maybe<Scalars['URL']>;
23544
+ };
23545
+ export declare type TrelloCardDueInfo = {
23546
+ __typename?: 'TrelloCardDueInfo';
23547
+ at?: Maybe<Scalars['DateTime']>;
23548
+ complete?: Maybe<Scalars['Boolean']>;
23549
+ reminder?: Maybe<Scalars['Int']>;
23505
23550
  };
23551
+ export declare type TrelloCardLocation = {
23552
+ __typename?: 'TrelloCardLocation';
23553
+ address?: Maybe<Scalars['String']>;
23554
+ name?: Maybe<Scalars['String']>;
23555
+ };
23556
+ export declare enum TrelloCardRole {
23557
+ Board = "BOARD",
23558
+ Link = "LINK",
23559
+ Mirror = "MIRROR",
23560
+ Separator = "SEPARATOR"
23561
+ }
23506
23562
  export declare type TrelloLimitProps = {
23507
23563
  __typename?: 'TrelloLimitProps';
23508
23564
  disableAt: Scalars['Int'];
@@ -23519,6 +23575,7 @@ export declare type TrelloList = {
23519
23575
  objectId: Scalars['String'];
23520
23576
  position: Scalars['Int'];
23521
23577
  softLimit?: Maybe<Scalars['Int']>;
23578
+ viewer?: Maybe<TrelloListViewer>;
23522
23579
  };
23523
23580
  export declare type TrelloListCardLimits = {
23524
23581
  __typename?: 'TrelloListCardLimits';
@@ -23550,6 +23607,10 @@ export declare type TrelloListUpdatedDeltas = {
23550
23607
  name?: Maybe<Scalars['Boolean']>;
23551
23608
  position?: Maybe<Scalars['Boolean']>;
23552
23609
  };
23610
+ export declare type TrelloListViewer = {
23611
+ __typename?: 'TrelloListViewer';
23612
+ subscribed?: Maybe<Scalars['Boolean']>;
23613
+ };
23553
23614
  export declare type TrelloQueryApi = {
23554
23615
  __typename?: 'TrelloQueryApi';
23555
23616
  board?: Maybe<TrelloBoard>;
@@ -23634,6 +23695,7 @@ export declare type TrelloWorkspace = {
23634
23695
  __typename?: 'TrelloWorkspace';
23635
23696
  displayName: Scalars['String'];
23636
23697
  id: Scalars['ID'];
23698
+ objectId: Scalars['ID'];
23637
23699
  };
23638
23700
  export declare type TunnelDefinitionsInput = {
23639
23701
  faasTunnelUrl?: Maybe<Scalars['URL']>;