@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 CHANGED
@@ -362,7 +362,8 @@ interface CreatePayinUser {
362
362
  amount: string;
363
363
  payment_description?: string;
364
364
  bill_date: number;
365
- from_wallet_address: string;
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
- from_wallet_address: string;
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
- from_wallet_address: string;
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
- from_wallet_address: string;
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@morambacrypto/connect",
3
- "version": "0.0.21",
3
+ "version": "0.0.22",
4
4
  "description": "This library use for interact with moramba-crypto project",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",