@compassdigital/sdk.typescript 4.627.0 → 4.629.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/centricos.d.ts +15 -0
- package/lib/interface/centricos.d.ts.map +1 -1
- package/lib/interface/order.d.ts +1 -0
- package/lib/interface/order.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +24 -0
- package/src/interface/centricos.ts +29 -0
- package/src/interface/order.ts +2 -0
package/lib/index.js
CHANGED
|
@@ -6517,6 +6517,15 @@ class ServiceClient extends base_1.BaseServiceClient {
|
|
|
6517
6517
|
get_recommendations_by_site(siteId, options) {
|
|
6518
6518
|
return this.request('centricos', '/centricos/recommendations/{siteId}', 'GET', `/centricos/recommendations/${siteId}`, null, options);
|
|
6519
6519
|
}
|
|
6520
|
+
/**
|
|
6521
|
+
* GET /centricos/recommendations/{siteId}/descriptions - Get description recommendations for a site
|
|
6522
|
+
*
|
|
6523
|
+
* @param siteId - Identifier of the site to fetch description recommendations for.
|
|
6524
|
+
* @param options - additional request options
|
|
6525
|
+
*/
|
|
6526
|
+
get_description_recommendations(siteId, options) {
|
|
6527
|
+
return this.request('centricos', '/centricos/recommendations/{siteId}/descriptions', 'GET', `/centricos/recommendations/${siteId}/descriptions`, null, options);
|
|
6528
|
+
}
|
|
6520
6529
|
/**
|
|
6521
6530
|
* POST /centricos/business-unit/{bu_id}/validate-vertex - Validate vertex for business unit
|
|
6522
6531
|
*
|