mirror of
https://github.com/koala73/worldmonitor.git
synced 2026-04-25 17:14:57 +02:00
* feat(supply-chain): replace S&P Global with 3 free maritime data sources Replace expensive S&P Global Maritime API with IMF PortWatch (vessel transit counts), CorridorRisk (risk intelligence), and AISStream chokepoint crossing counter. All external API calls run on Railway relay, Vercel reads Redis only. - Add 4 new chokepoints (10 total): Cape of Good Hope, Gibraltar, Bosphorus, Dardanelles - Add TransitSummary proto (field 14) with today counts, WoW%, 180d history, risk context - Add D3 multi-line chart (tanker vs cargo) with expandable chokepoint cards - Add crossing detection with enter+dwell+exit semantics, 30min cooldown, 5min min dwell - Add PortWatch seed loop (6h), CorridorRisk seed loop (1h), transit seed loop (10min) - Add canonical chokepoint ID map for cross-source name resolution - 177 tests passing across 6 test files * fix(supply-chain): address P2 review findings - Discard partial PortWatch pagination results on mid-page failure (prevents truncated history with wrong WoW numbers cached for 6h) - Rename "Transit today" to "24h" label (rolling 24h window, not calendar day) - Fix chart label from "30d" to "180d" (matches actual PortWatch query range) - Add 30s initial seed for chokepoint transits on relay cold start (prevents 10min gap of zero transit data) * feat(supply-chain): swap D3 chart for TradingView lightweight-charts Replace hand-rolled D3 SVG transit chart with lightweight-charts v5 canvas rendering for Bloomberg-quality time-series visualization. - Add TransitChart helper class with mount/destroy lifecycle, theme listener, and autoSize support - Use MutationObserver (not rAF) to mount chart after setContent debounce - Clean up chart on tab switch, collapse, and re-render (no orphaned canvases) - Respond to theme-changed events via chart.applyOptions() - D3 stays for other 5 components (ProgressCharts, RenewableEnergy, etc.) * feat(supply-chain): add geo coords and trade routes for 4 new chokepoints Cherry-pick from PR #1511: Cape of Good Hope, Gibraltar, Bosphorus, and Dardanelles map-layer coordinates and trade route definitions. * fix(supply-chain): health.js v2->v4 key + double cache TTLs for missed seeds - health.js chokepoints key was still v2, now v4 (matches handler + bootstrap) - PortWatch TTL: 21600s (6h) -> 43200s (12h), seed interval stays 6h - CorridorRisk TTL: 3600s (1h) -> 7200s (2h), seed interval stays 1h - Ensures one missed seed run doesn't expire the key and cause empty data
318 lines
11 KiB
YAML
318 lines
11 KiB
YAML
openapi: 3.1.0
|
|
info:
|
|
title: SupplyChainService API
|
|
version: 1.0.0
|
|
paths:
|
|
/api/supply-chain/v1/get-shipping-rates:
|
|
get:
|
|
tags:
|
|
- SupplyChainService
|
|
summary: GetShippingRates
|
|
operationId: GetShippingRates
|
|
responses:
|
|
"200":
|
|
description: Successful response
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/GetShippingRatesResponse'
|
|
"400":
|
|
description: Validation error
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/ValidationError'
|
|
default:
|
|
description: Error response
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/Error'
|
|
/api/supply-chain/v1/get-chokepoint-status:
|
|
get:
|
|
tags:
|
|
- SupplyChainService
|
|
summary: GetChokepointStatus
|
|
operationId: GetChokepointStatus
|
|
responses:
|
|
"200":
|
|
description: Successful response
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/GetChokepointStatusResponse'
|
|
"400":
|
|
description: Validation error
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/ValidationError'
|
|
default:
|
|
description: Error response
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/Error'
|
|
/api/supply-chain/v1/get-critical-minerals:
|
|
get:
|
|
tags:
|
|
- SupplyChainService
|
|
summary: GetCriticalMinerals
|
|
operationId: GetCriticalMinerals
|
|
responses:
|
|
"200":
|
|
description: Successful response
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/GetCriticalMineralsResponse'
|
|
"400":
|
|
description: Validation error
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/ValidationError'
|
|
default:
|
|
description: Error response
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/Error'
|
|
components:
|
|
schemas:
|
|
Error:
|
|
type: object
|
|
properties:
|
|
message:
|
|
type: string
|
|
description: Error message (e.g., 'user not found', 'database connection failed')
|
|
description: Error is returned when a handler encounters an error. It contains a simple error message that the developer can customize.
|
|
FieldViolation:
|
|
type: object
|
|
properties:
|
|
field:
|
|
type: string
|
|
description: The field path that failed validation (e.g., 'user.email' for nested fields). For header validation, this will be the header name (e.g., 'X-API-Key')
|
|
description:
|
|
type: string
|
|
description: Human-readable description of the validation violation (e.g., 'must be a valid email address', 'required field missing')
|
|
required:
|
|
- field
|
|
- description
|
|
description: FieldViolation describes a single validation error for a specific field.
|
|
ValidationError:
|
|
type: object
|
|
properties:
|
|
violations:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/FieldViolation'
|
|
description: List of validation violations
|
|
required:
|
|
- violations
|
|
description: ValidationError is returned when request validation fails. It contains a list of field violations describing what went wrong.
|
|
GetShippingRatesRequest:
|
|
type: object
|
|
GetShippingRatesResponse:
|
|
type: object
|
|
properties:
|
|
indices:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/ShippingIndex'
|
|
fetchedAt:
|
|
type: string
|
|
upstreamUnavailable:
|
|
type: boolean
|
|
ShippingIndex:
|
|
type: object
|
|
properties:
|
|
indexId:
|
|
type: string
|
|
name:
|
|
type: string
|
|
currentValue:
|
|
type: number
|
|
format: double
|
|
previousValue:
|
|
type: number
|
|
format: double
|
|
changePct:
|
|
type: number
|
|
format: double
|
|
unit:
|
|
type: string
|
|
history:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/ShippingRatePoint'
|
|
spikeAlert:
|
|
type: boolean
|
|
ShippingRatePoint:
|
|
type: object
|
|
properties:
|
|
date:
|
|
type: string
|
|
value:
|
|
type: number
|
|
format: double
|
|
GetChokepointStatusRequest:
|
|
type: object
|
|
GetChokepointStatusResponse:
|
|
type: object
|
|
properties:
|
|
chokepoints:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/ChokepointInfo'
|
|
fetchedAt:
|
|
type: string
|
|
upstreamUnavailable:
|
|
type: boolean
|
|
ChokepointInfo:
|
|
type: object
|
|
properties:
|
|
id:
|
|
type: string
|
|
name:
|
|
type: string
|
|
lat:
|
|
type: number
|
|
format: double
|
|
lon:
|
|
type: number
|
|
format: double
|
|
disruptionScore:
|
|
type: integer
|
|
format: int32
|
|
status:
|
|
type: string
|
|
activeWarnings:
|
|
type: integer
|
|
format: int32
|
|
congestionLevel:
|
|
type: string
|
|
affectedRoutes:
|
|
type: array
|
|
items:
|
|
type: string
|
|
description:
|
|
type: string
|
|
aisDisruptions:
|
|
type: integer
|
|
format: int32
|
|
directions:
|
|
type: array
|
|
items:
|
|
type: string
|
|
directionalDwt:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/DirectionalDwt'
|
|
deprecated: true
|
|
transitSummary:
|
|
$ref: '#/components/schemas/TransitSummary'
|
|
DirectionalDwt:
|
|
type: object
|
|
properties:
|
|
direction:
|
|
type: string
|
|
dwtThousandTonnes:
|
|
type: number
|
|
format: double
|
|
wowChangePct:
|
|
type: number
|
|
format: double
|
|
TransitDayCount:
|
|
type: object
|
|
properties:
|
|
date:
|
|
type: string
|
|
tanker:
|
|
type: integer
|
|
format: int32
|
|
cargo:
|
|
type: integer
|
|
format: int32
|
|
other:
|
|
type: integer
|
|
format: int32
|
|
total:
|
|
type: integer
|
|
format: int32
|
|
TransitSummary:
|
|
type: object
|
|
properties:
|
|
todayTotal:
|
|
type: integer
|
|
format: int32
|
|
todayTanker:
|
|
type: integer
|
|
format: int32
|
|
todayCargo:
|
|
type: integer
|
|
format: int32
|
|
todayOther:
|
|
type: integer
|
|
format: int32
|
|
wowChangePct:
|
|
type: number
|
|
format: double
|
|
history:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/TransitDayCount'
|
|
riskLevel:
|
|
type: string
|
|
incidentCount7d:
|
|
type: integer
|
|
format: int32
|
|
disruptionPct:
|
|
type: number
|
|
format: double
|
|
GetCriticalMineralsRequest:
|
|
type: object
|
|
GetCriticalMineralsResponse:
|
|
type: object
|
|
properties:
|
|
minerals:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/CriticalMineral'
|
|
fetchedAt:
|
|
type: string
|
|
upstreamUnavailable:
|
|
type: boolean
|
|
CriticalMineral:
|
|
type: object
|
|
properties:
|
|
mineral:
|
|
type: string
|
|
topProducers:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/MineralProducer'
|
|
hhi:
|
|
type: number
|
|
format: double
|
|
riskRating:
|
|
type: string
|
|
globalProduction:
|
|
type: number
|
|
format: double
|
|
unit:
|
|
type: string
|
|
MineralProducer:
|
|
type: object
|
|
properties:
|
|
country:
|
|
type: string
|
|
countryCode:
|
|
type: string
|
|
productionTonnes:
|
|
type: number
|
|
format: double
|
|
sharePct:
|
|
type: number
|
|
format: double
|