types-magic-api 0.1.47 → 0.1.51

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.
@@ -604,6 +604,7 @@ export interface CustomerOrder {
604
604
  email: string | null;
605
605
  financialStatus: string | null;
606
606
  fulfillmentStatus: string | null;
607
+ paymentGatewayNames: string[];
607
608
  name: string | null;
608
609
  orderNumber: string | null;
609
610
  phone: string | null;
@@ -615,6 +616,7 @@ export interface CustomerOrder {
615
616
  trackingInfo: {
616
617
  number: string;
617
618
  url: string;
619
+ company: string;
618
620
  }[];
619
621
  }[];
620
622
  totalPrice: Money;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "types-magic-api",
3
- "version": "0.1.47",
3
+ "version": "0.1.51",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && tsc",
6
6
  "prepare": "npm run build"