@compassdigital/sdk.typescript 4.534.0 → 4.536.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 +15 -7
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +15 -7
- package/lib/index.js.map +1 -1
- package/lib/interface/centricos.d.ts +7 -1
- package/lib/interface/centricos.d.ts.map +1 -1
- package/lib/interface/forecasting.d.ts +18 -1
- package/lib/interface/forecasting.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +39 -17
- package/src/interface/centricos.ts +13 -0
- package/src/interface/forecasting.ts +24 -4
package/lib/index.js
CHANGED
|
@@ -6405,6 +6405,14 @@ class ServiceClient extends base_1.BaseServiceClient {
|
|
|
6405
6405
|
get_swap_details(recommendation_id, options) {
|
|
6406
6406
|
return this.request('centricos', '/centricos/swaps/details/{recommendation_id}', 'GET', `/centricos/swaps/details/${recommendation_id}`, null, options);
|
|
6407
6407
|
}
|
|
6408
|
+
/**
|
|
6409
|
+
* GET /centricos/google-places - Google Places autocomplete or details
|
|
6410
|
+
*
|
|
6411
|
+
* @param options - additional request options
|
|
6412
|
+
*/
|
|
6413
|
+
get_centricos_google_places(options) {
|
|
6414
|
+
return this.request('centricos', '/centricos/google-places', 'GET', `/centricos/google-places`, null, options);
|
|
6415
|
+
}
|
|
6408
6416
|
/**
|
|
6409
6417
|
* GET /tax/v1/health-check - Health Check
|
|
6410
6418
|
*
|
|
@@ -6758,21 +6766,21 @@ class ServiceClient extends base_1.BaseServiceClient {
|
|
|
6758
6766
|
return this.request('forecasting', '/forecasting/ping', 'GET', `/forecasting/ping`, null, options);
|
|
6759
6767
|
}
|
|
6760
6768
|
/**
|
|
6761
|
-
*
|
|
6769
|
+
* POST /forecasting/chat-stream - Stream chat responses from Luna for forecasting chat
|
|
6762
6770
|
*
|
|
6771
|
+
* @param body
|
|
6763
6772
|
* @param options - additional request options
|
|
6764
6773
|
*/
|
|
6765
|
-
|
|
6766
|
-
return this.request('forecasting', '/forecasting/
|
|
6774
|
+
ProductionSheetController_chatStream(body, options) {
|
|
6775
|
+
return this.request('forecasting', '/forecasting/chat-stream', 'POST', `/forecasting/chat-stream`, body, options);
|
|
6767
6776
|
}
|
|
6768
6777
|
/**
|
|
6769
|
-
*
|
|
6778
|
+
* GET /forecasting/health - Forecasting Service health check
|
|
6770
6779
|
*
|
|
6771
|
-
* @param body
|
|
6772
6780
|
* @param options - additional request options
|
|
6773
6781
|
*/
|
|
6774
|
-
|
|
6775
|
-
return this.request('forecasting', '/forecasting/
|
|
6782
|
+
get_forecasting_health(options) {
|
|
6783
|
+
return this.request('forecasting', '/forecasting/health', 'GET', `/forecasting/health`, null, options);
|
|
6776
6784
|
}
|
|
6777
6785
|
}
|
|
6778
6786
|
exports.ServiceClient = ServiceClient;
|