@forge/cli-shared 3.23.1-next.3 → 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 +24 -0
- package/out/graphql/graphql-types.d.ts +24 -10
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/ui/text.d.ts +4 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +5 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
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
|
+
|
|
21
|
+
## 3.23.1-next.4
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- 217762c: Use absolute paths for ngrok config
|
|
26
|
+
|
|
3
27
|
## 3.23.1-next.3
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
|
@@ -4842,6 +4842,9 @@ export declare type CompassScorecardCriteriaScoreStatisticsHistoriesArgs = {
|
|
|
4842
4842
|
export declare type CompassScorecardScorecardScoreArgs = {
|
|
4843
4843
|
query?: InputMaybe<CompassScorecardScoreQuery>;
|
|
4844
4844
|
};
|
|
4845
|
+
export declare type CompassScorecardScorecardScoreDurationStatisticsArgs = {
|
|
4846
|
+
query?: InputMaybe<CompassScorecardScoreDurationStatisticsQuery>;
|
|
4847
|
+
};
|
|
4845
4848
|
export declare type CompassScorecardScorecardScoreStatisticsHistoriesArgs = {
|
|
4846
4849
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
4847
4850
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -5033,6 +5036,13 @@ export declare type CompassScorecardScoreDurationStatistics = {
|
|
|
5033
5036
|
__typename?: 'CompassScorecardScoreDurationStatistics';
|
|
5034
5037
|
durationStatistics?: Maybe<Array<CompassScorecardScoreDurationStatistic>>;
|
|
5035
5038
|
};
|
|
5039
|
+
export declare type CompassScorecardScoreDurationStatisticsQuery = {
|
|
5040
|
+
filter?: InputMaybe<CompassScorecardScoreDurationStatisticsQueryFilter>;
|
|
5041
|
+
};
|
|
5042
|
+
export declare type CompassScorecardScoreDurationStatisticsQueryFilter = {
|
|
5043
|
+
componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
|
|
5044
|
+
owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
|
|
5045
|
+
};
|
|
5036
5046
|
export declare type CompassScorecardScoreDurationStatisticsResult = CompassScorecardScoreDurationStatistics | QueryError;
|
|
5037
5047
|
export declare type CompassScorecardScoreHistory = {
|
|
5038
5048
|
__typename?: 'CompassScorecardScoreHistory';
|
|
@@ -6529,6 +6539,7 @@ export declare type ContentPlatformCategory = {
|
|
|
6529
6539
|
name?: Maybe<Scalars['String']['output']>;
|
|
6530
6540
|
shortDescriptionOneLiner?: Maybe<Scalars['String']['output']>;
|
|
6531
6541
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6542
|
+
urlSlug?: Maybe<Scalars['String']['output']>;
|
|
6532
6543
|
};
|
|
6533
6544
|
export declare type ContentPlatformContentClause = {
|
|
6534
6545
|
and?: InputMaybe<Array<ContentPlatformContentClause>>;
|
|
@@ -17621,6 +17632,7 @@ export declare type GraphStoreFullIssueAssociatedDeploymentNode = Node & {
|
|
|
17621
17632
|
export declare type GraphStoreFullIssueAssociatedDeploymentRelationshipObjectMetadataOutput = {
|
|
17622
17633
|
__typename?: 'GraphStoreFullIssueAssociatedDeploymentRelationshipObjectMetadataOutput';
|
|
17623
17634
|
author?: Maybe<GraphStoreFullIssueAssociatedDeploymentAuthorOutput>;
|
|
17635
|
+
deploymentLastUpdated?: Maybe<Scalars['Long']['output']>;
|
|
17624
17636
|
environmentType?: Maybe<GraphStoreFullIssueAssociatedDeploymentEnvironmentTypeOutput>;
|
|
17625
17637
|
state?: Maybe<GraphStoreFullIssueAssociatedDeploymentDeploymentStateOutput>;
|
|
17626
17638
|
};
|
|
@@ -18525,6 +18537,7 @@ export declare type GraphStoreFullProjectAssociatedDeploymentRelationshipMetadat
|
|
|
18525
18537
|
export declare type GraphStoreFullProjectAssociatedDeploymentRelationshipObjectMetadataOutput = {
|
|
18526
18538
|
__typename?: 'GraphStoreFullProjectAssociatedDeploymentRelationshipObjectMetadataOutput';
|
|
18527
18539
|
author?: Maybe<GraphStoreFullProjectAssociatedDeploymentAuthorOutput>;
|
|
18540
|
+
deploymentLastUpdated?: Maybe<Scalars['Long']['output']>;
|
|
18528
18541
|
environmentType?: Maybe<GraphStoreFullProjectAssociatedDeploymentEnvironmentTypeOutput>;
|
|
18529
18542
|
state?: Maybe<GraphStoreFullProjectAssociatedDeploymentDeploymentStateOutput>;
|
|
18530
18543
|
};
|
|
@@ -20312,11 +20325,13 @@ export declare type GraphStoreFullVersionAssociatedRemoteLinkStartNode = {
|
|
|
20312
20325
|
id: Scalars['ID']['output'];
|
|
20313
20326
|
};
|
|
20314
20327
|
export declare type GraphStoreFullVersionAssociatedRemoteLinkStartUnion = JiraVersion;
|
|
20315
|
-
export declare type GraphStoreFullVersionUserAssociatedFeatureFlagConnection = HasPageInfo & {
|
|
20328
|
+
export declare type GraphStoreFullVersionUserAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
20316
20329
|
__typename?: 'GraphStoreFullVersionUserAssociatedFeatureFlagConnection';
|
|
20317
20330
|
edges: Array<Maybe<GraphStoreFullVersionUserAssociatedFeatureFlagEdge>>;
|
|
20331
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
20318
20332
|
nodes: Array<Maybe<GraphStoreFullVersionUserAssociatedFeatureFlagNode>>;
|
|
20319
20333
|
pageInfo: PageInfo;
|
|
20334
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
20320
20335
|
};
|
|
20321
20336
|
export declare type GraphStoreFullVersionUserAssociatedFeatureFlagEdge = {
|
|
20322
20337
|
__typename?: 'GraphStoreFullVersionUserAssociatedFeatureFlagEdge';
|
|
@@ -20646,6 +20661,7 @@ export declare type GraphStoreProjectAssociatedDeploymentConditionalFilterInput
|
|
|
20646
20661
|
relationship_statusAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
20647
20662
|
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
20648
20663
|
to_author?: InputMaybe<GraphStoreProjectAssociatedDeploymentAuthorFilterInput>;
|
|
20664
|
+
to_deploymentLastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
20649
20665
|
to_environmentType?: InputMaybe<GraphStoreProjectAssociatedDeploymentEnvironmentTypeFilterInput>;
|
|
20650
20666
|
to_state?: InputMaybe<GraphStoreProjectAssociatedDeploymentDeploymentStateFilterInput>;
|
|
20651
20667
|
};
|
|
@@ -20693,6 +20709,7 @@ export declare type GraphStoreProjectAssociatedDeploymentSortInput = {
|
|
|
20693
20709
|
relationship_statusAri?: InputMaybe<GraphStoreSortInput>;
|
|
20694
20710
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
20695
20711
|
to_author?: InputMaybe<GraphStoreProjectAssociatedDeploymentAuthorSortInput>;
|
|
20712
|
+
to_deploymentLastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
20696
20713
|
to_environmentType?: InputMaybe<GraphStoreSortInput>;
|
|
20697
20714
|
to_state?: InputMaybe<GraphStoreSortInput>;
|
|
20698
20715
|
};
|
|
@@ -22692,10 +22709,12 @@ export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge =
|
|
|
22692
22709
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseUnion>;
|
|
22693
22710
|
};
|
|
22694
22711
|
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseUnion = JiraVersion;
|
|
22695
|
-
export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagConnection = HasPageInfo & {
|
|
22712
|
+
export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
22696
22713
|
__typename?: 'GraphStoreSimplifiedVersionUserAssociatedFeatureFlagConnection';
|
|
22697
22714
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionUserAssociatedFeatureFlagEdge>>>;
|
|
22715
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
22698
22716
|
pageInfo: PageInfo;
|
|
22717
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
22699
22718
|
};
|
|
22700
22719
|
export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagEdge = {
|
|
22701
22720
|
__typename?: 'GraphStoreSimplifiedVersionUserAssociatedFeatureFlagEdge';
|
|
@@ -22704,10 +22723,12 @@ export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagEdge = {
|
|
|
22704
22723
|
lastUpdated: Scalars['DateTime']['output'];
|
|
22705
22724
|
node?: Maybe<GraphStoreSimplifiedVersionUserAssociatedFeatureFlagUnion>;
|
|
22706
22725
|
};
|
|
22707
|
-
export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseConnection = HasPageInfo & {
|
|
22726
|
+
export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseConnection = HasPageInfo & HasTotal & {
|
|
22708
22727
|
__typename?: 'GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseConnection';
|
|
22709
22728
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseEdge>>>;
|
|
22729
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
22710
22730
|
pageInfo: PageInfo;
|
|
22731
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
22711
22732
|
};
|
|
22712
22733
|
export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseEdge = {
|
|
22713
22734
|
__typename?: 'GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseEdge';
|
|
@@ -30244,7 +30265,6 @@ export declare type JiraProject = Node & {
|
|
|
30244
30265
|
leadId?: Maybe<Scalars['ID']['output']>;
|
|
30245
30266
|
linkedDocumentationContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
30246
30267
|
linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
30247
|
-
linkedSecurityVulnerabilities?: Maybe<AriGraphRelationshipConnection>;
|
|
30248
30268
|
linkedSecurityVulnerabilitiesByProject?: Maybe<GraphJiraVulnerabilityConnection>;
|
|
30249
30269
|
name: Scalars['String']['output'];
|
|
30250
30270
|
navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
|
|
@@ -30326,12 +30346,6 @@ export declare type JiraProjectLinkedSecurityContainersArgs = {
|
|
|
30326
30346
|
sort?: InputMaybe<AriGraphRelationshipsSort>;
|
|
30327
30347
|
type?: InputMaybe<Scalars['String']['input']>;
|
|
30328
30348
|
};
|
|
30329
|
-
export declare type JiraProjectLinkedSecurityVulnerabilitiesArgs = {
|
|
30330
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
30331
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30332
|
-
sort?: InputMaybe<AriGraphRelationshipsSort>;
|
|
30333
|
-
type?: InputMaybe<Scalars['String']['input']>;
|
|
30334
|
-
};
|
|
30335
30349
|
export declare type JiraProjectLinkedSecurityVulnerabilitiesByProjectArgs = {
|
|
30336
30350
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30337
30351
|
filter?: InputMaybe<GraphQueryMetadataProjectAssociatedVulnerabilityInput>;
|