@excali-boards/boards-api-client 1.1.59 → 1.1.61
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 -1
- package/dist/external/types.d.ts +1 -1
- package/package.json +2 -2
- package/prisma/generated/client.d.ts +1 -0
- package/prisma/generated/client.js +4 -0
- package/prisma/generated/default.d.ts +1 -0
- package/prisma/generated/default.js +4 -0
- package/prisma/generated/edge.d.ts +1 -0
- package/prisma/generated/edge.js +446 -0
- package/prisma/generated/index-browser.js +433 -0
- package/prisma/generated/index.d.ts +36690 -0
- package/prisma/generated/index.js +467 -0
- package/prisma/generated/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
- package/prisma/generated/package.json +183 -0
- package/prisma/generated/query_engine_bg.js +2 -0
- package/prisma/generated/query_engine_bg.wasm +0 -0
- package/prisma/generated/runtime/edge-esm.js +34 -0
- package/prisma/generated/runtime/edge.js +34 -0
- package/prisma/generated/runtime/index-browser.d.ts +370 -0
- package/prisma/generated/runtime/index-browser.js +16 -0
- package/prisma/generated/runtime/library.d.ts +3976 -0
- package/prisma/generated/runtime/library.js +146 -0
- package/prisma/generated/runtime/react-native.js +83 -0
- package/prisma/generated/runtime/wasm-compiler-edge.js +84 -0
- package/prisma/generated/runtime/wasm-engine-edge.js +36 -0
- package/prisma/generated/schema.prisma +415 -0
- package/prisma/generated/wasm-edge-light-loader.mjs +4 -0
- package/prisma/generated/wasm-worker-loader.mjs +4 -0
- package/prisma/generated/wasm.d.ts +1 -0
- package/prisma/generated/wasm.js +453 -0
package/dist/classes/boards.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AccessLevel, AllRooms, NameInput, SingleOutput } from '../external/types.js';
|
|
2
|
-
import { BoardType } from '../../prisma/generated/default.js';
|
|
3
2
|
import { BoardsManager } from '../core/manager.js';
|
|
3
|
+
import { BoardType } from '../external/types.js';
|
|
4
4
|
import { WithHeaders } from '../types.js';
|
|
5
5
|
export declare class APIBoards {
|
|
6
6
|
private web;
|
package/dist/external/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BoardRole, CategoryRole, GroupRole } from './vars.js';
|
|
2
|
-
|
|
2
|
+
export type BoardType = 'Excalidraw' | 'Tldraw';
|
|
3
3
|
export type UserRole = BoardRole | CategoryRole | GroupRole | GlobalRole;
|
|
4
4
|
export declare enum GlobalRole {
|
|
5
5
|
Developer = "Developer"
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.1.
|
|
2
|
+
"version": "1.1.61",
|
|
3
3
|
"name": "@excali-boards/boards-api-client",
|
|
4
4
|
"description": "A simple API client for the Boards API.",
|
|
5
5
|
"repository": "https://github.com/Excali-Boards/boards-api-client",
|
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
"build": "tsc --build",
|
|
11
11
|
"watch": "tsc --watch",
|
|
12
12
|
"lint": "eslint . --ext .ts",
|
|
13
|
-
"postinstall": "prisma generate",
|
|
14
13
|
"updates": "pnpm npm-check-updates -i --format group"
|
|
15
14
|
},
|
|
16
15
|
"main": "dist/index.js",
|
|
@@ -19,6 +18,7 @@
|
|
|
19
18
|
"files": [
|
|
20
19
|
"dist",
|
|
21
20
|
"prisma/schema",
|
|
21
|
+
"prisma/generated",
|
|
22
22
|
"prisma.config.ts",
|
|
23
23
|
"README.md",
|
|
24
24
|
"LICENSE"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./index"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./index"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./default"
|