( schema: Schema.brand<Schema.String, B> )
| 854 | * @since 4.0.0 |
| 855 | */ |
| 856 | export const UuidV7Insert = <const B extends string>( |
| 857 | schema: Schema.brand<Schema.String, B> |
| 858 | ): UuidV7Insert<B> => |
| 859 | Field({ |
| 860 | select: schema, |
| 861 | insert: UuidV7WithGenerate(schema), |
| 862 | update: schema, |
| 863 | json: schema |
| 864 | }) |
nothing calls this directly
no test coverage detected