Get Gift Card image and options on OrderItemInterface
When fetching a cart item Amasty implements the `CartItemInterface` and allows getting the details as such
```
... on AmGiftCardCartItem {
am_giftcard_image
am_giftcard_options {
code
label
value
}
}
```
when getting past orders for a customer however which I currently have
```
query GetCustomerPastOrders($pageSize: Int) @cache(policy: NetworkOnly) {
customer {
orders(pageSize: $pageSize) {
items {
order_date
number
total {
grand_total {
value
}
}
shipping_method
items {
id
product_name
product_sku
quantity_ordered
product_sale_price {
value
currency
}
selected_options {
label
value
}
entered_options {
label
value
}
}
}
total_count
}
}
}
```
ideally I would be able to do
```
... on AmGiftCardOrderItem {
am_giftcard_image
am_giftcard_options {
code
label
value
}
}
```
to get the values for that past order item. However it seems this interface is not implemented by amasty?