diff --git a/common/types.ts b/common/types.ts index 78b824a2..ede1f903 100644 --- a/common/types.ts +++ b/common/types.ts @@ -129,12 +129,16 @@ export interface RecentOrg { address: string; } +export interface PaymentsInfo { + methods: string[]; + default: string; +} + export interface OrderInfo { payerType: string; payerData: CustomerData; deliveryType: string; deliveryData: Record; - paymentType: string; basketData: Record; countries: Record; cdekCountries: number[]; diff --git a/components/order/Payment.vue b/components/order/Payment.vue index c56c2f3b..19f12d39 100644 --- a/components/order/Payment.vue +++ b/components/order/Payment.vue @@ -1,30 +1,18 @@