@fiado/type-kit 3.306.0 → 3.308.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 (30) hide show
  1. package/bin/centralPayments/dtos/GetEventsSinceResponse.d.ts +6 -0
  2. package/bin/centralPayments/dtos/GetEventsSinceResponse.js +6 -0
  3. package/bin/centralPayments/dtos/WebhookEventItem.d.ts +15 -0
  4. package/bin/centralPayments/dtos/WebhookEventItem.js +10 -0
  5. package/bin/centralPayments/index.d.ts +2 -0
  6. package/bin/centralPayments/index.js +2 -0
  7. package/bin/credit/enums/ExpedienteAccessActionEnum.d.ts +2 -1
  8. package/bin/credit/enums/ExpedienteAccessActionEnum.js +1 -0
  9. package/bin/retailWizard/dtos/requests/ProfileQuestionsRequest.d.ts +6 -0
  10. package/bin/retailWizard/dtos/requests/ProfileQuestionsRequest.js +7 -0
  11. package/package.json +1 -1
  12. package/src/centralPayments/dtos/GetEventsSinceResponse.ts +7 -0
  13. package/src/centralPayments/dtos/WebhookEventItem.ts +15 -0
  14. package/src/centralPayments/index.ts +2 -0
  15. package/src/credit/enums/ExpedienteAccessActionEnum.ts +1 -0
  16. package/src/retailWizard/dtos/requests/ProfileQuestionsRequest.ts +11 -1
  17. package/bin/benefitCenter/enums/BenefitFlowEnum.d.ts +0 -11
  18. package/bin/benefitCenter/enums/BenefitFlowEnum.js +0 -15
  19. package/bin/places/dtos/CashInFeeDto.d.ts +0 -17
  20. package/bin/places/dtos/CashInFeeDto.js +0 -12
  21. package/bin/platformRbac/dtos/CompleteMyProfileRequest.d.ts +0 -9
  22. package/bin/platformRbac/dtos/CompleteMyProfileRequest.js +0 -34
  23. package/bin/walletFunding/dtos/CancelFundingReferenceRequest.d.ts +0 -14
  24. package/bin/walletFunding/dtos/CancelFundingReferenceRequest.js +0 -41
  25. package/bin/walletFunding/dtos/CancelFundingReferenceResponse.d.ts +0 -15
  26. package/bin/walletFunding/dtos/CancelFundingReferenceResponse.js +0 -13
  27. package/bin/walletFunding/dtos/CancelWalletFundingRequest.d.ts +0 -3
  28. package/bin/walletFunding/dtos/CancelWalletFundingRequest.js +0 -21
  29. package/bin/walletFunding/dtos/CancelWalletFundingResponse.d.ts +0 -7
  30. package/bin/walletFunding/dtos/CancelWalletFundingResponse.js +0 -6
