@excali-boards/boards-api-client 1.1.61 → 1.1.63

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.
@@ -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 = {
@@ -1,5 +1,6 @@
1
1
  import { BoardRole, CategoryRole, GroupRole } from './vars.js';
2
- export type BoardType = 'Excalidraw' | 'Tldraw';
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
- "version": "1.1.61",
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
- "scripts": {
8
- "ts": "pnpm install typescript --save-dev -g",
9
- "init": "pnpm install && pnpm run build",
10
- "build": "tsc --build",
11
- "watch": "tsc --watch",
12
- "lint": "eslint . --ext .ts",
13
- "updates": "pnpm npm-check-updates -i --format group"
14
- },
15
- "main": "dist/index.js",
16
- "types": "dist/index.d.ts",
17
- "license": "GPL-3.0",
18
- "files": [
19
- "dist",
20
- "prisma/schema",
21
- "prisma/generated",
22
- "prisma.config.ts",
23
- "README.md",
24
- "LICENSE"
25
- ],
26
- "devDependencies": {
27
- "@types/node": "20.14.13",
28
- "@typescript-eslint/eslint-plugin": "6.18.0",
29
- "@typescript-eslint/parser": "6.18.0",
30
- "eslint": "8.56.0",
31
- "typescript": "7.0.2"
32
- },
33
- "engines": {
34
- "node": ">=20.2.0"
35
- },
36
- "dependencies": {
37
- "@prisma/client": "6.16.2",
38
- "axios": "1.12.2",
39
- "prisma": "6.16.2",
40
- "zod": "4.1.9"
41
- }
42
- }
2
+ "version": "1.1.63",
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
+ }
package/prisma.config.ts CHANGED
File without changes