From 8dcccab1ead0465e0b72a189ab4ac9b6abd1212e Mon Sep 17 00:00:00 2001 From: paul Date: Mon, 6 Nov 2023 17:47:54 +0100 Subject: [PATCH] fix(core): remove unused model/relation path consumer types BREAKING CHANGE: `ConsumeModelPath` and `ConsumeRelationPath` are not exported anymore from `@foscia/core`. --- packages/core/src/actions/types.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/packages/core/src/actions/types.ts b/packages/core/src/actions/types.ts index c9714dde..e18f9a6c 100644 --- a/packages/core/src/actions/types.ts +++ b/packages/core/src/actions/types.ts @@ -87,10 +87,6 @@ export type ConsumeModel = { model: M; }; -export type ConsumeModelPath = { - modelPath: string; -}; - export type ConsumeInstance = { instance: I; }; @@ -99,10 +95,6 @@ export type ConsumeRelation = { relation: R; }; -export type ConsumeRelationPath = { - relationPath: string; -}; - export type ConsumeId = { id?: ModelIdType; };