@fiado/type-kit 1.8.45 → 1.8.47

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.
@@ -1,11 +1,10 @@
1
1
  import { CountryId } from "../../country";
2
2
  import { BankAccountP2pTransferType } from "../enums/BankAccountP2pTransferType";
3
- import { Provider } from "../../provider";
4
3
  export declare class ExecuteP2pOperationRequest {
5
4
  transferType: BankAccountP2pTransferType;
6
5
  source: string;
7
6
  target: string;
8
7
  amount: number;
9
8
  currencyId: CountryId;
10
- provider: Provider;
9
+ transactionNumber?: string;
11
10
  }
@@ -1,7 +1,9 @@
1
+ import { Provider } from "../../provider";
1
2
  export declare class AuthorizeCollectorTransactionRequest {
2
3
  directoryId: string;
3
4
  totalLockedAmount: number;
4
5
  totalCollectedAmount: number;
5
6
  accountId: string;
6
7
  pocketId: string;
8
+ provider: Provider;
7
9
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.8.45",
3
+ "version": "1.8.47",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -1,6 +1,5 @@
1
1
  import {CountryId} from "../../country";
2
2
  import {BankAccountP2pTransferType} from "../enums/BankAccountP2pTransferType";
3
- import {Provider} from "../../provider";
4
3
 
5
4
  export class ExecuteP2pOperationRequest {
6
5
  transferType: BankAccountP2pTransferType;
@@ -8,5 +7,5 @@ export class ExecuteP2pOperationRequest {
8
7
  target: string;
9
8
  amount: number;
10
9
  currencyId: CountryId;
11
- provider: Provider;
10
+ transactionNumber?: string;
12
11
  }
@@ -1,7 +1,10 @@
1
+ import {Provider} from "../../provider";
2
+
1
3
  export class AuthorizeCollectorTransactionRequest {
2
4
  directoryId: string;
3
5
  totalLockedAmount: number; // total bloqueado
4
6
  totalCollectedAmount: number; // total a cobrar
5
7
  accountId: string;
6
8
  pocketId: string; // Cuenta del apartadito
9
+ provider: Provider;
7
10
  }