@excali-boards/boards-api-client 1.1.62 → 1.1.64
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
CHANGED
|
@@ -118,7 +118,7 @@ export type PersonalBoardsOutput = {
|
|
|
118
118
|
id: string;
|
|
119
119
|
name: string;
|
|
120
120
|
rootCategoryId: string | null;
|
|
121
|
-
owner: PersonalBoardOwnerOutput
|
|
121
|
+
owner: PersonalBoardOwnerOutput;
|
|
122
122
|
boards: PersonalBoardOutput[];
|
|
123
123
|
categories: PersonalCategoryOutput[];
|
|
124
124
|
};
|
|
@@ -128,6 +128,7 @@ export type PersonalBoardsAdminOutput = {
|
|
|
128
128
|
export type PersonalBoardOwnerOutput = {
|
|
129
129
|
userId: string;
|
|
130
130
|
displayName: string;
|
|
131
|
+
email: string;
|
|
131
132
|
avatarUrl: string | null;
|
|
132
133
|
};
|
|
133
134
|
export type PersonalCategoryOutput = {
|
package/dist/external/types.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { BoardRole, CategoryRole, GroupRole } from './vars.js';
|
|
2
|
-
|
|
2
|
+
import type { BoardType } from '../../prisma/generated/default.js';
|
|
3
|
+
export type { BoardType } from '../../prisma/generated/default.js';
|
|
3
4
|
export type UserRole = BoardRole | CategoryRole | GroupRole | GlobalRole;
|
|
4
5
|
export declare enum GlobalRole {
|
|
5
6
|
Developer = "Developer"
|
package/package.json
CHANGED
|
@@ -1,42 +1,42 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
2
|
+
"version": "1.1.64",
|
|
3
|
+
"name": "@excali-boards/boards-api-client",
|
|
4
|
+
"description": "A simple API client for the Boards API.",
|
|
5
|
+
"repository": "https://github.com/Excali-Boards/boards-api-client",
|
|
6
|
+
"author": "Digital39999",
|
|
7
|
+
"main": "dist/index.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"license": "GPL-3.0",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"prisma/schema",
|
|
13
|
+
"prisma/generated",
|
|
14
|
+
"prisma.config.ts",
|
|
15
|
+
"README.md",
|
|
16
|
+
"LICENSE"
|
|
17
|
+
],
|
|
18
|
+
"devDependencies": {
|
|
19
|
+
"@types/node": "20.14.13",
|
|
20
|
+
"@typescript-eslint/eslint-plugin": "6.18.0",
|
|
21
|
+
"@typescript-eslint/parser": "6.18.0",
|
|
22
|
+
"eslint": "8.56.0",
|
|
23
|
+
"typescript": "7.0.2"
|
|
24
|
+
},
|
|
25
|
+
"engines": {
|
|
26
|
+
"node": ">=20.2.0"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@prisma/client": "6.16.2",
|
|
30
|
+
"axios": "1.12.2",
|
|
31
|
+
"prisma": "6.16.2",
|
|
32
|
+
"zod": "4.1.9"
|
|
33
|
+
},
|
|
34
|
+
"scripts": {
|
|
35
|
+
"ts": "pnpm install typescript --save-dev -g",
|
|
36
|
+
"init": "pnpm install && pnpm run build",
|
|
37
|
+
"build": "tsc --build",
|
|
38
|
+
"watch": "tsc --watch",
|
|
39
|
+
"lint": "eslint . --ext .ts",
|
|
40
|
+
"updates": "pnpm npm-check-updates -i --format group"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
File without changes
|
package/prisma.config.ts
CHANGED
|
File without changes
|