feat: pallets and boxes for deals

This commit is contained in:
2024-12-09 16:45:48 +04:00
parent de4885274b
commit 2ee0ef3a52
32 changed files with 1208 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { BoxSchema } from './BoxSchema';
import type { ShippingProductSchema } from './ShippingProductSchema';
export type PalletSchema = {
id: number;
boxes: Array<BoxSchema>;
shippingProducts: Array<ShippingProductSchema>;
};