@betterstore/sdk 0.3.33 → 0.3.34

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @betterstore/sdk
2
2
 
3
+ ## 0.3.34
4
+
5
+ ### Patch Changes
6
+
7
+ - small tweak
8
+
3
9
  ## 0.3.33
4
10
 
5
11
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -222,7 +222,7 @@ declare class Customer {
222
222
  declare class Helpers {
223
223
  proxy?: string;
224
224
  constructor(proxy?: string);
225
- formatPrice(priceInCents: number, currency: string, exchangeRate?: number): string;
225
+ formatPrice(priceInCents: number, currency: string, exchangeRate?: number | null): string;
226
226
  getExchangeRate(baseCurrency: string, targetCurrency: string): Promise<number>;
227
227
  }
228
228
 
package/dist/index.d.ts CHANGED
@@ -222,7 +222,7 @@ declare class Customer {
222
222
  declare class Helpers {
223
223
  proxy?: string;
224
224
  constructor(proxy?: string);
225
- formatPrice(priceInCents: number, currency: string, exchangeRate?: number): string;
225
+ formatPrice(priceInCents: number, currency: string, exchangeRate?: number | null): string;
226
226
  getExchangeRate(baseCurrency: string, targetCurrency: string): Promise<number>;
227
227
  }
228
228
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@betterstore/sdk",
3
- "version": "0.3.33",
3
+ "version": "0.3.34",
4
4
  "description": "E-commerce for Developers",
5
5
  "private": false,
6
6
  "publishConfig": {