@excali-boards/boards-api-client 1.1.64 → 1.1.65
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.
- package/dist/classes/boards.d.ts +1 -3
- package/package.json +1 -1
package/dist/classes/boards.d.ts
CHANGED
|
@@ -116,8 +116,6 @@ export type CreatePersonalCategoryOutput = {
|
|
|
116
116
|
};
|
|
117
117
|
export type PersonalBoardsOutput = {
|
|
118
118
|
id: string;
|
|
119
|
-
name: string;
|
|
120
|
-
rootCategoryId: string | null;
|
|
121
119
|
owner: PersonalBoardOwnerOutput;
|
|
122
120
|
boards: PersonalBoardOutput[];
|
|
123
121
|
categories: PersonalCategoryOutput[];
|
|
@@ -133,12 +131,12 @@ export type PersonalBoardOwnerOutput = {
|
|
|
133
131
|
};
|
|
134
132
|
export type PersonalCategoryOutput = {
|
|
135
133
|
id: string;
|
|
136
|
-
personalCategoryId?: string;
|
|
137
134
|
name: string;
|
|
138
135
|
boards: PersonalBoardOutput[];
|
|
139
136
|
};
|
|
140
137
|
export type PersonalBoardOutput = {
|
|
141
138
|
id: string;
|
|
139
|
+
categoryId: string;
|
|
142
140
|
name: string;
|
|
143
141
|
type: BoardType;
|
|
144
142
|
index: number;
|
package/package.json
CHANGED