Skip to content

Commit

Permalink
fix: use relative paths (#880)
Browse files Browse the repository at this point in the history
  • Loading branch information
KhudaDad414 authored Oct 16, 2023
1 parent 7b74316 commit cacf5a8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions src/models/v3/asyncapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ import type { MessageInterface } from '../message';
import type { ComponentsInterface } from '../components';
import type { SecuritySchemesInterface } from '../security-schemes';
import type { ExtensionsInterface } from '../extensions';
import type { SchemaInterface } from 'models/schema';
import type { SchemasInterface } from 'models/schemas';
import type { SchemaInterface } from '../schema';
import type { SchemasInterface } from '../schemas';
import type { v3 } from '../../spec-types';
import { OperationInterface } from 'models/operation';
import { ChannelInterface } from 'models/channel';
import { ServerInterface } from 'models/server';
import { OperationInterface } from '../operation';
import { ChannelInterface } from '../channel';
import { ServerInterface } from '../server';

export class AsyncAPIDocument extends BaseModel<v3.AsyncAPIObject> implements AsyncAPIDocumentInterface {
version(): string {
Expand Down
2 changes: 1 addition & 1 deletion src/models/v3/operation-reply.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { BaseModel } from '../base';
import { Channel } from './channel';
import { Message } from './message';
import { Messages } from './messages';
import { MessagesInterface } from 'models/messages';
import { MessagesInterface } from '../messages';
import { OperationReplyAddress } from './operation-reply-address';

import { extensions } from './mixins';
Expand Down
2 changes: 1 addition & 1 deletion src/models/v3/operation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import type { ChannelsInterface } from '../channels';
import type { MessagesInterface } from '../messages';
import type { MessageInterface } from '../message';
import type { OperationInterface, OperationAction } from '../operation';
import type { OperationReplyInterface } from 'models/operation-reply';
import type { OperationReplyInterface } from '../operation-reply';
import type { OperationTraitsInterface } from '../operation-traits';
import type { ServersInterface } from '../servers';
import type { ServerInterface } from '../server';
Expand Down

0 comments on commit cacf5a8

Please sign in to comment.