@the-inkwell/shared 0.1.12 → 0.1.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@the-inkwell/shared",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "Shared code for Inkwell",
5
5
  "license": "ISC",
6
6
  "author": "Inkwell (Rob Yedlin)",
@@ -6,6 +6,11 @@ type AdminWebsiteStaticPage = {
6
6
  slug: string
7
7
  name: string
8
8
  path: string
9
+ meta?: {
10
+ title?: string
11
+ description?: string
12
+ keywords?: string
13
+ }
9
14
  content: {
10
15
  [key: string]: string
11
16
  }
@@ -36,5 +41,5 @@ export type AdminWebsiteStaticPageUpdateRequestParams =
36
41
 
37
42
  export type AdminWebsiteStaticPageUpdateRequest = Pick<
38
43
  AdminWebsiteStaticPage,
39
- 'content'
44
+ 'content' | 'meta'
40
45
  >