@getpaseo/client 0.1.86 → 0.1.88
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 +2 -0
- package/dist/daemon-client.js +1 -0
- package/package.json +3 -3
package/dist/daemon-client.d.ts
CHANGED
|
@@ -415,6 +415,7 @@ export interface CreateScheduleOptions {
|
|
|
415
415
|
} | {
|
|
416
416
|
type: "cron";
|
|
417
417
|
expression: string;
|
|
418
|
+
timezone?: string;
|
|
418
419
|
};
|
|
419
420
|
target: {
|
|
420
421
|
type: "self";
|
|
@@ -465,6 +466,7 @@ export interface UpdateScheduleOptions {
|
|
|
465
466
|
} | {
|
|
466
467
|
type: "cron";
|
|
467
468
|
expression: string;
|
|
469
|
+
timezone?: string;
|
|
468
470
|
};
|
|
469
471
|
newAgentConfig?: UpdateScheduleNewAgentConfig;
|
|
470
472
|
maxRuns?: number | null;
|
package/dist/daemon-client.js
CHANGED
|
@@ -3009,6 +3009,7 @@ export class DaemonClient {
|
|
|
3009
3009
|
capabilities: {
|
|
3010
3010
|
[CLIENT_CAPS.customModeIcons]: true,
|
|
3011
3011
|
[CLIENT_CAPS.reasoningMergeEnum]: true,
|
|
3012
|
+
[CLIENT_CAPS.terminalReflowableSnapshot]: true,
|
|
3012
3013
|
},
|
|
3013
3014
|
...(this.config.appVersion ? { appVersion: this.config.appVersion } : {}),
|
|
3014
3015
|
}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getpaseo/client",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.88",
|
|
4
4
|
"description": "Paseo client SDK package",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"test": "vitest run"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@getpaseo/protocol": "0.1.
|
|
37
|
-
"@getpaseo/relay": "0.1.
|
|
36
|
+
"@getpaseo/protocol": "0.1.88",
|
|
37
|
+
"@getpaseo/relay": "0.1.88",
|
|
38
38
|
"zod": "^3.23.8"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|