@rocketlink/crm-model 1.0.281 → 1.0.283
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/dist/dtos/inbound-webhook.request.dto.d.ts +9 -0
- package/dist/dtos/inbound-webhook.request.dto.d.ts.map +1 -0
- package/dist/gateways/adapters/model/transactionFinXP.model.d.ts +2 -2
- package/dist/gateways/adapters/model/transactionFinXP.model.js +2 -2
- package/dist/gateways/adapters/model/transactionNovalNet.model.d.ts +1 -1
- package/dist/gateways/adapters/model/transactionNovalNet.model.js +1 -1
- package/dist/index.d.ts +3 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -2
- package/dist/model/constants/gateway.constants.d.ts +5 -5
- package/dist/model/constants/gateway.constants.js +6 -6
- package/dist/model/constants/inbound-webhook.constants.d.ts +7 -0
- package/dist/model/constants/inbound-webhook.constants.d.ts.map +1 -0
- package/dist/model/constants/inbound-webhook.constants.js +10 -0
- package/dist/model/inbound-webhook.model.d.ts +13 -0
- package/dist/model/inbound-webhook.model.d.ts.map +1 -0
- package/dist/model/providerError.model.d.ts +2 -1
- package/dist/model/providerError.model.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/dtos/inbound-webhook.request.dto.ts +9 -0
- package/src/gateways/adapters/model/transactionFinXP.model.ts +4 -4
- package/src/gateways/adapters/model/transactionNovalNet.model.ts +2 -2
- package/src/index.ts +3 -2
- package/src/model/constants/gateway.constants.ts +6 -6
- package/src/model/constants/inbound-webhook.constants.ts +6 -0
- package/src/model/inbound-webhook.model.ts +13 -0
- package/src/model/providerError.model.ts +2 -1
- package/dist/gateways/providers/dtos/webhook.genesis.request.dto.d.ts +0 -71
- package/dist/gateways/providers/dtos/webhook.genesis.request.dto.d.ts.map +0 -1
- package/dist/gateways/providers/dtos/webhook.genesis.response.dto.d.ts +0 -3
- package/dist/gateways/providers/dtos/webhook.genesis.response.dto.d.ts.map +0 -1
- package/src/gateways/providers/dtos/webhook.genesis.request.dto.ts +0 -71
- package/src/gateways/providers/dtos/webhook.genesis.response.dto.ts +0 -3
- /package/dist/{gateways/providers/dtos/webhook.genesis.request.dto.js → dtos/inbound-webhook.request.dto.js} +0 -0
- /package/dist/{gateways/providers/dtos/webhook.genesis.response.dto.js → model/inbound-webhook.model.js} +0 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PaginatedRequest } from "./common/paginated.request.dto";
|
|
2
|
+
export interface InboundWebhookRequest extends PaginatedRequest {
|
|
3
|
+
id?: number;
|
|
4
|
+
adapterCode?: string;
|
|
5
|
+
midId?: number;
|
|
6
|
+
uniqueId?: string;
|
|
7
|
+
status?: string;
|
|
8
|
+
}
|
|
9
|
+
//# sourceMappingURL=inbound-webhook.request.dto.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"inbound-webhook.request.dto.d.ts","sourceRoot":"","sources":["../../src/dtos/inbound-webhook.request.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AAElE,MAAM,WAAW,qBAAsB,SAAQ,gBAAgB;IAC7D,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB"}
|
|
@@ -5,7 +5,7 @@ export type TransactionType = TransactionFinXP;
|
|
|
5
5
|
export declare function isTransactionFinXP(t: Transaction): t is TransactionFinXP;
|
|
6
6
|
export declare function isTransactionFinXPChargeback(t: Transaction): t is TransactionFinXPChargeback;
|
|
7
7
|
export interface TransactionFinXP extends Transaction {
|
|
8
|
-
adapter: typeof ADAPTERS.
|
|
8
|
+
adapter: typeof ADAPTERS.FINXP;
|
|
9
9
|
provider: PROVIDERS;
|
|
10
10
|
id?: number;
|
|
11
11
|
status?: typeof TRANSACTION_STATUS_FINXP;
|
|
@@ -64,7 +64,7 @@ export interface TransactionFinXP extends Transaction {
|
|
|
64
64
|
updatedAt?: Date;
|
|
65
65
|
}
|
|
66
66
|
export interface TransactionFinXPChargeback extends Transaction {
|
|
67
|
-
adapter: typeof ADAPTERS.
|
|
67
|
+
adapter: typeof ADAPTERS.FINXP;
|
|
68
68
|
id?: number;
|
|
69
69
|
status?: string;
|
|
70
70
|
chargebackDate?: string;
|
|
@@ -5,10 +5,10 @@ exports.isTransactionFinXP = isTransactionFinXP;
|
|
|
5
5
|
exports.isTransactionFinXPChargeback = isTransactionFinXPChargeback;
|
|
6
6
|
const gateway_constants_1 = require("../../../model/constants/gateway.constants");
|
|
7
7
|
function isTransactionFinXP(t) {
|
|
8
|
-
return t?.adapter === gateway_constants_1.ADAPTERS.
|
|
8
|
+
return t?.adapter === gateway_constants_1.ADAPTERS.FINXP;
|
|
9
9
|
}
|
|
10
10
|
function isTransactionFinXPChargeback(t) {
|
|
11
|
-
return t?.adapter === gateway_constants_1.ADAPTERS.
|
|
11
|
+
return t?.adapter === gateway_constants_1.ADAPTERS.FINXP;
|
|
12
12
|
}
|
|
13
13
|
exports.finXPCSVToTransactionColumn = {
|
|
14
14
|
status: "STATUS",
|
|
@@ -3,7 +3,7 @@ import { ADAPTERS, PROVIDERS } from "../../../model/constants/gateway.constants"
|
|
|
3
3
|
import { NOVALNET_STATUS, NOVALNET_STATUS_DESC, NOVALNET_TRANSACTION_TYPE } from "@/gateways/adapters/model/transactionNovalNet.constants";
|
|
4
4
|
export declare function isTransactionNovalnet(t: Transaction): t is TransactionNovalNet;
|
|
5
5
|
export interface TransactionNovalNet extends Transaction {
|
|
6
|
-
adapter: typeof ADAPTERS.
|
|
6
|
+
adapter: typeof ADAPTERS.NOVALNET;
|
|
7
7
|
provider: PROVIDERS;
|
|
8
8
|
id?: number;
|
|
9
9
|
date?: string;
|
|
@@ -4,7 +4,7 @@ exports.novalNetTransactionColumnValues = exports.novalNetTransactionColumnKeys
|
|
|
4
4
|
exports.isTransactionNovalnet = isTransactionNovalnet;
|
|
5
5
|
const gateway_constants_1 = require("../../../model/constants/gateway.constants");
|
|
6
6
|
function isTransactionNovalnet(t) {
|
|
7
|
-
return t?.adapter === gateway_constants_1.ADAPTERS.
|
|
7
|
+
return t?.adapter === gateway_constants_1.ADAPTERS.NOVALNET;
|
|
8
8
|
}
|
|
9
9
|
exports.novalNetTransactionColumnMapper = {
|
|
10
10
|
date: "Date",
|
package/dist/index.d.ts
CHANGED
|
@@ -35,14 +35,13 @@ export * from './dtos/subscription.request.dto';
|
|
|
35
35
|
export * from './dtos/transaction.request.dto';
|
|
36
36
|
export * from './gateways/providers/dtos/webhook.rocketpay.request.dto';
|
|
37
37
|
export * from './gateways/providers/dtos/webhook.rocketpay.response.dto';
|
|
38
|
-
export * from './gateways/providers/dtos/webhook.genesis.request.dto';
|
|
39
|
-
export * from './gateways/providers/dtos/webhook.genesis.response.dto';
|
|
40
38
|
export * from './dtos/providerError.request.dto';
|
|
41
39
|
export * from './dtos/role.request.dto';
|
|
42
40
|
export * from './dtos/aclSubject.request.dto';
|
|
43
41
|
export * from './dtos/aclAction.request.dto';
|
|
44
42
|
export * from './dtos/hostedPage.request.dto';
|
|
45
43
|
export * from './dtos/checkout.request.dto';
|
|
44
|
+
export * from './dtos/inbound-webhook.request.dto';
|
|
46
45
|
export * from './mappers/csv/csvRowDataOrder.csv.mapper';
|
|
47
46
|
export * from './mappers/csv/csvRowDataSubscriptionId.csv.mapper';
|
|
48
47
|
export * from './model/constants/lead.constants';
|
|
@@ -59,6 +58,7 @@ export * from './model/constants/job.constants';
|
|
|
59
58
|
export * from './model/constants/event.constants';
|
|
60
59
|
export * from './model/constants/offer.constants';
|
|
61
60
|
export * from './model/constants/acl.constants';
|
|
61
|
+
export * from './model/constants/inbound-webhook.constants';
|
|
62
62
|
export * from './model/campaign.model';
|
|
63
63
|
export * from './model/category.model';
|
|
64
64
|
export * from './model/csv.model';
|
|
@@ -92,6 +92,7 @@ export * from './model/aclSubject.model';
|
|
|
92
92
|
export * from './model/aclAction.model';
|
|
93
93
|
export * from './model/aclRolePermission.model';
|
|
94
94
|
export * from './model/hostedPage.model';
|
|
95
|
+
export * from './model/inbound-webhook.model';
|
|
95
96
|
export * from './gateways/adapters/model/transactionEmp.model';
|
|
96
97
|
export * from './gateways/adapters/model/transactionNovalNet.model';
|
|
97
98
|
export * from './gateways/adapters/model/transactionFinXP.model';
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,YAAY,EAAE,uBAAuB,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAC7G,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AAGnC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,qCAAqC,CAAC;AACpD,cAAc,sCAAsC,CAAC;AACrD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC;AACxC,cAAc,kCAAkC,CAAC;AACjD,cAAc,2BAA2B,CAAC;AAE1C,cAAc,oCAAoC,CAAC;AACnD,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,yBAAyB,CAAC;AACxC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC;AACxC,cAAc,wBAAwB,CAAC;AACvC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,iCAAiC,CAAC;AAChD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,yDAAyD,CAAC;AACxE,cAAc,0DAA0D,CAAC;AACzE,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js
CHANGED
|
@@ -60,14 +60,13 @@ __exportStar(require("./dtos/subscription.request.dto"), exports);
|
|
|
60
60
|
__exportStar(require("./dtos/transaction.request.dto"), exports);
|
|
61
61
|
__exportStar(require("./gateways/providers/dtos/webhook.rocketpay.request.dto"), exports);
|
|
62
62
|
__exportStar(require("./gateways/providers/dtos/webhook.rocketpay.response.dto"), exports);
|
|
63
|
-
__exportStar(require("./gateways/providers/dtos/webhook.genesis.request.dto"), exports);
|
|
64
|
-
__exportStar(require("./gateways/providers/dtos/webhook.genesis.response.dto"), exports);
|
|
65
63
|
__exportStar(require("./dtos/providerError.request.dto"), exports);
|
|
66
64
|
__exportStar(require("./dtos/role.request.dto"), exports);
|
|
67
65
|
__exportStar(require("./dtos/aclSubject.request.dto"), exports);
|
|
68
66
|
__exportStar(require("./dtos/aclAction.request.dto"), exports);
|
|
69
67
|
__exportStar(require("./dtos/hostedPage.request.dto"), exports);
|
|
70
68
|
__exportStar(require("./dtos/checkout.request.dto"), exports);
|
|
69
|
+
__exportStar(require("./dtos/inbound-webhook.request.dto"), exports);
|
|
71
70
|
// Export all Mappers
|
|
72
71
|
__exportStar(require("./mappers/csv/csvRowDataOrder.csv.mapper"), exports);
|
|
73
72
|
__exportStar(require("./mappers/csv/csvRowDataSubscriptionId.csv.mapper"), exports);
|
|
@@ -86,6 +85,7 @@ __exportStar(require("./model/constants/job.constants"), exports);
|
|
|
86
85
|
__exportStar(require("./model/constants/event.constants"), exports);
|
|
87
86
|
__exportStar(require("./model/constants/offer.constants"), exports);
|
|
88
87
|
__exportStar(require("./model/constants/acl.constants"), exports);
|
|
88
|
+
__exportStar(require("./model/constants/inbound-webhook.constants"), exports);
|
|
89
89
|
// Export all Models
|
|
90
90
|
__exportStar(require("./model/campaign.model"), exports);
|
|
91
91
|
__exportStar(require("./model/category.model"), exports);
|
|
@@ -121,6 +121,7 @@ __exportStar(require("./model/aclSubject.model"), exports);
|
|
|
121
121
|
__exportStar(require("./model/aclAction.model"), exports);
|
|
122
122
|
__exportStar(require("./model/aclRolePermission.model"), exports);
|
|
123
123
|
__exportStar(require("./model/hostedPage.model"), exports);
|
|
124
|
+
__exportStar(require("./model/inbound-webhook.model"), exports);
|
|
124
125
|
// Export Gateway Adapters Models
|
|
125
126
|
__exportStar(require("./gateways/adapters/model/transactionEmp.model"), exports);
|
|
126
127
|
__exportStar(require("./gateways/adapters/model/transactionNovalNet.model"), exports);
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export declare const ADAPTERS: {
|
|
2
2
|
EMP: string;
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
FINXP: string;
|
|
4
|
+
PAYNT: string;
|
|
5
|
+
PAYSTRAX: string;
|
|
6
|
+
PAY_BANK_2_BANK: string;
|
|
7
|
+
NOVALNET: string;
|
|
8
8
|
UNKNOWN: string;
|
|
9
9
|
ALL: string;
|
|
10
10
|
};
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.PROVIDERS = exports.ADAPTER_NAME_VALUES = exports.ADAPTERS = void 0;
|
|
4
4
|
exports.ADAPTERS = {
|
|
5
|
-
EMP: "emp", //
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
5
|
+
EMP: "emp", // API-integrated via Genesis/RocketPay providers
|
|
6
|
+
FINXP: "finxp", // Manual (CSV import). Status: pending
|
|
7
|
+
PAYNT: "paynt", // Pending integration
|
|
8
|
+
PAYSTRAX: "paystrax", // Pending integration
|
|
9
|
+
PAY_BANK_2_BANK: "paybank2bank", // Pending integration
|
|
10
|
+
NOVALNET: "novalnet", // Manual (CSV import). All chargebacks in one place
|
|
11
11
|
UNKNOWN: "unknown",
|
|
12
12
|
ALL: "all",
|
|
13
13
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"inbound-webhook.constants.d.ts","sourceRoot":"","sources":["../../../src/model/constants/inbound-webhook.constants.ts"],"names":[],"mappings":"AAAA,oBAAY,sBAAsB;IAChC,QAAQ,aAAa;IACrB,UAAU,eAAe;IACzB,SAAS,cAAc;IACvB,MAAM,WAAW;CAClB"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.INBOUND_WEBHOOK_STATUS = void 0;
|
|
4
|
+
var INBOUND_WEBHOOK_STATUS;
|
|
5
|
+
(function (INBOUND_WEBHOOK_STATUS) {
|
|
6
|
+
INBOUND_WEBHOOK_STATUS["RECEIVED"] = "RECEIVED";
|
|
7
|
+
INBOUND_WEBHOOK_STATUS["PROCESSING"] = "PROCESSING";
|
|
8
|
+
INBOUND_WEBHOOK_STATUS["PROCESSED"] = "PROCESSED";
|
|
9
|
+
INBOUND_WEBHOOK_STATUS["FAILED"] = "FAILED";
|
|
10
|
+
})(INBOUND_WEBHOOK_STATUS || (exports.INBOUND_WEBHOOK_STATUS = INBOUND_WEBHOOK_STATUS = {}));
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { INBOUND_WEBHOOK_STATUS } from './constants/inbound-webhook.constants';
|
|
2
|
+
export interface InboundWebhook {
|
|
3
|
+
id?: number;
|
|
4
|
+
adapterCode?: string;
|
|
5
|
+
rawPayload?: string;
|
|
6
|
+
midId?: number;
|
|
7
|
+
unique_id?: string;
|
|
8
|
+
status?: INBOUND_WEBHOOK_STATUS;
|
|
9
|
+
errorMessage?: string;
|
|
10
|
+
createdAt?: Date;
|
|
11
|
+
updatedAt?: Date;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=inbound-webhook.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"inbound-webhook.model.d.ts","sourceRoot":"","sources":["../../src/model/inbound-webhook.model.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,uCAAuC,CAAC;AAEpF,MAAM,WAAW,cAAc;IAC7B,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,sBAAsB,CAAC;IAChC,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,SAAS,CAAC,EAAE,IAAI,CAAC;IACjB,SAAS,CAAC,EAAE,IAAI,CAAC;CAClB"}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { ADAPTERS } from "./constants/gateway.constants";
|
|
1
|
+
import { ADAPTERS, PROVIDERS } from "./constants/gateway.constants";
|
|
2
2
|
export interface ProviderError {
|
|
3
3
|
id?: number;
|
|
4
4
|
adapter: ADAPTERS;
|
|
5
|
+
provider?: PROVIDERS;
|
|
5
6
|
midId?: number;
|
|
6
7
|
orderId?: number;
|
|
7
8
|
amount?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"providerError.model.d.ts","sourceRoot":"","sources":["../../src/model/providerError.model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;
|
|
1
|
+
{"version":3,"file":"providerError.model.d.ts","sourceRoot":"","sources":["../../src/model/providerError.model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,+BAA+B,CAAC;AAEpE,MAAM,WAAW,aAAa;IAC5B,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,OAAO,EAAE,QAAQ,CAAC;IAClB,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,IAAI,CAAC;IACjB,SAAS,CAAC,EAAE,IAAI,CAAC;CAClB;AAED,4CAA4C;AAC5C,MAAM,MAAM,gBAAgB,GAAG,aAAa,CAAC"}
|
package/package.json
CHANGED
|
@@ -5,15 +5,15 @@ import { TRANSACTION_STATUS_FINXP } from "@/gateways/adapters/model/transactionF
|
|
|
5
5
|
export type TransactionType = TransactionFinXP;
|
|
6
6
|
|
|
7
7
|
export function isTransactionFinXP(t: Transaction): t is TransactionFinXP {
|
|
8
|
-
return t?.adapter === ADAPTERS.
|
|
8
|
+
return t?.adapter === ADAPTERS.FINXP;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
export function isTransactionFinXPChargeback(t: Transaction): t is TransactionFinXPChargeback {
|
|
12
|
-
return t?.adapter === ADAPTERS.
|
|
12
|
+
return t?.adapter === ADAPTERS.FINXP;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
export interface TransactionFinXP extends Transaction {
|
|
16
|
-
adapter: typeof ADAPTERS.
|
|
16
|
+
adapter: typeof ADAPTERS.FINXP;
|
|
17
17
|
provider: PROVIDERS;
|
|
18
18
|
id?: number;
|
|
19
19
|
status?: typeof TRANSACTION_STATUS_FINXP;
|
|
@@ -72,7 +72,7 @@ export interface TransactionFinXP extends Transaction {
|
|
|
72
72
|
updatedAt?: Date;
|
|
73
73
|
}
|
|
74
74
|
export interface TransactionFinXPChargeback extends Transaction {
|
|
75
|
-
adapter: typeof ADAPTERS.
|
|
75
|
+
adapter: typeof ADAPTERS.FINXP;
|
|
76
76
|
id?: number;
|
|
77
77
|
status?: string;
|
|
78
78
|
chargebackDate?: string;
|
|
@@ -3,11 +3,11 @@ import { ADAPTERS, PROVIDERS } from "../../../model/constants/gateway.constants"
|
|
|
3
3
|
import { NOVALNET_STATUS, NOVALNET_STATUS_DESC, NOVALNET_TRANSACTION_TYPE } from "@/gateways/adapters/model/transactionNovalNet.constants";
|
|
4
4
|
|
|
5
5
|
export function isTransactionNovalnet(t: Transaction): t is TransactionNovalNet {
|
|
6
|
-
return t?.adapter === ADAPTERS.
|
|
6
|
+
return t?.adapter === ADAPTERS.NOVALNET;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
export interface TransactionNovalNet extends Transaction {
|
|
10
|
-
adapter: typeof ADAPTERS.
|
|
10
|
+
adapter: typeof ADAPTERS.NOVALNET;
|
|
11
11
|
provider: PROVIDERS;
|
|
12
12
|
id?: number;
|
|
13
13
|
date?: string;
|
package/src/index.ts
CHANGED
|
@@ -39,14 +39,13 @@ export * from './dtos/subscription.request.dto';
|
|
|
39
39
|
export * from './dtos/transaction.request.dto';
|
|
40
40
|
export * from './gateways/providers/dtos/webhook.rocketpay.request.dto';
|
|
41
41
|
export * from './gateways/providers/dtos/webhook.rocketpay.response.dto';
|
|
42
|
-
export * from './gateways/providers/dtos/webhook.genesis.request.dto';
|
|
43
|
-
export * from './gateways/providers/dtos/webhook.genesis.response.dto';
|
|
44
42
|
export * from './dtos/providerError.request.dto';
|
|
45
43
|
export * from './dtos/role.request.dto';
|
|
46
44
|
export * from './dtos/aclSubject.request.dto';
|
|
47
45
|
export * from './dtos/aclAction.request.dto';
|
|
48
46
|
export * from './dtos/hostedPage.request.dto';
|
|
49
47
|
export * from './dtos/checkout.request.dto';
|
|
48
|
+
export * from './dtos/inbound-webhook.request.dto';
|
|
50
49
|
|
|
51
50
|
// Export all Mappers
|
|
52
51
|
export * from './mappers/csv/csvRowDataOrder.csv.mapper';
|
|
@@ -67,6 +66,7 @@ export * from './model/constants/job.constants';
|
|
|
67
66
|
export * from './model/constants/event.constants';
|
|
68
67
|
export * from './model/constants/offer.constants';
|
|
69
68
|
export * from './model/constants/acl.constants';
|
|
69
|
+
export * from './model/constants/inbound-webhook.constants';
|
|
70
70
|
|
|
71
71
|
// Export all Models
|
|
72
72
|
export * from './model/campaign.model';
|
|
@@ -103,6 +103,7 @@ export * from './model/aclSubject.model';
|
|
|
103
103
|
export * from './model/aclAction.model';
|
|
104
104
|
export * from './model/aclRolePermission.model';
|
|
105
105
|
export * from './model/hostedPage.model';
|
|
106
|
+
export * from './model/inbound-webhook.model';
|
|
106
107
|
|
|
107
108
|
// Export Gateway Adapters Models
|
|
108
109
|
export * from './gateways/adapters/model/transactionEmp.model';
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export const ADAPTERS = {
|
|
2
|
-
EMP: "emp",
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
2
|
+
EMP: "emp", // API-integrated via Genesis/RocketPay providers
|
|
3
|
+
FINXP: "finxp", // Manual (CSV import). Status: pending
|
|
4
|
+
PAYNT: "paynt", // Pending integration
|
|
5
|
+
PAYSTRAX: "paystrax", // Pending integration
|
|
6
|
+
PAY_BANK_2_BANK: "paybank2bank", // Pending integration
|
|
7
|
+
NOVALNET: "novalnet", // Manual (CSV import). All chargebacks in one place
|
|
8
8
|
UNKNOWN: "unknown",
|
|
9
9
|
ALL: "all",
|
|
10
10
|
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { INBOUND_WEBHOOK_STATUS } from './constants/inbound-webhook.constants';
|
|
2
|
+
|
|
3
|
+
export interface InboundWebhook {
|
|
4
|
+
id?: number;
|
|
5
|
+
adapterCode?: string;
|
|
6
|
+
rawPayload?: string;
|
|
7
|
+
midId?: number;
|
|
8
|
+
unique_id?: string;
|
|
9
|
+
status?: INBOUND_WEBHOOK_STATUS;
|
|
10
|
+
errorMessage?: string;
|
|
11
|
+
createdAt?: Date;
|
|
12
|
+
updatedAt?: Date;
|
|
13
|
+
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { ADAPTERS } from "./constants/gateway.constants";
|
|
1
|
+
import { ADAPTERS, PROVIDERS } from "./constants/gateway.constants";
|
|
2
2
|
|
|
3
3
|
export interface ProviderError {
|
|
4
4
|
id?: number;
|
|
5
5
|
adapter: ADAPTERS;
|
|
6
|
+
provider?: PROVIDERS;
|
|
6
7
|
midId?: number;
|
|
7
8
|
orderId?: number;
|
|
8
9
|
amount?: string;
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
export interface WebhookGenesisRequest {
|
|
2
|
-
transaction_id: string;
|
|
3
|
-
unique_id?: string;
|
|
4
|
-
transaction_type?: string;
|
|
5
|
-
terminal_token?: string;
|
|
6
|
-
status?: string;
|
|
7
|
-
amount?: string;
|
|
8
|
-
partial_approval?: string;
|
|
9
|
-
signature?: string;
|
|
10
|
-
funds_status?: string;
|
|
11
|
-
account_holder?: string;
|
|
12
|
-
consumer_id?: string;
|
|
13
|
-
token?: string;
|
|
14
|
-
eci?: string;
|
|
15
|
-
event?: string;
|
|
16
|
-
rc_code?: string;
|
|
17
|
-
rc_description?: string;
|
|
18
|
-
avs_response_code?: string;
|
|
19
|
-
avs_response_text?: string;
|
|
20
|
-
cvv_result_code?: string;
|
|
21
|
-
reference_transaction_unique_id?: string;
|
|
22
|
-
authorization_code?: string;
|
|
23
|
-
retrieval_reference_number?: string;
|
|
24
|
-
scheme_response_code?: string;
|
|
25
|
-
recurring_advice_code?: string;
|
|
26
|
-
recurring_advice_text?: string;
|
|
27
|
-
threeds_authentication_flow?: string;
|
|
28
|
-
threeds_method_status?: string;
|
|
29
|
-
threeds_target_protocol_version?: string;
|
|
30
|
-
threeds_concrete_protocol_version?: string;
|
|
31
|
-
threeds_protocol_sub_version?: string;
|
|
32
|
-
threeds_authentication_status_reason_code?: string;
|
|
33
|
-
scheme_transaction_identifier?: string;
|
|
34
|
-
scheme_settlement_date?: string;
|
|
35
|
-
card_brand?: string;
|
|
36
|
-
card_number?: string;
|
|
37
|
-
card_type?: string;
|
|
38
|
-
card_subtype?: string;
|
|
39
|
-
card_issuing_bank?: string;
|
|
40
|
-
card_holder?: string;
|
|
41
|
-
expiration_year?: string;
|
|
42
|
-
expiration_month?: string;
|
|
43
|
-
customer_email?: string;
|
|
44
|
-
customer_phone?: string;
|
|
45
|
-
first_name?: string;
|
|
46
|
-
last_name?: string;
|
|
47
|
-
address1?: string;
|
|
48
|
-
address2?: string;
|
|
49
|
-
zip_code?: string;
|
|
50
|
-
city?: string;
|
|
51
|
-
state?: string;
|
|
52
|
-
country?: string;
|
|
53
|
-
arn?: string;
|
|
54
|
-
bank_account_number?: string;
|
|
55
|
-
bank_identifier_code?: string;
|
|
56
|
-
currency?: string;
|
|
57
|
-
reason_for_not_honoring_exemption?: string;
|
|
58
|
-
sca_exemption_result?: string;
|
|
59
|
-
scheme_transaction_link_id?: string;
|
|
60
|
-
scheme_pan_indicator?: string;
|
|
61
|
-
scheme_pan_tail?: string;
|
|
62
|
-
payment_account_reference?: string;
|
|
63
|
-
scheme_max_settlement_date?: string;
|
|
64
|
-
scheme_authentication_data_quality?: boolean;
|
|
65
|
-
provider_unique_id?: string;
|
|
66
|
-
fraud?: string;
|
|
67
|
-
error_code?: string;
|
|
68
|
-
error_message?: string;
|
|
69
|
-
technical_message?: string;
|
|
70
|
-
}
|
|
71
|
-
//# sourceMappingURL=webhook.genesis.request.dto.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"webhook.genesis.request.dto.d.ts","sourceRoot":"","sources":["../../../../src/gateways/providers/dtos/webhook.genesis.request.dto.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"webhook.genesis.response.dto.d.ts","sourceRoot":"","sources":["../../../../src/gateways/providers/dtos/webhook.genesis.response.dto.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,sBAAsB;CAEtC"}
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
export interface WebhookGenesisRequest {
|
|
3
|
-
transaction_id: string;
|
|
4
|
-
unique_id?: string;
|
|
5
|
-
transaction_type?: string;
|
|
6
|
-
terminal_token?: string;
|
|
7
|
-
status?: string;
|
|
8
|
-
amount?: string;
|
|
9
|
-
partial_approval?: string;
|
|
10
|
-
signature?: string;
|
|
11
|
-
funds_status?: string;
|
|
12
|
-
account_holder?: string;
|
|
13
|
-
consumer_id?: string;
|
|
14
|
-
token?: string;
|
|
15
|
-
eci?: string;
|
|
16
|
-
event?: string;
|
|
17
|
-
rc_code?: string;
|
|
18
|
-
rc_description?: string;
|
|
19
|
-
avs_response_code?: string;
|
|
20
|
-
avs_response_text?: string;
|
|
21
|
-
cvv_result_code?: string;
|
|
22
|
-
reference_transaction_unique_id?: string;
|
|
23
|
-
authorization_code?: string;
|
|
24
|
-
retrieval_reference_number?: string;
|
|
25
|
-
scheme_response_code?: string;
|
|
26
|
-
recurring_advice_code?: string;
|
|
27
|
-
recurring_advice_text?: string;
|
|
28
|
-
threeds_authentication_flow?: string;
|
|
29
|
-
threeds_method_status?: string;
|
|
30
|
-
threeds_target_protocol_version?: string;
|
|
31
|
-
threeds_concrete_protocol_version?: string;
|
|
32
|
-
threeds_protocol_sub_version?: string;
|
|
33
|
-
threeds_authentication_status_reason_code?: string;
|
|
34
|
-
scheme_transaction_identifier?: string;
|
|
35
|
-
scheme_settlement_date?: string;
|
|
36
|
-
card_brand?: string;
|
|
37
|
-
card_number?: string;
|
|
38
|
-
card_type?: string;
|
|
39
|
-
card_subtype?: string;
|
|
40
|
-
card_issuing_bank?: string;
|
|
41
|
-
card_holder?: string;
|
|
42
|
-
expiration_year?: string;
|
|
43
|
-
expiration_month?: string;
|
|
44
|
-
customer_email?: string;
|
|
45
|
-
customer_phone?: string;
|
|
46
|
-
first_name?: string;
|
|
47
|
-
last_name?: string;
|
|
48
|
-
address1?: string;
|
|
49
|
-
address2?: string;
|
|
50
|
-
zip_code?: string;
|
|
51
|
-
city?: string;
|
|
52
|
-
state?: string;
|
|
53
|
-
country?: string;
|
|
54
|
-
arn?: string;
|
|
55
|
-
bank_account_number?: string;
|
|
56
|
-
bank_identifier_code?: string;
|
|
57
|
-
currency?: string;
|
|
58
|
-
reason_for_not_honoring_exemption?: string;
|
|
59
|
-
sca_exemption_result?: string;
|
|
60
|
-
scheme_transaction_link_id?: string;
|
|
61
|
-
scheme_pan_indicator?: string;
|
|
62
|
-
scheme_pan_tail?: string;
|
|
63
|
-
payment_account_reference?: string;
|
|
64
|
-
scheme_max_settlement_date?: string;
|
|
65
|
-
scheme_authentication_data_quality?: boolean;
|
|
66
|
-
provider_unique_id?: string;
|
|
67
|
-
fraud?: string;
|
|
68
|
-
error_code?: string;
|
|
69
|
-
error_message?: string;
|
|
70
|
-
technical_message?: string;
|
|
71
|
-
}
|
|
File without changes
|
|
File without changes
|