@forge/cli-shared 6.1.0-next.8 → 6.1.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,27 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 134e5c7: Migrating forge-cli-enable-atlas-product-support from LD to Statsig
|
|
8
|
+
- 08ce743: Migrating is-logs-v2-api-enabled flag from LD to Statsig
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies [84b20e6]
|
|
13
|
+
- Updated dependencies [51dc2a8]
|
|
14
|
+
- Updated dependencies [81831c1]
|
|
15
|
+
- Updated dependencies [577777c]
|
|
16
|
+
- Updated dependencies [6b70be1]
|
|
17
|
+
- Updated dependencies [fea8467]
|
|
18
|
+
- Updated dependencies [6e01e13]
|
|
19
|
+
- Updated dependencies [7ba2a03]
|
|
20
|
+
- Updated dependencies [cdbb366]
|
|
21
|
+
- Updated dependencies [0962638]
|
|
22
|
+
- Updated dependencies [512d5ec]
|
|
23
|
+
- @forge/manifest@7.10.0
|
|
24
|
+
|
|
3
25
|
## 6.1.0-next.8
|
|
4
26
|
|
|
5
27
|
### Minor Changes
|
|
@@ -46220,6 +46220,7 @@ export declare type JiraMutation = {
|
|
|
46220
46220
|
removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
|
|
46221
46221
|
renameNavigationItem?: Maybe<JiraRenameNavigationItemPayload>;
|
|
46222
46222
|
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
46223
|
+
saveBusinessBoardSettings?: Maybe<JiraWorkManagementBoardSettingsPayload>;
|
|
46223
46224
|
saveVersionDetailsCollapsedUis?: Maybe<JiraVersionDetailsCollapsedUisPayload>;
|
|
46224
46225
|
saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
|
|
46225
46226
|
scheduleBulkExecuteProjectCleanupRecommendations?: Maybe<JiraBulkCleanupProjectsPayload>;
|
|
@@ -46561,6 +46562,9 @@ export declare type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
|
|
|
46561
46562
|
fieldSetsInput?: InputMaybe<JiraFieldSetsMutationInput>;
|
|
46562
46563
|
id: Scalars['ID']['input'];
|
|
46563
46564
|
};
|
|
46565
|
+
export declare type JiraMutationSaveBusinessBoardSettingsArgs = {
|
|
46566
|
+
input: JiraWorkManagementBoardSettingsInput;
|
|
46567
|
+
};
|
|
46564
46568
|
export declare type JiraMutationSaveVersionDetailsCollapsedUisArgs = {
|
|
46565
46569
|
input: JiraVersionDetailsCollapsedUisInput;
|
|
46566
46570
|
};
|
|
@@ -53915,6 +53919,15 @@ export declare type JiraWorkManagementBackgroundUploadToken = {
|
|
|
53915
53919
|
tokenDurationInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
53916
53920
|
};
|
|
53917
53921
|
export declare type JiraWorkManagementBackgroundUploadTokenResult = JiraWorkManagementBackgroundUploadToken | QueryError;
|
|
53922
|
+
export declare type JiraWorkManagementBoardSettingsInput = {
|
|
53923
|
+
completedIssueSearchCutOffInDays: Scalars['Int']['input'];
|
|
53924
|
+
projectId: Scalars['ID']['input'];
|
|
53925
|
+
};
|
|
53926
|
+
export declare type JiraWorkManagementBoardSettingsPayload = Payload & {
|
|
53927
|
+
__typename?: 'JiraWorkManagementBoardSettingsPayload';
|
|
53928
|
+
errors?: Maybe<Array<MutationError>>;
|
|
53929
|
+
success: Scalars['Boolean']['output'];
|
|
53930
|
+
};
|
|
53918
53931
|
export declare type JiraWorkManagementChildSummary = {
|
|
53919
53932
|
__typename?: 'JiraWorkManagementChildSummary';
|
|
53920
53933
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|