POSService의 엔터프라이즈 검증
- createRetailOrder : 요청에 대한 null 체크 - createLineItem: null, 수량 > 0, 단가 >= 0 유효성 검사
Enterprise-grade POS UI and API
- posApi: POSApiError class, fetchWithError, structured error handling - useToast + POSToast: centralized snackbar for success/error feedback - posUtils: format...
POS domain config, retail order line items, dynamic pipeline tabs
- Add getPOSConfig/updatePOSConfig to posApi, posDomainLabels utility - Extend createOrder with lineItems, add getOrder, RetailOrderLineItem type - PipelineOrde...
Resolve Map type inference in POS controllers for CI compilation
- Use explicit Map<String, Object> in ResponseEntity Map.of() calls - Fixes 'incompatible types: inference variable V has incompatible bounds' when mixing DTO...
Add POS controllers for retail products, inventory, and orders
- RetailProductController: CRUD for products - RetailInventoryController: inventory stock management - POSController: orders and mortgage applications
DataLoader IOException import and mock lead assignment FK errors
- Add missing java.io.IOException import for copyJavaEnumsToNextJS - Use saveLead instead of saveLeadWithAssignment for mock data to avoid lead_assignments FK...
POS/inventory 도메인 entities, DTOs, 저장소 및 서비스 추가
- POS 콩 추가 (리테일, 대여, 모기지, 구독, 공급 업체) - RetailProduct, RetailInventoryStock, RetailOrder, MortgageApp DTOs 추가 - RetailProductService, RetailInventoryStockService...
POS restructure: API via APIService, Settings for admin, Pipeline for users
- API proxy: POS requests forward to APIService (relays to SecurityService) - Settings: New POS System section under main settings + /settings/features/pos - PO...
Update Traefik routes: themes.* assets now only load from k1m1 minio instead of balancing across k0m1, k1m1, and k2m1
Merge pull request #4006 from ****************
feat: add SKIP_BUILD_GEO env variable
Use i18n for board component strings, show controls in edit mode, require website before editing
- Replace raw strings with useMessages hook in BoardColumn and BoardComponentSelect - Show WebsiteControls on edit screen so users can test filters - Disable bo...
Add board component selector with live preview
Allows users to select and inject analytics components into board cells. Includes component registry, renderer, selector modal with category menu, config fields...
Add Web Vitals performance tracking (LCP, INP, CLS, FCP, TTFB)
End-to-end performance metrics tracking: dedicated database table with percentile aggregation, tracker collection behind data-perf attribute, /api/send handling...
Fix team boards not appearing after creation
Board creation from team context was not passing teamId to the API, causing boards to be saved as personal boards instead of team boards.
Add UserButton to SideNav, refactor NavButton into TeamsButton
- Create UserButton component at bottom of SideNav with Settings, Language, Theme, Admin, and Logout menu items - Move **************** out of NavButton into ...
Translate all 51 locale files, reducing untranslated keys from 6,017 to 862.
12 batch translation scripts covering all language families: East Asian, Romance, Germanic, Nordic, Slavic, Other European, South/Southeast Asian, Tamil, Sinhal...
Add 46 missing translation keys to all locale files.
These keys existed in messages.ts but were missing from the JSON files, previously relying on react-intl defaultMessage fallback.
Simplify i18n: remove old react-intl artifacts, rename formatMessage to t, replace FormattedMessage with t.rich().
- Rewrite messages.ts to plain string key maps (remove MessageDescriptor) - Rewrite useMessages hook to expose t from useTranslations() directly - Rename format...
Fix website reports route type error and pass teamId to board WebsiteSelect.
Remove invalid 3rd parameter from GET handler and parse report type from query params instead. Pass teamId to WebsiteSelect in BoardEditHeader so it shows team ...
Replace react-intl with next-intl and consolidate lang files.
Migrate i18n from react-intl to next-intl, eliminating the formatjs compilation pipeline. Translation files now live as nested JSON in public/intl/messages/ (si...
Rename session recording to session replay across the codebase.
Renames all files, components, database schema, API routes, hooks, messages, and build config from "recording" to "replay" terminology.
Rrweb 기반 세션 레코딩 기능을 추가합니다.
DOM 캡처 및 rrweb-player에 대한 rrweb로 전체 세션 레코딩 구현 재생을 위해. 포함 : SessionRecording 모델 Prisma schema, chunked gzip-compressed 저장, 롤업을 통해 내장 된 레코더 스크립트, 수집 API endpoint,...
오래된 CSS 변수를 새로운 react-zen 디자인 시스템에 마이그레이션합니다.
Journey 구성 요소, global.css 및 variables.css 모든 참조 오래된 CSS 사용자 정의 속성 (--base-color-*, --primary-color, --text-base) @analytics/react-zen에 더 이상 존재하지 않습니다. 새로운지도 변수 ...
웹 사이트에서 누락 된 백 버튼을 수정하십시오. sidenav-collapsed state를 false로 기본으로 설정하십시오.
Decompose BoardPage를 개별 구성 요소로 제거하고 디버그 로깅을 제거합니다.
BoardRow, BoardColumn, BoardViewHeader, BoardEditHeader를 추출하고, boardConstants는 별도의 파일로 구성됩니다. 9 console.log 문 제거 BoardBody 및 BoardProvider에서.
웹 사이트NavSection을 웹 사이트Nav로 통합하고 스크롤바 플래시를 수정합니다.
웹 사이트로 사이드바 렌더링 논리를 이동Nav isCollapsed prop 그래서 SideNav는 대신 웹 사이트를 사용합니다. 기타 제품 확장 전환 중에 수평 스크롤을 방지하기 위해 숨겨진 오버 플로우.
Fix WebsiteSelect showing empty value on initial load.
Fall back to queried website name when local state hasn't been set yet, since useState only captures the initial value which is undefined before the query resol...
Fix CompareTables select width, WebsiteSelect min height, and MetricCard gap.
Combine WebsiteNav into SideNav when viewing a website.
Replace the separate 240px WebsiteNav sidebar with website navigation integrated into the main SideNav. When a websiteId is active, SideNav shows a back arrow, ...