@the-inkwell/shared 0.1.122 → 0.1.123

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.122",
3
+ "version": "0.1.123",
4
4
  "description": "Shared code for Inkwell",
5
5
  "license": "ISC",
6
6
  "author": "Inkwell (Rob Yedlin & Saimon Alam)",
@@ -2,21 +2,22 @@ import type WebsiteStaticPage from '../../../_schema/WebsiteStaticPages'
2
2
  import type { WebsiteStaticPagesMutator } from '../../../_schema/WebsiteStaticPages'
3
3
  import { type ListResponse } from '../../../utils'
4
4
 
5
- type AdminWebsiteStaticPageMutator = WebsiteStaticPagesMutator
6
5
  export type AdminWebsiteStaticPage = WebsiteStaticPage & {
7
- content: {
8
- hero: {
9
- categoryStatement: string
10
- heading: string
11
- body: string
6
+ content?: {
7
+ hero?: {
8
+ categoryStatement?: string
9
+ heading?: string
10
+ body?: string
12
11
  }
13
12
  }
14
- meta: {
15
- title: string
16
- description: string
17
- keywords: string
13
+ meta?: {
14
+ title?: string
15
+ description?: string
16
+ keywords?: string
18
17
  }
19
18
  }
19
+ type AdminWebsiteStaticPageMutator = WebsiteStaticPagesMutator &
20
+ AdminWebsiteStaticPage
20
21
 
21
22
  // detail
22
23