@forge/cli-shared 3.2.0-next.7 → 3.2.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,22 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - b372c40: Add option to display installations and other tables as JSON
8
+ - 7a27bcd: Display an error when prompting if not run in a terminal
9
+ - 94c798f: Exit with error when a Forge command is not recognised
10
+
11
+ ### Patch Changes
12
+
13
+ - a1c8607: Update debugging instructions when tunneling
14
+ - Updated dependencies [dfc74ba]
15
+ - Updated dependencies [f93ae31]
16
+ - Updated dependencies [05b306b]
17
+ - Updated dependencies [d6ec15d]
18
+ - @forge/manifest@4.4.0
19
+
3
20
  ## 3.2.0-next.7
4
21
 
5
22
  ### Patch Changes
@@ -5749,6 +5749,13 @@ export declare type DevOpsFeatureFlagEdge = {
5749
5749
  cursor?: Maybe<Scalars['String']>;
5750
5750
  node?: Maybe<DevOpsFeatureFlag>;
5751
5751
  };
5752
+ export declare type DevOpsFeatureFlagProvider = {
5753
+ __typename?: 'DevOpsFeatureFlagProvider';
5754
+ id: Scalars['ID'];
5755
+ name?: Maybe<Scalars['String']>;
5756
+ createFeatureFlagTemplateUrl?: Maybe<Scalars['String']>;
5757
+ connectFeatureFlagTemplateUrl?: Maybe<Scalars['String']>;
5758
+ };
5752
5759
  export declare type DevOpsFeatureFlagSummary = {
5753
5760
  __typename?: 'DevOpsFeatureFlagSummary';
5754
5761
  enabled?: Maybe<Scalars['Boolean']>;
@@ -5954,6 +5961,10 @@ export declare type DevOpsProviderLinks = {
5954
5961
  home?: Maybe<Scalars['URL']>;
5955
5962
  listDeploymentsTemplate?: Maybe<Scalars['URL']>;
5956
5963
  };
5964
+ export declare type DevOpsProviders = {
5965
+ __typename?: 'DevOpsProviders';
5966
+ featureFlagProviders?: Maybe<Array<Maybe<DevOpsFeatureFlagProvider>>>;
5967
+ };
5957
5968
  export declare enum DevOpsPullRequestApprovalStatus {
5958
5969
  Approved = "APPROVED",
5959
5970
  Unapproved = "UNAPPROVED"
@@ -6249,6 +6260,7 @@ export declare type DevOpsSummarisedDeployments = {
6249
6260
  export declare type DevOpsSummarisedEntities = {
6250
6261
  __typename?: 'DevOpsSummarisedEntities';
6251
6262
  entityId: Scalars['ID'];
6263
+ providers?: Maybe<DevOpsProviders>;
6252
6264
  summarisedDeployments?: Maybe<DevOpsSummarisedDeployments>;
6253
6265
  summarisedFeatureFlags?: Maybe<DevOpsSummarisedFeatureFlags>;
6254
6266
  };
@@ -13291,6 +13303,7 @@ export declare type JiraVersion = Node & {
13291
13303
  releaseNotesOptionsIssueFields?: Maybe<JiraIssueFieldConnection>;
13292
13304
  nativeReleaseNotesOptionsIssueFields?: Maybe<JiraIssueFieldConnection>;
13293
13305
  releaseNotes?: Maybe<JiraAdf>;
13306
+ devOpsSummarisedEntities?: Maybe<DevOpsSummarisedEntities>;
13294
13307
  releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
13295
13308
  availableSites?: Maybe<JiraReleaseNotesInConfluenceAvailableSitesConnection>;
13296
13309
  relatedWork?: Maybe<JiraVersionRelatedWorkConnection>;
@@ -17774,7 +17787,7 @@ export declare type ShepherdActivityHighlightInput = {
17774
17787
  subject?: Maybe<ShepherdSubjectInput>;
17775
17788
  time: ShepherdTimeInput;
17776
17789
  };
17777
- export declare type ShepherdAlert = {
17790
+ export declare type ShepherdAlert = Node & {
17778
17791
  __typename?: 'ShepherdAlert';
17779
17792
  assignee?: Maybe<ShepherdUser>;
17780
17793
  cloudId?: Maybe<Scalars['ID']>;
@@ -17795,6 +17808,7 @@ export declare enum ShepherdAlertDescriptionType {
17795
17808
  }
17796
17809
  export declare type ShepherdAlertEdge = {
17797
17810
  __typename?: 'ShepherdAlertEdge';
17811
+ cursor?: Maybe<Scalars['String']>;
17798
17812
  node?: Maybe<ShepherdAlert>;
17799
17813
  };
17800
17814
  export declare type ShepherdAlertResult = QueryError | ShepherdAlert;
@@ -17918,11 +17932,6 @@ export declare type ShepherdCreateWebhookInput = {
17918
17932
  status?: Maybe<ShepherdSubscriptionStatus>;
17919
17933
  type?: Maybe<ShepherdWebhookType>;
17920
17934
  };
17921
- export declare type ShepherdDescriptionSection = {
17922
- __typename?: 'ShepherdDescriptionSection';
17923
- text?: Maybe<Scalars['JSON']>;
17924
- type?: Maybe<ShepherdAlertDescriptionType>;
17925
- };
17926
17935
  export declare type ShepherdDescriptionTemplate = {
17927
17936
  __typename?: 'ShepherdDescriptionTemplate';
17928
17937
  text?: Maybe<Scalars['JSON']>;
@@ -17934,9 +17943,10 @@ export declare type ShepherdEmailConnection = {
17934
17943
  };
17935
17944
  export declare type ShepherdEmailEdge = ShepherdSubscriptionEdge & {
17936
17945
  __typename?: 'ShepherdEmailEdge';
17946
+ cursor?: Maybe<Scalars['String']>;
17937
17947
  node?: Maybe<ShepherdEmailSubscription>;
17938
17948
  };
17939
- export declare type ShepherdEmailSubscription = ShepherdSubscription & {
17949
+ export declare type ShepherdEmailSubscription = Node & ShepherdSubscription & {
17940
17950
  __typename?: 'ShepherdEmailSubscription';
17941
17951
  createdBy: Scalars['String'];
17942
17952
  createdOn: Scalars['DateTime'];
@@ -18018,6 +18028,7 @@ export declare type ShepherdQueryShepherdAlertArgs = {
18018
18028
  id: Scalars['ID'];
18019
18029
  };
18020
18030
  export declare type ShepherdQueryShepherdAlertsArgs = {
18031
+ aaid?: Maybe<Scalars['ID']>;
18021
18032
  orgId: Scalars['ID'];
18022
18033
  };
18023
18034
  export declare type ShepherdQueryShepherdOrganizationArgs = {
@@ -18032,9 +18043,10 @@ export declare enum ShepherdQueryErrorType {
18032
18043
  }
18033
18044
  export declare type ShepherdSlackEdge = ShepherdSubscriptionEdge & {
18034
18045
  __typename?: 'ShepherdSlackEdge';
18046
+ cursor?: Maybe<Scalars['String']>;
18035
18047
  node?: Maybe<ShepherdSlackSubscription>;
18036
18048
  };
18037
- export declare type ShepherdSlackSubscription = ShepherdSubscription & {
18049
+ export declare type ShepherdSlackSubscription = Node & ShepherdSubscription & {
18038
18050
  __typename?: 'ShepherdSlackSubscription';
18039
18051
  callbackURL: Scalars['String'];
18040
18052
  channelId: Scalars['String'];
@@ -18070,6 +18082,7 @@ export declare type ShepherdSubscriptionConnection = {
18070
18082
  edges?: Maybe<Array<Maybe<ShepherdSubscriptionEdge>>>;
18071
18083
  };
18072
18084
  export declare type ShepherdSubscriptionEdge = {
18085
+ cursor?: Maybe<Scalars['String']>;
18073
18086
  node?: Maybe<ShepherdSubscription>;
18074
18087
  };
18075
18088
  export declare enum ShepherdSubscriptionStatus {
@@ -18077,11 +18090,6 @@ export declare enum ShepherdSubscriptionStatus {
18077
18090
  Inactive = "INACTIVE"
18078
18091
  }
18079
18092
  export declare type ShepherdSubscriptionsResult = QueryError | ShepherdEmailConnection | ShepherdSubscriptionConnection | ShepherdWebhookConnection;
18080
- export declare type ShepherdTestSubscriptionError = {
18081
- __typename?: 'ShepherdTestSubscriptionError';
18082
- reason?: Maybe<Scalars['String']>;
18083
- statusCode?: Maybe<Scalars['Int']>;
18084
- };
18085
18093
  export declare type ShepherdTestSubscriptionPayload = Payload & {
18086
18094
  __typename?: 'ShepherdTestSubscriptionPayload';
18087
18095
  errors?: Maybe<Array<MutationError>>;
@@ -18147,6 +18155,7 @@ export declare type ShepherdUpdateWebhookInput = {
18147
18155
  export declare type ShepherdUser = {
18148
18156
  __typename?: 'ShepherdUser';
18149
18157
  aaid: Scalars['ID'];
18158
+ createdOn?: Maybe<Scalars['DateTime']>;
18150
18159
  user?: Maybe<User>;
18151
18160
  };
18152
18161
  export declare type ShepherdWebhookConnection = {
@@ -18155,9 +18164,10 @@ export declare type ShepherdWebhookConnection = {
18155
18164
  };
18156
18165
  export declare type ShepherdWebhookEdge = ShepherdSubscriptionEdge & {
18157
18166
  __typename?: 'ShepherdWebhookEdge';
18167
+ cursor?: Maybe<Scalars['String']>;
18158
18168
  node?: Maybe<ShepherdWebhookSubscription>;
18159
18169
  };
18160
- export declare type ShepherdWebhookSubscription = ShepherdSubscription & {
18170
+ export declare type ShepherdWebhookSubscription = Node & ShepherdSubscription & {
18161
18171
  __typename?: 'ShepherdWebhookSubscription';
18162
18172
  authToken: Scalars['String'];
18163
18173
  callbackURL: Scalars['String'];