@forge/cli-shared 8.9.1-next.6 → 8.9.1-next.7
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
|
@@ -95780,8 +95780,11 @@ export declare type Mutation = {
|
|
|
95780
95780
|
projects_createLink?: Maybe<TownsquareProjectsCreateLinkPayload>;
|
|
95781
95781
|
projects_createRisk?: Maybe<TownsquareProjectsCreateRiskPayload>;
|
|
95782
95782
|
projects_createUpdate?: Maybe<TownsquareProjectsCreateUpdatePayload>;
|
|
95783
|
+
projects_deleteDecision?: Maybe<TownsquareProjectsDeleteDecisionPayload>;
|
|
95783
95784
|
projects_deleteLatestUpdate?: Maybe<TownsquareProjectsDeleteLatestUpdatePayload>;
|
|
95785
|
+
projects_deleteLearning?: Maybe<TownsquareProjectsDeleteLearningPayload>;
|
|
95784
95786
|
projects_deleteLink?: Maybe<TownsquareProjectsDeleteLinkPayload>;
|
|
95787
|
+
projects_deleteRisk?: Maybe<TownsquareProjectsDeleteRiskPayload>;
|
|
95785
95788
|
projects_edit?: Maybe<TownsquareProjectsEditPayload>;
|
|
95786
95789
|
projects_editDecision?: Maybe<TownsquareProjectsEditDecisionPayload>;
|
|
95787
95790
|
projects_editLearning?: Maybe<TownsquareProjectsEditLearningPayload>;
|
|
@@ -98005,12 +98008,21 @@ export declare type MutationProjects_CreateRiskArgs = {
|
|
|
98005
98008
|
export declare type MutationProjects_CreateUpdateArgs = {
|
|
98006
98009
|
input?: InputMaybe<TownsquareProjectsCreateUpdateInput>;
|
|
98007
98010
|
};
|
|
98011
|
+
export declare type MutationProjects_DeleteDecisionArgs = {
|
|
98012
|
+
input: TownsquareProjectsDeleteDecisionInput;
|
|
98013
|
+
};
|
|
98008
98014
|
export declare type MutationProjects_DeleteLatestUpdateArgs = {
|
|
98009
98015
|
input?: InputMaybe<TownsquareProjectsDeleteLatestUpdateInput>;
|
|
98010
98016
|
};
|
|
98017
|
+
export declare type MutationProjects_DeleteLearningArgs = {
|
|
98018
|
+
input: TownsquareProjectsDeleteLearningInput;
|
|
98019
|
+
};
|
|
98011
98020
|
export declare type MutationProjects_DeleteLinkArgs = {
|
|
98012
98021
|
input?: InputMaybe<TownsquareProjectsDeleteLinkInput>;
|
|
98013
98022
|
};
|
|
98023
|
+
export declare type MutationProjects_DeleteRiskArgs = {
|
|
98024
|
+
input: TownsquareProjectsDeleteRiskInput;
|
|
98025
|
+
};
|
|
98014
98026
|
export declare type MutationProjects_EditArgs = {
|
|
98015
98027
|
input?: InputMaybe<TownsquareProjectsEditInput>;
|
|
98016
98028
|
};
|
|
@@ -133796,6 +133808,7 @@ export declare type TownsquareGoalsCreateRiskPayload = {
|
|
|
133796
133808
|
};
|
|
133797
133809
|
export declare type TownsquareGoalsCreateUpdateInput = {
|
|
133798
133810
|
goalId: Scalars['ID']['input'];
|
|
133811
|
+
highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
|
|
133799
133812
|
metricUpdate?: InputMaybe<Array<InputMaybe<TownsquareMetricUpdateInput>>>;
|
|
133800
133813
|
score?: InputMaybe<Scalars['Int']['input']>;
|
|
133801
133814
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -134756,6 +134769,15 @@ export declare type TownsquareProjectsCreateUpdatePayload = {
|
|
|
134756
134769
|
success: Scalars['Boolean']['output'];
|
|
134757
134770
|
update?: Maybe<TownsquareProjectUpdate>;
|
|
134758
134771
|
};
|
|
134772
|
+
export declare type TownsquareProjectsDeleteDecisionInput = {
|
|
134773
|
+
decisionId: Scalars['ID']['input'];
|
|
134774
|
+
};
|
|
134775
|
+
export declare type TownsquareProjectsDeleteDecisionPayload = {
|
|
134776
|
+
__typename?: 'TownsquareProjectsDeleteDecisionPayload';
|
|
134777
|
+
deletedDecisionId?: Maybe<Scalars['ID']['output']>;
|
|
134778
|
+
errors?: Maybe<Array<MutationError>>;
|
|
134779
|
+
success: Scalars['Boolean']['output'];
|
|
134780
|
+
};
|
|
134759
134781
|
export declare type TownsquareProjectsDeleteLatestUpdateInput = {
|
|
134760
134782
|
updateId: Scalars['ID']['input'];
|
|
134761
134783
|
};
|
|
@@ -134766,6 +134788,15 @@ export declare type TownsquareProjectsDeleteLatestUpdatePayload = {
|
|
|
134766
134788
|
project?: Maybe<TownsquareProject>;
|
|
134767
134789
|
success: Scalars['Boolean']['output'];
|
|
134768
134790
|
};
|
|
134791
|
+
export declare type TownsquareProjectsDeleteLearningInput = {
|
|
134792
|
+
learningId: Scalars['ID']['input'];
|
|
134793
|
+
};
|
|
134794
|
+
export declare type TownsquareProjectsDeleteLearningPayload = {
|
|
134795
|
+
__typename?: 'TownsquareProjectsDeleteLearningPayload';
|
|
134796
|
+
deletedLearningId?: Maybe<Scalars['ID']['output']>;
|
|
134797
|
+
errors?: Maybe<Array<MutationError>>;
|
|
134798
|
+
success: Scalars['Boolean']['output'];
|
|
134799
|
+
};
|
|
134769
134800
|
export declare type TownsquareProjectsDeleteLinkInput = {
|
|
134770
134801
|
linkId: Scalars['ID']['input'];
|
|
134771
134802
|
};
|
|
@@ -134776,6 +134807,15 @@ export declare type TownsquareProjectsDeleteLinkPayload = {
|
|
|
134776
134807
|
project?: Maybe<TownsquareProject>;
|
|
134777
134808
|
success: Scalars['Boolean']['output'];
|
|
134778
134809
|
};
|
|
134810
|
+
export declare type TownsquareProjectsDeleteRiskInput = {
|
|
134811
|
+
riskId: Scalars['ID']['input'];
|
|
134812
|
+
};
|
|
134813
|
+
export declare type TownsquareProjectsDeleteRiskPayload = {
|
|
134814
|
+
__typename?: 'TownsquareProjectsDeleteRiskPayload';
|
|
134815
|
+
deletedRiskId?: Maybe<Scalars['ID']['output']>;
|
|
134816
|
+
errors?: Maybe<Array<MutationError>>;
|
|
134817
|
+
success: Scalars['Boolean']['output'];
|
|
134818
|
+
};
|
|
134779
134819
|
export declare type TownsquareProjectsEditDecisionInput = {
|
|
134780
134820
|
decisionId: Scalars['ID']['input'];
|
|
134781
134821
|
description?: InputMaybe<Scalars['String']['input']>;
|