fix: preserve logical mutation intent
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import type { MutationIntent } from "../../contracts/mutation-intent.ts";
|
||||
|
||||
export type MutationIntentFactoryInput = Readonly<{
|
||||
operationId: string;
|
||||
canonicalInputIdentity: string;
|
||||
requiresIdempotencyKey: boolean;
|
||||
}>;
|
||||
|
||||
export type MutationIntentFactory = Readonly<{
|
||||
create(input: MutationIntentFactoryInput): MutationIntent;
|
||||
}>;
|
||||
Reference in New Issue
Block a user