@compassdigital/sdk.typescript 4.633.0 → 4.634.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 +8 -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 +10 -0
- package/lib/interface/centricos.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +22 -0
- package/src/interface/centricos.ts +20 -0
package/lib/index.js
CHANGED
|
@@ -6554,6 +6554,15 @@ class ServiceClient extends base_1.BaseServiceClient {
|
|
|
6554
6554
|
get_description_recommendations(siteId, options) {
|
|
6555
6555
|
return this.request('centricos', '/centricos/recommendations/{siteId}/descriptions', 'GET', `/centricos/recommendations/${siteId}/descriptions`, null, options);
|
|
6556
6556
|
}
|
|
6557
|
+
/**
|
|
6558
|
+
* POST /centricos/recommendations/descriptions/upsert - Upsert an item description-recommendation status in Centric Insights
|
|
6559
|
+
*
|
|
6560
|
+
* @param body
|
|
6561
|
+
* @param options - additional request options
|
|
6562
|
+
*/
|
|
6563
|
+
upsert_description_recommendation(body, options) {
|
|
6564
|
+
return this.request('centricos', '/centricos/recommendations/descriptions/upsert', 'POST', `/centricos/recommendations/descriptions/upsert`, body, options);
|
|
6565
|
+
}
|
|
6557
6566
|
/**
|
|
6558
6567
|
* POST /centricos/business-unit/{bu_id}/validate-vertex - Validate vertex for business unit
|
|
6559
6568
|
*
|