@orderingstack/ordering-types 1.25.0-beta.1 → 1.25.0-beta.2
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/cjs/index.d.ts +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/cjs/index.d.ts
CHANGED
|
@@ -167,7 +167,7 @@ export interface IGroupOptions extends IMenuItem {
|
|
|
167
167
|
attrs?: IGroupAttributes;
|
|
168
168
|
filter?: IProductFilter;
|
|
169
169
|
}
|
|
170
|
-
export interface IMenuCategory extends Pick<IMenuItem, "id" | "kind" | "_" | "__" | "details"> {
|
|
170
|
+
export interface IMenuCategory extends Pick<IMenuItem, "id" | "kind" | "_" | "__" | "details" | "items"> {
|
|
171
171
|
kind: EProductKind.CATEGORY;
|
|
172
172
|
}
|
|
173
173
|
export interface IMenuProduct extends IMenuItem {
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -167,7 +167,7 @@ export interface IGroupOptions extends IMenuItem {
|
|
|
167
167
|
attrs?: IGroupAttributes;
|
|
168
168
|
filter?: IProductFilter;
|
|
169
169
|
}
|
|
170
|
-
export interface IMenuCategory extends Pick<IMenuItem, "id" | "kind" | "_" | "__" | "details"> {
|
|
170
|
+
export interface IMenuCategory extends Pick<IMenuItem, "id" | "kind" | "_" | "__" | "details" | "items"> {
|
|
171
171
|
kind: EProductKind.CATEGORY;
|
|
172
172
|
}
|
|
173
173
|
export interface IMenuProduct extends IMenuItem {
|