@the-inkwell/shared 0.1.10 → 0.1.11
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
|
@@ -11,7 +11,10 @@ type AdminWebsiteStaticPage = {
|
|
|
11
11
|
|
|
12
12
|
type AdminWebsiteStaticPageParams = Pick<AdminWebsiteStaticPage, 'slug'>
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
type AdminWebsiteStaticPageListParams = Pick<AdminWebsiteStaticPage, 'slug'>
|
|
15
|
+
|
|
16
|
+
export type AdminWebsiteStaticPageListRequestParams =
|
|
17
|
+
AdminWebsiteStaticPageListParams
|
|
15
18
|
|
|
16
19
|
export type AdminWebsiteStaticPageResponse = AdminWebsiteStaticPage
|
|
17
20
|
|