@forge/cli-shared 3.23.1-next.4 → 3.23.1
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,23 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.23.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- d7c1db6: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- @sentry/node
|
|
10
|
+
|
|
11
|
+
- 751ebde: Downgrade Sentry to work around a bug
|
|
12
|
+
- 84bb0de: Bumping dependencies via Renovate:
|
|
13
|
+
|
|
14
|
+
- @sentry/node
|
|
15
|
+
|
|
16
|
+
- c1d7f59: Consistent formatting of forge command suggestions in output
|
|
17
|
+
- 217762c: Use absolute paths for ngrok config
|
|
18
|
+
- Updated dependencies [ea1e909]
|
|
19
|
+
- @forge/manifest@5.5.1
|
|
20
|
+
|
|
3
21
|
## 3.23.1-next.4
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
|
@@ -17632,6 +17632,7 @@ export declare type GraphStoreFullIssueAssociatedDeploymentNode = Node & {
|
|
|
17632
17632
|
export declare type GraphStoreFullIssueAssociatedDeploymentRelationshipObjectMetadataOutput = {
|
|
17633
17633
|
__typename?: 'GraphStoreFullIssueAssociatedDeploymentRelationshipObjectMetadataOutput';
|
|
17634
17634
|
author?: Maybe<GraphStoreFullIssueAssociatedDeploymentAuthorOutput>;
|
|
17635
|
+
deploymentLastUpdated?: Maybe<Scalars['Long']['output']>;
|
|
17635
17636
|
environmentType?: Maybe<GraphStoreFullIssueAssociatedDeploymentEnvironmentTypeOutput>;
|
|
17636
17637
|
state?: Maybe<GraphStoreFullIssueAssociatedDeploymentDeploymentStateOutput>;
|
|
17637
17638
|
};
|
|
@@ -18536,6 +18537,7 @@ export declare type GraphStoreFullProjectAssociatedDeploymentRelationshipMetadat
|
|
|
18536
18537
|
export declare type GraphStoreFullProjectAssociatedDeploymentRelationshipObjectMetadataOutput = {
|
|
18537
18538
|
__typename?: 'GraphStoreFullProjectAssociatedDeploymentRelationshipObjectMetadataOutput';
|
|
18538
18539
|
author?: Maybe<GraphStoreFullProjectAssociatedDeploymentAuthorOutput>;
|
|
18540
|
+
deploymentLastUpdated?: Maybe<Scalars['Long']['output']>;
|
|
18539
18541
|
environmentType?: Maybe<GraphStoreFullProjectAssociatedDeploymentEnvironmentTypeOutput>;
|
|
18540
18542
|
state?: Maybe<GraphStoreFullProjectAssociatedDeploymentDeploymentStateOutput>;
|
|
18541
18543
|
};
|
|
@@ -20323,11 +20325,13 @@ export declare type GraphStoreFullVersionAssociatedRemoteLinkStartNode = {
|
|
|
20323
20325
|
id: Scalars['ID']['output'];
|
|
20324
20326
|
};
|
|
20325
20327
|
export declare type GraphStoreFullVersionAssociatedRemoteLinkStartUnion = JiraVersion;
|
|
20326
|
-
export declare type GraphStoreFullVersionUserAssociatedFeatureFlagConnection = HasPageInfo & {
|
|
20328
|
+
export declare type GraphStoreFullVersionUserAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
20327
20329
|
__typename?: 'GraphStoreFullVersionUserAssociatedFeatureFlagConnection';
|
|
20328
20330
|
edges: Array<Maybe<GraphStoreFullVersionUserAssociatedFeatureFlagEdge>>;
|
|
20331
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
20329
20332
|
nodes: Array<Maybe<GraphStoreFullVersionUserAssociatedFeatureFlagNode>>;
|
|
20330
20333
|
pageInfo: PageInfo;
|
|
20334
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
20331
20335
|
};
|
|
20332
20336
|
export declare type GraphStoreFullVersionUserAssociatedFeatureFlagEdge = {
|
|
20333
20337
|
__typename?: 'GraphStoreFullVersionUserAssociatedFeatureFlagEdge';
|
|
@@ -20657,6 +20661,7 @@ export declare type GraphStoreProjectAssociatedDeploymentConditionalFilterInput
|
|
|
20657
20661
|
relationship_statusAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
20658
20662
|
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
20659
20663
|
to_author?: InputMaybe<GraphStoreProjectAssociatedDeploymentAuthorFilterInput>;
|
|
20664
|
+
to_deploymentLastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
20660
20665
|
to_environmentType?: InputMaybe<GraphStoreProjectAssociatedDeploymentEnvironmentTypeFilterInput>;
|
|
20661
20666
|
to_state?: InputMaybe<GraphStoreProjectAssociatedDeploymentDeploymentStateFilterInput>;
|
|
20662
20667
|
};
|
|
@@ -20704,6 +20709,7 @@ export declare type GraphStoreProjectAssociatedDeploymentSortInput = {
|
|
|
20704
20709
|
relationship_statusAri?: InputMaybe<GraphStoreSortInput>;
|
|
20705
20710
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
20706
20711
|
to_author?: InputMaybe<GraphStoreProjectAssociatedDeploymentAuthorSortInput>;
|
|
20712
|
+
to_deploymentLastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
20707
20713
|
to_environmentType?: InputMaybe<GraphStoreSortInput>;
|
|
20708
20714
|
to_state?: InputMaybe<GraphStoreSortInput>;
|
|
20709
20715
|
};
|
|
@@ -22703,10 +22709,12 @@ export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge =
|
|
|
22703
22709
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseUnion>;
|
|
22704
22710
|
};
|
|
22705
22711
|
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseUnion = JiraVersion;
|
|
22706
|
-
export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagConnection = HasPageInfo & {
|
|
22712
|
+
export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
22707
22713
|
__typename?: 'GraphStoreSimplifiedVersionUserAssociatedFeatureFlagConnection';
|
|
22708
22714
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionUserAssociatedFeatureFlagEdge>>>;
|
|
22715
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
22709
22716
|
pageInfo: PageInfo;
|
|
22717
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
22710
22718
|
};
|
|
22711
22719
|
export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagEdge = {
|
|
22712
22720
|
__typename?: 'GraphStoreSimplifiedVersionUserAssociatedFeatureFlagEdge';
|
|
@@ -22715,10 +22723,12 @@ export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagEdge = {
|
|
|
22715
22723
|
lastUpdated: Scalars['DateTime']['output'];
|
|
22716
22724
|
node?: Maybe<GraphStoreSimplifiedVersionUserAssociatedFeatureFlagUnion>;
|
|
22717
22725
|
};
|
|
22718
|
-
export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseConnection = HasPageInfo & {
|
|
22726
|
+
export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseConnection = HasPageInfo & HasTotal & {
|
|
22719
22727
|
__typename?: 'GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseConnection';
|
|
22720
22728
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseEdge>>>;
|
|
22729
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
22721
22730
|
pageInfo: PageInfo;
|
|
22731
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
22722
22732
|
};
|
|
22723
22733
|
export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseEdge = {
|
|
22724
22734
|
__typename?: 'GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseEdge';
|