Revised Client
All checks were successful
Client Client / build-deploy (push) Successful in 23s

This commit is contained in:
Grae Jones
2026-03-22 07:56:38 -07:00
parent e2ad8769ec
commit dcb510e28c
2 changed files with 6 additions and 6 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1,19 +1,19 @@
// ─── Entra External ID (CIAM for third-party logins) ─── // ─── Entra External ID (CIAM for third-party logins) ───
const TENANT_ID = '891f98f1-ed34-42a1-9b6c-28b0554d92c2'; const TENANT_ID = '891f98f1-ed34-42a1-9b6c-28b0554d92c2';
const CLIENT_ID = '154c9111-14a0-4c0f-8132-7bc68254a74e'; const CLIENT_ID = '154c9111-14a0-4c0f-8132-7bc68254a74e';
const AUTHORITY = `https://USIMClients.ciamlogin.com/${TENANT_ID}`; const AUTHORITY = `https://PositiveSpendClients.ciamlogin.com/${TENANT_ID}`;
// ─── Gateway API ─── // ─── Gateway API ───
export const GATEWAY_URL = 'https://adpapi.usimdev.com'; export const GATEWAY_URL = 'https://portal.positivespend.com';
// ─── Management API (used by HelpIcon for contextual help content) ─── // ─── Management API (used by HelpIcon for contextual help content) ───
export const MANAGEMENT_URL = 'https://adpmgmt.usimdev.com'; export const MANAGEMENT_URL = 'https://mgmt.positivespend.com';
// ─── Session endpoint ─── // ─── Session endpoint ───
export const SESSION_ENDPOINT = `${GATEWAY_URL}/api/auth/session`; export const SESSION_ENDPOINT = `${GATEWAY_URL}/api/auth/session`;
// ─── Registration portal ─── // ─── Registration portal ───
export const REGISTRATION_URL = 'https://adpregist.usimdev.com'; export const REGISTRATION_URL = 'https://regapi.positivespend.com';
// ─── MSAL configuration ─── // ─── MSAL configuration ───
export const msalConfig = { export const msalConfig = {
@@ -22,7 +22,7 @@ export const msalConfig = {
authority: AUTHORITY, authority: AUTHORITY,
redirectUri: window.location.origin, redirectUri: window.location.origin,
postLogoutRedirectUri: window.location.origin, postLogoutRedirectUri: window.location.origin,
knownAuthorities: ['USIMClients.ciamlogin.com'], knownAuthorities: ['PositiveSpendClients.ciamlogin.com'],
navigateToLoginRequestUrl: true navigateToLoginRequestUrl: true
}, },
cache: { cache: {