first commit

This commit is contained in:
Samandar Turgunboyev
2025-10-13 14:14:32 +05:00
parent 4309981b29
commit 1f1aae0ab7
76 changed files with 10746 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
export interface TestApiType {
boxName: string;
cargoType: string;
id: number;
packetCount: number;
partyName: string;
packets: {
id: number;
packetName: string;
packetStatus: string;
items: {
acceptedNumber: null | string | number;
amount: number;
id: number;
name: string;
nameRu: string;
netWeight: number;
price: number;
totalPrice: number;
trekId: string;
}[];
passportInfo: {
address: string;
birthDate: string | number;
fullName: string;
id: number;
passportBackImage: string;
passportFrontImage: string;
passportPin: string;
passportSeries: string;
phone: string;
};
userInfo: {
address: string;
cargoID: string;
fullName: string;
id: number;
phone: string;
};
}[];
}