@shophost/client 2.0.68 → 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/index.js +1 -1
- package/package.json +1 -1
- package/src/__generated__/sdk/types.gen.d.ts +8 -0
package/package.json
CHANGED
|
@@ -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
|
/**
|