joye-backend-utility 8.2.2 → 8.2.3

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.
@@ -3,10 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.AIResponsesTrackingSchema = void 0;
4
4
  const mongoose_1 = require("mongoose");
5
5
  const AIResponsesTracking = new mongoose_1.Schema({
6
- sessionId: {
7
- type: String,
8
- required: true,
9
- },
10
6
  date: {
11
7
  type: String,
12
8
  required: true,
@@ -31,7 +31,7 @@ exports.LlmBatchJobSchema = new mongoose_1.Schema({
31
31
  batchName: { type: String, required: false, index: true },
32
32
  displayName: { type: String, required: true },
33
33
  state: { type: String, required: true, default: 'open', index: true },
34
- /** Model id used for the batch (e.g. gemini-3.5-flash-lite / claude-sonnet-4-6). */
34
+ /** Model id used for the batch (e.g. gemini-3.7-flash / claude-sonnet-4-6). */
35
35
  model: { type: String, required: false },
36
36
  createdAt: { type: Number, required: true },
37
37
  submittedAt: { type: Number, required: false },
@@ -181,7 +181,7 @@ const UserAnalytic = new mongoose_1.Schema({
181
181
  type: Number,
182
182
  required: false,
183
183
  },
184
- /** Gemini thinking / reasoning tokens (thoughtsTokenCount). */
184
+ /** Thinking / reasoning tokens. Gemini: thoughtsTokenCount. Claude: output_tokens_details.thinking_tokens. */
185
185
  thoughtsToken: {
186
186
  type: Number,
187
187
  required: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joye-backend-utility",
3
- "version": "8.2.2",
3
+ "version": "8.2.3",
4
4
  "description": "Joye backend utility for db functions and common functions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",