itube-specs 0.0.410 → 0.0.412

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.
@@ -17,7 +17,8 @@ export const useFetchModelsByPhrases = async (
17
17
  stateKey.value,
18
18
  apiMethod,
19
19
  {
20
- page: 1,
20
+ page: Number(route.query.page) || 1,
21
+ 'per-page': 48,
21
22
  },
22
23
  lang,
23
24
  slug.value,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "itube-specs",
3
3
  "type": "module",
4
- "version": "0.0.410",
4
+ "version": "0.0.412",
5
5
  "main": "./nuxt.config.ts",
6
6
  "types": "./types/index.d.ts",
7
7
  "scripts": {
@@ -9,8 +9,6 @@ export async function isGeoMatch(event, config) {
9
9
  const countryCode = headers[ 'countryCode' ];
10
10
  const stateCode = headers[ 'stateCode' ];
11
11
 
12
- console.log(headers, 'isGeoMatch headers');
13
-
14
12
  return AGE_VERIFY_COUNTRIES.includes(countryCode)
15
13
  || AGE_VERIFY_REGIONS.includes(stateCode);
16
14
  }
@@ -45,7 +43,6 @@ export async function getAgeValidationUrl(event, backPath: string, config) {
45
43
  const stateCode = headers[ 'stateCode' ];
46
44
  const remoteIP = headers[ 'remoteIP' ];
47
45
  const userAgent = headers[ 'userAgent' ];
48
- console.log(headers, 'getAgeValidationUrl headers')
49
46
 
50
47
  const siteUrl = `https://${config.public.xDomain}`;
51
48
  const callbackURL = `${siteUrl}/bff/age/verify`;