@fiado/type-kit 1.8.20 → 1.8.21

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,10 @@
1
+ import { Company } from "../../company";
2
+ import { CountryId } from "../../country";
3
+ import { Provider } from "../../provider";
4
+ import { IssuanceFlow } from "../enums/issuance/IssuanceFlow";
5
+ export declare class AccountIssuanceStepConfig {
6
+ company: Company;
7
+ country: CountryId;
8
+ provider: Provider;
9
+ issuanceFlow: IssuanceFlow;
10
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AccountIssuanceStepConfig = void 0;
4
+ class AccountIssuanceStepConfig {
5
+ }
6
+ exports.AccountIssuanceStepConfig = AccountIssuanceStepConfig;
@@ -0,0 +1,4 @@
1
+ export declare enum IssuanceFlow {
2
+ SYNC = "SYNC",
3
+ ASYNC = "ASYNC"
4
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IssuanceFlow = void 0;
4
+ var IssuanceFlow;
5
+ (function (IssuanceFlow) {
6
+ IssuanceFlow["SYNC"] = "SYNC";
7
+ IssuanceFlow["ASYNC"] = "ASYNC";
8
+ })(IssuanceFlow || (exports.IssuanceFlow = IssuanceFlow = {}));
@@ -54,3 +54,4 @@ export * from './enums/AccountCancellationStatus';
54
54
  export * from './enums/Program';
55
55
  export * from './enums/issuance/KycStatus';
56
56
  export * from './enums/issuance/UserStatus';
57
+ export * from './enums/issuance/IssuanceFlow';
package/bin/card/index.js CHANGED
@@ -73,3 +73,4 @@ __exportStar(require("./enums/AccountCancellationStatus"), exports);
73
73
  __exportStar(require("./enums/Program"), exports);
74
74
  __exportStar(require("./enums/issuance/KycStatus"), exports);
75
75
  __exportStar(require("./enums/issuance/UserStatus"), exports);
76
+ __exportStar(require("./enums/issuance/IssuanceFlow"), exports);
@@ -0,0 +1,5 @@
1
+ export declare enum Company {
2
+ FIADOINC = "FIADOINC",
3
+ FIADOSA = "FIADOSA",
4
+ PAGOCONFIADO = "PAGOCONFIADO"
5
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Company = void 0;
4
+ var Company;
5
+ (function (Company) {
6
+ Company["FIADOINC"] = "FIADOINC";
7
+ Company["FIADOSA"] = "FIADOSA";
8
+ Company["PAGOCONFIADO"] = "PAGOCONFIADO";
9
+ })(Company || (exports.Company = Company = {}));
@@ -0,0 +1 @@
1
+ export * from './enums/Company';
@@ -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/Company"), exports);
package/bin/index.d.ts CHANGED
@@ -44,3 +44,4 @@ export * as Device from './device';
44
44
  export * as AppSelectionData from './appSelectionData';
45
45
  export * as AccountIssuanceBusiness from './accountIssuanceBusiness';
46
46
  export * as Services from './services';
47
+ export * as Company from './company';
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.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 = void 0;
26
+ 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 = void 0;
27
27
  exports.Account = __importStar(require("./account"));
28
28
  exports.Activity = __importStar(require("./activity"));
29
29
  exports.Beneficiary = __importStar(require("./beneficiary"));
@@ -70,3 +70,4 @@ exports.Device = __importStar(require("./device"));
70
70
  exports.AppSelectionData = __importStar(require("./appSelectionData"));
71
71
  exports.AccountIssuanceBusiness = __importStar(require("./accountIssuanceBusiness"));
72
72
  exports.Services = __importStar(require("./services"));
73
+ exports.Company = __importStar(require("./company"));
@@ -2,5 +2,6 @@ export declare enum Provider {
2
2
  TERN = "TERN",
3
3
  POMELO = "POMELO",
4
4
  STP = "STP",
5
- CP = "CP"
5
+ CP = "CP",
6
+ PAGOCONFIADO = "PAGOCONFIADO"
6
7
  }
@@ -7,4 +7,5 @@ var Provider;
7
7
  Provider["POMELO"] = "POMELO";
8
8
  Provider["STP"] = "STP";
9
9
  Provider["CP"] = "CP";
10
+ Provider["PAGOCONFIADO"] = "PAGOCONFIADO";
10
11
  })(Provider || (exports.Provider = Provider = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.8.20",
3
+ "version": "1.8.21",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -0,0 +1,14 @@
1
+ import { Company } from "../../company";
2
+ import { CountryId } from "../../country";
3
+ import { Provider } from "../../provider";
4
+ import { IssuanceFlow } from "../enums/issuance/IssuanceFlow";
5
+
6
+
7
+ export class AccountIssuanceStepConfig {
8
+
9
+ company: Company;
10
+ country: CountryId;
11
+ provider: Provider;
12
+ issuanceFlow: IssuanceFlow;
13
+
14
+ }
@@ -0,0 +1,8 @@
1
+
2
+
3
+
4
+
5
+ export enum IssuanceFlow {
6
+ SYNC = 'SYNC',
7
+ ASYNC = 'ASYNC',
8
+ }
package/src/card/index.ts CHANGED
@@ -60,6 +60,7 @@ export * from './enums/AccountCancellationStatus'
60
60
  export * from './enums/Program'
61
61
  export * from './enums/issuance/KycStatus'
62
62
  export * from './enums/issuance/UserStatus'
63
+ export * from './enums/issuance/IssuanceFlow'
63
64
 
64
65
 
65
66
 
@@ -0,0 +1,8 @@
1
+
2
+ export enum Company {
3
+
4
+ FIADOINC = "FIADOINC",
5
+ FIADOSA = "FIADOSA",
6
+ PAGOCONFIADO = "PAGOCONFIADO"
7
+
8
+ }
@@ -0,0 +1,6 @@
1
+
2
+ export * from './enums/Company';
3
+
4
+
5
+
6
+
package/src/index.ts CHANGED
@@ -1,3 +1,5 @@
1
+ import { Company } from './company/enums/Company';
2
+
1
3
  export * as Account from './account';
2
4
  export * as Activity from './activity';
3
5
  export * as Beneficiary from './beneficiary';
@@ -44,4 +46,5 @@ export * as Device from './device';
44
46
  export * as AppSelectionData from './appSelectionData';
45
47
  export * as AccountIssuanceBusiness from './accountIssuanceBusiness';
46
48
  export * as Services from './services';
49
+ export * as Company from './company';
47
50
 
@@ -2,5 +2,7 @@ export enum Provider {
2
2
  TERN = 'TERN',
3
3
  POMELO = 'POMELO',
4
4
  STP = 'STP',
5
- CP = 'CP'
5
+ CP = 'CP',
6
+ PAGOCONFIADO = "PAGOCONFIADO"
7
+
6
8
  }