@univerjs/protocol 0.1.0 → 0.1.1

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.
@@ -26,6 +26,7 @@ export interface S3 {
26
26
  accessKeySecret: string;
27
27
  region: string;
28
28
  endpoint: string;
29
+ endpointPublic: string;
29
30
  usePathStyle: boolean;
30
31
  presignExpires: Duration | undefined;
31
32
  }
@@ -66,7 +66,7 @@ export interface UpdateTaskResponse {
66
66
  export interface UniverFileInJsonFmt {
67
67
  /** TODO: need to consider more than one snapshot in a univer file */
68
68
  snapshot: Snapshot | undefined;
69
- /** key is the sheetID, value is the sheet block */
69
+ /** key is the blockID, value is the sheet block */
70
70
  sheetBlocks: {
71
71
  [key: string]: SheetBlock;
72
72
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerjs/protocol",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "private": false,
5
5
  "description": "A protocol of Univer repos",
6
6
  "author": "DreamNum <developer@univer.ai>",