Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 1 addition & 20 deletions generator/catalog-ingestion-openapi-spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1369,7 +1369,7 @@ paths:
},
"name": "Premium Red Winter Pants - Limited Edition",
"description": "Stay warm and stylish with our premium red winter pants. Features thermal lining and water-resistant fabric perfect for cold weather adventures.",
"shortDescription": "Premium thermal-lined winter pants in classic red",
"shortDescription": "Premium thermal-lined winter pants in warm, classic red",
"images": [
{
"url": "https://cdn.example.com/products/red-pants-winter-2024.jpg",
Expand Down Expand Up @@ -2657,10 +2657,6 @@ components:
type: string
description: Product display name that will override the base product name. Use for localized names, seasonal branding, or promotional titles.
example: Premium Red Winter Pants - Limited Edition
slug:
type: string
description: URL-friendly identifier for the product page. Override to create layer-specific URLs for SEO or campaign tracking.
example: premium-red-winter-pants-limited-edition
description:
type: string
nullable: true
Expand Down Expand Up @@ -2688,21 +2684,6 @@ components:
description: Related product SKUs that will be merged with base product links. Use to add seasonal recommendations, locale-specific cross-sells, or promotional bundles.
items:
$ref: "#/components/schemas/ProductLink"
routes:
type: array
description: URL routing configurations that will be merged with base product routes. Use to add layer-specific navigation paths or campaign-specific URLs.
items:
$ref: "#/components/schemas/ProductRoutes"
configurations:
type: array
description: Product configuration options for composite products (for example, configurable products) that will be merged with base configurations. Use to add layer-specific variants or seasonal options.
items:
$ref: "#/components/schemas/ProductConfiguration"
bundles:
type: array
description: Bundle product definitions that will be merged with base product bundles. Use to create seasonal bundles, promotional packages, or locale-specific product groupings.
items:
$ref: "#/components/schemas/ProductBundle"
externalIds:
type: array
description: External system identifiers that will be merged with base product external IDs. Use to add layer-specific tracking codes, campaign IDs, or integration references.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@adobe-commerce/aco-ts-sdk",
"version": "1.2.1",
"version": "1.2.2",
"description": "TypeScript Client SDK for the Adobe Commerce Optimizer API",
"type": "module",
"license": "Apache-2.0",
Expand Down
31 changes: 0 additions & 31 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -683,13 +683,6 @@ export interface FeedProductLayer {
* @type {string}
*/
name?: string;
/**
* URL-friendly identifier for the product page. Override to create layer-specific URLs for SEO or campaign tracking.
*
* @memberof FeedProductLayer
* @type {string}
*/
slug?: string;
/**
* Detailed product description that replaces the base product description. Use for localized content, seasonal
* messaging, or enhanced marketing copy.
Expand Down Expand Up @@ -735,30 +728,6 @@ export interface FeedProductLayer {
* @type {ProductLink[]}
*/
links?: ProductLink[];
/**
* URL routing configurations that will be merged with base product routes. Use to add layer-specific navigation paths
* or campaign-specific URLs.
*
* @memberof FeedProductLayer
* @type {ProductRoutes[]}
*/
routes?: ProductRoutes[];
/**
* Product configuration options for composite products (for example, configurable products) that will be merged with
* base configurations. Use to add layer-specific variants or seasonal options.
*
* @memberof FeedProductLayer
* @type {ProductConfiguration[]}
*/
configurations?: ProductConfiguration[];
/**
* Bundle product definitions that will be merged with base product bundles. Use to create seasonal bundles,
* promotional packages, or locale-specific product groupings.
*
* @memberof FeedProductLayer
* @type {ProductBundle[]}
*/
bundles?: ProductBundle[];
/**
* External system identifiers that will be merged with base product external IDs. Use to add layer-specific tracking
* codes, campaign IDs, or integration references.
Expand Down