@forge/cli-shared 3.23.1-next.4 → 3.23.2-next.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,30 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.23.2-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [0166203]
|
|
8
|
+
- @forge/manifest@5.5.2-next.0
|
|
9
|
+
|
|
10
|
+
## 3.23.1
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- d7c1db6: Bumping dependencies via Renovate:
|
|
15
|
+
|
|
16
|
+
- @sentry/node
|
|
17
|
+
|
|
18
|
+
- 751ebde: Downgrade Sentry to work around a bug
|
|
19
|
+
- 84bb0de: Bumping dependencies via Renovate:
|
|
20
|
+
|
|
21
|
+
- @sentry/node
|
|
22
|
+
|
|
23
|
+
- c1d7f59: Consistent formatting of forge command suggestions in output
|
|
24
|
+
- 217762c: Use absolute paths for ngrok config
|
|
25
|
+
- Updated dependencies [ea1e909]
|
|
26
|
+
- @forge/manifest@5.5.1
|
|
27
|
+
|
|
3
28
|
## 3.23.1-next.4
|
|
4
29
|
|
|
5
30
|
### 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';
|
|
@@ -23041,6 +23051,11 @@ export declare type GrowthRecJiraTemplateRecommendation = GrowthRecRecommendatio
|
|
|
23041
23051
|
entityId: Scalars['ID']['output'];
|
|
23042
23052
|
reasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
23043
23053
|
};
|
|
23054
|
+
export declare type GrowthRecNonHydratedRecommendation = GrowthRecRecommendation & {
|
|
23055
|
+
__typename?: 'GrowthRecNonHydratedRecommendation';
|
|
23056
|
+
entityId: Scalars['ID']['output'];
|
|
23057
|
+
reasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
23058
|
+
};
|
|
23044
23059
|
export declare type GrowthRecProductRecommendation = GrowthRecRecommendation & {
|
|
23045
23060
|
__typename?: 'GrowthRecProductRecommendation';
|
|
23046
23061
|
entityId: Scalars['ID']['output'];
|
|
@@ -40167,6 +40182,7 @@ export declare type SearchExternalFilter = {
|
|
|
40167
40182
|
export declare type SearchFilterInput = {
|
|
40168
40183
|
confluenceFilters?: InputMaybe<SearchConfluenceFilter>;
|
|
40169
40184
|
entities: Array<Scalars['String']['input']>;
|
|
40185
|
+
externalFilters?: InputMaybe<SearchExternalFilter>;
|
|
40170
40186
|
jiraFilters?: InputMaybe<SearchJiraFilter>;
|
|
40171
40187
|
locations: Array<Scalars['String']['input']>;
|
|
40172
40188
|
};
|
|
@@ -40803,7 +40819,7 @@ export declare type ShepherdCreateTestAlertPayload = Payload & {
|
|
|
40803
40819
|
success: Scalars['Boolean']['output'];
|
|
40804
40820
|
};
|
|
40805
40821
|
export declare type ShepherdCreateWebhookInput = {
|
|
40806
|
-
|
|
40822
|
+
authHeader?: InputMaybe<Scalars['String']['input']>;
|
|
40807
40823
|
callbackURL: Scalars['URL']['input'];
|
|
40808
40824
|
destinationType?: InputMaybe<ShepherdWebhookDestinationType>;
|
|
40809
40825
|
status?: InputMaybe<ShepherdSubscriptionStatus>;
|
|
@@ -41202,6 +41218,7 @@ export declare type ShepherdUpdateSubscriptionPayload = Payload & {
|
|
|
41202
41218
|
success: Scalars['Boolean']['output'];
|
|
41203
41219
|
};
|
|
41204
41220
|
export declare type ShepherdUpdateWebhookInput = {
|
|
41221
|
+
authHeader?: InputMaybe<Scalars['String']['input']>;
|
|
41205
41222
|
callbackURL?: InputMaybe<Scalars['URL']['input']>;
|
|
41206
41223
|
destinationType?: InputMaybe<ShepherdWebhookDestinationType>;
|
|
41207
41224
|
status?: InputMaybe<ShepherdSubscriptionStatus>;
|
|
@@ -41228,7 +41245,7 @@ export declare type ShepherdWebhookEdge = ShepherdSubscriptionEdge & {
|
|
|
41228
41245
|
};
|
|
41229
41246
|
export declare type ShepherdWebhookSubscription = Node & ShepherdSubscription & {
|
|
41230
41247
|
__typename?: 'ShepherdWebhookSubscription';
|
|
41231
|
-
|
|
41248
|
+
authHeaderTruncated?: Maybe<Scalars['String']['output']>;
|
|
41232
41249
|
callbackURL: Scalars['String']['output'];
|
|
41233
41250
|
createdBy: Scalars['String']['output'];
|
|
41234
41251
|
createdOn: Scalars['DateTime']['output'];
|