( schema: Schema.brand<Schema.String, B> )
| 807 | * @since 4.0.0 |
| 808 | */ |
| 809 | export const UuidV4Insert = <const B extends string>( |
| 810 | schema: Schema.brand<Schema.String, B> |
| 811 | ): UuidV4Insert<B> => |
| 812 | Field({ |
| 813 | select: schema, |
| 814 | insert: UuidV4WithGenerate(schema), |
| 815 | update: schema, |
| 816 | json: schema |
| 817 | }) |
| 818 | |
| 819 | /** |
| 820 | * Variant field type for a branded string UUID v7 value whose insert variant |
nothing calls this directly
no test coverage detected