@excali-boards/boards-api-client 1.1.65 → 1.1.66

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.
@@ -29,6 +29,7 @@ export type UsersFunctionsInput = WithHeaders<{
29
29
  }>;
30
30
  export type GetUsersOutput = DBUserPartialType & {
31
31
  isDev: boolean;
32
+ personalBoardsEnabled: boolean;
32
33
  };
33
34
  export type UserInput = {
34
35
  mainGroupId?: string | null;
package/package.json CHANGED
@@ -1,42 +1,43 @@
1
1
  {
2
- "version": "1.1.65",
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
- }
2
+ "version": "1.1.66",
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
+ "postinstall": "prisma generate",
12
+ "watch": "tsc --watch",
13
+ "lint": "eslint . --ext .ts",
14
+ "updates": "pnpm npm-check-updates -i --format group"
15
+ },
16
+ "main": "dist/index.js",
17
+ "types": "dist/index.d.ts",
18
+ "license": "GPL-3.0",
19
+ "files": [
20
+ "dist",
21
+ "prisma/schema",
22
+ "prisma/generated",
23
+ "prisma.config.ts",
24
+ "README.md",
25
+ "LICENSE"
26
+ ],
27
+ "devDependencies": {
28
+ "@types/node": "20.14.13",
29
+ "@typescript-eslint/eslint-plugin": "6.18.0",
30
+ "@typescript-eslint/parser": "6.18.0",
31
+ "eslint": "8.56.0",
32
+ "typescript": "7.0.2"
33
+ },
34
+ "engines": {
35
+ "node": ">=20.2.0"
36
+ },
37
+ "dependencies": {
38
+ "@prisma/client": "6.16.2",
39
+ "axios": "1.12.2",
40
+ "prisma": "6.16.2",
41
+ "zod": "4.1.9"
42
+ }
43
+ }
package/prisma.config.ts CHANGED
File without changes