fix: renamed assignments table to deal_employees
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import type { UserSchema } from './UserSchema';
|
||||
export type AssignmentSchema = {
|
||||
export type DealEmployeesSchema = {
|
||||
user: UserSchema;
|
||||
createdAt: string;
|
||||
};
|
||||
@@ -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);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user