@effect/language-service 0.60.0 → 0.62.0

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/README.md CHANGED
@@ -100,11 +100,13 @@ And you're done! You'll now be able to use a set of refactors and diagnostics th
100
100
  - Wrap an `Effect` expression with `Effect.gen`
101
101
  - Toggle between pipe styles `X.pipe(Y)` and `pipe(X, Y)`
102
102
  - Layer Magic: Automatically compose and build layers based on service dependencies
103
+ - Structural Type to Schema: Convert TypeScript interfaces and type aliases to Effect Schema classes, with automatic detection and reuse of existing schemas
103
104
 
104
105
  ### Codegens
105
106
 
106
107
  - Automatically adds type annotations to exported constants based on their initializer types using `// @effect-codegens annotate`
107
108
  - Automatically implements service accessors in `Effect.Service`, `Context.Tag` or `Effect.Tag` declarations using `// @effect-codegens accessors`
109
+ - Automatically generates Effect Schema classes from TypeScript types using `// @effect-codegens typeToSchema`
108
110
 
109
111
  ### Miscellaneous
110
112
  - Renaming a class name, will rename the identifier as well for TaggedError, TaggedClass, etc...