@morambacrypto/connect 0.0.21 → 0.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +4 -2
- package/dist/index.d.ts +4 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -362,7 +362,8 @@ interface CreatePayinUser {
|
|
|
362
362
|
amount: string;
|
|
363
363
|
payment_description?: string;
|
|
364
364
|
bill_date: number;
|
|
365
|
-
|
|
365
|
+
is_public: boolean;
|
|
366
|
+
from_wallet_address?: string;
|
|
366
367
|
client_payment_id: string;
|
|
367
368
|
}
|
|
368
369
|
interface PayinUserResponse {
|
|
@@ -376,7 +377,8 @@ interface PayinUserResponse {
|
|
|
376
377
|
amount: string;
|
|
377
378
|
payment_description?: string;
|
|
378
379
|
bill_date: number;
|
|
379
|
-
|
|
380
|
+
is_public: boolean;
|
|
381
|
+
from_wallet_address?: string;
|
|
380
382
|
payin_status?: string;
|
|
381
383
|
created_at: string;
|
|
382
384
|
updated_at: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -362,7 +362,8 @@ interface CreatePayinUser {
|
|
|
362
362
|
amount: string;
|
|
363
363
|
payment_description?: string;
|
|
364
364
|
bill_date: number;
|
|
365
|
-
|
|
365
|
+
is_public: boolean;
|
|
366
|
+
from_wallet_address?: string;
|
|
366
367
|
client_payment_id: string;
|
|
367
368
|
}
|
|
368
369
|
interface PayinUserResponse {
|
|
@@ -376,7 +377,8 @@ interface PayinUserResponse {
|
|
|
376
377
|
amount: string;
|
|
377
378
|
payment_description?: string;
|
|
378
379
|
bill_date: number;
|
|
379
|
-
|
|
380
|
+
is_public: boolean;
|
|
381
|
+
from_wallet_address?: string;
|
|
380
382
|
payin_status?: string;
|
|
381
383
|
created_at: string;
|
|
382
384
|
updated_at: string;
|