Răsfoiți Sursa

Drop unused small ID Zod statics (#26908)

Kit Langton 3 luni în urmă
părinte
comite
8d9b9719be

+ 0 - 3
packages/opencode/src/permission/schema.ts

@@ -1,7 +1,6 @@
 import { Schema } from "effect"
 
 import { Identifier } from "@/id/id"
-import { zod } from "@opencode-ai/core/effect-zod"
 import { Newtype } from "@opencode-ai/core/schema"
 
 export class PermissionID extends Newtype<PermissionID>()(
@@ -11,6 +10,4 @@ export class PermissionID extends Newtype<PermissionID>()(
   static ascending(id?: string): PermissionID {
     return this.make(Identifier.ascending("permission", id))
   }
-
-  static readonly zod = zod(this)
 }

+ 0 - 2
packages/opencode/src/project/schema.ts

@@ -1,6 +1,5 @@
 import { Schema } from "effect"
 
-import { zod } from "@opencode-ai/core/effect-zod"
 import { withStatics } from "@opencode-ai/core/schema"
 
 const projectIdSchema = Schema.String.pipe(Schema.brand("ProjectID"))
@@ -10,6 +9,5 @@ export type ProjectID = typeof projectIdSchema.Type
 export const ProjectID = projectIdSchema.pipe(
   withStatics((schema: typeof projectIdSchema) => ({
     global: schema.make("global"),
-    zod: zod(schema),
   })),
 )

+ 0 - 2
packages/opencode/src/pty/schema.ts

@@ -1,7 +1,6 @@
 import { Schema } from "effect"
 
 import { Identifier } from "@/id/id"
-import { zod } from "@opencode-ai/core/effect-zod"
 import { withStatics } from "@opencode-ai/core/schema"
 
 const ptyIdSchema = Schema.String.check(Schema.isStartsWith("pty")).pipe(Schema.brand("PtyID"))
@@ -11,6 +10,5 @@ export type PtyID = typeof ptyIdSchema.Type
 export const PtyID = ptyIdSchema.pipe(
   withStatics((schema: typeof ptyIdSchema) => ({
     ascending: (id?: string) => schema.make(Identifier.ascending("pty", id)),
-    zod: zod(schema),
   })),
 )

+ 0 - 3
packages/opencode/src/question/schema.ts

@@ -1,13 +1,10 @@
 import { Schema } from "effect"
 
 import { Identifier } from "@/id/id"
-import { zod } from "@opencode-ai/core/effect-zod"
 import { Newtype } from "@opencode-ai/core/schema"
 
 export class QuestionID extends Newtype<QuestionID>()("QuestionID", Schema.String.check(Schema.isStartsWith("que"))) {
   static ascending(id?: string): QuestionID {
     return this.make(Identifier.ascending("question", id))
   }
-
-  static readonly zod = zod(this)
 }

+ 0 - 2
packages/opencode/src/sync/schema.ts

@@ -1,13 +1,11 @@
 import { Schema } from "effect"
 
 import { Identifier } from "@/id/id"
-import { zod } from "@opencode-ai/core/effect-zod"
 import { withStatics } from "@opencode-ai/core/schema"
 
 export const EventID = Schema.String.check(Schema.isStartsWith("evt")).pipe(
   Schema.brand("EventID"),
   withStatics((s) => ({
     ascending: (id?: string) => s.make(Identifier.ascending("event", id)),
-    zod: zod(s),
   })),
 )

+ 1 - 1
packages/opencode/test/session/schema-decoding.test.ts

@@ -27,7 +27,7 @@ const sessionID = Schema.decodeUnknownSync(SessionID)("ses_01J5Y5H0AH4Q4NXJ6P4C3
 const sessionIDChild = Schema.decodeUnknownSync(SessionID)("ses_01J5Y5H0AH4Q4NXJ6P4C3P5V2L")
 const messageID = Schema.decodeUnknownSync(MessageID)("msg_01J5Y5H0AH4Q4NXJ6P4C3P5V2M")
 const partID = Schema.decodeUnknownSync(PartID)("prt_01J5Y5H0AH4Q4NXJ6P4C3P5V2N")
-const projectID = ProjectID.zod.parse("proj-alpha")
+const projectID = ProjectID.make("proj-alpha")
 const workspaceID = Schema.decodeUnknownSync(WorkspaceID)("wrk-primary")
 
 function decodeUnknown<S extends Schema.Top>(schema: S) {