toga-ai 1.0.337 → 1.0.338

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.
@@ -6,7 +6,7 @@
6
6
  | [Cart Bundle Submission & the bundleUuid Identity Contract](features/cart-bundle-submission-and-identity.md) | How cart **bundles** (kits) are turned into `SalesOrderItems` when a cart is submitted or an existing order is edited, and the **identity-field contract** every | src/api/syncSalesOrderItemsFromLocalStorageCartToApi.ts, src/utils/formatSalesOrderBundlesFromApi.ts, src/stores/useCartStoreZu.ts, src/pages/OrderDetails/helpers/formatSalesOrderDataFromLocalStorage.ts, src/pages/OrderDetails/view/components/OrderItems.tsx |
7
7
  | [Cart Notification Emails — duplicate prevention](features/cart-notification-emails.md) | On the cart "Notifications" section a user can add CC email addresses to an order. | src/pages/Cart/CartPage.tsx, src/pages/Cart/view/cartForm/CartForm.tsx, src/stores/useEmailOptionsStore.ts, src/stores/useCartSalesQuoteZu.ts, src/pages/Cart/viewModel/FIELDS/*/*/*/CARTPAGE.ts |
8
8
  | [Cart Page — config-driven form architecture (current state + planned refactor)](features/cart-page-config-architecture.md) | The Cart page (`src/pages/Cart/`) is the most config-heavy page in `toga2-commerce`. | src/pages/Cart/CartPage.tsx, src/pages/Cart/view/cartForm/CartForm.tsx, src/pages/Cart/view/cartForm/CartFormSection.tsx, src/pages/Cart/view/cartForm/CartFormRenderer.tsx, src/pages/Cart/view/EditCart.tsx, src/pages/Cart/view/EditOrder.tsx, src/pages/Cart/viewModel/useEditOrderOrEditCartViewModel.ts, src/pages/Cart/viewModel/FIELDS/*/*/*/CARTPAGE.ts, src/hooks/useAssignClientFields.ts |
9
- | [Client Fields — per-tenant / language / role content & config](features/client-fields.md) | Almost no user-facing text, field layout, or page config is hard-coded in `toga2-commerce`. | src/fieldsConfig/index.ts, src/fieldsConfig/getClientLoginFields.ts, src/fieldsConfig/clientFields/COMPASS.json, src/fieldsConfig/clientFields/COMPASSCANADA.json, src/fieldsConfig/clientFields/QUAD.json, src/pages/Cart/api/CartApi.ts, src/hooks/useAssignClientFields.ts, src/hooks/useDynamicConditionalFieldOptions.ts, src/stores/useFieldsStore.ts, src/components/BaseDetailField/BaseDetailField.tsx |
9
+ | [Client Fields — per-tenant / language / role content & config](features/client-fields.md) | Almost no user-facing text, field layout, or page config is hard-coded in `toga2-commerce`. | src/fieldsConfig/index.ts, src/fieldsConfig/getClientLoginFields.ts, src/fieldsConfig/clientFields/COMPASS.json, src/fieldsConfig/clientFields/COMPASSCANADA.json, src/fieldsConfig/clientFields/QUAD.json, src/pages/Cart/api/CartApi.ts, src/hooks/useAuthenticationFlow.ts, src/contexts/AuthContext.tsx, src/pages/Login/viewModel/useLoginPageViewModel.ts, src/hooks/useAssignClientFields.ts, src/hooks/useDynamicConditionalFieldOptions.ts, src/stores/useFieldsStore.ts, src/components/BaseDetailField/BaseDetailField.tsx |
10
10
  | [Config-Driven Expedited Shipping Gating (Cart)](features/expedited-shipping-gating.md) | On the toga2-commerce **Cart** page, expedited shipping options (**"2nd Day EOB"** and **"Next Day Air"**) are only offered in the *Shipping Method* dropdown wh | toga2-commerce/src/pages/Cart/helpers/shippingOptionGates.ts, toga2-commerce/src/pages/Cart/viewModel/FIELDS/shared/shippingOptionGates.ts, toga2-commerce/src/pages/Cart/view/cartForm/CartForm.tsx, toga2-commerce/src/pages/Cart/CartPage.tsx |
11
11
  | [Multi-Tenant Resolution & Theming](features/multi-tenant-theming.md) | `toga2-commerce` serves multiple clients from one codebase. | src/themeConfig/themes.json, src/themeConfig/ThemeContext.tsx, src/themeConfig/types.ts, src/components/ThemeSwitcher/ThemeSwitcher.tsx, src/components/AuthLayout/AuthLayout.tsx, src/api/axiosInstance.ts, src/contexts/AuthContext.tsx, tailwind.config.js |
12
12
  | [AWS Amplify Build & Deploy (non-prod environments)](workflows/amplify-build-and-deploy.md) | How `toga2-commerce` (React + Vite, "commerce2-react") builds and deploys on **AWS Amplify**. | toga2-commerce/amplify.yml, toga2-commerce/.gitattributes, toga2-commerce/package.json, toga2-commerce/.github/workflows/sync-stage-environments.yml |
@@ -6,7 +6,7 @@ project: TOGa Commerce
6
6
  client: shared
7
7
  type: feature
8
8
  status: active
9
- updated: 2026-07-10
9
+ updated: 2026-07-14
10
10
  owners: ["apeterson", "tcox"]
11
11
  files:
