Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
144 changes: 138 additions & 6 deletions .api-sync/spec-snapshot.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand All @@ -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",
Expand Down Expand Up @@ -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": {
Expand All @@ -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",
Expand Down Expand Up @@ -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": {
Expand All @@ -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",
Expand Down Expand Up @@ -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": {
Expand All @@ -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",
Expand Down Expand Up @@ -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": {
Expand All @@ -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",
Expand Down Expand Up @@ -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": {
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 2 additions & 0 deletions types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,8 @@ export type PayinTrackingPayment = {
step: TrackingStatus
provider_name?: string | null
completed_at?: string | null
review_contexts?: Record<string, unknown> | null;
review_sources?: unknown[] | null;
};

export type PayinTrackingComplete = {
Expand Down
Loading