@everymatrix/casino-search 1.17.3 → 1.17.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/casino-search",
3
- "version": "1.17.3",
3
+ "version": "1.17.4",
4
4
  "main": "index.js",
5
5
  "svelte": "src/index.ts",
6
6
  "scripts": {
@@ -35,5 +35,5 @@
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "89baba5648f1fb1c1ff4fbe9369eb83965480ce7"
38
+ "gitHead": "9bb18c43ff2bfc607d04dde35cedd5c861f4d483"
39
39
  }
@@ -95,7 +95,7 @@
95
95
 
96
96
  if (length > 0) {
97
97
  for (index = 0; index < length; index++) {
98
- let url:any = new URL(`${endpoint}/v1/casino/games/${recentSearchedGamesArray[index]}`);
98
+ let url:any = new URL(`${endpoint}/casino/games/${recentSearchedGamesArray[index]}`);
99
99
 
100
100
  url.searchParams.append('language', lang);
101
101
  url.searchParams.append('datasource', datasource);
@@ -179,7 +179,7 @@
179
179
 
180
180
  const getFavoriteGames = ():void => {
181
181
 
182
- const url:URL = new URL(`${endpoint}/v1/player/${playerID}/favorites/`);
182
+ const url:URL = new URL(`${endpoint}/player/${playerID}/favorites/`);
183
183
 
184
184
  isLoading = true;
185
185
 
@@ -301,7 +301,7 @@
301
301
  }
302
302
 
303
303
  $: if (searchValue.length >= 2) {
304
- const searchUrl:URL = new URL(`${endpoint}/v1/casino/games`);
304
+ const searchUrl:URL = new URL(`${endpoint}/casino/games`);
305
305
 
306
306
  searchUrl.searchParams.append("datasource", datasource);
307
307
  searchUrl.searchParams.append("expand", "vendor");