@forge/cli-shared 3.25.0-next.2 → 3.25.0-next.2-experimental-2c80ea3
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,17 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.25.0-next.2-experimental-2c80ea3
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- ba85e65: Add support for FedRAMP environments
|
|
8
|
+
- a7da8c4: Clean up FF "Forge CLI: Enable categorise templates by product"
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies [9307e05]
|
|
13
|
+
- @forge/manifest@6.2.0-next.0-experimental-2c80ea3
|
|
14
|
+
|
|
3
15
|
## 3.25.0-next.2
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
|
@@ -2935,20 +2935,33 @@ export declare type CommerceEntitlementExperienceCapabilities = {
|
|
|
2935
2935
|
export declare type CommerceEntitlementExperienceCapabilitiesChangeOfferingArgs = {
|
|
2936
2936
|
offeringKey?: InputMaybe<Scalars['ID']['input']>;
|
|
2937
2937
|
};
|
|
2938
|
+
export declare type CommerceEntitlementFilter = {
|
|
2939
|
+
AND?: InputMaybe<Array<InputMaybe<CommerceEntitlementFilter>>>;
|
|
2940
|
+
inTrialOrPreDunning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2941
|
+
};
|
|
2938
2942
|
export declare type CommerceEntitlementInfo = {
|
|
2939
2943
|
entitlement?: Maybe<CommerceEntitlement>;
|
|
2940
2944
|
entitlementId: Scalars['ID']['output'];
|
|
2941
2945
|
};
|
|
2946
|
+
export declare type CommerceEntitlementInfoEntitlementArgs = {
|
|
2947
|
+
where?: InputMaybe<CommerceEntitlementFilter>;
|
|
2948
|
+
};
|
|
2942
2949
|
export declare type CommerceEntitlementInfoCcp = CommerceEntitlementInfo & {
|
|
2943
2950
|
__typename?: 'CommerceEntitlementInfoCcp';
|
|
2944
2951
|
entitlement?: Maybe<CcpEntitlement>;
|
|
2945
2952
|
entitlementId: Scalars['ID']['output'];
|
|
2946
2953
|
};
|
|
2954
|
+
export declare type CommerceEntitlementInfoCcpEntitlementArgs = {
|
|
2955
|
+
where?: InputMaybe<CommerceEntitlementFilter>;
|
|
2956
|
+
};
|
|
2947
2957
|
export declare type CommerceEntitlementInfoHams = CommerceEntitlementInfo & {
|
|
2948
2958
|
__typename?: 'CommerceEntitlementInfoHams';
|
|
2949
2959
|
entitlement?: Maybe<HamsEntitlement>;
|
|
2950
2960
|
entitlementId: Scalars['ID']['output'];
|
|
2951
2961
|
};
|
|
2962
|
+
export declare type CommerceEntitlementInfoHamsEntitlementArgs = {
|
|
2963
|
+
where?: InputMaybe<CommerceEntitlementFilter>;
|
|
2964
|
+
};
|
|
2952
2965
|
export declare type CommerceEntitlementPreDunning = {
|
|
2953
2966
|
firstPreDunningEndTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
2954
2967
|
status?: Maybe<CcpEntitlementPreDunningStatus>;
|
|
@@ -8837,6 +8850,7 @@ export declare type DetachEventSourcePayload = Payload & {
|
|
|
8837
8850
|
export declare type DevOps = {
|
|
8838
8851
|
__typename?: 'DevOps';
|
|
8839
8852
|
ariGraph?: Maybe<AriGraph>;
|
|
8853
|
+
designEntityDetails?: Maybe<Array<Maybe<DevOpsDesign>>>;
|
|
8840
8854
|
entitiesByAssociations?: Maybe<DevOpsEntities>;
|
|
8841
8855
|
graph?: Maybe<Graph>;
|
|
8842
8856
|
providers?: Maybe<DevOpsProviders>;
|
|
@@ -8846,6 +8860,9 @@ export declare type DevOps = {
|
|
|
8846
8860
|
summarisedEntities?: Maybe<Array<Maybe<DevOpsSummarisedEntities>>>;
|
|
8847
8861
|
toolchain?: Maybe<Toolchain>;
|
|
8848
8862
|
};
|
|
8863
|
+
export declare type DevOpsDesignEntityDetailsArgs = {
|
|
8864
|
+
ids: Array<Scalars['ID']['input']>;
|
|
8865
|
+
};
|
|
8849
8866
|
export declare type DevOpsEntitiesByAssociationsArgs = {
|
|
8850
8867
|
ids: Array<Scalars['ID']['input']>;
|
|
8851
8868
|
};
|
|
@@ -25773,9 +25790,13 @@ export declare enum InsightsEnvironmentType {
|
|
|
25773
25790
|
}
|
|
25774
25791
|
export declare type InsightsMutation = {
|
|
25775
25792
|
__typename?: 'InsightsMutation';
|
|
25793
|
+
purgeUserActionStateForCurrentUser?: Maybe<InsightsActionNextBestTaskPayload>;
|
|
25776
25794
|
removeTask?: Maybe<InsightsActionNextBestTaskPayload>;
|
|
25777
25795
|
snoozeTask?: Maybe<InsightsActionNextBestTaskPayload>;
|
|
25778
25796
|
};
|
|
25797
|
+
export declare type InsightsMutationPurgeUserActionStateForCurrentUserArgs = {
|
|
25798
|
+
input: InsightsPurgeUserActionStateInput;
|
|
25799
|
+
};
|
|
25779
25800
|
export declare type InsightsMutationRemoveTaskArgs = {
|
|
25780
25801
|
cloudId: Scalars['ID']['input'];
|
|
25781
25802
|
input: InsightsActionNextBestTaskInput;
|
|
@@ -25828,6 +25849,9 @@ export declare type InsightsPullRequestReviewDetails = {
|
|
|
25828
25849
|
lastUpdated: Scalars['String']['output'];
|
|
25829
25850
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
25830
25851
|
};
|
|
25852
|
+
export declare type InsightsPurgeUserActionStateInput = {
|
|
25853
|
+
cloudId: Scalars['ID']['input'];
|
|
25854
|
+
};
|
|
25831
25855
|
export declare enum InsightsTaskType {
|
|
25832
25856
|
BlockingIssue = "BLOCKING_ISSUE",
|
|
25833
25857
|
BuildFailed = "BUILD_FAILED",
|
|
@@ -26731,6 +26755,12 @@ export declare type JiraAttachmentEdge = {
|
|
|
26731
26755
|
cursor: Scalars['String']['output'];
|
|
26732
26756
|
node?: Maybe<JiraAttachment>;
|
|
26733
26757
|
};
|
|
26758
|
+
export declare type JiraAttachmentFilterInput = {
|
|
26759
|
+
authorIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
26760
|
+
dateRange?: InputMaybe<JiraDateRange>;
|
|
26761
|
+
fileName?: InputMaybe<Scalars['String']['input']>;
|
|
26762
|
+
mimeTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
26763
|
+
};
|
|
26734
26764
|
export declare type JiraAttachmentsField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
26735
26765
|
__typename?: 'JiraAttachmentsField';
|
|
26736
26766
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -27917,6 +27947,10 @@ export declare type JiraDatePickerField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
27917
27947
|
type: Scalars['String']['output'];
|
|
27918
27948
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
27919
27949
|
};
|
|
27950
|
+
export declare type JiraDateRange = {
|
|
27951
|
+
after?: InputMaybe<Scalars['Date']['input']>;
|
|
27952
|
+
before?: InputMaybe<Scalars['Date']['input']>;
|
|
27953
|
+
};
|
|
27920
27954
|
export declare type JiraDateTimeFieldInput = {
|
|
27921
27955
|
dateTime: JiraDateTimeInput;
|
|
27922
27956
|
fieldId: Scalars['ID']['input'];
|
|
@@ -28358,6 +28392,26 @@ export declare type JiraFavouriteValue = Node & {
|
|
|
28358
28392
|
id: Scalars['ID']['output'];
|
|
28359
28393
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
28360
28394
|
};
|
|
28395
|
+
export declare type JiraFetchBulkOperationDetailsResponse = {
|
|
28396
|
+
__typename?: 'JiraFetchBulkOperationDetailsResponse';
|
|
28397
|
+
bulkEditFields?: Maybe<JiraBulkEditFieldsConnection>;
|
|
28398
|
+
bulkTransitions?: Maybe<JiraBulkTransitionConnection>;
|
|
28399
|
+
mayDisableNotifications?: Maybe<Scalars['Boolean']['output']>;
|
|
28400
|
+
totalIssues?: Maybe<Scalars['Int']['output']>;
|
|
28401
|
+
};
|
|
28402
|
+
export declare type JiraFetchBulkOperationDetailsResponseBulkEditFieldsArgs = {
|
|
28403
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28404
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
28405
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28406
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
28407
|
+
search?: InputMaybe<JiraBulkEditFieldsSearch>;
|
|
28408
|
+
};
|
|
28409
|
+
export declare type JiraFetchBulkOperationDetailsResponseBulkTransitionsArgs = {
|
|
28410
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28411
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
28412
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28413
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
28414
|
+
};
|
|
28361
28415
|
export declare type JiraFieldConfig = {
|
|
28362
28416
|
__typename?: 'JiraFieldConfig';
|
|
28363
28417
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -32617,6 +32671,7 @@ export declare type JiraQuery = {
|
|
|
32617
32671
|
announcementBanner?: Maybe<JiraAnnouncementBanner>;
|
|
32618
32672
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
32619
32673
|
atlassianIntelligenceAction?: Maybe<JiraAtlassianIntelligenceAction>;
|
|
32674
|
+
attachmentSearch?: Maybe<JiraAttachmentConnection>;
|
|
32620
32675
|
booleanUserProperty?: Maybe<JiraEntityPropertyBoolean>;
|
|
32621
32676
|
bulkOperationProgress?: Maybe<JiraIssueBulkOperationProgress>;
|
|
32622
32677
|
bulkOperationsMetadata?: Maybe<JiraIssueBulkOperationsMetadata>;
|
|
@@ -32669,6 +32724,7 @@ export declare type JiraQuery = {
|
|
|
32669
32724
|
issuesByKey?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
32670
32725
|
jiraBulkEditFields?: Maybe<JiraBulkEditResponse>;
|
|
32671
32726
|
jiraBulkEditTransitions?: Maybe<JiraBulkTransitionResponse>;
|
|
32727
|
+
jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
|
|
32672
32728
|
jiraProject?: Maybe<JiraProject>;
|
|
32673
32729
|
jiraProjectByKey?: Maybe<JiraProject>;
|
|
32674
32730
|
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
@@ -32729,6 +32785,8 @@ export declare type JiraQuery = {
|
|
|
32729
32785
|
userPreferences?: Maybe<JiraUserPreferences>;
|
|
32730
32786
|
userSegmentation?: Maybe<JiraUserSegmentation>;
|
|
32731
32787
|
version?: Maybe<JiraVersionResult>;
|
|
32788
|
+
versionById?: Maybe<JiraVersion>;
|
|
32789
|
+
versionSearch?: Maybe<JiraVersionConnection>;
|
|
32732
32790
|
versionsByIds?: Maybe<Array<Maybe<JiraVersion>>>;
|
|
32733
32791
|
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
32734
32792
|
versionsForProjects?: Maybe<JiraVersionConnection>;
|
|
@@ -32788,6 +32846,15 @@ export declare type JiraQueryAtlassianIntelligenceActionArgs = {
|
|
|
32788
32846
|
atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
|
|
32789
32847
|
cloudId: Scalars['ID']['input'];
|
|
32790
32848
|
};
|
|
32849
|
+
export declare type JiraQueryAttachmentSearchArgs = {
|
|
32850
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32851
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
32852
|
+
cloudId: Scalars['ID']['input'];
|
|
32853
|
+
filters?: InputMaybe<JiraAttachmentFilterInput>;
|
|
32854
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32855
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
32856
|
+
projectKeys: Array<Scalars['String']['input']>;
|
|
32857
|
+
};
|
|
32791
32858
|
export declare type JiraQueryBooleanUserPropertyArgs = {
|
|
32792
32859
|
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
32793
32860
|
cloudId: Scalars['ID']['input'];
|
|
@@ -33022,6 +33089,9 @@ export declare type JiraQueryJiraBulkEditFieldsArgs = {
|
|
|
33022
33089
|
export declare type JiraQueryJiraBulkEditTransitionsArgs = {
|
|
33023
33090
|
issueIds: Array<Scalars['ID']['input']>;
|
|
33024
33091
|
};
|
|
33092
|
+
export declare type JiraQueryJiraFetchBulkOperationDetailsArgs = {
|
|
33093
|
+
issueIds: Array<Scalars['ID']['input']>;
|
|
33094
|
+
};
|
|
33025
33095
|
export declare type JiraQueryJiraProjectArgs = {
|
|
33026
33096
|
id: Scalars['ID']['input'];
|
|
33027
33097
|
};
|
|
@@ -33290,6 +33360,16 @@ export declare type JiraQueryUserSegmentationArgs = {
|
|
|
33290
33360
|
export declare type JiraQueryVersionArgs = {
|
|
33291
33361
|
id: Scalars['ID']['input'];
|
|
33292
33362
|
};
|
|
33363
|
+
export declare type JiraQueryVersionByIdArgs = {
|
|
33364
|
+
id: Scalars['ID']['input'];
|
|
33365
|
+
};
|
|
33366
|
+
export declare type JiraQueryVersionSearchArgs = {
|
|
33367
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33368
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
33369
|
+
filter?: InputMaybe<JiraVersionFilterInput>;
|
|
33370
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33371
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
33372
|
+
};
|
|
33293
33373
|
export declare type JiraQueryVersionsByIdsArgs = {
|
|
33294
33374
|
ids: Array<Scalars['ID']['input']>;
|
|
33295
33375
|
};
|
|
@@ -36303,6 +36383,12 @@ export declare type JiraVersionEdge = {
|
|
|
36303
36383
|
cursor: Scalars['String']['output'];
|
|
36304
36384
|
node?: Maybe<JiraVersion>;
|
|
36305
36385
|
};
|
|
36386
|
+
export declare type JiraVersionFilterInput = {
|
|
36387
|
+
activeWithin?: InputMaybe<JiraDateTimeWindow>;
|
|
36388
|
+
projectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
36389
|
+
projectKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
36390
|
+
status?: InputMaybe<Array<InputMaybe<JiraVersionStatus>>>;
|
|
36391
|
+
};
|
|
36306
36392
|
export declare type JiraVersionInput = {
|
|
36307
36393
|
versionId?: InputMaybe<Scalars['ID']['input']>;
|
|
36308
36394
|
};
|
|
@@ -41242,6 +41328,7 @@ export declare enum RateLimitingCurrency {
|
|
|
41242
41328
|
PolarisViewArrangementInfoQueryCurrency = "POLARIS_VIEW_ARRANGEMENT_INFO_QUERY_CURRENCY",
|
|
41243
41329
|
PolarisViewCurrency = "POLARIS_VIEW_CURRENCY",
|
|
41244
41330
|
PolarisViewQueryCurrency = "POLARIS_VIEW_QUERY_CURRENCY",
|
|
41331
|
+
PolarisWriteCurrency = "POLARIS_WRITE_CURRENCY",
|
|
41245
41332
|
ShepherdDefaultCurrency = "SHEPHERD_DEFAULT_CURRENCY",
|
|
41246
41333
|
ShepherdReadAlertCurrency = "SHEPHERD_READ_ALERT_CURRENCY",
|
|
41247
41334
|
TeamsCurrency = "TEAMS_CURRENCY",
|
|
@@ -42629,6 +42716,26 @@ export declare type SearchResult = {
|
|
|
42629
42716
|
type: SearchResultType;
|
|
42630
42717
|
url: Scalars['URL']['output'];
|
|
42631
42718
|
};
|
|
42719
|
+
export declare type SearchResultAtlasGoal = SearchResult & {
|
|
42720
|
+
__typename?: 'SearchResultAtlasGoal';
|
|
42721
|
+
description: Scalars['String']['output'];
|
|
42722
|
+
goal?: Maybe<TownsquareGoal>;
|
|
42723
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
42724
|
+
id: Scalars['ID']['output'];
|
|
42725
|
+
title: Scalars['String']['output'];
|
|
42726
|
+
type: SearchResultType;
|
|
42727
|
+
url: Scalars['URL']['output'];
|
|
42728
|
+
};
|
|
42729
|
+
export declare type SearchResultAtlasProject = SearchResult & {
|
|
42730
|
+
__typename?: 'SearchResultAtlasProject';
|
|
42731
|
+
description: Scalars['String']['output'];
|
|
42732
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
42733
|
+
id: Scalars['ID']['output'];
|
|
42734
|
+
project?: Maybe<TownsquareProject>;
|
|
42735
|
+
title: Scalars['String']['output'];
|
|
42736
|
+
type: SearchResultType;
|
|
42737
|
+
url: Scalars['URL']['output'];
|
|
42738
|
+
};
|
|
42632
42739
|
export declare type SearchResultItemEdge = {
|
|
42633
42740
|
__typename?: 'SearchResultItemEdge';
|
|
42634
42741
|
cursor?: Maybe<Scalars['String']['output']>;
|