- Remove apps/dispatch/ (100% replaced by ops dispatch module, unmaintained) - Commit services/targo-hub/lib/ (24 modules, 6290 lines — was never tracked) - Commit services/docuseal + services/legacy-db docker-compose configs - Extract client app composables: useOTP, useAddressSearch, catalog data, format utils - Refactor CartPage.vue 630→175 lines, CatalogPage.vue 375→95 lines - Clean hardcoded credentials from config.js fallback values - Add client portal: catalog, cart, checkout, OTP verification, address search - Add ops: NetworkPage, AgentFlowsPage, ConversationPanel, UnifiedCreateModal - Add ops composables: useBestTech, useConversations, usePermissions, useScanner - Add field app: scanner composable, docker/nginx configs Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
963 B
JavaScript
12 lines
963 B
JavaScript
const HUB = location.hostname === 'localhost' ? 'http://localhost:3300' : 'https://msg.gigafibre.ca'
|
|
|
|
const get = async (path) => { const r = await fetch(HUB + path); if (!r.ok) throw new Error(`Hub ${r.status}`); return r.json() }
|
|
const post = async (path, body) => { const r = await fetch(HUB + path, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(body) }); if (!r.ok) throw new Error(`Hub ${r.status}`); return r.json() }
|
|
|
|
export const fetchCatalog = () => get('/api/catalog')
|
|
export const submitOrder = (payload) => post('/api/checkout', payload)
|
|
export const getOrderStatus = (id) => get(`/api/order/${encodeURIComponent(id)}`)
|
|
export const searchAddresses = async (q, limit = 8) => (await post('/api/address-search', { q, limit })).results || []
|
|
export const sendOTP = (identifier) => post('/api/otp/send', { identifier })
|
|
export const verifyOTP = (identifier, code) => post('/api/otp/verify', { identifier, code })
|