Generates a new UUIDv7 identifier.
A new UUIDv7 string
UUIDv7 is a time-ordered UUID that provides both uniqueness and sortability. The timestamp is embedded in the first 48 bits, making it suitable for database primary keys where insertion order matters.
const id = uuidv7();// "01912c9a-5e8a-7b5c-8a1b-2c3d4e5f6a7b" Copy
const id = uuidv7();// "01912c9a-5e8a-7b5c-8a1b-2c3d4e5f6a7b"
RFC 9562 - UUIDv7
Generates a new UUIDv7 identifier.