Skip to content

Commit e989c90

Browse files
committed
chore(spec): regenerate ui and automation shards from a FORCED build
The previous regeneration read a dist that turbo served from the shared cache, which every worktree on this container replays, so the committed bytes were not what this tree builds. Two independent `build --force` runs of this exact tree agree with each other and disagree with what was committed; these are the forced-build bytes. Both shards move order-only against the merge base — identical token multiset, identical line count, nothing added, removed or renamed. `data.txt` is unchanged by this commit and still carries this branch's +11 exported names. Claude-Session: https://claude.ai/code/session_01AmH9bKvGoLjiY86Q4Z3og2 Co-authored-by: Claude <noreply@anthropic.com>
1 parent b3ecf8e commit e989c90

2 files changed

Lines changed: 189 additions & 189 deletions

File tree

packages/spec/api-surface-declarations/automation.txt

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@ declare const ActionCategorySchema: z.ZodEnum<{
139139
io: "io";
140140
control: "control";
141141
data: "data";
142-
logic: "logic";
143142
human: "human";
143+
logic: "logic";
144144
}>;
145145

146146
// ── ActionDescriptor (type) ──
@@ -161,8 +161,8 @@ declare const ActionDescriptorSchema: z.ZodObject<{
161161
io: "io";
162162
control: "control";
163163
data: "data";
164-
logic: "logic";
165164
human: "human";
165+
logic: "logic";
166166
}>>;
167167
paradigms: z.ZodDefault<z.ZodArray<z.ZodEnum<{
168168
flow: "flow";
@@ -188,8 +188,8 @@ declare const ActionDescriptorSchema: z.ZodObject<{
188188
reserved: "reserved";
189189
}>>;
190190
source: z.ZodDefault<z.ZodEnum<{
191-
builtin: "builtin";
192191
plugin: "plugin";
192+
builtin: "builtin";
193193
}>>;
194194
deprecated: z.ZodDefault<z.ZodBoolean>;
195195
aliasOf: z.ZodOptional<z.ZodString>;
@@ -805,13 +805,13 @@ declare const ExecutionLogSchema: z.ZodObject<{
805805
flowName: z.ZodString;
806806
flowVersion: z.ZodOptional<z.ZodNumber>;
807807
status: z.ZodEnum<{
808-
completed: "completed";
808+
failed: "failed";
809809
refused: "refused";
810810
pending: "pending";
811+
completed: "completed";
811812
running: "running";
812-
paused: "paused";
813-
failed: "failed";
814813
cancelled: "cancelled";
814+
paused: "paused";
815815
timed_out: "timed_out";
816816
retrying: "retrying";
817817
}>;
@@ -829,8 +829,8 @@ declare const ExecutionLogSchema: z.ZodObject<{
829829
nodeLabel: z.ZodOptional<z.ZodString>;
830830
status: z.ZodEnum<{
831831
success: "success";
832-
failure: "failure";
833832
skipped: "skipped";
833+
failure: "failure";
834834
}>;
835835
startedAt: z.ZodString;
836836
completedAt: z.ZodOptional<z.ZodString>;
@@ -871,8 +871,8 @@ declare const ExecutionLogSchema: z.ZodObject<{
871871
nodeLabel: z.ZodOptional<z.ZodString>;
872872
status: z.ZodEnum<{
873873
success: "success";
874-
failure: "failure";
875874
skipped: "skipped";
875+
failure: "failure";
876876
}>;
877877
runs: z.ZodNumber;
878878
failures: z.ZodNumber;
@@ -903,13 +903,13 @@ declare const ExecutionLogSchema: z.ZodObject<{
903903

904904
// ── ExecutionStatus (const) ──
905905
declare const ExecutionStatus: z.ZodEnum<{
906-
completed: "completed";
906+
failed: "failed";
907907
refused: "refused";
908908
pending: "pending";
909+
completed: "completed";
909910
running: "running";
910-
paused: "paused";
911-
failed: "failed";
912911
cancelled: "cancelled";
912+
paused: "paused";
913913
timed_out: "timed_out";
914914
retrying: "retrying";
915915
}>;
@@ -930,8 +930,8 @@ declare const ExecutionStepLogSchema: z.ZodObject<{
930930
nodeLabel: z.ZodOptional<z.ZodString>;
931931
status: z.ZodEnum<{
932932
success: "success";
933-
failure: "failure";
934933
skipped: "skipped";
934+
failure: "failure";
935935
}>;
936936
startedAt: z.ZodString;
937937
completedAt: z.ZodOptional<z.ZodString>;
@@ -1585,8 +1585,8 @@ declare const FlowRunNodeSummarySchema: z.ZodObject<{
15851585
nodeLabel: z.ZodOptional<z.ZodString>;
15861586
status: z.ZodEnum<{
15871587
success: "success";
1588-
failure: "failure";
15891588
skipped: "skipped";
1589+
failure: "failure";
15901590
}>;
15911591
runs: z.ZodNumber;
15921592
failures: z.ZodNumber;
@@ -1615,8 +1615,8 @@ declare const FlowRunSummarySchema: z.ZodObject<{
16151615
nodeLabel: z.ZodOptional<z.ZodString>;
16161616
status: z.ZodEnum<{
16171617
success: "success";
1618-
failure: "failure";
16191618
skipped: "skipped";
1619+
failure: "failure";
16201620
}>;
16211621
runs: z.ZodNumber;
16221622
failures: z.ZodNumber;
@@ -2909,20 +2909,20 @@ declare const ScheduleStateSchema: z.ZodObject<{
29092909
status: z.ZodDefault<z.ZodEnum<{
29102910
disabled: "disabled";
29112911
active: "active";
2912-
paused: "paused";
29132912
expired: "expired";
2913+
paused: "paused";
29142914
}>>;
29152915
nextRunAt: z.ZodOptional<z.ZodString>;
29162916
lastRunAt: z.ZodOptional<z.ZodString>;
29172917
lastExecutionId: z.ZodOptional<z.ZodString>;
29182918
lastRunStatus: z.ZodOptional<z.ZodEnum<{
2919-
completed: "completed";
2919+
failed: "failed";
29202920
refused: "refused";
29212921
pending: "pending";
2922+
completed: "completed";
29222923
running: "running";
2923-
paused: "paused";
2924-
failed: "failed";
29252924
cancelled: "cancelled";
2925+
paused: "paused";
29262926
timed_out: "timed_out";
29272927
retrying: "retrying";
29282928
}>>;
@@ -3508,10 +3508,10 @@ type WaitEventType = z.input<typeof WaitEventTypeSchema>;
35083508
// ── WaitEventTypeSchema (const) ──
35093509
declare const WaitEventTypeSchema: z.ZodEnum<{
35103510
condition: "condition";
3511+
manual: "manual";
3512+
webhook: "webhook";
35113513
timer: "timer";
35123514
signal: "signal";
3513-
webhook: "webhook";
3514-
manual: "manual";
35153515
}>;
35163516

35173517
// ── WaitExecutorConfig (type) ──
@@ -3525,8 +3525,8 @@ declare const WaitExecutorConfigSchema: z.ZodObject<{
35253525
defaultTimeoutMs: z.ZodDefault<z.ZodNumber>;
35263526
defaultTimeoutBehavior: z.ZodDefault<z.ZodEnum<{
35273527
continue: "continue";
3528-
fallback: "fallback";
35293528
fail: "fail";
3529+
fallback: "fallback";
35303530
}>>;
35313531
conditionPollIntervalMs: z.ZodDefault<z.ZodNumber>;
35323532
conditionMaxPolls: z.ZodDefault<z.ZodNumber>;
@@ -3545,10 +3545,10 @@ declare const WaitResumePayloadSchema: z.ZodObject<{
35453545
nodeId: z.ZodString;
35463546
eventType: z.ZodEnum<{
35473547
condition: "condition";
3548+
manual: "manual";
3549+
webhook: "webhook";
35483550
timer: "timer";
35493551
signal: "signal";
3550-
webhook: "webhook";
3551-
manual: "manual";
35523552
}>;
35533553
signalName: z.ZodOptional<z.ZodString>;
35543554
webhookPayload: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
@@ -3563,8 +3563,8 @@ type WaitTimeoutBehavior = z.input<typeof WaitTimeoutBehaviorSchema>;
35633563
// ── WaitTimeoutBehaviorSchema (const) ──
35643564
declare const WaitTimeoutBehaviorSchema: z.ZodEnum<{
35653565
continue: "continue";
3566-
fallback: "fallback";
35673566
fail: "fail";
3567+
fallback: "fallback";
35683568
}>;
35693569

35703570
// ── Webhook (type) ──

0 commit comments

Comments
 (0)