@fiado/type-kit 2.0.66 → 2.0.68
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/bin/productCatalog/enums/CPProductSubtypeEnum.d.ts +1 -0
- package/bin/productCatalog/enums/CPProductSubtypeEnum.js +1 -0
- package/bin/transactionProcessor/dtos/ProviderPreAuthRenewalRequest.d.ts +3 -2
- package/package.json +1 -1
- package/src/productCatalog/enums/CPProductSubtypeEnum.ts +1 -0
- package/src/transactionProcessor/dtos/ProviderPreAuthRenewalRequest.ts +4 -2
|
@@ -51,6 +51,7 @@ export declare enum CPProductSubtypeEnum {
|
|
|
51
51
|
P2P_DEBIT = "P2P_DEBIT",
|
|
52
52
|
EXTERNAL_TRANSFER_CREDIT = "EXTERNAL_TRANSFER_CREDIT",
|
|
53
53
|
EXTERNAL_TRANSFER_DEBIT = "EXTERNAL_TRANSFER_DEBIT",
|
|
54
|
+
PRE_AUTH_RENEWAL = "PRE_AUTH_RENEWAL",
|
|
54
55
|
WEBHOOK_MAIN_ACCOUNT_TRANSACTION = "WEBHOOK_MAIN_ACCOUNT_TRANSACTION",// Subtipo asociado al proceso de recepción de transacciones por el webhook del main account
|
|
55
56
|
WEBHOOK_SUB_ACCOUNT_TRANSACTION = "WEBHOOK_SUB_ACCOUNT_TRANSACTION"
|
|
56
57
|
}
|
|
@@ -55,6 +55,7 @@ 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["PRE_AUTH_RENEWAL"] = "PRE_AUTH_RENEWAL";
|
|
58
59
|
CPProductSubtypeEnum["WEBHOOK_MAIN_ACCOUNT_TRANSACTION"] = "WEBHOOK_MAIN_ACCOUNT_TRANSACTION";
|
|
59
60
|
CPProductSubtypeEnum["WEBHOOK_SUB_ACCOUNT_TRANSACTION"] = "WEBHOOK_SUB_ACCOUNT_TRANSACTION"; // Subtipo asociado al proceso de recepción de transacciones por el webhook del sub account
|
|
60
61
|
})(CPProductSubtypeEnum || (exports.CPProductSubtypeEnum = CPProductSubtypeEnum = {}));
|
|
@@ -2,9 +2,10 @@ export declare class ProviderPreAuthRenewalRequest {
|
|
|
2
2
|
idempotencyKey: string;
|
|
3
3
|
ownerDirectoryId: string;
|
|
4
4
|
originalTransactionId: string;
|
|
5
|
+
originalTransactionNumber?: string;
|
|
6
|
+
originalRelatedTransactionId?: string;
|
|
5
7
|
externalAccountId: string;
|
|
6
8
|
amount: number;
|
|
7
9
|
currencyId: string;
|
|
8
|
-
|
|
9
|
-
originalRelatedTransactionId?: string;
|
|
10
|
+
productCatalogId: string;
|
|
10
11
|
}
|
package/package.json
CHANGED
|
@@ -51,6 +51,7 @@ export enum CPProductSubtypeEnum {
|
|
|
51
51
|
P2P_DEBIT = "P2P_DEBIT",
|
|
52
52
|
EXTERNAL_TRANSFER_CREDIT = "EXTERNAL_TRANSFER_CREDIT",
|
|
53
53
|
EXTERNAL_TRANSFER_DEBIT = "EXTERNAL_TRANSFER_DEBIT",
|
|
54
|
+
PRE_AUTH_RENEWAL = "PRE_AUTH_RENEWAL",
|
|
54
55
|
WEBHOOK_MAIN_ACCOUNT_TRANSACTION = "WEBHOOK_MAIN_ACCOUNT_TRANSACTION", // Subtipo asociado al proceso de recepción de transacciones por el webhook del main account
|
|
55
56
|
WEBHOOK_SUB_ACCOUNT_TRANSACTION = "WEBHOOK_SUB_ACCOUNT_TRANSACTION" // Subtipo asociado al proceso de recepción de transacciones por el webhook del sub account
|
|
56
57
|
}
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
export class ProviderPreAuthRenewalRequest {
|
|
2
|
+
|
|
2
3
|
idempotencyKey: string;
|
|
3
4
|
ownerDirectoryId: string;
|
|
4
5
|
originalTransactionId: string;
|
|
6
|
+
originalTransactionNumber?: string;
|
|
7
|
+
originalRelatedTransactionId?: string;
|
|
5
8
|
externalAccountId: string;
|
|
6
9
|
amount: number;
|
|
7
10
|
currencyId: string;
|
|
8
|
-
|
|
9
|
-
originalRelatedTransactionId?: string;
|
|
11
|
+
productCatalogId: string;
|
|
10
12
|
}
|