@univerjs/protocol 0.1.39-alpha.3 → 0.1.39-alpha.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -29,6 +29,8 @@ export interface WorkbookCreateMeta {
29
29
  /** Locale of the unit. */
30
30
  locale: string;
31
31
  customCell?: CustomCellTemplate | undefined;
32
+ /** Other meta in the future. */
33
+ docContent: string;
32
34
  }
33
35
  export interface CreateUnitRequest {
34
36
  unitID: string;
@@ -47,6 +47,7 @@ export interface CreateUnitRequest {
47
47
  templateID: string;
48
48
  customCell?: CustomCellTemplate | undefined;
49
49
  initialSheets: InitialSheet[];
50
+ docContent: string;
50
51
  }
51
52
  export interface CreateUnitResponse {
52
53
  error: Error | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerjs/protocol",
3
- "version": "0.1.39-alpha.3",
3
+ "version": "0.1.39-alpha.4",
4
4
  "private": false,
5
5
  "description": "A protocol of Univer repos",
6
6
  "author": "DreamNum <developer@univer.ai>",