Skip to content

Commit

Permalink
chore: remove circular dependency (#310)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebbi08 authored Oct 24, 2024
1 parent 22cbba8 commit c8b6b35
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .ci/runChecks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ npm ci
npm run build:node
npm run lint:eslint
npm run lint:prettier
npm run -ws cdep
npx -ws license-check
npx better-npm-audit audit
3 changes: 2 additions & 1 deletion packages/runtime/src/modules/DeciderModule.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { LocalRequestStatus } from "@nmshd/consumption";
import { RequestItemGroupJSON, RequestItemJSONDerivations } from "@nmshd/content";
import { CoreDate } from "@nmshd/core-types";
import { RuntimeErrors, RuntimeServices } from "..";
import {
IncomingRequestStatusChangedEvent,
MessageProcessedEvent,
Expand All @@ -10,7 +9,9 @@ import {
RelationshipTemplateProcessedResult
} from "../events";
import { ModuleConfiguration, RuntimeModule } from "../extensibility";
import { RuntimeServices } from "../Runtime";
import { LocalRequestDTO } from "../types";
import { RuntimeErrors } from "../useCases/common/RuntimeErrors";
import {
isAcceptResponseConfig,
isDeleteAttributeAcceptResponseConfig,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import { Result } from "@js-soft/ts-utils";
import { AttributesController } from "@nmshd/consumption";
import { Inject } from "@nmshd/typescript-ioc";
import { AttributeMapper, GetAttributesRequestQuery, GetAttributesUseCase } from "..";
import { LocalAttributeDTO } from "../../../types";
import { SchemaRepository, SchemaValidator, UseCase, flattenObject } from "../../common";
import { AttributeMapper } from "./AttributeMapper";
import { GetAttributesRequestQuery, GetAttributesUseCase } from "./GetAttributes";

export interface GetRepositoryAttributesRequest {
/**
Expand Down

0 comments on commit c8b6b35

Please sign in to comment.