( schema: Schema.brand<Schema.String, B> )
| 839 | * @since 4.0.0 |
| 840 | */ |
| 841 | export const UuidV7WithGenerate = <B extends string>( |
| 842 | schema: Schema.brand<Schema.String, B> |
| 843 | ): Schema.withConstructorDefault<Schema.brand<Schema.String, B>> => |
| 844 | schema.pipe( |
| 845 | Schema.withConstructorDefault( |
| 846 | Effect.clockWith((clock) => Effect.succeed(Uuid.v7String(clock.currentTimeMillisUnsafe()))) |
| 847 | ) |
| 848 | ) |
| 849 | |
| 850 | /** |
| 851 | * A field that represents a string UUID v7 that is generated on inserts. |
no test coverage detected