@thorprovider/types 5.3.4 → 5.3.5

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.
package/dist/index.d.mts CHANGED
@@ -4691,6 +4691,12 @@ interface DropshipperCustomer {
4691
4691
  created_at: string;
4692
4692
  type: string;
4693
4693
  status: string;
4694
+ /** Default billing address of the customer (no fallback; null when none matches) */
4695
+ location?: {
4696
+ city: string | null;
4697
+ province: string | null;
4698
+ country_code: string | null;
4699
+ } | null;
4694
4700
  stats: DropshipperCustomerStats;
4695
4701
  financial: DropshipperCustomerFinancial;
4696
4702
  }
package/dist/index.d.ts CHANGED
@@ -4691,6 +4691,12 @@ interface DropshipperCustomer {
4691
4691
  created_at: string;
4692
4692
  type: string;
4693
4693
  status: string;
4694
+ /** Default billing address of the customer (no fallback; null when none matches) */
4695
+ location?: {
4696
+ city: string | null;
4697
+ province: string | null;
4698
+ country_code: string | null;
4699
+ } | null;
4694
4700
  stats: DropshipperCustomerStats;
4695
4701
  financial: DropshipperCustomerFinancial;
4696
4702
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thorprovider/types",
3
- "version": "5.3.4",
3
+ "version": "5.3.5",
4
4
  "description": "Shared TypeScript types for Thor Commerce ecosystem - Framework-agnostic type definitions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1138,6 +1138,12 @@ export interface DropshipperCustomer {
1138
1138
  created_at: string;
1139
1139
  type: string;
1140
1140
  status: string;
1141
+ /** Default billing address of the customer (no fallback; null when none matches) */
1142
+ location?: {
1143
+ city: string | null;
1144
+ province: string | null;
1145
+ country_code: string | null;
1146
+ } | null;
1141
1147
  stats: DropshipperCustomerStats;
1142
1148
  financial: DropshipperCustomerFinancial;
1143
1149
  }