@forge/cli-shared 6.7.1-next.1 → 6.7.1-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
|
@@ -73754,6 +73754,7 @@ export declare type MercuryBudgetAggregation = {
|
|
|
73754
73754
|
};
|
|
73755
73755
|
export declare type MercuryChangeProposal = Node & {
|
|
73756
73756
|
__typename?: 'MercuryChangeProposal';
|
|
73757
|
+
comments?: Maybe<MercuryChangeProposalCommentConnection>;
|
|
73757
73758
|
description?: Maybe<Scalars['String']['output']>;
|
|
73758
73759
|
id: Scalars['ID']['output'];
|
|
73759
73760
|
name: Scalars['String']['output'];
|
|
@@ -73762,12 +73763,54 @@ export declare type MercuryChangeProposal = Node & {
|
|
|
73762
73763
|
statusTransitions?: Maybe<MercuryChangeProposalStatusTransitions>;
|
|
73763
73764
|
strategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
73764
73765
|
};
|
|
73766
|
+
export declare type MercuryChangeProposalCommentsArgs = {
|
|
73767
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
73768
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
73769
|
+
};
|
|
73770
|
+
export declare type MercuryChangeProposalComment = {
|
|
73771
|
+
__typename?: 'MercuryChangeProposalComment';
|
|
73772
|
+
content: Scalars['String']['output'];
|
|
73773
|
+
createdBy: Scalars['ID']['output'];
|
|
73774
|
+
createdDate: Scalars['String']['output'];
|
|
73775
|
+
id: Scalars['ID']['output'];
|
|
73776
|
+
};
|
|
73777
|
+
export declare type MercuryChangeProposalCommentConnection = {
|
|
73778
|
+
__typename?: 'MercuryChangeProposalCommentConnection';
|
|
73779
|
+
edges?: Maybe<Array<Maybe<MercuryChangeProposalCommentEdge>>>;
|
|
73780
|
+
pageInfo: PageInfo;
|
|
73781
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
73782
|
+
};
|
|
73783
|
+
export declare type MercuryChangeProposalCommentEdge = {
|
|
73784
|
+
__typename?: 'MercuryChangeProposalCommentEdge';
|
|
73785
|
+
cursor: Scalars['String']['output'];
|
|
73786
|
+
node?: Maybe<MercuryChangeProposalComment>;
|
|
73787
|
+
};
|
|
73765
73788
|
export declare type MercuryChangeProposalConnection = {
|
|
73766
73789
|
__typename?: 'MercuryChangeProposalConnection';
|
|
73767
73790
|
edges?: Maybe<Array<Maybe<MercuryChangeProposalEdge>>>;
|
|
73768
73791
|
pageInfo: PageInfo;
|
|
73769
73792
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
73770
73793
|
};
|
|
73794
|
+
export declare type MercuryChangeProposalCreateCommentInput = {
|
|
73795
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
73796
|
+
content: Scalars['String']['input'];
|
|
73797
|
+
id: Scalars['ID']['input'];
|
|
73798
|
+
};
|
|
73799
|
+
export declare type MercuryChangeProposalCreateCommentPayload = Payload & {
|
|
73800
|
+
__typename?: 'MercuryChangeProposalCreateCommentPayload';
|
|
73801
|
+
createdComment?: Maybe<MercuryChangeProposalComment>;
|
|
73802
|
+
errors?: Maybe<Array<MutationError>>;
|
|
73803
|
+
success: Scalars['Boolean']['output'];
|
|
73804
|
+
};
|
|
73805
|
+
export declare type MercuryChangeProposalDeleteCommentInput = {
|
|
73806
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
73807
|
+
id: Scalars['ID']['input'];
|
|
73808
|
+
};
|
|
73809
|
+
export declare type MercuryChangeProposalDeleteCommentPayload = Payload & {
|
|
73810
|
+
__typename?: 'MercuryChangeProposalDeleteCommentPayload';
|
|
73811
|
+
errors?: Maybe<Array<MutationError>>;
|
|
73812
|
+
success: Scalars['Boolean']['output'];
|
|
73813
|
+
};
|
|
73771
73814
|
export declare type MercuryChangeProposalEdge = {
|
|
73772
73815
|
__typename?: 'MercuryChangeProposalEdge';
|
|
73773
73816
|
cursor: Scalars['String']['output'];
|
|
@@ -73797,6 +73840,17 @@ export declare type MercuryChangeProposalStatusTransitions = {
|
|
|
73797
73840
|
__typename?: 'MercuryChangeProposalStatusTransitions';
|
|
73798
73841
|
available: Array<MercuryChangeProposalStatusTransition>;
|
|
73799
73842
|
};
|
|
73843
|
+
export declare type MercuryChangeProposalUpdateCommentInput = {
|
|
73844
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
73845
|
+
content: Scalars['String']['input'];
|
|
73846
|
+
id: Scalars['ID']['input'];
|
|
73847
|
+
};
|
|
73848
|
+
export declare type MercuryChangeProposalUpdateCommentPayload = {
|
|
73849
|
+
__typename?: 'MercuryChangeProposalUpdateCommentPayload';
|
|
73850
|
+
errors?: Maybe<Array<MutationError>>;
|
|
73851
|
+
success: Scalars['Boolean']['output'];
|
|
73852
|
+
updatedComment?: Maybe<MercuryChangeProposalComment>;
|
|
73853
|
+
};
|
|
73800
73854
|
export declare type MercuryComment = Node & {
|
|
73801
73855
|
__typename?: 'MercuryComment';
|
|
73802
73856
|
ari: Scalars['String']['output'];
|
|
@@ -73852,6 +73906,7 @@ export declare type MercuryCreateFocusAreaInput = {
|
|
|
73852
73906
|
export declare type MercuryCreateFocusAreaPayload = Payload & {
|
|
73853
73907
|
__typename?: 'MercuryCreateFocusAreaPayload';
|
|
73854
73908
|
createdFocusArea?: Maybe<MercuryFocusArea>;
|
|
73909
|
+
entityChangeRequirements?: Maybe<MercuryFocusAreaChangeRequirements>;
|
|
73855
73910
|
errors?: Maybe<Array<MutationError>>;
|
|
73856
73911
|
success: Scalars['Boolean']['output'];
|
|
73857
73912
|
};
|
|
@@ -74106,6 +74161,12 @@ export declare type MercuryFocusAreaAllocations = {
|
|
|
74106
74161
|
__typename?: 'MercuryFocusAreaAllocations';
|
|
74107
74162
|
human?: Maybe<MercuryHumanResourcesAllocation>;
|
|
74108
74163
|
};
|
|
74164
|
+
export declare type MercuryFocusAreaChangeRequirements = {
|
|
74165
|
+
__typename?: 'MercuryFocusAreaChangeRequirements';
|
|
74166
|
+
changeProposalId?: Maybe<Scalars['ID']['output']>;
|
|
74167
|
+
changeProposalName?: Maybe<Scalars['String']['output']>;
|
|
74168
|
+
strategicEventId?: Maybe<Scalars['ID']['output']>;
|
|
74169
|
+
};
|
|
74109
74170
|
export declare type MercuryFocusAreaConnection = {
|
|
74110
74171
|
__typename?: 'MercuryFocusAreaConnection';
|
|
74111
74172
|
edges?: Maybe<Array<Maybe<MercuryFocusAreaEdge>>>;
|
|
@@ -74939,6 +75000,7 @@ export declare enum MercuryStatusColor {
|
|
|
74939
75000
|
}
|
|
74940
75001
|
export declare type MercuryStrategicEvent = Node & {
|
|
74941
75002
|
__typename?: 'MercuryStrategicEvent';
|
|
75003
|
+
comments?: Maybe<MercuryStrategicEventCommentConnection>;
|
|
74942
75004
|
description?: Maybe<Scalars['String']['output']>;
|
|
74943
75005
|
id: Scalars['ID']['output'];
|
|
74944
75006
|
name: Scalars['String']['output'];
|
|
@@ -74947,12 +75009,54 @@ export declare type MercuryStrategicEvent = Node & {
|
|
|
74947
75009
|
statusTransitions?: Maybe<MercuryStrategicEventStatusTransitions>;
|
|
74948
75010
|
targetDate?: Maybe<Scalars['String']['output']>;
|
|
74949
75011
|
};
|
|
75012
|
+
export declare type MercuryStrategicEventCommentsArgs = {
|
|
75013
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
75014
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
75015
|
+
};
|
|
75016
|
+
export declare type MercuryStrategicEventComment = {
|
|
75017
|
+
__typename?: 'MercuryStrategicEventComment';
|
|
75018
|
+
content: Scalars['String']['output'];
|
|
75019
|
+
createdBy: Scalars['ID']['output'];
|
|
75020
|
+
createdDate: Scalars['String']['output'];
|
|
75021
|
+
id: Scalars['ID']['output'];
|
|
75022
|
+
};
|
|
75023
|
+
export declare type MercuryStrategicEventCommentConnection = {
|
|
75024
|
+
__typename?: 'MercuryStrategicEventCommentConnection';
|
|
75025
|
+
edges?: Maybe<Array<Maybe<MercuryStrategicEventCommentEdge>>>;
|
|
75026
|
+
pageInfo: PageInfo;
|
|
75027
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
75028
|
+
};
|
|
75029
|
+
export declare type MercuryStrategicEventCommentEdge = {
|
|
75030
|
+
__typename?: 'MercuryStrategicEventCommentEdge';
|
|
75031
|
+
cursor: Scalars['String']['output'];
|
|
75032
|
+
node?: Maybe<MercuryStrategicEventComment>;
|
|
75033
|
+
};
|
|
74950
75034
|
export declare type MercuryStrategicEventConnection = {
|
|
74951
75035
|
__typename?: 'MercuryStrategicEventConnection';
|
|
74952
75036
|
edges?: Maybe<Array<Maybe<MercuryStrategicEventEdge>>>;
|
|
74953
75037
|
pageInfo: PageInfo;
|
|
74954
75038
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
74955
75039
|
};
|
|
75040
|
+
export declare type MercuryStrategicEventCreateCommentInput = {
|
|
75041
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
75042
|
+
content: Scalars['String']['input'];
|
|
75043
|
+
id: Scalars['ID']['input'];
|
|
75044
|
+
};
|
|
75045
|
+
export declare type MercuryStrategicEventCreateCommentPayload = Payload & {
|
|
75046
|
+
__typename?: 'MercuryStrategicEventCreateCommentPayload';
|
|
75047
|
+
createdComment?: Maybe<MercuryStrategicEventComment>;
|
|
75048
|
+
errors?: Maybe<Array<MutationError>>;
|
|
75049
|
+
success: Scalars['Boolean']['output'];
|
|
75050
|
+
};
|
|
75051
|
+
export declare type MercuryStrategicEventDeleteCommentInput = {
|
|
75052
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
75053
|
+
id: Scalars['ID']['input'];
|
|
75054
|
+
};
|
|
75055
|
+
export declare type MercuryStrategicEventDeleteCommentPayload = Payload & {
|
|
75056
|
+
__typename?: 'MercuryStrategicEventDeleteCommentPayload';
|
|
75057
|
+
errors?: Maybe<Array<MutationError>>;
|
|
75058
|
+
success: Scalars['Boolean']['output'];
|
|
75059
|
+
};
|
|
74956
75060
|
export declare type MercuryStrategicEventEdge = {
|
|
74957
75061
|
__typename?: 'MercuryStrategicEventEdge';
|
|
74958
75062
|
cursor: Scalars['String']['output'];
|
|
@@ -74984,6 +75088,17 @@ export declare type MercuryStrategicEventStatusTransitions = {
|
|
|
74984
75088
|
__typename?: 'MercuryStrategicEventStatusTransitions';
|
|
74985
75089
|
available: Array<MercuryStrategicEventStatusTransition>;
|
|
74986
75090
|
};
|
|
75091
|
+
export declare type MercuryStrategicEventUpdateCommentInput = {
|
|
75092
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
75093
|
+
content: Scalars['String']['input'];
|
|
75094
|
+
id: Scalars['ID']['input'];
|
|
75095
|
+
};
|
|
75096
|
+
export declare type MercuryStrategicEventUpdateCommentPayload = {
|
|
75097
|
+
__typename?: 'MercuryStrategicEventUpdateCommentPayload';
|
|
75098
|
+
errors?: Maybe<Array<MutationError>>;
|
|
75099
|
+
success: Scalars['Boolean']['output'];
|
|
75100
|
+
updatedComment?: Maybe<MercuryStrategicEventComment>;
|
|
75101
|
+
};
|
|
74987
75102
|
export declare type MercuryStrategicEventsMutationApi = {
|
|
74988
75103
|
__typename?: 'MercuryStrategicEventsMutationApi';
|
|
74989
75104
|
createChangeProposal?: Maybe<MercuryCreateChangeProposalPayload>;
|