@borealise/api 1.1.0 → 1.1.2

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/index.d.mts CHANGED
@@ -488,6 +488,9 @@ interface ChatMessage {
488
488
  username: string;
489
489
  display_name: string | null;
490
490
  role: RoomRole;
491
+ global_role?: string | null;
492
+ subscription_type?: string | null;
493
+ subscription_months?: number;
491
494
  content: string;
492
495
  timestamp: number;
493
496
  deleted?: boolean;
package/dist/index.d.ts CHANGED
@@ -488,6 +488,9 @@ interface ChatMessage {
488
488
  username: string;
489
489
  display_name: string | null;
490
490
  role: RoomRole;
491
+ global_role?: string | null;
492
+ subscription_type?: string | null;
493
+ subscription_months?: number;
491
494
  content: string;
492
495
  timestamp: number;
493
496
  deleted?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@borealise/api",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "Official API client for Borealise",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",