@everymatrix/player-account-controller 0.0.214 → 0.0.218

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.html CHANGED
@@ -33,8 +33,8 @@
33
33
  <player-account-controller
34
34
  endpoint="https://demo-api.stage.norway.everymatrix.com/v1"
35
35
  cmsendpoint="https://wp-one-widgets.everymatrix.com/wp-json/wpone-rest/v1"
36
- playerid="3903441"
37
- session="467babdb-03dc-4ba6-a30d-ef7678471562"
36
+ playerid="3657535"
37
+ session="e518be84-5441-4905-ba97-7834c6a955a1"
38
38
  accountpath="/menu-locations/profile-menu"
39
39
  notificationpath="/support_information"
40
40
  customnotifications="#58586B,#2687F6,#D0046C"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/player-account-controller",
3
- "version": "0.0.214",
3
+ "version": "0.0.218",
4
4
  "main": "dist/player-account-controller.js",
5
5
  "svelte": "src/index.ts",
6
6
  "scripts": {
@@ -29,8 +29,8 @@
29
29
  "typescript": "^3.9.3"
30
30
  },
31
31
  "dependencies": {
32
- "@everymatrix/player-account-menu": "^0.0.214",
33
- "@everymatrix/player-account-notifications": "^0.0.214",
32
+ "@everymatrix/player-account-menu": "^0.0.218",
33
+ "@everymatrix/player-account-notifications": "^0.0.218",
34
34
  "cross-env": "^7.0.3",
35
35
  "sirv-cli": "^1.0.0",
36
36
  "svelte": "^3.0.0"
@@ -38,5 +38,5 @@
38
38
  "publishConfig": {
39
39
  "access": "public"
40
40
  },
41
- "gitHead": "504c889b442d1a70906bdb23ddaef68e256963b6"
41
+ "gitHead": "ae78406d20c106f1d3c352c0e97189a7bdffacfb"
42
42
  }
@@ -1,6 +1,6 @@
1
1
  <svelte:options tag={null} />
2
2
 
3
- <script lang="typescript">
3
+ <script lang="ts">
4
4
  import { onMount, tick } from 'svelte';
5
5
  import { getDevice } from 'rvhelper';
6
6
  import { _, addNewMessages, setLocale, setupI18n } from './i18n';
@@ -129,7 +129,7 @@
129
129
  fetch(`${endpoint}/player/${userId}/profile`, options)
130
130
  .then((res:any) => {
131
131
  if (res.status == 200) {
132
- window.postMessage({ type: 'ConfirmProfileInfoSave'}, window.location.href);
132
+ window.postMessage({ type: 'ConfirmProfileInfoSave' }, window.location.href);
133
133
  }
134
134
  });
135
135
  break;