@fiado/type-kit 2.1.44 → 2.1.46

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 CHANGED
@@ -55,3 +55,4 @@ export * as PayrollBusiness from './payroll-business';
55
55
  export * as Event from './event';
56
56
  export * as NotificationWS from './notificationWS';
57
57
  export * as ZendeskMessaging from './zendeskMessaging';
58
+ export * as ReferralBusiness from './referral-business';
package/bin/index.js CHANGED
@@ -24,7 +24,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.Collector = 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.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;
27
- exports.ZendeskMessaging = exports.NotificationWS = exports.Event = exports.PayrollBusiness = exports.Cnbv = exports.DirectorySetting = exports.InvoiceCollector = void 0;
27
+ exports.ReferralBusiness = exports.ZendeskMessaging = exports.NotificationWS = exports.Event = exports.PayrollBusiness = exports.Cnbv = exports.DirectorySetting = exports.InvoiceCollector = void 0;
28
28
  exports.Crypto = __importStar(require("./crypto"));
29
29
  exports.Account = __importStar(require("./account"));
30
30
  exports.Activity = __importStar(require("./activity"));
@@ -82,3 +82,4 @@ exports.PayrollBusiness = __importStar(require("./payroll-business"));
82
82
  exports.Event = __importStar(require("./event"));
83
83
  exports.NotificationWS = __importStar(require("./notificationWS"));
84
84
  exports.ZendeskMessaging = __importStar(require("./zendeskMessaging"));
85
+ exports.ReferralBusiness = __importStar(require("./referral-business"));
@@ -0,0 +1,5 @@
1
+ export declare enum AgentRoleEnum {
2
+ ADMIN = "ADMIN",
3
+ AGENT = "AGENT",
4
+ OWNER = "OWNER"
5
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AgentRoleEnum = void 0;
4
+ var AgentRoleEnum;
5
+ (function (AgentRoleEnum) {
6
+ AgentRoleEnum["ADMIN"] = "ADMIN";
7
+ AgentRoleEnum["AGENT"] = "AGENT";
8
+ AgentRoleEnum["OWNER"] = "OWNER";
9
+ })(AgentRoleEnum || (exports.AgentRoleEnum = AgentRoleEnum = {}));
@@ -0,0 +1 @@
1
+ export * from './enums/AgentRoleEnum';
@@ -0,0 +1,18 @@
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
+ //Enums
18
+ __exportStar(require("./enums/AgentRoleEnum"), exports);
@@ -3,4 +3,5 @@ export declare class GetCatalogParams {
3
3
  subCategory?: string;
4
4
  id?: string;
5
5
  serviceId?: string;
6
+ getDisabled?: boolean;
6
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "2.1.44",
3
+ "version": "2.1.46",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
package/src/index.ts CHANGED
@@ -55,3 +55,4 @@ export * as PayrollBusiness from './payroll-business';
55
55
  export * as Event from './event';
56
56
  export * as NotificationWS from './notificationWS';
57
57
  export * as ZendeskMessaging from './zendeskMessaging';
58
+ export * as ReferralBusiness from './referral-business';
@@ -0,0 +1,5 @@
1
+ export enum AgentRoleEnum {
2
+ ADMIN = 'ADMIN',
3
+ AGENT = 'AGENT',
4
+ OWNER = 'OWNER',
5
+ }
@@ -0,0 +1,2 @@
1
+ //Enums
2
+ export * from './enums/AgentRoleEnum';
@@ -3,4 +3,5 @@ export class GetCatalogParams {
3
3
  subCategory?: string;
4
4
  id?: string;
5
5
  serviceId?: string;
6
+ getDisabled?: boolean;
6
7
  }