@ember-home/unbound-ts-client 0.0.69 → 0.0.71
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/dist/index.d.mts +26 -7
- package/dist/index.d.ts +26 -7
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1795,7 +1795,7 @@ var ConversationsApiAxiosParamCreator = function(configuration) {
|
|
|
1795
1795
|
*/
|
|
1796
1796
|
conversationsListSuggestions: async (conversationId, options = {}) => {
|
|
1797
1797
|
assertParamExists("conversationsListSuggestions", "conversationId", conversationId);
|
|
1798
|
-
const localVarPath = `/conversations/{conversationId}/
|
|
1798
|
+
const localVarPath = `/conversations/{conversationId}/suggestedReplies`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
|
|
1799
1799
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1800
1800
|
let baseOptions;
|
|
1801
1801
|
if (configuration) {
|
|
@@ -3677,7 +3677,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3677
3677
|
*/
|
|
3678
3678
|
conversationsListSuggestions: async (conversationId, options = {}) => {
|
|
3679
3679
|
assertParamExists("conversationsListSuggestions", "conversationId", conversationId);
|
|
3680
|
-
const localVarPath = `/conversations/{conversationId}/
|
|
3680
|
+
const localVarPath = `/conversations/{conversationId}/suggestedReplies`.replace(`{${"conversationId"}}`, encodeURIComponent(String(conversationId)));
|
|
3681
3681
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3682
3682
|
let baseOptions;
|
|
3683
3683
|
if (configuration) {
|