@forge/cli-shared 3.20.2-next.5 → 3.20.3-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,32 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.20.3-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [22dd431]
|
|
8
|
+
- @forge/manifest@4.20.4-next.0
|
|
9
|
+
|
|
10
|
+
## 3.20.2
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 8e7c4ca: Bumping dependencies via Renovate:
|
|
15
|
+
|
|
16
|
+
- @types/js-yaml
|
|
17
|
+
|
|
18
|
+
- ce14925: Bumping dependencies via Renovate:
|
|
19
|
+
|
|
20
|
+
- @types/inquirer
|
|
21
|
+
|
|
22
|
+
- 0f5fb46: cleanup of feature flags for simplified user consent
|
|
23
|
+
- Updated dependencies [64ac4be]
|
|
24
|
+
- Updated dependencies [8e7c4ca]
|
|
25
|
+
- Updated dependencies [add9c54]
|
|
26
|
+
- Updated dependencies [863f7eb]
|
|
27
|
+
- @forge/manifest@4.20.3
|
|
28
|
+
- @forge/util@1.3.2
|
|
29
|
+
|
|
3
30
|
## 3.20.2-next.5
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
|
@@ -1497,6 +1497,7 @@ export type AppsFilter = {
|
|
|
1497
1497
|
export type AquaIssueContext = {
|
|
1498
1498
|
__typename?: 'AquaIssueContext';
|
|
1499
1499
|
commentId?: Maybe<Scalars['Long']['output']>;
|
|
1500
|
+
issue?: Maybe<JiraIssue>;
|
|
1500
1501
|
issueId?: Maybe<Scalars['Long']['output']>;
|
|
1501
1502
|
};
|
|
1502
1503
|
export type AquaNotificationDetails = {
|
|
@@ -3443,13 +3444,13 @@ export type CompassCreateBuildEventInput = {
|
|
|
3443
3444
|
};
|
|
3444
3445
|
export type CompassCreateComponentScorecardJiraIssueInput = {
|
|
3445
3446
|
componentId: Scalars['ID']['input'];
|
|
3447
|
+
issueId: Scalars['ID']['input'];
|
|
3446
3448
|
scorecardId: Scalars['ID']['input'];
|
|
3447
3449
|
url: Scalars['URL']['input'];
|
|
3448
3450
|
};
|
|
3449
3451
|
export type CompassCreateComponentScorecardJiraIssuePayload = Payload & {
|
|
3450
3452
|
__typename?: 'CompassCreateComponentScorecardJiraIssuePayload';
|
|
3451
3453
|
errors?: Maybe<Array<MutationError>>;
|
|
3452
|
-
issue?: Maybe<CompassJiraIssue>;
|
|
3453
3454
|
success: Scalars['Boolean']['output'];
|
|
3454
3455
|
};
|
|
3455
3456
|
export type CompassCreateComponentSubscriptionInput = {
|
|
@@ -4287,7 +4288,6 @@ export type CompassJiraIssue = Node & {
|
|
|
4287
4288
|
__typename?: 'CompassJiraIssue';
|
|
4288
4289
|
changeMetadata: CompassChangeMetadata;
|
|
4289
4290
|
id: Scalars['ID']['output'];
|
|
4290
|
-
isActive: Scalars['Boolean']['output'];
|
|
4291
4291
|
url: Scalars['URL']['output'];
|
|
4292
4292
|
};
|
|
4293
4293
|
export type CompassLifecycleEvent = CompassEvent & {
|
|
@@ -11853,6 +11853,7 @@ export type GrowthRecQuery = {
|
|
|
11853
11853
|
export type GrowthRecQueryRecommendationsArgs = {
|
|
11854
11854
|
context?: InputMaybe<GrowthRecContext>;
|
|
11855
11855
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
11856
|
+
rerank?: InputMaybe<Array<GrowthRecRerankCandidate>>;
|
|
11856
11857
|
};
|
|
11857
11858
|
export type GrowthRecRecommendation = {
|
|
11858
11859
|
entityId: Scalars['ID']['output'];
|
|
@@ -11863,6 +11864,9 @@ export type GrowthRecRecommendations = {
|
|
|
11863
11864
|
data?: Maybe<Array<GrowthRecRecommendation>>;
|
|
11864
11865
|
};
|
|
11865
11866
|
export type GrowthRecRecommendationsResult = GrowthRecRecommendations | QueryError;
|
|
11867
|
+
export type GrowthRecRerankCandidate = {
|
|
11868
|
+
entityId: Scalars['String']['input'];
|
|
11869
|
+
};
|
|
11866
11870
|
export type HamsAccountDetails = CommerceAccountDetails & {
|
|
11867
11871
|
__typename?: 'HamsAccountDetails';
|
|
11868
11872
|
invoiceGroup?: Maybe<HamsInvoiceGroup>;
|
|
@@ -12741,6 +12745,17 @@ export type HelpObjectStoreMutationApiDeleteProviderConnectionArgs = {
|
|
|
12741
12745
|
export type HelpObjectStoreMutationApiUpdateProviderConnectionArgs = {
|
|
12742
12746
|
input: HelpObjectStoreProviderConnectionInput;
|
|
12743
12747
|
};
|
|
12748
|
+
export type HelpObjectStoreProviderAuthStatus = {
|
|
12749
|
+
__typename?: 'HelpObjectStoreProviderAuthStatus';
|
|
12750
|
+
authUrl?: Maybe<Scalars['String']['output']>;
|
|
12751
|
+
isAuthRequired: Scalars['Boolean']['output'];
|
|
12752
|
+
provider: Scalars['String']['output'];
|
|
12753
|
+
};
|
|
12754
|
+
export type HelpObjectStoreProviderAuthStatusResult = HelpObjectStoreProviderAuthStatuses | HelpObjectStoreProvidersAuthError;
|
|
12755
|
+
export type HelpObjectStoreProviderAuthStatuses = {
|
|
12756
|
+
__typename?: 'HelpObjectStoreProviderAuthStatuses';
|
|
12757
|
+
providerAuthStatuses: Array<Maybe<HelpObjectStoreProviderAuthStatus>>;
|
|
12758
|
+
};
|
|
12744
12759
|
export type HelpObjectStoreProviderConnection = Node & {
|
|
12745
12760
|
__typename?: 'HelpObjectStoreProviderConnection';
|
|
12746
12761
|
containerId?: Maybe<Scalars['String']['output']>;
|
|
@@ -12799,10 +12814,16 @@ export type HelpObjectStoreProviderConnections = {
|
|
|
12799
12814
|
export type HelpObjectStoreProviderConnectionsInput = {
|
|
12800
12815
|
providerConnections: Array<HelpObjectStoreProviderConnectionInput>;
|
|
12801
12816
|
};
|
|
12817
|
+
export type HelpObjectStoreProvidersAuthError = {
|
|
12818
|
+
__typename?: 'HelpObjectStoreProvidersAuthError';
|
|
12819
|
+
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
12820
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
12821
|
+
};
|
|
12802
12822
|
export type HelpObjectStoreQueryApi = {
|
|
12803
12823
|
__typename?: 'HelpObjectStoreQueryApi';
|
|
12804
12824
|
articles?: Maybe<Array<Maybe<HelpObjectStoreArticleResult>>>;
|
|
12805
12825
|
channels?: Maybe<Array<Maybe<HelpObjectStoreChannelResult>>>;
|
|
12826
|
+
providerAuthStatuses?: Maybe<HelpObjectStoreProviderAuthStatusResult>;
|
|
12806
12827
|
providerConnections?: Maybe<HelpObjectStoreProviderConnectionResult>;
|
|
12807
12828
|
requestForms?: Maybe<Array<Maybe<HelpObjectStoreRequestFormResult>>>;
|
|
12808
12829
|
searchHelpObjects?: Maybe<Array<Maybe<HelpObjectStoreHelpCenterSearchResult>>>;
|
|
@@ -12813,6 +12834,9 @@ export type HelpObjectStoreQueryApiArticlesArgs = {
|
|
|
12813
12834
|
export type HelpObjectStoreQueryApiChannelsArgs = {
|
|
12814
12835
|
ids: Array<Scalars['ID']['input']>;
|
|
12815
12836
|
};
|
|
12837
|
+
export type HelpObjectStoreQueryApiProviderAuthStatusesArgs = {
|
|
12838
|
+
cloudId: Scalars['ID']['input'];
|
|
12839
|
+
};
|
|
12816
12840
|
export type HelpObjectStoreQueryApiProviderConnectionsArgs = {
|
|
12817
12841
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
12818
12842
|
cloudId: Scalars['ID']['input'];
|
|
@@ -13998,6 +14022,10 @@ export type JiraBulkEditFieldsEdge = {
|
|
|
13998
14022
|
cursor: Scalars['String']['output'];
|
|
13999
14023
|
node?: Maybe<JiraBulkEditField>;
|
|
14000
14024
|
};
|
|
14025
|
+
export type JiraBulkEditFieldsSearch = {
|
|
14026
|
+
displayDefaultFields?: InputMaybe<Scalars['Boolean']['input']>;
|
|
14027
|
+
searchByText?: InputMaybe<Scalars['String']['input']>;
|
|
14028
|
+
};
|
|
14001
14029
|
export type JiraBulkEditInput = {
|
|
14002
14030
|
editedFieldsInput: JiraIssueFieldsInput;
|
|
14003
14031
|
selectedActions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -14020,6 +14048,7 @@ export type JiraBulkEditResponseBulkEditFieldsArgs = {
|
|
|
14020
14048
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
14021
14049
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14022
14050
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
14051
|
+
search?: InputMaybe<JiraBulkEditFieldsSearch>;
|
|
14023
14052
|
};
|
|
14024
14053
|
export type JiraBulkOperationInput = {
|
|
14025
14054
|
bulkEditInput?: InputMaybe<JiraBulkEditInput>;
|
|
@@ -17705,7 +17734,6 @@ export type JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload = Paylo
|
|
|
17705
17734
|
success: Scalars['Boolean']['output'];
|
|
17706
17735
|
};
|
|
17707
17736
|
export type JiraNaturalLanguageToJqlInput = {
|
|
17708
|
-
iteration?: InputMaybe<JiraIteration>;
|
|
17709
17737
|
naturalLanguageInput: Scalars['String']['input'];
|
|
17710
17738
|
};
|
|
17711
17739
|
export type JiraNotificationChannel = {
|
|
@@ -18371,6 +18399,7 @@ export type JiraProject = Node & {
|
|
|
18371
18399
|
avatar?: Maybe<JiraAvatar>;
|
|
18372
18400
|
canSetIssueRestriction?: Maybe<Scalars['Boolean']['output']>;
|
|
18373
18401
|
category?: Maybe<JiraProjectCategory>;
|
|
18402
|
+
classificationTags: Array<Scalars['String']['output']>;
|
|
18374
18403
|
cloudId: Scalars['ID']['output'];
|
|
18375
18404
|
confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
|
|
18376
18405
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -22599,7 +22628,6 @@ export type MarketplaceApp = {
|
|
|
22599
22628
|
listingStatus: MarketplaceListingStatus;
|
|
22600
22629
|
logo?: Maybe<MarketplaceListingImage>;
|
|
22601
22630
|
marketingLabels: Array<Scalars['String']['output']>;
|
|
22602
|
-
marketplaceAppTrustInformation?: Maybe<MarketplaceAppTrustInformationResult>;
|
|
22603
22631
|
name: Scalars['String']['output'];
|
|
22604
22632
|
partner?: Maybe<MarketplacePartner>;
|
|
22605
22633
|
partnerId: Scalars['ID']['output'];
|
|
@@ -22617,10 +22645,6 @@ export type MarketplaceApp = {
|
|
|
22617
22645
|
watchersInfo?: Maybe<MarketplaceAppWatchersInfo>;
|
|
22618
22646
|
wikiUrl?: Maybe<Scalars['URL']['output']>;
|
|
22619
22647
|
};
|
|
22620
|
-
export type MarketplaceAppMarketplaceAppTrustInformationArgs = {
|
|
22621
|
-
appKey: Scalars['String']['input'];
|
|
22622
|
-
state: AppTrustInformationState;
|
|
22623
|
-
};
|
|
22624
22648
|
export type MarketplaceAppProductHostingOptionsArgs = {
|
|
22625
22649
|
excludeHiddenIn?: InputMaybe<MarketplaceLocation>;
|
|
22626
22650
|
};
|
|
@@ -26686,6 +26710,7 @@ export type RoadmapItem = {
|
|
|
26686
26710
|
dependencies?: Maybe<Array<Scalars['ID']['output']>>;
|
|
26687
26711
|
dueDate?: Maybe<Scalars['DateTime']['output']>;
|
|
26688
26712
|
dueDateRFC3339?: Maybe<Scalars['Date']['output']>;
|
|
26713
|
+
flagged?: Maybe<Scalars['Boolean']['output']>;
|
|
26689
26714
|
id: Scalars['ID']['output'];
|
|
26690
26715
|
inferredDueDate?: Maybe<Scalars['Date']['output']>;
|
|
26691
26716
|
inferredStartDate?: Maybe<Scalars['Date']['output']>;
|
|
@@ -27734,6 +27759,15 @@ export type SearchResultJiraBoardUserContainer = {
|
|
|
27734
27759
|
userId: Scalars['ID']['output'];
|
|
27735
27760
|
userName: Scalars['String']['output'];
|
|
27736
27761
|
};
|
|
27762
|
+
export type SearchResultJiraDashboard = SearchResult & {
|
|
27763
|
+
__typename?: 'SearchResultJiraDashboard';
|
|
27764
|
+
description: Scalars['String']['output'];
|
|
27765
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
27766
|
+
id: Scalars['ID']['output'];
|
|
27767
|
+
title: Scalars['String']['output'];
|
|
27768
|
+
type: SearchResultType;
|
|
27769
|
+
url: Scalars['URL']['output'];
|
|
27770
|
+
};
|
|
27737
27771
|
export type SearchResultJiraFilter = SearchResult & {
|
|
27738
27772
|
__typename?: 'SearchResultJiraFilter';
|
|
27739
27773
|
description: Scalars['String']['output'];
|
|
@@ -27775,6 +27809,8 @@ export declare enum SearchResultType {
|
|
|
27775
27809
|
Blogpost = "blogpost",
|
|
27776
27810
|
Board = "board",
|
|
27777
27811
|
Comment = "comment",
|
|
27812
|
+
Dashboard = "dashboard",
|
|
27813
|
+
Database = "database",
|
|
27778
27814
|
Filter = "filter",
|
|
27779
27815
|
Issue = "issue",
|
|
27780
27816
|
Page = "page",
|
|
@@ -27931,12 +27967,16 @@ export type SetSwimlaneStrategyResponse = MutationResponse & {
|
|
|
27931
27967
|
success: Scalars['Boolean']['output'];
|
|
27932
27968
|
};
|
|
27933
27969
|
export declare enum ShepherdActionType {
|
|
27970
|
+
Crawl = "CRAWL",
|
|
27934
27971
|
Create = "CREATE",
|
|
27935
27972
|
Delete = "DELETE",
|
|
27936
27973
|
Export = "EXPORT",
|
|
27974
|
+
Grant = "GRANT",
|
|
27937
27975
|
Install = "INSTALL",
|
|
27938
27976
|
Login = "LOGIN",
|
|
27977
|
+
LoginAs = "LOGIN_AS",
|
|
27939
27978
|
Read = "READ",
|
|
27979
|
+
Revoke = "REVOKE",
|
|
27940
27980
|
Search = "SEARCH",
|
|
27941
27981
|
Uninstall = "UNINSTALL",
|
|
27942
27982
|
Update = "UPDATE"
|
|
@@ -28062,6 +28102,7 @@ export type ShepherdAlertSupportingData = {
|
|
|
28062
28102
|
export declare enum ShepherdAlertTemplateType {
|
|
28063
28103
|
AddedConfluenceGlobalPermission = "ADDED_CONFLUENCE_GLOBAL_PERMISSION",
|
|
28064
28104
|
AddedConfluenceSpacePermission = "ADDED_CONFLUENCE_SPACE_PERMISSION",
|
|
28105
|
+
AddedDomain = "ADDED_DOMAIN",
|
|
28065
28106
|
AddedJiraGlobalPermission = "ADDED_JIRA_GLOBAL_PERMISSION",
|
|
28066
28107
|
AddedOrgadmin = "ADDED_ORGADMIN",
|
|
28067
28108
|
ConfluenceDataDiscovery = "CONFLUENCE_DATA_DISCOVERY",
|