@forge/cli-shared 6.6.1-next.12 → 6.6.1-next.12-experimental-edac07a
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,30 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.6.1-next.12-experimental-edac07a
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 091886c: prepare installations product field to accept multiple products
|
|
8
|
+
- d1b6fd5: Refactoring of SupportedProductsService.
|
|
9
|
+
- 71dc617: update primaryProduct to requiredProducts
|
|
10
|
+
- 321db2e: enable serial install execution
|
|
11
|
+
- 2086b3d: Remove node-fetch as a dependency
|
|
12
|
+
- b3b1250: enable multiselect for XPA apps
|
|
13
|
+
- 2319dc4: Improve multi-select product table UI
|
|
14
|
+
- 29e8c8b: Change message to deprecated
|
|
15
|
+
- Updated dependencies [48d2f56]
|
|
16
|
+
- Updated dependencies [dec434a]
|
|
17
|
+
- Updated dependencies [6b8b6e2]
|
|
18
|
+
- Updated dependencies [ba58c3a]
|
|
19
|
+
- Updated dependencies [3302cc2]
|
|
20
|
+
- Updated dependencies [2086b3d]
|
|
21
|
+
- Updated dependencies [55df193]
|
|
22
|
+
- Updated dependencies [ddc0256]
|
|
23
|
+
- Updated dependencies [4b050d8]
|
|
24
|
+
- Updated dependencies [de16df9]
|
|
25
|
+
- @forge/manifest@8.7.0-next.6-experimental-edac07a
|
|
26
|
+
- @forge/util@1.4.8-next.0-experimental-edac07a
|
|
27
|
+
|
|
3
28
|
## 6.6.1-next.12
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
|
@@ -48299,6 +48299,7 @@ export declare type GrowthUnifiedProfileJiraOnboardingContext = {
|
|
|
48299
48299
|
jiraFamiliarity?: Maybe<GrowthUnifiedProfileJiraFamiliarity>;
|
|
48300
48300
|
jobsToBeDone?: Maybe<Array<Maybe<GrowthUnifiedProfileJtbd>>>;
|
|
48301
48301
|
persona?: Maybe<Scalars['String']['output']>;
|
|
48302
|
+
projectLandingSelection?: Maybe<GrowthUnifiedProfileOnboardingContextProjectLandingSelection>;
|
|
48302
48303
|
projectName?: Maybe<Scalars['String']['output']>;
|
|
48303
48304
|
statusNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
48304
48305
|
teamType?: Maybe<GrowthUnifiedProfileTeamType>;
|
|
@@ -48310,6 +48311,7 @@ export declare type GrowthUnifiedProfileJiraOnboardingContextInput = {
|
|
|
48310
48311
|
jiraFamiliarity?: InputMaybe<GrowthUnifiedProfileJiraFamiliarity>;
|
|
48311
48312
|
jobsToBeDone?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileJtbd>>>;
|
|
48312
48313
|
persona?: InputMaybe<Scalars['String']['input']>;
|
|
48314
|
+
projectLandingSelection?: InputMaybe<GrowthUnifiedProfileOnboardingContextProjectLandingSelection>;
|
|
48313
48315
|
projectName?: InputMaybe<Scalars['String']['input']>;
|
|
48314
48316
|
statusNames?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
48315
48317
|
teamType?: InputMaybe<GrowthUnifiedProfileTeamType>;
|
|
@@ -48329,6 +48331,10 @@ export declare type GrowthUnifiedProfileOnboardingContextInput = {
|
|
|
48329
48331
|
confluence?: InputMaybe<GrowthUnifiedProfileConfluenceOnboardingContextInput>;
|
|
48330
48332
|
jira?: InputMaybe<GrowthUnifiedProfileJiraOnboardingContextInput>;
|
|
48331
48333
|
};
|
|
48334
|
+
export declare enum GrowthUnifiedProfileOnboardingContextProjectLandingSelection {
|
|
48335
|
+
CreateProject = "CREATE_PROJECT",
|
|
48336
|
+
SampleProject = "SAMPLE_PROJECT"
|
|
48337
|
+
}
|
|
48332
48338
|
export declare type GrowthUnifiedProfilePaidChannelContext = {
|
|
48333
48339
|
__typename?: 'GrowthUnifiedProfilePaidChannelContext';
|
|
48334
48340
|
anchor?: Maybe<GrowthUnifiedProfileAnchor>;
|
|
@@ -57711,7 +57717,9 @@ export declare type JiraJourneyStatusDependency = JiraJourneyItemCommon & {
|
|
|
57711
57717
|
name?: Maybe<Scalars['String']['output']>;
|
|
57712
57718
|
statusIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
57713
57719
|
statusType?: Maybe<JiraJourneyStatusDependencyType>;
|
|
57720
|
+
statuses?: Maybe<Array<JiraJourneyStatusDependencyStatus>>;
|
|
57714
57721
|
workItemIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
57722
|
+
workItems?: Maybe<Array<JiraJourneyWorkItem>>;
|
|
57715
57723
|
};
|
|
57716
57724
|
export declare type JiraJourneyStatusDependencyConfigurationInput = {
|
|
57717
57725
|
statuses?: InputMaybe<Array<JiraJourneyStatusDependencyConfigurationStatusInput>>;
|
|
@@ -57721,6 +57729,12 @@ export declare type JiraJourneyStatusDependencyConfigurationStatusInput = {
|
|
|
57721
57729
|
id: Scalars['ID']['input'];
|
|
57722
57730
|
type: JiraJourneyStatusDependencyType;
|
|
57723
57731
|
};
|
|
57732
|
+
export declare type JiraJourneyStatusDependencyStatus = {
|
|
57733
|
+
__typename?: 'JiraJourneyStatusDependencyStatus';
|
|
57734
|
+
id: Scalars['ID']['output'];
|
|
57735
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
57736
|
+
type?: Maybe<JiraJourneyStatusDependencyType>;
|
|
57737
|
+
};
|
|
57724
57738
|
export declare enum JiraJourneyStatusDependencyType {
|
|
57725
57739
|
Status = "STATUS",
|
|
57726
57740
|
StatusCategory = "STATUS_CATEGORY"
|
|
@@ -66660,6 +66674,7 @@ export declare type JiraUserPreferences = {
|
|
|
66660
66674
|
globalIssueCreateView?: Maybe<JiraGlobalIssueCreateView>;
|
|
66661
66675
|
isAdvancedRoadmapsSidebarLayoutEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
66662
66676
|
isCustomNavBarThemeFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
66677
|
+
isCustomNavBarThemeSectionMessageDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
66663
66678
|
isIssueViewAttachmentReferenceFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
66664
66679
|
isIssueViewChildIssuesLimitBestPracticeFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
66665
66680
|
isIssueViewCrossFlowBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
|