@fiado/type-kit 2.0.77 → 2.0.79

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,19 @@
1
+ export declare class CentralWebhookEventRequest {
2
+ event_id?: string;
3
+ event_type: string;
4
+ event_time?: string;
5
+ entity_type?: string;
6
+ entity_id?: string;
7
+ client?: string;
8
+ program?: string;
9
+ partner?: string;
10
+ context?: string;
11
+ transaction?: any;
12
+ card?: any;
13
+ bank_transfer?: any;
14
+ cardholder?: any;
15
+ p2p?: any;
16
+ reward?: any;
17
+ payload?: any;
18
+ extended_payload?: any;
19
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CentralWebhookEventRequest = void 0;
4
+ class CentralWebhookEventRequest {
5
+ }
6
+ exports.CentralWebhookEventRequest = CentralWebhookEventRequest;
@@ -6,6 +6,7 @@ export * from './dtos/GetMerchantLocationsQueryParams';
6
6
  export * from './dtos/GetMerchantLocationsResponse';
7
7
  export * from './dtos/MerchantLocation';
8
8
  export * from './dtos/CentralPaymentsTransactionInfo';
9
+ export * from './dtos/CentralWebhookEventRequest';
9
10
  export * from './enums/ServiceStatusEnum';
10
11
  export * from './enums/MerchantLocationDistanceUnitEnum';
11
12
  export * from './enums/CentralPaymentTransactionTypeEnum';
@@ -23,6 +23,7 @@ __exportStar(require("./dtos/GetMerchantLocationsQueryParams"), exports);
23
23
  __exportStar(require("./dtos/GetMerchantLocationsResponse"), exports);
24
24
  __exportStar(require("./dtos/MerchantLocation"), exports);
25
25
  __exportStar(require("./dtos/CentralPaymentsTransactionInfo"), exports);
26
+ __exportStar(require("./dtos/CentralWebhookEventRequest"), exports);
26
27
  // central payments enums
27
28
  __exportStar(require("./enums/ServiceStatusEnum"), exports);
28
29
  __exportStar(require("./enums/MerchantLocationDistanceUnitEnum"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "2.0.77",
3
+ "version": "2.0.79",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -0,0 +1,19 @@
1
+ export class CentralWebhookEventRequest {
2
+ event_id?: string;
3
+ event_type: string;
4
+ event_time?: string;
5
+ entity_type?: string;
6
+ entity_id?: string;
7
+ client?: string;
8
+ program?: string;
9
+ partner?: string;
10
+ context?: string;
11
+ transaction?: any;
12
+ card?: any;
13
+ bank_transfer?: any;
14
+ cardholder?: any;
15
+ p2p?: any;
16
+ reward?: any;
17
+ payload?: any;
18
+ extended_payload?: any;
19
+ }
@@ -8,6 +8,7 @@ export * from './dtos/GetMerchantLocationsQueryParams';
8
8
  export * from './dtos/GetMerchantLocationsResponse';
9
9
  export * from './dtos/MerchantLocation';
10
10
  export * from './dtos/CentralPaymentsTransactionInfo';
11
+ export * from './dtos/CentralWebhookEventRequest';
11
12
 
12
13
  // central payments enums
13
14
  export * from './enums/ServiceStatusEnum';