@dosgato/templating 0.0.49 → 0.0.50
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/apitemplate.d.ts +4 -4
- package/package.json +1 -1
package/dist/apitemplate.d.ts
CHANGED
|
@@ -20,10 +20,10 @@ export interface ValidationFeedback {
|
|
|
20
20
|
export interface PageExtras {
|
|
21
21
|
/** A function for executing a graphql query to acquire more information than is already at hand. */
|
|
22
22
|
query: GraphQLQueryFn;
|
|
23
|
-
/** The site id in which the page lives or is being created. */
|
|
24
|
-
siteId
|
|
25
|
-
/** The pagetree id in which the page lives or is being created. */
|
|
26
|
-
pagetreeId
|
|
23
|
+
/** The site id in which the page lives or is being created. Null if we are validating creation of a site. */
|
|
24
|
+
siteId?: string;
|
|
25
|
+
/** The pagetree id in which the page lives or is being created. Null if we are validating creation of a site or pagetree. */
|
|
26
|
+
pagetreeId?: string;
|
|
27
27
|
/** The page id of the page's parent or parent-to-be. Null if it is the root page of a pagetree. */
|
|
28
28
|
parentId?: string;
|
|
29
29
|
/** The page's id, presumably to be used in graphql queries. NOTE: will be null during page creation. */
|