From 3d1cd02f27518f1a04374c7c8320cd5d82ede6e9 Mon Sep 17 00:00:00 2001
From: Minteck <contact@minteck.org>
Date: Thu, 23 Feb 2023 19:34:56 +0100
Subject: Updated 40 files, added 37 files, deleted 1103 files and renamed 3905
 files (automated)

---
 school/node_modules/pronote-api/src/errors.js | 30 ---------------------------
 1 file changed, 30 deletions(-)
 delete mode 100644 school/node_modules/pronote-api/src/errors.js

(limited to 'school/node_modules/pronote-api/src/errors.js')

diff --git a/school/node_modules/pronote-api/src/errors.js b/school/node_modules/pronote-api/src/errors.js
deleted file mode 100644
index 5bb6e17..0000000
--- a/school/node_modules/pronote-api/src/errors.js
+++ /dev/null
@@ -1,30 +0,0 @@
-const PRONOTE = error(-1, ({ title, message }) => title + (title && message ? ' - ' : '') + message);
-const UNKNOWN_CAS = error(1, cas => `Unknown CAS '${cas}' (use 'none' for no CAS)`);
-const BANNED = error(2, 'Your IP address is temporarily banned because of too many failed authentication attempts');
-const WRONG_CREDENTIALS = error(3, 'Wrong user credentials');
-const UNKNOWN_ACCOUNT = error(4, typeAccount => `Unknown account type '${typeAccount}'`);
-const SESSION_EXPIRED = error(5, 'Session has expired due to inactivity or error');
-const RATE_LIMITED = error(6, 'You are being rate limited because of too many failed requests');
-const CLOSED = error(7, 'The instance is closed, try again later');
-
-function error(code, message)
-{
-    return {
-        code,
-        drop: (...args) => ({
-            code,
-            message: typeof message === 'string' ? message : message(...args)
-        })
-    }
-}
-
-module.exports = {
-    PRONOTE,
-    UNKNOWN_CAS,
-    BANNED,
-    WRONG_CREDENTIALS,
-    UNKNOWN_ACCOUNT,
-    SESSION_EXPIRED,
-    RATE_LIMITED,
-    CLOSED
-};
-- 
cgit