17 lines
535 B
TypeScript
17 lines
535 B
TypeScript
export * as ConfigConsoleStateV1 from "./console-state"
|
|
|
|
import { Schema } from "effect"
|
|
import { NonNegativeInt } from "../../schema"
|
|
|
|
export class ConsoleState extends Schema.Class<ConsoleState>("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,
|
|
})
|