@compassdigital/sdk.typescript 4.571.0 → 4.572.0
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/lib/index.d.ts +10 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +9 -0
- package/lib/index.js.map +1 -1
- package/lib/interface/catalog.d.ts +14 -0
- package/lib/interface/catalog.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +24 -0
- package/src/interface/catalog.ts +23 -0
package/lib/index.js
CHANGED
|
@@ -5139,6 +5139,15 @@ class ServiceClient extends base_1.BaseServiceClient {
|
|
|
5139
5139
|
post_clone_catalog(id, options) {
|
|
5140
5140
|
return this.request('catalog', '/catalog/v1/catalog/{id}/clone', 'POST', `/catalog/v1/catalog/${id}/clone`, null, options);
|
|
5141
5141
|
}
|
|
5142
|
+
/**
|
|
5143
|
+
* GET /catalog/v1/catalog/{id}/items/merged - List catalog items (merged projection)
|
|
5144
|
+
*
|
|
5145
|
+
* @param id
|
|
5146
|
+
* @param options - additional request options
|
|
5147
|
+
*/
|
|
5148
|
+
get_list_catalog_items_merged(id, options) {
|
|
5149
|
+
return this.request('catalog', '/catalog/v1/catalog/{id}/items/merged', 'GET', `/catalog/v1/catalog/${id}/items/merged`, null, options);
|
|
5150
|
+
}
|
|
5142
5151
|
/**
|
|
5143
5152
|
* POST /catalog/v1/base-item - Create a new base item
|
|
5144
5153
|
*
|