mirror of
https://github.com/koala73/worldmonitor.git
synced 2026-04-26 01:24:59 +02:00
* feat(advisories): gold standard migration for security advisories Move security advisories from client-side RSS fetching (24 feeds per page load) to Railway cron seed with Redis-read-only Vercel handler. - Add seed script fetching via relay RSS proxy with domain allowlist - Add ListSecurityAdvisories proto, handler, and RPC cache tier - Add bootstrap hydration key for instant page load - Rewrite client service: bootstrap -> RPC fallback, no browser RSS - Wire health.js, seed-health.js, and dataSize tracking * fix(advisories): empty RPC returns ok:true, use full country map P1 fixes from Codex review: - Return ok:true for empty-but-successful RPC responses so the panel clears to empty instead of stuck loading on cold environments - Replace 50-entry hardcoded country map with 251-entry shared config generated from the project GeoJSON + aliases, matching coverage of the old client-side nameToCountryCode matcher * fix(advisories): add Cote d'Ivoire and other missing country aliases Adds 14 missing aliases including "cote d ivoire" (US State Dept title format), common article-prefixed names (the Bahamas, the Gambia), and alternative official names (Czechia, Eswatini, Cabo Verde, Timor-Leste). * fix(proto): inject @ts-nocheck via Makefile generate target buf generate does not emit @ts-nocheck, but tsc strict mode rejects the generated code. Adding a post-generation sed step in the Makefile ensures both CI proto-freshness (make generate + diff) and CI typecheck (tsc --noEmit) pass consistently.
321 lines
11 KiB
YAML
321 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'
|
|
transitSummary:
|
|
$ref: '#/components/schemas/TransitSummary'
|
|
DirectionalDwt:
|
|
type: object
|
|
properties:
|
|
direction:
|
|
type: string
|
|
dwtThousandTonnes:
|
|
type: number
|
|
format: double
|
|
wowChangePct:
|
|
type: number
|
|
format: double
|
|
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
|
|
riskSummary:
|
|
type: string
|
|
riskReportAction:
|
|
type: string
|
|
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
|
|
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
|