@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.
- package/dist/render.d.ts +3 -1
- 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>
|
|
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;
|