@fiado/type-kit 2.0.64 → 2.0.65

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.
@@ -0,0 +1,10 @@
1
+ export declare class ProviderPreAuthRenewalRequest {
2
+ idempotencyKey: string;
3
+ ownerDirectoryId: string;
4
+ originalTransactionId: string;
5
+ externalAccountId: string;
6
+ amount: number;
7
+ currencyId: string;
8
+ originalTransactionNumber?: string;
9
+ originalRelatedTransactionId?: string;
10
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ProviderPreAuthRenewalRequest = void 0;
4
+ class ProviderPreAuthRenewalRequest {
5
+ }
6
+ exports.ProviderPreAuthRenewalRequest = ProviderPreAuthRenewalRequest;
@@ -0,0 +1,9 @@
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
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ProviderPreAuthRenewalResponse = void 0;
4
+ class ProviderPreAuthRenewalResponse {
5
+ }
6
+ exports.ProviderPreAuthRenewalResponse = ProviderPreAuthRenewalResponse;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "2.0.64",
3
+ "version": "2.0.65",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -0,0 +1,10 @@
1
+ export class ProviderPreAuthRenewalRequest {
2
+ idempotencyKey: string;
3
+ ownerDirectoryId: string;
4
+ originalTransactionId: string;
5
+ externalAccountId: string;
6
+ amount: number;
7
+ currencyId: string;
8
+ originalTransactionNumber?: string;
9
+ originalRelatedTransactionId?: string;
10
+ }
@@ -0,0 +1,10 @@
1
+ import { TransactionStatusEnum } from "../../transaction/enums/TransactionStatusEnum";
2
+
3
+ export class ProviderPreAuthRenewalResponse {
4
+ idempotencyKey: string;
5
+ originalTransactionId: string;
6
+ originalTransactionNumber: string;
7
+ transactionId: string;
8
+ transactionNumber: string;
9
+ status?: TransactionStatusEnum;
10
+ }