@forge/cli-shared

9.3.1-next.29.3.1-next.2-experimental-f4ce0ae
out/graphql/graphql-types.d.ts
~out/graphql/graphql-types.d.tsModified
+10
Index: package/out/graphql/graphql-types.d.ts
===================================================================
--- package/out/graphql/graphql-types.d.ts
+++ package/out/graphql/graphql-types.d.ts
@@ -15678,8 +15678,10 @@
 };
 export type AssetsVerticalDepreciationRuleResult = AssetsVerticalDepreciationRule | QueryError;
 export type AssetsVerticalDisableVerticalInstantiationInput = {
     cloudId: Scalars['ID']['input'];
+    message?: InputMaybe<Scalars['String']['input']>;
+    reason: AssetsVerticalVerticalInstantiationDisableReason;
     type: AssetsVerticalVerticalType;
 };
 export type AssetsVerticalEnableCustomInsightInput = {
     cloudId: Scalars['ID']['input'];
@@ -16422,8 +16424,16 @@
     __typename?: 'AssetsVerticalVerticalInstantiationConnection';
     edges: Array<AssetsVerticalVerticalInstantiationEdge>;
     pageInfo: PageInfo;
 };
+export declare enum AssetsVerticalVerticalInstantiationDisableReason {
+    DidNotMeetExpectations = "DID_NOT_MEET_EXPECTATIONS",
+    EvaluatingAlternatives = "EVALUATING_ALTERNATIVES",
+    JustTryingItOut = "JUST_TRYING_IT_OUT",
+    NotAPriorityRightNow = "NOT_A_PRIORITY_RIGHT_NOW",
+    Others = "OTHERS",
+    TemporaryPause = "TEMPORARY_PAUSE"
+}
 export type AssetsVerticalVerticalInstantiationEdge = {
     __typename?: 'AssetsVerticalVerticalInstantiationEdge';
     cursor: Scalars['String']['output'];
     node: AssetsVerticalVerticalInstantiation;