@getpaseo/client 0.3.0-beta.4 → 0.3.1
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/daemon-client.d.ts +1 -6
- package/dist/daemon-client.js +2 -1
- package/dist/index.d.ts +0 -1
- package/package.json +3 -3
package/dist/daemon-client.d.ts
CHANGED
|
@@ -108,7 +108,6 @@ export interface DaemonClientConfig {
|
|
|
108
108
|
runtimeGeneration?: number | null;
|
|
109
109
|
password?: string;
|
|
110
110
|
authHeader?: string;
|
|
111
|
-
headers?: Record<string, string>;
|
|
112
111
|
suppressSendErrors?: boolean;
|
|
113
112
|
transportFactory?: DaemonTransportFactory;
|
|
114
113
|
webSocketFactory?: WebSocketFactory;
|
|
@@ -527,11 +526,7 @@ export interface CreateScheduleOptions {
|
|
|
527
526
|
archiveOnFinish?: boolean;
|
|
528
527
|
isolation?: "local" | "worktree";
|
|
529
528
|
title?: string | null;
|
|
530
|
-
|
|
531
|
-
sandboxMode?: string;
|
|
532
|
-
networkAccess?: boolean;
|
|
533
|
-
webSearch?: boolean;
|
|
534
|
-
extra?: AgentSessionConfig["extra"];
|
|
529
|
+
providerOptions?: AgentSessionConfig["providerOptions"];
|
|
535
530
|
systemPrompt?: string;
|
|
536
531
|
mcpServers?: AgentSessionConfig["mcpServers"];
|
|
537
532
|
};
|
package/dist/daemon-client.js
CHANGED
|
@@ -331,7 +331,7 @@ export class DaemonClient {
|
|
|
331
331
|
if (this.connectionState.status === "connecting") {
|
|
332
332
|
return;
|
|
333
333
|
}
|
|
334
|
-
const headers = {
|
|
334
|
+
const headers = {};
|
|
335
335
|
const password = normalizePassword(this.config.password);
|
|
336
336
|
if (password) {
|
|
337
337
|
headers.Authorization = `Bearer ${password}`;
|
|
@@ -1054,6 +1054,7 @@ export class DaemonClient {
|
|
|
1054
1054
|
type: "fetch_agent_history_request",
|
|
1055
1055
|
requestId: resolvedRequestId,
|
|
1056
1056
|
...(options?.filter ? { filter: options.filter } : {}),
|
|
1057
|
+
...(options?.search ? { search: options.search } : {}),
|
|
1057
1058
|
...(options?.sort ? { sort: options.sort } : {}),
|
|
1058
1059
|
...(options?.page ? { page: options.page } : {}),
|
|
1059
1060
|
});
|
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getpaseo/client",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Paseo client SDK package",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"test": "vitest run"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@getpaseo/protocol": "0.3.
|
|
43
|
-
"@getpaseo/relay": "0.3.
|
|
42
|
+
"@getpaseo/protocol": "0.3.1",
|
|
43
|
+
"@getpaseo/relay": "0.3.1",
|
|
44
44
|
"zod": "^4.4.3"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|