fix: renamed assignments table to deal_employees

This commit is contained in:
2024-12-20 12:55:12 +04:00
parent b3919c785b
commit db21801cc1
6 changed files with 11 additions and 11 deletions

View File

@@ -3,7 +3,7 @@
/* tslint:disable */
/* eslint-disable */
import type { UserSchema } from './UserSchema';
export type AssignmentSchema = {
export type DealEmployeesSchema = {
user: UserSchema;
createdAt: string;
};

View File

@@ -2,10 +2,10 @@
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { AssignmentSchema } from './AssignmentSchema';
import type { BoxSchema } from './BoxSchema';
import type { ClientSchema } from './ClientSchema';
import type { DealBillRequestSchema } from './DealBillRequestSchema';
import type { DealEmployeesSchema } from './DealEmployeesSchema';
import type { DealGroupSchema } from './DealGroupSchema';
import type { DealProductSchema } from './DealProductSchema';
import type { DealServiceSchema } from './DealServiceSchema';
@@ -35,7 +35,7 @@ export type DealSchema = {
manager?: (UserSchema | null);
pallets?: Array<PalletSchema>;
boxes?: Array<BoxSchema>;
assignments?: Array<AssignmentSchema>;
employees?: Array<DealEmployeesSchema>;
deliveryDate?: (string | null);
receivingSlotDate?: (string | null);
};