@compassdigital/sdk.typescript 4.652.0 → 4.654.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 +7 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +8 -0
- package/lib/index.js.map +1 -1
- package/lib/interface/centricos.d.ts +1 -0
- package/lib/interface/centricos.d.ts.map +1 -1
- package/lib/interface/discount.d.ts +8 -2
- package/lib/interface/discount.d.ts.map +1 -1
- package/lib/messages/events/AuditEvent.d.ts +1 -1
- package/lib/messages/events/AuditEvent.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +19 -0
- package/src/interface/centricos.ts +4 -0
- package/src/interface/discount.ts +11 -2
- package/src/messages/events/AuditEvent.ts +1 -1
package/lib/index.js
CHANGED
|
@@ -6693,6 +6693,14 @@ class ServiceClient extends base_1.BaseServiceClient {
|
|
|
6693
6693
|
get_centricos_trending_cpg_products(options) {
|
|
6694
6694
|
return this.request('centricos', '/centricos/trending/cpg-products', 'GET', `/centricos/trending/cpg-products`, null, options);
|
|
6695
6695
|
}
|
|
6696
|
+
/**
|
|
6697
|
+
* GET /centricos/user/logs/csv - Download user change log as CSV
|
|
6698
|
+
*
|
|
6699
|
+
* @param options - additional request options
|
|
6700
|
+
*/
|
|
6701
|
+
get_centricos_user_logs_csv(options) {
|
|
6702
|
+
return this.request('centricos', '/centricos/user/logs/csv', 'GET', `/centricos/user/logs/csv`, null, options);
|
|
6703
|
+
}
|
|
6696
6704
|
/**
|
|
6697
6705
|
* GET /tax/v1/health-check - Health Check
|
|
6698
6706
|
*
|