@gpt-core/admin 0.6.91 → 0.6.92

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
@@ -200,6 +200,7 @@ type TrainingSession = {
200
200
  * Field included by default.
201
201
  */
202
202
  corrections_count: number;
203
+ document_filename?: string | null | unknown;
203
204
  /**
204
205
  * Async calculated score of how much this session improved the model. Field included by default.
205
206
  */
@@ -224,6 +225,8 @@ type TrainingSession = {
224
225
  * Field included by default.
225
226
  */
226
227
  updated_at: unknown;
228
+ user_email?: string | null | unknown;
229
+ user_name?: string | null | unknown;
227
230
  };
228
231
  id: string;
229
232
  /**
@@ -15580,7 +15583,6 @@ type GetAdminTrainingSessionsByIdData = {
15580
15583
  fields?: {
15581
15584
  [key: string]: unknown;
15582
15585
  };
15583
- agent_id?: string;
15584
15586
  };
15585
15587
  url: "/admin/training_sessions/{id}";
15586
15588
  };
package/dist/index.d.ts CHANGED
@@ -200,6 +200,7 @@ type TrainingSession = {
200
200
  * Field included by default.
201
201
  */
202
202
  corrections_count: number;
203
+ document_filename?: string | null | unknown;
203
204
  /**
204
205
  * Async calculated score of how much this session improved the model. Field included by default.
205
206
  */
@@ -224,6 +225,8 @@ type TrainingSession = {
224
225
  * Field included by default.
225
226
  */
226
227
  updated_at: unknown;
228
+ user_email?: string | null | unknown;
229
+ user_name?: string | null | unknown;
227
230
  };
228
231
  id: string;
229
232
  /**
@@ -15580,7 +15583,6 @@ type GetAdminTrainingSessionsByIdData = {
15580
15583
  fields?: {
15581
15584
  [key: string]: unknown;
15582
15585
  };
15583
- agent_id?: string;
15584
15586
  };
15585
15587
  url: "/admin/training_sessions/{id}";
15586
15588
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gpt-core/admin",
3
- "version": "0.6.91",
3
+ "version": "0.6.92",
4
4
  "description": "TypeScript SDK for GPT Core Admin API - Platform administration and ISV management",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",