@revenuecat/purchases-typescript-internal-esm 13.29.1 → 13.30.0

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.ts CHANGED
@@ -5,3 +5,4 @@ export * from './enums';
5
5
  export * from './purchasesConfiguration';
6
6
  export * from './callbackTypes';
7
7
  export * from './webRedemption';
8
+ export * from './storefront';
package/dist/index.js CHANGED
@@ -5,3 +5,4 @@ export * from './enums';
5
5
  export * from './purchasesConfiguration';
6
6
  export * from './callbackTypes';
7
7
  export * from './webRedemption';
8
+ export * from './storefront';
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Contains the information about the current store account.
3
+ * @public
4
+ */
5
+ export interface Storefront {
6
+ /**
7
+ * Country code of the current store account.
8
+ */
9
+ readonly countryCode: string;
10
+ }
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@revenuecat/purchases-typescript-internal-esm",
3
3
  "title": "Purchases typescript internal shared code",
4
- "version": "13.29.1",
4
+ "version": "13.30.0",
5
5
  "description": "Typescript code to be used by RevenueCat's hybrid SDKs. Not meant for external usage.",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",