From b81db87e8ad52624f95905924a2d5fa2a036ffc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kevin=20Gr=C3=BCneberg?= Date: Thu, 6 Nov 2025 14:16:42 +0800 Subject: [PATCH] fix: sync payment_started_at We missed the field in the schema mapping --- packages/orb-sync-lib/src/schemas/invoice.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/orb-sync-lib/src/schemas/invoice.ts b/packages/orb-sync-lib/src/schemas/invoice.ts index cb4eedb..a134646 100644 --- a/packages/orb-sync-lib/src/schemas/invoice.ts +++ b/packages/orb-sync-lib/src/schemas/invoice.ts @@ -33,6 +33,7 @@ export const invoiceSchema: JsonSchema = { minimum_amount: { type: 'number' }, paid_at: { type: 'string' }, payment_failed_at: { type: 'string' }, + payment_started_at: { type: 'string' }, scheduled_issue_at: { type: 'string' }, shipping_address: { type: 'object' }, status: { type: 'string' },