@getsupervisor/agents-studio-sdk 1.41.2-patch.5 → 1.41.2-patch.6
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.cjs +7 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +7 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1350,6 +1350,9 @@ function createCallsApi(cfg) {
|
|
|
1350
1350
|
executionId,
|
|
1351
1351
|
recordedAfter,
|
|
1352
1352
|
recordedBefore,
|
|
1353
|
+
durationBucket,
|
|
1354
|
+
goalStatus,
|
|
1355
|
+
query: searchQuery,
|
|
1353
1356
|
...listOptions
|
|
1354
1357
|
} = options ?? {};
|
|
1355
1358
|
const query = serializeListOptions(listOptions, {
|
|
@@ -1357,7 +1360,10 @@ function createCallsApi(cfg) {
|
|
|
1357
1360
|
agentId,
|
|
1358
1361
|
executionId,
|
|
1359
1362
|
recordedAfter,
|
|
1360
|
-
recordedBefore
|
|
1363
|
+
recordedBefore,
|
|
1364
|
+
durationBucket,
|
|
1365
|
+
goalStatus,
|
|
1366
|
+
query: searchQuery
|
|
1361
1367
|
});
|
|
1362
1368
|
const res = await doFetch(`${base}/calls`, {
|
|
1363
1369
|
method: "GET",
|