@byu-oit/vue-decision-processing-components 8.28.2 → 8.28.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [8.28.3](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.28.2...v8.28.3) (2022-08-01)
6
+
5
7
  ### [8.28.2](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.28.1...v8.28.2) (2022-07-26)
6
8
 
7
9
 
@@ -71,16 +71,21 @@ export default {
71
71
  }
72
72
  try {
73
73
  const q = new URLSearchParams()
74
- q.append('studentId', personId)
75
- q.append('category', 'CESADM')
76
- q.append('sortAscending', 'true')
74
+ q.append('incidents', 'false')
75
+ q.append('tasks', 'false')
76
+ q.append('messages', 'false')
77
+ q.append('appointments', 'false')
77
78
  q.append('page', '0')
79
+ q.append('categoryId', 'CESADM')
80
+ q.append('sortAscending', 'true')
78
81
  q.append('results', '100')
79
- const url = `https://api.byu.edu:443/domains/ymessage/v4/filenotes?${q.toString()}`
82
+ const url = `https://api.byu.edu:443/domains/ymessage-archive/1.0/student-overview/${person_id}?${q.toString()}`
83
+
80
84
  const headers = {
81
85
  'accept': 'application/json'
82
86
  }
83
87
  const { body, status } = await window.byu.auth.request({ url, headers })
88
+
84
89
  if (status >= 400) {
85
90
  console.error(Error(`Unable to load filenotes! Error code ${status}`))
86
91
  this.error = true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byu-oit/vue-decision-processing-components",
3
- "version": "8.28.2",
3
+ "version": "8.28.3",
4
4
  "description": "Vue components shared between decision processing systems for the CES schools.",
5
5
  "dependencies": {
6
6
  "@fortawesome/fontawesome-free": "^5.15.4",