@thorprovider/types 3.13.1 → 3.13.2

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
@@ -1115,6 +1115,8 @@ interface Address {
1115
1115
  countryCode: string;
1116
1116
  phone?: string;
1117
1117
  isDefault?: boolean;
1118
+ isDefaultBilling?: boolean;
1119
+ isDefaultShipping?: boolean;
1118
1120
  metadata?: Record<string, unknown>;
1119
1121
  }
1120
1122
  /**
package/dist/index.d.ts CHANGED
@@ -1115,6 +1115,8 @@ interface Address {
1115
1115
  countryCode: string;
1116
1116
  phone?: string;
1117
1117
  isDefault?: boolean;
1118
+ isDefaultBilling?: boolean;
1119
+ isDefaultShipping?: boolean;
1118
1120
  metadata?: Record<string, unknown>;
1119
1121
  }
1120
1122
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thorprovider/types",
3
- "version": "3.13.1",
3
+ "version": "3.13.2",
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",
package/src/customer.ts CHANGED
@@ -30,6 +30,8 @@ export interface Address {
30
30
  countryCode: string; // ISO 3166-1 alpha-2 code (e.g., "US", "CA", "GB")
31
31
  phone?: string;
32
32
  isDefault?: boolean; // Whether this is the default/primary address for the customer
33
+ isDefaultBilling?: boolean; // Whether this is the default billing address
34
+ isDefaultShipping?: boolean; // Whether this is the default shipping address
33
35
  metadata?: Record<string, unknown>; // Flexible storage for platform-specific extras (label, etc.)
34
36
  }
35
37