Skip to content

Commit

Permalink
fix(core): remove unused model/relation path consumer types
Browse files Browse the repository at this point in the history
BREAKING CHANGE: `ConsumeModelPath` and `ConsumeRelationPath` are not exported anymore from `@foscia/core`.
  • Loading branch information
paul-thebaud committed Nov 6, 2023
1 parent 028f695 commit 8dcccab
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions packages/core/src/actions/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,6 @@ export type ConsumeModel<M extends Model = Model> = {
model: M;
};

export type ConsumeModelPath = {
modelPath: string;
};

export type ConsumeInstance<I extends ModelInstance = ModelInstance> = {
instance: I;
};
Expand All @@ -99,10 +95,6 @@ export type ConsumeRelation<R extends ModelRelation = ModelRelation> = {
relation: R;
};

export type ConsumeRelationPath = {
relationPath: string;
};

export type ConsumeId = {
id?: ModelIdType;
};
Expand Down

0 comments on commit 8dcccab

Please sign in to comment.