From e4422ab2ef6997f1ea0623d91e1b52259f61dff2 Mon Sep 17 00:00:00 2001 From: Kurt Morgan Date: Tue, 11 Nov 2025 11:26:52 +0300 Subject: [PATCH 1/2] changelog --- CHANGELOG.md | 5 ++ scripts/openapi.json | 108 +++++++++++++++++++++++++ src/ar/openapi.json | 108 +++++++++++++++++++++++++ src/ar/t.json | 14 +++- src/de/openapi.json | 108 +++++++++++++++++++++++++ src/de/t.json | 14 +++- src/en/openapi.json | 108 +++++++++++++++++++++++++ src/en/t.json | 188 +++++++++++++++++++++++-------------------- src/es/openapi.json | 108 +++++++++++++++++++++++++ src/es/t.json | 14 +++- src/hi/openapi.json | 108 +++++++++++++++++++++++++ src/hi/t.json | 14 +++- src/ko/openapi.json | 108 +++++++++++++++++++++++++ src/ko/t.json | 14 +++- src/ru/openapi.json | 108 +++++++++++++++++++++++++ src/ru/t.json | 14 +++- src/zh/openapi.json | 108 +++++++++++++++++++++++++ src/zh/t.json | 14 +++- 18 files changed, 1168 insertions(+), 95 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 42791b8..6afa64f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## [Unreleased] + + +## [0.1.15] + +- Documentation about unconfirmed transactions - After reading fix ## [0.0.14] - 2025-11-06 diff --git a/scripts/openapi.json b/scripts/openapi.json index afa4255..d39e890 100644 --- a/scripts/openapi.json +++ b/scripts/openapi.json @@ -823,6 +823,52 @@ } ] } + }, + "/v1/external/transactions/unconfirmed/transfer": { + "get": { + "security": [ + { + "XApiKey": [] + } + ], + "tags": [ + "Store" + ], + "description": "Get unconfirmed transfer transactions", + "summary": "Get unconfirmed transfer transactions", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/JSONResponse-UnconfirmedTransactionResponse" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/APIError" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/APIError" + } + } + } + } + } + } } }, "components": { @@ -1282,6 +1328,20 @@ } } }, + "JSONResponse-UnconfirmedTransactionResponse": { + "type": "object", + "properties": { + "code": { + "type": "integer" + }, + "data": { + "$ref": "#/components/schemas/UnconfirmedTransactionResponse" + }, + "message": { + "type": "string" + } + } + }, "JSONResponse-string": { "type": "object", "properties": { @@ -1529,6 +1589,54 @@ } } }, + "UnconfirmedTransactionResponse": { + "type": "object", + "properties": { + "amount": { + "type": "number" + }, + "amount_usd": { + "type": "number" + }, + "bc_uniq_key": { + "type": "string" + }, + "blockchain": { + "type": "string" + }, + "created_at": { + "type": "string", + "format": "date-time" + }, + "currency_id": { + "type": "string" + }, + "from_address": { + "type": "string" + }, + "id": { + "type": "string", + "format": "uuid" + }, + "network_created_at": { + "type": "string", + "format": "date-time" + }, + "to_address": { + "type": "string" + }, + "tx_hash": { + "type": "string" + }, + "type": { + "type": "string" + }, + "updated_at": { + "type": "string", + "format": "date-time" + } + } + }, "WithdrawalFromProcessingDto": { "type": "object", "properties": { diff --git a/src/ar/openapi.json b/src/ar/openapi.json index 35a736c..b0d7fe7 100644 --- a/src/ar/openapi.json +++ b/src/ar/openapi.json @@ -823,6 +823,52 @@ } ] } + }, + "/v1/external/transactions/unconfirmed/transfer": { + "get": { + "security": [ + { + "XApiKey": [] + } + ], + "tags": [ + "Store" + ], + "description": "احصل على معاملات تحويل غير مؤكدة", + "summary": "احصل على معاملات تحويل غير مؤكدة", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/JSONResponse-UnconfirmedTransactionResponse" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/APIError" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/APIError" + } + } + } + } + } + } } }, "components": { @@ -1282,6 +1328,20 @@ } } }, + "JSONResponse-UnconfirmedTransactionResponse": { + "type": "object", + "properties": { + "code": { + "type": "integer" + }, + "data": { + "$ref": "#/components/schemas/UnconfirmedTransactionResponse" + }, + "message": { + "type": "string" + } + } + }, "JSONResponse-string": { "type": "object", "properties": { @@ -1529,6 +1589,54 @@ } } }, + "UnconfirmedTransactionResponse": { + "type": "object", + "properties": { + "amount": { + "type": "number" + }, + "amount_usd": { + "type": "number" + }, + "bc_uniq_key": { + "type": "string" + }, + "blockchain": { + "type": "string" + }, + "created_at": { + "type": "string", + "format": "date-time" + }, + "currency_id": { + "type": "string" + }, + "from_address": { + "type": "string" + }, + "id": { + "type": "string", + "format": "uuid" + }, + "network_created_at": { + "type": "string", + "format": "date-time" + }, + "to_address": { + "type": "string" + }, + "tx_hash": { + "type": "string" + }, + "type": { + "type": "string" + }, + "updated_at": { + "type": "string", + "format": "date-time" + } + } + }, "WithdrawalFromProcessingDto": { "type": "object", "properties": { diff --git a/src/ar/t.json b/src/ar/t.json index 5a73611..af93130 100644 --- a/src/ar/t.json +++ b/src/ar/t.json @@ -86,5 +86,17 @@ "Go home": "اذهب إلى الصفحة الرئيسية", "Cloud vs on-premises": "السحابة مقابل المحلية", "Description": "وصف", - "Installation with docker": "التثبيت مع عامل ميناء" + "Installation with docker": "التثبيت مع عامل ميناء", + "jsonTitles": { + "Get external exchange balances": "الحصول على أرصدة الصرف الخارجية", + "Get external processing wallet balances": "الحصول على رصيد محفظة المعالجة الخارجية", + "Get store currencies list": "الحصول على قائمة عملات المتجر", + "Get store currency rate": "الحصول على سعر عملة المتجر", + "Create wallet with address": "إنشاء محافظ للدفع للمدفوع", + "Get external hot wallet balances": "الحصول على أرصدة المحافظ الساخنة الخارجية", + "Initialize withdrawal from processing": "إنشاء سحب للأموال من محفظة المعالجة", + "Get withdrawal from processing": "الحصول على معلومات حول السحب من محفظة المعالجة", + "Delete withdrawal from processing": "حذف السحب من المعالجة", + "Get unconfirmed transfer transactions": "احصل على معاملات تحويل غير مؤكدة" + } } diff --git a/src/de/openapi.json b/src/de/openapi.json index c7425c4..73f158f 100644 --- a/src/de/openapi.json +++ b/src/de/openapi.json @@ -823,6 +823,52 @@ } ] } + }, + "/v1/external/transactions/unconfirmed/transfer": { + "get": { + "security": [ + { + "XApiKey": [] + } + ], + "tags": [ + "Store" + ], + "description": "Erhalten Sie unbestätigte Überweisungstransaktionen", + "summary": "Erhalten Sie unbestätigte Überweisungstransaktionen", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/JSONResponse-UnconfirmedTransactionResponse" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/APIError" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/APIError" + } + } + } + } + } + } } }, "components": { @@ -1282,6 +1328,20 @@ } } }, + "JSONResponse-UnconfirmedTransactionResponse": { + "type": "object", + "properties": { + "code": { + "type": "integer" + }, + "data": { + "$ref": "#/components/schemas/UnconfirmedTransactionResponse" + }, + "message": { + "type": "string" + } + } + }, "JSONResponse-string": { "type": "object", "properties": { @@ -1529,6 +1589,54 @@ } } }, + "UnconfirmedTransactionResponse": { + "type": "object", + "properties": { + "amount": { + "type": "number" + }, + "amount_usd": { + "type": "number" + }, + "bc_uniq_key": { + "type": "string" + }, + "blockchain": { + "type": "string" + }, + "created_at": { + "type": "string", + "format": "date-time" + }, + "currency_id": { + "type": "string" + }, + "from_address": { + "type": "string" + }, + "id": { + "type": "string", + "format": "uuid" + }, + "network_created_at": { + "type": "string", + "format": "date-time" + }, + "to_address": { + "type": "string" + }, + "tx_hash": { + "type": "string" + }, + "type": { + "type": "string" + }, + "updated_at": { + "type": "string", + "format": "date-time" + } + } + }, "WithdrawalFromProcessingDto": { "type": "object", "properties": { diff --git a/src/de/t.json b/src/de/t.json index b845dfe..032723e 100644 --- a/src/de/t.json +++ b/src/de/t.json @@ -86,5 +86,17 @@ "Go home": "Zur Startseite", "Cloud vs on-premises": "Cloud vs. On-Premises", "Description": "Beschreibung", - "Installation with docker": "Installation mit Docker" + "Installation with docker": "Installation mit Docker", + "jsonTitles": { + "Get external exchange balances": "Externe Börsensalden abrufen", + "Get external processing wallet balances": "Externe Verarbeitungsguthaben abrufen", + "Get store currencies list": "Liste der Shop-Währungen abrufen", + "Get store currency rate": "Shop-Währungskurs abrufen", + "Create wallet with address": "Zahlungs-Wallets für den Zahler erstellen", + "Get external hot wallet balances": "Externe Hot-Wallet-Salden abrufen", + "Initialize withdrawal from processing": "Auszahlung von der Verarbeitung initiieren", + "Get withdrawal from processing": "Auszahlungsinformationen von der Verarbeitung abrufen", + "Delete withdrawal from processing": "Abhebung aus der Verarbeitung löschen", + "Get unconfirmed transfer transactions": "Erhalten Sie unbestätigte Überweisungstransaktionen" + } } diff --git a/src/en/openapi.json b/src/en/openapi.json index c021617..c4b0cac 100644 --- a/src/en/openapi.json +++ b/src/en/openapi.json @@ -823,6 +823,52 @@ } ] } + }, + "/v1/external/transactions/unconfirmed/transfer": { + "get": { + "security": [ + { + "XApiKey": [] + } + ], + "tags": [ + "Store" + ], + "description": "Get unconfirmed transfer transactions", + "summary": "Get unconfirmed transfer transactions", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/JSONResponse-UnconfirmedTransactionResponse" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/APIError" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/APIError" + } + } + } + } + } + } } }, "components": { @@ -1282,6 +1328,20 @@ } } }, + "JSONResponse-UnconfirmedTransactionResponse": { + "type": "object", + "properties": { + "code": { + "type": "integer" + }, + "data": { + "$ref": "#/components/schemas/UnconfirmedTransactionResponse" + }, + "message": { + "type": "string" + } + } + }, "JSONResponse-string": { "type": "object", "properties": { @@ -1529,6 +1589,54 @@ } } }, + "UnconfirmedTransactionResponse": { + "type": "object", + "properties": { + "amount": { + "type": "number" + }, + "amount_usd": { + "type": "number" + }, + "bc_uniq_key": { + "type": "string" + }, + "blockchain": { + "type": "string" + }, + "created_at": { + "type": "string", + "format": "date-time" + }, + "currency_id": { + "type": "string" + }, + "from_address": { + "type": "string" + }, + "id": { + "type": "string", + "format": "uuid" + }, + "network_created_at": { + "type": "string", + "format": "date-time" + }, + "to_address": { + "type": "string" + }, + "tx_hash": { + "type": "string" + }, + "type": { + "type": "string" + }, + "updated_at": { + "type": "string", + "format": "date-time" + } + } + }, "WithdrawalFromProcessingDto": { "type": "object", "properties": { diff --git a/src/en/t.json b/src/en/t.json index 3482e39..b345388 100644 --- a/src/en/t.json +++ b/src/en/t.json @@ -1,89 +1,101 @@ { - "Response": "Response", - "Responses": "Responses", - "Try it out": "Try it out", - "Loading...": "Loading...", - "Samples": "Samples", - "Response time": "Response time", - "Parameters": "Parameters", - "Path Parameters": "Path Parameters", - "Query Parameters": "Query Parameters", - "Required": "Required", - "Key": "Key", - "Value": "Value", - "Variables": "Variables", - "Powered by": "Powered by", - "Type": "Type", - "Header Parameters": "Header Parameters", - "Headers": "Headers", - "Request Body": "Request Body", - "Schema": "Schema", - "JSON": "JSON", - "Authorizations": "Authorizations", - "Authorization": "Authorization", - "Use example": "Use example", - "Deprecated": "Deprecated", - "Body": "Body", - "Terms of Service": "Terms of Service", - "License": "License", - "Contact": "Contact", - "API Documentation": "API Documentation", - "External Documentation": "External Documentation", - "Servers": "Servers", - "Server": "Server", - "Your browser does not support the audio element.": "Your browser does not support the audio element.", - "Unrecognized response type. Raw content:": "Unrecognized response type. Raw content:", - "Download file": "Download file", - "Select...": "Select...", - "operation.badgePrefix.operationId": "ID: ", - "Content-Type": "Content-Type", - "Hide operations": "Hide operations", - "Show operations": "Show operations", - "Operations": "Operations", - "Default": "Default", - "Example": "Example", - "Examples": "Examples", - "tags.goTo": "View {tag} operations", - "or": "or", - "Enum": "Enum", - "Copy endpoint": "Copy endpoint", - "prev": "Previous page", - "next": "Next page", - "Introduction": "Introduction", - "Installation": "Installation", - "Modules": "Modules", - "System requirements": "System requirements", - "Domain linking": "Domain linking", - "Integration": "Integration", - "Integration examples": "Integration examples", - "Obtaining an API key and secret": "Obtaining an API key and secret", - "Creating deposit wallets": "Creating deposit wallets", - "Webhooks": "Webhooks", - "Webhook signature verification": "Webhook signature verification", - "API Integration": "API Integration", - "Connecting a payment form without API": "Connecting a payment form without API", - "Connecting exchanges": "Connecting exchanges", - "List of libraries for integrations": "List of libraries for integrations", - "Exchanges": "Exchanges", - "Exchanges integration": "Exchange Integration", - "Security": "Security", - "Package signature verification": "Package signature verification", - "Application update history": "Application update history", - "Hide control panel with nginx": "Hide control panel with nginx", - "Get external exchange balances": "Get external exchange balances", - "Get external processing wallet balances": "Get external processing wallet balances", - "Get store currencies list": "Get store currencies list", - "Get store currency rate": "Get store currency rate", - "Create wallet with address": "Create wallet with address", - "Get external hot wallet balances": "Get external hot wallet balances", - "Initialize withdrawal from processing": "Initialize withdrawal from processing", - "Get withdrawal from processing": "Get withdrawal from processing", - "Delete withdrawal from processing": "Delete withdrawal from processing", - "On this page": "On this page", - "PAGE NOT FOUND": "PAGE NOT FOUND", - "But if you don't change your direction, and if you keep looking, you may end up where you are heading.": "But if you don't change your direction, and if you keep looking, you may end up where you are heading.", - "Go home": "Go home", - "Cloud vs on-premises": "Cloud vs on-premises", - "Description": "Description", - "Installation with docker": "Installation with docker" -} + "Response": "Response", + "Responses": "Responses", + "Try it out": "Try it out", + "Loading...": "Loading...", + "Samples": "Samples", + "Response time": "Response time", + "Parameters": "Parameters", + "Path Parameters": "Path Parameters", + "Query Parameters": "Query Parameters", + "Required": "Required", + "Key": "Key", + "Value": "Value", + "Variables": "Variables", + "Powered by": "Powered by", + "Type": "Type", + "Header Parameters": "Header Parameters", + "Headers": "Headers", + "Request Body": "Request Body", + "Schema": "Schema", + "JSON": "JSON", + "Authorizations": "Authorizations", + "Authorization": "Authorization", + "Use example": "Use example", + "Deprecated": "Deprecated", + "Body": "Body", + "Terms of Service": "Terms of Service", + "License": "License", + "Contact": "Contact", + "API Documentation": "API Documentation", + "External Documentation": "External Documentation", + "Servers": "Servers", + "Server": "Server", + "Your browser does not support the audio element.": "Your browser does not support the audio element.", + "Unrecognized response type. Raw content:": "Unrecognized response type. Raw content:", + "Download file": "Download file", + "Select...": "Select...", + "operation.badgePrefix.operationId": "ID: ", + "Content-Type": "Content-Type", + "Hide operations": "Hide operations", + "Show operations": "Show operations", + "Operations": "Operations", + "Default": "Default", + "Example": "Example", + "Examples": "Examples", + "tags.goTo": "View {tag} operations", + "or": "or", + "Enum": "Enum", + "Copy endpoint": "Copy endpoint", + "prev": "Previous page", + "next": "Next page", + "Introduction": "Introduction", + "Installation": "Installation", + "Modules": "Modules", + "System requirements": "System requirements", + "Domain linking": "Domain linking", + "Integration": "Integration", + "Integration examples": "Integration examples", + "Obtaining an API key and secret": "Obtaining an API key and secret", + "Creating deposit wallets": "Creating deposit wallets", + "Webhooks": "Webhooks", + "Webhook signature verification": "Webhook signature verification", + "API Integration": "API Integration", + "Connecting a payment form without API": "Connecting a payment form without API", + "Connecting exchanges": "Connecting exchanges", + "List of libraries for integrations": "List of libraries for integrations", + "Exchanges": "Exchanges", + "Exchanges integration": "Exchange Integration", + "Security": "Security", + "Package signature verification": "Package signature verification", + "Application update history": "Application update history", + "Hide control panel with nginx": "Hide control panel with nginx", + "Get external exchange balances": "Get external exchange balances", + "Get external processing wallet balances": "Get external processing wallet balances", + "Get store currencies list": "Get store currencies list", + "Get store currency rate": "Get store currency rate", + "Create wallet with address": "Create wallet with address", + "Get external hot wallet balances": "Get external hot wallet balances", + "Initialize withdrawal from processing": "Initialize withdrawal from processing", + "Get withdrawal from processing": "Get withdrawal from processing", + "Delete withdrawal from processing": "Delete withdrawal from processing", + "On this page": "On this page", + "PAGE NOT FOUND": "PAGE NOT FOUND", + "But if you don't change your direction, and if you keep looking, you may end up where you are heading.": "But if you don't change your direction, and if you keep looking, you may end up where you are heading.", + "Go home": "Go home", + "Cloud vs on-premises": "Cloud vs on-premises", + "Description": "Description", + "Installation with docker": "Installation with docker", + "jsonTitles": { + "Get external exchange balances": "Get external exchange balances", + "Get external processing wallet balances": "Get external processing wallet balances", + "Get store currencies list": "Get store currencies list", + "Get store currency rate": "Get store currency rate", + "Create wallet with address": "Create wallet with address", + "Get external hot wallet balances": "Get external hot wallet balances", + "Initialize withdrawal from processing": "Initialize withdrawal from processing", + "Get withdrawal from processing": "Get withdrawal from processing", + "Delete withdrawal from processing": "Delete withdrawal from processing", + "Get unconfirmed transfer transactions": "Get unconfirmed transfer transactions" + } +} \ No newline at end of file diff --git a/src/es/openapi.json b/src/es/openapi.json index e36ac42..6116537 100644 --- a/src/es/openapi.json +++ b/src/es/openapi.json @@ -823,6 +823,52 @@ } ] } + }, + "/v1/external/transactions/unconfirmed/transfer": { + "get": { + "security": [ + { + "XApiKey": [] + } + ], + "tags": [ + "Store" + ], + "description": "Obtenga transacciones de transferencia sin confirmar", + "summary": "Obtenga transacciones de transferencia sin confirmar", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/JSONResponse-UnconfirmedTransactionResponse" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/APIError" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/APIError" + } + } + } + } + } + } } }, "components": { @@ -1282,6 +1328,20 @@ } } }, + "JSONResponse-UnconfirmedTransactionResponse": { + "type": "object", + "properties": { + "code": { + "type": "integer" + }, + "data": { + "$ref": "#/components/schemas/UnconfirmedTransactionResponse" + }, + "message": { + "type": "string" + } + } + }, "JSONResponse-string": { "type": "object", "properties": { @@ -1529,6 +1589,54 @@ } } }, + "UnconfirmedTransactionResponse": { + "type": "object", + "properties": { + "amount": { + "type": "number" + }, + "amount_usd": { + "type": "number" + }, + "bc_uniq_key": { + "type": "string" + }, + "blockchain": { + "type": "string" + }, + "created_at": { + "type": "string", + "format": "date-time" + }, + "currency_id": { + "type": "string" + }, + "from_address": { + "type": "string" + }, + "id": { + "type": "string", + "format": "uuid" + }, + "network_created_at": { + "type": "string", + "format": "date-time" + }, + "to_address": { + "type": "string" + }, + "tx_hash": { + "type": "string" + }, + "type": { + "type": "string" + }, + "updated_at": { + "type": "string", + "format": "date-time" + } + } + }, "WithdrawalFromProcessingDto": { "type": "object", "properties": { diff --git a/src/es/t.json b/src/es/t.json index 64bd44d..8eddb5c 100644 --- a/src/es/t.json +++ b/src/es/t.json @@ -86,5 +86,17 @@ "Go home": "Ir al inicio", "Cloud vs on-premises": "Nube versus local", "Description": "Descripción", - "Installation with docker": "Instalación con ventana acoplable" + "Installation with docker": "Instalación con ventana acoplable", + "jsonTitles": { + "Get external exchange balances": "Obtener saldos de cambio externos", + "Get external processing wallet balances": "Obtener saldos de billetera de procesamiento externo", + "Get store currencies list": "Obtener lista de monedas de la tienda", + "Get store currency rate": "Obtener tasa de moneda de la tienda", + "Create wallet with address": "Crear billetera con dirección", + "Get external hot wallet balances": "Obtener saldos de billeteras calientes externas", + "Initialize withdrawal from processing": "Inicializar retiro del procesamiento", + "Get withdrawal from processing": "Obtener retiro del procesamiento", + "Delete withdrawal from processing": "Eliminar retiro del procesamiento", + "Get unconfirmed transfer transactions": "Obtenga transacciones de transferencia sin confirmar" + } } diff --git a/src/hi/openapi.json b/src/hi/openapi.json index 4b6b512..39438f7 100644 --- a/src/hi/openapi.json +++ b/src/hi/openapi.json @@ -823,6 +823,52 @@ } ] } + }, + "/v1/external/transactions/unconfirmed/transfer": { + "get": { + "security": [ + { + "XApiKey": [] + } + ], + "tags": [ + "Store" + ], + "description": "अपुष्ट हस्तांतरण लेनदेन प्राप्त करें", + "summary": "अपुष्ट हस्तांतरण लेनदेन प्राप्त करें", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/JSONResponse-UnconfirmedTransactionResponse" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/APIError" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/APIError" + } + } + } + } + } + } } }, "components": { @@ -1282,6 +1328,20 @@ } } }, + "JSONResponse-UnconfirmedTransactionResponse": { + "type": "object", + "properties": { + "code": { + "type": "integer" + }, + "data": { + "$ref": "#/components/schemas/UnconfirmedTransactionResponse" + }, + "message": { + "type": "string" + } + } + }, "JSONResponse-string": { "type": "object", "properties": { @@ -1529,6 +1589,54 @@ } } }, + "UnconfirmedTransactionResponse": { + "type": "object", + "properties": { + "amount": { + "type": "number" + }, + "amount_usd": { + "type": "number" + }, + "bc_uniq_key": { + "type": "string" + }, + "blockchain": { + "type": "string" + }, + "created_at": { + "type": "string", + "format": "date-time" + }, + "currency_id": { + "type": "string" + }, + "from_address": { + "type": "string" + }, + "id": { + "type": "string", + "format": "uuid" + }, + "network_created_at": { + "type": "string", + "format": "date-time" + }, + "to_address": { + "type": "string" + }, + "tx_hash": { + "type": "string" + }, + "type": { + "type": "string" + }, + "updated_at": { + "type": "string", + "format": "date-time" + } + } + }, "WithdrawalFromProcessingDto": { "type": "object", "properties": { diff --git a/src/hi/t.json b/src/hi/t.json index 10813e6..a461f74 100644 --- a/src/hi/t.json +++ b/src/hi/t.json @@ -86,5 +86,17 @@ "Go home": "मुखपृष्ठ पर जाएँ", "Cloud vs on-premises": "क्लाउड बनाम ऑन-प्रिमाइसेस", "Description": "विवरण", - "Installation with docker": "डोकर के साथ स्थापना" + "Installation with docker": "डोकर के साथ स्थापना", + "jsonTitles": { + "Get external exchange balances": "बाहरी एक्सचेंज बैलेंस प्राप्त करें", + "Get external processing wallet balances": "बाहरी प्रोसेसिंग वॉलेट बैलेंस प्राप्त करें", + "Get store currencies list": "स्टोर करेंसी सूची प्राप्त करें", + "Get store currency rate": "स्टोर करेंसी दर प्राप्त करें", + "Create wallet with address": "पते के साथ वॉलेट बनाएं", + "Get external hot wallet balances": "बाहरी हॉट वॉलेट शेष प्राप्त करें", + "Initialize withdrawal from processing": "प्रोसेसिंग से निकासी आरंभ करें", + "Get withdrawal from processing": "प्रोसेसिंग से निकासी प्राप्त करें", + "Delete withdrawal from processing": "प्रोसेसिंग से निकासी हटाएं", + "Get unconfirmed transfer transactions": "अपुष्ट हस्तांतरण लेनदेन प्राप्त करें" + } } diff --git a/src/ko/openapi.json b/src/ko/openapi.json index 36b3cb1..f2352f2 100644 --- a/src/ko/openapi.json +++ b/src/ko/openapi.json @@ -823,6 +823,52 @@ } ] } + }, + "/v1/external/transactions/unconfirmed/transfer": { + "get": { + "security": [ + { + "XApiKey": [] + } + ], + "tags": [ + "Store" + ], + "description": "확인되지 않은 전송 거래 받기", + "summary": "확인되지 않은 전송 거래 받기", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/JSONResponse-UnconfirmedTransactionResponse" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/APIError" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/APIError" + } + } + } + } + } + } } }, "components": { @@ -1282,6 +1328,20 @@ } } }, + "JSONResponse-UnconfirmedTransactionResponse": { + "type": "object", + "properties": { + "code": { + "type": "integer" + }, + "data": { + "$ref": "#/components/schemas/UnconfirmedTransactionResponse" + }, + "message": { + "type": "string" + } + } + }, "JSONResponse-string": { "type": "object", "properties": { @@ -1529,6 +1589,54 @@ } } }, + "UnconfirmedTransactionResponse": { + "type": "object", + "properties": { + "amount": { + "type": "number" + }, + "amount_usd": { + "type": "number" + }, + "bc_uniq_key": { + "type": "string" + }, + "blockchain": { + "type": "string" + }, + "created_at": { + "type": "string", + "format": "date-time" + }, + "currency_id": { + "type": "string" + }, + "from_address": { + "type": "string" + }, + "id": { + "type": "string", + "format": "uuid" + }, + "network_created_at": { + "type": "string", + "format": "date-time" + }, + "to_address": { + "type": "string" + }, + "tx_hash": { + "type": "string" + }, + "type": { + "type": "string" + }, + "updated_at": { + "type": "string", + "format": "date-time" + } + } + }, "WithdrawalFromProcessingDto": { "type": "object", "properties": { diff --git a/src/ko/t.json b/src/ko/t.json index 492a368..eb29cc8 100644 --- a/src/ko/t.json +++ b/src/ko/t.json @@ -86,5 +86,17 @@ "Go home": "홈으로 가기", "Cloud vs on-premises": "클라우드와 온프레미스", "Description": "설명", - "Installation with docker": "도커로 설치" + "Installation with docker": "도커로 설치", + "jsonTitles": { + "Get external exchange balances": "외부 거래소 잔액 가져오기", + "Get external processing wallet balances": "외부 처리 지갑 잔액 가져오기", + "Get store currencies list": "상점 통화 목록 가져오기", + "Get store currency rate": "상점 통화 환율 가져오기", + "Create wallet with address": "결제자를 위한 결제 지갑 생성", + "Get external hot wallet balances": "외부 핫 월렛 잔액 가져오기", + "Initialize withdrawal from processing": "처리에서 출금 초기화", + "Get withdrawal from processing": "처리에서 출금 정보 가져오기", + "Delete withdrawal from processing": "처리에서 출금 삭제", + "Get unconfirmed transfer transactions": "확인되지 않은 전송 거래 받기" + } } diff --git a/src/ru/openapi.json b/src/ru/openapi.json index e0c20e5..7ecb5d2 100644 --- a/src/ru/openapi.json +++ b/src/ru/openapi.json @@ -823,6 +823,52 @@ } ] } + }, + "/v1/external/transactions/unconfirmed/transfer": { + "get": { + "security": [ + { + "XApiKey": [] + } + ], + "tags": [ + "Store" + ], + "description": "Получить неподтверждённые транзакции для трансфера", + "summary": "Получить неподтверждённые транзакции для трансфера", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/JSONResponse-UnconfirmedTransactionResponse" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/APIError" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/APIError" + } + } + } + } + } + } } }, "components": { @@ -1282,6 +1328,20 @@ } } }, + "JSONResponse-UnconfirmedTransactionResponse": { + "type": "object", + "properties": { + "code": { + "type": "integer" + }, + "data": { + "$ref": "#/components/schemas/UnconfirmedTransactionResponse" + }, + "message": { + "type": "string" + } + } + }, "JSONResponse-string": { "type": "object", "properties": { @@ -1529,6 +1589,54 @@ } } }, + "UnconfirmedTransactionResponse": { + "type": "object", + "properties": { + "amount": { + "type": "number" + }, + "amount_usd": { + "type": "number" + }, + "bc_uniq_key": { + "type": "string" + }, + "blockchain": { + "type": "string" + }, + "created_at": { + "type": "string", + "format": "date-time" + }, + "currency_id": { + "type": "string" + }, + "from_address": { + "type": "string" + }, + "id": { + "type": "string", + "format": "uuid" + }, + "network_created_at": { + "type": "string", + "format": "date-time" + }, + "to_address": { + "type": "string" + }, + "tx_hash": { + "type": "string" + }, + "type": { + "type": "string" + }, + "updated_at": { + "type": "string", + "format": "date-time" + } + } + }, "WithdrawalFromProcessingDto": { "type": "object", "properties": { diff --git a/src/ru/t.json b/src/ru/t.json index 77892b3..d31c515 100644 --- a/src/ru/t.json +++ b/src/ru/t.json @@ -86,5 +86,17 @@ "Cloud vs on-premises": "Сравнение установки на сервер и Cloud решения", "Description": "Описание", "Installation with docker": "Установка с docker", - "DV.net Api request logging": "Логирование запросов к API DV.net" + "DV.net Api request logging": "Логирование запросов к API DV.net", + "jsonTitles": { + "Get external exchange balances": "Получить внешние валютные балансы", + "Get external processing wallet balances": "Получить баланс процессингового кошелька", + "Get store currencies list": "Получить список валют магазина", + "Get store currency rate": "Получить курс валюты магазина", + "Create wallet with address": "Создать кошельки для оплаты плательщику", + "Get external hot wallet balances": "Получить балансы горячих кошельков", + "Initialize withdrawal from processing": "Создать вывод средств с процессингового кошелька", + "Get withdrawal from processing": "Получить информацию о выводе с процессингового кошелька", + "Delete withdrawal from processing": "Удалить вывод с процессингового кошелька", + "Get unconfirmed transfer transactions": "Получить неподтверждённые транзакции для трансфера" + } } diff --git a/src/zh/openapi.json b/src/zh/openapi.json index 41ec3fb..fa02f7d 100644 --- a/src/zh/openapi.json +++ b/src/zh/openapi.json @@ -823,6 +823,52 @@ } ] } + }, + "/v1/external/transactions/unconfirmed/transfer": { + "get": { + "security": [ + { + "XApiKey": [] + } + ], + "tags": [ + "Store" + ], + "description": "获取未确认的转账交易", + "summary": "获取未确认的转账交易", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/JSONResponse-UnconfirmedTransactionResponse" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/APIError" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/APIError" + } + } + } + } + } + } } }, "components": { @@ -1282,6 +1328,20 @@ } } }, + "JSONResponse-UnconfirmedTransactionResponse": { + "type": "object", + "properties": { + "code": { + "type": "integer" + }, + "data": { + "$ref": "#/components/schemas/UnconfirmedTransactionResponse" + }, + "message": { + "type": "string" + } + } + }, "JSONResponse-string": { "type": "object", "properties": { @@ -1529,6 +1589,54 @@ } } }, + "UnconfirmedTransactionResponse": { + "type": "object", + "properties": { + "amount": { + "type": "number" + }, + "amount_usd": { + "type": "number" + }, + "bc_uniq_key": { + "type": "string" + }, + "blockchain": { + "type": "string" + }, + "created_at": { + "type": "string", + "format": "date-time" + }, + "currency_id": { + "type": "string" + }, + "from_address": { + "type": "string" + }, + "id": { + "type": "string", + "format": "uuid" + }, + "network_created_at": { + "type": "string", + "format": "date-time" + }, + "to_address": { + "type": "string" + }, + "tx_hash": { + "type": "string" + }, + "type": { + "type": "string" + }, + "updated_at": { + "type": "string", + "format": "date-time" + } + } + }, "WithdrawalFromProcessingDto": { "type": "object", "properties": { diff --git a/src/zh/t.json b/src/zh/t.json index 8fd5810..da820cc 100644 --- a/src/zh/t.json +++ b/src/zh/t.json @@ -86,5 +86,17 @@ "Go home": "返回首页", "Cloud vs on-premises": "云与本地部署", "Description": "描述", - "Installation with docker": "使用docker安装" + "Installation with docker": "使用docker安装", + "jsonTitles": { + "Get external exchange balances": "获取外部交易余额", + "Get external processing wallet balances": "获取外部处理钱包余额", + "Get store currencies list": "获取商店货币列表", + "Get store currency rate": "获取商店货币汇率", + "Create wallet with address": "使用地址创建钱包", + "Get external hot wallet balances": "获取外部热钱包余额", + "Initialize withdrawal from processing": "初始化处理提款", + "Get withdrawal from processing": "获取处理提款", + "Delete withdrawal from processing": "从处理中删除提现", + "Get unconfirmed transfer transactions": "获取未确认的转账交易" + } } From 708bd7dfd0ca08aaf5fc62d6f886f8912d5fc660 Mon Sep 17 00:00:00 2001 From: Yuto Stryker Date: Tue, 11 Nov 2025 11:59:36 +0300 Subject: [PATCH 2/2] fixes --- CHANGELOG.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6afa64f..abefcc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,10 @@ ## [Unreleased] - - -## [0.1.15] +## [0.0.15] - 2025-11-11 - Documentation about unconfirmed transactions -- After reading fix +- Minor fixes ## [0.0.14] - 2025-11-06