@byu-oit/vue-decision-processing-components 8.32.3 → 8.32.4

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.32.4](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.32.3...v8.32.4) (2023-03-03)
6
+
5
7
  ### [8.32.3](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.32.2...v8.32.3) (2022-12-21)
6
8
 
7
9
 
package/SupportDialog.vue CHANGED
@@ -76,8 +76,8 @@ export default {
76
76
  institution: state => state.ui.institution
77
77
  }),
78
78
  ...mapGetters(['loading']),
79
- host () {
80
- return this.env === 'development' ? 'api-sandbox.byu.edu' : 'api.byu.edu'
79
+ baseUrl () {
80
+ return this.env === 'development' ? 'https://api-sandbox.byu.edu' : 'https://api.byu.edu'
81
81
  },
82
82
  institutionSvc () {
83
83
  switch (this.institution) {
@@ -89,6 +89,8 @@ export default {
89
89
  return 'byuh'
90
90
  case ('BYUI'):
91
91
  return 'byui'
92
+ case ('BYUDCE'):
93
+ return 'byudce'
92
94
  default:
93
95
  return ''
94
96
  }
@@ -117,8 +119,9 @@ export default {
117
119
  short_description: this.shortDescription,
118
120
  description: [this.description.trim(), '\n', callerId, location.href].join('\n')
119
121
  }
122
+ const service = this.institutionSvc === 'byudce' ? 'byudce/clearance' : `${this.institutionSvc}/admission`
120
123
  const options = {
121
- url: `https://${this.host}/domain/applications/${this.institutionSvc}/admission/v1/proxy/incident`,
124
+ url: `${this.baseUrl}/domain/applications/${service}/v1/proxy/incident`,
122
125
  method: 'POST',
123
126
  headers: {
124
127
  'Content-Type': 'application/json',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byu-oit/vue-decision-processing-components",
3
- "version": "8.32.3",
3
+ "version": "8.32.4",
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",