@fiado/type-kit 2.0.73 → 2.0.74
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/package.json +1 -1
- package/bin/collector/enums/CollectionMetadataTypeEnum.d.ts +0 -11
- package/bin/collector/enums/CollectionMetadataTypeEnum.js +0 -15
- package/bin/transactionProcessor/dtos/AuthorizeRenewalTransactionRequest.d.ts +0 -12
- package/bin/transactionProcessor/dtos/AuthorizeRenewalTransactionRequest.js +0 -6
- package/bin/transactionProcessor/dtos/ProviderPreAuthRenewalRequest.d.ts +0 -12
- package/bin/transactionProcessor/dtos/ProviderPreAuthRenewalRequest.js +0 -6
- package/bin/transactionProcessor/dtos/ProviderPreAuthRenewalResponse.d.ts +0 -9
- package/bin/transactionProcessor/dtos/ProviderPreAuthRenewalResponse.js +0 -6
package/package.json
CHANGED
|
@@ -1,11 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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 = {}));
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { OperationEnum } from "../enums/OperationEnum";
|
|
2
|
-
import { PocketOperationTypeEnum } from "../enums/PocketOperationTypeEnum";
|
|
3
|
-
export declare class AuthorizeRenewalTransactionRequest {
|
|
4
|
-
idempotencyKey: string;
|
|
5
|
-
originalTransactionId: string;
|
|
6
|
-
externalAccountId: string;
|
|
7
|
-
amount: number;
|
|
8
|
-
transactionNumber?: string;
|
|
9
|
-
operation: OperationEnum;
|
|
10
|
-
operationType: PocketOperationTypeEnum;
|
|
11
|
-
originalRelatedId?: string;
|
|
12
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export declare class ProviderPreAuthRenewalRequest {
|
|
2
|
-
idempotencyKey: string;
|
|
3
|
-
ownerDirectoryId: string;
|
|
4
|
-
originalTransactionId: string;
|
|
5
|
-
originalTransactionNumber?: string;
|
|
6
|
-
originalRelatedTransactionId?: string;
|
|
7
|
-
originalCreditContractId?: string;
|
|
8
|
-
externalAccountId: string;
|
|
9
|
-
amount: number;
|
|
10
|
-
currencyId: string;
|
|
11
|
-
productCatalogId: string;
|
|
12
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { TransactionStatusEnum } from "../../transaction/enums/TransactionStatusEnum";
|
|
2
|
-
export declare class ProviderPreAuthRenewalResponse {
|
|
3
|
-
idempotencyKey: string;
|
|
4
|
-
originalTransactionId: string;
|
|
5
|
-
originalTransactionNumber: string;
|
|
6
|
-
transactionId: string;
|
|
7
|
-
transactionNumber: string;
|
|
8
|
-
status?: TransactionStatusEnum;
|
|
9
|
-
}
|