12
12
  - src/fieldsConfig/index.ts
@@ -15,6 +15,9 @@ files:
15
15
  - src/fieldsConfig/clientFields/COMPASSCANADA.json
16
16
  - src/fieldsConfig/clientFields/QUAD.json
17
17
  - src/pages/Cart/api/CartApi.ts
18
+ - src/hooks/useAuthenticationFlow.ts
19
+ - src/contexts/AuthContext.tsx
20
+ - src/pages/Login/viewModel/useLoginPageViewModel.ts
18
21
  - src/hooks/useAssignClientFields.ts
19
22
  - src/hooks/useDynamicConditionalFieldOptions.ts
20
23
  - src/stores/useFieldsStore.ts
@@ -53,7 +56,11 @@ resolved per tenant, per language, and per role**. There are **two layers**:
53
56
  QUAD are `false`.
54
57
  - `userApiFields` — the allow-list of user columns fetched at login; importantly it includes the
55
58
  tenant's **role flags**: COMPASS/COMPASSCANADA carry `_isAdmin`, `_isSupervisor`, `_isSuperAdmin`;
56
- QUAD carries `_isGlobalAdmin`, `_isItShopper`, `_isBuyer`. All include `_personaIds`.
59
+ QUAD carries `_isGlobalAdmin`, `_isItShopper`, `_isBuyer`. All include `_personaIds`. This key is
60
+ now the **single source** for every auth-flow user fetch: `AuthContext.tsx`,
61
+ `useLoginPageViewModel.ts`, and `useAuthenticationFlow.ts` (the SAML post-auth fetch) all resolve
62
+ it via `getClientLoginFields(host).userApiFields` — there is no longer any hardcoded copy of the
63
+ user field list anywhere in the app (see the `useAuthenticationFlow` note below).
57
64
  - `fetchUsersApiFields` — the allow-list of user columns fetched by the **view-as user search**
58
65
  (`fetchUsers()` in `src/pages/Cart/api/CartApi.ts`, driven from `NavIconList.tsx`). Distinct from
59
66
  `userApiFields` (which is the login fetch). COMPASS/COMPASSCANADA use the 14-field default list;
@@ -79,6 +86,23 @@ touching Cart code.
79
86
  same hardcoded QUAD-vs-default field-list pattern and is a candidate for the identical config
80
87
  treatment in a future ticket.
81
88
 
89
+ ### `userApiFields` and the SAML post-auth fetch (`useAuthenticationFlow`)
90
+
91
+ `src/hooks/useAuthenticationFlow.ts` no longer hardcodes the user field list for the SAML post-auth
92
+ user fetch. It previously carried an `if (hostNameCode === "QUAD") […] else […]` branch whose two
93
+ lists were **exact element-for-element duplicates** (same order) of the `userApiFields` already in
94
+ `COMPASS.json` / `COMPASSCANADA.json` / `QUAD.json`. It now resolves the list via
95
+ `getClientLoginFields(hostNameCode).userApiFields` — no JSON changes were needed. This is the same
96
+ "config, not `if (client === …)` branches" centralization as the `fetchUsersApiFields`/C6 refactor
97
+ above (sibling ticket TRUE-80015 did the identical treatment for `fetchUsers()` in `CartApi.ts`;
98
+ `useAuthenticationFlow` was TRUE-80017). With this change, `useAuthenticationFlow` was the **last
99
+ remaining hardcoded duplicate** of the user field list — `AuthContext.tsx` and
100
+ `useLoginPageViewModel.ts` already consumed config — so all user-field lists in the app now flow
101
+ through `getClientLoginFields`. Behavior-identical for all tenants, `tsc` clean.
102
+
103
+ Note: **COMPASSCANADA** previously fell into the generic `else` branch and now resolves to its own
104
+ `COMPASSCANADA.json` (currently identical content to COMPASS — a future divergence point).
105
+
82
106
  ## Layer B — the per-page FIELDS registry
83
107
 
84
108
  `src/fieldsConfig/index.ts` (~1100 lines) imports every page's per-tenant field constants (which
@@ -219,4 +243,10 @@ Common field attributes: `uuid`, `label`, `valueKey` (path into the data object)
219
243
  QUAD = 8-field), replacing the `if (fieldKey === "QUAD")` branch with a config lookup (C6). Noted
220
244
  the deliberate QUAD `supervisorUser.*` omission and the `fetchUser()` follow-up candidate. Refactor
221
245
  only, no behavior change; `tsc --noEmit` clean. (tcox)
246
+ - 2026-07-14 — Removed the last hardcoded user-field list: `useAuthenticationFlow.ts` (SAML post-auth
247
+ fetch) now reads `getClientLoginFields(hostNameCode).userApiFields` instead of an
248
+ `if (hostNameCode === "QUAD") … else …` duplicate of the JSON lists (TRUE-80017; sibling of the
249
+ TRUE-80015 `fetchUsers` refactor). All user-field lists now flow through config;
250
+ COMPASSCANADA now resolves its own JSON rather than the generic `else`. Behavior-identical, `tsc`
251
+ clean. (tcox)
222
252
  </content>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "toga-ai",
3
- "version": "1.0.337",
3
+ "version": "1.0.338",
4
4
  "description": "TOGA Technology Team Claude Knowledge System — shared AI coding harness with skills, knowledge base CLI, and project installer for Claude Code.",
5
5
  "keywords": [
6
6
  "claude",