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.
@@ -40,6 +40,8 @@ export interface CustomerCheckoutDeliveryAddress {
40
40
  phone: string | null;
41
41
  province: string | null;
42
42
  zip: string | null;
43
+ provinceCode: string | null;
44
+ countryCode: string | null;
43
45
  }
44
46
  /**
45
47
  * API Name: /api/customer/checkout/create
@@ -248,7 +248,7 @@ export interface MailingAddress {
248
248
  city: string | null;
249
249
  company: string | null;
250
250
  country: string | null;
251
- countryCodeV2: string | null;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "types-magic-api",
3
- "version": "0.1.26",
3
+ "version": "0.1.27",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && tsc",
6
6
  "prepare": "npm run build"