@forge/cli-shared 6.1.0 → 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,16 @@
|
|
|
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
|
+
|
|
3
14
|
## 6.1.0
|
|
4
15
|
|
|
5
16
|
### 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>>;
|
|
@@ -49112,6 +49133,7 @@ export declare type JiraQueryIssueSearchArgs = {
|
|
|
49112
49133
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
49113
49134
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
49114
49135
|
cloudId: Scalars['ID']['input'];
|
|
49136
|
+
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
|
|
49115
49137
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49116
49138
|
issueSearchInput: JiraIssueSearchInput;
|
|
49117
49139
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -49130,6 +49152,7 @@ export declare type JiraQueryIssueSearchStableArgs = {
|
|
|
49130
49152
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
49131
49153
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
49132
49154
|
cloudId: Scalars['ID']['input'];
|
|
49155
|
+
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
|
|
49133
49156
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49134
49157
|
issueSearchInput: JiraIssueSearchInput;
|
|
49135
49158
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -50647,7 +50670,8 @@ export declare type JiraServiceManagementCreateAndAssociateWorkflowFromTemplateP
|
|
|
50647
50670
|
export declare type JiraServiceManagementCreateRequestTypeCategoryInput = {
|
|
50648
50671
|
name: Scalars['String']['input'];
|
|
50649
50672
|
owner?: InputMaybe<Scalars['String']['input']>;
|
|
50650
|
-
projectId?: InputMaybe<Scalars['
|
|
50673
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
50674
|
+
requestTypes?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
50651
50675
|
restriction?: InputMaybe<JiraServiceManagementRequestTypeCategoryRestriction>;
|
|
50652
50676
|
status?: InputMaybe<JiraServiceManagementRequestTypeCategoryStatus>;
|
|
50653
50677
|
};
|
|
@@ -51115,8 +51139,8 @@ export declare type JiraServiceManagementRequestTypeCategory = {
|
|
|
51115
51139
|
id: Scalars['ID']['output'];
|
|
51116
51140
|
name?: Maybe<Scalars['String']['output']>;
|
|
51117
51141
|
owner?: Maybe<Scalars['String']['output']>;
|
|
51118
|
-
projectId?: Maybe<Scalars['
|
|
51119
|
-
requestTypes?: Maybe<
|
|
51142
|
+
projectId?: Maybe<Scalars['ID']['output']>;
|
|
51143
|
+
requestTypes?: Maybe<JiraServiceManagementRequestTypeConnection>;
|
|
51120
51144
|
restriction?: Maybe<JiraServiceManagementRequestTypeCategoryRestriction>;
|
|
51121
51145
|
status?: Maybe<JiraServiceManagementRequestTypeCategoryStatus>;
|
|
51122
51146
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -54870,6 +54894,9 @@ export declare type JsmChatWebAddConversationInteractionPayload = Payload & {
|
|
|
54870
54894
|
errors?: Maybe<Array<MutationError>>;
|
|
54871
54895
|
success: Scalars['Boolean']['output'];
|
|
54872
54896
|
};
|
|
54897
|
+
export declare enum JsmChatWebConversationActions {
|
|
54898
|
+
CloseConversation = "CLOSE_CONVERSATION"
|
|
54899
|
+
}
|
|
54873
54900
|
export declare type JsmChatWebConversationAppendixAction = JsmChatDropdownAppendix | JsmChatJiraFieldAppendix | JsmChatOptionAppendix;
|
|
54874
54901
|
export declare enum JsmChatWebConversationMessageContentType {
|
|
54875
54902
|
Adf = "ADF"
|
|
@@ -54898,6 +54925,7 @@ export declare type JsmChatWebSubscriptionEstablishedPayload = {
|
|
|
54898
54925
|
};
|
|
54899
54926
|
export declare type JsmChatWebSubscriptionResponse = {
|
|
54900
54927
|
__typename?: 'JsmChatWebSubscriptionResponse';
|
|
54928
|
+
action?: Maybe<JsmChatWebConversationActions>;
|
|
54901
54929
|
conversation?: Maybe<JsmChatMessageEdge>;
|
|
54902
54930
|
result?: Maybe<JsmChatWebConversationUpdateSubscriptionPayload>;
|
|
54903
54931
|
};
|
|
@@ -56288,6 +56316,7 @@ export declare type MarketplaceConsoleAppVersionCreateRequestInput = {
|
|
|
56288
56316
|
compatibilities: Array<MarketplaceConsoleAppSoftwareVersionCompatibilityInput>;
|
|
56289
56317
|
dcBuildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
56290
56318
|
frameworkDetails: MarketplaceConsoleAppSoftwareVersionFrameworkDetailsInput;
|
|
56319
|
+
paymentModel?: InputMaybe<MarketplaceConsolePaymentModel>;
|
|
56291
56320
|
versionNumber?: InputMaybe<Scalars['String']['input']>;
|
|
56292
56321
|
};
|
|
56293
56322
|
export declare type MarketplaceConsoleAppVersionDeleteRequestInput = {
|
|
@@ -56954,6 +56983,7 @@ export declare type MarketplaceConsoleQueryApiProductMetadataByAppIdArgs = {
|
|
|
56954
56983
|
export declare type MarketplaceConsoleRemoteArtifactDetails = {
|
|
56955
56984
|
__typename?: 'MarketplaceConsoleRemoteArtifactDetails';
|
|
56956
56985
|
dataCenterStatus?: Maybe<Scalars['String']['output']>;
|
|
56986
|
+
licensingEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
56957
56987
|
version?: Maybe<Scalars['String']['output']>;
|
|
56958
56988
|
};
|
|
56959
56989
|
export declare type MarketplaceConsoleRemoteArtifactLinks = {
|