From d3694816fd371bd3a2ab23bb3c8ee1d8399815a9 Mon Sep 17 00:00:00 2001 From: Tzipi-kaltura Date: Thu, 5 Sep 2024 10:36:53 +0300 Subject: [PATCH] fix(SUP-43014): [elearning] specified error message for v7 for IP restriction --- src/error/category.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/error/category.ts b/src/error/category.ts index 1c7cd363..3f351423 100644 --- a/src/error/category.ts +++ b/src/error/category.ts @@ -41,7 +41,10 @@ const Category: CategoryType = { GEO_LOCATION: 13, /** Media is unavailable error. */ - MEDIA_UNAVAILABLE: 14 + MEDIA_UNAVAILABLE: 14, + + /** IP restriction error. */ + IP_RESTRICTED: 15 }; export {Category};