( schema: Schema.brand<typeof Schema.Uint8ArrayFromSelf, B> )
| 651 | * @category uuid |
| 652 | */ |
| 653 | export const UuidV4Insert = <const B extends string | symbol>( |
| 654 | schema: Schema.brand<typeof Schema.Uint8ArrayFromSelf, B> |
| 655 | ): UuidV4Insert<B> => |
| 656 | Field({ |
| 657 | select: schema, |
| 658 | insert: UuidV4WithGenerate(schema), |
| 659 | update: schema, |
| 660 | json: schema |
| 661 | }) |
| 662 | |
| 663 | /** |
| 664 | * A boolean parsed from 0 or 1 |
nothing calls this directly
no test coverage detected