mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-25 06:18:45 +08:00
11aa6f63b2
[BS-898](https://linear.app/affine-design/issue/BS-898/move-ai-chat-block-to-affine) Should be merged after https://github.com/toeverything/blocksuite/pull/8420 merged and bumped.
20 lines
504 B
TypeScript
20 lines
504 B
TypeScript
export * from './blocks';
|
|
export {
|
|
migratePages as forceUpgradePages,
|
|
migrateGuidCompatibility,
|
|
} from './migration/blocksuite'; // campatible with electron
|
|
export * from './migration/fixing';
|
|
export { migrateToSubdoc, upgradeV1ToV2 } from './migration/subdoc';
|
|
export * from './migration/workspace';
|
|
|
|
/**
|
|
* @deprecated
|
|
* Use workspace meta data to determine the workspace version.
|
|
*/
|
|
export enum WorkspaceVersion {
|
|
// v1 is treated as undefined
|
|
SubDoc = 2,
|
|
DatabaseV3 = 3,
|
|
Surface = 4,
|
|
}
|