@@ -0,0 +1,6 @@
1
+ import { WebhookEventItem } from "./WebhookEventItem";
2
+ export declare class GetEventsSinceResponse {
3
+ items: WebhookEventItem[];
4
+ /** Cursor en base64 para pedir la siguiente pagina. `null` cuando no hay mas. */
5
+ index: string | null;
6
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetEventsSinceResponse = void 0;
4
+ class GetEventsSinceResponse {
5
+ }
6
+ exports.GetEventsSinceResponse = GetEventsSinceResponse;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * Un evento de webhook de Central Payments, tal como lo devuelve
3
+ * `central-payments-webhook` al consultarlo por fecha.
4
+ */
5
+ export declare class WebhookEventItem {
6
+ id: string;
7
+ type: string;
8
+ cardholderId: string;
9
+ cardId: string;
10
+ /** Epoch en milisegundos. Dynamoose serializa el Date de `timestamps: true` como Number. */
11
+ createdAt: number;
12
+ /** Payload crudo del proveedor. Su forma depende del `type` del evento. */
13
+ event: unknown;
14
+ error?: unknown;
15
+ }
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.WebhookEventItem = void 0;
4
+ /**
5
+ * Un evento de webhook de Central Payments, tal como lo devuelve
6
+ * `central-payments-webhook` al consultarlo por fecha.
7
+ */
8
+ class WebhookEventItem {
9
+ }
10
+ exports.WebhookEventItem = WebhookEventItem;
@@ -7,6 +7,8 @@ export * from './dtos/GetMerchantLocationsResponse';
7
7
  export * from './dtos/MerchantLocation';
8
8
  export * from './dtos/CentralPaymentsTransactionInfo';
9
9
  export * from './dtos/CentralWebhookEventRequest';
10
+ export * from './dtos/WebhookEventItem';
11
+ export * from './dtos/GetEventsSinceResponse';
10
12
  export * from './enums/ServiceStatusEnum';
11
13
  export * from './enums/MerchantLocationDistanceUnitEnum';
12
14
  export * from './enums/CentralPaymentTransactionTypeEnum';
@@ -24,6 +24,8 @@ __exportStar(require("./dtos/GetMerchantLocationsResponse"), exports);
24
24
  __exportStar(require("./dtos/MerchantLocation"), exports);
25
25
  __exportStar(require("./dtos/CentralPaymentsTransactionInfo"), exports);
26
26
  __exportStar(require("./dtos/CentralWebhookEventRequest"), exports);
27
+ __exportStar(require("./dtos/WebhookEventItem"), exports);
28
+ __exportStar(require("./dtos/GetEventsSinceResponse"), exports);
27
29
  // central payments enums
28
30
  __exportStar(require("./enums/ServiceStatusEnum"), exports);
29
31
  __exportStar(require("./enums/MerchantLocationDistanceUnitEnum"), exports);
@@ -16,5 +16,6 @@ export declare enum ExpedienteAccessActionEnum {
16
16
  VIEW_OFFERS = "VIEW_OFFERS",
17
17
  VIEW_APPLICATIONS = "VIEW_APPLICATIONS",
18
18
  VIEW_PAYMENTS = "VIEW_PAYMENTS",
19
- VIEW_AUDIT_LOG = "VIEW_AUDIT_LOG"
19
+ VIEW_AUDIT_LOG = "VIEW_AUDIT_LOG",
20
+ VIEW_MESSAGES = "VIEW_MESSAGES"
20
21
  }
@@ -21,4 +21,5 @@ var ExpedienteAccessActionEnum;
21
21
  ExpedienteAccessActionEnum["VIEW_APPLICATIONS"] = "VIEW_APPLICATIONS";
22
22
  ExpedienteAccessActionEnum["VIEW_PAYMENTS"] = "VIEW_PAYMENTS";
23
23
  ExpedienteAccessActionEnum["VIEW_AUDIT_LOG"] = "VIEW_AUDIT_LOG";
24
+ ExpedienteAccessActionEnum["VIEW_MESSAGES"] = "VIEW_MESSAGES";
24
25
  })(ExpedienteAccessActionEnum || (exports.ExpedienteAccessActionEnum = ExpedienteAccessActionEnum = {}));
@@ -1,3 +1,4 @@
1
+ import { OccupationEnum } from '../../enums/OccupationEnum';
1
2
  /**
2
3
  * POST /wizard/sessions/:id/profile-questions — el perfil transaccional del cliente (paso 10).
3
4
  *
@@ -46,4 +47,9 @@ export declare class ProfileQuestionsRequest {
46
47
  usageMonthly: string;
47
48
  maximumTx: string;
48
49
  beneficialOwner: string;
50
+ /**
51
+ * Ocupación del cliente, opcional porque el paso 02 ya la captura en la ruta de KYC completo.
52
+ * Viaja en el paso 10 para el comprador que se saltó ese paso y no la tiene en el expediente.
53
+ */
54
+ occupation?: OccupationEnum;
49
55
  }
