@forge/cli-shared 3.23.4-next.3 → 3.23.4
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,15 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.23.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a5d062c: Added error messages for Forge apps containing Connect modules where there is an installation error due to a macro collision or failed descriptor validation.
|
|
8
|
+
- Updated dependencies [a44f2ba]
|
|
9
|
+
- Updated dependencies [b44f823]
|
|
10
|
+
- Updated dependencies [75f0e40]
|
|
11
|
+
- @forge/manifest@6.0.0
|
|
12
|
+
|
|
3
13
|
## 3.23.4-next.3
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
@@ -29350,7 +29350,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
29350
29350
|
JiraMultipleSelectField?: InputMaybe<Array<JiraUpdateMultipleSelectFieldInput>>;
|
|
29351
29351
|
JiraMultipleVersionPickerField?: InputMaybe<Array<JiraUpdateMultipleVersionPickerFieldInput>>;
|
|
29352
29352
|
JiraNumberField?: InputMaybe<Array<JiraUpdateNumberFieldInput>>;
|
|
29353
|
-
|
|
29353
|
+
JiraParentIssueField?: InputMaybe<Array<JiraUpdateParentFieldInput>>;
|
|
29354
29354
|
JiraPriorityField?: InputMaybe<Array<JiraUpdatePriorityFieldInput>>;
|
|
29355
29355
|
JiraRadioSelectField?: InputMaybe<Array<JiraUpdateRadioSelectFieldInput>>;
|
|
29356
29356
|
JiraResolutionField?: InputMaybe<Array<JiraUpdateResolutionFieldInput>>;
|
|
@@ -30354,6 +30354,7 @@ export declare type JiraMutation = {
|
|
|
30354
30354
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
30355
30355
|
initializeProjectNotificationPreferences?: Maybe<JiraInitializeProjectNotificationPreferencesPayload>;
|
|
30356
30356
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
30357
|
+
jwmCreateSavedView?: Maybe<JiraWorkManagementCreateSavedViewPayload>;
|
|
30357
30358
|
jwmDeleteAttachment?: Maybe<JiraWorkManagementDeleteAttachmentPayload>;
|
|
30358
30359
|
jwmUpdateActiveBackground?: Maybe<JiraWorkManagementUpdateActiveBackgroundPayload>;
|
|
30359
30360
|
linkIssueToVersionRelatedWork?: Maybe<JiraLinkIssueToVersionRelatedWorkPayload>;
|
|
@@ -30517,6 +30518,9 @@ export declare type JiraMutationInitializeProjectNotificationPreferencesArgs = {
|
|
|
30517
30518
|
cloudId: Scalars['ID']['input'];
|
|
30518
30519
|
input: JiraInitializeProjectNotificationPreferencesInput;
|
|
30519
30520
|
};
|
|
30521
|
+
export declare type JiraMutationJwmCreateSavedViewArgs = {
|
|
30522
|
+
input: JiraWorkManagementCreateSavedViewInput;
|
|
30523
|
+
};
|
|
30520
30524
|
export declare type JiraMutationJwmDeleteAttachmentArgs = {
|
|
30521
30525
|
input: JiraWorkManagementDeleteAttachmentInput;
|
|
30522
30526
|
};
|
|
@@ -36080,6 +36084,17 @@ export declare type JiraWorkManagementCreateOverviewPayload = Payload & {
|
|
|
36080
36084
|
jwmOverview?: Maybe<JiraWorkManagementOverview>;
|
|
36081
36085
|
success: Scalars['Boolean']['output'];
|
|
36082
36086
|
};
|
|
36087
|
+
export declare type JiraWorkManagementCreateSavedViewInput = {
|
|
36088
|
+
label?: InputMaybe<Scalars['String']['input']>;
|
|
36089
|
+
projectId: Scalars['ID']['input'];
|
|
36090
|
+
typeKey: Scalars['String']['input'];
|
|
36091
|
+
};
|
|
36092
|
+
export declare type JiraWorkManagementCreateSavedViewPayload = Payload & {
|
|
36093
|
+
__typename?: 'JiraWorkManagementCreateSavedViewPayload';
|
|
36094
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36095
|
+
savedView?: Maybe<JiraWorkManagementSavedView>;
|
|
36096
|
+
success: Scalars['Boolean']['output'];
|
|
36097
|
+
};
|
|
36083
36098
|
export declare type JiraWorkManagementCustomBackground = {
|
|
36084
36099
|
__typename?: 'JiraWorkManagementCustomBackground';
|
|
36085
36100
|
activeCount?: Maybe<Scalars['Long']['output']>;
|