diff --git a/packages/core/src/v1/config/console-state.ts b/packages/core/src/v1/config/console-state.ts deleted file mode 100644 index 95af1f653d3..00000000000 --- a/packages/core/src/v1/config/console-state.ts +++ /dev/null @@ -1,16 +0,0 @@ -export * as ConfigConsoleStateV1 from "./console-state" - -import { Schema } from "effect" -import { NonNegativeInt } from "../../schema" - -export class ConsoleState extends Schema.Class("ConsoleState")({ - consoleManagedProviders: Schema.mutable(Schema.Array(Schema.String)), - activeOrgName: Schema.optional(Schema.String), - switchableOrgCount: NonNegativeInt, -}) {} - -export const emptyConsoleState: ConsoleState = ConsoleState.make({ - consoleManagedProviders: [], - activeOrgName: undefined, - switchableOrgCount: 0, -})