@dosgato/templating 0.0.115 → 0.0.116

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.
Files changed (2) hide show
  1. package/dist/render.d.ts +3 -1
  2. package/package.json +1 -1
package/dist/render.d.ts CHANGED
@@ -146,7 +146,9 @@ export interface APIClient {
146
146
  id?: string;
147
147
  path?: string;
148
148
  link?: string | PageLink;
149
- }) => Promise<PageRecord<PageData> | undefined>;
149
+ }) => Promise<PageRecord<PageData> & {
150
+ title: string;
151
+ } | undefined>;
150
152
  /** Get all ancestor pages of a specific page. First array element will be the pagetree root page. */
151
153
  getAncestors: ({ id, path }: {
152
154
  id?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dosgato/templating",
3
- "version": "0.0.115",
3
+ "version": "0.0.116",
4
4
  "description": "A library to support building templates for dosgato CMS.",
5
5
  "type": "module",
6
6
  "exports": {