@heliofi/common 0.2.286 → 0.2.287
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/src/domain/model/audit/explorer/constants/AuditLogChanges.d.ts +1 -1
- package/dist/src/domain/model/audit/explorer/constants/ExplorerAuditAction.d.ts +6 -1
- package/dist/src/domain/model/audit/explorer/constants/ExplorerAuditAction.js +5 -0
- package/dist/src/domain/model/audit/explorer/constants/ExplorerAuditAction.js.map +1 -1
- package/dist/src/domain/model/audit/explorer/constants/ExplorerAuditActionType.js +3 -0
- package/dist/src/domain/model/audit/explorer/constants/ExplorerAuditActionType.js.map +1 -1
- package/dist/src/domain/model/audit/explorer/constants/ExplorerAuditEntityType.d.ts +3 -1
- package/dist/src/domain/model/audit/explorer/constants/ExplorerAuditEntityType.js +2 -0
- package/dist/src/domain/model/audit/explorer/constants/ExplorerAuditEntityType.js.map +1 -1
- package/dist/src/domain/model/deposit/dtos/createVirtualAccountCategory.dto.d.ts +4 -0
- package/dist/src/domain/model/deposit/dtos/createVirtualAccountCategory.dto.js +29 -0
- package/dist/src/domain/model/deposit/dtos/createVirtualAccountCategory.dto.js.map +1 -0
- package/dist/src/domain/model/deposit/dtos/index.d.ts +3 -0
- package/dist/src/domain/model/deposit/dtos/index.js +3 -0
- package/dist/src/domain/model/deposit/dtos/index.js.map +1 -1
- package/dist/src/domain/model/deposit/dtos/updateVirtualAccountCategory.dto.d.ts +4 -0
- package/dist/src/domain/model/deposit/dtos/updateVirtualAccountCategory.dto.js +31 -0
- package/dist/src/domain/model/deposit/dtos/updateVirtualAccountCategory.dto.js.map +1 -0
- package/dist/src/domain/model/deposit/dtos/upsertVirtualAccountCompanyCategory.dto.d.ts +5 -0
- package/dist/src/domain/model/deposit/dtos/upsertVirtualAccountCompanyCategory.dto.js +38 -0
- package/dist/src/domain/model/deposit/dtos/upsertVirtualAccountCompanyCategory.dto.js.map +1 -0
- package/dist/src/domain/model/deposit/entities/VirtualAccountCategory.entity.d.ts +8 -0
- package/dist/src/domain/model/deposit/entities/VirtualAccountCategory.entity.js +8 -0
- package/dist/src/domain/model/deposit/entities/VirtualAccountCategory.entity.js.map +1 -0
- package/dist/src/domain/model/deposit/entities/VirtualAccountCompanyCategory.entity.d.ts +10 -0
- package/dist/src/domain/model/deposit/entities/VirtualAccountCompanyCategory.entity.js +8 -0
- package/dist/src/domain/model/deposit/entities/VirtualAccountCompanyCategory.entity.js.map +1 -0
- package/dist/src/domain/model/deposit/entities/index.d.ts +2 -0
- package/dist/src/domain/model/deposit/entities/index.js +2 -0
- package/dist/src/domain/model/deposit/entities/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type AuditLogChangeValue = string | number | boolean | null;
|
|
1
|
+
export type AuditLogChangeValue = string | number | boolean | null | string[];
|
|
2
2
|
export type AuditLogChanges = {
|
|
3
3
|
before?: Record<string, AuditLogChangeValue>;
|
|
4
4
|
after?: Record<string, AuditLogChangeValue>;
|
|
@@ -91,5 +91,10 @@ export declare enum ExplorerAuditAction {
|
|
|
91
91
|
EXPLORER_USER_PAYLINKS_VIEW = "EXPLORER_USER_PAYLINKS_VIEW",
|
|
92
92
|
DEPOSIT_CLEANUP_BATCHES_VIEW = "DEPOSIT_CLEANUP_BATCHES_VIEW",
|
|
93
93
|
DEPOSIT_CLEANUP_EXECUTE = "DEPOSIT_CLEANUP_EXECUTE",
|
|
94
|
-
DEPOSIT_CLEANUP_RUN_VIEW = "DEPOSIT_CLEANUP_RUN_VIEW"
|
|
94
|
+
DEPOSIT_CLEANUP_RUN_VIEW = "DEPOSIT_CLEANUP_RUN_VIEW",
|
|
95
|
+
VIRTUAL_ACCOUNT_CATEGORY_VIEW = "VIRTUAL_ACCOUNT_CATEGORY_VIEW",
|
|
96
|
+
VIRTUAL_ACCOUNT_CATEGORY_CREATE = "VIRTUAL_ACCOUNT_CATEGORY_CREATE",
|
|
97
|
+
VIRTUAL_ACCOUNT_CATEGORY_UPDATE = "VIRTUAL_ACCOUNT_CATEGORY_UPDATE",
|
|
98
|
+
VIRTUAL_ACCOUNT_COMPANY_CATEGORY_VIEW = "VIRTUAL_ACCOUNT_COMPANY_CATEGORY_VIEW",
|
|
99
|
+
VIRTUAL_ACCOUNT_COMPANY_CATEGORY_UPSERT = "VIRTUAL_ACCOUNT_COMPANY_CATEGORY_UPSERT"
|
|
95
100
|
}
|
|
@@ -96,5 +96,10 @@ var ExplorerAuditAction;
|
|
|
96
96
|
ExplorerAuditAction["DEPOSIT_CLEANUP_BATCHES_VIEW"] = "DEPOSIT_CLEANUP_BATCHES_VIEW";
|
|
97
97
|
ExplorerAuditAction["DEPOSIT_CLEANUP_EXECUTE"] = "DEPOSIT_CLEANUP_EXECUTE";
|
|
98
98
|
ExplorerAuditAction["DEPOSIT_CLEANUP_RUN_VIEW"] = "DEPOSIT_CLEANUP_RUN_VIEW";
|
|
99
|
+
ExplorerAuditAction["VIRTUAL_ACCOUNT_CATEGORY_VIEW"] = "VIRTUAL_ACCOUNT_CATEGORY_VIEW";
|
|
100
|
+
ExplorerAuditAction["VIRTUAL_ACCOUNT_CATEGORY_CREATE"] = "VIRTUAL_ACCOUNT_CATEGORY_CREATE";
|
|
101
|
+
ExplorerAuditAction["VIRTUAL_ACCOUNT_CATEGORY_UPDATE"] = "VIRTUAL_ACCOUNT_CATEGORY_UPDATE";
|
|
102
|
+
ExplorerAuditAction["VIRTUAL_ACCOUNT_COMPANY_CATEGORY_VIEW"] = "VIRTUAL_ACCOUNT_COMPANY_CATEGORY_VIEW";
|
|
103
|
+
ExplorerAuditAction["VIRTUAL_ACCOUNT_COMPANY_CATEGORY_UPSERT"] = "VIRTUAL_ACCOUNT_COMPANY_CATEGORY_UPSERT";
|
|
99
104
|
})(ExplorerAuditAction || (exports.ExplorerAuditAction = ExplorerAuditAction = {}));
|
|
100
105
|
//# sourceMappingURL=ExplorerAuditAction.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ExplorerAuditAction.js","sourceRoot":"","sources":["../../../../../../../src/domain/model/audit/explorer/constants/ExplorerAuditAction.ts"],"names":[],"mappings":";;;AAAA,IAAY,
|
|
1
|
+
{"version":3,"file":"ExplorerAuditAction.js","sourceRoot":"","sources":["../../../../../../../src/domain/model/audit/explorer/constants/ExplorerAuditAction.ts"],"names":[],"mappings":";;;AAAA,IAAY,mBA0HX;AA1HD,WAAY,mBAAmB;IAE7B,oDAA6B,CAAA;IAC7B,wEAAiD,CAAA;IACjD,wEAAiD,CAAA;IACjD,wFAAiE,CAAA;IACjE,0FAAmE,CAAA;IACnE,kFAA2D,CAAA;IAC3D,oFAA6D,CAAA;IAC7D,0EAAmD,CAAA;IACnD,gFAAyD,CAAA;IACzD,sGAA+E,CAAA;IAC/E,4GAAqF,CAAA;IACrF,wGAAiF,CAAA;IACjF,wGAAiF,CAAA;IACjF,wGAAiF,CAAA;IACjF,oGAA6E,CAAA;IAC7E,oGAA6E,CAAA;IAC7E,oGAA6E,CAAA;IAC7E,8GAAuF,CAAA;IACvF,8GAAuF,CAAA;IACvF,8GAAuF,CAAA;IACvF,wHAAiG,CAAA;IACjG,wHAAiG,CAAA;IACjG,wHAAiG,CAAA;IACjG,0GAAmF,CAAA;IACnF,8GAAuF,CAAA;IACvF,8GAAuF,CAAA;IACvF,8GAAuF,CAAA;IACvF,0GAAmF,CAAA;IACnF,0GAAmF,CAAA;IACnF,0GAAmF,CAAA;IACnF,oHAA6F,CAAA;IAC7F,oHAA6F,CAAA;IAC7F,oHAA6F,CAAA;IAC7F,8HAAuG,CAAA;IACvG,8HAAuG,CAAA;IACvG,8HAAuG,CAAA;IACvG,8FAAuE,CAAA;IACvE,8FAAuE,CAAA;IACvE,0GAAmF,CAAA;IACnF,8GAAuF,CAAA;IACvF,oFAA6D,CAAA;IAC7D,gEAAyC,CAAA;IACzC,gEAAyC,CAAA;IAGzC,0DAAmC,CAAA;IACnC,0DAAmC,CAAA;IAGnC,kEAA2C,CAAA;IAC3C,kFAA2D,CAAA;IAC3D,kFAA2D,CAAA;IAC3D,kFAA2D,CAAA;IAC3D,wEAAiD,CAAA;IACjD,oFAA6D,CAAA;IAC7D,sFAA+D,CAAA;IAC/D,4FAAqE,CAAA;IACrE,kEAA2C,CAAA;IAC3C,sEAA+C,CAAA;IAC/C,wFAAiE,CAAA;IACjE,0EAAmD,CAAA;IACnD,kFAA2D,CAAA;IAC3D,4FAAqE,CAAA;IACrE,wDAAiC,CAAA;IACjC,sEAA+C,CAAA;IAC/C,sEAA+C,CAAA;IAG/C,gEAAyC,CAAA;IACzC,oEAA6C,CAAA;IAC7C,wEAAiD,CAAA;IACjD,gFAAyD,CAAA;IACzD,0DAAmC,CAAA;IACnC,8DAAuC,CAAA;IAGvC,4DAAqC,CAAA;IACrC,4CAAqB,CAAA;IACrB,gDAAyB,CAAA;IAGzB,wEAAiD,CAAA;IACjD,4EAAqD,CAAA;IACrD,4EAAqD,CAAA;IAGrD,sEAA+C,CAAA;IAG/C,kFAA2D,CAAA;IAC3D,wEAAiD,CAAA;IACjD,oFAA6D,CAAA;IAC7D,sFAA+D,CAAA;IAC/D,4FAAqE,CAAA;IAGrE,kFAA2D,CAAA;IAC3D,0FAAmE,CAAA;IACnE,oEAA6C,CAAA;IAC7C,0EAAmD,CAAA;IACnD,8EAAuD,CAAA;IACvD,gGAAyE,CAAA;IACzE,gEAAyC,CAAA;IACzC,4GAAqF,CAAA;IACrF,4GAAqF,CAAA;IACrF,kFAA2D,CAAA;IAG3D,oFAA6D,CAAA;IAC7D,0EAAmD,CAAA;IACnD,4EAAqD,CAAA;IAGrD,sFAA+D,CAAA;IAC/D,0FAAmE,CAAA;IACnE,0FAAmE,CAAA;IAGnE,sGAA+E,CAAA;IAC/E,0GAAmF,CAAA;AACrF,CAAC,EA1HW,mBAAmB,mCAAnB,mBAAmB,QA0H9B"}
|
|
@@ -73,6 +73,9 @@ const WRITE_ACTIONS = new Set([
|
|
|
73
73
|
ExplorerAuditAction_1.ExplorerAuditAction.PAYLINK_WEBHOOK_REPLAY_FAILED,
|
|
74
74
|
ExplorerAuditAction_1.ExplorerAuditAction.PAYLINK_WEBHOOK_FORCE_REPLAY_ALL,
|
|
75
75
|
ExplorerAuditAction_1.ExplorerAuditAction.DEPOSIT_CLEANUP_EXECUTE,
|
|
76
|
+
ExplorerAuditAction_1.ExplorerAuditAction.VIRTUAL_ACCOUNT_CATEGORY_CREATE,
|
|
77
|
+
ExplorerAuditAction_1.ExplorerAuditAction.VIRTUAL_ACCOUNT_CATEGORY_UPDATE,
|
|
78
|
+
ExplorerAuditAction_1.ExplorerAuditAction.VIRTUAL_ACCOUNT_COMPANY_CATEGORY_UPSERT,
|
|
76
79
|
]);
|
|
77
80
|
const getActionType = (action) => WRITE_ACTIONS.has(action)
|
|
78
81
|
? ExplorerAuditActionType.WRITE
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ExplorerAuditActionType.js","sourceRoot":"","sources":["../../../../../../../src/domain/model/audit/explorer/constants/ExplorerAuditActionType.ts"],"names":[],"mappings":";;;AAAA,+DAA4D;AAE5D,IAAY,uBAGX;AAHD,WAAY,uBAAuB;IACjC,wCAAa,CAAA;IACb,0CAAe,CAAA;AACjB,CAAC,EAHW,uBAAuB,uCAAvB,uBAAuB,QAGlC;AAED,MAAM,aAAa,GAAG,IAAI,GAAG,CAAsB;IACjD,yCAAmB,CAAC,sBAAsB;IAC1C,yCAAmB,CAAC,8BAA8B;IAClD,yCAAmB,CAAC,+BAA+B;IACnD,yCAAmB,CAAC,2BAA2B;IAC/C,yCAAmB,CAAC,4BAA4B;IAChD,yCAAmB,CAAC,uBAAuB;IAC3C,yCAAmB,CAAC,0BAA0B;IAC9C,yCAAmB,CAAC,qCAAqC;IACzD,yCAAmB,CAAC,wCAAwC;IAC5D,yCAAmB,CAAC,sCAAsC;IAC1D,yCAAmB,CAAC,sCAAsC;IAC1D,yCAAmB,CAAC,sCAAsC;IAC1D,yCAAmB,CAAC,oCAAoC;IACxD,yCAAmB,CAAC,oCAAoC;IACxD,yCAAmB,CAAC,oCAAoC;IACxD,yCAAmB,CAAC,yCAAyC;IAC7D,yCAAmB,CAAC,yCAAyC;IAC7D,yCAAmB,CAAC,yCAAyC;IAC7D,yCAAmB,CAAC,8CAA8C;IAClE,yCAAmB,CAAC,8CAA8C;IAClE,yCAAmB,CAAC,8CAA8C;IAClE,yCAAmB,CAAC,uCAAuC;IAC3D,yCAAmB,CAAC,yCAAyC;IAC7D,yCAAmB,CAAC,yCAAyC;IAC7D,yCAAmB,CAAC,yCAAyC;IAC7D,yCAAmB,CAAC,uCAAuC;IAC3D,yCAAmB,CAAC,uCAAuC;IAC3D,yCAAmB,CAAC,uCAAuC;IAC3D,yCAAmB,CAAC,4CAA4C;IAChE,yCAAmB,CAAC,4CAA4C;IAChE,yCAAmB,CAAC,4CAA4C;IAChE,yCAAmB,CAAC,iDAAiD;IACrE,yCAAmB,CAAC,iDAAiD;IACrE,yCAAmB,CAAC,iDAAiD;IACrE,yCAAmB,CAAC,iCAAiC;IACrD,yCAAmB,CAAC,iCAAiC;IACrD,yCAAmB,CAAC,uCAAuC;IAC3D,yCAAmB,CAAC,yCAAyC;IAC7D,yCAAmB,CAAC,4BAA4B;IAChD,yCAAmB,CAAC,kBAAkB;IACtC,yCAAmB,CAAC,kBAAkB;IACtC,yCAAmB,CAAC,eAAe;IACnC,yCAAmB,CAAC,eAAe;IACnC,yCAAmB,CAAC,2BAA2B;IAC/C,yCAAmB,CAAC,sBAAsB;IAC1C,yCAAmB,CAAC,4BAA4B;IAChD,yCAAmB,CAAC,6BAA6B;IACjD,yCAAmB,CAAC,gCAAgC;IACpD,yCAAmB,CAAC,mBAAmB;IACvC,yCAAmB,CAAC,qBAAqB;IACzC,yCAAmB,CAAC,8BAA8B;IAClD,yCAAmB,CAAC,uBAAuB;IAC3C,yCAAmB,CAAC,cAAc;IAClC,yCAAmB,CAAC,qBAAqB;IACzC,yCAAmB,CAAC,qBAAqB;IACzC,yCAAmB,CAAC,eAAe;IACnC,yCAAmB,CAAC,iBAAiB;IACrC,yCAAmB,CAAC,UAAU;IAC9B,yCAAmB,CAAC,wBAAwB;IAC5C,yCAAmB,CAAC,wBAAwB;IAC5C,yCAAmB,CAAC,sBAAsB;IAC1C,yCAAmB,CAAC,4BAA4B;IAChD,yCAAmB,CAAC,6BAA6B;IACjD,yCAAmB,CAAC,gCAAgC;IACpD,yCAAmB,CAAC,uBAAuB;
|
|
1
|
+
{"version":3,"file":"ExplorerAuditActionType.js","sourceRoot":"","sources":["../../../../../../../src/domain/model/audit/explorer/constants/ExplorerAuditActionType.ts"],"names":[],"mappings":"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"}
|
|
@@ -11,5 +11,7 @@ export declare enum ExplorerAuditEntityType {
|
|
|
11
11
|
SWAP_PATH = "SWAP_PATH",
|
|
12
12
|
WEBHOOK_EVENT = "WEBHOOK_EVENT",
|
|
13
13
|
CLEANUP_BATCH = "CLEANUP_BATCH",
|
|
14
|
-
CLEANUP_RUN = "CLEANUP_RUN"
|
|
14
|
+
CLEANUP_RUN = "CLEANUP_RUN",
|
|
15
|
+
VIRTUAL_ACCOUNT_CATEGORY = "VIRTUAL_ACCOUNT_CATEGORY",
|
|
16
|
+
VIRTUAL_ACCOUNT_COMPANY_CATEGORY = "VIRTUAL_ACCOUNT_COMPANY_CATEGORY"
|
|
15
17
|
}
|
|
@@ -16,5 +16,7 @@ var ExplorerAuditEntityType;
|
|
|
16
16
|
ExplorerAuditEntityType["WEBHOOK_EVENT"] = "WEBHOOK_EVENT";
|
|
17
17
|
ExplorerAuditEntityType["CLEANUP_BATCH"] = "CLEANUP_BATCH";
|
|
18
18
|
ExplorerAuditEntityType["CLEANUP_RUN"] = "CLEANUP_RUN";
|
|
19
|
+
ExplorerAuditEntityType["VIRTUAL_ACCOUNT_CATEGORY"] = "VIRTUAL_ACCOUNT_CATEGORY";
|
|
20
|
+
ExplorerAuditEntityType["VIRTUAL_ACCOUNT_COMPANY_CATEGORY"] = "VIRTUAL_ACCOUNT_COMPANY_CATEGORY";
|
|
19
21
|
})(ExplorerAuditEntityType || (exports.ExplorerAuditEntityType = ExplorerAuditEntityType = {}));
|
|
20
22
|
//# sourceMappingURL=ExplorerAuditEntityType.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ExplorerAuditEntityType.js","sourceRoot":"","sources":["../../../../../../../src/domain/model/audit/explorer/constants/ExplorerAuditEntityType.ts"],"names":[],"mappings":";;;AAAA,IAAY,
|
|
1
|
+
{"version":3,"file":"ExplorerAuditEntityType.js","sourceRoot":"","sources":["../../../../../../../src/domain/model/audit/explorer/constants/ExplorerAuditEntityType.ts"],"names":[],"mappings":";;;AAAA,IAAY,uBAgBX;AAhBD,WAAY,uBAAuB;IACjC,8CAAmB,CAAA;IACnB,gDAAqB,CAAA;IACrB,8CAAmB,CAAA;IACnB,4DAAiC,CAAA;IACjC,sDAA2B,CAAA;IAC3B,8CAAmB,CAAA;IACnB,wCAAa,CAAA;IACb,sCAAW,CAAA;IACX,kEAAuC,CAAA;IACvC,kDAAuB,CAAA;IACvB,0DAA+B,CAAA;IAC/B,0DAA+B,CAAA;IAC/B,sDAA2B,CAAA;IAC3B,gFAAqD,CAAA;IACrD,gGAAqE,CAAA;AACvE,CAAC,EAhBW,uBAAuB,uCAAvB,uBAAuB,QAgBlC"}
|
|
@@ -0,0 +1,29 @@
|
|
|
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.CreateVirtualAccountCategoryDto = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class CreateVirtualAccountCategoryDto {
|
|
15
|
+
}
|
|
16
|
+
exports.CreateVirtualAccountCategoryDto = CreateVirtualAccountCategoryDto;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsString)(),
|
|
19
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
20
|
+
__metadata("design:type", String)
|
|
21
|
+
], CreateVirtualAccountCategoryDto.prototype, "name", void 0);
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, class_validator_1.IsArray)(),
|
|
24
|
+
(0, class_validator_1.IsString)({ each: true }),
|
|
25
|
+
(0, class_validator_1.Length)(2, 2, { each: true }),
|
|
26
|
+
(0, class_validator_1.ArrayUnique)(),
|
|
27
|
+
__metadata("design:type", Array)
|
|
28
|
+
], CreateVirtualAccountCategoryDto.prototype, "disallowedCountries", void 0);
|
|
29
|
+
//# sourceMappingURL=createVirtualAccountCategory.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createVirtualAccountCategory.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/deposit/dtos/createVirtualAccountCategory.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAMyB;AAEzB,MAAa,+BAA+B;CAW3C;AAXD,0EAWC;AARC;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;6DACA;AAOb;IAJC,IAAA,yBAAO,GAAE;IACT,IAAA,0BAAQ,EAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IACxB,IAAA,wBAAM,EAAC,CAAC,EAAE,CAAC,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IAC5B,IAAA,6BAAW,GAAE;;4EACgB"}
|
|
@@ -12,3 +12,6 @@ export * from './createDepositSwapQuote.dto';
|
|
|
12
12
|
export * from './depositSwapQuoteResponse.dto';
|
|
13
13
|
export * from './requestVirtualAccountOtp.dto';
|
|
14
14
|
export * from './verifyVirtualAccountOtp.dto';
|
|
15
|
+
export * from './createVirtualAccountCategory.dto';
|
|
16
|
+
export * from './updateVirtualAccountCategory.dto';
|
|
17
|
+
export * from './upsertVirtualAccountCompanyCategory.dto';
|
|
@@ -28,4 +28,7 @@ __exportStar(require("./createDepositSwapQuote.dto"), exports);
|
|
|
28
28
|
__exportStar(require("./depositSwapQuoteResponse.dto"), exports);
|
|
29
29
|
__exportStar(require("./requestVirtualAccountOtp.dto"), exports);
|
|
30
30
|
__exportStar(require("./verifyVirtualAccountOtp.dto"), exports);
|
|
31
|
+
__exportStar(require("./createVirtualAccountCategory.dto"), exports);
|
|
32
|
+
__exportStar(require("./updateVirtualAccountCategory.dto"), exports);
|
|
33
|
+
__exportStar(require("./upsertVirtualAccountCompanyCategory.dto"), exports);
|
|
31
34
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/deposit/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,sDAAoC;AACpC,8DAA4C;AAC5C,8DAA4C;AAC5C,4DAA0C;AAC1C,4DAA0C;AAC1C,6DAA2C;AAC3C,sDAAoC;AACpC,8EAA4D;AAC5D,gFAA8D;AAC9D,oEAAkD;AAClD,+DAA6C;AAC7C,iEAA+C;AAC/C,iEAA+C;AAC/C,gEAA8C"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/deposit/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,sDAAoC;AACpC,8DAA4C;AAC5C,8DAA4C;AAC5C,4DAA0C;AAC1C,4DAA0C;AAC1C,6DAA2C;AAC3C,sDAAoC;AACpC,8EAA4D;AAC5D,gFAA8D;AAC9D,oEAAkD;AAClD,+DAA6C;AAC7C,iEAA+C;AAC/C,iEAA+C;AAC/C,gEAA8C;AAC9C,qEAAmD;AACnD,qEAAmD;AACnD,4EAA0D"}
|
|
@@ -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.UpdateVirtualAccountCategoryDto = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class UpdateVirtualAccountCategoryDto {
|
|
15
|
+
}
|
|
16
|
+
exports.UpdateVirtualAccountCategoryDto = UpdateVirtualAccountCategoryDto;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsOptional)(),
|
|
19
|
+
(0, class_validator_1.IsString)(),
|
|
20
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
21
|
+
__metadata("design:type", String)
|
|
22
|
+
], UpdateVirtualAccountCategoryDto.prototype, "name", void 0);
|
|
23
|
+
__decorate([
|
|
24
|
+
(0, class_validator_1.IsOptional)(),
|
|
25
|
+
(0, class_validator_1.IsArray)(),
|
|
26
|
+
(0, class_validator_1.IsString)({ each: true }),
|
|
27
|
+
(0, class_validator_1.Length)(2, 2, { each: true }),
|
|
28
|
+
(0, class_validator_1.ArrayUnique)(),
|
|
29
|
+
__metadata("design:type", Array)
|
|
30
|
+
], UpdateVirtualAccountCategoryDto.prototype, "disallowedCountries", void 0);
|
|
31
|
+
//# sourceMappingURL=updateVirtualAccountCategory.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"updateVirtualAccountCategory.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/deposit/dtos/updateVirtualAccountCategory.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAOyB;AAEzB,MAAa,+BAA+B;CAa3C;AAbD,0EAaC;AATC;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;6DACC;AAQd;IALC,IAAA,4BAAU,GAAE;IACZ,IAAA,yBAAO,GAAE;IACT,IAAA,0BAAQ,EAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IACxB,IAAA,wBAAM,EAAC,CAAC,EAAE,CAAC,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IAC5B,IAAA,6BAAW,GAAE;;4EACiB"}
|
|
@@ -0,0 +1,38 @@
|
|
|
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.UpsertVirtualAccountCompanyCategoryDto = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class UpsertVirtualAccountCompanyCategoryDto {
|
|
15
|
+
}
|
|
16
|
+
exports.UpsertVirtualAccountCompanyCategoryDto = UpsertVirtualAccountCompanyCategoryDto;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsOptional)(),
|
|
19
|
+
(0, class_validator_1.IsMongoId)(),
|
|
20
|
+
__metadata("design:type", String)
|
|
21
|
+
], UpsertVirtualAccountCompanyCategoryDto.prototype, "categoryId", void 0);
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, class_validator_1.IsOptional)(),
|
|
24
|
+
(0, class_validator_1.IsArray)(),
|
|
25
|
+
(0, class_validator_1.IsString)({ each: true }),
|
|
26
|
+
(0, class_validator_1.Length)(2, 2, { each: true }),
|
|
27
|
+
(0, class_validator_1.ArrayUnique)(),
|
|
28
|
+
__metadata("design:type", Array)
|
|
29
|
+
], UpsertVirtualAccountCompanyCategoryDto.prototype, "allowOverrides", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, class_validator_1.IsOptional)(),
|
|
32
|
+
(0, class_validator_1.IsArray)(),
|
|
33
|
+
(0, class_validator_1.IsString)({ each: true }),
|
|
34
|
+
(0, class_validator_1.Length)(2, 2, { each: true }),
|
|
35
|
+
(0, class_validator_1.ArrayUnique)(),
|
|
36
|
+
__metadata("design:type", Array)
|
|
37
|
+
], UpsertVirtualAccountCompanyCategoryDto.prototype, "disallowOverrides", void 0);
|
|
38
|
+
//# sourceMappingURL=upsertVirtualAccountCompanyCategory.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"upsertVirtualAccountCompanyCategory.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/deposit/dtos/upsertVirtualAccountCompanyCategory.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAOyB;AAQzB,MAAa,sCAAsC;CAqBlD;AArBD,wFAqBC;AAjBC;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;0EACQ;AAQpB;IALC,IAAA,4BAAU,GAAE;IACZ,IAAA,yBAAO,GAAE;IACT,IAAA,0BAAQ,EAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IACxB,IAAA,wBAAM,EAAC,CAAC,EAAE,CAAC,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IAC5B,IAAA,6BAAW,GAAE;;8EACY;AAQ1B;IALC,IAAA,4BAAU,GAAE;IACZ,IAAA,yBAAO,GAAE;IACT,IAAA,0BAAQ,EAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IACxB,IAAA,wBAAM,EAAC,CAAC,EAAE,CAAC,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IAC5B,IAAA,6BAAW,GAAE;;iFACe"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.VirtualAccountCategory = void 0;
|
|
4
|
+
const entity_1 = require("../../entity");
|
|
5
|
+
class VirtualAccountCategory extends entity_1.Entity {
|
|
6
|
+
}
|
|
7
|
+
exports.VirtualAccountCategory = VirtualAccountCategory;
|
|
8
|
+
//# sourceMappingURL=VirtualAccountCategory.entity.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VirtualAccountCategory.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/deposit/entities/VirtualAccountCategory.entity.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAEtC,MAAa,sBAAuB,SAAQ,eAAM;CAWjD;AAXD,wDAWC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Entity } from '../../entity';
|
|
2
|
+
export declare class VirtualAccountCompanyCategory extends Entity {
|
|
3
|
+
id: string;
|
|
4
|
+
company: string;
|
|
5
|
+
category: string;
|
|
6
|
+
allowOverrides: string[];
|
|
7
|
+
disallowOverrides: string[];
|
|
8
|
+
createdAt: string | null;
|
|
9
|
+
updatedAt: string | null;
|
|
10
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.VirtualAccountCompanyCategory = void 0;
|
|
4
|
+
const entity_1 = require("../../entity");
|
|
5
|
+
class VirtualAccountCompanyCategory extends entity_1.Entity {
|
|
6
|
+
}
|
|
7
|
+
exports.VirtualAccountCompanyCategory = VirtualAccountCompanyCategory;
|
|
8
|
+
//# sourceMappingURL=VirtualAccountCompanyCategory.entity.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VirtualAccountCompanyCategory.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/deposit/entities/VirtualAccountCompanyCategory.entity.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAEtC,MAAa,6BAA8B,SAAQ,eAAM;CAoBxD;AApBD,sEAoBC"}
|
|
@@ -41,3 +41,5 @@ export * from './PartiallyPaidCharge.entity';
|
|
|
41
41
|
export * from './PartiallyPaidChargePageResponse.entity';
|
|
42
42
|
export * from './VirtualAccountSupportedCountry.entity';
|
|
43
43
|
export * from './DepositRouteFee.entity';
|
|
44
|
+
export * from './VirtualAccountCategory.entity';
|
|
45
|
+
export * from './VirtualAccountCompanyCategory.entity';
|
|
@@ -57,4 +57,6 @@ __exportStar(require("./PartiallyPaidCharge.entity"), exports);
|
|
|
57
57
|
__exportStar(require("./PartiallyPaidChargePageResponse.entity"), exports);
|
|
58
58
|
__exportStar(require("./VirtualAccountSupportedCountry.entity"), exports);
|
|
59
59
|
__exportStar(require("./DepositRouteFee.entity"), exports);
|
|
60
|
+
__exportStar(require("./VirtualAccountCategory.entity"), exports);
|
|
61
|
+
__exportStar(require("./VirtualAccountCompanyCategory.entity"), exports);
|
|
60
62
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/deposit/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qEAAmD;AACnD,qEAAmD;AACnD,2EAAyD;AACzD,sEAAoD;AACpD,gFAA8D;AAC9D,iEAA+C;AAC/C,2DAAyC;AACzC,mDAAiC;AACjC,iEAA+C;AAC/C,2DAAyC;AACzC,uEAAqD;AACrD,mEAAiD;AACjD,yDAAuC;AACvC,4DAA0C;AAC1C,iDAA+B;AAC/B,+DAA6C;AAC7C,yEAAuD;AACvD,oEAAkD;AAClD,oFAAkE;AAClE,4EAA0D;AAC1D,6EAA2D;AAC3D,yDAAuC;AACvC,yEAAuD;AACvD,qEAAmD;AACnD,8DAA4C;AAC5C,gEAA8C;AAC9C,0DAAwC;AACxC,iEAA+C;AAC/C,mDAAiC;AACjC,2DAAyC;AACzC,qEAAmD;AACnD,+EAA6D;AAC7D,oEAAkD;AAClD,qDAAmC;AACnC,gEAA8C;AAC9C,sEAAoD;AACpD,6DAA2C;AAC3C,+DAA6C;AAC7C,+DAA6C;AAC7C,+DAA6C;AAC7C,2EAAyD;AACzD,0EAAwD;AACxD,2DAAyC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/deposit/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qEAAmD;AACnD,qEAAmD;AACnD,2EAAyD;AACzD,sEAAoD;AACpD,gFAA8D;AAC9D,iEAA+C;AAC/C,2DAAyC;AACzC,mDAAiC;AACjC,iEAA+C;AAC/C,2DAAyC;AACzC,uEAAqD;AACrD,mEAAiD;AACjD,yDAAuC;AACvC,4DAA0C;AAC1C,iDAA+B;AAC/B,+DAA6C;AAC7C,yEAAuD;AACvD,oEAAkD;AAClD,oFAAkE;AAClE,4EAA0D;AAC1D,6EAA2D;AAC3D,yDAAuC;AACvC,yEAAuD;AACvD,qEAAmD;AACnD,8DAA4C;AAC5C,gEAA8C;AAC9C,0DAAwC;AACxC,iEAA+C;AAC/C,mDAAiC;AACjC,2DAAyC;AACzC,qEAAmD;AACnD,+EAA6D;AAC7D,oEAAkD;AAClD,qDAAmC;AACnC,gEAA8C;AAC9C,sEAAoD;AACpD,6DAA2C;AAC3C,+DAA6C;AAC7C,+DAA6C;AAC7C,+DAA6C;AAC7C,2EAAyD;AACzD,0EAAwD;AACxD,2DAAyC;AACzC,kEAAgD;AAChD,yEAAuD"}
|