@01tech/sportsbook-vue 0.70.0 → 0.71.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
@@ -191,8 +191,9 @@ interface SportsbookApp {
191
191
  setInert(inert: boolean): void;
192
192
  setCurrencyCode(currencyCode: string | undefined): void;
193
193
  setBalanceAmount(balance: number | undefined): void;
194
+ setCountryCode(path: string, type?: 'push' | 'replace'): void;
194
195
  setBonusWallet(wallet: SportsbookBonusWalletOptions | undefined): void;
195
- setAppearance(appearance: SportsbookAppearance): void;
196
+ setAppearance(appearance: SportsbookAppearance | undefined): void;
196
197
  navigateTo(path: string, type?: 'push' | 'replace'): void;
197
198
  }
198
199
 
package/dist/index.js CHANGED
@@ -38,7 +38,7 @@ async function M(o) {
38
38
  throw new Error(`Failed to fetch manifest: ${e.status} ${e.statusText}`);
39
39
  return await e.json();
40
40
  }
41
- const E = "0.70.0", W = "https://01-sports-frame-cdn.com";
41
+ const E = "0.71.0", W = "https://01-sports-frame-cdn.com";
42
42
  async function j(o, t) {
43
43
  return {
44
44
  createSportsbookFrame: (await import(
@@ -125,6 +125,9 @@ const D = ["dir"], I = /* @__PURE__ */ g({
125
125
  i.value = a, s(
126
126
  () => e.languageCode,
127
127
  (n) => a.setLanguageCode(n)
128
+ ), s(
129
+ () => e.appearance,
130
+ (n) => a.setAppearance(n)
128
131
  ), s(
129
132
  () => e.rtl,
130
133
  (n) => a.setRtl(n)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@01tech/sportsbook-vue",
3
3
  "private": false,
4
- "version": "0.70.0",
4
+ "version": "0.71.0",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },