From 2ddbc76620a13317c6482ff022049bc62b0324c5 Mon Sep 17 00:00:00 2001 From: Matatjahu Date: Mon, 28 Mar 2022 11:25:01 +0200 Subject: [PATCH] fix rebase --- openapi.yaml | 4 +--- src/controllers/bundler.controller.ts | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/openapi.yaml b/openapi.yaml index 22f5c101..6869cb23 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -255,9 +255,7 @@ components: ConvertRequest: type: object required: - - asyncapis - optional: - - base + - asyncapi properties: asyncapi: $ref: '#/components/schemas/AsyncAPIDocument' diff --git a/src/controllers/bundler.controller.ts b/src/controllers/bundler.controller.ts index eccf25b8..04f921ba 100644 --- a/src/controllers/bundler.controller.ts +++ b/src/controllers/bundler.controller.ts @@ -3,7 +3,6 @@ import { ProblemException } from '../exceptions/problem.exception'; import { Controller } from '../interfaces'; import bundler from '@asyncapi/bundler'; import { documentValidationMiddleware } from '../middlewares/document-validation.middleware'; -import path from 'path'; export class BundlerController implements Controller { public basepath = '/bundle';