Skip to content

Commit

Permalink
fix: RequestOptions model file directory
Browse files Browse the repository at this point in the history
Signed-off-by: axel7083 <42176370+axel7083@users.noreply.github.com>
  • Loading branch information
axel7083 committed Mar 15, 2024
1 parent e654a05 commit bd63c0c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/backend/src/managers/SnippetManager.ts
Expand Up @@ -20,7 +20,7 @@ import { getLanguageList, convert, type Language } from 'postman-code-generators
import { Request } from 'postman-collection';
import { Publisher } from '../utils/Publisher';
import { Messages } from '@shared/Messages';
import type { RequestOptions } from '../models/RequestOptions';
import type { RequestOptions } from '@shared/src/models/RequestOptions';

export class SnippetManager extends Publisher<Language[]> implements Disposable {
constructor(webview: Webview) {
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/src/studio-api-impl.ts
Expand Up @@ -40,7 +40,7 @@ import type { Conversation } from '@shared/src/models/IPlaygroundMessage';
import type { PlaygroundV2Manager } from './managers/playgroundV2Manager';
import { getFreeRandomPort } from './utils/ports';
import { withDefaultConfiguration } from './utils/inferenceUtils';
import type { RequestOptions } from './models/RequestOptions';
import type { RequestOptions } from '@shared/src/models/RequestOptions';
import type { SnippetManager } from './managers/SnippetManager';
import type { Language } from 'postman-code-generators';
import type { ModelOptions } from '@shared/src/models/IModelOptions';
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/src/StudioAPI.ts
Expand Up @@ -25,7 +25,7 @@ import type { ApplicationState } from './models/IApplicationState';
import type { Task } from './models/ITask';
import type { LocalRepository } from './models/ILocalRepository';
import type { InferenceServer } from './models/IInference';
import type { RequestOptions } from '../../backend/src/models/RequestOptions';
import type { RequestOptions } from './models/RequestOptions';
import type { Language } from 'postman-code-generators';
import type { CreationInferenceServerOptions } from './models/InferenceServerConfig';
import type { ModelOptions } from './models/IModelOptions';
Expand Down

0 comments on commit bd63c0c

Please sign in to comment.