js v1.2.0
Features
PIN and security methods has been fully implemented in auth flow, learn more in #56.
Please check the examples
to see how to implement it in your project.
A new feature of PRONOTE v2024 has been implemented in Pawnote which are comments on grades, learn more in #42.
Thanks to @Gabriel29306 for implementing this feature !
Fixes
An error could be thrown in timetable decoders when the date provided is invalid and no ListeCours
is present.
- fix(decoders):
ListeCours
can beundefined
if date not valid (50c6bda)
Invalid properties were passed to the timetable request for the intervals method only, it has been fixed and properties are now correct.
- fix(timetable): encode date properly on intervals (f3851f7)
When a domain was empty ([]
) it would output [NaN]
because of a for
-loop issue.
It has been fixed and is now returning []
properly.
- fix(domain): return empty array when empty domain (d72de26)