@meridianjs/types 0.1.9 → 0.1.11

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
@@ -61,6 +61,10 @@ interface AdminConfig {
61
61
  path?: string;
62
62
  /** Port for the admin dashboard static server (default: 5174) */
63
63
  port?: number;
64
+ /** Custom app name shown on login/register pages (default: "Meridian") */
65
+ appName?: string;
66
+ /** URL for a custom logo image shown on login/register pages */
67
+ logoUrl?: string;
64
68
  }
65
69
  interface EventMessage<T = unknown> {
66
70
  name: string;
package/dist/index.d.ts CHANGED
@@ -61,6 +61,10 @@ interface AdminConfig {
61
61
  path?: string;
62
62
  /** Port for the admin dashboard static server (default: 5174) */
63
63
  port?: number;
64
+ /** Custom app name shown on login/register pages (default: "Meridian") */
65
+ appName?: string;
66
+ /** URL for a custom logo image shown on login/register pages */
67
+ logoUrl?: string;
64
68
  }
65
69
  interface EventMessage<T = unknown> {
66
70
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meridianjs/types",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "description": "Shared TypeScript types and interfaces for Meridian",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",