@fiado/type-kit 2.0.49 → 2.0.51

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.
@@ -60,5 +60,7 @@ export declare class CentralPaymentsTransactionInfo {
60
60
  transactionNumber?: string;
61
61
  transactionReceiveDate?: string;
62
62
  transactionType?: string;
63
+ relatedCollectorContractId?: string;
64
+ relatedCreditContractId?: string;
63
65
  updatedAt?: string;
64
66
  }
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Enum representing the type of metadata for a collection order.
3
+ * @enum {string}
4
+ *
5
+ * @property {string} COLLECTION_ORDER_RESPONSE - The response of a collection order.
6
+ * @property {string} COLLECTION_ORDER_REQUEST - The request of a collection order.
7
+ */
8
+ export declare enum CollectionMetadataTypeEnum {
9
+ COLLECTION_ORDER_RESPONSE = "COLLECTION_ORDER_RESPONSE",
10
+ COLLECTION_ORDER_REQUEST = "COLLECTION_ORDER_REQUEST"
11
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CollectionMetadataTypeEnum = void 0;
4
+ /**
5
+ * Enum representing the type of metadata for a collection order.
6
+ * @enum {string}
7
+ *
8
+ * @property {string} COLLECTION_ORDER_RESPONSE - The response of a collection order.
9
+ * @property {string} COLLECTION_ORDER_REQUEST - The request of a collection order.
10
+ */
11
+ var CollectionMetadataTypeEnum;
12
+ (function (CollectionMetadataTypeEnum) {
13
+ CollectionMetadataTypeEnum["COLLECTION_ORDER_RESPONSE"] = "COLLECTION_ORDER_RESPONSE";
14
+ CollectionMetadataTypeEnum["COLLECTION_ORDER_REQUEST"] = "COLLECTION_ORDER_REQUEST";
15
+ })(CollectionMetadataTypeEnum || (exports.CollectionMetadataTypeEnum = CollectionMetadataTypeEnum = {}));
@@ -50,5 +50,7 @@ export declare enum CPProductSubtypeEnum {
50
50
  P2P_CREDIT = "P2P_CREDIT",
51
51
  P2P_DEBIT = "P2P_DEBIT",
52
52
  EXTERNAL_TRANSFER_CREDIT = "EXTERNAL_TRANSFER_CREDIT",
53
- EXTERNAL_TRANSFER_DEBIT = "EXTERNAL_TRANSFER_DEBIT"
53
+ EXTERNAL_TRANSFER_DEBIT = "EXTERNAL_TRANSFER_DEBIT",
54
+ WEBHOOK_MAIN_ACCOUNT_TRANSACTION = "WEBHOOK_MAIN_ACCOUNT_TRANSACTION",// Subtipo asociado al proceso de recepción de transacciones por el webhook del main account
55
+ WEBHOOK_SUB_ACCOUNT_TRANSACTION = "WEBHOOK_SUB_ACCOUNT_TRANSACTION"
54
56
  }
@@ -55,4 +55,6 @@ var CPProductSubtypeEnum;
55
55
  CPProductSubtypeEnum["P2P_DEBIT"] = "P2P_DEBIT";
56
56
  CPProductSubtypeEnum["EXTERNAL_TRANSFER_CREDIT"] = "EXTERNAL_TRANSFER_CREDIT";
57
57
  CPProductSubtypeEnum["EXTERNAL_TRANSFER_DEBIT"] = "EXTERNAL_TRANSFER_DEBIT";
58
+ CPProductSubtypeEnum["WEBHOOK_MAIN_ACCOUNT_TRANSACTION"] = "WEBHOOK_MAIN_ACCOUNT_TRANSACTION";
59
+ CPProductSubtypeEnum["WEBHOOK_SUB_ACCOUNT_TRANSACTION"] = "WEBHOOK_SUB_ACCOUNT_TRANSACTION"; // Subtipo asociado al proceso de recepción de transacciones por el webhook del sub account
58
60
  })(CPProductSubtypeEnum || (exports.CPProductSubtypeEnum = CPProductSubtypeEnum = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "2.0.49",
3
+ "version": "2.0.51",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -60,5 +60,7 @@ export class CentralPaymentsTransactionInfo {
60
60
  transactionNumber?: string;
61
61
  transactionReceiveDate?: string;
62
62
  transactionType?: string;
63
+ relatedCollectorContractId?: string;
64
+ relatedCreditContractId?: string;
63
65
  updatedAt?: string;
64
66
  }
@@ -50,5 +50,7 @@ export enum CPProductSubtypeEnum {
50
50
  P2P_CREDIT = "P2P_CREDIT",
51
51
  P2P_DEBIT = "P2P_DEBIT",
52
52
  EXTERNAL_TRANSFER_CREDIT = "EXTERNAL_TRANSFER_CREDIT",
53
- EXTERNAL_TRANSFER_DEBIT = "EXTERNAL_TRANSFER_DEBIT"
53
+ EXTERNAL_TRANSFER_DEBIT = "EXTERNAL_TRANSFER_DEBIT",
54
+ WEBHOOK_MAIN_ACCOUNT_TRANSACTION = "WEBHOOK_MAIN_ACCOUNT_TRANSACTION", // Subtipo asociado al proceso de recepción de transacciones por el webhook del main account
55
+ WEBHOOK_SUB_ACCOUNT_TRANSACTION = "WEBHOOK_SUB_ACCOUNT_TRANSACTION" // Subtipo asociado al proceso de recepción de transacciones por el webhook del sub account
54
56
  }