BlockSuite API Documentation / @blocksuite/store / IdGeneratorType
Enumeration: IdGeneratorType
Enumeration Members
AutoIncrement
AutoIncrement:
"autoIncrement"
Warning: This generator mode will crash the collaborative feature if multiple clients are adding new blocks. Use this mode only if you know what you're doing.
Defined in
packages/framework/store/src/store/id.ts:15
AutoIncrementByClientId
AutoIncrementByClientId:
"autoIncrementByClientId"
This generator is trying to fix the real-time collaboration on debug mode. This will make generator predictable and won't make conflict
Link
Defined in
packages/framework/store/src/store/id.ts:22
NanoID
NanoID:
"nanoID"
Default mode, generator for the unpredictable id
Defined in
packages/framework/store/src/store/id.ts:27
UUIDv4
UUIDv4:
"uuidV4"
Defined in
packages/framework/store/src/store/id.ts:28