@byu-oit/vue-decision-processing-components 8.31.0 → 8.32.1
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 +10 -0
- package/DetailsCesHold.vue +4 -1
- package/SupportDialog.vue +0 -2
- package/package.json +1 -1
- package/vuexModules/packet/flags.js +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
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.32.1](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.32.0...v8.32.1) (2022-12-06)
|
|
6
|
+
|
|
7
|
+
## [8.32.0](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.31.0...v8.32.0) (2022-12-02)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* add pw flags ([da42f88](https://github.com/byu-oit/vue-decision-processing-components/commit/da42f887ff210b6687c9a3d49b2d94c22595f776))
|
|
13
|
+
* add pw flags ([b0a147c](https://github.com/byu-oit/vue-decision-processing-components/commit/b0a147c85732ae8ad697f02d3bb113c76dfff802))
|
|
14
|
+
|
|
5
15
|
## [8.31.0](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.30.1...v8.31.0) (2022-12-01)
|
|
6
16
|
|
|
7
17
|
|
package/DetailsCesHold.vue
CHANGED
|
@@ -62,6 +62,7 @@
|
|
|
62
62
|
},
|
|
63
63
|
computed: {
|
|
64
64
|
...mapState({
|
|
65
|
+
env: 'environment',
|
|
65
66
|
applicantId: state => state.application.applicantId
|
|
66
67
|
}),
|
|
67
68
|
spinner () { return faSpinner },
|
|
@@ -76,7 +77,9 @@
|
|
|
76
77
|
return
|
|
77
78
|
}
|
|
78
79
|
try {
|
|
79
|
-
const url =
|
|
80
|
+
const url = this.env !== 'development'
|
|
81
|
+
? `https://api.byu.edu/recordsYAPI/v1.0/student/byuId/${applicantId.trim()}/CESflagsHolds`
|
|
82
|
+
: `https://api-sandbox.byu.edu/recordsYAPI/v1.0/student/byuId/${applicantId.trim()}/CESflagsHolds`
|
|
80
83
|
const { body, status } = await window.byu.auth.request({ url })
|
|
81
84
|
if (status >= 400) {
|
|
82
85
|
this.error = true
|
package/SupportDialog.vue
CHANGED
|
@@ -112,8 +112,6 @@ export default {
|
|
|
112
112
|
const callerId = netId ?? `${preferredFirstName} ${surname}`
|
|
113
113
|
// const serializedState = btoa(JSON.stringify(this.$store.state))
|
|
114
114
|
const body = {
|
|
115
|
-
service_offering: 'CES Admissions Application',
|
|
116
|
-
assignment_group: 'OIT-SpecOps Student Admin',
|
|
117
115
|
priority: '4',
|
|
118
116
|
caller_id: callerId,
|
|
119
117
|
short_description: this.shortDescription,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byu-oit/vue-decision-processing-components",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.32.1",
|
|
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",
|
|
@@ -156,8 +156,12 @@ export const flagValueToName = value => {
|
|
|
156
156
|
return 'Low Academics Test Score'
|
|
157
157
|
case 'NFNG':
|
|
158
158
|
return 'NF Not Graduating'
|
|
159
|
+
case 'NOHS':
|
|
160
|
+
return 'Under 18 No High School Completion'
|
|
159
161
|
case 'NSE':
|
|
160
162
|
return 'No Secondary Education'
|
|
163
|
+
case 'PD':
|
|
164
|
+
return 'Previously Denied'
|
|
161
165
|
case 'UA':
|
|
162
166
|
return 'Underage Applicant'
|
|
163
167
|
case 'UNASSIGNED':
|