Step 3 + Review

This commit is contained in:
Tyler Yust
2026-01-19 18:39:56 -08:00
committed by Peter Steinberger
parent e9d691d472
commit 7870ce8177
11 changed files with 1462 additions and 17 deletions

View File

@@ -80,7 +80,9 @@ export function buildCronPayload(form: CronFormState) {
| "discord"
| "slack"
| "signal"
| "imessage";
| "imessage"
| "msteams"
| "bluebubbles";
to?: string;
timeoutSeconds?: number;
} = { kind: "agentTurn", message };

View File

@@ -332,7 +332,8 @@ export type CronPayload =
| "slack"
| "signal"
| "imessage"
| "msteams";
| "msteams"
| "bluebubbles";
to?: string;
bestEffortDeliver?: boolean;
};

View File

@@ -28,7 +28,8 @@ export type CronFormState = {
| "slack"
| "signal"
| "imessage"
| "msteams";
| "msteams"
| "bluebubbles";
to: string;
timeoutSeconds: string;
postToMainPrefix: string;

View File

@@ -88,7 +88,7 @@ function resolveChannelOrder(snapshot: ChannelsStatusSnapshot | null): ChannelKe
if (snapshot?.channelOrder?.length) {
return snapshot.channelOrder;
}
return ["whatsapp", "telegram", "discord", "slack", "signal", "imessage"];
return ["whatsapp", "telegram", "discord", "slack", "signal", "imessage", "bluebubbles"];
}
function renderChannel(

View File

@@ -199,6 +199,7 @@ export function renderCron(props: CronProps) {
<option value="signal">Signal</option>
<option value="imessage">iMessage</option>
<option value="msteams">MS Teams</option>
<option value="bluebubbles">BlueBubbles</option>
</select>
</label>
<label class="field">