From bb3be7c82f9692be365acaf5ab18bc2d302f55cc Mon Sep 17 00:00:00 2001 From: Omri Levy Date: Tue, 4 Jun 2024 11:53:38 +0300 Subject: [PATCH] changed ajv import --- package.json | 2 +- src/decorators.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 9629c9f..d7f0153 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ballerine-nestjs-typebox", - "version": "3.0.0-next.8", + "version": "3.0.1-next.8", "description": "", "author": "Andrew Smiley ", "license": "MIT", diff --git a/src/decorators.ts b/src/decorators.ts index b4e303d..43e6593 100644 --- a/src/decorators.ts +++ b/src/decorators.ts @@ -5,7 +5,7 @@ import { extendArrayMetadata } from '@nestjs/common/utils/extend-metadata.util.j import { ApiBody, ApiOperation, ApiParam, ApiQuery } from '@nestjs/swagger'; import { DECORATORS } from '@nestjs/swagger/dist/constants.js'; import { Static, TSchema, Type, TypeGuard } from '@sinclair/typebox'; -import { Ajv } from 'ajv'; +import Ajv from 'ajv'; import fastUri from 'fast-uri'; import { AjvValidationException } from './exceptions.js';