@fiado/type-kit 1.8.44 → 1.8.46

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,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
  }
@@ -16,5 +16,6 @@ export declare enum TransactionProcessorCodesEnum {
16
16
  ACCOUNT_LEVEL_MAX_AVAILABLE_BALANCE_EXCEEDED = "ACCOUNT_LEVEL_MAX_AVAILABLE_BALANCE_EXCEEDED",
17
17
  OTP_REQUIRED = "OTP_REQUIRED",
18
18
  INVALID_SECRET_NUMBER = "INVALID_SECRET_NUMBER",
19
- BLOCKED_SECRET_NUMBER = "BLOCKED_SECRET_NUMBER"
19
+ BLOCKED_SECRET_NUMBER = "BLOCKED_SECRET_NUMBER",
20
+ PROVIDER_NOT_FOUND = "PROVIDER_NOT_FOUND"
20
21
  }
@@ -21,4 +21,5 @@ var TransactionProcessorCodesEnum;
21
21
  TransactionProcessorCodesEnum["OTP_REQUIRED"] = "OTP_REQUIRED";
22
22
  TransactionProcessorCodesEnum["INVALID_SECRET_NUMBER"] = "INVALID_SECRET_NUMBER";
23
23
  TransactionProcessorCodesEnum["BLOCKED_SECRET_NUMBER"] = "BLOCKED_SECRET_NUMBER";
24
+ TransactionProcessorCodesEnum["PROVIDER_NOT_FOUND"] = "PROVIDER_NOT_FOUND";
24
25
  })(TransactionProcessorCodesEnum || (exports.TransactionProcessorCodesEnum = TransactionProcessorCodesEnum = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.8.44",
3
+ "version": "1.8.46",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -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
  }
@@ -17,4 +17,5 @@ export enum TransactionProcessorCodesEnum {
17
17
  OTP_REQUIRED = "OTP_REQUIRED",
18
18
  INVALID_SECRET_NUMBER = "INVALID_SECRET_NUMBER",
19
19
  BLOCKED_SECRET_NUMBER = "BLOCKED_SECRET_NUMBER",
20
+ PROVIDER_NOT_FOUND = "PROVIDER_NOT_FOUND",
20
21
  }