fix eslint

This commit is contained in:
2025-07-03 15:24:28 +02:00
parent e935e9f911
commit 9063846282
12 changed files with 784 additions and 1121 deletions

View File

@ -32,40 +32,39 @@ export interface UserAddressOfficial {
}
export interface Payment {
bank_name: string;
city: string;
country_account_number: string;
country_iso: string;
country_name: string;
currency_iso: string;
iban: string;
id: number;
postcode: string;
street_and_number: string;
swift: string;
bank_name: string
city: string
country_account_number: string
country_iso: string
country_name: string
currency_iso: string
iban: string
id: number
postcode: string
street_and_number: string
swift: string
}
export interface CheckoutOrder {
cart_id: number;
currency_iso: string;
customer_id: number;
cart_id: number
currency_iso: string
customer_id: number
delivery_details: {
address: Address;
contact_email: string;
contact_phone_number: string;
delivery_option_id: number;
note: string;
};
payment_bank_account_id: number;
address: Address
contact_email: string
contact_phone_number: string
delivery_option_id: number
}
payment_bank_account_id: number
}
export interface Address {
city: string;
city: string
country_iso: {
str: string;
};
name: string;
postcode: string;
street: string;
surname: string;
str: string
}
name: string
postcode: string
street: string
surname: string
}