@squiz/dxp-ai-client
Advanced tools
Comparing version 0.11.0 to 0.12.0
# @squiz/dxp-ai-client | ||
## 0.12.0 | ||
### Minor Changes | ||
- a058423: add filters to generative threads endpoint | ||
## 0.11.0 | ||
@@ -4,0 +10,0 @@ |
@@ -62,2 +62,5 @@ export type AiAuthType = 'none' | 'dxp'; | ||
cursor?: number; | ||
filterByDateFrom?: string; | ||
filterByDateTo?: string; | ||
filterByRating?: ThreadRatingParameter; | ||
pageSize?: PaginationPageLimit; | ||
@@ -324,2 +327,6 @@ sortDirection?: SortDirectionEnum2; | ||
export type ThreadRating = 'positive' | 'negative'; | ||
export type ThreadRatingNegative = 'negative'; | ||
export type ThreadRatingParameter = ThreadRatingPositive | ThreadRatingNegative | ThreadRatingParameterEnum; | ||
export type ThreadRatingParameterEnum = 'unrated'; | ||
export type ThreadRatingPositive = 'positive'; | ||
export declare namespace Chatbot { | ||
@@ -513,2 +520,5 @@ namespace Create { | ||
cursor?: number; | ||
filterByDateFrom?: string; | ||
filterByDateTo?: string; | ||
filterByRating?: ThreadRatingParameter; | ||
pageSize?: PaginationPageLimit; | ||
@@ -515,0 +525,0 @@ sortDirection?: GetAllGenerativeThreadsParams1SortDirectionEnum; |
@@ -5,3 +5,3 @@ { | ||
"private": false, | ||
"version": "0.11.0", | ||
"version": "0.12.0", | ||
"description": "Exposes the DXP AI service as a package for consumers", | ||
@@ -21,5 +21,5 @@ "main": "dist/index.js", | ||
"jest": "^29.7.0", | ||
"@squiz/ai-service": "1.7.0" | ||
"@squiz/ai-service": "1.7.1" | ||
}, | ||
"dependencies": {} | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
215657
1831