@swell/apps-sdk 1.0.132 → 1.0.133
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/index.cjs +13 -4
- package/dist/index.cjs.map +2 -2
- package/dist/index.js +13 -4
- package/dist/index.js.map +2 -2
- package/dist/index.mjs +13 -4
- package/dist/index.mjs.map +2 -2
- package/dist/types/swell.d.ts +4 -2
- package/package.json +1 -1
package/dist/types/swell.d.ts
CHANGED
|
@@ -249,17 +249,19 @@ export interface ThemeSectionSettings extends ThemeSettings {
|
|
|
249
249
|
export interface ThemePageSchema {
|
|
250
250
|
layout?: string;
|
|
251
251
|
page?: {
|
|
252
|
-
|
|
252
|
+
title?: string;
|
|
253
253
|
label?: string;
|
|
254
|
+
slug?: string;
|
|
254
255
|
description?: string;
|
|
255
256
|
$locale?: string;
|
|
256
257
|
};
|
|
257
258
|
}
|
|
258
259
|
interface ThemePageAdditionalProps {
|
|
259
|
-
description?: string;
|
|
260
260
|
current: number;
|
|
261
261
|
label: string;
|
|
262
|
+
title: string;
|
|
262
263
|
slug?: string;
|
|
264
|
+
description?: string;
|
|
263
265
|
$locale?: string;
|
|
264
266
|
}
|
|
265
267
|
export interface ThemeCustomPage extends ThemePageAdditionalProps {
|