@@ -13,6 +13,7 @@ exports.ProfileQuestionsRequest = exports.BENEFICIAL_OWNER_VALUES = exports.MAXI
13
13
  const class_transformer_1 = require("class-transformer");
14
14
  const class_validator_1 = require("class-validator");
15
15
  const monthlyIncome_1 = require("../../catalog/monthlyIncome");
16
+ const OccupationEnum_1 = require("../../enums/OccupationEnum");
16
17
  /**
17
18
  * POST /wizard/sessions/:id/profile-questions — el perfil transaccional del cliente (paso 10).
18
19
  *
@@ -88,3 +89,9 @@ __decorate([
88
89
  (0, class_validator_1.IsIn)(exports.BENEFICIAL_OWNER_VALUES),
89
90
  __metadata("design:type", String)
90
91
  ], ProfileQuestionsRequest.prototype, "beneficialOwner", void 0);
92
+ __decorate([
93
+ (0, class_transformer_1.Expose)(),
94
+ (0, class_validator_1.IsOptional)(),
95
+ (0, class_validator_1.IsEnum)(OccupationEnum_1.OccupationEnum),
96
+ __metadata("design:type", String)
97
+ ], ProfileQuestionsRequest.prototype, "occupation", void 0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "3.306.0",
3
+ "version": "3.308.0",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -0,0 +1,7 @@
1
+ import { WebhookEventItem } from "./WebhookEventItem";
2
+
3
+ export class GetEventsSinceResponse {
4
+ items: WebhookEventItem[];
5
+ /** Cursor en base64 para pedir la siguiente pagina. `null` cuando no hay mas. */
6
+ index: string | null;
7
+ }
@@ -0,0 +1,15 @@
1
+ /**
2
+ * Un evento de webhook de Central Payments, tal como lo devuelve
3
+ * `central-payments-webhook` al consultarlo por fecha.
4
+ */
5
+ export class WebhookEventItem {
6
+ id: string;
7
+ type: string;
8
+ cardholderId: string;
9
+ cardId: string;
10
+ /** Epoch en milisegundos. Dynamoose serializa el Date de `timestamps: true` como Number. */
11
+ createdAt: number;
12
+ /** Payload crudo del proveedor. Su forma depende del `type` del evento. */
13
+ event: unknown;
14
+ error?: unknown;
15
+ }
@@ -9,6 +9,8 @@ export * from './dtos/GetMerchantLocationsResponse';
9
9
  export * from './dtos/MerchantLocation';
10
10
  export * from './dtos/CentralPaymentsTransactionInfo';
11
11
  export * from './dtos/CentralWebhookEventRequest';
12
+ export * from './dtos/WebhookEventItem';
13
+ export * from './dtos/GetEventsSinceResponse';
12
14
 
13
15
  // central payments enums
14
16
  export * from './enums/ServiceStatusEnum';
@@ -17,4 +17,5 @@ export enum ExpedienteAccessActionEnum {
17
17
  VIEW_APPLICATIONS = 'VIEW_APPLICATIONS',
18
18
  VIEW_PAYMENTS = 'VIEW_PAYMENTS',
19
19
  VIEW_AUDIT_LOG = 'VIEW_AUDIT_LOG',
20
+ VIEW_MESSAGES = 'VIEW_MESSAGES',
20
21
  }
@@ -1,6 +1,7 @@
1
1
  import { Expose } from 'class-transformer';
2
- import { IsIn, IsString } from 'class-validator';
2
+ import { IsEnum, IsIn, IsOptional, IsString } from 'class-validator';
3
3
  import { MONTHLY_INCOME_VALUES } from '../../catalog/monthlyIncome';
4
+ import { OccupationEnum } from '../../enums/OccupationEnum';
4
5
 
