source: src/schemas/models/customer.ts@ 057453c

main
Last change on this file since 057453c was 057453c, checked in by Naum Shapkarovski <naumshapkarovski@…>, 6 weeks ago

feat: implement employees

  • Property mode set to 100644
File size: 753 bytes
RevLine 
[057453c]1import { z } from 'zod';
2import {
3 addressSchema,
4 bankAccountSchema,
5 customerSchema,
6 customerStatusSchema,
7 customerTableFilterValueSchema,
8 customerTableFiltersSchema,
9 newCustomerSchema,
10 tenantSchema,
11} from '../customer';
12
13export type CustomerTableFilters = z.infer<typeof customerTableFiltersSchema>;
14export type CustomerTableFilterValue = z.infer<typeof customerTableFilterValueSchema>;
15
16export type Address = z.infer<typeof addressSchema>;
17export type BankAccount = z.infer<typeof bankAccountSchema>;
18export type CustomerStatus = z.infer<typeof customerStatusSchema>;
19export type Customer = z.infer<typeof customerSchema>;
20export type NewCustomer = z.infer<typeof newCustomerSchema>;
21export type Tenant = z.infer<typeof tenantSchema>;
Note: See TracBrowser for help on using the repository browser.