diff --git a/modules/customer-invoices/src/common/dto/response/proformas/list-proformas.response.dto.ts b/modules/customer-invoices/src/common/dto/response/proformas/list-proformas.response.dto.ts index f283fb37..a44fb5db 100644 --- a/modules/customer-invoices/src/common/dto/response/proformas/list-proformas.response.dto.ts +++ b/modules/customer-invoices/src/common/dto/response/proformas/list-proformas.response.dto.ts @@ -1,8 +1,8 @@ import { CurrencyCodeSchema, IsoDateSchema, - MoneySchema, LanguageCodeSchema, + MoneySchema, PercentageSchema, createPaginatedListSchema, } from "@erp/core"; diff --git a/modules/customer-invoices/src/common/dto/shared/issued-invoices/verifactu-record.dto.ts b/modules/customer-invoices/src/common/dto/shared/issued-invoices/verifactu-record.dto.ts index d0adf6c0..39d82af9 100644 --- a/modules/customer-invoices/src/common/dto/shared/issued-invoices/verifactu-record.dto.ts +++ b/modules/customer-invoices/src/common/dto/shared/issued-invoices/verifactu-record.dto.ts @@ -1,7 +1,7 @@ import { URLSchema } from "@erp/core"; import { z } from "zod/v4"; -export const VerifactuRecordStatusSchema = z.enum(["pending", "verified", "rejected"]); +export const VerifactuRecordStatusSchema = z.string(); //z.enum(["pending", "verified", "rejected"]); export const VerifactuRecordSchema = z.object({ status: VerifactuRecordStatusSchema,