@forge/cli-shared 3.23.1-next.2 → 3.23.1-next.2-experimental-4b1f9c2

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,21 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.23.1-next.2-experimental-4b1f9c2
4
+
5
+ ### Patch Changes
6
+
7
+ - d7c1db6: Bumping dependencies via Renovate:
8
+
9
+ - @sentry/node
10
+
11
+ - 84bb0de: Bumping dependencies via Renovate:
12
+
13
+ - @sentry/node
14
+
15
+ - c1d7f59: Consistent formatting of forge command suggestions in output
16
+ - Updated dependencies [ea1e909]
17
+ - @forge/manifest@5.5.1-next.0-experimental-4b1f9c2
18
+
3
19
  ## 3.23.1-next.2
4
20
 
5
21
  ### Patch Changes
@@ -14368,6 +14368,7 @@ export declare type GraphStore = {
14368
14368
  contentReferencedEntityInverse?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseConnection>;
14369
14369
  contentReferencedEntityInverseRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
14370
14370
  contentReferencedEntityRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
14371
+ fetchAllRelationships: GraphStoreAllRelationshipsConnection;
14371
14372
  incidentAssociatedPostIncidentReview?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection>;
14372
14373
  incidentAssociatedPostIncidentReviewBatch?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection>;
14373
14374
  incidentAssociatedPostIncidentReviewInverse?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewInverseConnection>;
@@ -14650,6 +14651,9 @@ export declare type GraphStore = {
14650
14651
  versionAssociatedPullRequestInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedPullRequestInverseConnection>;
14651
14652
  versionAssociatedPullRequestInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedPullRequestConnection>;
14652
14653
  versionAssociatedPullRequestRelationship?: Maybe<GraphStoreFullVersionAssociatedPullRequestConnection>;
14654
+ versionAssociatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseConnection>;
14655
+ versionAssociatedRemoteLinkInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedRemoteLinkConnection>;
14656
+ versionAssociatedRemoteLinkRelationship?: Maybe<GraphStoreFullVersionAssociatedRemoteLinkConnection>;
14653
14657
  versionUserAssociatedFeatureFlag?: Maybe<GraphStoreSimplifiedVersionUserAssociatedFeatureFlagConnection>;
14654
14658
  versionUserAssociatedFeatureFlagInverse?: Maybe<GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseConnection>;
14655
14659
  versionUserAssociatedFeatureFlagInverseRelationship?: Maybe<GraphStoreFullVersionUserAssociatedFeatureFlagConnection>;
@@ -14774,6 +14778,12 @@ export declare type GraphStoreContentReferencedEntityRelationshipArgs = {
14774
14778
  first?: InputMaybe<Scalars['Int']['input']>;
14775
14779
  id: Scalars['ID']['input'];
14776
14780
  };
14781
+ export declare type GraphStoreFetchAllRelationshipsArgs = {
14782
+ after?: InputMaybe<Scalars['String']['input']>;
14783
+ first?: InputMaybe<Scalars['Int']['input']>;
14784
+ id: Scalars['ID']['input'];
14785
+ ignoredRelationshipTypes?: InputMaybe<Array<Scalars['String']['input']>>;
14786
+ };
14777
14787
  export declare type GraphStoreIncidentAssociatedPostIncidentReviewArgs = {
14778
14788
  after?: InputMaybe<Scalars['String']['input']>;
14779
14789
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -16242,6 +16252,21 @@ export declare type GraphStoreVersionAssociatedPullRequestRelationshipArgs = {
16242
16252
  first?: InputMaybe<Scalars['Int']['input']>;
16243
16253
  id: Scalars['ID']['input'];
16244
16254
  };
16255
+ export declare type GraphStoreVersionAssociatedRemoteLinkInverseArgs = {
16256
+ after?: InputMaybe<Scalars['String']['input']>;
16257
+ first?: InputMaybe<Scalars['Int']['input']>;
16258
+ id: Scalars['ID']['input'];
16259
+ };
16260
+ export declare type GraphStoreVersionAssociatedRemoteLinkInverseRelationshipArgs = {
16261
+ after?: InputMaybe<Scalars['String']['input']>;
16262
+ first?: InputMaybe<Scalars['Int']['input']>;
16263
+ id: Scalars['ID']['input'];
16264
+ };
16265
+ export declare type GraphStoreVersionAssociatedRemoteLinkRelationshipArgs = {
16266
+ after?: InputMaybe<Scalars['String']['input']>;
16267
+ first?: InputMaybe<Scalars['Int']['input']>;
16268
+ id: Scalars['ID']['input'];
16269
+ };
16245
16270
  export declare type GraphStoreVersionUserAssociatedFeatureFlagArgs = {
16246
16271
  after?: InputMaybe<Scalars['String']['input']>;
16247
16272
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -16282,6 +16307,28 @@ export declare type GraphStoreVulnerabilityAssociatedIssueRelationshipArgs = {
16282
16307
  first?: InputMaybe<Scalars['Int']['input']>;
16283
16308
  id: Scalars['ID']['input'];
16284
16309
  };
16310
+ export declare type GraphStoreAllRelationshipsConnection = {
16311
+ __typename?: 'GraphStoreAllRelationshipsConnection';
16312
+ edges: Array<GraphStoreAllRelationshipsEdge>;
16313
+ pageInfo: PageInfo;
16314
+ };
16315
+ export declare type GraphStoreAllRelationshipsEdge = {
16316
+ __typename?: 'GraphStoreAllRelationshipsEdge';
16317
+ from: GraphStoreAllRelationshipsNode;
16318
+ lastUpdated: Scalars['DateTime']['output'];
16319
+ to: GraphStoreAllRelationshipsNode;
16320
+ type: Scalars['String']['output'];
16321
+ };
16322
+ export declare type GraphStoreAllRelationshipsNode = {
16323
+ __typename?: 'GraphStoreAllRelationshipsNode';
16324
+ fetchAllRelationships: GraphStoreAllRelationshipsConnection;
16325
+ id: Scalars['ID']['output'];
16326
+ };
16327
+ export declare type GraphStoreAllRelationshipsNodeFetchAllRelationshipsArgs = {
16328
+ after?: InputMaybe<Scalars['String']['input']>;
16329
+ first?: InputMaybe<Scalars['Int']['input']>;
16330
+ ignoredRelationshipTypes?: InputMaybe<Array<Scalars['String']['input']>>;
16331
+ };
16285
16332
  export declare type GraphStoreAriFilterInput = {
16286
16333
  is?: InputMaybe<Array<Scalars['String']['input']>>;
16287
16334
  isNot?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -20228,6 +20275,35 @@ export declare type GraphStoreFullVersionAssociatedPullRequestStartNode = {
20228
20275
  id: Scalars['ID']['output'];
20229
20276
  };
20230
20277
  export declare type GraphStoreFullVersionAssociatedPullRequestStartUnion = JiraVersion;
20278
+ export declare type GraphStoreFullVersionAssociatedRemoteLinkConnection = HasPageInfo & {
20279
+ __typename?: 'GraphStoreFullVersionAssociatedRemoteLinkConnection';
20280
+ edges: Array<Maybe<GraphStoreFullVersionAssociatedRemoteLinkEdge>>;
20281
+ nodes: Array<Maybe<GraphStoreFullVersionAssociatedRemoteLinkNode>>;
20282
+ pageInfo: PageInfo;
20283
+ };
20284
+ export declare type GraphStoreFullVersionAssociatedRemoteLinkEdge = {
20285
+ __typename?: 'GraphStoreFullVersionAssociatedRemoteLinkEdge';
20286
+ cursor?: Maybe<Scalars['String']['output']>;
20287
+ node: GraphStoreFullVersionAssociatedRemoteLinkNode;
20288
+ };
20289
+ export declare type GraphStoreFullVersionAssociatedRemoteLinkEndNode = {
20290
+ __typename?: 'GraphStoreFullVersionAssociatedRemoteLinkEndNode';
20291
+ id: Scalars['ID']['output'];
20292
+ };
20293
+ export declare type GraphStoreFullVersionAssociatedRemoteLinkNode = Node & {
20294
+ __typename?: 'GraphStoreFullVersionAssociatedRemoteLinkNode';
20295
+ createdAt: Scalars['DateTime']['output'];
20296
+ from: GraphStoreFullVersionAssociatedRemoteLinkStartNode;
20297
+ id: Scalars['ID']['output'];
20298
+ lastUpdated: Scalars['DateTime']['output'];
20299
+ to: GraphStoreFullVersionAssociatedRemoteLinkEndNode;
20300
+ };
20301
+ export declare type GraphStoreFullVersionAssociatedRemoteLinkStartNode = {
20302
+ __typename?: 'GraphStoreFullVersionAssociatedRemoteLinkStartNode';
20303
+ data?: Maybe<GraphStoreFullVersionAssociatedRemoteLinkStartUnion>;
20304
+ id: Scalars['ID']['output'];
20305
+ };
20306
+ export declare type GraphStoreFullVersionAssociatedRemoteLinkStartUnion = JiraVersion;
20231
20307
  export declare type GraphStoreFullVersionUserAssociatedFeatureFlagConnection = HasPageInfo & {
20232
20308
  __typename?: 'GraphStoreFullVersionUserAssociatedFeatureFlagConnection';
20233
20309
  edges: Array<Maybe<GraphStoreFullVersionUserAssociatedFeatureFlagEdge>>;
@@ -22595,6 +22671,19 @@ export declare type GraphStoreSimplifiedVersionAssociatedPullRequestInverseEdge
22595
22671
  };
22596
22672
  export declare type GraphStoreSimplifiedVersionAssociatedPullRequestInverseUnion = JiraVersion;
22597
22673
  export declare type GraphStoreSimplifiedVersionAssociatedPullRequestUnion = DevOpsPullRequestDetails;
22674
+ export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseConnection = HasPageInfo & {
22675
+ __typename?: 'GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseConnection';
22676
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge>>>;
22677
+ pageInfo: PageInfo;
22678
+ };
22679
+ export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge = {
22680
+ __typename?: 'GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge';
22681
+ createdAt: Scalars['DateTime']['output'];
22682
+ cursor?: Maybe<Scalars['String']['output']>;
22683
+ lastUpdated: Scalars['DateTime']['output'];
22684
+ node?: Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseUnion>;
22685
+ };
22686
+ export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseUnion = JiraVersion;
22598
22687
  export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagConnection = HasPageInfo & {
22599
22688
  __typename?: 'GraphStoreSimplifiedVersionUserAssociatedFeatureFlagConnection';
22600
22689
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionUserAssociatedFeatureFlagEdge>>>;