@juhuu/sdk-ts 1.2.60 → 1.2.61

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 CHANGED
@@ -1516,7 +1516,7 @@ declare namespace JUHUU {
1516
1516
  export interface AiChatMessage extends Base {
1517
1517
  type: "ai";
1518
1518
  articleEmbeddingArray: JUHUU.ArticleEmbedding.Object[];
1519
- starRating: 1 | 2 | 3 | 4 | 5 | null;
1519
+ rating: "good" | "bad" | null;
1520
1520
  feedbackText: string | null;
1521
1521
  contradictionDetection: {
1522
1522
  status: "neutral" | "contradiction" | "entailment";
package/dist/index.d.ts CHANGED
@@ -1516,7 +1516,7 @@ declare namespace JUHUU {
1516
1516
  export interface AiChatMessage extends Base {
1517
1517
  type: "ai";
1518
1518
  articleEmbeddingArray: JUHUU.ArticleEmbedding.Object[];
1519
- starRating: 1 | 2 | 3 | 4 | 5 | null;
1519
+ rating: "good" | "bad" | null;
1520
1520
  feedbackText: string | null;
1521
1521
  contradictionDetection: {
1522
1522
  status: "neutral" | "contradiction" | "entailment";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.60",
3
+ "version": "1.2.61",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",