@meridianjs/types 0.1.0 → 0.1.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.
package/dist/index.d.mts CHANGED
@@ -55,6 +55,8 @@ interface PluginConfig {
55
55
  interface AdminConfig {
56
56
  disable?: boolean;
57
57
  path?: string;
58
+ /** Port for the admin dashboard static server (default: 5174) */
59
+ port?: number;
58
60
  }
59
61
  interface EventMessage<T = unknown> {
60
62
  name: string;
package/dist/index.d.ts CHANGED
@@ -55,6 +55,8 @@ interface PluginConfig {
55
55
  interface AdminConfig {
56
56
  disable?: boolean;
57
57
  path?: string;
58
+ /** Port for the admin dashboard static server (default: 5174) */
59
+ port?: number;
58
60
  }
59
61
  interface EventMessage<T = unknown> {
60
62
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meridianjs/types",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Shared TypeScript types and interfaces for Meridian",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",