5
6
  /**
6
7
  * POST /wizard/sessions/:id/profile-questions — el perfil transaccional del cliente (paso 10).
@@ -74,4 +75,13 @@ export class ProfileQuestionsRequest {
74
75
  @IsString()
75
76
  @IsIn(BENEFICIAL_OWNER_VALUES as unknown as string[])
76
77
  beneficialOwner!: string;
78
+
79
+ /**
80
+ * Ocupación del cliente, opcional porque el paso 02 ya la captura en la ruta de KYC completo.
81
+ * Viaja en el paso 10 para el comprador que se saltó ese paso y no la tiene en el expediente.
82
+ */
83
+ @Expose()
84
+ @IsOptional()
85
+ @IsEnum(OccupationEnum)
86
+ occupation?: OccupationEnum;
77
87
  }
@@ -1,11 +0,0 @@
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
- }
@@ -1,15 +0,0 @@
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 = {}));
@@ -1,17 +0,0 @@
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
- }
@@ -1,12 +0,0 @@
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;
@@ -1,9 +0,0 @@
1
- /**
2
- * Body del PUT /me/profile/complete (autenticado, gate post-MFA del autoregistro). DEC-RBAC-034.
3
- * Opera sobre el propio usuario (cognitoSub del token). Valida nombre + los `userFieldDefs` requeridos
4
- * del tenant (422 MISSING_REQUIRED_FIELDS si faltan) y flipea `profileComplete=true`.
5
- */
6
- export declare class CompleteMyProfileRequest {
7
- displayName: string;
8
- customFields?: Record<string, string>;
9
- }
@@ -1,34 +0,0 @@
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.CompleteMyProfileRequest = void 0;
13
- const class_transformer_1 = require("class-transformer");
14
- const class_validator_1 = require("class-validator");
15
- /**
16
- * Body del PUT /me/profile/complete (autenticado, gate post-MFA del autoregistro). DEC-RBAC-034.
17
- * Opera sobre el propio usuario (cognitoSub del token). Valida nombre + los `userFieldDefs` requeridos
18
- * del tenant (422 MISSING_REQUIRED_FIELDS si faltan) y flipea `profileComplete=true`.
19
- */
20
- class CompleteMyProfileRequest {
21
- }
22
- exports.CompleteMyProfileRequest = CompleteMyProfileRequest;
23
- __decorate([
24
- (0, class_transformer_1.Expose)(),
25
- (0, class_validator_1.IsString)(),
26
- (0, class_validator_1.IsNotEmpty)(),
27
- __metadata("design:type", String)
28
- ], CompleteMyProfileRequest.prototype, "displayName", void 0);
29
- __decorate([
30
- (0, class_transformer_1.Expose)(),
31
- (0, class_validator_1.IsOptional)(),
32
- (0, class_validator_1.IsObject)(),
33
- __metadata("design:type", Object)
34
- ], CompleteMyProfileRequest.prototype, "customFields", void 0);
@@ -1,14 +0,0 @@
1
- /**
2
- * Body para cancelar una referencia de funding ya creada. La referencia/fundingId
3
- * viaja en la URL (`/funding/{moduleName}/{fundingId}/cancel`); este body aporta
4
- * el contexto del solicitante + idempotencia.
5
- *
6
- * NOTA: shape inferido desde el uso en `@fiado/api-invoker`
7
- * (benefits-marketplace / equality-connector) — confirmar con el dueño del
8
- * módulo walletFunding / el lambda equality-connector que implementa el cancel.
9
- */
10
- export declare class CancelFundingReferenceRequest {
11
- directoryId: string;
12
- reason?: string;
13
- idempotencyKey: string;
14
- }
@@ -1,41 +0,0 @@
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.CancelFundingReferenceRequest = void 0;
13
- const class_validator_1 = require("class-validator");
14
- /**
15
- * Body para cancelar una referencia de funding ya creada. La referencia/fundingId
16
- * viaja en la URL (`/funding/{moduleName}/{fundingId}/cancel`); este body aporta
17
- * el contexto del solicitante + idempotencia.
18
- *
19
- * NOTA: shape inferido desde el uso en `@fiado/api-invoker`
20
- * (benefits-marketplace / equality-connector) — confirmar con el dueño del
21
- * módulo walletFunding / el lambda equality-connector que implementa el cancel.
22
- */
23
- class CancelFundingReferenceRequest {
24
- }
25
- exports.CancelFundingReferenceRequest = CancelFundingReferenceRequest;
26
- __decorate([
27
- (0, class_validator_1.IsString)(),
28
- (0, class_validator_1.MaxLength)(64),
29
- __metadata("design:type", String)
30
- ], CancelFundingReferenceRequest.prototype, "directoryId", void 0);
31
- __decorate([
32
- (0, class_validator_1.IsOptional)(),
33
- (0, class_validator_1.IsString)(),
34
- (0, class_validator_1.MaxLength)(256),
35
- __metadata("design:type", String)
36
- ], CancelFundingReferenceRequest.prototype, "reason", void 0);
37
- __decorate([
38
- (0, class_validator_1.IsString)(),
39
- (0, class_validator_1.MaxLength)(64),
40
- __metadata("design:type", String)
41
- ], CancelFundingReferenceRequest.prototype, "idempotencyKey", void 0);
@@ -1,15 +0,0 @@
1
- import { BenefitPaymentStatusEnum } from "../../benefitCenter/enums/BenefitPaymentStatusEnum";
2
- import { WalletFundingErrorCodeEnum } from "../enums/WalletFundingErrorCodeEnum";
3
- /**
4
- * Respuesta de la cancelación de una referencia de funding. Mismo estilo que
5
- * CreateFundingReferenceResponse.
6
- *
7
- * NOTA: shape inferido desde el uso en `@fiado/api-invoker` — confirmar con el
8
- * dueño del módulo walletFunding / el lambda equality-connector.
9
- */
10
- export declare class CancelFundingReferenceResponse {
11
- /** Referencia cancelada (misma PK que se creó). */
12
- reference: string;
13
- status: BenefitPaymentStatusEnum;
14
- errorCode?: WalletFundingErrorCodeEnum;
15
- }
@@ -1,13 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CancelFundingReferenceResponse = void 0;
4
- /**
5
- * Respuesta de la cancelación de una referencia de funding. Mismo estilo que
6
- * CreateFundingReferenceResponse.
7
- *
8
- * NOTA: shape inferido desde el uso en `@fiado/api-invoker` — confirmar con el
9
- * dueño del módulo walletFunding / el lambda equality-connector.
10
- */
11
- class CancelFundingReferenceResponse {
12
- }
13
- exports.CancelFundingReferenceResponse = CancelFundingReferenceResponse;
@@ -1,3 +0,0 @@
1
- export declare class CancelWalletFundingRequest {
2
- idempotencyKey: string;
3
- }
@@ -1,21 +0,0 @@
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.CancelWalletFundingRequest = void 0;
13
- const class_validator_1 = require("class-validator");
14
- class CancelWalletFundingRequest {
15
- }
16
- exports.CancelWalletFundingRequest = CancelWalletFundingRequest;
17
- __decorate([
18
- (0, class_validator_1.IsString)(),
19
- (0, class_validator_1.MaxLength)(64),
20
- __metadata("design:type", String)
21
- ], CancelWalletFundingRequest.prototype, "idempotencyKey", void 0);
@@ -1,7 +0,0 @@
1
- import { BenefitPaymentStatusEnum } from "../../benefitCenter/enums/BenefitPaymentStatusEnum";
2
- import { WalletFundingErrorCodeEnum } from "../enums/WalletFundingErrorCodeEnum";
3
- export declare class CancelWalletFundingResponse {
4
- status: BenefitPaymentStatusEnum;
5
- errorCode?: WalletFundingErrorCodeEnum;
6
- fundingId?: string;
7
- }
@@ -1,6 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CancelWalletFundingResponse = void 0;
4
- class CancelWalletFundingResponse {
5
- }
6
- exports.CancelWalletFundingResponse = CancelWalletFundingResponse;