@forge/cli-shared 3.2.0-next.1 → 3.2.0-next.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
CHANGED
|
@@ -8627,6 +8627,23 @@ export declare type JiraCreateCustomFilterPayload = Payload & {
|
|
|
8627
8627
|
errors?: Maybe<Array<MutationError>>;
|
|
8628
8628
|
filter?: Maybe<JiraCustomFilter>;
|
|
8629
8629
|
};
|
|
8630
|
+
export declare type JiraCreateReleaseNoteConfluencePageInput = {
|
|
8631
|
+
versionId: Scalars['ID'];
|
|
8632
|
+
appLinkId?: Maybe<Scalars['ID']>;
|
|
8633
|
+
spaceId: Scalars['ID'];
|
|
8634
|
+
parentPageId: Scalars['ID'];
|
|
8635
|
+
issueFieldIds: Array<Scalars['ID']>;
|
|
8636
|
+
issueTypeIds: Array<Scalars['ID']>;
|
|
8637
|
+
};
|
|
8638
|
+
export declare type JiraCreateReleaseNoteConfluencePagePayload = Payload & {
|
|
8639
|
+
__typename?: 'JiraCreateReleaseNoteConfluencePagePayload';
|
|
8640
|
+
success: Scalars['Boolean'];
|
|
8641
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8642
|
+
releaseNotePageViewUrl?: Maybe<Scalars['URL']>;
|
|
8643
|
+
releaseNotePageEditUrl?: Maybe<Scalars['URL']>;
|
|
8644
|
+
addToRelatedWorkSuccess?: Maybe<Scalars['Boolean']>;
|
|
8645
|
+
version?: Maybe<JiraVersion>;
|
|
8646
|
+
};
|
|
8630
8647
|
export declare type JiraCustomFilter = JiraFilter & Node & {
|
|
8631
8648
|
__typename?: 'JiraCustomFilter';
|
|
8632
8649
|
id: Scalars['ID'];
|
|
@@ -10617,6 +10634,7 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
|
10617
10634
|
export declare type JiraMutation = {
|
|
10618
10635
|
__typename?: 'JiraMutation';
|
|
10619
10636
|
updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
|
|
10637
|
+
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
10620
10638
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
10621
10639
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
10622
10640
|
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
@@ -10642,6 +10660,9 @@ export declare type JiraMutation = {
|
|
|
10642
10660
|
export declare type JiraMutationUpdateReleaseNotesConfigurationArgs = {
|
|
10643
10661
|
input: JiraUpdateReleaseNotesConfigurationInput;
|
|
10644
10662
|
};
|
|
10663
|
+
export declare type JiraMutationCreateReleaseNoteConfluencePageArgs = {
|
|
10664
|
+
input: JiraCreateReleaseNoteConfluencePageInput;
|
|
10665
|
+
};
|
|
10645
10666
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
10646
10667
|
cloudId: Scalars['ID'];
|
|
10647
10668
|
input: Array<JiraSetApplicationPropertyInput>;
|
|
@@ -18387,6 +18408,7 @@ export declare type SupportRequest = {
|
|
|
18387
18408
|
tracAttachmentComponentsEnabled?: Maybe<Scalars['Boolean']>;
|
|
18388
18409
|
lastComment: SupportRequestComments;
|
|
18389
18410
|
relatedRequests?: Maybe<Array<Maybe<SupportRequest>>>;
|
|
18411
|
+
capabilities?: Maybe<Array<Scalars['String']>>;
|
|
18390
18412
|
sourceId?: Maybe<Scalars['String']>;
|
|
18391
18413
|
activities: SupportRequestActivities;
|
|
18392
18414
|
};
|