Skip to content

v1.0.0-rc.3

Latest
Compare
Choose a tag to compare
@ecxyzzy ecxyzzy released this 04 Sep 04:38
· 61 commits to main since this release

What's Changed

[BREAKING CHANGE] Normalized Section Meeting/Final Exam Times GA

When querying the WebSoc endpoint, section meeting and final exam times will be returned as structured data, in the following format:

"meetings": [
  {
    "timeIsTBA": false,
    "bldg": ["ON LINE"],
    "days": "WF",
    "startTime": { "hour": 10, "minute": 0 },
    "endTime": { "hour": 10, "minute": 50 }
  },
  {
    "timeIsTBA": false,
    "bldg": ["ALP 1300"],
    "days": "M",
    "startTime": { "hour": 10, "minute": 0 },
    "endTime": { "hour": 10, "minute": 50 }
  }
],
"finalExam": {
  "examStatus": "SCHEDULED_FINAL",
  "dayOfWeek": "Sat",
  "month": 5,
  "day": 10,
  "startTime": { "hour": 13, "minute": 30 },
  "endTime": { "hour": 15, "minute": 30 },
  "bldg": ["HIB 100"]
},

For more examples of the new meetings and finalExam fields, check out the documentation here.

Please do note that this is a breaking change. If you require assistance migrating from v1.0.0-rc.2 and previous versions, please don't hesitate to reach out on our Discord in the #api-help channel.

Full Changelog: v1.0.0-rc.2...v1.0.0-rc.3