@forge/cli-shared 3.20.2-next.4 → 3.20.2
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 +26 -0
- package/out/graphql/graphql-types.d.ts +14 -3
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +3 -0
- package/out/service/feature-flag-service.d.ts +0 -4
- package/out/service/feature-flag-service.d.ts.map +1 -1
- package/out/service/feature-flag-service.js +0 -9
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.20.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8e7c4ca: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- @types/js-yaml
|
|
10
|
+
|
|
11
|
+
- ce14925: Bumping dependencies via Renovate:
|
|
12
|
+
|
|
13
|
+
- @types/inquirer
|
|
14
|
+
|
|
15
|
+
- 0f5fb46: cleanup of feature flags for simplified user consent
|
|
16
|
+
- Updated dependencies [64ac4be]
|
|
17
|
+
- Updated dependencies [8e7c4ca]
|
|
18
|
+
- Updated dependencies [add9c54]
|
|
19
|
+
- Updated dependencies [863f7eb]
|
|
20
|
+
- @forge/manifest@4.20.3
|
|
21
|
+
- @forge/util@1.3.2
|
|
22
|
+
|
|
23
|
+
## 3.20.2-next.5
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- 0f5fb460: cleanup of feature flags for simplified user consent
|
|
28
|
+
|
|
3
29
|
## 3.20.2-next.4
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
|
@@ -3443,13 +3443,13 @@ export type CompassCreateBuildEventInput = {
|
|
|
3443
3443
|
};
|
|
3444
3444
|
export type CompassCreateComponentScorecardJiraIssueInput = {
|
|
3445
3445
|
componentId: Scalars['ID']['input'];
|
|
3446
|
+
issueId: Scalars['ID']['input'];
|
|
3446
3447
|
scorecardId: Scalars['ID']['input'];
|
|
3447
3448
|
url: Scalars['URL']['input'];
|
|
3448
3449
|
};
|
|
3449
3450
|
export type CompassCreateComponentScorecardJiraIssuePayload = Payload & {
|
|
3450
3451
|
__typename?: 'CompassCreateComponentScorecardJiraIssuePayload';
|
|
3451
3452
|
errors?: Maybe<Array<MutationError>>;
|
|
3452
|
-
issue?: Maybe<CompassJiraIssue>;
|
|
3453
3453
|
success: Scalars['Boolean']['output'];
|
|
3454
3454
|
};
|
|
3455
3455
|
export type CompassCreateComponentSubscriptionInput = {
|
|
@@ -4287,7 +4287,6 @@ export type CompassJiraIssue = Node & {
|
|
|
4287
4287
|
__typename?: 'CompassJiraIssue';
|
|
4288
4288
|
changeMetadata: CompassChangeMetadata;
|
|
4289
4289
|
id: Scalars['ID']['output'];
|
|
4290
|
-
isActive: Scalars['Boolean']['output'];
|
|
4291
4290
|
url: Scalars['URL']['output'];
|
|
4292
4291
|
};
|
|
4293
4292
|
export type CompassLifecycleEvent = CompassEvent & {
|
|
@@ -11853,6 +11852,7 @@ export type GrowthRecQuery = {
|
|
|
11853
11852
|
export type GrowthRecQueryRecommendationsArgs = {
|
|
11854
11853
|
context?: InputMaybe<GrowthRecContext>;
|
|
11855
11854
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
11855
|
+
rerank?: InputMaybe<Array<GrowthRecRerankCandidate>>;
|
|
11856
11856
|
};
|
|
11857
11857
|
export type GrowthRecRecommendation = {
|
|
11858
11858
|
entityId: Scalars['ID']['output'];
|
|
@@ -11863,6 +11863,9 @@ export type GrowthRecRecommendations = {
|
|
|
11863
11863
|
data?: Maybe<Array<GrowthRecRecommendation>>;
|
|
11864
11864
|
};
|
|
11865
11865
|
export type GrowthRecRecommendationsResult = GrowthRecRecommendations | QueryError;
|
|
11866
|
+
export type GrowthRecRerankCandidate = {
|
|
11867
|
+
entityId: Scalars['String']['input'];
|
|
11868
|
+
};
|
|
11866
11869
|
export type HamsAccountDetails = CommerceAccountDetails & {
|
|
11867
11870
|
__typename?: 'HamsAccountDetails';
|
|
11868
11871
|
invoiceGroup?: Maybe<HamsInvoiceGroup>;
|
|
@@ -13998,6 +14001,10 @@ export type JiraBulkEditFieldsEdge = {
|
|
|
13998
14001
|
cursor: Scalars['String']['output'];
|
|
13999
14002
|
node?: Maybe<JiraBulkEditField>;
|
|
14000
14003
|
};
|
|
14004
|
+
export type JiraBulkEditFieldsSearch = {
|
|
14005
|
+
displayDefaultFields?: InputMaybe<Scalars['Boolean']['input']>;
|
|
14006
|
+
searchByText?: InputMaybe<Scalars['String']['input']>;
|
|
14007
|
+
};
|
|
14001
14008
|
export type JiraBulkEditInput = {
|
|
14002
14009
|
editedFieldsInput: JiraIssueFieldsInput;
|
|
14003
14010
|
selectedActions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -14020,6 +14027,7 @@ export type JiraBulkEditResponseBulkEditFieldsArgs = {
|
|
|
14020
14027
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
14021
14028
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14022
14029
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
14030
|
+
search?: InputMaybe<JiraBulkEditFieldsSearch>;
|
|
14023
14031
|
};
|
|
14024
14032
|
export type JiraBulkOperationInput = {
|
|
14025
14033
|
bulkEditInput?: InputMaybe<JiraBulkEditInput>;
|
|
@@ -17705,7 +17713,6 @@ export type JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload = Paylo
|
|
|
17705
17713
|
success: Scalars['Boolean']['output'];
|
|
17706
17714
|
};
|
|
17707
17715
|
export type JiraNaturalLanguageToJqlInput = {
|
|
17708
|
-
iteration?: InputMaybe<JiraIteration>;
|
|
17709
17716
|
naturalLanguageInput: Scalars['String']['input'];
|
|
17710
17717
|
};
|
|
17711
17718
|
export type JiraNotificationChannel = {
|
|
@@ -18371,6 +18378,7 @@ export type JiraProject = Node & {
|
|
|
18371
18378
|
avatar?: Maybe<JiraAvatar>;
|
|
18372
18379
|
canSetIssueRestriction?: Maybe<Scalars['Boolean']['output']>;
|
|
18373
18380
|
category?: Maybe<JiraProjectCategory>;
|
|
18381
|
+
classificationTags: Array<Scalars['String']['output']>;
|
|
18374
18382
|
cloudId: Scalars['ID']['output'];
|
|
18375
18383
|
confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
|
|
18376
18384
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -27931,11 +27939,13 @@ export type SetSwimlaneStrategyResponse = MutationResponse & {
|
|
|
27931
27939
|
success: Scalars['Boolean']['output'];
|
|
27932
27940
|
};
|
|
27933
27941
|
export declare enum ShepherdActionType {
|
|
27942
|
+
Crawl = "CRAWL",
|
|
27934
27943
|
Create = "CREATE",
|
|
27935
27944
|
Delete = "DELETE",
|
|
27936
27945
|
Export = "EXPORT",
|
|
27937
27946
|
Install = "INSTALL",
|
|
27938
27947
|
Login = "LOGIN",
|
|
27948
|
+
LoginAs = "LOGIN_AS",
|
|
27939
27949
|
Read = "READ",
|
|
27940
27950
|
Search = "SEARCH",
|
|
27941
27951
|
Uninstall = "UNINSTALL",
|
|
@@ -28062,6 +28072,7 @@ export type ShepherdAlertSupportingData = {
|
|
|
28062
28072
|
export declare enum ShepherdAlertTemplateType {
|
|
28063
28073
|
AddedConfluenceGlobalPermission = "ADDED_CONFLUENCE_GLOBAL_PERMISSION",
|
|
28064
28074
|
AddedConfluenceSpacePermission = "ADDED_CONFLUENCE_SPACE_PERMISSION",
|
|
28075
|
+
AddedDomain = "ADDED_DOMAIN",
|
|
28065
28076
|
AddedJiraGlobalPermission = "ADDED_JIRA_GLOBAL_PERMISSION",
|
|
28066
28077
|
AddedOrgadmin = "ADDED_ORGADMIN",
|
|
28067
28078
|
ConfluenceDataDiscovery = "CONFLUENCE_DATA_DISCOVERY",
|