@fiado/type-kit 3.189.0 → 3.191.0

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.
Files changed (135) hide show
  1. package/_test_/unit/retailOrg/dtos/validation/validationDtos.test.ts +27 -0
  2. package/bin/benefitCenter/enums/BenefitFlowEnum.d.ts +11 -0
  3. package/bin/benefitCenter/enums/BenefitFlowEnum.js +15 -0
  4. package/bin/index.d.ts +2 -0
  5. package/bin/index.js +7 -1
  6. package/bin/loanConfig/enums/ModifiableByRoleEnum.d.ts +11 -0
  7. package/bin/loanConfig/enums/ModifiableByRoleEnum.js +15 -0
  8. package/bin/places/dtos/CashInFeeDto.d.ts +17 -0
  9. package/bin/places/dtos/CashInFeeDto.js +12 -0
  10. package/bin/platformRbac/dtos/ResendOtpRequest.d.ts +22 -0
  11. package/bin/platformRbac/dtos/ResendOtpRequest.js +36 -0
  12. package/bin/platformRbac/dtos/ResendSelfRegisterOtpRequest.d.ts +11 -0
  13. package/bin/platformRbac/dtos/ResendSelfRegisterOtpRequest.js +36 -0
  14. package/bin/retailCards/dtos/requests/AssignCardRequest.d.ts +6 -0
  15. package/bin/retailCards/dtos/requests/AssignCardRequest.js +30 -0
  16. package/bin/retailCards/dtos/requests/CancelCardRequest.d.ts +5 -0
  17. package/bin/retailCards/dtos/requests/CancelCardRequest.js +22 -0
  18. package/bin/retailCards/dtos/requests/RegisterCardBatchRequest.d.ts +7 -0
  19. package/bin/retailCards/dtos/requests/RegisterCardBatchRequest.js +38 -0
  20. package/bin/retailCards/dtos/responses/CardBatchResponse.d.ts +17 -0
  21. package/bin/retailCards/dtos/responses/CardBatchResponse.js +2 -0
  22. package/bin/retailCards/dtos/responses/RetailCardResponse.d.ts +12 -0
  23. package/bin/retailCards/dtos/responses/RetailCardResponse.js +2 -0
  24. package/bin/retailCards/dtos/responses/StockAlertItem.d.ts +7 -0
  25. package/bin/retailCards/dtos/responses/StockAlertItem.js +2 -0
  26. package/bin/retailCards/dtos/responses/StockAlertsResponse.d.ts +5 -0
  27. package/bin/retailCards/dtos/responses/StockAlertsResponse.js +2 -0
  28. package/bin/retailCards/enums/CardBatchStatusEnum.d.ts +17 -0
  29. package/bin/retailCards/enums/CardBatchStatusEnum.js +21 -0
  30. package/bin/retailCards/enums/CardCancelReasonEnum.d.ts +13 -0
  31. package/bin/retailCards/enums/CardCancelReasonEnum.js +17 -0
  32. package/bin/retailCards/enums/RetailCardStatusEnum.d.ts +13 -0
  33. package/bin/retailCards/enums/RetailCardStatusEnum.js +17 -0
  34. package/bin/retailCards/events/CardBatchReceivedV1.d.ts +9 -0
  35. package/bin/retailCards/events/CardBatchReceivedV1.js +2 -0
  36. package/bin/retailCards/events/RetailCardAssignedV1.d.ts +10 -0
  37. package/bin/retailCards/events/RetailCardAssignedV1.js +2 -0
  38. package/bin/retailCards/events/RetailCardCancelledV1.d.ts +9 -0
  39. package/bin/retailCards/events/RetailCardCancelledV1.js +2 -0
  40. package/bin/retailCards/events/RetailCardReleasedV1.d.ts +7 -0
  41. package/bin/retailCards/events/RetailCardReleasedV1.js +2 -0
  42. package/bin/retailCards/index.d.ts +14 -0
  43. package/bin/retailCards/index.js +33 -0
  44. package/bin/retailCatalog/constants/SkuPattern.d.ts +2 -0
  45. package/bin/retailCatalog/constants/SkuPattern.js +5 -0
  46. package/bin/retailCatalog/dtos/InventoryItem.d.ts +20 -0
  47. package/bin/retailCatalog/dtos/InventoryItem.js +11 -0
  48. package/bin/retailCatalog/dtos/Product.d.ts +34 -0
  49. package/bin/retailCatalog/dtos/Product.js +11 -0
  50. package/bin/retailCatalog/dtos/requests/ChangeInventoryStatusRequest.d.ts +8 -0
  51. package/bin/retailCatalog/dtos/requests/ChangeInventoryStatusRequest.js +25 -0
  52. package/bin/retailCatalog/dtos/requests/CreateProductRequest.d.ts +22 -0
  53. package/bin/retailCatalog/dtos/requests/CreateProductRequest.js +98 -0
  54. package/bin/retailCatalog/dtos/requests/ListProductsQuery.d.ts +9 -0
  55. package/bin/retailCatalog/dtos/requests/ListProductsQuery.js +39 -0
  56. package/bin/retailCatalog/dtos/requests/RegisterInventoryRequest.d.ts +5 -0
  57. package/bin/retailCatalog/dtos/requests/RegisterInventoryRequest.js +27 -0
  58. package/bin/retailCatalog/dtos/requests/TransferInventoryRequest.d.ts +4 -0
  59. package/bin/retailCatalog/dtos/requests/TransferInventoryRequest.js +21 -0
  60. package/bin/retailCatalog/dtos/requests/UpdateProductRequest.d.ts +21 -0
  61. package/bin/retailCatalog/dtos/requests/UpdateProductRequest.js +100 -0
  62. package/bin/retailCatalog/dtos/requests/UpdateProductStatusRequest.d.ts +5 -0
  63. package/bin/retailCatalog/dtos/requests/UpdateProductStatusRequest.js +22 -0
  64. package/bin/retailCatalog/dtos/responses/ImportCsvFailure.d.ts +5 -0
  65. package/bin/retailCatalog/dtos/responses/ImportCsvFailure.js +7 -0
  66. package/bin/retailCatalog/dtos/responses/ImportCsvResult.d.ts +6 -0
  67. package/bin/retailCatalog/dtos/responses/ImportCsvResult.js +7 -0
  68. package/bin/retailCatalog/dtos/responses/InventoryItemResponse.d.ts +3 -0
  69. package/bin/retailCatalog/dtos/responses/InventoryItemResponse.js +2 -0
  70. package/bin/retailCatalog/dtos/responses/ProductResponse.d.ts +3 -0
  71. package/bin/retailCatalog/dtos/responses/ProductResponse.js +2 -0
  72. package/bin/retailCatalog/dtos/validation/ValidateInventoryResponse.d.ts +11 -0
  73. package/bin/retailCatalog/dtos/validation/ValidateInventoryResponse.js +10 -0
  74. package/bin/retailCatalog/dtos/validation/ValidateProductResponse.d.ts +20 -0
  75. package/bin/retailCatalog/dtos/validation/ValidateProductResponse.js +11 -0
  76. package/bin/retailCatalog/enums/InventoryItemStatusEnum.d.ts +18 -0
  77. package/bin/retailCatalog/enums/InventoryItemStatusEnum.js +22 -0
  78. package/bin/retailCatalog/enums/MdmLockModeEnum.d.ts +17 -0
  79. package/bin/retailCatalog/enums/MdmLockModeEnum.js +21 -0
  80. package/bin/retailCatalog/enums/MdmProviderEnum.d.ts +11 -0
  81. package/bin/retailCatalog/enums/MdmProviderEnum.js +15 -0
  82. package/bin/retailCatalog/enums/ProductStatusEnum.d.ts +13 -0
  83. package/bin/retailCatalog/enums/ProductStatusEnum.js +17 -0
  84. package/bin/retailCatalog/enums/ProductTierEnum.d.ts +15 -0
  85. package/bin/retailCatalog/enums/ProductTierEnum.js +19 -0
  86. package/bin/retailCatalog/index.d.ts +22 -0
  87. package/bin/retailCatalog/index.js +44 -0
  88. package/bin/retailCatalog/validators/IsMdmCoherentConstraint.d.ts +10 -0
  89. package/bin/retailCatalog/validators/IsMdmCoherentConstraint.js +31 -0
  90. package/bin/retailOrg/dtos/validation/CollectorValidationDto.d.ts +21 -0
  91. package/bin/retailOrg/dtos/validation/CollectorValidationDto.js +2 -0
  92. package/bin/retailOrg/index.d.ts +1 -0
  93. package/bin/retailOrg/index.js +1 -0
  94. package/package.json +1 -1
  95. package/src/index.ts +6 -0
  96. package/src/retailCards/dtos/requests/AssignCardRequest.ts +14 -0
  97. package/src/retailCards/dtos/requests/CancelCardRequest.ts +8 -0
  98. package/src/retailCards/dtos/requests/RegisterCardBatchRequest.ts +21 -0
  99. package/src/retailCards/dtos/responses/CardBatchResponse.ts +18 -0
  100. package/src/retailCards/dtos/responses/RetailCardResponse.ts +13 -0
  101. package/src/retailCards/dtos/responses/StockAlertItem.ts +7 -0
  102. package/src/retailCards/dtos/responses/StockAlertsResponse.ts +6 -0
  103. package/src/retailCards/enums/CardBatchStatusEnum.ts +17 -0
  104. package/src/retailCards/enums/CardCancelReasonEnum.ts +13 -0
  105. package/src/retailCards/enums/RetailCardStatusEnum.ts +13 -0
  106. package/src/retailCards/events/CardBatchReceivedV1.ts +9 -0
  107. package/src/retailCards/events/RetailCardAssignedV1.ts +10 -0
  108. package/src/retailCards/events/RetailCardCancelledV1.ts +10 -0
  109. package/src/retailCards/events/RetailCardReleasedV1.ts +7 -0
  110. package/src/retailCards/index.ts +20 -0
  111. package/src/retailCatalog/constants/SkuPattern.ts +2 -0
  112. package/src/retailCatalog/dtos/InventoryItem.ts +21 -0
  113. package/src/retailCatalog/dtos/Product.ts +35 -0
  114. package/src/retailCatalog/dtos/requests/ChangeInventoryStatusRequest.ts +11 -0
  115. package/src/retailCatalog/dtos/requests/CreateProductRequest.ts +81 -0
  116. package/src/retailCatalog/dtos/requests/ListProductsQuery.ts +22 -0
  117. package/src/retailCatalog/dtos/requests/RegisterInventoryRequest.ts +12 -0
  118. package/src/retailCatalog/dtos/requests/TransferInventoryRequest.ts +7 -0
  119. package/src/retailCatalog/dtos/requests/UpdateProductRequest.ts +82 -0
  120. package/src/retailCatalog/dtos/requests/UpdateProductStatusRequest.ts +8 -0
  121. package/src/retailCatalog/dtos/responses/ImportCsvFailure.ts +5 -0
  122. package/src/retailCatalog/dtos/responses/ImportCsvResult.ts +7 -0
  123. package/src/retailCatalog/dtos/responses/InventoryItemResponse.ts +4 -0
  124. package/src/retailCatalog/dtos/responses/ProductResponse.ts +4 -0
  125. package/src/retailCatalog/dtos/validation/ValidateInventoryResponse.ts +12 -0
  126. package/src/retailCatalog/dtos/validation/ValidateProductResponse.ts +21 -0
  127. package/src/retailCatalog/enums/InventoryItemStatusEnum.ts +18 -0
  128. package/src/retailCatalog/enums/MdmLockModeEnum.ts +17 -0
  129. package/src/retailCatalog/enums/MdmProviderEnum.ts +11 -0
  130. package/src/retailCatalog/enums/ProductStatusEnum.ts +13 -0
  131. package/src/retailCatalog/enums/ProductTierEnum.ts +15 -0
  132. package/src/retailCatalog/index.ts +34 -0
  133. package/src/retailCatalog/validators/IsMdmCoherentConstraint.ts +25 -0
  134. package/src/retailOrg/dtos/validation/CollectorValidationDto.ts +22 -0
  135. package/src/retailOrg/index.ts +1 -0
