@byuhbll/components 7.4.3 → 7.4.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.
@@ -1052,7 +1052,7 @@ class HbllFooterComponent {
1052
1052
  this.footerSkipTargetId = 'hbllChatBtn';
1053
1053
  // TODO: Convert these to signal inputs: https://github.com/angular/angular/issues/57755
1054
1054
  this.mainsitebaseurl = 'https://lib.byu.edu';
1055
- this.myaccountapibaseuri = 'https://api.lib.byu.edu/v1';
1055
+ this.myaccountapibaseuri = 'https://apps.lib.byu.edu/my-account-api/v1';
1056
1056
  this.byuid = '';
1057
1057
  this.date = new Date();
1058
1058
  this.isSubmitted = false;
@@ -1231,7 +1231,7 @@ class ImpersonationBannerComponent {
1231
1231
  this.http = inject(HttpClient);
1232
1232
  this.accessTokenPayload = input.required(...(ngDevMode ? [{ debugName: "accessTokenPayload" }] : []));
1233
1233
  this.personBaseUri = input('https://apps.lib.byu.edu/person/v2/', ...(ngDevMode ? [{ debugName: "personBaseUri" }] : []));
1234
- this.myAccountApiBaseUri = input('https://api.lib.byu.edu/v1', ...(ngDevMode ? [{ debugName: "myAccountApiBaseUri" }] : []));
1234
+ this.myAccountApiBaseUri = input('https://apps.lib.byu.edu/my-account-api/v1', ...(ngDevMode ? [{ debugName: "myAccountApiBaseUri" }] : []));
1235
1235
  this.endImpersonation = new EventEmitter();
1236
1236
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
1237
1237
  this.parsedToken = computed(() => this.accessTokenPayload().token ? jwtDecode(this.accessTokenPayload().token) : {}, ...(ngDevMode ? [{ debugName: "parsedToken" }] : []));
@@ -1911,7 +1911,7 @@ class HeaderWithImpersonationComponent {
1911
1911
  this.oidcDefaultIdp = input(defaultOidcDefaultIdp, ...(ngDevMode ? [{ debugName: "oidcDefaultIdp" }] : []));
1912
1912
  this.mainSiteBaseUrl = input('https://lib.byu.edu', ...(ngDevMode ? [{ debugName: "mainSiteBaseUrl" }] : []));
1913
1913
  this.personBaseUri = input('https://apps.lib.byu.edu/person/v2/', ...(ngDevMode ? [{ debugName: "personBaseUri" }] : []));
1914
- this.myAccountApiBaseUri = input('https://api.lib.byu.edu/v1', ...(ngDevMode ? [{ debugName: "myAccountApiBaseUri" }] : []));
1914
+ this.myAccountApiBaseUri = input('https://apps.lib.byu.edu/my-account-api/v1', ...(ngDevMode ? [{ debugName: "myAccountApiBaseUri" }] : []));
1915
1915
  this.login = new EventEmitter();
1916
1916
  this.logout = new EventEmitter();
1917
1917
  this.endImpersonation = new EventEmitter();