@zixt/host 0.0.142 → 0.0.143
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.js +12 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -28,7 +28,7 @@ import { homedir as homedir4 } from "node:os";
|
|
|
28
28
|
// package.json
|
|
29
29
|
var package_default = {
|
|
30
30
|
name: "@zixt/host",
|
|
31
|
-
version: "0.0.
|
|
31
|
+
version: "0.0.143",
|
|
32
32
|
type: "module",
|
|
33
33
|
exports: {
|
|
34
34
|
".": "./src/client.ts",
|
|
@@ -17037,6 +17037,14 @@ var Schedule = external_exports.object({
|
|
|
17037
17037
|
* a Machine with fresh Browser capability instead of running blind (OB-14).
|
|
17038
17038
|
*/
|
|
17039
17039
|
requiresBrowser: external_exports.boolean().default(false),
|
|
17040
|
+
/**
|
|
17041
|
+
* Break-in rhythm (OB-14, founder direction 2026-08-24): the Automation
|
|
17042
|
+
* starts on its stored cadence and settles onto this one at the given
|
|
17043
|
+
* moment, so an initiative routine runs daily while the teammate is new and
|
|
17044
|
+
* weekly once it has found its feet. A person editing the cadence clears
|
|
17045
|
+
* this: their explicit choice is the new truth.
|
|
17046
|
+
*/
|
|
17047
|
+
settle: external_exports.object({ at: IsoDate, cadence: ScheduleCadence }).nullable().default(null),
|
|
17040
17048
|
enabled: external_exports.boolean(),
|
|
17041
17049
|
lastRunAt: IsoDate.nullable(),
|
|
17042
17050
|
skippedRuns: external_exports.number().int().min(0).default(0),
|
|
@@ -17057,7 +17065,9 @@ var CreateScheduleRequest = external_exports.object({
|
|
|
17057
17065
|
cadence: ScheduleCadence,
|
|
17058
17066
|
endsAt: IsoDate.nullable().optional(),
|
|
17059
17067
|
requestedHostId: HostId.nullable().optional(),
|
|
17060
|
-
requiresBrowser: external_exports.boolean().optional()
|
|
17068
|
+
requiresBrowser: external_exports.boolean().optional(),
|
|
17069
|
+
/** Break-in rhythm: begin on `cadence`, settle onto this one at the moment given. */
|
|
17070
|
+
settle: external_exports.object({ at: IsoDate, cadence: ScheduleCadence }).nullable().optional()
|
|
17061
17071
|
});
|
|
17062
17072
|
var UpdateScheduleRequest = external_exports.object({
|
|
17063
17073
|
name: Schedule.shape.name,
|