Skip to content

v1.2.8

Choose a tag to compare

@Vercjames Vercjames released this 27 Jan 18:24
· 31 commits to master since this release

Added support for OpenAPITags to be objects rather than just an String[]

export type OpenApiTag = {
  name: string;
  description?: string;
  externalDocs?: {
    description?: string;
    url: string;
  };
};

furthermore a termsURL, contact email, licensing, and externalDocs have been added.