@labdigital/commercetools-mock 2.21.0 → 2.21.1
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 +3 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/repositories/category/index.ts +3 -0
package/dist/index.js
CHANGED
|
@@ -3038,6 +3038,9 @@ var CategoryRepository = class extends AbstractResourceRepository {
|
|
|
3038
3038
|
key: draft.key,
|
|
3039
3039
|
name: draft.name,
|
|
3040
3040
|
slug: draft.slug,
|
|
3041
|
+
description: draft.description,
|
|
3042
|
+
metaDescription: draft.metaDescription,
|
|
3043
|
+
metaKeywords: draft.metaKeywords,
|
|
3041
3044
|
orderHint: draft.orderHint || "",
|
|
3042
3045
|
externalId: draft.externalId || "",
|
|
3043
3046
|
parent: draft.parent ? { typeId: "category", id: draft.parent.id } : void 0,
|