@fiado/type-kit 3.43.1 → 3.45.0
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/bin/index.d.ts +1 -0
- package/bin/index.js +2 -1
- package/bin/messagesConnector/dtos/SendMessageRequest.d.ts +20 -0
- package/bin/messagesConnector/dtos/SendMessageRequest.js +118 -0
- package/bin/messagesConnector/dtos/VerifyOtpRequest.d.ts +5 -0
- package/bin/messagesConnector/dtos/VerifyOtpRequest.js +34 -0
- package/bin/messagesConnector/index.d.ts +2 -0
- package/bin/messagesConnector/index.js +2 -0
- package/bin/walletFunding/dtos/AuthorizeWalletFundingRequest.d.ts +13 -0
- package/bin/walletFunding/dtos/AuthorizeWalletFundingRequest.js +63 -0
- package/bin/walletFunding/dtos/AuthorizeWalletFundingResponse.d.ts +10 -0
- package/bin/walletFunding/dtos/AuthorizeWalletFundingResponse.js +6 -0
- package/bin/walletFunding/dtos/CancelFundingReferenceRequest.d.ts +5 -0
- package/bin/walletFunding/dtos/CancelFundingReferenceRequest.js +31 -0
- package/bin/walletFunding/dtos/CancelFundingReferenceResponse.d.ts +7 -0
- package/bin/walletFunding/dtos/CancelFundingReferenceResponse.js +6 -0
- package/bin/walletFunding/dtos/CancelWalletFundingRequest.d.ts +3 -0
- package/bin/walletFunding/dtos/CancelWalletFundingRequest.js +21 -0
- package/bin/walletFunding/dtos/CancelWalletFundingResponse.d.ts +7 -0
- package/bin/walletFunding/dtos/CancelWalletFundingResponse.js +6 -0
- package/bin/walletFunding/dtos/CreateFundingReferenceRequest.d.ts +13 -0
- package/bin/walletFunding/dtos/CreateFundingReferenceRequest.js +65 -0
- package/bin/walletFunding/dtos/CreateFundingReferenceResponse.d.ts +10 -0
- package/bin/walletFunding/dtos/CreateFundingReferenceResponse.js +6 -0
- package/bin/walletFunding/dtos/CreditWalletFundingRequest.d.ts +10 -0
- package/bin/walletFunding/dtos/CreditWalletFundingRequest.js +55 -0
- package/bin/walletFunding/dtos/CreditWalletFundingResponse.d.ts +8 -0
- package/bin/walletFunding/dtos/CreditWalletFundingResponse.js +6 -0
- package/bin/walletFunding/dtos/FundingProviderReferenceData.d.ts +12 -0
- package/bin/walletFunding/dtos/FundingProviderReferenceData.js +9 -0
- package/bin/walletFunding/dtos/ListFundingReferencesRequest.d.ts +5 -0
- package/bin/walletFunding/dtos/ListFundingReferencesRequest.js +27 -0
- package/bin/walletFunding/dtos/ListFundingReferencesResponse.d.ts +4 -0
- package/bin/walletFunding/dtos/ListFundingReferencesResponse.js +6 -0
- package/bin/walletFunding/dtos/ListWalletFundingReferencesRequest.d.ts +6 -0
- package/bin/walletFunding/dtos/ListWalletFundingReferencesRequest.js +28 -0
- package/bin/walletFunding/dtos/ListWalletFundingReferencesResponse.d.ts +16 -0
- package/bin/walletFunding/dtos/ListWalletFundingReferencesResponse.js +9 -0
- package/bin/walletFunding/dtos/ReverseWalletFundingRequest.d.ts +9 -0
- package/bin/walletFunding/dtos/ReverseWalletFundingRequest.js +51 -0
- package/bin/walletFunding/dtos/ReverseWalletFundingResponse.d.ts +7 -0
- package/bin/walletFunding/dtos/ReverseWalletFundingResponse.js +6 -0
- package/bin/walletFunding/dtos/ValidateWalletFundingRequest.d.ts +9 -0
- package/bin/walletFunding/dtos/ValidateWalletFundingRequest.js +51 -0
- package/bin/walletFunding/dtos/ValidateWalletFundingResponse.d.ts +6 -0
- package/bin/walletFunding/dtos/ValidateWalletFundingResponse.js +6 -0
- package/bin/walletFunding/dtos/index.d.ts +19 -0
- package/bin/walletFunding/dtos/index.js +35 -0
- package/bin/walletFunding/enums/FundingMethodEnum.d.ts +3 -0
- package/bin/walletFunding/enums/FundingMethodEnum.js +7 -0
- package/bin/walletFunding/enums/WalletFundingErrorCodeEnum.d.ts +16 -0
- package/bin/walletFunding/enums/WalletFundingErrorCodeEnum.js +20 -0
- package/bin/walletFunding/enums/WalletFundingModeEnum.d.ts +4 -0
- package/bin/walletFunding/enums/WalletFundingModeEnum.js +8 -0
- package/bin/walletFunding/enums/WalletFundingPaymentStatusEnum.d.ts +6 -0
- package/bin/walletFunding/enums/WalletFundingPaymentStatusEnum.js +10 -0
- package/bin/walletFunding/enums/WalletFundingReferenceStatusEnum.d.ts +6 -0
- package/bin/walletFunding/enums/WalletFundingReferenceStatusEnum.js +10 -0
- package/bin/walletFunding/enums/WalletFundingRefundReasonEnum.d.ts +8 -0
- package/bin/walletFunding/enums/WalletFundingRefundReasonEnum.js +12 -0
- package/bin/walletFunding/enums/index.d.ts +6 -0
- package/bin/walletFunding/enums/index.js +22 -0
- package/bin/walletFunding/index.d.ts +2 -0
- package/bin/walletFunding/index.js +18 -0
- package/package.json +1 -1
- package/src/index.ts +1 -0
- package/src/messagesConnector/dtos/SendMessageRequest.ts +23 -0
- package/src/messagesConnector/dtos/VerifyOtpRequest.ts +8 -0
- package/src/messagesConnector/index.ts +2 -0
- package/src/walletFunding/dtos/AuthorizeWalletFundingRequest.ts +18 -0
- package/src/walletFunding/dtos/AuthorizeWalletFundingResponse.ts +11 -0
- package/src/walletFunding/dtos/CancelFundingReferenceRequest.ts +7 -0
- package/src/walletFunding/dtos/CancelFundingReferenceResponse.ts +8 -0
- package/src/walletFunding/dtos/CancelWalletFundingRequest.ts +5 -0
- package/src/walletFunding/dtos/CancelWalletFundingResponse.ts +8 -0
- package/src/walletFunding/dtos/CreateFundingReferenceRequest.ts +18 -0
- package/src/walletFunding/dtos/CreateFundingReferenceResponse.ts +11 -0
- package/src/walletFunding/dtos/CreditWalletFundingRequest.ts +12 -0
- package/src/walletFunding/dtos/CreditWalletFundingResponse.ts +9 -0
- package/src/walletFunding/dtos/FundingProviderReferenceData.ts +10 -0
- package/src/walletFunding/dtos/ListFundingReferencesRequest.ts +7 -0
- package/src/walletFunding/dtos/ListFundingReferencesResponse.ts +5 -0
- package/src/walletFunding/dtos/ListWalletFundingReferencesRequest.ts +8 -0
- package/src/walletFunding/dtos/ListWalletFundingReferencesResponse.ts +18 -0
- package/src/walletFunding/dtos/ReverseWalletFundingRequest.ts +11 -0
- package/src/walletFunding/dtos/ReverseWalletFundingResponse.ts +8 -0
- package/src/walletFunding/dtos/ValidateWalletFundingRequest.ts +11 -0
- package/src/walletFunding/dtos/ValidateWalletFundingResponse.ts +7 -0
- package/src/walletFunding/dtos/index.ts +19 -0
- package/src/walletFunding/enums/FundingMethodEnum.ts +3 -0
- package/src/walletFunding/enums/WalletFundingErrorCodeEnum.ts +16 -0
- package/src/walletFunding/enums/WalletFundingModeEnum.ts +4 -0
- package/src/walletFunding/enums/WalletFundingPaymentStatusEnum.ts +6 -0
- package/src/walletFunding/enums/WalletFundingReferenceStatusEnum.ts +6 -0
- package/src/walletFunding/enums/WalletFundingRefundReasonEnum.ts +8 -0
- package/src/walletFunding/enums/index.ts +6 -0
- package/src/walletFunding/index.ts +2 -0
package/bin/index.d.ts
CHANGED
|
@@ -76,4 +76,5 @@ export * as MessagesConnector from './messagesConnector';
|
|
|
76
76
|
export * as CognitoBackofficeConnector from './cognitoBackofficeConnector';
|
|
77
77
|
export * as PlatformRbac from './platformRbac';
|
|
78
78
|
export * as Remittance from './remittance';
|
|
79
|
+
export * as WalletFunding from './walletFunding';
|
|
79
80
|
export * from './messaging';
|
package/bin/index.js
CHANGED
|
@@ -37,7 +37,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
37
37
|
};
|
|
38
38
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
39
|
exports.Pricelist = exports.Company = exports.Services = exports.AccountIssuanceBusiness = exports.AppSelectionData = exports.Device = exports.Observations = exports.IssuanceBusiness = exports.Blacklist = exports.CentralPayments = exports.Helpdesk = exports.FiadoApiResponse = exports.Auth = exports.LegalDocumentsBusiness = exports.Role = exports.STPAccount = exports.RiskProfile = exports.FraudPreventionEngine = exports.BBVARst = exports.Stp = exports.BenefitCenter = exports.BankAccount = exports.P2pContact = exports.CreditContract = exports.Contract = exports.ProductCatalog = exports.ContactInfo = exports.Transaction = exports.TransactionProcessor = exports.GenericMessage = exports.EventBridgeMessage = exports.SessionActivity = exports.NotificationMessages = exports.ServicePayment = exports.Header = exports.Identity = exports.Group = exports.File = exports.ExchangeRate = exports.Directory = exports.Currency = exports.Country = exports.Card = exports.Authentication = exports.App = exports.Address = exports.Beneficiary = exports.Activity = exports.Account = exports.Crypto = void 0;
|
|
40
|
-
exports.Remittance = exports.PlatformRbac = exports.CognitoBackofficeConnector = exports.MessagesConnector = exports.Mdm = exports.MilestoneBusiness = exports.CirculoCredito = exports.CreditStatements = exports.Sentry = exports.AiEngine = exports.Funnel = exports.TeamsConnector = exports.PlatformErrorEvents = exports.CustomerFile = exports.CreditBackoffice = exports.CreditDashboard = exports.CreditEngine = exports.Credit = exports.ComissionBusiness = exports.ReferralBusiness = exports.ZendeskMessaging = exports.NotificationWS = exports.Event = exports.PayrollBusiness = exports.Cnbv = exports.DirectorySetting = exports.InvoiceCollector = exports.Collector = void 0;
|
|
40
|
+
exports.WalletFunding = exports.Remittance = exports.PlatformRbac = exports.CognitoBackofficeConnector = exports.MessagesConnector = exports.Mdm = exports.MilestoneBusiness = exports.CirculoCredito = exports.CreditStatements = exports.Sentry = exports.AiEngine = exports.Funnel = exports.TeamsConnector = exports.PlatformErrorEvents = exports.CustomerFile = exports.CreditBackoffice = exports.CreditDashboard = exports.CreditEngine = exports.Credit = exports.ComissionBusiness = exports.ReferralBusiness = exports.ZendeskMessaging = exports.NotificationWS = exports.Event = exports.PayrollBusiness = exports.Cnbv = exports.DirectorySetting = exports.InvoiceCollector = exports.Collector = void 0;
|
|
41
41
|
exports.Crypto = __importStar(require("./crypto"));
|
|
42
42
|
exports.Account = __importStar(require("./account"));
|
|
43
43
|
exports.Activity = __importStar(require("./activity"));
|
|
@@ -121,4 +121,5 @@ exports.CognitoBackofficeConnector = __importStar(require("./cognitoBackofficeCo
|
|
|
121
121
|
// platform-rbac-business — migrar Permission/Scope/AuthContext/RoleAssignmentInfo a `rbac/`).
|
|
122
122
|
exports.PlatformRbac = __importStar(require("./platformRbac"));
|
|
123
123
|
exports.Remittance = __importStar(require("./remittance"));
|
|
124
|
+
exports.WalletFunding = __importStar(require("./walletFunding"));
|
|
124
125
|
__exportStar(require("./messaging"), exports);
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { DeliveryChannelEnum } from '../../messaging';
|
|
2
|
+
export declare class SendMessageRequest {
|
|
3
|
+
channelType: DeliveryChannelEnum;
|
|
4
|
+
messageType: string;
|
|
5
|
+
directoryId: string;
|
|
6
|
+
typeOfDirectory: string;
|
|
7
|
+
language: string;
|
|
8
|
+
country: string;
|
|
9
|
+
destination?: string;
|
|
10
|
+
var1?: string;
|
|
11
|
+
var2?: string;
|
|
12
|
+
var3?: string;
|
|
13
|
+
var4?: string;
|
|
14
|
+
var5?: string;
|
|
15
|
+
beneficiaryDirectoryId?: string;
|
|
16
|
+
beneficiaryTypeOfDirectoryId?: string;
|
|
17
|
+
options?: Record<string, unknown>;
|
|
18
|
+
referenceMessageId?: string;
|
|
19
|
+
transactionNumber?: string;
|
|
20
|
+
}
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.SendMessageRequest = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
const messaging_1 = require("../../messaging");
|
|
16
|
+
class SendMessageRequest {
|
|
17
|
+
}
|
|
18
|
+
exports.SendMessageRequest = SendMessageRequest;
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, class_transformer_1.Expose)(),
|
|
21
|
+
(0, class_validator_1.IsEnum)(messaging_1.DeliveryChannelEnum),
|
|
22
|
+
__metadata("design:type", String)
|
|
23
|
+
], SendMessageRequest.prototype, "channelType", void 0);
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, class_transformer_1.Expose)(),
|
|
26
|
+
(0, class_validator_1.IsString)(),
|
|
27
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
28
|
+
__metadata("design:type", String)
|
|
29
|
+
], SendMessageRequest.prototype, "messageType", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, class_transformer_1.Expose)(),
|
|
32
|
+
(0, class_validator_1.IsUUID)(),
|
|
33
|
+
__metadata("design:type", String)
|
|
34
|
+
], SendMessageRequest.prototype, "directoryId", void 0);
|
|
35
|
+
__decorate([
|
|
36
|
+
(0, class_transformer_1.Expose)(),
|
|
37
|
+
(0, class_validator_1.IsString)(),
|
|
38
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
39
|
+
__metadata("design:type", String)
|
|
40
|
+
], SendMessageRequest.prototype, "typeOfDirectory", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, class_transformer_1.Expose)(),
|
|
43
|
+
(0, class_validator_1.IsString)(),
|
|
44
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
45
|
+
__metadata("design:type", String)
|
|
46
|
+
], SendMessageRequest.prototype, "language", void 0);
|
|
47
|
+
__decorate([
|
|
48
|
+
(0, class_transformer_1.Expose)(),
|
|
49
|
+
(0, class_validator_1.IsString)(),
|
|
50
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
51
|
+
__metadata("design:type", String)
|
|
52
|
+
], SendMessageRequest.prototype, "country", void 0);
|
|
53
|
+
__decorate([
|
|
54
|
+
(0, class_transformer_1.Expose)(),
|
|
55
|
+
(0, class_validator_1.IsOptional)(),
|
|
56
|
+
(0, class_validator_1.IsString)(),
|
|
57
|
+
__metadata("design:type", String)
|
|
58
|
+
], SendMessageRequest.prototype, "destination", void 0);
|
|
59
|
+
__decorate([
|
|
60
|
+
(0, class_transformer_1.Expose)(),
|
|
61
|
+
(0, class_validator_1.IsOptional)(),
|
|
62
|
+
(0, class_validator_1.IsString)(),
|
|
63
|
+
__metadata("design:type", String)
|
|
64
|
+
], SendMessageRequest.prototype, "var1", void 0);
|
|
65
|
+
__decorate([
|
|
66
|
+
(0, class_transformer_1.Expose)(),
|
|
67
|
+
(0, class_validator_1.IsOptional)(),
|
|
68
|
+
(0, class_validator_1.IsString)(),
|
|
69
|
+
__metadata("design:type", String)
|
|
70
|
+
], SendMessageRequest.prototype, "var2", void 0);
|
|
71
|
+
__decorate([
|
|
72
|
+
(0, class_transformer_1.Expose)(),
|
|
73
|
+
(0, class_validator_1.IsOptional)(),
|
|
74
|
+
(0, class_validator_1.IsString)(),
|
|
75
|
+
__metadata("design:type", String)
|
|
76
|
+
], SendMessageRequest.prototype, "var3", void 0);
|
|
77
|
+
__decorate([
|
|
78
|
+
(0, class_transformer_1.Expose)(),
|
|
79
|
+
(0, class_validator_1.IsOptional)(),
|
|
80
|
+
(0, class_validator_1.IsString)(),
|
|
81
|
+
__metadata("design:type", String)
|
|
82
|
+
], SendMessageRequest.prototype, "var4", void 0);
|
|
83
|
+
__decorate([
|
|
84
|
+
(0, class_transformer_1.Expose)(),
|
|
85
|
+
(0, class_validator_1.IsOptional)(),
|
|
86
|
+
(0, class_validator_1.IsString)(),
|
|
87
|
+
__metadata("design:type", String)
|
|
88
|
+
], SendMessageRequest.prototype, "var5", void 0);
|
|
89
|
+
__decorate([
|
|
90
|
+
(0, class_transformer_1.Expose)(),
|
|
91
|
+
(0, class_validator_1.IsOptional)(),
|
|
92
|
+
(0, class_validator_1.IsUUID)(),
|
|
93
|
+
__metadata("design:type", String)
|
|
94
|
+
], SendMessageRequest.prototype, "beneficiaryDirectoryId", void 0);
|
|
95
|
+
__decorate([
|
|
96
|
+
(0, class_transformer_1.Expose)(),
|
|
97
|
+
(0, class_validator_1.IsOptional)(),
|
|
98
|
+
(0, class_validator_1.IsString)(),
|
|
99
|
+
__metadata("design:type", String)
|
|
100
|
+
], SendMessageRequest.prototype, "beneficiaryTypeOfDirectoryId", void 0);
|
|
101
|
+
__decorate([
|
|
102
|
+
(0, class_transformer_1.Expose)(),
|
|
103
|
+
(0, class_validator_1.IsOptional)(),
|
|
104
|
+
(0, class_validator_1.IsObject)(),
|
|
105
|
+
__metadata("design:type", Object)
|
|
106
|
+
], SendMessageRequest.prototype, "options", void 0);
|
|
107
|
+
__decorate([
|
|
108
|
+
(0, class_transformer_1.Expose)(),
|
|
109
|
+
(0, class_validator_1.IsOptional)(),
|
|
110
|
+
(0, class_validator_1.IsUUID)(),
|
|
111
|
+
__metadata("design:type", String)
|
|
112
|
+
], SendMessageRequest.prototype, "referenceMessageId", void 0);
|
|
113
|
+
__decorate([
|
|
114
|
+
(0, class_transformer_1.Expose)(),
|
|
115
|
+
(0, class_validator_1.IsOptional)(),
|
|
116
|
+
(0, class_validator_1.IsString)(),
|
|
117
|
+
__metadata("design:type", String)
|
|
118
|
+
], SendMessageRequest.prototype, "transactionNumber", void 0);
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.VerifyOtpRequest = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
class VerifyOtpRequest {
|
|
16
|
+
}
|
|
17
|
+
exports.VerifyOtpRequest = VerifyOtpRequest;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, class_transformer_1.Expose)(),
|
|
20
|
+
(0, class_validator_1.IsUUID)(),
|
|
21
|
+
__metadata("design:type", String)
|
|
22
|
+
], VerifyOtpRequest.prototype, "directoryId", void 0);
|
|
23
|
+
__decorate([
|
|
24
|
+
(0, class_transformer_1.Expose)(),
|
|
25
|
+
(0, class_validator_1.IsString)(),
|
|
26
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
27
|
+
__metadata("design:type", String)
|
|
28
|
+
], VerifyOtpRequest.prototype, "typeOfDirectoryId", void 0);
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, class_transformer_1.Expose)(),
|
|
31
|
+
(0, class_validator_1.IsString)(),
|
|
32
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
33
|
+
__metadata("design:type", String)
|
|
34
|
+
], VerifyOtpRequest.prototype, "message", void 0);
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
export * from './enums/DeliveryChannelExtendedEnum';
|
|
2
2
|
export * from './validators/IsStringValueRecord';
|
|
3
3
|
export * from './dtos/NotificationQueueMessageRequestV2';
|
|
4
|
+
export * from './dtos/SendMessageRequest';
|
|
4
5
|
export * from './dtos/SendMessageResponse';
|
|
6
|
+
export * from './dtos/VerifyOtpRequest';
|
|
5
7
|
export * from './dtos/VerifyOtpResponse';
|
|
6
8
|
export * from './dtos/OtpValidatedResponse';
|
|
7
9
|
export * from './dtos/NotificationResponse';
|
|
@@ -17,7 +17,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./enums/DeliveryChannelExtendedEnum"), exports);
|
|
18
18
|
__exportStar(require("./validators/IsStringValueRecord"), exports);
|
|
19
19
|
__exportStar(require("./dtos/NotificationQueueMessageRequestV2"), exports);
|
|
20
|
+
__exportStar(require("./dtos/SendMessageRequest"), exports);
|
|
20
21
|
__exportStar(require("./dtos/SendMessageResponse"), exports);
|
|
22
|
+
__exportStar(require("./dtos/VerifyOtpRequest"), exports);
|
|
21
23
|
__exportStar(require("./dtos/VerifyOtpResponse"), exports);
|
|
22
24
|
__exportStar(require("./dtos/OtpValidatedResponse"), exports);
|
|
23
25
|
__exportStar(require("./dtos/NotificationResponse"), exports);
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { FundingMethodEnum } from "../enums/FundingMethodEnum";
|
|
2
|
+
import { WalletFundingModeEnum } from "../enums/WalletFundingModeEnum";
|
|
3
|
+
export declare class AuthorizeWalletFundingRequest {
|
|
4
|
+
directoryId: string;
|
|
5
|
+
method: FundingMethodEnum;
|
|
6
|
+
mode: WalletFundingModeEnum;
|
|
7
|
+
amount?: number;
|
|
8
|
+
currencyCode: string;
|
|
9
|
+
expirationDays: number;
|
|
10
|
+
idempotencyKey: string;
|
|
11
|
+
latitude?: number;
|
|
12
|
+
longitude?: number;
|
|
13
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.AuthorizeWalletFundingRequest = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
const FundingMethodEnum_1 = require("../enums/FundingMethodEnum");
|
|
15
|
+
const WalletFundingModeEnum_1 = require("../enums/WalletFundingModeEnum");
|
|
16
|
+
class AuthorizeWalletFundingRequest {
|
|
17
|
+
}
|
|
18
|
+
exports.AuthorizeWalletFundingRequest = AuthorizeWalletFundingRequest;
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, class_validator_1.IsString)(),
|
|
21
|
+
(0, class_validator_1.MaxLength)(64),
|
|
22
|
+
__metadata("design:type", String)
|
|
23
|
+
], AuthorizeWalletFundingRequest.prototype, "directoryId", void 0);
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, class_validator_1.IsEnum)(FundingMethodEnum_1.FundingMethodEnum),
|
|
26
|
+
__metadata("design:type", String)
|
|
27
|
+
], AuthorizeWalletFundingRequest.prototype, "method", void 0);
|
|
28
|
+
__decorate([
|
|
29
|
+
(0, class_validator_1.IsEnum)(WalletFundingModeEnum_1.WalletFundingModeEnum),
|
|
30
|
+
__metadata("design:type", String)
|
|
31
|
+
], AuthorizeWalletFundingRequest.prototype, "mode", void 0);
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, class_validator_1.IsOptional)(),
|
|
34
|
+
(0, class_validator_1.IsNumber)(),
|
|
35
|
+
(0, class_validator_1.IsPositive)(),
|
|
36
|
+
__metadata("design:type", Number)
|
|
37
|
+
], AuthorizeWalletFundingRequest.prototype, "amount", void 0);
|
|
38
|
+
__decorate([
|
|
39
|
+
(0, class_validator_1.IsString)(),
|
|
40
|
+
(0, class_validator_1.Length)(3, 3),
|
|
41
|
+
__metadata("design:type", String)
|
|
42
|
+
], AuthorizeWalletFundingRequest.prototype, "currencyCode", void 0);
|
|
43
|
+
__decorate([
|
|
44
|
+
(0, class_validator_1.IsNumber)(),
|
|
45
|
+
(0, class_validator_1.Min)(1),
|
|
46
|
+
(0, class_validator_1.Max)(30),
|
|
47
|
+
__metadata("design:type", Number)
|
|
48
|
+
], AuthorizeWalletFundingRequest.prototype, "expirationDays", void 0);
|
|
49
|
+
__decorate([
|
|
50
|
+
(0, class_validator_1.IsString)(),
|
|
51
|
+
(0, class_validator_1.MaxLength)(64),
|
|
52
|
+
__metadata("design:type", String)
|
|
53
|
+
], AuthorizeWalletFundingRequest.prototype, "idempotencyKey", void 0);
|
|
54
|
+
__decorate([
|
|
55
|
+
(0, class_validator_1.IsOptional)(),
|
|
56
|
+
(0, class_validator_1.IsLatitude)(),
|
|
57
|
+
__metadata("design:type", Number)
|
|
58
|
+
], AuthorizeWalletFundingRequest.prototype, "latitude", void 0);
|
|
59
|
+
__decorate([
|
|
60
|
+
(0, class_validator_1.IsOptional)(),
|
|
61
|
+
(0, class_validator_1.IsLongitude)(),
|
|
62
|
+
__metadata("design:type", Number)
|
|
63
|
+
], AuthorizeWalletFundingRequest.prototype, "longitude", void 0);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BenefitPaymentStatusEnum } from "../../benefitCenter/enums/BenefitPaymentStatusEnum";
|
|
2
|
+
import { WalletFundingErrorCodeEnum } from "../enums/WalletFundingErrorCodeEnum";
|
|
3
|
+
import { FundingProviderReferenceData } from "./FundingProviderReferenceData";
|
|
4
|
+
export declare class AuthorizeWalletFundingResponse {
|
|
5
|
+
status: BenefitPaymentStatusEnum;
|
|
6
|
+
errorCode?: WalletFundingErrorCodeEnum;
|
|
7
|
+
fundingId?: string;
|
|
8
|
+
expiresAt?: string;
|
|
9
|
+
providerData?: FundingProviderReferenceData;
|
|
10
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.CancelFundingReferenceRequest = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class CancelFundingReferenceRequest {
|
|
15
|
+
}
|
|
16
|
+
exports.CancelFundingReferenceRequest = CancelFundingReferenceRequest;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsString)(),
|
|
19
|
+
(0, class_validator_1.MaxLength)(64),
|
|
20
|
+
__metadata("design:type", String)
|
|
21
|
+
], CancelFundingReferenceRequest.prototype, "fundingId", void 0);
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, class_validator_1.IsString)(),
|
|
24
|
+
(0, class_validator_1.MaxLength)(64),
|
|
25
|
+
__metadata("design:type", String)
|
|
26
|
+
], CancelFundingReferenceRequest.prototype, "directoryId", void 0);
|
|
27
|
+
__decorate([
|
|
28
|
+
(0, class_validator_1.IsString)(),
|
|
29
|
+
(0, class_validator_1.MaxLength)(64),
|
|
30
|
+
__metadata("design:type", String)
|
|
31
|
+
], CancelFundingReferenceRequest.prototype, "idempotencyKey", void 0);
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { BenefitPaymentStatusEnum } from "../../benefitCenter/enums/BenefitPaymentStatusEnum";
|
|
2
|
+
import { WalletFundingErrorCodeEnum } from "../enums/WalletFundingErrorCodeEnum";
|
|
3
|
+
export declare class CancelFundingReferenceResponse {
|
|
4
|
+
fundingId: string;
|
|
5
|
+
status: BenefitPaymentStatusEnum;
|
|
6
|
+
errorCode?: WalletFundingErrorCodeEnum;
|
|
7
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.CancelWalletFundingRequest = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class CancelWalletFundingRequest {
|
|
15
|
+
}
|
|
16
|
+
exports.CancelWalletFundingRequest = CancelWalletFundingRequest;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsString)(),
|
|
19
|
+
(0, class_validator_1.MaxLength)(64),
|
|
20
|
+
__metadata("design:type", String)
|
|
21
|
+
], CancelWalletFundingRequest.prototype, "idempotencyKey", void 0);
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { BenefitPaymentStatusEnum } from "../../benefitCenter/enums/BenefitPaymentStatusEnum";
|
|
2
|
+
import { WalletFundingErrorCodeEnum } from "../enums/WalletFundingErrorCodeEnum";
|
|
3
|
+
export declare class CancelWalletFundingResponse {
|
|
4
|
+
status: BenefitPaymentStatusEnum;
|
|
5
|
+
errorCode?: WalletFundingErrorCodeEnum;
|
|
6
|
+
fundingId?: string;
|
|
7
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { WalletFundingModeEnum } from "../enums/WalletFundingModeEnum";
|
|
2
|
+
export declare class CreateFundingReferenceRequest {
|
|
3
|
+
fundingId: string;
|
|
4
|
+
directoryId: string;
|
|
5
|
+
walletAccountId: string;
|
|
6
|
+
name: string;
|
|
7
|
+
email: string;
|
|
8
|
+
mode: WalletFundingModeEnum;
|
|
9
|
+
amount?: number;
|
|
10
|
+
currencyCode: string;
|
|
11
|
+
expiresAt: string;
|
|
12
|
+
idempotencyKey: string;
|
|
13
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.CreateFundingReferenceRequest = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
const WalletFundingModeEnum_1 = require("../enums/WalletFundingModeEnum");
|
|
15
|
+
class CreateFundingReferenceRequest {
|
|
16
|
+
}
|
|
17
|
+
exports.CreateFundingReferenceRequest = CreateFundingReferenceRequest;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, class_validator_1.IsString)(),
|
|
20
|
+
(0, class_validator_1.MaxLength)(64),
|
|
21
|
+
__metadata("design:type", String)
|
|
22
|
+
], CreateFundingReferenceRequest.prototype, "fundingId", void 0);
|
|
23
|
+
__decorate([
|
|
24
|
+
(0, class_validator_1.IsString)(),
|
|
25
|
+
(0, class_validator_1.MaxLength)(64),
|
|
26
|
+
__metadata("design:type", String)
|
|
27
|
+
], CreateFundingReferenceRequest.prototype, "directoryId", void 0);
|
|
28
|
+
__decorate([
|
|
29
|
+
(0, class_validator_1.IsString)(),
|
|
30
|
+
(0, class_validator_1.MaxLength)(64),
|
|
31
|
+
__metadata("design:type", String)
|
|
32
|
+
], CreateFundingReferenceRequest.prototype, "walletAccountId", void 0);
|
|
33
|
+
__decorate([
|
|
34
|
+
(0, class_validator_1.IsString)(),
|
|
35
|
+
(0, class_validator_1.MaxLength)(128),
|
|
36
|
+
__metadata("design:type", String)
|
|
37
|
+
], CreateFundingReferenceRequest.prototype, "name", void 0);
|
|
38
|
+
__decorate([
|
|
39
|
+
(0, class_validator_1.IsEmail)(),
|
|
40
|
+
__metadata("design:type", String)
|
|
41
|
+
], CreateFundingReferenceRequest.prototype, "email", void 0);
|
|
42
|
+
__decorate([
|
|
43
|
+
(0, class_validator_1.IsEnum)(WalletFundingModeEnum_1.WalletFundingModeEnum),
|
|
44
|
+
__metadata("design:type", String)
|
|
45
|
+
], CreateFundingReferenceRequest.prototype, "mode", void 0);
|
|
46
|
+
__decorate([
|
|
47
|
+
(0, class_validator_1.IsOptional)(),
|
|
48
|
+
(0, class_validator_1.IsNumber)(),
|
|
49
|
+
(0, class_validator_1.IsPositive)(),
|
|
50
|
+
__metadata("design:type", Number)
|
|
51
|
+
], CreateFundingReferenceRequest.prototype, "amount", void 0);
|
|
52
|
+
__decorate([
|
|
53
|
+
(0, class_validator_1.IsString)(),
|
|
54
|
+
(0, class_validator_1.Length)(3, 3),
|
|
55
|
+
__metadata("design:type", String)
|
|
56
|
+
], CreateFundingReferenceRequest.prototype, "currencyCode", void 0);
|
|
57
|
+
__decorate([
|
|
58
|
+
(0, class_validator_1.IsDateString)(),
|
|
59
|
+
__metadata("design:type", String)
|
|
60
|
+
], CreateFundingReferenceRequest.prototype, "expiresAt", void 0);
|
|
61
|
+
__decorate([
|
|
62
|
+
(0, class_validator_1.IsString)(),
|
|
63
|
+
(0, class_validator_1.MaxLength)(64),
|
|
64
|
+
__metadata("design:type", String)
|
|
65
|
+
], CreateFundingReferenceRequest.prototype, "idempotencyKey", void 0);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BenefitPaymentStatusEnum } from "../../benefitCenter/enums/BenefitPaymentStatusEnum";
|
|
2
|
+
import { WalletFundingErrorCodeEnum } from "../enums/WalletFundingErrorCodeEnum";
|
|
3
|
+
import { FundingProviderReferenceData } from "./FundingProviderReferenceData";
|
|
4
|
+
export declare class CreateFundingReferenceResponse {
|
|
5
|
+
fundingId: string;
|
|
6
|
+
status: BenefitPaymentStatusEnum;
|
|
7
|
+
errorCode?: WalletFundingErrorCodeEnum;
|
|
8
|
+
expiresAt?: string;
|
|
9
|
+
providerData?: FundingProviderReferenceData;
|
|
10
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.CreditWalletFundingRequest = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class CreditWalletFundingRequest {
|
|
15
|
+
}
|
|
16
|
+
exports.CreditWalletFundingRequest = CreditWalletFundingRequest;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsString)(),
|
|
19
|
+
(0, class_validator_1.MaxLength)(64),
|
|
20
|
+
__metadata("design:type", String)
|
|
21
|
+
], CreditWalletFundingRequest.prototype, "directoryId", void 0);
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, class_validator_1.IsString)(),
|
|
24
|
+
(0, class_validator_1.MaxLength)(64),
|
|
25
|
+
__metadata("design:type", String)
|
|
26
|
+
], CreditWalletFundingRequest.prototype, "walletAccountId", void 0);
|
|
27
|
+
__decorate([
|
|
28
|
+
(0, class_validator_1.IsNumber)(),
|
|
29
|
+
(0, class_validator_1.IsPositive)(),
|
|
30
|
+
__metadata("design:type", Number)
|
|
31
|
+
], CreditWalletFundingRequest.prototype, "amount", void 0);
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, class_validator_1.IsString)(),
|
|
34
|
+
(0, class_validator_1.Length)(3, 3),
|
|
35
|
+
__metadata("design:type", String)
|
|
36
|
+
], CreditWalletFundingRequest.prototype, "currencyCode", void 0);
|
|
37
|
+
__decorate([
|
|
38
|
+
(0, class_validator_1.IsString)(),
|
|
39
|
+
(0, class_validator_1.MaxLength)(32),
|
|
40
|
+
__metadata("design:type", String)
|
|
41
|
+
], CreditWalletFundingRequest.prototype, "providerName", void 0);
|
|
42
|
+
__decorate([
|
|
43
|
+
(0, class_validator_1.IsString)(),
|
|
44
|
+
(0, class_validator_1.MaxLength)(128),
|
|
45
|
+
__metadata("design:type", String)
|
|
46
|
+
], CreditWalletFundingRequest.prototype, "providerReference", void 0);
|
|
47
|
+
__decorate([
|
|
48
|
+
(0, class_validator_1.IsString)(),
|
|
49
|
+
(0, class_validator_1.MaxLength)(64),
|
|
50
|
+
__metadata("design:type", String)
|
|
51
|
+
], CreditWalletFundingRequest.prototype, "providerTxId", void 0);
|
|
52
|
+
__decorate([
|
|
53
|
+
(0, class_validator_1.IsDateString)(),
|
|
54
|
+
__metadata("design:type", String)
|
|
55
|
+
], CreditWalletFundingRequest.prototype, "paidAt", void 0);
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BenefitPaymentStatusEnum } from "../../benefitCenter/enums/BenefitPaymentStatusEnum";
|
|
2
|
+
import { WalletFundingErrorCodeEnum } from "../enums/WalletFundingErrorCodeEnum";
|
|
3
|
+
export declare class CreditWalletFundingResponse {
|
|
4
|
+
status: BenefitPaymentStatusEnum;
|
|
5
|
+
errorCode?: WalletFundingErrorCodeEnum;
|
|
6
|
+
transactionNumber?: string;
|
|
7
|
+
noAuthorization?: string;
|
|
8
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare class FundingProviderReferenceItem {
|
|
2
|
+
reference: string;
|
|
3
|
+
centers: Array<{
|
|
4
|
+
name: string;
|
|
5
|
+
logo: string;
|
|
6
|
+
}>;
|
|
7
|
+
centerId: number | string;
|
|
8
|
+
barcode: string;
|
|
9
|
+
}
|
|
10
|
+
export declare class FundingProviderReferenceData {
|
|
11
|
+
references: FundingProviderReferenceItem[];
|
|
12
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FundingProviderReferenceData = exports.FundingProviderReferenceItem = void 0;
|
|
4
|
+
class FundingProviderReferenceItem {
|
|
5
|
+
}
|
|
6
|
+
exports.FundingProviderReferenceItem = FundingProviderReferenceItem;
|
|
7
|
+
class FundingProviderReferenceData {
|
|
8
|
+
}
|
|
9
|
+
exports.FundingProviderReferenceData = FundingProviderReferenceData;
|