@oro-ai/sdk 1.0.18 → 1.0.19
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 +5 -1
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
- package/src/generated/types.gen.ts +5 -1
package/dist/index.d.mts
CHANGED
|
@@ -2232,6 +2232,10 @@ type TopHistoryEntry = {
|
|
|
2232
2232
|
* Previously held top agent status
|
|
2233
2233
|
*/
|
|
2234
2234
|
was_top: boolean;
|
|
2235
|
+
/**
|
|
2236
|
+
* Suite this top status was earned on
|
|
2237
|
+
*/
|
|
2238
|
+
suite_id: number;
|
|
2235
2239
|
};
|
|
2236
2240
|
/**
|
|
2237
2241
|
* Response for top agent history endpoint.
|
|
@@ -2573,7 +2577,7 @@ type GetTopAgentError = unknown;
|
|
|
2573
2577
|
type GetTopHistoryData = {
|
|
2574
2578
|
query?: {
|
|
2575
2579
|
/**
|
|
2576
|
-
* Suite ID (
|
|
2580
|
+
* Suite ID (omit for all suites)
|
|
2577
2581
|
*/
|
|
2578
2582
|
suite_id?: (number | null);
|
|
2579
2583
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -2232,6 +2232,10 @@ type TopHistoryEntry = {
|
|
|
2232
2232
|
* Previously held top agent status
|
|
2233
2233
|
*/
|
|
2234
2234
|
was_top: boolean;
|
|
2235
|
+
/**
|
|
2236
|
+
* Suite this top status was earned on
|
|
2237
|
+
*/
|
|
2238
|
+
suite_id: number;
|
|
2235
2239
|
};
|
|
2236
2240
|
/**
|
|
2237
2241
|
* Response for top agent history endpoint.
|
|
@@ -2573,7 +2577,7 @@ type GetTopAgentError = unknown;
|
|
|
2573
2577
|
type GetTopHistoryData = {
|
|
2574
2578
|
query?: {
|
|
2575
2579
|
/**
|
|
2576
|
-
* Suite ID (
|
|
2580
|
+
* Suite ID (omit for all suites)
|
|
2577
2581
|
*/
|
|
2578
2582
|
suite_id?: (number | null);
|
|
2579
2583
|
};
|
package/package.json
CHANGED
|
@@ -2337,6 +2337,10 @@ export type TopHistoryEntry = {
|
|
|
2337
2337
|
* Previously held top agent status
|
|
2338
2338
|
*/
|
|
2339
2339
|
was_top: boolean;
|
|
2340
|
+
/**
|
|
2341
|
+
* Suite this top status was earned on
|
|
2342
|
+
*/
|
|
2343
|
+
suite_id: number;
|
|
2340
2344
|
};
|
|
2341
2345
|
|
|
2342
2346
|
/**
|
|
@@ -2703,7 +2707,7 @@ export type GetTopAgentError = unknown;
|
|
|
2703
2707
|
export type GetTopHistoryData = {
|
|
2704
2708
|
query?: {
|
|
2705
2709
|
/**
|
|
2706
|
-
* Suite ID (
|
|
2710
|
+
* Suite ID (omit for all suites)
|
|
2707
2711
|
*/
|
|
2708
2712
|
suite_id?: (number | null);
|
|
2709
2713
|
};
|