@dosgato/templating 0.0.130 → 0.0.131
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/component.d.ts +3 -0
- package/package.json +1 -1
package/dist/component.d.ts
CHANGED
|
@@ -350,6 +350,9 @@ export interface PageRecord<DataType extends PageData = PageData> {
|
|
|
350
350
|
publishedAt?: Date;
|
|
351
351
|
path: string;
|
|
352
352
|
data: DataType;
|
|
353
|
+
pagetree: {
|
|
354
|
+
id: string;
|
|
355
|
+
};
|
|
353
356
|
site: SiteInfo;
|
|
354
357
|
}
|
|
355
358
|
export interface PageRecordOptionalData<DataType extends PageData = PageData> extends Omit<PageRecord<DataType>, 'data'> {
|