@forge/cli-shared 6.7.1-next.1 → 6.7.1-next.2-experimental-a12307f
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,21 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.7.1-next.2-experimental-a12307f
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2cdac63: forge install should list all scopes
|
|
8
|
+
- 999a9d0: Update error messages for deployment
|
|
9
|
+
- Updated dependencies [94e48b9]
|
|
10
|
+
- @forge/manifest@8.9.0-next.0-experimental-a12307f
|
|
11
|
+
|
|
12
|
+
## 6.7.1-next.2
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [94e48b9]
|
|
17
|
+
- @forge/manifest@8.9.0-next.0
|
|
18
|
+
|
|
3
19
|
## 6.7.1-next.1
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -53833,6 +53833,7 @@ export declare type JiraCmdbField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
53833
53833
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
53834
53834
|
attributesIncludedInAutoCompleteSearch?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
53835
53835
|
cmdbFieldConfig?: Maybe<JiraCmdbFieldConfig>;
|
|
53836
|
+
cmdbObjectSearch?: Maybe<JiraCmdbObjectConnection>;
|
|
53836
53837
|
cmdbObjects?: Maybe<JiraCmdbObjectConnection>;
|
|
53837
53838
|
description?: Maybe<Scalars['String']['output']>;
|
|
53838
53839
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
@@ -53851,6 +53852,13 @@ export declare type JiraCmdbField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
53851
53852
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
53852
53853
|
wasInsightRequestSuccessful?: Maybe<Scalars['Boolean']['output']>;
|
|
53853
53854
|
};
|
|
53855
|
+
export declare type JiraCmdbFieldCmdbObjectSearchArgs = {
|
|
53856
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53857
|
+
fieldLevelInput?: InputMaybe<JiraIssueTransitionFieldLevelInput>;
|
|
53858
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
53859
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53860
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
53861
|
+
};
|
|
53854
53862
|
export declare type JiraCmdbFieldCmdbObjectsArgs = {
|
|
53855
53863
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
53856
53864
|
fieldValues?: InputMaybe<Array<InputMaybe<JiraFieldKeyValueInput>>>;
|
|
@@ -59785,6 +59793,7 @@ export declare type JiraJqlVersionsUnreleasedArgs = {
|
|
|
59785
59793
|
export declare enum JiraJqlViewContext {
|
|
59786
59794
|
JpdRoadmaps = "JPD_ROADMAPS",
|
|
59787
59795
|
JswPlans = "JSW_PLANS",
|
|
59796
|
+
JswSummaryPage = "JSW_SUMMARY_PAGE",
|
|
59788
59797
|
Jwm = "JWM",
|
|
59789
59798
|
ShadowRequest = "SHADOW_REQUEST"
|
|
59790
59799
|
}
|
|
@@ -73754,6 +73763,7 @@ export declare type MercuryBudgetAggregation = {
|
|
|
73754
73763
|
};
|
|
73755
73764
|
export declare type MercuryChangeProposal = Node & {
|
|
73756
73765
|
__typename?: 'MercuryChangeProposal';
|
|
73766
|
+
comments?: Maybe<MercuryChangeProposalCommentConnection>;
|
|
73757
73767
|
description?: Maybe<Scalars['String']['output']>;
|
|
73758
73768
|
id: Scalars['ID']['output'];
|
|
73759
73769
|
name: Scalars['String']['output'];
|
|
@@ -73762,12 +73772,54 @@ export declare type MercuryChangeProposal = Node & {
|
|
|
73762
73772
|
statusTransitions?: Maybe<MercuryChangeProposalStatusTransitions>;
|
|
73763
73773
|
strategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
73764
73774
|
};
|
|
73775
|
+
export declare type MercuryChangeProposalCommentsArgs = {
|
|
73776
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
73777
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
73778
|
+
};
|
|
73779
|
+
export declare type MercuryChangeProposalComment = {
|
|
73780
|
+
__typename?: 'MercuryChangeProposalComment';
|
|
73781
|
+
content: Scalars['String']['output'];
|
|
73782
|
+
createdBy: Scalars['ID']['output'];
|
|
73783
|
+
createdDate: Scalars['String']['output'];
|
|
73784
|
+
id: Scalars['ID']['output'];
|
|
73785
|
+
};
|
|
73786
|
+
export declare type MercuryChangeProposalCommentConnection = {
|
|
73787
|
+
__typename?: 'MercuryChangeProposalCommentConnection';
|
|
73788
|
+
edges?: Maybe<Array<Maybe<MercuryChangeProposalCommentEdge>>>;
|
|
73789
|
+
pageInfo: PageInfo;
|
|
73790
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
73791
|
+
};
|
|
73792
|
+
export declare type MercuryChangeProposalCommentEdge = {
|
|
73793
|
+
__typename?: 'MercuryChangeProposalCommentEdge';
|
|
73794
|
+
cursor: Scalars['String']['output'];
|
|
73795
|
+
node?: Maybe<MercuryChangeProposalComment>;
|
|
73796
|
+
};
|
|
73765
73797
|
export declare type MercuryChangeProposalConnection = {
|
|
73766
73798
|
__typename?: 'MercuryChangeProposalConnection';
|
|
73767
73799
|
edges?: Maybe<Array<Maybe<MercuryChangeProposalEdge>>>;
|
|
73768
73800
|
pageInfo: PageInfo;
|
|
73769
73801
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
73770
73802
|
};
|
|
73803
|
+
export declare type MercuryChangeProposalCreateCommentInput = {
|
|
73804
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
73805
|
+
content: Scalars['String']['input'];
|
|
73806
|
+
id: Scalars['ID']['input'];
|
|
73807
|
+
};
|
|
73808
|
+
export declare type MercuryChangeProposalCreateCommentPayload = Payload & {
|
|
73809
|
+
__typename?: 'MercuryChangeProposalCreateCommentPayload';
|
|
73810
|
+
createdComment?: Maybe<MercuryChangeProposalComment>;
|
|
73811
|
+
errors?: Maybe<Array<MutationError>>;
|
|
73812
|
+
success: Scalars['Boolean']['output'];
|
|
73813
|
+
};
|
|
73814
|
+
export declare type MercuryChangeProposalDeleteCommentInput = {
|
|
73815
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
73816
|
+
id: Scalars['ID']['input'];
|
|
73817
|
+
};
|
|
73818
|
+
export declare type MercuryChangeProposalDeleteCommentPayload = Payload & {
|
|
73819
|
+
__typename?: 'MercuryChangeProposalDeleteCommentPayload';
|
|
73820
|
+
errors?: Maybe<Array<MutationError>>;
|
|
73821
|
+
success: Scalars['Boolean']['output'];
|
|
73822
|
+
};
|
|
73771
73823
|
export declare type MercuryChangeProposalEdge = {
|
|
73772
73824
|
__typename?: 'MercuryChangeProposalEdge';
|
|
73773
73825
|
cursor: Scalars['String']['output'];
|
|
@@ -73797,6 +73849,17 @@ export declare type MercuryChangeProposalStatusTransitions = {
|
|
|
73797
73849
|
__typename?: 'MercuryChangeProposalStatusTransitions';
|
|
73798
73850
|
available: Array<MercuryChangeProposalStatusTransition>;
|
|
73799
73851
|
};
|
|
73852
|
+
export declare type MercuryChangeProposalUpdateCommentInput = {
|
|
73853
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
73854
|
+
content: Scalars['String']['input'];
|
|
73855
|
+
id: Scalars['ID']['input'];
|
|
73856
|
+
};
|
|
73857
|
+
export declare type MercuryChangeProposalUpdateCommentPayload = {
|
|
73858
|
+
__typename?: 'MercuryChangeProposalUpdateCommentPayload';
|
|
73859
|
+
errors?: Maybe<Array<MutationError>>;
|
|
73860
|
+
success: Scalars['Boolean']['output'];
|
|
73861
|
+
updatedComment?: Maybe<MercuryChangeProposalComment>;
|
|
73862
|
+
};
|
|
73800
73863
|
export declare type MercuryComment = Node & {
|
|
73801
73864
|
__typename?: 'MercuryComment';
|
|
73802
73865
|
ari: Scalars['String']['output'];
|
|
@@ -73852,6 +73915,7 @@ export declare type MercuryCreateFocusAreaInput = {
|
|
|
73852
73915
|
export declare type MercuryCreateFocusAreaPayload = Payload & {
|
|
73853
73916
|
__typename?: 'MercuryCreateFocusAreaPayload';
|
|
73854
73917
|
createdFocusArea?: Maybe<MercuryFocusArea>;
|
|
73918
|
+
entityChangeRequirements?: Maybe<MercuryFocusAreaChangeRequirements>;
|
|
73855
73919
|
errors?: Maybe<Array<MutationError>>;
|
|
73856
73920
|
success: Scalars['Boolean']['output'];
|
|
73857
73921
|
};
|
|
@@ -74106,6 +74170,12 @@ export declare type MercuryFocusAreaAllocations = {
|
|
|
74106
74170
|
__typename?: 'MercuryFocusAreaAllocations';
|
|
74107
74171
|
human?: Maybe<MercuryHumanResourcesAllocation>;
|
|
74108
74172
|
};
|
|
74173
|
+
export declare type MercuryFocusAreaChangeRequirements = {
|
|
74174
|
+
__typename?: 'MercuryFocusAreaChangeRequirements';
|
|
74175
|
+
changeProposalId?: Maybe<Scalars['ID']['output']>;
|
|
74176
|
+
changeProposalName?: Maybe<Scalars['String']['output']>;
|
|
74177
|
+
strategicEventId?: Maybe<Scalars['ID']['output']>;
|
|
74178
|
+
};
|
|
74109
74179
|
export declare type MercuryFocusAreaConnection = {
|
|
74110
74180
|
__typename?: 'MercuryFocusAreaConnection';
|
|
74111
74181
|
edges?: Maybe<Array<Maybe<MercuryFocusAreaEdge>>>;
|
|
@@ -74939,6 +75009,7 @@ export declare enum MercuryStatusColor {
|
|
|
74939
75009
|
}
|
|
74940
75010
|
export declare type MercuryStrategicEvent = Node & {
|
|
74941
75011
|
__typename?: 'MercuryStrategicEvent';
|
|
75012
|
+
comments?: Maybe<MercuryStrategicEventCommentConnection>;
|
|
74942
75013
|
description?: Maybe<Scalars['String']['output']>;
|
|
74943
75014
|
id: Scalars['ID']['output'];
|
|
74944
75015
|
name: Scalars['String']['output'];
|
|
@@ -74947,12 +75018,54 @@ export declare type MercuryStrategicEvent = Node & {
|
|
|
74947
75018
|
statusTransitions?: Maybe<MercuryStrategicEventStatusTransitions>;
|
|
74948
75019
|
targetDate?: Maybe<Scalars['String']['output']>;
|
|
74949
75020
|
};
|
|
75021
|
+
export declare type MercuryStrategicEventCommentsArgs = {
|
|
75022
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
75023
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
75024
|
+
};
|
|
75025
|
+
export declare type MercuryStrategicEventComment = {
|
|
75026
|
+
__typename?: 'MercuryStrategicEventComment';
|
|
75027
|
+
content: Scalars['String']['output'];
|
|
75028
|
+
createdBy: Scalars['ID']['output'];
|
|
75029
|
+
createdDate: Scalars['String']['output'];
|
|
75030
|
+
id: Scalars['ID']['output'];
|
|
75031
|
+
};
|
|
75032
|
+
export declare type MercuryStrategicEventCommentConnection = {
|
|
75033
|
+
__typename?: 'MercuryStrategicEventCommentConnection';
|
|
75034
|
+
edges?: Maybe<Array<Maybe<MercuryStrategicEventCommentEdge>>>;
|
|
75035
|
+
pageInfo: PageInfo;
|
|
75036
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
75037
|
+
};
|
|
75038
|
+
export declare type MercuryStrategicEventCommentEdge = {
|
|
75039
|
+
__typename?: 'MercuryStrategicEventCommentEdge';
|
|
75040
|
+
cursor: Scalars['String']['output'];
|
|
75041
|
+
node?: Maybe<MercuryStrategicEventComment>;
|
|
75042
|
+
};
|
|
74950
75043
|
export declare type MercuryStrategicEventConnection = {
|
|
74951
75044
|
__typename?: 'MercuryStrategicEventConnection';
|
|
74952
75045
|
edges?: Maybe<Array<Maybe<MercuryStrategicEventEdge>>>;
|
|
74953
75046
|
pageInfo: PageInfo;
|
|
74954
75047
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
74955
75048
|
};
|
|
75049
|
+
export declare type MercuryStrategicEventCreateCommentInput = {
|
|
75050
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
75051
|
+
content: Scalars['String']['input'];
|
|
75052
|
+
id: Scalars['ID']['input'];
|
|
75053
|
+
};
|
|
75054
|
+
export declare type MercuryStrategicEventCreateCommentPayload = Payload & {
|
|
75055
|
+
__typename?: 'MercuryStrategicEventCreateCommentPayload';
|
|
75056
|
+
createdComment?: Maybe<MercuryStrategicEventComment>;
|
|
75057
|
+
errors?: Maybe<Array<MutationError>>;
|
|
75058
|
+
success: Scalars['Boolean']['output'];
|
|
75059
|
+
};
|
|
75060
|
+
export declare type MercuryStrategicEventDeleteCommentInput = {
|
|
75061
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
75062
|
+
id: Scalars['ID']['input'];
|
|
75063
|
+
};
|
|
75064
|
+
export declare type MercuryStrategicEventDeleteCommentPayload = Payload & {
|
|
75065
|
+
__typename?: 'MercuryStrategicEventDeleteCommentPayload';
|
|
75066
|
+
errors?: Maybe<Array<MutationError>>;
|
|
75067
|
+
success: Scalars['Boolean']['output'];
|
|
75068
|
+
};
|
|
74956
75069
|
export declare type MercuryStrategicEventEdge = {
|
|
74957
75070
|
__typename?: 'MercuryStrategicEventEdge';
|
|
74958
75071
|
cursor: Scalars['String']['output'];
|
|
@@ -74984,6 +75097,17 @@ export declare type MercuryStrategicEventStatusTransitions = {
|
|
|
74984
75097
|
__typename?: 'MercuryStrategicEventStatusTransitions';
|
|
74985
75098
|
available: Array<MercuryStrategicEventStatusTransition>;
|
|
74986
75099
|
};
|
|
75100
|
+
export declare type MercuryStrategicEventUpdateCommentInput = {
|
|
75101
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
75102
|
+
content: Scalars['String']['input'];
|
|
75103
|
+
id: Scalars['ID']['input'];
|
|
75104
|
+
};
|
|
75105
|
+
export declare type MercuryStrategicEventUpdateCommentPayload = {
|
|
75106
|
+
__typename?: 'MercuryStrategicEventUpdateCommentPayload';
|
|
75107
|
+
errors?: Maybe<Array<MutationError>>;
|
|
75108
|
+
success: Scalars['Boolean']['output'];
|
|
75109
|
+
updatedComment?: Maybe<MercuryStrategicEventComment>;
|
|
75110
|
+
};
|
|
74987
75111
|
export declare type MercuryStrategicEventsMutationApi = {
|
|
74988
75112
|
__typename?: 'MercuryStrategicEventsMutationApi';
|
|
74989
75113
|
createChangeProposal?: Maybe<MercuryCreateChangeProposalPayload>;
|