@@ -1,11 +1,13 @@
1
1
  import { RetailerValidationDto } from '../../../../../src/retailOrg/dtos/validation/RetailerValidationDto';
2
2
  import { StoreValidationDto } from '../../../../../src/retailOrg/dtos/validation/StoreValidationDto';
3
3
  import { RetailUserValidationDto } from '../../../../../src/retailOrg/dtos/validation/RetailUserValidationDto';
4
+ import { CollectorValidationDto } from '../../../../../src/retailOrg/dtos/validation/CollectorValidationDto';
4
5
  import { RetailerTypeEnum } from '../../../../../src/retailOrg/enums/RetailerTypeEnum';
5
6
  import { RetailerStatusEnum } from '../../../../../src/retailOrg/enums/RetailerStatusEnum';
6
7
  import { StoreStatusEnum } from '../../../../../src/retailOrg/enums/StoreStatusEnum';
7
8
  import { EmploymentTypeEnum } from '../../../../../src/retailOrg/enums/EmploymentTypeEnum';
8
9
  import { RetailUserStatusEnum } from '../../../../../src/retailOrg/enums/RetailUserStatusEnum';
10
+ import { CollectorSeniorityEnum } from '../../../../../src/retailOrg/enums/CollectorSeniorityEnum';
9
11
 
