@fiado/type-kit 1.0.42 → 1.0.44
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/group/dtos/GroupDirectoryRetationsUpdateRequest.d.ts +3 -0
- package/bin/group/dtos/GroupDirectoryRetationsUpdateRequest.js +22 -0
- package/bin/notificationMessages/enums/NotificationId.d.ts +6 -0
- package/bin/notificationMessages/enums/NotificationId.js +10 -0
- package/bin/notificationMessages/index.d.ts +1 -0
- package/bin/notificationMessages/index.js +1 -0
- package/package.json +1 -1
- package/src/notificationMessages/enums/NotificationId.ts +14 -0
- package/src/notificationMessages/index.ts +4 -1
|
@@ -0,0 +1,22 @@
|
|
|
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.GroupDirectoryRetationsUpdateRequest = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class GroupDirectoryRetationsUpdateRequest {
|
|
15
|
+
}
|
|
16
|
+
exports.GroupDirectoryRetationsUpdateRequest = GroupDirectoryRetationsUpdateRequest;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsOptional)(),
|
|
19
|
+
(0, class_validator_1.IsString)(),
|
|
20
|
+
(0, class_validator_1.Length)(1, 20),
|
|
21
|
+
__metadata("design:type", String)
|
|
22
|
+
], GroupDirectoryRetationsUpdateRequest.prototype, "agent", void 0);
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export declare enum NotificationId {
|
|
2
|
+
ISSUED_ACCOUNT_USA = "ISSUED_ACCOUNT_USA",//Mesnaje de apertura de cuentas y tarjeta USA
|
|
3
|
+
ISSUED_ACCOUNT_MEX = "ISSUED_ACCOUNT_MEX",//Mesnaje de apertura de cuentas y tarjeta MEX
|
|
4
|
+
ONB_ERROR_VALID_DOCUMENT = "ONB_ERROR_VALID_DOCUMENT",// Mensaje cuando el resultado del onboarding es error en la validación del documento
|
|
5
|
+
ONB_ERROR_FACEMATCH = "ONB_ERROR_FACEMATCH"
|
|
6
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.NotificationId = void 0;
|
|
4
|
+
var NotificationId;
|
|
5
|
+
(function (NotificationId) {
|
|
6
|
+
NotificationId["ISSUED_ACCOUNT_USA"] = "ISSUED_ACCOUNT_USA";
|
|
7
|
+
NotificationId["ISSUED_ACCOUNT_MEX"] = "ISSUED_ACCOUNT_MEX";
|
|
8
|
+
NotificationId["ONB_ERROR_VALID_DOCUMENT"] = "ONB_ERROR_VALID_DOCUMENT";
|
|
9
|
+
NotificationId["ONB_ERROR_FACEMATCH"] = "ONB_ERROR_FACEMATCH";
|
|
10
|
+
})(NotificationId || (exports.NotificationId = NotificationId = {}));
|
|
@@ -17,3 +17,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./dtos/NotificationQueueMessageRequest"), exports);
|
|
18
18
|
__exportStar(require("./dtos/QueueMessageDestination"), exports);
|
|
19
19
|
__exportStar(require("./dtos/QueueMessageVariableValues"), exports);
|
|
20
|
+
__exportStar(require("./enums/NotificationId"), exports);
|
package/package.json
CHANGED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
export enum NotificationId {
|
|
5
|
+
|
|
6
|
+
ISSUED_ACCOUNT_USA = "ISSUED_ACCOUNT_USA", //Mesnaje de apertura de cuentas y tarjeta USA
|
|
7
|
+
ISSUED_ACCOUNT_MEX = "ISSUED_ACCOUNT_MEX", //Mesnaje de apertura de cuentas y tarjeta MEX
|
|
8
|
+
ONB_ERROR_VALID_DOCUMENT = "ONB_ERROR_VALID_DOCUMENT", // Mensaje cuando el resultado del onboarding es error en la validación del documento
|
|
9
|
+
ONB_ERROR_FACEMATCH = "ONB_ERROR_FACEMATCH", // Mensaje cuando el resultado del onboarding es error porque no hace match en video selfie con el documento
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
}
|