From b61a27b578b2c1766858f224c02e58fc5fbee94e Mon Sep 17 00:00:00 2001 From: absidue <48293849+absidue@users.noreply.github.com> Date: Sat, 4 Jan 2025 03:24:32 +0100 Subject: [PATCH] Add missing IPC constants (#6509) --- src/constants.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/constants.js b/src/constants.js index c21ace4448a8c..f13891fb57271 100644 --- a/src/constants.js +++ b/src/constants.js @@ -88,6 +88,7 @@ const SyncEvents = { CREATE: 'sync-create', UPSERT: 'sync-upsert', DELETE: 'sync-delete', + DELETE_MULTIPLE: 'sync-delete-multiple', DELETE_ALL: 'sync-delete-all' }, @@ -104,6 +105,7 @@ const SyncEvents = { PLAYLISTS: { UPSERT_VIDEO: 'sync-playlists-upsert-video', + UPSERT_VIDEOS: 'sync-playlists-upsert-videos', DELETE_VIDEO: 'sync-playlists-delete-video', },