From e1279a0be3c533c11563c02a0e3f36ccb5012707 Mon Sep 17 00:00:00 2001 From: mattkdoggie <95995256+mattkdoggie@users.noreply.github.com> Date: Wed, 19 Apr 2023 14:35:51 -0600 Subject: [PATCH] Update types.ts --- src/lib/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/types.ts b/src/lib/types.ts index f600c72..bfacd61 100644 --- a/src/lib/types.ts +++ b/src/lib/types.ts @@ -5,7 +5,7 @@ import type { BlogPost } from "floatplane/creator"; type ChannelIdentifier = { check: string; - type: keyof BlogPost | "description" | "runtimeLessThan" | "runtimeGreaterThan" | "channelId"; + type: keyof BlogPost | "description" | "runtimeLessThan" | "runtimeGreaterThan" | "channelId" | "releasedBefore" | "releasedAfter"; }; export type ChannelOptions = { title: string;