@rimori/client 2.5.24-next.0 → 2.5.24-next.1

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.
@@ -9,6 +9,7 @@ export interface Guild {
9
9
  description: string | null;
10
10
  id: string;
11
11
  isPublic: boolean;
12
+ isShadowGuild: boolean;
12
13
  name: string;
13
14
  ownerId: string;
14
15
  primaryLanguage: string;
@@ -55,6 +55,7 @@ export declare class PluginModule {
55
55
  id: string;
56
56
  name: string;
57
57
  description: string | null;
58
+ isShadowGuild: boolean;
58
59
  };
59
60
  /**
60
61
  * Register a callback to be notified when RimoriInfo is updated.
@@ -143,6 +143,7 @@ export class PluginModule {
143
143
  id: this.rimoriInfo.guild.id,
144
144
  name: this.rimoriInfo.guild.name,
145
145
  description: this.rimoriInfo.guild.description,
146
+ isShadowGuild: this.rimoriInfo.guild.isShadowGuild,
146
147
  };
147
148
  }
148
149
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rimori/client",
3
- "version": "2.5.24-next.0",
3
+ "version": "2.5.24-next.1",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "repository": {