10
12
  describe('ValidationDtos (shapes mínimos de endpoints privados)', () => {
11
13
  it('RetailerValidationDto acepta el shape mínimo', () => {
@@ -46,4 +48,29 @@ describe('ValidationDtos (shapes mínimos de endpoints privados)', () => {
46
48
  expect(dto.employmentType).toBe(EmploymentTypeEnum.EMPLOYEE);
47
49
  expect(dto.commissionTier).toBe('TIER_A');
48
50
  });
51
+
52
+ it('CollectorValidationDto acepta el shape con seniority (coverageStoreIds requerido)', () => {
53
+ const dto: CollectorValidationDto = {
54
+ retailUserId: 'ru_001',
55
+ coverageStoreIds: ['store_001', 'store_002'],
56
+ collectorSeniority: CollectorSeniorityEnum.SENIOR,
57
+ status: RetailUserStatusEnum.ACTIVE,
58
+ commissionTier: 'TIER_A',
59
+ };
60
+ expect(dto.coverageStoreIds).toHaveLength(2);
61
+ expect(dto.collectorSeniority).toBe(CollectorSeniorityEnum.SENIOR);
62
+ expect(dto.status).toBe(RetailUserStatusEnum.ACTIVE);
63
+ });
64
+
65
+ it('CollectorValidationDto acepta un cobrador SIN seniority (collectorSeniority opcional)', () => {
66
+ const dto: CollectorValidationDto = {
67
+ retailUserId: 'ru_002',
68
+ coverageStoreIds: [],
69
+ status: RetailUserStatusEnum.ACTIVE,
70
+ commissionTier: 'collector',
71
+ };
72
+ expect(dto.collectorSeniority).toBeUndefined();
73
+ expect(dto.coverageStoreIds).toHaveLength(0);
74
+ expect(dto.commissionTier).toBe('collector');
75
+ });
49
76
  });
@@ -0,0 +1,11 @@
1
+ export declare enum BenefitFlowEnum {
2
+ TOPUPS = "TOPUPS",
3
+ BILL_PAYMENT = "BILL_PAYMENT",
4
+ CREDIT = "CREDIT",
5
+ INSURANCE = "INSURANCE",
6
+ DONATION = "DONATION",
7
+ PHARMACY = "PHARMACY",
8
+ REMITTANCE = "REMITTANCE",
9
+ /** Fondeo de wallet PCF con efectivo via provider externo (Equality/Passport, OpenPay, …) — spec 13. */
10
+ WALLET_FUNDING = "WALLET_FUNDING"
11
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BenefitFlowEnum = void 0;
4
+ var BenefitFlowEnum;
5
+ (function (BenefitFlowEnum) {
6
+ BenefitFlowEnum["TOPUPS"] = "TOPUPS";
7
+ BenefitFlowEnum["BILL_PAYMENT"] = "BILL_PAYMENT";
8
+ BenefitFlowEnum["CREDIT"] = "CREDIT";
9
+ BenefitFlowEnum["INSURANCE"] = "INSURANCE";
10
+ BenefitFlowEnum["DONATION"] = "DONATION";
11
+ BenefitFlowEnum["PHARMACY"] = "PHARMACY";
12
+ BenefitFlowEnum["REMITTANCE"] = "REMITTANCE";
13
+ /** Fondeo de wallet PCF con efectivo via provider externo (Equality/Passport, OpenPay, …) — spec 13. */
14
+ BenefitFlowEnum["WALLET_FUNDING"] = "WALLET_FUNDING";
15
+ })(BenefitFlowEnum || (exports.BenefitFlowEnum = BenefitFlowEnum = {}));
package/bin/index.d.ts CHANGED
@@ -89,6 +89,8 @@ export * as Modelias from './modelias';
89
89
  export * as NetworkConnector from './networkConnector';
90
90
  export * as EmailVerification from './emailVerification';
91
91
  export * as RetailOrg from './retailOrg';
92
+ export * as RetailCatalog from './retailCatalog';
93
+ export * as RetailCards from './retailCards';
92
94
  export * as LoanConfig from './loanConfig';
93
95
  export * as LoanOfferings from './loanOfferings';
94
96
  export * as LoanCollectorAssignment from './loanCollectorAssignment';
package/bin/index.js CHANGED
@@ -37,7 +37,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
37
37
  };
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
39
  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.BenefitCenter = exports.BankAccount = exports.P2pContact = exports.CreditContract = exports.Contract = exports.ProductCatalog = exports.ContactInfo = exports.TransactionAnalytics = exports.Transaction = exports.TransactionProcessor = exports.GenericMessage = exports.EventBridgeMessage = exports.SessionActivity = exports.NotificationMessages = exports.ServicePayment = exports.Header = exports.Identity = exports.UserTags = exports.Group = exports.File = exports.ExchangeRate = exports.Directory = exports.Currency = exports.Country = exports.Card = exports.Authentication = exports.AppContent = exports.App = exports.Offices = exports.Places = exports.Address = exports.Beneficiary = exports.Activity = exports.Account = exports.Crypto = void 0;
40
- exports.LoanCollectorAssignment = exports.LoanOfferings = exports.LoanConfig = exports.RetailOrg = exports.EmailVerification = exports.NetworkConnector = exports.Modelias = exports.TotpSecurity = exports.Passport = exports.WalletFunding = exports.Remittance = exports.PlatformRbac = exports.CognitoBackofficeConnector = exports.TwilioConnector = exports.MessagesConnector = exports.Mdm = exports.MilestoneBusiness = exports.CirculoCredito = exports.CreditStatements = exports.Sentry = exports.AiEngine = exports.Funnel = exports.TeamsConnector = exports.PlatformErrorEvents = exports.CustomerFile = exports.CreditBackoffice = exports.CreditDashboard = exports.CreditEngine = exports.Credit = exports.ComissionBusiness = exports.ReferralBusiness = exports.ZendeskMessaging = exports.NotificationWS = exports.Event = exports.PayrollBusiness = exports.Cnbv = exports.DirectorySetting = exports.InvoiceCollector = exports.Collector = exports.Pricelist = exports.Company = exports.Services = exports.AccountIssuanceBusiness = exports.AppSelectionData = void 0;
40
+ exports.LoanCollectorAssignment = exports.LoanOfferings = exports.LoanConfig = exports.RetailCards = exports.RetailCatalog = exports.RetailOrg = exports.EmailVerification = exports.NetworkConnector = exports.Modelias = exports.TotpSecurity = exports.Passport = exports.WalletFunding = exports.Remittance = exports.PlatformRbac = exports.CognitoBackofficeConnector = exports.TwilioConnector = exports.MessagesConnector = exports.Mdm = exports.MilestoneBusiness = exports.CirculoCredito = exports.CreditStatements = exports.Sentry = exports.AiEngine = exports.Funnel = exports.TeamsConnector = exports.PlatformErrorEvents = exports.CustomerFile = exports.CreditBackoffice = exports.CreditDashboard = exports.CreditEngine = exports.Credit = exports.ComissionBusiness = exports.ReferralBusiness = exports.ZendeskMessaging = exports.NotificationWS = exports.Event = exports.PayrollBusiness = exports.Cnbv = exports.DirectorySetting = exports.InvoiceCollector = exports.Collector = exports.Pricelist = exports.Company = exports.Services = exports.AccountIssuanceBusiness = exports.AppSelectionData = void 0;
41
41
  exports.Crypto = __importStar(require("./crypto"));
42
42
  exports.Account = __importStar(require("./account"));
43
43
  exports.Activity = __importStar(require("./activity"));
@@ -143,6 +143,12 @@ exports.EmailVerification = __importStar(require("./emailVerification"));
143
143
  // RetailOrg: DTOs/enums del lambda retail-org-business (SureKeep Fase 1 — pista Retail).
144
144
  // Dominio de retailers → zonas → tiendas → usuarios retail.
145
145
  exports.RetailOrg = __importStar(require("./retailOrg"));
146
+ // RetailCatalog: DTOs/enums del lambda retail-catalog-business (comp 05 — catálogo de productos
147
+ // por SKU + inventario por IMEI; SureKeep Fase 1 — pista Retail).
148
+ exports.RetailCatalog = __importStar(require("./retailCatalog"));
149
+ // RetailCards: DTOs/enums del lambda retail-cards-business (comp 06 — tarjetas físicas PCF:
150
+ // lotes, stock y asignación; SureKeep Fase 1 — pista Retail).
151
+ exports.RetailCards = __importStar(require("./retailCards"));
146
152
  // LoanConfig: DTOs/enums del lambda loan-config-business (comp 09 — parámetros operativos del SOFOM).
147
153
  exports.LoanConfig = __importStar(require("./loanConfig"));
148
154
  // LoanOfferings: DTOs/enums del lambda loan-offerings-business (comp 07 — planes de crédito,
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Rol RBAC mínimo que puede modificar un parámetro (RBAC a nivel de parámetro, modelo-datos §8).
3
+ * `retailer_admin` = "Admin VentasLuga" de M6 §8. Valores = identificadores de rol de RBAC F0.
4
+ * TD-004: confirmar mapeo super_admin ↔ platform_super_admin con el naming real de F0.
5
+ * @enum {string}
6
+ */
7
+ export declare enum ModifiableByRoleEnum {
8
+ SUPER_ADMIN = "super_admin",
9
+ SOFOM_ADMIN = "sofom_admin",
10
+ RETAILER_ADMIN = "retailer_admin"
11
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ModifiableByRoleEnum = void 0;
4
+ /**
5
+ * Rol RBAC mínimo que puede modificar un parámetro (RBAC a nivel de parámetro, modelo-datos §8).
6
+ * `retailer_admin` = "Admin VentasLuga" de M6 §8. Valores = identificadores de rol de RBAC F0.
7
+ * TD-004: confirmar mapeo super_admin ↔ platform_super_admin con el naming real de F0.
8
+ * @enum {string}
9
+ */
10
+ var ModifiableByRoleEnum;
11
+ (function (ModifiableByRoleEnum) {
12
+ ModifiableByRoleEnum["SUPER_ADMIN"] = "super_admin";
13
+ ModifiableByRoleEnum["SOFOM_ADMIN"] = "sofom_admin";
14
+ ModifiableByRoleEnum["RETAILER_ADMIN"] = "retailer_admin";
15
+ })(ModifiableByRoleEnum || (exports.ModifiableByRoleEnum = ModifiableByRoleEnum = {}));
@@ -0,0 +1,17 @@
1
+ import { CurrencyId } from '../../currency/enums/CurrencyId';
2
+ /**
3
+ * Comisión que cobra un punto de cash-in (lo que el lambda MUESTRA, no cobra).
4
+ * - GreenDot (US): representativo por cadena → `fixed` + `cap` (cada tienda cobra hasta el tope).
5
+ * - Passport (MX): por red → `fixed` + `percentage`.
6
+ * Response DTO — sin decoradores de validación.
7
+ */
8
+ export declare class CashInFeeDto {
9
+ /** Comisión fija, en la moneda del país. */
10
+ fixed?: number;
11
+ /** Porcentaje del monto depositado (0–100). */
12
+ percentage?: number;
13
+ /** Tope máximo de comisión (GreenDot: el asociado cobra hasta este cap). */
14
+ cap?: number;
15
+ /** Moneda del fee: USD (GreenDot) | MXN (Passport). */
16
+ currency: CurrencyId;
17
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CashInFeeDto = void 0;
4
+ /**
5
+ * Comisión que cobra un punto de cash-in (lo que el lambda MUESTRA, no cobra).
6
+ * - GreenDot (US): representativo por cadena → `fixed` + `cap` (cada tienda cobra hasta el tope).
7
+ * - Passport (MX): por red → `fixed` + `percentage`.
8
+ * Response DTO — sin decoradores de validación.
9
+ */
10
+ class CashInFeeDto {
11
+ }
12
+ exports.CashInFeeDto = CashInFeeDto;
@@ -0,0 +1,22 @@
1
+ import { MfaMethodEnum } from '../enums/MfaMethodEnum';
2
+ /**
3
+ * Body del POST /auth/resend-otp (público, anónimo). DEC-RBAC-054.
4
+ * Reenvía el OTP del login re-disparando el challenge real CUSTOM_AUTH (EMAIL_OTP) para la
5
+ * identidad SIN password. `tenantId` obligatorio (DEC-064 — el picker ya lo resolvió, NO "solo email").
6
+ * El email se normaliza lowercase server-side. Postura anti-enumeración: respuesta 200 genérica
7
+ * siempre, sin filtrar existencia (ver AuthLoginManager.resendChallengeOtp).
8
+ */
9
+ export declare class ResendOtpRequest {
10
+ email: string;
11
+ tenantId: string;
12
+ }
13
+ /**
14
+ * Respuesta del resend-otp. `session`/`mfaMethod` frescos del nuevo challenge CUSTOM_AUTH.
15
+ * Plain sin validators (no validamos lo que mandamos al cliente — fiado-validation-and-dtos § 7).
16
+ * Ambos opcionales: en los caminos de rechazo silencioso (anti-enumeración) o ramas sin CUSTOM_AUTH
17
+ * el server responde 200 genérico sin session ni método.
18
+ */
19
+ export interface ResendOtpResponse {
20
+ session?: string;
21
+ mfaMethod?: MfaMethodEnum;
22
+ }
@@ -0,0 +1,36 @@
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.ResendOtpRequest = void 0;
13
+ const class_transformer_1 = require("class-transformer");
14
+ const class_validator_1 = require("class-validator");
15
+ /**
16
+ * Body del POST /auth/resend-otp (público, anónimo). DEC-RBAC-054.
17
+ * Reenvía el OTP del login re-disparando el challenge real CUSTOM_AUTH (EMAIL_OTP) para la
18
+ * identidad SIN password. `tenantId` obligatorio (DEC-064 — el picker ya lo resolvió, NO "solo email").
19
+ * El email se normaliza lowercase server-side. Postura anti-enumeración: respuesta 200 genérica
20
+ * siempre, sin filtrar existencia (ver AuthLoginManager.resendChallengeOtp).
21
+ */
22
+ class ResendOtpRequest {
23
+ }
24
+ exports.ResendOtpRequest = ResendOtpRequest;
25
+ __decorate([
26
+ (0, class_transformer_1.Expose)(),
27
+ (0, class_validator_1.IsEmail)(),
28
+ (0, class_validator_1.IsNotEmpty)(),
29
+ __metadata("design:type", String)
30
+ ], ResendOtpRequest.prototype, "email", void 0);
31
+ __decorate([
32
+ (0, class_transformer_1.Expose)(),
33
+ (0, class_validator_1.IsString)(),
34
+ (0, class_validator_1.IsNotEmpty)(),
35
+ __metadata("design:type", String)
36
+ ], ResendOtpRequest.prototype, "tenantId", void 0);
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Body del POST /self-register/resend-otp (público, anónimo). DEC-RBAC-054.
3
+ * Re-envía el OTP del autoregistro (mecanismo messages-business, NO Cognito) tras validar un
4
+ * `pending` existente. Misma postura anti-enumeración del start. El email se normaliza lowercase
5
+ * server-side. DTO propio por endpoint (NO reusa SelfRegisterStartRequest, que exige roleId/scope/
6
+ * scopeRef, ni SelfRegisterVerifyOtpRequest, que exige otp).
7
+ */
8
+ export declare class ResendSelfRegisterOtpRequest {
9
+ tenantId: string;
10
+ email: string;
11
+ }
@@ -0,0 +1,36 @@
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.ResendSelfRegisterOtpRequest = void 0;
13
+ const class_transformer_1 = require("class-transformer");
14
+ const class_validator_1 = require("class-validator");
15
+ /**
16
+ * Body del POST /self-register/resend-otp (público, anónimo). DEC-RBAC-054.
17
+ * Re-envía el OTP del autoregistro (mecanismo messages-business, NO Cognito) tras validar un
18
+ * `pending` existente. Misma postura anti-enumeración del start. El email se normaliza lowercase
19
+ * server-side. DTO propio por endpoint (NO reusa SelfRegisterStartRequest, que exige roleId/scope/
20
+ * scopeRef, ni SelfRegisterVerifyOtpRequest, que exige otp).
21
+ */
22
+ class ResendSelfRegisterOtpRequest {
23
+ }
24
+ exports.ResendSelfRegisterOtpRequest = ResendSelfRegisterOtpRequest;
25
+ __decorate([
26
+ (0, class_transformer_1.Expose)(),
27
+ (0, class_validator_1.IsString)(),
28
+ (0, class_validator_1.IsNotEmpty)(),
29
+ __metadata("design:type", String)
30
+ ], ResendSelfRegisterOtpRequest.prototype, "tenantId", void 0);
31
+ __decorate([
32
+ (0, class_transformer_1.Expose)(),
33
+ (0, class_validator_1.IsEmail)(),
34
+ (0, class_validator_1.IsNotEmpty)(),
35
+ __metadata("design:type", String)
36
+ ], ResendSelfRegisterOtpRequest.prototype, "email", void 0);
@@ -0,0 +1,6 @@
1
+ /** Body de la asignación de una tarjeta física a un cliente. */
2
+ export declare class AssignCardRequest {
3
+ assignedToCustomerId: string;
4
+ assignedByUserId: string;
5
+ creditId?: string;
6
+ }
@@ -0,0 +1,30 @@
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.AssignCardRequest = void 0;
13
+ const class_validator_1 = require("class-validator");
14
+ /** Body de la asignación de una tarjeta física a un cliente. */
15
+ class AssignCardRequest {
16
+ }
17
+ exports.AssignCardRequest = AssignCardRequest;
18
+ __decorate([
19
+ (0, class_validator_1.IsString)(),
20
+ __metadata("design:type", String)
21
+ ], AssignCardRequest.prototype, "assignedToCustomerId", void 0);
22
+ __decorate([
23
+ (0, class_validator_1.IsString)(),
24
+ __metadata("design:type", String)
25
+ ], AssignCardRequest.prototype, "assignedByUserId", void 0);
26
+ __decorate([
27
+ (0, class_validator_1.IsOptional)(),
28
+ (0, class_validator_1.IsString)(),
29
+ __metadata("design:type", String)
30
+ ], AssignCardRequest.prototype, "creditId", void 0);
@@ -0,0 +1,5 @@
1
+ import { CardCancelReasonEnum } from '../../enums/CardCancelReasonEnum';
2
+ /** Body de la cancelación (anulación) de una tarjeta física. */
3
+ export declare class CancelCardRequest {
4
+ reason: CardCancelReasonEnum;
5
+ }
@@ -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.CancelCardRequest = void 0;
13
+ const class_validator_1 = require("class-validator");
14
+ const CardCancelReasonEnum_1 = require("../../enums/CardCancelReasonEnum");
15
+ /** Body de la cancelación (anulación) de una tarjeta física. */
16
+ class CancelCardRequest {
17
+ }
18
+ exports.CancelCardRequest = CancelCardRequest;
19
+ __decorate([
20
+ (0, class_validator_1.IsEnum)(CardCancelReasonEnum_1.CardCancelReasonEnum),
21
+ __metadata("design:type", String)
22
+ ], CancelCardRequest.prototype, "reason", void 0);
@@ -0,0 +1,7 @@
1
+ /** Body del registro (recepción) de un lote de tarjetas para una tienda. */
2
+ export declare class RegisterCardBatchRequest {
3
+ storeId: string;
4
+ totalCards: number;
5
+ cardNumbers: string[];
6
+ notes?: string | null;
7
+ }
@@ -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.RegisterCardBatchRequest = void 0;
13
+ const class_validator_1 = require("class-validator");
14
+ /** Body del registro (recepción) de un lote de tarjetas para una tienda. */
15
+ class RegisterCardBatchRequest {
16
+ }
17
+ exports.RegisterCardBatchRequest = RegisterCardBatchRequest;
18
+ __decorate([
19
+ (0, class_validator_1.IsString)(),
20
+ __metadata("design:type", String)
21
+ ], RegisterCardBatchRequest.prototype, "storeId", void 0);
22
+ __decorate([
23
+ (0, class_validator_1.IsInt)(),
24
+ (0, class_validator_1.Min)(1),
25
+ (0, class_validator_1.Max)(1000),
26
+ __metadata("design:type", Number)
27
+ ], RegisterCardBatchRequest.prototype, "totalCards", void 0);
28
+ __decorate([
29
+ (0, class_validator_1.IsArray)(),
30
+ (0, class_validator_1.ArrayMaxSize)(1000),
31
+ (0, class_validator_1.IsString)({ each: true }),
32
+ __metadata("design:type", Array)
33
+ ], RegisterCardBatchRequest.prototype, "cardNumbers", void 0);
34
+ __decorate([
35
+ (0, class_validator_1.IsOptional)(),
36
+ (0, class_validator_1.IsString)(),
37
+ __metadata("design:type", String)
38
+ ], RegisterCardBatchRequest.prototype, "notes", void 0);
@@ -0,0 +1,17 @@
1
+ import { CardBatchStatusEnum } from '../../enums/CardBatchStatusEnum';
2
+ /** Representación de un lote de tarjetas hacia el cliente. */
3
+ export interface CardBatchResponse {
4
+ batchId: string;
5
+ retailerId: string;
6
+ storeId: string;
7
+ totalCards: number;
8
+ expectedCardCount: number;
9
+ loadedCount: number;
10
+ availableCount: number;
11
+ assignedCount: number;
12
+ cancelledCount: number;
13
+ status: CardBatchStatusEnum;
14
+ receivedAt: string;
15
+ receivedByUserId: string;
16
+ notes: string | null;
17
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,12 @@
1
+ import { RetailCardStatusEnum } from '../../enums/RetailCardStatusEnum';
2
+ /** Representación de una tarjeta física hacia el cliente. */
3
+ export interface RetailCardResponse {
4
+ cardNumber: string;
5
+ retailerId: string;
6
+ batchId: string;
7
+ storeId: string;
8
+ status: RetailCardStatusEnum;
9
+ assignedToCustomerId: string | null;
10
+ assignedAt: string | null;
11
+ assignedByUserId: string | null;
12
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ /** Ítem de alerta de stock por tienda. */
2
+ export interface StockAlertItem {
3
+ storeId: string;
4
+ storeName: string;
5
+ availableCount: number;
6
+ threshold: number;
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,5 @@
1
+ import { StockAlertItem } from './StockAlertItem';
2
+ /** Respuesta del reporte de alertas de stock. */
3
+ export interface StockAlertsResponse {
4
+ alerts: StockAlertItem[];
5
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,17 @@
1
+ /**
2
+ * Estado de un lote de tarjetas.
3
+ * @enum {string}
4
+ *
5
+ * @property {string} RECEIVING - Transitorio, carga en curso (DEC-004/DEC-008).
6
+ * @property {string} RECEIVED - Carga completada, lote atado a una tienda (happy-path F1).
7
+ * @property {string} FAILED - Terminal, la carga del lote falló (DEC-004/DEC-008).
8
+ * @property {string} DISTRIBUTED - Reservado F1 — lote centralizado repartido a varias tiendas (TD-008).
9
+ * @property {string} CLOSED - Reservado F1 — cierre manual del lote (TD-008).
10
+ */
11
+ export declare enum CardBatchStatusEnum {
12
+ RECEIVING = "RECEIVING",
13
+ RECEIVED = "RECEIVED",
14
+ FAILED = "FAILED",
15
+ DISTRIBUTED = "DISTRIBUTED",
16
+ CLOSED = "CLOSED"
17
+ }
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CardBatchStatusEnum = void 0;
4
+ /**
5
+ * Estado de un lote de tarjetas.
6
+ * @enum {string}
7
+ *
8
+ * @property {string} RECEIVING - Transitorio, carga en curso (DEC-004/DEC-008).
9
+ * @property {string} RECEIVED - Carga completada, lote atado a una tienda (happy-path F1).
10
+ * @property {string} FAILED - Terminal, la carga del lote falló (DEC-004/DEC-008).
11
+ * @property {string} DISTRIBUTED - Reservado F1 — lote centralizado repartido a varias tiendas (TD-008).
12
+ * @property {string} CLOSED - Reservado F1 — cierre manual del lote (TD-008).
13
+ */
14
+ var CardBatchStatusEnum;
15
+ (function (CardBatchStatusEnum) {
16
+ CardBatchStatusEnum["RECEIVING"] = "RECEIVING";
17
+ CardBatchStatusEnum["RECEIVED"] = "RECEIVED";
18
+ CardBatchStatusEnum["FAILED"] = "FAILED";
19
+ CardBatchStatusEnum["DISTRIBUTED"] = "DISTRIBUTED";
20
+ CardBatchStatusEnum["CLOSED"] = "CLOSED";
21
+ })(CardBatchStatusEnum || (exports.CardBatchStatusEnum = CardBatchStatusEnum = {}));
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Motivo de cancelación de una tarjeta física.
3
+ * @enum {string}
4
+ *
5
+ * @property {string} PLASTIC_DAMAGED - Plástico dañado.
6
+ * @property {string} LOST - Tarjeta perdida.
7
+ * @property {string} THEFT_REPORTED - Robo reportado.
8
+ */
9
+ export declare enum CardCancelReasonEnum {
10
+ PLASTIC_DAMAGED = "PLASTIC_DAMAGED",
11
+ LOST = "LOST",
12
+ THEFT_REPORTED = "THEFT_REPORTED"
13
+ }
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CardCancelReasonEnum = void 0;
4
+ /**
5
+ * Motivo de cancelación de una tarjeta física.
6
+ * @enum {string}
7
+ *
8
+ * @property {string} PLASTIC_DAMAGED - Plástico dañado.
9
+ * @property {string} LOST - Tarjeta perdida.
10
+ * @property {string} THEFT_REPORTED - Robo reportado.
11
+ */
12
+ var CardCancelReasonEnum;
13
+ (function (CardCancelReasonEnum) {
14
+ CardCancelReasonEnum["PLASTIC_DAMAGED"] = "PLASTIC_DAMAGED";
15
+ CardCancelReasonEnum["LOST"] = "LOST";
16
+ CardCancelReasonEnum["THEFT_REPORTED"] = "THEFT_REPORTED";
17
+ })(CardCancelReasonEnum || (exports.CardCancelReasonEnum = CardCancelReasonEnum = {}));
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Estado de una tarjeta física individual.
3
+ * @enum {string}
4
+ *
5
+ * @property {string} AVAILABLE - Cargada en stock, disponible para asignar.
6
+ * @property {string} ASSIGNED - Asignada a un cliente.
7
+ * @property {string} CANCELLED - Anulada (plástico dañado, pérdida o robo). Estado terminal.
8
+ */
9
+ export declare enum RetailCardStatusEnum {
10
+ AVAILABLE = "AVAILABLE",
11
+ ASSIGNED = "ASSIGNED",
12
+ CANCELLED = "CANCELLED"
13
+ }
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RetailCardStatusEnum = void 0;
4
+ /**
5
+ * Estado de una tarjeta física individual.
6
+ * @enum {string}
7
+ *
8
+ * @property {string} AVAILABLE - Cargada en stock, disponible para asignar.
9
+ * @property {string} ASSIGNED - Asignada a un cliente.
10
+ * @property {string} CANCELLED - Anulada (plástico dañado, pérdida o robo). Estado terminal.
11
+ */
12
+ var RetailCardStatusEnum;
13
+ (function (RetailCardStatusEnum) {
14
+ RetailCardStatusEnum["AVAILABLE"] = "AVAILABLE";
15
+ RetailCardStatusEnum["ASSIGNED"] = "ASSIGNED";
16
+ RetailCardStatusEnum["CANCELLED"] = "CANCELLED";
17
+ })(RetailCardStatusEnum || (exports.RetailCardStatusEnum = RetailCardStatusEnum = {}));
@@ -0,0 +1,9 @@
1
+ /** Emitido cuando un lote de tarjetas se recibe (RECEIVED). */
2
+ export interface CardBatchReceivedV1 {
3
+ batchId: string;
4
+ retailerId: string;
5
+ storeId: string;
6
+ totalCards: number;
7
+ receivedByUserId: string;
8
+ occurredAt: string;
9
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,10 @@
1
+ /** Emitido cuando una tarjeta se asigna a un cliente. */
2
+ export interface RetailCardAssignedV1 {
3
+ cardNumber: string;
4
+ retailerId: string;
5
+ storeId: string;
6
+ assignedToCustomerId: string;
7
+ assignedByUserId: string;
8
+ creditId?: string;
9
+ occurredAt: string;
10
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,9 @@
1
+ import { CardCancelReasonEnum } from '../enums/CardCancelReasonEnum';
2
+ /** Emitido cuando una tarjeta se cancela (anula). */
3
+ export interface RetailCardCancelledV1 {
4
+ cardNumber: string;
5
+ retailerId: string;
6
+ storeId: string;
7
+ reason: CardCancelReasonEnum;
8
+ occurredAt: string;
9
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ /** Emitido cuando una tarjeta se libera (vuelve a AVAILABLE). */
2
+ export interface RetailCardReleasedV1 {
3
+ cardNumber: string;
4
+ retailerId: string;
5
+ storeId: string;
6
+ occurredAt: string;
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });