types-magic-api 0.1.26 → 0.1.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -248,7 +248,7 @@ export interface MailingAddress {
|
|
|
248
248
|
city: string | null;
|
|
249
249
|
company: string | null;
|
|
250
250
|
country: string | null;
|
|
251
|
-
|
|
251
|
+
countryCode: string | null;
|
|
252
252
|
firstName: string | null;
|
|
253
253
|
formatted: string | null;
|
|
254
254
|
formattedArea: string[];
|
|
@@ -455,6 +455,7 @@ export interface ICartLine {
|
|
|
455
455
|
};
|
|
456
456
|
id: string;
|
|
457
457
|
quantity: number;
|
|
458
|
+
currencySymbol: string;
|
|
458
459
|
merchandise: {
|
|
459
460
|
availableForSale: boolean;
|
|
460
461
|
compareAtPrice: Money | null;
|