From 191c99668ca48829d724aba97fa630cd6247a045 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 7 Aug 2026 14:43:44 +0000 Subject: [PATCH] feat: sync SDK with API changes (v5.3.1) Applied: - add field "review_contexts?: Record | null" to types/index.d.ts:PayinTrackingPayment (PayinOut.tracking_payment) - add field "review_sources?: unknown[] | null" to types/index.d.ts:PayinTrackingPayment (PayinOut.tracking_payment) --- .api-sync/spec-snapshot.json | 144 +++++++++++++++++++++++++++++++++-- package.json | 2 +- types/index.d.ts | 2 + 3 files changed, 141 insertions(+), 7 deletions(-) diff --git a/.api-sync/spec-snapshot.json b/.api-sync/spec-snapshot.json index 16329ef..c495d8d 100644 --- a/.api-sync/spec-snapshot.json +++ b/.api-sync/spec-snapshot.json @@ -3393,7 +3393,7 @@ "string", "null" ], - "description": "Risk source that sent this payin to manual review", + "description": "Primary risk source that sent this payin to manual review", "example": "seon_review" }, "review_context": { @@ -3404,6 +3404,28 @@ "additionalProperties": {}, "description": "Structured risk context for manual review" }, + "review_sources": { + "type": [ + "array", + "null" + ], + "items": { + "type": "string" + }, + "description": "Every risk source that flagged this payin on the pending review", + "example": [ + "seon_review", + "new_instance" + ] + }, + "review_contexts": { + "type": [ + "object", + "null" + ], + "additionalProperties": {}, + "description": "Structured risk context per flagging source" + }, "approved_risk_sources": { "type": [ "array", @@ -4082,7 +4104,7 @@ "string", "null" ], - "description": "Risk source that sent this payin to manual review", + "description": "Primary risk source that sent this payin to manual review", "example": "seon_review" }, "review_context": { @@ -4093,6 +4115,28 @@ "additionalProperties": {}, "description": "Structured risk context for manual review" }, + "review_sources": { + "type": [ + "array", + "null" + ], + "items": { + "type": "string" + }, + "description": "Every risk source that flagged this payin on the pending review", + "example": [ + "seon_review", + "new_instance" + ] + }, + "review_contexts": { + "type": [ + "object", + "null" + ], + "additionalProperties": {}, + "description": "Structured risk context per flagging source" + }, "approved_risk_sources": { "type": [ "array", @@ -5039,7 +5083,7 @@ "string", "null" ], - "description": "Risk source that sent this payin to manual review", + "description": "Primary risk source that sent this payin to manual review", "example": "seon_review" }, "review_context": { @@ -5050,6 +5094,28 @@ "additionalProperties": {}, "description": "Structured risk context for manual review" }, + "review_sources": { + "type": [ + "array", + "null" + ], + "items": { + "type": "string" + }, + "description": "Every risk source that flagged this payin on the pending review", + "example": [ + "seon_review", + "new_instance" + ] + }, + "review_contexts": { + "type": [ + "object", + "null" + ], + "additionalProperties": {}, + "description": "Structured risk context per flagging source" + }, "approved_risk_sources": { "type": [ "array", @@ -5728,7 +5794,7 @@ "string", "null" ], - "description": "Risk source that sent this payin to manual review", + "description": "Primary risk source that sent this payin to manual review", "example": "seon_review" }, "review_context": { @@ -5739,6 +5805,28 @@ "additionalProperties": {}, "description": "Structured risk context for manual review" }, + "review_sources": { + "type": [ + "array", + "null" + ], + "items": { + "type": "string" + }, + "description": "Every risk source that flagged this payin on the pending review", + "example": [ + "seon_review", + "new_instance" + ] + }, + "review_contexts": { + "type": [ + "object", + "null" + ], + "additionalProperties": {}, + "description": "Structured risk context per flagging source" + }, "approved_risk_sources": { "type": [ "array", @@ -17148,7 +17236,7 @@ "string", "null" ], - "description": "Risk source that sent this payin to manual review", + "description": "Primary risk source that sent this payin to manual review", "example": "seon_review" }, "review_context": { @@ -17159,6 +17247,28 @@ "additionalProperties": {}, "description": "Structured risk context for manual review" }, + "review_sources": { + "type": [ + "array", + "null" + ], + "items": { + "type": "string" + }, + "description": "Every risk source that flagged this payin on the pending review", + "example": [ + "seon_review", + "new_instance" + ] + }, + "review_contexts": { + "type": [ + "object", + "null" + ], + "additionalProperties": {}, + "description": "Structured risk context per flagging source" + }, "approved_risk_sources": { "type": [ "array", @@ -17878,7 +17988,7 @@ "string", "null" ], - "description": "Risk source that sent this payin to manual review", + "description": "Primary risk source that sent this payin to manual review", "example": "seon_review" }, "review_context": { @@ -17889,6 +17999,28 @@ "additionalProperties": {}, "description": "Structured risk context for manual review" }, + "review_sources": { + "type": [ + "array", + "null" + ], + "items": { + "type": "string" + }, + "description": "Every risk source that flagged this payin on the pending review", + "example": [ + "seon_review", + "new_instance" + ] + }, + "review_contexts": { + "type": [ + "object", + "null" + ], + "additionalProperties": {}, + "description": "Structured risk context per flagging source" + }, "approved_risk_sources": { "type": [ "array", diff --git a/package.json b/package.json index 3f763ab..fb00224 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@blindpay/node", - "version": "5.3.0", + "version": "5.3.1", "description": "Official Node.js SDK for Blindpay API - Stablecoin API for global payments", "keywords": [ "blindpay", diff --git a/types/index.d.ts b/types/index.d.ts index d3e15e3..5d32b53 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -333,6 +333,8 @@ export type PayinTrackingPayment = { step: TrackingStatus provider_name?: string | null completed_at?: string | null + review_contexts?: Record | null; + review_sources?: unknown[] | null; }; export type PayinTrackingComplete = {