@rimori/client 2.5.4 → 2.5.5-next.0

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.ts CHANGED
@@ -16,3 +16,4 @@ export type { Message, ToolInvocation } from './controller/AIController';
16
16
  export type { TriggerAction } from './plugin/module/ExerciseModule';
17
17
  export type { MacroAccomplishmentPayload, MicroAccomplishmentPayload } from './controller/AccomplishmentController';
18
18
  export type { EventBusMessage } from './fromRimori/EventBus';
19
+ export type { Theme, ApplicationMode } from './plugin/module/PluginModule';
@@ -3,8 +3,8 @@ import { RimoriCommunicationHandler, RimoriInfo } from '../CommunicationHandler'
3
3
  import { Translator } from '../../controller/TranslationController';
4
4
  import { ActivePlugin, Plugin } from '../../fromRimori/PluginTypes';
5
5
  import { SupabaseClient } from '../CommunicationHandler';
6
- type Theme = 'light' | 'dark';
7
- type ApplicationMode = 'main' | 'sidebar' | 'settings';
6
+ export type Theme = 'light' | 'dark' | 'system';
7
+ export type ApplicationMode = 'main' | 'sidebar' | 'settings';
8
8
  /**
9
9
  * Controller for plugin-related operations.
10
10
  * Provides access to plugin settings, user info, and plugin information.
@@ -73,4 +73,3 @@ export declare class PluginModule {
73
73
  */
74
74
  getTranslator(): Promise<Translator>;
75
75
  }
76
- export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rimori/client",
3
- "version": "2.5.4",
3
+ "version": "2.5.5-next.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "repository": {