import VideowiseSDK from "@vidystar/videowise-react-native-sdk";
await VideowiseSDK.trackingPixel({
shop: "storename.myshopify.com",
orderId: 12345,
orderTotal: 99.99,
orderCurrency: "USD",
orderItems: [
{
id: "item-1",
quantity: 1,
title: "Product Name",
variant: {
id: "variant-1",
image: { src: "https://..." },
price: { amount: 99.99, currencyCode: "USD" },
product: {
id: "prod-1",
title: "Product Name",
vendor: "Vendor",
type: "Type",
untranslatedTitle: "Product Name",
url: "https://...",
},
sku: "SKU-123",
title: "Variant",
untranslatedTitle: "Variant",
},
finalLinePrice: { amount: 99.99, currencyCode: "USD" },
},
],
});