From 267320bc563c04395c7e0c57a89db901f5ea8bcc Mon Sep 17 00:00:00 2001 From: Michael C Date: Thu, 31 Mar 2022 03:47:25 -0400 Subject: [PATCH] add filler and exclusive_access to category enum --- src/types/segments.model.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/segments.model.ts b/src/types/segments.model.ts index 5edb3e0..c4aa23e 100644 --- a/src/types/segments.model.ts +++ b/src/types/segments.model.ts @@ -5,7 +5,7 @@ import { HashedUserID, UserID } from "./user.model"; export type SegmentUUID = string & { __segmentUUIDBrand: unknown }; export type VideoID = string & { __videoIDBrand: unknown }; export type VideoDuration = number & { __videoDurationBrand: unknown }; -export type Category = ("sponsor" | "selfpromo" | "interaction" | "intro" | "outro" | "preview" | "music_offtopic" | "poi_highlight" | "chapter") & { __categoryBrand: unknown }; +export type Category = ("sponsor" | "selfpromo" | "interaction" | "intro" | "outro" | "preview" | "music_offtopic" | "poi_highlight" | "chapter" | "filler" | "exclusive_access") & { __categoryBrand: unknown }; export type VideoIDHash = VideoID & HashedValue; export type IPAddress = string & { __ipAddressBrand: unknown }; export type HashedIP = IPAddress & HashedValue;