@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.
@@ -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;
@@ -1,5 +1,5 @@
1
1
  import { BoardRole, CategoryRole, GroupRole } from './vars.js';
2
- import type { BoardType } from '../../prisma/generated/default.js';
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.59",
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,4 @@
1
+
2
+ /* !!! This is code generated by Prisma. Do not edit directly. !!!
3
+ /* eslint-disable */
4
+ module.exports = { ...require('.') }
@@ -0,0 +1 @@
1
+ export * from "./index"
@@ -0,0 +1,4 @@
1
+
2
+ /* !!! This is code generated by Prisma. Do not edit directly. !!!
3
+ /* eslint-disable */
4
+ module.exports = { ...require('#main-entry-point') }
@@ -0,0 +1 @@
1
+ export * from "./default"