@shophost/client 2.0.67 → 2.0.69

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shophost/client",
3
- "version": "2.0.67",
3
+ "version": "2.0.69",
4
4
  "type": "module",
5
5
  "main": "./index.js",
6
6
  "types": "./src/index.d.ts",
@@ -501,6 +501,10 @@ export type OrganizationConfiguration = {
501
501
  * Default currency for the organization
502
502
  */
503
503
  defaultCurrency: 'USD' | 'EUR' | 'GBP' | 'JPY' | 'AUD' | 'CAD' | 'CHF' | 'CNY' | 'SEK' | 'NZD' | 'MXN' | 'SGD' | 'HKD' | 'NOK' | 'KRW' | 'TRY' | 'RUB' | 'INR' | 'BRL' | 'ZAR' | 'DKK' | 'PLN' | 'THB' | 'IDR' | 'HUF' | 'CZK' | 'ILS' | 'PHP' | 'AED' | 'COP' | 'SAR' | 'MYR' | 'RON';
504
+ /**
505
+ * Default IANA time zone for the organization
506
+ */
507
+ defaultTimeZone: string;
504
508
  /**
505
509
  * Timestamp when the organization configuration was created
506
510
  */
@@ -726,6 +730,10 @@ export type UpdateOrganizationConfiguration = {
726
730
  * Default currency for the organization
727
731
  */
728
732
  defaultCurrency?: 'USD' | 'EUR' | 'GBP' | 'JPY' | 'AUD' | 'CAD' | 'CHF' | 'CNY' | 'SEK' | 'NZD' | 'MXN' | 'SGD' | 'HKD' | 'NOK' | 'KRW' | 'TRY' | 'RUB' | 'INR' | 'BRL' | 'ZAR' | 'DKK' | 'PLN' | 'THB' | 'IDR' | 'HUF' | 'CZK' | 'ILS' | 'PHP' | 'AED' | 'COP' | 'SAR' | 'MYR' | 'RON';
733
+ /**
734
+ * Default IANA time zone for the organization
735
+ */
736
+ defaultTimeZone?: string;
729
737
  openingTimes?: TimeSchedule;
730
738
  closingTimes?: TimeSchedule;
731
739
  /**