@forge/cli-shared 3.23.1-next.3 → 3.23.1-next.4
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 +6 -0
- package/out/graphql/graphql-types.d.ts +11 -7
- 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 +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -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>>;
|
|
@@ -30244,7 +30255,6 @@ export declare type JiraProject = Node & {
|
|
|
30244
30255
|
leadId?: Maybe<Scalars['ID']['output']>;
|
|
30245
30256
|
linkedDocumentationContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
30246
30257
|
linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
30247
|
-
linkedSecurityVulnerabilities?: Maybe<AriGraphRelationshipConnection>;
|
|
30248
30258
|
linkedSecurityVulnerabilitiesByProject?: Maybe<GraphJiraVulnerabilityConnection>;
|
|
30249
30259
|
name: Scalars['String']['output'];
|
|
30250
30260
|
navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
|
|
@@ -30326,12 +30336,6 @@ export declare type JiraProjectLinkedSecurityContainersArgs = {
|
|
|
30326
30336
|
sort?: InputMaybe<AriGraphRelationshipsSort>;
|
|
30327
30337
|
type?: InputMaybe<Scalars['String']['input']>;
|
|
30328
30338
|
};
|
|
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
30339
|
export declare type JiraProjectLinkedSecurityVulnerabilitiesByProjectArgs = {
|
|
30336
30340
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30337
30341
|
filter?: InputMaybe<GraphQueryMetadataProjectAssociatedVulnerabilityInput>;
|