14 lines
474 B
TypeScript
14 lines
474 B
TypeScript
|
|
//import * as z from "zod/v4";
|
||
|
|
|
||
|
|
import { ListCustomerInvoicesResponseDTO } from "@erp/customer-invoices/common";
|
||
|
|
|
||
|
|
/*export const CustomerCreateSchema = CreateCustomerRequestSchema;
|
||
|
|
export const CustomerUpdateSchema = UpdateCustomerByIdRequestSchema;
|
||
|
|
export const CustomerSchema = GetCustomerByIdResponseSchema.omit({
|
||
|
|
metadata: true,
|
||
|
|
});
|
||
|
|
|
||
|
|
export type CustomerData = z.infer<typeof CustomerSchema>;*/
|
||
|
|
|
||
|
|
export type CustomerInvoicesListData = ListCustomerInvoicesResponseDTO;
|