@lambda-development/erp-core 0.8.15 → 0.8.17

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.
@@ -90,7 +90,7 @@ export declare const api: {
90
90
  prev: string | null;
91
91
  next: string | null;
92
92
  }>;
93
- adjacentMaster: (masterType: string, name: string) => Promise<{
93
+ adjacentMaster: (masterType: string, name: string, params?: Record<string, string | number | undefined>) => Promise<{
94
94
  prev: string | null;
95
95
  next: string | null;
96
96
  }>;
@@ -3,6 +3,6 @@ export declare function DocPager({ slug, name, onSave, kind }: {
3
3
  name: string;
4
4
  /** Called on Cmd/Ctrl+S. Omit if the page has nothing to save. */
5
5
  onSave?: () => void;
6
- /** "master" pages through /masters/{slug} (name ASC) instead of /app/{slug}. */
6
+ /** "master" pages through /masters/{slug} instead of /app/{slug}. */
7
7
  kind?: "document" | "master";
8
8
  }): import("react/jsx-runtime").JSX.Element;