resurgence-data 1.1.24 → 1.1.26

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.
@@ -72,7 +72,7 @@ export interface FlutterwaveCardChargePayload {
72
72
  txRef: string;
73
73
  redirectUrl: string;
74
74
  enckey: string;
75
- authorization: FlutterwavePinAuthorizationDTO | FlutterwaveCardAVSAuthorizationDTO;
75
+ authorization?: FlutterwavePinAuthorizationDTO | FlutterwaveCardAVSAuthorizationDTO;
76
76
  }
77
77
  export interface Flutterwave3DSChargeResponseDTO {
78
78
  id: number;
@@ -1 +1,2 @@
1
1
  export * from "./payment-request.dto";
2
+ export * from "./payment.data";
@@ -15,3 +15,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./payment-request.dto"), exports);
18
+ __exportStar(require("./payment.data"), exports);
@@ -0,0 +1,9 @@
1
+ export declare class PaymentDto {
2
+ id: string;
3
+ paymentRequestId: string;
4
+ billerId: string;
5
+ processorId: string;
6
+ processorReference: string;
7
+ processorResponse?: any;
8
+ paymentType: string;
9
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PaymentDto = void 0;
4
+ class PaymentDto {
5
+ }
6
+ exports.PaymentDto = PaymentDto;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "resurgence-data",
3
- "version": "1.1.24",
3
+ "version": "1.1.26",
4
4
  "description": "DTOs and shareable resources",
5
5
  "module": "dist/index.js",
6
6
  "main": "dist/index.js",
@@ -75,7 +75,7 @@ export interface FlutterwaveCardChargePayload {
75
75
  txRef: string;
76
76
  redirectUrl: string;
77
77
  enckey: string;
78
- authorization: FlutterwavePinAuthorizationDTO | FlutterwaveCardAVSAuthorizationDTO;
78
+ authorization?: FlutterwavePinAuthorizationDTO | FlutterwaveCardAVSAuthorizationDTO;
79
79
  }
80
80
 
81
81
  export interface Flutterwave3DSChargeResponseDTO {
@@ -1 +1,2 @@
1
1
  export * from "./payment-request.dto";
2
+ export * from "./payment.data";
@@ -0,0 +1,9 @@
1
+ export class PaymentDto {
2
+ id: string;
3
+ paymentRequestId: string;
4
+ billerId: string;
5
+ processorId: string;
6
+ processorReference: string;
7
+ processorResponse?: any;
8
+ paymentType: string;
9
+ }