@dosgato/templating 0.0.4 → 0.0.5

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.
@@ -11,6 +11,10 @@ export interface APITemplate {
11
11
  * edu.txstate.RichTextEditor could be useful but no special format is required.
12
12
  */
13
13
  templateKey: string;
14
+ /**
15
+ * A uniquey human-readable name describing this template
16
+ */
17
+ name: string;
14
18
  /**
15
19
  * Each template must declare its areas and the template keys of components that will be
16
20
  * permitted inside each area. The list of allowed component templates can be updated beyond
package/dist/links.d.ts CHANGED
@@ -18,6 +18,7 @@ export interface AssetLink {
18
18
  */
19
19
  export interface AssetFolderLink {
20
20
  type: 'assetfolder';
21
+ source: string;
21
22
  id: string;
22
23
  siteId: string;
23
24
  path: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dosgato/templating",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "A library to support building templates for dosgato CMS.",
5
5
  "exports": {
6
6
  "require": "./dist/index.js",