@forge/cli-shared 3.21.0 → 3.21.1-next.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,20 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.21.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [9ebe94bd]
|
|
8
|
+
- @forge/manifest@5.1.1-next.0
|
|
9
|
+
|
|
10
|
+
## 3.21.1-next.0
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- e510e6ea: Bumping dependencies via Renovate:
|
|
15
|
+
|
|
16
|
+
- @sentry/node
|
|
17
|
+
|
|
3
18
|
## 3.21.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
|
@@ -3442,10 +3442,17 @@ export type CompassComponentScorecardRelationship = {
|
|
|
3442
3442
|
__typename?: 'CompassComponentScorecardRelationship';
|
|
3443
3443
|
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
3444
3444
|
appliedSince: Scalars['DateTime']['output'];
|
|
3445
|
+
score?: Maybe<CompassScorecardScoreResult>;
|
|
3446
|
+
scorecardScoreHistories?: Maybe<CompassScorecardScoreHistoryConnection>;
|
|
3445
3447
|
};
|
|
3446
3448
|
export type CompassComponentScorecardRelationshipActiveIssuesArgs = {
|
|
3447
3449
|
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
3448
3450
|
};
|
|
3451
|
+
export type CompassComponentScorecardRelationshipScorecardScoreHistoriesArgs = {
|
|
3452
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3453
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3454
|
+
query?: InputMaybe<CompassScorecardScoreHistoryQuery>;
|
|
3455
|
+
};
|
|
3449
3456
|
export type CompassComponentScorecardRelationshipResult = CompassComponentScorecardRelationship | QueryError;
|
|
3450
3457
|
export type CompassComponentScorecardScoreQuery = {
|
|
3451
3458
|
scorecardId: Scalars['ID']['input'];
|
|
@@ -4834,9 +4841,37 @@ export type CompassScorecardScore = {
|
|
|
4834
4841
|
statusDuration?: Maybe<CompassScorecardScoreStatusDuration>;
|
|
4835
4842
|
totalScore: Scalars['Int']['output'];
|
|
4836
4843
|
};
|
|
4844
|
+
export type CompassScorecardScoreHistory = {
|
|
4845
|
+
__typename?: 'CompassScorecardScoreHistory';
|
|
4846
|
+
date: Scalars['DateTime']['output'];
|
|
4847
|
+
totalScore?: Maybe<Scalars['Int']['output']>;
|
|
4848
|
+
};
|
|
4849
|
+
export type CompassScorecardScoreHistoryConnection = {
|
|
4850
|
+
__typename?: 'CompassScorecardScoreHistoryConnection';
|
|
4851
|
+
edges?: Maybe<Array<CompassScorecardScoreHistoryEdge>>;
|
|
4852
|
+
nodes?: Maybe<Array<CompassScorecardScoreHistory>>;
|
|
4853
|
+
pageInfo: PageInfo;
|
|
4854
|
+
};
|
|
4855
|
+
export type CompassScorecardScoreHistoryEdge = {
|
|
4856
|
+
__typename?: 'CompassScorecardScoreHistoryEdge';
|
|
4857
|
+
cursor: Scalars['String']['output'];
|
|
4858
|
+
node?: Maybe<CompassScorecardScoreHistory>;
|
|
4859
|
+
};
|
|
4860
|
+
export declare enum CompassScorecardScoreHistoryPeriodicity {
|
|
4861
|
+
Daily = "DAILY",
|
|
4862
|
+
Weekly = "WEEKLY"
|
|
4863
|
+
}
|
|
4864
|
+
export type CompassScorecardScoreHistoryQuery = {
|
|
4865
|
+
filter?: InputMaybe<CompassScorecardScoreHistoryQueryFilter>;
|
|
4866
|
+
};
|
|
4867
|
+
export type CompassScorecardScoreHistoryQueryFilter = {
|
|
4868
|
+
periodicity?: InputMaybe<CompassScorecardScoreHistoryPeriodicity>;
|
|
4869
|
+
startFrom?: InputMaybe<Scalars['DateTime']['input']>;
|
|
4870
|
+
};
|
|
4837
4871
|
export type CompassScorecardScoreQuery = {
|
|
4838
4872
|
componentId: Scalars['ID']['input'];
|
|
4839
4873
|
};
|
|
4874
|
+
export type CompassScorecardScoreResult = CompassScorecardScore | QueryError;
|
|
4840
4875
|
export type CompassScorecardScoreStatusDuration = {
|
|
4841
4876
|
__typename?: 'CompassScorecardScoreStatusDuration';
|
|
4842
4877
|
since: Scalars['DateTime']['output'];
|
|
@@ -29747,6 +29782,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
29747
29782
|
AddedOrgadmin = "ADDED_ORGADMIN",
|
|
29748
29783
|
ConfluenceDataDiscovery = "CONFLUENCE_DATA_DISCOVERY",
|
|
29749
29784
|
ConfluenceDataDiscoveryAtlassianToken = "CONFLUENCE_DATA_DISCOVERY_ATLASSIAN_TOKEN",
|
|
29785
|
+
ConfluenceDataDiscoveryAwsKeys = "CONFLUENCE_DATA_DISCOVERY_AWS_KEYS",
|
|
29750
29786
|
ConfluenceDataDiscoveryCreditCard = "CONFLUENCE_DATA_DISCOVERY_CREDIT_CARD",
|
|
29751
29787
|
ConfluenceDataDiscoveryCrypto = "CONFLUENCE_DATA_DISCOVERY_CRYPTO",
|
|
29752
29788
|
ConfluenceDataDiscoveryIban = "CONFLUENCE_DATA_DISCOVERY_IBAN",
|