fix: renamed assignments table to deal_employees
This commit is contained in:
@@ -9,7 +9,6 @@ export type { OpenAPIConfig } from './core/OpenAPI';
|
||||
|
||||
export type { AddUserRequest } from './models/AddUserRequest';
|
||||
export type { AddUserResponse } from './models/AddUserResponse';
|
||||
export type { AssignmentSchema } from './models/AssignmentSchema';
|
||||
export type { AuthLoginRequest } from './models/AuthLoginRequest';
|
||||
export type { AuthLoginResponse } from './models/AuthLoginResponse';
|
||||
export type { BarcodeAttributeSchema } from './models/BarcodeAttributeSchema';
|
||||
@@ -108,6 +107,7 @@ export type { DealDeleteServiceRequest } from './models/DealDeleteServiceRequest
|
||||
export type { DealDeleteServiceResponse } from './models/DealDeleteServiceResponse';
|
||||
export type { DealDeleteServicesRequest } from './models/DealDeleteServicesRequest';
|
||||
export type { DealDeleteServicesResponse } from './models/DealDeleteServicesResponse';
|
||||
export type { DealEmployeesSchema } from './models/DealEmployeesSchema';
|
||||
export type { DealGeneralInfoSchema } from './models/DealGeneralInfoSchema';
|
||||
export type { DealGetAllResponse } from './models/DealGetAllResponse';
|
||||
export type { DealGroupChangeStatusRequest } from './models/DealGroupChangeStatusRequest';
|
||||
|
||||
@@ -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