@forge/cli-shared 6.1.0-next.8 → 6.2.0-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,38 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.2.0-next.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 3cf86f9: Bump sentry/node package to fix issues with forge command
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [3cf86f9]
|
|
12
|
+
- @forge/manifest@7.11.0-next.0
|
|
13
|
+
|
|
14
|
+
## 6.1.0
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- 134e5c7: Migrating forge-cli-enable-atlas-product-support from LD to Statsig
|
|
19
|
+
- 08ce743: Migrating is-logs-v2-api-enabled flag from LD to Statsig
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies [84b20e6]
|
|
24
|
+
- Updated dependencies [51dc2a8]
|
|
25
|
+
- Updated dependencies [81831c1]
|
|
26
|
+
- Updated dependencies [577777c]
|
|
27
|
+
- Updated dependencies [6b70be1]
|
|
28
|
+
- Updated dependencies [fea8467]
|
|
29
|
+
- Updated dependencies [6e01e13]
|
|
30
|
+
- Updated dependencies [7ba2a03]
|
|
31
|
+
- Updated dependencies [cdbb366]
|
|
32
|
+
- Updated dependencies [0962638]
|
|
33
|
+
- Updated dependencies [512d5ec]
|
|
34
|
+
- @forge/manifest@7.10.0
|
|
35
|
+
|
|
3
36
|
## 6.1.0-next.8
|
|
4
37
|
|
|
5
38
|
### Minor Changes
|
|
@@ -2405,6 +2405,15 @@ export declare type CcpBillingPeriodDetails = {
|
|
|
2405
2405
|
billingAnchorTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
2406
2406
|
nextBillingTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
2407
2407
|
};
|
|
2408
|
+
export declare type CcpCancelEntitlementExperienceCapability = CommerceExperienceCapability & {
|
|
2409
|
+
__typename?: 'CcpCancelEntitlementExperienceCapability';
|
|
2410
|
+
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
2411
|
+
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
2412
|
+
reasonCode?: Maybe<CcpCancelEntitlementExperienceCapabilityReasonCode>;
|
|
2413
|
+
};
|
|
2414
|
+
export declare enum CcpCancelEntitlementExperienceCapabilityReasonCode {
|
|
2415
|
+
EntitlementIsCollectionInstance = "ENTITLEMENT_IS_COLLECTION_INSTANCE"
|
|
2416
|
+
}
|
|
2408
2417
|
export declare type CcpChangeOfferingExperienceCapability = CommerceExperienceCapability & {
|
|
2409
2418
|
__typename?: 'CcpChangeOfferingExperienceCapability';
|
|
2410
2419
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -2523,6 +2532,7 @@ export declare type CcpEntitlementLatestUsageForChargeElementArgs = {
|
|
|
2523
2532
|
};
|
|
2524
2533
|
export declare type CcpEntitlementExperienceCapabilities = CommerceEntitlementExperienceCapabilities & {
|
|
2525
2534
|
__typename?: 'CcpEntitlementExperienceCapabilities';
|
|
2535
|
+
cancelEntitlement?: Maybe<CcpCancelEntitlementExperienceCapability>;
|
|
2526
2536
|
changeOffering?: Maybe<CcpExperienceCapability>;
|
|
2527
2537
|
changeOfferingV2?: Maybe<CcpChangeOfferingExperienceCapability>;
|
|
2528
2538
|
manageEntitlement?: Maybe<CcpManageEntitlementExperienceCapability>;
|
|
@@ -44075,8 +44085,15 @@ export declare type JiraIssueDevSummaryResult = {
|
|
|
44075
44085
|
export declare type JiraIssueEdge = {
|
|
44076
44086
|
__typename?: 'JiraIssueEdge';
|
|
44077
44087
|
cursor: Scalars['String']['output'];
|
|
44088
|
+
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
44078
44089
|
node?: Maybe<JiraIssue>;
|
|
44079
44090
|
};
|
|
44091
|
+
export declare type JiraIssueEdgeFieldSetsArgs = {
|
|
44092
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
44093
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
44094
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
44095
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
44096
|
+
};
|
|
44080
44097
|
export declare type JiraIssueExportError = {
|
|
44081
44098
|
__typename?: 'JiraIssueExportError';
|
|
44082
44099
|
displayMessage?: Maybe<Scalars['String']['output']>;
|
|
@@ -44707,6 +44724,10 @@ export declare type JiraIssueSearchFieldSetsFilter = {
|
|
|
44707
44724
|
fieldSetSelectedState?: InputMaybe<JiraIssueSearchFieldSetSelectedState>;
|
|
44708
44725
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
44709
44726
|
};
|
|
44727
|
+
export declare type JiraIssueSearchFieldSetsInput = {
|
|
44728
|
+
fieldSetIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
44729
|
+
viewInput?: InputMaybe<JiraIssueSearchViewInput>;
|
|
44730
|
+
};
|
|
44710
44731
|
export declare type JiraIssueSearchGroupByFieldMutationPayload = Payload & {
|
|
44711
44732
|
__typename?: 'JiraIssueSearchGroupByFieldMutationPayload';
|
|
44712
44733
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -46220,6 +46241,7 @@ export declare type JiraMutation = {
|
|
|
46220
46241
|
removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
|
|
46221
46242
|
renameNavigationItem?: Maybe<JiraRenameNavigationItemPayload>;
|
|
46222
46243
|
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
46244
|
+
saveBusinessBoardSettings?: Maybe<JiraWorkManagementBoardSettingsPayload>;
|
|
46223
46245
|
saveVersionDetailsCollapsedUis?: Maybe<JiraVersionDetailsCollapsedUisPayload>;
|
|
46224
46246
|
saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
|
|
46225
46247
|
scheduleBulkExecuteProjectCleanupRecommendations?: Maybe<JiraBulkCleanupProjectsPayload>;
|
|
@@ -46561,6 +46583,9 @@ export declare type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
|
|
|
46561
46583
|
fieldSetsInput?: InputMaybe<JiraFieldSetsMutationInput>;
|
|
46562
46584
|
id: Scalars['ID']['input'];
|
|
46563
46585
|
};
|
|
46586
|
+
export declare type JiraMutationSaveBusinessBoardSettingsArgs = {
|
|
46587
|
+
input: JiraWorkManagementBoardSettingsInput;
|
|
46588
|
+
};
|
|
46564
46589
|
export declare type JiraMutationSaveVersionDetailsCollapsedUisArgs = {
|
|
46565
46590
|
input: JiraVersionDetailsCollapsedUisInput;
|
|
46566
46591
|
};
|
|
@@ -49108,6 +49133,7 @@ export declare type JiraQueryIssueSearchArgs = {
|
|
|
49108
49133
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
49109
49134
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
49110
49135
|
cloudId: Scalars['ID']['input'];
|
|
49136
|
+
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
|
|
49111
49137
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49112
49138
|
issueSearchInput: JiraIssueSearchInput;
|
|
49113
49139
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -49126,6 +49152,7 @@ export declare type JiraQueryIssueSearchStableArgs = {
|
|
|
49126
49152
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
49127
49153
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
49128
49154
|
cloudId: Scalars['ID']['input'];
|
|
49155
|
+
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
|
|
49129
49156
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49130
49157
|
issueSearchInput: JiraIssueSearchInput;
|
|
49131
49158
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -50643,7 +50670,8 @@ export declare type JiraServiceManagementCreateAndAssociateWorkflowFromTemplateP
|
|
|
50643
50670
|
export declare type JiraServiceManagementCreateRequestTypeCategoryInput = {
|
|
50644
50671
|
name: Scalars['String']['input'];
|
|
50645
50672
|
owner?: InputMaybe<Scalars['String']['input']>;
|
|
50646
|
-
projectId?: InputMaybe<Scalars['
|
|
50673
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
50674
|
+
requestTypes?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
50647
50675
|
restriction?: InputMaybe<JiraServiceManagementRequestTypeCategoryRestriction>;
|
|
50648
50676
|
status?: InputMaybe<JiraServiceManagementRequestTypeCategoryStatus>;
|
|
50649
50677
|
};
|
|
@@ -51111,8 +51139,8 @@ export declare type JiraServiceManagementRequestTypeCategory = {
|
|
|
51111
51139
|
id: Scalars['ID']['output'];
|
|
51112
51140
|
name?: Maybe<Scalars['String']['output']>;
|
|
51113
51141
|
owner?: Maybe<Scalars['String']['output']>;
|
|
51114
|
-
projectId?: Maybe<Scalars['
|
|
51115
|
-
requestTypes?: Maybe<
|
|
51142
|
+
projectId?: Maybe<Scalars['ID']['output']>;
|
|
51143
|
+
requestTypes?: Maybe<JiraServiceManagementRequestTypeConnection>;
|
|
51116
51144
|
restriction?: Maybe<JiraServiceManagementRequestTypeCategoryRestriction>;
|
|
51117
51145
|
status?: Maybe<JiraServiceManagementRequestTypeCategoryStatus>;
|
|
51118
51146
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -53915,6 +53943,15 @@ export declare type JiraWorkManagementBackgroundUploadToken = {
|
|
|
53915
53943
|
tokenDurationInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
53916
53944
|
};
|
|
53917
53945
|
export declare type JiraWorkManagementBackgroundUploadTokenResult = JiraWorkManagementBackgroundUploadToken | QueryError;
|
|
53946
|
+
export declare type JiraWorkManagementBoardSettingsInput = {
|
|
53947
|
+
completedIssueSearchCutOffInDays: Scalars['Int']['input'];
|
|
53948
|
+
projectId: Scalars['ID']['input'];
|
|
53949
|
+
};
|
|
53950
|
+
export declare type JiraWorkManagementBoardSettingsPayload = Payload & {
|
|
53951
|
+
__typename?: 'JiraWorkManagementBoardSettingsPayload';
|
|
53952
|
+
errors?: Maybe<Array<MutationError>>;
|
|
53953
|
+
success: Scalars['Boolean']['output'];
|
|
53954
|
+
};
|
|
53918
53955
|
export declare type JiraWorkManagementChildSummary = {
|
|
53919
53956
|
__typename?: 'JiraWorkManagementChildSummary';
|
|
53920
53957
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -54857,6 +54894,9 @@ export declare type JsmChatWebAddConversationInteractionPayload = Payload & {
|
|
|
54857
54894
|
errors?: Maybe<Array<MutationError>>;
|
|
54858
54895
|
success: Scalars['Boolean']['output'];
|
|
54859
54896
|
};
|
|
54897
|
+
export declare enum JsmChatWebConversationActions {
|
|
54898
|
+
CloseConversation = "CLOSE_CONVERSATION"
|
|
54899
|
+
}
|
|
54860
54900
|
export declare type JsmChatWebConversationAppendixAction = JsmChatDropdownAppendix | JsmChatJiraFieldAppendix | JsmChatOptionAppendix;
|
|
54861
54901
|
export declare enum JsmChatWebConversationMessageContentType {
|
|
54862
54902
|
Adf = "ADF"
|
|
@@ -54885,6 +54925,7 @@ export declare type JsmChatWebSubscriptionEstablishedPayload = {
|
|
|
54885
54925
|
};
|
|
54886
54926
|
export declare type JsmChatWebSubscriptionResponse = {
|
|
54887
54927
|
__typename?: 'JsmChatWebSubscriptionResponse';
|
|
54928
|
+
action?: Maybe<JsmChatWebConversationActions>;
|
|
54888
54929
|
conversation?: Maybe<JsmChatMessageEdge>;
|
|
54889
54930
|
result?: Maybe<JsmChatWebConversationUpdateSubscriptionPayload>;
|
|
54890
54931
|
};
|
|
@@ -56275,6 +56316,7 @@ export declare type MarketplaceConsoleAppVersionCreateRequestInput = {
|
|
|
56275
56316
|
compatibilities: Array<MarketplaceConsoleAppSoftwareVersionCompatibilityInput>;
|
|
56276
56317
|
dcBuildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
56277
56318
|
frameworkDetails: MarketplaceConsoleAppSoftwareVersionFrameworkDetailsInput;
|
|
56319
|
+
paymentModel?: InputMaybe<MarketplaceConsolePaymentModel>;
|
|
56278
56320
|
versionNumber?: InputMaybe<Scalars['String']['input']>;
|
|
56279
56321
|
};
|
|
56280
56322
|
export declare type MarketplaceConsoleAppVersionDeleteRequestInput = {
|
|
@@ -56941,6 +56983,7 @@ export declare type MarketplaceConsoleQueryApiProductMetadataByAppIdArgs = {
|
|
|
56941
56983
|
export declare type MarketplaceConsoleRemoteArtifactDetails = {
|
|
56942
56984
|
__typename?: 'MarketplaceConsoleRemoteArtifactDetails';
|
|
56943
56985
|
dataCenterStatus?: Maybe<Scalars['String']['output']>;
|
|
56986
|
+
licensingEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
56944
56987
|
version?: Maybe<Scalars['String']['output']>;
|
|
56945
56988
|
};
|
|
56946
56989
|
export declare type MarketplaceConsoleRemoteArtifactLinks = {
|