From 2f4f97e8fabbe633bf72a9482f5cc85a98a4601d Mon Sep 17 00:00:00 2001 From: Kristijan Date: Fri, 29 Aug 2025 17:11:16 +0200 Subject: [PATCH] Version 1.3.54 - 2025-08-29 17:11:16 --- package.json | 2 +- src/types/index.ts | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 7335d64..651e70d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@icpay/sdk", - "version": "1.3.53", + "version": "1.3.54", "description": "Official icpay SDK for Internet Computer payments", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/src/types/index.ts b/src/types/index.ts index 9fff614..8d5323d 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -292,9 +292,13 @@ export interface PaymentPublic { accountId: string; paymentIntentId: string; transactionId: string | null; + transactionSplitId?: string | null; canisterTxId: number | null; amount: string; ledgerCanisterId: string; + ledgerTxId?: string | null; + accountCanisterId?: number | null; + basePaymentAccountId?: string | null; status: PaymentStatus; invoiceId: string | null; metadata: Record; @@ -342,9 +346,13 @@ export interface SdkPayment { accountId: string; paymentIntentId: string; transactionId: string | null; + transactionSplitId?: string | null; canisterTxId: number | null; amount: string; ledgerCanisterId: string; + ledgerTxId?: string | null; + accountCanisterId?: number | null; + basePaymentAccountId?: string | null; status: PaymentStatus; invoiceId: string | null; metadata: Record;