@followupus/common 0.8.3 → 0.8.5

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.
@@ -5,6 +5,14 @@ export declare const DELTA_SCHEMA_NAME: {
5
5
  GROUPS: string;
6
6
  ITEMS: string;
7
7
  FOLDERS: string;
8
+ BOARD_HEADERS: string;
9
+ BOARD_VIEWS: string;
10
+ ITEM_NOTES: string;
11
+ FORMS: string;
12
+ WORKSPACES: string;
13
+ LINKED_COLUMNS: string;
14
+ LINKED_ITEMS: string;
15
+ DROPDOWNS: string;
8
16
  };
9
17
  export declare const DELTA_ACTION: {
10
18
  DELETE: string;
@@ -24,8 +32,8 @@ export interface DeltaObject {
24
32
  createdBy: string;
25
33
  createdAt: string;
26
34
  data?: object;
27
- rootId?: string;
28
- rootType?: keyof typeof DELTA_ROOT_SCHEMA_NAME;
35
+ rootId: string;
36
+ rootType: keyof typeof DELTA_ROOT_SCHEMA_NAME;
29
37
  }
30
38
  export interface DeltaMessages {
31
39
  cmd: string;
@@ -5,6 +5,14 @@ export const DELTA_SCHEMA_NAME = {
5
5
  GROUPS: "GROUPS",
6
6
  ITEMS: "ITEMS",
7
7
  FOLDERS: "FOLDERS",
8
+ BOARD_HEADERS: "BOARD_HEADERS",
9
+ BOARD_VIEWS: "BOARD_VIEWS",
10
+ ITEM_NOTES: "ITEM_NOTES",
11
+ FORMS: "FORMS",
12
+ WORKSPACES: "WORKSPACES",
13
+ LINKED_COLUMNS: "LINKED_COLUMNS",
14
+ LINKED_ITEMS: "LINKED_ITEMS",
15
+ DROPDOWNS: "DROPDOWNS",
8
16
  };
9
17
  export const DELTA_ACTION = {
10
18
  DELETE: "D",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@followupus/common",
3
- "version": "0.8.3",
3
+ "version": "0.8.5",
4
4
  "description": "followup common utils npm package with TypeScript and VSCode",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",