Giter VIP home page Giter VIP logo

Comments (2)

sinclairzx81 avatar sinclairzx81 commented on May 26, 2024 1

@spinlud Hi,

There's been a few updates to the TypeBuilder over the past minor revisions of the library, however this functionality shouldn't have changed too much. You will want to extend either the JsonTypeBuilder or JavaScriptTypeBuilder (the recommendation would be the JsonTypeBuilder if limiting to Fastify compatible types)

I've run the following and everything seems to be returning correctly.

import { JsonTypeBuilder } from '@sinclair/typebox'

type CustomTypeBuilderMeta = { type: 'decimal128' } | { type: 'stringEnumArray'; values: Set<string> };

const Meta = Symbol('Meta');

export class CustomTypeBuilder extends JsonTypeBuilder {
  public readonly Meta = Meta;
  constructor() {
    super();
  }
  public getMeta(item: any): CustomTypeBuilderMeta {
    return item[this.Meta];
  }
  public StringEnumArray<T extends string[]>(values: [...T], opts: { examples?: any; description?: string } = {}) {
    return super.Unsafe<Array<T[number]>>({
      type: 'string',
      examples: [...opts.examples ?? [], ...values],
      description: opts.description,
      [this.Meta]: { type: 'stringEnumArray', values: new Set(values) } as CustomTypeBuilderMeta,
    });
  }
}

export const Type = new CustomTypeBuilder();


const A = Type.StringEnumArray(['A', 'B'])

console.log(A)
// {
//   type: 'string',
//   examples: [ 'A', 'B' ],
//   description: undefined,
//   [Symbol(Meta)]: { type: 'stringEnumArray', values: Set(2) { 'A', 'B' } },
//   [Symbol(TypeBox.Kind)]: 'Unsafe'
// }

I see the Kind and Meta symbols in the returned schematics (which looks correct).

Intersect and Composite

Looking at your screenshots, it looks like you may be composing this type with Intersect somewhere (as noted by the allOf schematic). Just note that between 0.25.0 and 0.32.0, the schematics for Intersect have changed to the allOf representation, but there was a fallback type Composite added which retained the 0.25.0 schematics. Both of these types should validate the same, but the schematics are different. You can try replace instances of Intersect with Composite if you wish to retain previous version schematics.

Let me know if this helps
Cheers
S

from typebox.

spinlud avatar spinlud commented on May 26, 2024

Thank you very much @sinclairzx81, it helped! Closing

from typebox.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.