@fiado/type-kit 1.6.35 → 1.6.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,6 @@
1
+ export declare enum IdentificationParameter {
2
+ CURP = "CURP",
3
+ SSN = "SSN",
4
+ ITIN = "ITIN",
5
+ FULL_NAME = "FULLNAME"
6
+ }
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IdentificationParameter = void 0;
4
+ var IdentificationParameter;
5
+ (function (IdentificationParameter) {
6
+ IdentificationParameter["CURP"] = "CURP";
7
+ IdentificationParameter["SSN"] = "SSN";
8
+ IdentificationParameter["ITIN"] = "ITIN";
9
+ IdentificationParameter["FULL_NAME"] = "FULLNAME";
10
+ })(IdentificationParameter || (exports.IdentificationParameter = IdentificationParameter = {}));
@@ -0,0 +1 @@
1
+ export * from './enums/IdentificationParameter';
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./enums/IdentificationParameter"), exports);
package/bin/index.d.ts CHANGED
@@ -37,3 +37,4 @@ export * as Auth from './auth';
37
37
  export * as FiadoApiResponse from './apiResponse';
38
38
  export * as Helpdesk from './helpdesk';
39
39
  export * as CentralPayments from "./centralPayments";
40
+ export * as Blacklist from './blacklist';
package/bin/index.js CHANGED
@@ -23,7 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
23
23
  return result;
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.CentralPayments = exports.Helpdesk = exports.FiadoApiResponse = exports.Auth = exports.LegalDocumentsBusiness = exports.Role = exports.STPAccount = exports.RiskProfile = exports.FraudPreventionEngine = exports.BBVARst = exports.Stp = 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 = void 0;
26
+ 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.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 = void 0;
27
27
  exports.Account = __importStar(require("./account"));
28
28
  exports.Activity = __importStar(require("./activity"));
29
29
  exports.Beneficiary = __importStar(require("./beneficiary"));
@@ -63,3 +63,4 @@ exports.Auth = __importStar(require("./auth"));
63
63
  exports.FiadoApiResponse = __importStar(require("./apiResponse"));
64
64
  exports.Helpdesk = __importStar(require("./helpdesk"));
65
65
  exports.CentralPayments = __importStar(require("./centralPayments"));
66
+ exports.Blacklist = __importStar(require("./blacklist"));
@@ -12,5 +12,6 @@ export declare enum AlarmName {
12
12
  PROFILE_UPDATE_SANCTIONED = "PROFILE_UPDATE_SANCTIONED",
13
13
  PROFILE_UPDATE_PEP = "PROFILE_UPDATE_PEP",
14
14
  PROFILE_UPDATE_BLOCKED = "PROFILE_UPDATE_BLOCKED",
15
- RISK_INCREASE = "RISK_INCREASE"
15
+ RISK_INCREASE = "RISK_INCREASE",
16
+ HIGH_RISK_ATTEMPT = "HIGH_RISK_ATTEMPT"
16
17
  }
@@ -17,4 +17,5 @@ var AlarmName;
17
17
  AlarmName["PROFILE_UPDATE_PEP"] = "PROFILE_UPDATE_PEP";
18
18
  AlarmName["PROFILE_UPDATE_BLOCKED"] = "PROFILE_UPDATE_BLOCKED";
19
19
  AlarmName["RISK_INCREASE"] = "RISK_INCREASE";
20
+ AlarmName["HIGH_RISK_ATTEMPT"] = "HIGH_RISK_ATTEMPT";
20
21
  })(AlarmName || (exports.AlarmName = AlarmName = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.6.35",
3
+ "version": "1.6.37",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -0,0 +1,6 @@
1
+ export enum IdentificationParameter {
2
+ CURP = "CURP",
3
+ SSN = "SSN",
4
+ ITIN = "ITIN",
5
+ FULL_NAME = "FULLNAME",
6
+ }
@@ -0,0 +1 @@
1
+ export * from './enums/IdentificationParameter';
package/src/index.ts CHANGED
@@ -37,6 +37,7 @@ export * as Auth from './auth';
37
37
  export * as FiadoApiResponse from './apiResponse';
38
38
  export * as Helpdesk from './helpdesk';
39
39
  export * as CentralPayments from "./centralPayments";
40
+ export * as Blacklist from './blacklist';
40
41
 
41
42
 
42
43
 
@@ -18,5 +18,7 @@ export enum AlarmName {
18
18
 
19
19
  RISK_INCREASE = "RISK_INCREASE",
20
20
 
21
+ HIGH_RISK_ATTEMPT = "HIGH_RISK_ATTEMPT",
22
+
21
23
  }
22
24