/** * This file was auto-generated by Fern from our API Definition. */ export type CompositeUniqueConstraintStrategy = /** * A hash of the fields will be used to determine uniqueness */ "hash" /** * The values of the fields will be concatenated to determine uniqueness */ | "concat"; export declare const CompositeUniqueConstraintStrategy: { readonly Hash: "hash"; readonly Concat: "concat"; };